

/* Start:/local/components/luckru/basket.page/templates/vue-basket/style.css?174420530613463*/
.basket__top {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.basket__count {
    font-size: 24px;
    line-height: 110%;
    color: #636B83;
}

.basket__share {
    font-size: 16px;
    line-height: 20px;
    color: #636B83;
    position: relative;
    padding-left: 30px;
    text-decoration: none;
}

.basket__share::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('/local/components/luckru/basket.page/templates/vue-basket/icons/share.svg');
    left: 0;
}

.basket__wrap {
    display: flex;
    margin-bottom: 100px;
}

.basket__left {
    border-radius: 8px;
    padding: 30px;
    width: 968px;
    background-color: #FFFFFF;
    margin-right: 30px;
    flex-shrink: 0;
    align-self: flex-start;
}

.basket__left-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #DCE0E5;
}

.basket__left-total {
    font-size: 16px;
    line-height: 19px;
    color: #00305C;
}

.basket__left-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 16px;
    line-height: 30px;
}

.basket__left-bottom span {
    color: #00305C;
}

.basket__left-bottom b {
    font-weight:500;
}

.basket__left-clear {
    font-size: 16px;
    line-height: 22px;
    color: #00305C;
    padding-left: 32px;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.basket__left-clear::before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url('/local/components/luckru/basket.page/templates/vue-basket/icons/trash.svg');
    width: 22px;
    height: 22px;
}

.basket__item {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px solid #DCE0E5;
}

.basket__item-content {
    width: 100%;
}

.basket__item-img_link {
    margin-right: 20px;
    width: 165px;
    height: 100px;
    align-self: flex-start;
    flex-shrink: 0;
    display: block;
}

.basket__item-img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.basket__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 45px;
}

.basket__item-title_link {
    text-decoration: none;
}

.basket__item-title {
    font-size: 18px;
    line-height: 21px;
    color: #00305C;
}

.basket__item-delete {
    font-size: 14px;
    line-height: 16px;
    color: #636B83;
    position: relative;
    padding-right: 20px;
    cursor: pointer;
    margin-left: 20px;
}

.basket__item-delete::after {
    content: '';
    position: absolute;
    right: 0;
    width: 16px;
    height: 16px;
    background-image: url('/local/components/luckru/basket.page/templates/vue-basket/icons/delete.svg');
}

.basket__item-bottom_panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.basket__item-parametrs_trigger {
    cursor: pointer;
    align-self: flex-end;
}

.basket__item-parametrs_title {
    font-size: 16px;
    line-height: 19px;
    color: #29B7D0;
    margin-right: 4px;
}

.basket__item-counter {
    display: flex;
    width: 105px;
    border: 1px solid #DCE0E5;
    border-radius: 5px;
    padding: 10px 15px;
    justify-content: space-between;
    font-size: 24px;
    line-height: 19px;
    color: #00305C;
}

.basket__item-counter_input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    line-height: 19px;
    color: #00305C;
}

.basket__item-counter_minus,
.basket__item-counter_plus {
    cursor: pointer;
}

.basket__item-price {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.basket__item-price_main {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #00305C;
    margin-bottom: 4px;
}

.basket__item-price_old {
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: line-through;
    color: #636B83;
}

.basket__item-parametrs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    /*max-height: 0;*/
    /*overflow: hidden;*/
    transition: opacity 0.3s;
    /*opacity: 0;*/
}

.basket__item-parametrs.basket__item-parametrs--show {
    max-height: 100%;
    opacity: 1;
}

.basket__item-parametrs_arrow {
    transition: all 0.3s;
}

.basket__item-parametrs_arrow.arrow--rotate {
    transform: rotate(180deg);
}

.basket__item-parametrs_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #DCE0E5;
}

.basket__item-parametrs_name {
    font-size: 14px;
    line-height: 16px;
    color: #636B83;
}

.basket__item-parametrs_value {
    font-size: 14px;
    line-height: 16px;
    color: #00305C;
}

.basket__item-rebuild_btn {
    display: none;
}

