﻿﻿#cart-overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,1);
    z-index: 99;
    transition: opacity .3s;
}

#cart-overlay.hide {
    opacity: 0;
}

#cl-newsletter-row {
    display: none;
}

#ordersummarypagecart {
    display: flex;
    background-color: #fff;
    padding: 24px 58px;
    gap: 32px;
}

    #ordersummarypagecart .cl-cart-col {
        width: calc(100% - 440px);
        /*padding: 0 72px;*/
    }

    #ordersummarypagecart .cl-summary-col {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        overflow: hidden;
    }

.cl-cart-page-title {
    font-size: 32px;
    font-weight: 500;
    color: #2A2E38;
    margin-block: 0px !important;
    margin: 0px 0px 16px 0px !important;
}

/*    .cl-cart-page-title span:last-child {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        background-color: #2A2E38;
        color: #fff;
        border-radius: 50%;
        margin-left: 8px;
        font-weight: 400;
    }*/

.cl-product-card {
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    border: 1px solid #f5f5f5;
    transition: border .3s;
    position: relative;
    overflow: hidden;
}

    .cl-product-card:hover {
        border: 1px solid #2A2E38;
    }

    .cl-product-card:last-child {
        margin-bottom: 8px;
    }

.cl-product-card-image {
    width: 216px;
    height: 216px;
    background-color: #F4F4F3;
    margin-right: 24px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

    .cl-product-card-image img {
        height: 130px;
    }

.cl-product-card-col {
    display: flex;
    align-items: center;
    margin-bottom: auto;
}
    .cl-product-card-col button {
        background-color: #F5F5F5;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        font-size: 16px;
        font-weight: 800;
        border: none;
        color: #2A2E38;
        cursor: pointer;
    }

    .cl-product-card-col.cl-info-col {
        margin-right: auto;
    }

.cl-product-info-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 12px;
}

    .cl-product-info-container > a {
        font-size: 18px;
        font-weight: 500;
    }

    .cl-product-info-container > span {
        font-size: 12px;
        color: #A6A6A6;
        font-weight: 500;
    }

    .cl-product-info-container > .cl-product-old-price {
        font-size: 12px;
        font-weight: 400;
        color: #CDCDCD;
        margin-bottom: -14px !important;
    }

    .cl-product-info-container > .cl-product-prices {
        display: flex;
        font-size: 16px;
        font-weight: 500;
        align-items: center;
        color: #2A2E38;
    }

        .cl-product-info-container > .cl-product-prices .cl-product-old-price {
            opacity: 0.5;
            margin-right: 8px;
            font-weight: 400;
        }

    .cl-product-info-container > .cl-custom-checkbox-container {
        margin-top: auto;
    }

.cl-quantity-col .cl-product-quantity-input {
    margin: 0 8px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    height: 40px;
    width: 70px;
    padding: 0 20px;
    font-size: 16px;
    -webkit-appearance: none;
    cursor: pointer;
}

.cl-product-card-col.cl-buttons-col .addproducttofavorite {
    margin-left: 12px;
}

.cl-product-card-col.cl-buttons-col > div {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color .3s;
    cursor: pointer;
    border: none;
}

    .cl-product-card-col.cl-buttons-col > div:hover {
        background-color: var(--pale)
    }

    .cl-product-card-col.cl-buttons-col > div img {
        height: 20px;
    }

    .cl-product-card-col.cl-buttons-col > div.addproducttofavorite img {
        height: 28px;
    }

.cl-product-card .message-error {
    line-height: 32px;
    background-color: #FFECED;
    font-size: 12px;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0 12px;
    border-radius: 0 0 0 12px;
    margin: 0px;
}

.modelWarningItem {
    background-color: var(--pale);
    color: #2A2E38;
    border-radius: 12px;
    padding: 20px;
    font-size: 18px;
}

