/** Shopify CDN: Minification failed

Line 44:4 Unexpected "{"
Line 44:5 Expected identifier but found "%"
Line 46:4 Unexpected "{"
Line 46:5 Expected identifier but found "%"
Line 48:4 Unexpected "{"
Line 48:5 Expected identifier but found "%"
Line 51:4 Unexpected "{"
Line 51:5 Expected identifier but found "%"
Line 53:4 Unexpected "{"
Line 53:5 Expected identifier but found "%"
... and 20 more hidden warnings

**/
.cart-page .cart-item-wrap {
    border: 1px solid #e2e2e2;
    border-radius: 5px;
}
.cart-page .cart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #e2e2e2;
}
.cart-page .cart-title h6 {
    font-size: 16px;
    line-height: 1;
}
@media (max-width: 767px) {
  
}

/* cart item css */
.cart-page .item-wrap ul {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e2e2;
}
.cart-page .item-wrap ul li{
    padding: 15px;
    {%- if settings.enable_rtl -%}
    border-left: 1px solid #e2e2e2;
    {%- else -%}
    border-right: 1px solid #e2e2e2;
    {%- endif -%}
}
.cart-page .item-wrap ul li:last-child{
    {%- if settings.enable_rtl -%}
    border-left: none;
    {%- else -%}
    border-right: none;
    {%- endif -%}
}
.cart-page .item-wrap ul li.item-info {
    width: 60%;
}
.cart-page .item-wrap ul li.item-qty,
.cart-page .item-wrap ul li.item-price {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 991px) {
    .cart-page .item-wrap ul li.item-info {
        width: 100%;
        {%- if settings.enable_rtl -%}
        border-left: none;
        {%- else -%}
        border-right: none;
        {%- endif -%}
    }
    .cart-page .item-wrap ul li.item-qty,
    .cart-page .item-wrap ul li.item-price {
        width: 50%;
        border-top: 1px solid #e2e2e2;
    }
}
@media (max-width: 767px) {}

/* cart image css */
.cart-page .item-wrap ul li.item-info {
    display: flex;
    align-items: center;
}
.cart-page .item-wrap ul li.item-info .item-img {
    width: 120px;
}
.cart-page .item-wrap ul li.item-info .item-title {
    width: calc(100% - 120px);
    padding: 0 15px;
}
.cart-page .item-wrap ul li.item-info .item-title a {
    display: block;
    font-weight: 600;
    line-height: 1;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option {
    display: flex;
    margin-top: 11px;
    line-height: 1;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option span.pro-variant-title {
    color: #222;
    font-weight: 600;
}
.cart-page .item-wrap ul li.item-info .item-title span.item-option span.pro-variant-type {
    {% if settings.enable_rtl %}
    margin-right: 5px;
    {% else %}
    margin-left: 5px;
    {% endif %}
}

/* cart qty css */
.cart-page .item-wrap ul li.item-qty {
    text-align: center;
}
.cart-page .item-wrap ul li.item-qty .product-quantity {
    display: flex;
    justify-content: center;
}
.cart-page .item-wrap ul li.item-qty .item-remove {
    margin-top: 13px;
    line-height: 1;
}
.cart-page .item-wrap ul li.item-qty .item-remove .remove-wrap a {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .cart-page .item-wrap ul li.item-qty {
        display: flex;
        align-items: flex-start;
    }
}

/* cart price css */
.cart-page .item-wrap ul li.item-price {
    {% if settings.enable_rtl %}
    text-align: left;
    {% else %}
    text-align: right;
    {% endif %}
}
.cart-page .item-wrap ul li.item-price span.amount {
    font-weight: 600;
}

/* cart button css */
.cart-page .cart-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}
.cart-page .cart-buttons input {
    color: #666;
    padding: 0;
    background-color: transparent;
    border: none;
    text-decoration: underline;
}
.cart-page .cart-buttons input:hover {
    color: var(--font-color-primary);
}
@media (max-width: 767px) {
    .cart-page .cart-buttons {
        flex-direction: column;
    }
    .cart-page .cart-buttons a {
        margin-top: 8px;
    }
}

/* cart total css */
.cart-page .cart-total-wrap {
    position: sticky;
    top: 0;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
}
.cart-page .cart-total-wrap .cart-sub-total,
.cart-page .cart-total-wrap .cart-total .total-amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #e2e2e2;
}
.cart-page .cart-total-wrap .cart-sub-total span.subtotal-title,
.cart-page .cart-total-wrap .cart-sub-total .amount,
.cart-page .cart-total-wrap .cart-total .total-amount .amount,
.cart-page .cart-total-wrap .cart-total .total-amount span.total-title {
    font-weight: 600;
}
@media (max-width: 991px) {
    .cart-page .cart-total-wrap {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .cart-page .cart-total-wrap {
        margin-top: 20px;
    }
}

/* cart shipping css */
.cart-page .cart-total-wrap .culculate-shipping {
    padding: 15px 0;
    border-bottom: 1px solid #e2e2e2;
}
.cart-page .cart-total-wrap .culculate-shipping h6 {
    font-size: 16px;
    line-height: 1;
    padding: 0 15px;
}
.cart-page .cart-total-wrap .culculate-shipping ul li{
    padding: 0 15px;
}
.cart-page .cart-total-wrap .culculate-shipping ul li.field {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}
.cart-page .cart-total-wrap .culculate-shipping ul li.field label {
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 600;
    display: block;
    cursor: auto;
}
.cart-page .cart-total-wrap .culculate-shipping ul li.field select {
    padding: 10px 30px 10px 15px;
}
.cart-page .cart-total-wrap .culculate-shipping .shipping-info,
.cart-page .cart-total-wrap .cart-total .proceed-to-checkout {
    padding-top: 15px;
    text-align: center;
}
.cart-page .cart-total-wrap .cart-total .proceed-to-checkout{
    padding-bottom: 15px;
}
.cart-page .cart-total-wrap #wrapper-response p {
    padding: 10px 15px;
    margin-top: 15px;
    text-align: center;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    line-height: normal;
}
.cart-page .cart-total-wrap #wrapper-response ul#shipping-rates li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #e2e2e2;
}
.cart-page .cart-total-wrap #wrapper-response ul#shipping-rates li span {
    font-weight: 600;
}
@media (max-width: 767px) {}

/* cart empty css */
.cart-page .empty-cart-page {
    text-align: center;
}
.cart-page .empty-cart-page h2 {
    font-size: 50px;
}
.cart-page .empty-cart-page h2 span {
    display: block;
}
.cart-page .empty-cart-page p {
    margin-top: 30px;
}
.cart-page .empty-cart-page p a {
    font-size: 16px;        
    font-weight: 600;
}
@media (max-width: 767px) {
    .cart-page .empty-cart-page h2 {
        font-size: 30px;
    }
    .cart-page .empty-cart-page p {
        margin-top: 20px;
    }
    .cart-page .empty-cart-page p a {
        font-size: 14px;
    }
}