.basket__item--deleted .basket__item-img_link,
.basket__item--deleted .basket__item-delete,
.basket__item--deleted .basket__item-parametrs_trigger,
.basket__item--deleted .basket__item-counter,
.basket__item--deleted .basket__item-parametrs {
    display: none;
}

.basket__item--deleted .basket__item-top {
    margin-bottom: 0;
    width: 100%;
    align-items: center;
}

.basket__item--deleted .basket__item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket__item--deleted .basket__item-price {
    display: flex;
    margin-left: auto;
}

.basket__item--deleted .basket__item-price_main {
    margin-right: 10px;
}

.basket__item--deleted .basket__item-rebuild_btn {
    display: block;
    padding: 8px 40px;
    font-size: 16px;
    margin-left: 30px;
}

.basket__right {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px 20px;
    align-self: flex-start;
    width: 100%;
}

.basket__promo {
    margin-bottom: 40px;
}

.basket__promo-text {
    font-size: 16px;
    line-height: 130%;
    color: #00305C;
    margin-bottom: 10px;
}

.basket__promo-input_wrap {
    position: relative;
}

.basket__promo-input {
    background: #F8F8F8;
    border: 1px solid #DCE0E5;
    border-radius: 5px;
    padding: 12px 35px 12px 12px;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    color: #636B83;
}

.basket__promo-input_btn {
    position: absolute;
    width: 18px;
    height: 18px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.basket__cost-wrap {
    margin-bottom: 30px;
}

.basket__cost-item {
    display: flex;
}

.basket__cost-item {
    margin-bottom: 18px;
}

.basket__cost-item:last-child {
    margin-bottom: 0;
}

.basket__cost-name {
    font-size: 16px;
    line-height: 19px;
    color: #636B83;
    white-space: nowrap;
}

.basket__cost-dotted {
    width: 100%;
    border-bottom: 1px dashed #B4BEC6;
    margin: 0 8px 3px 8px;
}

.basket__cost {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #00305C;
    white-space: nowrap;
}

.basket__cost--blue {
    color: #29B7D0;
}

.basket__cost-total {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #00305C;
    margin-bottom: 24px;
}

.basket__cost-total span {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #00305C;
}

.btn.basket__order-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 16px;
    display: block;
    text-align: center;
}

.basket__promo-active {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
    /*display: none;*/
}

.basket__promo-active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url('/local/components/luckru/basket.page/templates/vue-basket/icons/gift.svg');
}

.basket__promo-active_text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #00305C;
    margin-bottom: 5px;
}

.basket__promo-active_discount {
    font-size: 14px;
    line-height: 16px;
    color: #636B83;
}

/*.basket__right.basket__promo-activated .basket__promo {*/
/*    display: none;*/
/*}*/

/*.basket__right.basket__promo-activated .basket__promo-active {*/
/*    display: block;*/
/*}*/

