﻿/*star rating*/

.container_star .star-widget input {
    display: none;
}

.container_star {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.divv {
    display: none;
}

.div-active {
    display: block;
}
.star-widget label {
    font-size: 28px;
    color: #444;
    padding: 10px;
    float: right;
    transition: all 0.2s ease;
}

input:not(:checked) ~ label:hover,
input:not(:checked) ~ label:hover ~ label {
    color: #fd4;
}

input:checked ~ label {
    color: #fd4;
}

input#rate-5:checked ~ label {
    color: #fe7;
    text-shadow: 0 0 20px #952;
}

@media screen and (max-width: 768px) {
    .star-widget label {
        font-size: 20px;
     
    }
}
.star-widget {
    display: flex;
    direction: rtl;
}
.star_style {
    color: #fd4;
    font-size: 27px;
}

.half_star_style {
    color: #fd4;
    font-size: 27px;
}

.none_star_style {
    font-size: 27px;
}
/*star rating*/
