.container {
    margin-top: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
}
.features-container > p {
    color: var(--text2);
}
.reviews-container > div> div > span {
    color: #FFAF7C;
}
.product-qty-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(236, 236, 236);
    padding: 10px 20px;
    border-radius: 100px;
}
.product-qty-container > button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100px;
}
.product-qty-container > button:first-child {
    background-color: rgb(213, 213, 213);
}
.product-qty-container > button:last-child {
    background: linear-gradient(208.58deg, #11C9F3 5.7%, #399BFC 74.85%);
    color: white;
}
.btn-buy-now {
    border: solid 1px #4B8FFB;
    color: #4B8FFB;
}

.user-type-container > div {
    flex: 1;
    border-radius: 10px;
    padding: 35px 20px;
}
.user-type-container > div > .user-type-icon {
    background-color: rgba(0,0,0,0.5);
    width: 30px;
    height: 30px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    color: white;
}
.user-type-container > div > .title {
    color: white;
}
.user-type-container > div > .description {
    color: white;
    opacity: 0.7;
    font-size: 14px;
}
.user-type-container > div:first-child {
    background: linear-gradient(360deg, #15C5DF -33.91%, #3DDDAD 117.98%);
}
.user-type-container > div:last-child {
    background: linear-gradient(360deg, #FFAE7B -33.91%, #FFCA97 117.98%);
}

#thumbnailModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: none;
}

#thumbnailCloseButton {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: #eee;
}

#thumbnailImg {
    height: 70vh;
    max-width: 60%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#thumbnailPrevButton {
    position: absolute;
    background-color: #eee;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

#thumbnailNextButton {
    position: absolute;
    background-color: #eee;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.product-rating-wrapper{
    border: 1px solid #f9ede5;
    background-color:#fffbf8;
    margin-bottom: 30px;
}

.product-rating-left{
    margin-right: 20px;
}

.product-rating-stars{
    color: #FFAF7C;

}
.product-rating-right{
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-align: center;
    flex-wrap: wrap;
}

.product-rating-right .filter-items{
    min-width: 6.25rem;
    background-color: #fff;
    color: #000;
    border: 1px solid rgba(0, 0, 0, .09);

    border-radius: 2px;
    padding: 0.325rem;
    text-decoration: none;
}
.product-rating-right .filter-items.active{
    border-color: #ee4d2d;
    color: #ee4d2d;
}

.product-review-list{
    display: flex;
    column-gap: 10px;
    margin-bottom: 15px;
}

.product-review-main .author-name{
    margin-bottom: 5px;
}
.product-review-main .stars, .date, .author-name{
    font-size: .75rem;
}
.product-review-main .stars{
    color: #FFAF7C;
}

.product-review-main .label, .value{
    font-size: 14px;
}

.product-review-main .label{
    color: rgba(0, 0, 0, 0.4);
}
.product-review-main .value{
    color: #000;
}
.product-review-main .review_worth{
    margin-bottom: 5px;
}
.product-review-main .review{
    font-size: .875rem;
    color: #000;
}

@media screen and (max-width: 575px) {
    .product-rating-left{
        margin-right: 0px;
    }

    .product-rating-right{
        justify-content: center;
    }

    .product-rating-right .filter-items{
        min-width: 9.375rem;
    }

    .product-qty-container{
        height: 100%;
    }

    .product-total-price{
        height: 100%;
    }
}