.cpt-rating {
    direction: rtl;
    font-family: inherit;
}

.rating-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.rate-btn {
    min-width: 90px;
    padding: 0px 35px 0px 35px ;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 10px;
    cursor: pointer;
    background: #f3f3f3;
    color: #777;
    transition: all 0.2s ease;
}

/* COLORS */
.rate-1 { background: transparent; border: solid; border-color: #c1002d; border-width :4px ;}
.rate-2 { background: transparent; border: solid; border-color: #f6dd76; border-width :4px ;}
.rate-3 { background: transparent; border: solid; border-color: #a6e8a0; border-width :4px ;}
.rate-4 { background: transparent; border: solid; border-color: #249543; border-width :4px ;}

/* ACTIVE STATES */
.rate-1.active {
    border-color: #c1002d;
    color: #c1002d;
    background: #c1002d;
}

.rate-2.active {
    border-color: #f6dd76;
    color: #f6dd76;
    background: #f6dd76;
}

.rate-3.active {
    border-color: #a6e8a0;
    color: #a6e8a0;
    background: #a6e8a0;
}

.rate-4.active {
    border-color: #249543;
    color: #249543;
    background: #249543;
}

/* Hover */
.rate-btn:hover {
    opacity: 0.85;
}

/* Info section */
.rating-info,
.rating-counts {
    margin-top: 10px;
    font-size: 13px;
}

.level_label{
    text-align: center;
}

.rating_head{
    display:flex;
    justify-content: center;
    font-size : 20px;
    font-weight : bold;
}


.rating_result{
    display:flex;
    justify-content: center;
    font-size : 14px;
    font-weight : bold;
    margin-top :30px;
    flex-direction : column;
    align-items :center ;
}
.rating_result p{
    margin : 0px;
    width : 340px;
}


@media (max-width: 700px) {
    .rating_head{
        font-size : 17px;
    }
}


