.recommendations {
    margin-top: 100px;
}
.recommendations .head {
    display: flex;
    align-items: end;
    margin-bottom: 10px;
}
.recommendations .title .label-text {
    font-size: 25px;
    line-height: 1.5;
    color: #A6A6A6;
    margin-bottom: 18px;
}
.recommendations .title .text {
    font-size: 50px;
    font-weight: 600;
}
.recommendations .buttons-tab {
    display: flex;
    gap: 12px;
    margin-right: 20px;
}
.recommendations .buttons-tab .button {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    color: #A6A6A6;
    line-height: 46px;
    height: 46px;
    border-radius: 46px;
    background: #F5F5F5;
    padding: 0 40px;
    cursor: pointer;
}
.recommendations .buttons-tab .button.active {
    color: #fff;
    background: linear-gradient(180deg, #003EF5 0%, #002FB9 100%);
}
.recommendations .buttons-tab .button.fire {
    padding-right: 70px;
}
.recommendations .buttons-tab .button.fire:before {
    content: '';
    width: 22px;
    height: 26px;
    background-image: url('/assets/img/fire.svg');
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 12px;
    right: 34px;
}
.recommendations .buttons-tab .button.fire.active:before {
    background-image: url('/assets/img/fire-active.svg');
}
.recommendations .cart {
    position: relative;
    margin-right: auto;
    cursor: pointer;
}
.recommendations .cart .count {
    position: absolute;
    top: -12px;
    right: -10px;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    width: 21px;
    height: 21px;
    border: 1px solid #002FB9;
    border-radius: 50%;
    background: #fff;
}
.recommendations .embla__container {
    gap: 24px;
}
.recommendations .tabs .tab {
    display: none;
}
.recommendations .tabs .tab.active {
    display: block;
}
.recommendations .embla__slide {
    width: 376px;
    max-width: 376px;
}
.recommendations .slider {
    position: relative;
}
.recommendations .slider .actions {
    position: absolute;
    top: 308px;
    right: -24px;
    width: 100%;
}
.recommendations .slider .actions .embla__buttons {
    justify-content: space-between;
}
@media (max-width: 840px) {
    .recommendations {
        margin-top: 28px;
        padding-right: 16px;
    }
    .recommendations .head {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .recommendations .title {
        width: 100%;
        margin-bottom: 16px;
    }
    .recommendations .title .label-text {
        display: none;
    }
    .recommendations .title .text {
        font-size: 25px;
    }
    .recommendations .buttons-tab .button {
        font-size: 12px;
        line-height: 27px;
        height: 27px;
        padding: 0 22px;
    }
    .recommendations .buttons-tab .button.active {
        font-weight: 400;
    }
    .recommendations .buttons-tab .button.fire {
        padding-right: 40px;
    }
    .recommendations .buttons-tab .button.fire:before {
        width: 13px;
        height: 15px;
        background-size: contain;
        top: 6px;
        right: 19px;
    }
    .recommendations .buttons-tab {
        gap: 6px;
        margin-right: 0;
    }
    .recommendations .cart {
        margin-left: 16px;
    }
    .recommendations .cart img {
        width: 28px;
    }
    .recommendations .cart .count {
        top: -8px;
        right: -8px;
        font-size: 10px;
        line-height: 16px;
        width: 16px;
        height: 16px;
    }
    .recommendations .actions {
        display: none;
    }
    .recommendations .embla__slide {
        width: 230px;
        max-width: 230px;
    }
}