
.c7-rating{
    border-radius: 2rem;
    width: 37rem;
    height: 69.8rem;
    box-shadow: 0 10px 100px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-top: 3rem;
    padding: 4rem 3.4rem 3.4rem 3.4rem;
}
.c7-text{
    font-family: var(--main-family);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 143%;
    text-align: center;
    color: #000;
    margin-bottom: 8.8rem;
}
.form-control{
    width: 28.8rem;
    height: 2.5rem;
    border-bottom: 1px solid #000;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 3rem;
    font-family: var(--main-family);
}
.large{
    height: 8.8rem;
}
.form_rating{
    font-family: var(--main-family);
font-weight: 400;
font-size: 14px;
line-height: 143%;
text-align: center;
color: #000;
display: flex;
align-items: center;
flex-direction: column;
gap: 2.3rem;
}
.star_rating{
    position: relative;
    display: inline-block;
    font-size: 4rem;
    
}
.star_rating::before{
    content: "★★★★★";
    display: block;
    
}
.rating_items{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row-reverse;
}
.rating_item{
    position: absolute;
    width: 0%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
}
.rating_lable{
    flex: 0 0 20%;
    height: 100%;
    cursor: pointer;
    color: #B6B6B6;
}
.rating_lable::before{
    content: "★";
    display: block;
    transition: color 0.3s ease 0s;

}
.rating_lable:hover,
.rating_lable:hover ~ .rating_lable,
.rating_lable:checked ~ .rating_lable:hover {
    color: #e99458;

}
.rating_item:checked,
.rating_item:checked ~ .rating_lable{
    color: #FF6B00;
}
.btn2{
    width: 33rem;
    height: 9rem;
    margin-top: 5.2rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}
.c7-rating .btn2{
    bottom: 15px;
}