.basket-empty__wrap {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.basket-empty__content {
    margin-right: 30px;
}

.basket-empty__title {
    margin-bottom: 25px;
}

.basket-empty__text {
    font-size: 16px;
    line-height: 155%;
    color: #636B83;
    margin-bottom: 40px;
}

.basket-empty__buttons {
    display: flex;
}

.basket-empty__btn {
    display: block;
    text-decoration: none;
    margin-right: 20px;
    width: 230px;
    text-align: center;
}

.basket-empty__btn:last-child {
    margin-right: 0;
}

.basket-empty__img {
    border-radius: 8px;
    flex: 0 0 640px;
}

.basket__item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.basket__item-wrap .basket__item-price {
    display: none;
}

.basket-empty__buttons.mobile {
    display: none;
}

.recommend-products__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.recommend-products__arrows-prev {
    margin-right: 10px;
}

.recommend-products__card-wrap {
    margin: 0 15px;
}

.recommend-products__wrap .slick-list {
    margin: 0 -15px;
}

.recommend-products__wrap .slick-track {
    justify-content: center;
}

.popup-help_order .popup__form-btn {
    width: 100%;
    margin-bottom: 25px;
}


@media (max-width: 1439px) {
    .basket__left {
        width: 650px;
    }

    .basket-empty__img {
        flex: 0 0 450px;
        width: 450px;
    }
}

@media (max-width: 991px) {

    .basket__wrap {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .basket__left {
        width: 90%;
        margin: 0 auto 20px auto;
    }

    .basket__right {
        width: 90%;
        margin: 0 auto;
    }

    .basket__item {
        flex-direction: column;
        position: relative;
        padding: 20px 0;
    }

    .basket__item-delete {
        font-size: 0;
        position: absolute;
        right: 0;
        top: 20px;
        margin-left: 0;
    }

    .basket__item-delete::after {
        width: 22px;
        height: 22px;
        background-size: 22px;
    }

    .basket__item-parametrs_trigger {
        align-self: center;
    }

    .basket__item-wrap .basket__item-price {
        display: flex;
    }

    .basket__item-bottom .basket__item-price {
        display: none;
    }

    .basket__item-wrap {
        margin-bottom: 15px;
    }

    .basket__item-top {
        margin-bottom: 10px;
    }

    .basket__count {
        font-size: 14px;
    }

    .basket__item--deleted .basket__item-content {
        flex-direction: column;
    }

    .basket__item--deleted .basket__item-top {
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .basket__item--deleted .basket__item-rebuild_btn {
        margin-left: 0;
    }

    .basket-empty__wrap {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .basket-empty__buttons {
        display: none;
    }

    .basket-empty__text {
        margin-bottom: 30px;
    }

    .basket-empty__buttons.mobile {
        display: flex;
    }

    .basket-empty__img {
        flex: 0 0 60%;
        width: 60%;
        margin-bottom: 30px;
    }

    .recommend-products__top {
        align-items: center;
    }

    .card__wrap.recommend-products__card-wrap {
        max-width: 250px;
        min-height: 298px;
        margin: 0 10px;
    }

    .recommend-products__wrap .slick-list {
        margin: 0;
    }

    .recommend-products__top {
        margin-bottom: 25px;
    }
    
}

@media (max-width: 575px) {
    .basket__share {
        font-size: 0;
    }

    .basket__left {
        width: 100%;
        padding: 20px 15px;
    }

    .basket__left-clear {
        font-size: 0;
    }

    .basket__wrap {
        margin: 0 -5.5% 50px -5.5%;
    }

    .basket__right {
        width: 100%;
        padding: 20px 15px;
    }

    .basket__item-img_link {
        width: 135px;
        height: 80px;
    }

    .basket__item-title {
        font-size: 14px;
        line-height: 16px;
    }

    .basket__item-parametrs_title {
        font-size: 14px;
        line-height: 16px;
    }

    .basket__item-bottom_panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .basket__item-parametrs_trigger {
        align-self: flex-start;
        margin-bottom: 10px;
    }

    .basket__item-parametrs {
        grid-template-columns: 1fr;
    }

    .basket__cost-total {
        font-size: 18px;
        line-height: 21px;
    }

    .basket__cost-name {
        font-size: 14px;
        line-height: 16px;
    }

    .basket__cost {
        font-size: 14px;
        line-height: 16px;
    }

    .basket__cost-total span {
        font-size: 18px;
        line-height: 21px;
    }

    .basket__item--deleted .basket__item-title {
        font-size: 16px;
    }

    .basket__item--deleted .basket__item-bottom {
        width: 100%;
    }

    .basket__item--deleted .basket__item-rebuild_btn {
        width: 100%;
    }

    .basket-empty__img {
        flex: 0 0 200px;
        width: 290px;
        height: 200px;
    }

    .basket-empty__buttons.mobile {
        flex-direction: column;
        width: 100%;
    }

    .basket-empty__btn {
        margin-right: 0;
        width: 100%;
    }

    .basket-empty__btn:first-child {
        margin-bottom: 15px;
    }

    .recommend-products__arrows {
        display: none;
    }
}
/* End */
/* /local/components/luckru/basket.page/templates/vue-basket/style.css?174420530613463 */
