#popup-review-ticket{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    max-width: 100%;
    width: 700px;
    background-color: #211c2c;
    padding: 30px 30px;
    border-radius: 10px;
    color: #fff;
}
#popup-review-ticket h3{
    font-size: 27px;
    line-height: 1;
}
#popup-review-ticket p{
    font-size: 14px;
    margin: 15px 0px;
}
.review-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-section span{
    font-size: 12px;
    color: #706785;
}
.list-stars{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}
.list-stars i{
    font-size: 27px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.list-stars .fa-solid{
    color: #D36AF3;
}
.list-stars i:hover{
    scale: 1.11;
    opacity: 0.65;
}
#popup-review-ticket textarea{
    width: 100%;
    resize: none;
    padding: 10px;
    background-color: transparent;
    border:1px solid #D36AF3;
    color: #fff;
}
.buttons-section{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.buttons-section button{
    padding: 7px 20px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    background-color: #575067;
    transition: opacity 0.3s ease;
}
.buttons-section button:hover{
    opacity: 0.65;
}
.buttons-section button:nth-child(1){
    background-color: #D36AF3;
    color: #000;
}
#popup-overlay-ticket{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}