.banner-sec {
    padding: 15px;
}

.banner-row {
    margin: 0px;
    padding: 10px 35px;
    width: 100%;
}

.banner-content {
    width: 60%;
    display: flex;
    align-items: center;
}

.banner-img {
    width: 40%;
}

.product-title {
    font-weight: bold;
    font-size: 48px;
    color: #2b333d;
    margin: 0px;
	text-wrap: balance;
}

.product-descrip {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pro-rating {
    font-weight: 500;
}

.proprating-stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 27px;
    font-family: Times;
    line-height: 0.8;
}

    .proprating-stars ::before {
        content: '★★★★★';
        letter-spacing: 1px;
        background: linear-gradient(90deg, #fc0 var(--percent), rgb(216, 216, 216) var(--percent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.rating-link {
    color: #0074cc !important;
    cursor: pointer;
}

    .rating-link:hover, .rating-link:active {
        color: #0a95ff !important;
        text-decoration: underline !important;
    }

.banner-img {
    width: 35%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .banner-content {
        width: 55%;
    }

    .product-title {
        font-size: 30px;
    }

    .product-descrip {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .pro-rating {
        font-size: 12px;
    }

    .star-ratings {
        font-size: 18px;
    }

    .banner-img {
        width: 40%;
    }
}

@media screen and (max-width: 767px) {
    .banner-row {
        padding: 5px 15px;
    }

    .product-title {
        font-size: 25px;
    }

    .product-descrip {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .banner-img {
        width: 100%;
    }

    .banner-content {
        width: 100%;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .banner-row {
        padding: 5px 5px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-descrip {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .pro-rating {
        font-size: 10px;
    }
}


/* popup */
.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.65);
    z-index: 8888;
    overflow-y: hidden;
    display: none;
}

#popupmodal .popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 65vw;
    height: 95vh;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    background-color: #fff;
    border-radius: 5px;
    z-index: 98;
}

@media screen and (max-width:768px) {
    #popupmodal .popup_content {
        width: 90vw;
        padding: 15px 5px;
    }
}

.popup_content .content_div {
    overflow: hidden;
}

.popup_close {
    font-size: 1.2rem !important;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 3px !important;
    right: 3px !important;
    z-index: 9999;
    cursor: pointer;
    text-shadow: 0px 0px 2px rgba(255,255,255,1.0);
    color: rgba(0,0,0,0.75);
}

    .popup_close:hover {
        color: rgba(0,0,0,0.95);
    }

.rating-title {
    text-align: center;
    font-weight: 700;
    color: #005B7F;
}

.pop-prorate {
    background-color: #005B7F;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    font-style: normal;
}

.poprating-stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 30px;
    font-family: Times;
    line-height: 0.8;
}

    .poprating-stars ::before {
        content: '★★★★★';
        letter-spacing: 3px;
        background: linear-gradient(90deg, #fc0 var(--percent), rgb(216, 216, 216) var(--percent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.rate-value {
    font-size: 45px;
    color: #000;
    line-height: 0.9;
}

.total-rate {
    font-size: 25px;
    font-weight: 500;
    color: #9A9A9A;
    /* display: flex; */
}

.ratings-value {
    text-align: center;
    margin: auto 0px;
}

.ratings-value2 {
    text-align: center;
    width: 90%;
    margin: auto 0px;
}

@media screen and (max-width: 767px) {
    .ratings-value {
        width: 100%;
    }

    .ratings-value2 {
        width: 100%;
        padding-top: 10px;
    }
}


.d-flex {
    display: flex;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}


.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}


.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #E5E5E5;
    border-radius: 0.25rem;
}


.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    transition: width .6s ease;
}

.progress-bar1 {
    background-color: #FF0000 !important;
}

.progress-bar2 {
    background-color: #FFB300 !important;
}

.progress-bar3 {
    background-color: #F7FF00 !important;
}

.progress-bar4 {
    background-color: #00F510 !important;
}

.progress-bar5 {
    background-color: #0008FF !important;
}

.rateVal {
    width: 10%;
}

.rateAmount {
    width: 80%;
    margin: auto 0px;
    cursor: pointer;
}

.bar-height {
    height: 4px !important;
}

.filter-selection {
    margin-left: auto;
    margin-right: 0px;
}

select[name="review-filter"] {
    cursor: pointer;
}

.rating-stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 22px;
    font-family: Times;
    line-height: 0.8;
}

    .rating-stars ::before {
        content: '★★★★★';
        letter-spacing: 3px;
        background: linear-gradient(90deg, #fc0 var(--percent), rgb(216, 216, 216) var(--percent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.comment {
    padding: 20px;
    margin: 5px;
    border-bottom: 1px solid #BCBCBC;
    width: 100%;
    position: relative;
}

/* .review-ic{
    position: absolute;
    right: 0;
    color:#C2C2C2;
    cursor: pointer;
} */

.review-ic:hover, .review-ic:active {
    color: #000;
}

.reviewer {
    font-size: 16px;
    font-weight: 500;
}

.review-comment {
    padding: 10px 0px;
}

.comment-time {
    color: #B2B2B2;
}

.rp-tooltip {
    position: absolute;
    right: 0;
    color: #C2C2C2;
    cursor: pointer;
}

.rpt-tooltip i {
    color: #C2C2C2;
}

.rpttooltiptext {
    color: #fff;
    background-color: #000;
    border: none;
    left: -10px;
    top: -30px;
    width: 55px;
}

.reply {
    background-color: #f2f6f8;
    border-left: 4px solid #185ee0;
    border-radius: 4px;
    padding: 20px;
}

.reply_label {
    font-size: 0.67rem;
    font-weight: bolder;
}

.reply_msg:before {
    content: "\201C";
    color: #185ee0;
    font-size: 3em;
    position: absolute;
    margin: -12px -16px;
    line-height: 1;
}

.reply_msg {
    padding: 15px 15px 0 15px;
}
