.popup_review_doctor__section button{
    background: none;
    border: none;
}

.popup_review__modal{
    position: relative;

}
#popup_review__modal_doctor_submit{
    max-width: none;
}
.popup_review_doctor__section{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: rgba(110, 112, 130, 0.75);
    overflow: hidden;
}

.popup_review__modal{
    border-radius: 1em;
    background: white;
    padding: 2em 2.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
}

.popup_review__modal_title{
    font-family: 'OpenSans-Bold';
    font-size: 1.2em;
}

.popup_review__modal_input input{
    width: 100%;
    border-radius: 0.7em;
    display: block;
    border: 0.1em solid rgb(110, 112, 130);
    padding: 0.7em 1em;
}

.popup_review__modal_input select{
    display: block;
    width: 100%;
    padding: 0 2em;
    background: #fff;
    border-radius: 0.3em;
    outline: 0;
    box-shadow: none;
    font-family: inherit;
    font-weight: 400;
    color: #000;
    text-align: left;
    height: 2em;
    font-size: 1em;
    border: 0.1em solid rgb(110, 112, 130);
    margin-bottom: 0.4em;
}
.popup_review__modal_input textarea{
    width: 100%;
    border-radius: 0.7em;
    display: block;
    border: 0.1em solid rgb(110, 112, 130);
    height: 7em;
    padding: 0.7em 1em;
}

.popup_review__modal_input{
    margin-bottom: 1em;
}

.popup_review__modal_close{
    position: absolute;
    right: 2.5em;
    top: 2em;
}

.popup_review__modal_doctor_submit{
    margin-top: 1em;
    color: rgb(255, 255, 255);
    font-size: 1em;
    width: 100%;
    border-radius: 0.3em;
    background: rgb(129, 189, 187) !important;
    padding: 0.7em 1em;
}

.reviews_title_wrap{
    display: flex;
    justify-content: space-between;
    gap: 1em;
    align-items: center;
    margin-bottom: 1em;
}

#popup_review__modal_input_rating_stars{
    display: flex;
    align-items: center;
    gap: 0.3em;
}

#popup_review__modal_input_rating_stars .star{
    width: 2em;
    cursor: pointer;
}

#popup_review_form{
    padding-top: 1em;
}

.review_success{
    text-align: center;
    margin-bottom: 0;
    font-size: 1.5em;
}

@media screen and (orientation: portrait){
    .popup_review__modal {
        width: 95%;
    }
}