.rate-this-pop-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 80%);
    backdrop-filter: blur(4px);
    transform: none;
    z-index: 999;
}

.rate-container {
    display: flex;
    flex-direction: column;
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 25%);
    background-color: rgb(255 255 255);
    border: 1px solid #e9e9e9;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    pointer-events: auto;
    width: 322px;
    color: black;
}

.rate-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    font-weight: 600;
    padding-top: .375rem;
    padding-bottom: .375rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: .625rem;
    height: 36px;
}
.rate-top .text-top {
    font-weight: 600!important;
    opacity: .9;
    line-height: 1.25rem;
    font-size: .875rem;
    margin: 0;
    margin-right: auto;
}

.rate-top button {
    transition-property: background-color, box-shadow, border-color, color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: .2s;
    outline: 2px solid transparent;
    outline-offset: 2px;
    color: rgb(0 0 0 / 60%);
    font-size: 1.175rem;
    line-height: 1.25rem;
    vertical-align: middle;
    background-color: transparent;
    border-color: transparent;
    border-radius: 9999px;
    cursor: pointer;
    padding: 2px;
}

.rate-top button:hover, .rate-top button:focus { background-color: #e7e7e7; }

.rate-details {
    font-size: .875rem;
    line-height: 1.25rem;
    padding: 1.25rem 1.5rem;
}

.rate-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: .75rem;
}

.rate-item .rate-item-poster {
    display: block;
    position: relative;
    flex-shrink: 0;
    width: 3.75rem;
    aspect-ratio: 471 / 707;

}

.rate-item .rate-item-poster img {
    object-fit: cover;
    background-color: rgb(0 0 0 / 4%);
    border-radius: .25rem;
    width: 100%;
    height: 100%;
}

.rate-submit-button {
    display: inline-flex;
    background-color: #F97316;
    border: 1px solid #ea580c;
    outline: 2px solid transparent;
    outline-offset: 2px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border-radius: .25rem;
    white-space: nowrap;
    justify-content: center;
    width: 100%;
    height: 2.25rem;
    text-transform: none;
    align-items: center;
}

.rate-submit-button:hover { background-color:#ea580c }