.review_overlay {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all .5s ease-in-out;
}

.review_ui-dialog {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    width: 98%;
    height: auto;
    margin: auto;
}

.review__body {
    height: auto;
}

.file_input {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
}

.fileuploade_content {
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #e3403f;
    border: none;
    border-radius: 3px;
}

.review_texterea textarea {
    width: 100%;
    resize: vertical;
    outline: 0;
    border: 1px solid #5454538c;
    border-radius: 5px;
    padding: 10px;
    transition: border 0.2s linear 0s;
    font-weight: normal;
    height: 80px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.customer-profile__name_input input {
    width: 100%;
    outline: 0;
    border: 1px solid #5454538c;
    border-radius: 5px;
    transition: border 0.2s linear 0s;
}

#star-rating {
    display: inline-flex;
}

.star {
    font-size: 2rem;
    color: #ccc;
    /* couleur par défaut */
    cursor: pointer;
    transition: color 0.2s;
}

.star.hovered,
.star.selected {
    color: #FFD700;
    /* couleur des étoiles sélectionnées (doré) */
    cursor: pointer;
}

.login_btn:hover {
    background-color: #ef4444;
    cursor: pointer;
}

.login_btn {
    color: #fff;
    border-radius: 3px;
    background-color: #adbfc2;
}

@media (min-width: 768px) {
    .review_ui-dialog {
        width: 768px;
        margin: auto;
    }

}

@media (min-width: 1024px) {
    .review_ui-dialog {
        width: 768px;
    }
}