.cl-total-info-title {
    font-size: 32px;
    font-weight: 500;
    color: #2A2E38;
    margin: 0px 0px 16px 0px;
}

    .cl-total-info-title + div {
        padding: 16px;
        border-radius: 16px;
        border: 1px solid #F5F5F5;
        transition: border .3s;
    }

        .cl-total-info-title + div:hover {
            border: 1px solid #2A2E38;
        }

        .total-info table {
            width: 100%;
            font-size: 14px;
            margin-bottom: 12px;
        }

    .total-info table td {
        padding-bottom: 12px;
        min-width: 80px;
        font-weight: 500;
    }

        .total-info table td:last-child {
            text-align: right;
            display: block
        }

    .total-info table tr.shipping-cost td:first-child span:last-child {
        opacity: 0.5;
        font-size: 12px;
        display: block;
    }

.cl-checkout-button {
    height: 56px;
    width: 100%;
    border: 1px solid #2A2E38;
    transition: background .3s, color .3s;
    border-radius: 56px;
    background: #2A2E38;
    color: #fff;
    cursor: pointer;
}

    .cl-checkout-button:hover {
        background: transparent;
        color: #2A2E38;
        border: 1px solid #2A2E38;
    }

.coupon-box .coupon-code .cl-form-label {
    font-size: 14px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0px;
    cursor: pointer;
    height: 56px;
    padding-inline: 16px;
    border-radius: 16px;
    justify-content: space-between;
    border: 1px solid #f5f5f5;
    margin-block: 16px;
}

    .coupon-box .coupon-code .cl-form-label img {
        transition: transform .3s;
    }

.coupon-box .coupon-code .discount-coupon-code {
    height: 56px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    margin-top: -8px;
    padding-left: 16px;
}

.coupon-box .coupon-code .cl-input-group {
    position: relative;
    height: 0px;
    opacity: 0;
    transition: opacity .3s, height .3s;
    pointer-events: none;
}

.coupon-box .coupon-code.active .cl-input-group {
    height: 48px;
    opacity: 1;
    pointer-events: auto;
}

.coupon-box .coupon-code.active .cl-form-label img {
    transform: rotate(45deg)
}

#applydiscountcouponcode {
    height: 51px;
    width: 51px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(271.78deg, #A78C5C 0%, #BCA272 103.08%);
    cursor: pointer;
    position: absolute;
    top: -4px;
    right: 0px;
    border: none;
}

    #applydiscountcouponcode img {
        width: 24px;
    }

.current-code {
    margin-top: 12px;
    font-size: 12px;
    background-color: var(--pale);
    color: var(--gold);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

    .current-code button {
        border: 1px solid var(--gold);
        color: var(--gold);
        background-color: transparent;
        border-radius: 20px;
        height: 24px;
        cursor: pointer;
        margin-left: auto;
    }

.cl-summary-col .summary-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 16px;
    opacity: 0.3;
}

.cl-summary-col .summary-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    font-size: 14px;
    border-right: 1px solid #7f848f;
    padding: 0 20px;
    text-align: center;
    min-width: fit-content;
}

    .cl-summary-col .summary-icon:last-child {
        border-right: none;
    }

.cart-buttons {
    display: flex;
    margin-bottom: 40px;
}

.continue-shopping-button,
.removeAll-cart-button {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    opacity: 0.5;
}

    .removeAll-cart-button img {
        margin-right: 4px;
        height: 16px;
    }

.continue-shopping-button {
    margin-right: auto;
}

    .continue-shopping-button img {
        margin-right: auto;
        transform: rotate(180deg);
        height: 16px;
    }

.mobile-total-info-switcher,
.mobile-total-info-close-button {
    display: none;
}

@media only screen and (max-width: 1320px) {
    #ordersummarypagecart .cl-cart-col {
        width: calc(100% - 380px);     
        padding: 0 24px;
    }
}

@media only screen and (max-width: 1199px) {
    #ordersummarypagecart .cl-cart-col {
        width: 100%;
        padding: 00px;
    }

    .cl-cart-page-title {
        font-size: 24px;
    }

    .cl-product-card-image {
        width: 120px;
        margin-right: 8px;
        flex: none;
    }

        .cl-product-card-image img {
            height: 80px;
        }


        .cl-product-card-col.cl-buttons-col .deleteshoppingcartitem {
            order: 1;
            height: 30px;
        }

