

/* Start:/local/components/ishop/cart/templates/.default/style.css?17642559406866*/
.cart-products__price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-products__price-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #8e8e8e;
}

.cart-body .cart-products__price {
    font-size: 20px;
    font-weight: 400;
    line-height: 31px;
}

.cart-body .cart-products__price__base {
    font-size: 16px;
    font-weight: 400;
    line-height: 31px;
    white-space: nowrap;
}

.cart-aside__result-price-name {
    max-width: 200px;
}

.cart-aside__base-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 25px;
}

.cart-aside__base-price-name {
    color: #8e8e8e;
    color: var(--color-gr80);
}

.cart-aside__base-price-price {
    font-size: 20px;
    font-weight: 500;
}

.cart-aside__base-price-price span {
    display: inline-block;
    font-weight: normal;
    margin-left: 5px;
    font-size: .75em;
    color: #8e8e8e;
    color: var(--color-gr80);
}


@media only screen and (max-width: 1640px) {
    .cart-body .cart-products__cell:nth-child(2) {
        font-size: 14px
    }
}


.cart-body .cart-products__item {
    display: grid;
    gap: 30px;
    grid-template-columns: 100px 1fr 100px 220px 30px;
    grid-template-rows: max-content;
    grid-template-areas: 'image name qty price remove';
    margin-right: -40px;
}

.cart-body .cart-products__cell:nth-child(1) {
    width: 100px;
    grid-area: image;
}

.cart-body .cart-products__cell:nth-child(2) {
    width: auto;
    grid-area: name;
}

.cart-body .cart-products__cell:nth-child(3) {
    width: 100px;
    grid-area: qty;
}

.cart-body .cart-products__cell:nth-child(4) {
    width: 220px;
    grid-area: price;
    display: flex;
    gap: 25px;
}

.cart-body .cart-products__cell:nth-child(5) {
    width: 30px;
    grid-area: remove;
}

.cart-aside__base-price-price,
.cart-aside__result-price-price {
    white-space: nowrap;
}

.cart-aside__promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0;
    padding: 10px 8px;
    border-radius: 7px;
    background-color: #171717;
}

.cart-aside__promo-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-aside__promo-icon {
    display: block;
    background: url(/local/templates/template/components/bitrix/catalog/.default/bitrix/catalog.element/.default/images/black-friday-icon.svg);
    width: 15px;
    height: 18px;
}

.cart-aside__promo-text,
.cart-aside__promo-discount {
    font-weight: 700;
    font-size: 16px;
    line-height: 14px;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #BC71F5, #00D4FE, #00F2FE);
}

.cart-aside__promo-discount {
    color: #D072F9;
}

.cart-body .cart-products__price--color,
.cart-products__price.cart-products__price--color span {
    font-size: 20px;
    font-weight: 700;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #BC71F5, #00D4FE, #00F2FE);
}

.cart-products__price.cart-products__price--color span {
    font-weight: 400;
    color: transparent;
    background-image: linear-gradient(to right, #00D4FE, #00F2FE);
}

.cart-upscaledprice-update.cart-products__price span {
    font-size: 20px;
}

.cart-products__name {
    line-height: 35px;
}

.cart-aside__result-price-price {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #BC71F5, #00D4FE, #00F2FE);
}

.cart-aside__result-price .cart-aside__result-price-price span {
    font-size: 30px;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, #00D4FE, #00F2FE);
}

.cart-products__price-discount {
    display: flex;
    align-items: center;
    gap: 2px;
}

.cart-products__price-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

.cart-products__price-old-value {
    color: var(--color-gr80, #8e8e8e);
    font-size: 16px;
    text-decoration: line-through;
    white-space: nowrap;
}

.cart-products__price-currency {
    color: var(--color-gr80, #8e8e8e);
    font-size: 16px;
}

.cart-products__price-group--difference {
    background-color: #BC71F5;
    border-radius: 5px;
    padding: 0 4px;
}

.cart-products__price-save-value,
.cart-products__price-currency--save {
    white-space: nowrap;
    color: #FFFFFF;
}

.cart-products__price-wrapper--no-gap {
    gap: 2px;
}

@media only screen and (max-width: 1199px) {
    .cart-body .cart-products__item {
        margin-right: 0;
    }

    .cart-body .cart-products__item {
        gap: 16px;
        grid-template-columns: 60px 1fr 100px 30px;
        grid-template-rows: max-content max-content;
        grid-template-areas:
                'image name qty remove'
                'image price qty remove';
    }

    .cart-body .cart-products__image-wrap {
        width: 60px;
        height: 60px;
    }

    .cart-body .cart-products__cell:nth-child(1) {
        width: 60px;
        align-self: start;
        padding-top: 10px;
    }

    .cart-body .cart-products__cell:nth-child(2) {
        font-size: 13px;
    }

    .cart-body .cart-products__cell:nth-child(4) {
        display: flex;
    }

    .cart-body .cart-products__price-title {
        font-weight: 400;
        line-height: 20px;
        font-size: 13px;
        color: var(--color-gr60);
    }

    .cart-body .cart-products__price {
        font-size: 16px;
    }

    .cart-body .cart-products__price.cart-products__price__base {
        font-size: 13px;
    }

    .cart-aside__base-price {
        order: 1;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .cart-aside__base-price,
    .cart-aside__result-price {
        gap: 16px;
    }

    .cart-aside__result-price-name {
        max-width: initial;
    }
}


@media only screen and (max-width: 500px) {
    .cart-body .cart-products__item {
        position: relative;
        gap: 16px;
        grid-template-columns: 60px 1fr;
        grid-template-rows: repeat(3, max-content);
        grid-template-areas:
                'image name'
                'image qty'
                'image price';
    }

    .cart-body .cart-products__cell:nth-child(1) {
        padding-top: 5px;
    }

    .cart-body .cart-products__cell:nth-child(3) {
        width: auto;
    }

    .cart-body .cart-products__cell:nth-child(3) .cart-products__name {
        font-size: 13px;
    }

    .cart-body .cart-products__cell:nth-child(5) {
        position: absolute;
        top: 5px;
        right: 0;
    }

    .cart-body .cart-products__name {
        padding-right: 30px;
    }
}
/* End */
/* /local/components/ishop/cart/templates/.default/style.css?17642559406866 */
