.reviews-wrapper{
    margin-bottom: 1rem;
}
.product-review-item{
    display: grid;
    grid-template-columns: 3fr 1fr;
    font-family: 'Roboto', sans-serif;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    & a{
        text-decoration: none;
    }
    & .product-review-left{
        display: flex;
        flex-flow: column;
        gap: 15px;
        & .product-review-color{
            & .product-review-color-text{
                font-weight: bold;
            }
            & .product-review-color-text span{
                opacity: 0.8;
                font-weight: normal;
            }
        }
        & .product-images-wrapper{
            max-width: 350px;
            height: 100px;
        }
        & .product-review-images{
            display: flex;
            flex-flow: row;
            margin-left: 0;
            & .review-image{
                background-size: cover;
                background-position: center;
                border-radius: 15px;
                width: 140px;
                height: 120px;
                transition: all 300ms;
                margin-right: 10px;
                &:hover{
                    scale: 1.03;
                    -webkit-box-shadow: 10px 10px 64px -6px rgba(0,0,0,0.18);
                    -moz-box-shadow: 10px 10px 64px -6px rgba(0,0,0,0.18);
                    box-shadow: 10px 10px 64px -6px rgba(0,0,0,0.18);
                }
            }
        }
    }
    & .product-review-user-name{
        font-weight: bold;
        & span{
            font-weight: normal;
        }
    }
    & .product-review-right{
        justify-self: right;
        text-align: right;
        display: flex;
        flex-flow: column;
        gap: 15px;
    }
}
.more-images .review-image{
    filter: blur(2px);
}

.more-images {
    position: relative;
    display: inline-block;
}

.more-images div {
    position: absolute;

}
.more-images span {
    position: absolute;
    color: white;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 150px;
    height: 100%;
    justify-content: center;
}

@media (min-width: 992px) and (max-width: 1100px){
    .rating .fa-star, .rating-desc .fa-star, .product-review-list .fa-star{
        font-size: 2rem;
    }
}

@media screen and (max-width: 991px){
    .product-review-item {
        display: flex;
        flex-flow: column;
        & .product-review-left{
            order: 2;
            & .product-review-comment{
                font-size: 14px;
            }
        }
        & .product-review-right {
            justify-self: right;
            text-align: right;
            display: flex;
            flex-flow: row;
            order: 1;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
    }
    .product-review-item [class^="rated"] {
        text-align: right;
        position: relative;
    }
    .product-review-user-name{
        order:1;
    }
    .product-review-stars{
        order:2;
    }
    .product-review-date{
        order:3;
    }

    .product-review-item {
        & .product-review-left {
            & .product-review-images {
                & .review-image {
                    border-radius: 15px;
                    transition: all 300ms;
                    max-width: 100px;
                    max-height: 100px;
                    margin-right: 5px;
                }
            }
        }
    }
    .more-images span {
        width: 100px;
    }
}