/*    .cl-quantity-col .cl-product-quantity-input {
        margin: 0px;
        height: 30px;
        position: absolute;
        bottom: 48px;
        right: 52px;
        width: 60px;
        font-size: 14px;
        background-position: 36px center;
    }*/

    .cl-product-info-container > .cl-custom-checkbox-container {
        position: absolute;
        bottom: 0px;
        left: 0px;
        height: 40px;
        width: 100%;
        border-top: 1px solid var(--border-color);
        padding: 8px;
    }

    .cl-custom-checkbox-container .cl-checkmark {
        top: 8px;
        left: 8px;
    }

    .cl-product-info-container > .cl-product-prices {
        font-size: 13px;
        height: 30px;
    }

    .cl-product-info-container > a {
        margin-top: 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .cl-product-info-container > span {
        margin-bottom: auto;
    }

    .cl-product-card .message-error {
        bottom: 0px;
        top: unset;
        border-radius: 0px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%;
        line-height: 40px;
    }

    .cl-summary-col .summary-icons {
        display: none;
    }

    .total-info {
        display: flex;
        flex-direction: column;
        border: 1px solid #f5f5f5;
        border-radius: 16px;
        padding: 16px;
    }

        .total-info .cl-deals-container {
            order: 1;
            padding: 0 24px;
            margin: 12px 0;
        }

    .cl-total-info-title {
        font-size: 24px;
    }

    .mobile-total-info-switcher {
        display: none;
        align-items: center;
        justify-content: center;
        width: 60%;
        padding: 0 24px;
    }

        .mobile-total-info-switcher img {
            transition: transform .3s;
            margin-left: auto;
            height: 20px;
        }

        .mobile-total-info-switcher del {
            opacity: 0.5;
            display: block;
        }

        .mobile-total-info-switcher span {
            font-weight: 800;
            display: block;
        }

    .mobile-total-info-close-button {
        display: block;
        position: absolute;
        height: 18px;
        top: 15px;
        right: 24px;
    }

    .summary-active .cl-total-info-title,
    .summary-active .total-info .cl-deals-container,
    .summary-active .total-info table {
        display: block;
    }

    .summary-active .summary-overlay {
        opacity: .15;
        pointer-events: all;
    }

    .summary-active .mobile-total-info-switcher img {
        transform: rotate(180deg)
    }

    .cl-product-card-container.empty {
        padding: 24px;
    }

    body.summary-active {
        overflow: hidden;
    }

}

@media only screen and (max-width: 992px) {
    #ordersummarypagecart {
        flex-direction: column;
        padding: 30px;
    }
    .cl-product-card-col {
        gap: 10px;
    }
}

@media only screen and (max-width: 768px) {
    #ordersummarypagecart {
        padding: 16px !important;
    }
    .cl-product-info-container > .cl-product-old-price {
        margin-bottom: -4px !important;
    }
    .cl-product-card-col.cl-info-col {
        margin-bottom: 45px;
    }
    .cl-product-card {
        padding: 8px;
    }
    .cl-product-info-container {
        gap: 10px;
    }
    #ordersummarypagecart .cl-buttons-col {
        position: absolute;
        bottom: 10px;
        right: 10px;
    }
    .cl-product-card-col {
        margin-bottom: 0px;
        margin-top: auto;
    }
    .quantity-input-wrapper {
        position: absolute;
        bottom: 10px;
        left: 10px;
    }
    .cl-product-card-image {
        height: 170px;
        margin-bottom: auto;
    }
}

@media only screen and (max-width: 576px) {

    .cl-product-info-container {
        gap: 6px;
    }
}

@media screen and (max-width: 688px) {
    #cl-cookie-settings {
        bottom: 60px;
    }
}

    .sk-shopping-cart-item-gift-line {
        font-size: 12px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

        .sk-shopping-cart-item-gift-line input {
            accent-color: #2A2E38;
            width: 18px;
            height: 18px;
            margin: 0;
        }

        .sk-shopping-cart-item-gift-line input, .sk-shopping-cart-item-gift-line label {
            cursor: pointer !important;
        }

    .deals .coupon-box {
        margin-bottom: 15px;
    }
