.customer-reviews__wrapper {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    background-color: #F5F5F5;
    padding-block: 1.5em;
}

.bonuses-wrapper {
    margin-bottom: 0 !important;
}

.customer-says {
    margin-bottom: 1.5em;
}

.customer-says__title {
    color: #135E5A;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
}

.customer-says__img {
    margin: .5em auto;
    max-width: 165px;
}

.customer-says__img img {
    width: 100%;
}

.customer-says__count {
    color: #999999;
    text-align: center;
}

.customers-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-bottom: 1.5em;
}

.customers-list .customers-list__item {
    border: 1px solid #fff;
    box-shadow: -1px 6px 15px -3px rgba(0, 0, 0, .48);
    max-width: 28%;
    border-radius: 12px;
    padding: 4px 4px 16px 4px;
}

.customers-list .customers-list__item:last-child {
    display: none;
}

.customers-list img {
    width: 100%;
    border-radius: inherit;
}

.customer-review {
    background-color: #FCFCFC;
    border: 1px solid #E3DEDE;
    border-radius: 20px;
    padding: 1em;
    margin-bottom: 2em;

    display: none;
    opacity: 0;
    transform: translateY(6px);
}

.customer-review.active {
    display: block;
    opacity: 1;
    transform: none;
    transition: opacity .25s ease, transform .25s ease;
}

.customer-review img {
    width: 100%;
}

.customer-review .user-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.customer-review .user-box__img {
    max-width: 120px;
}

.customer-review .user-box__name {
    font-size: 1.5em;
    font-weight: bold;
}

.customer-review .user-box__desc {
    font-style: italic;
    font-weight: bold;
    max-width: 90%;
}

.customer-review .variety-box {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px 10px;
    margin-bottom: 10px;
}

.customer-review .variety-box__img {
    max-width: 100px;
}

.customer-review .variety-box__badge {
    max-width: 20px;
}

.customer-review .variety-box__txt {
    color: #229B17;
    font-size: 1em;
    font-weight: 700;
}

.customer-review .purchase-box {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 10px 15px;
    text-align: left;
    font-size: 1em;
    margin-block: 1em;
}

.customer-review .purchase-box__img {
    max-width: 80px;
    flex: 0 0 80px;
}

.customer-review .purchase-box__txt {
    color: #135E5A;
    font-weight: bold;
    line-height: 1.1;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-bottom: 1.5em;
}

.reviews-controls button {
    font-family: inherit;
    font-size: 1em;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #5f6368;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.reviews-controls button:not(:disabled):hover {
    background-color: #cac8c8;
}

.reviews-controls button:disabled {
    border: 1px solid #f8f8f8;
    background-color: #ededed;
    color: #b9b9b9;
    cursor: initial;
}

@media only screen and (min-width: 768px) {
    .customer-reviews__wrapper {
        font-size: 20px;
    }

    .customer-says__img {
        max-width: 265px;
    }

    .customers-list {
        justify-content: space-between;
    }

    .customers-list .customers-list__item {
        max-width: 100%;
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .customers-list .customers-list__item:first-child,
    .customers-list .customers-list__item:last-child {
        max-width: 100px;
        display: block;
    }

    .customers-list .customers-list__item:nth-child(2),
    .customers-list .customers-list__item:nth-last-child(2) {
        max-width: 130px;
    }

    .customer-review {
        padding: 1.2em 2em;
    }

    .customer-review__img {
        float: none;
        margin-right: 0;
        max-width: 75px;
        flex: 0 0 75px;
    }

    .customer-review .user-box {
        flex-direction: row;
        text-align: left;
    }

    .customer-review .user-box__img {
        max-width: 140px;
    }

    .customer-review .user-box__name {
        font-size: 1.6em;
    }

    .customer-review .user-box__desc {
        font-size: 1.05em;
    }

    .customer-review .variety-box__img {
        max-width: 160px;
    }

    .customer-review .variety-box__badge {
        max-width: 35px;
    }

    .customer-review .variety-box__txt {
        font-size: 1em;
    }

    .customer-review .purchase-box {
        font-size: 1.2em;
        margin-block: .5em;
    }

    .customer-review .purchase-box__img {
        max-width: 130px;
        flex: 0 0 130px;
    }
}