.remove_icon_svg {
    display: block;
    height: 20px !important;
    width: 21px !important;
}

.edit_icon_svg {
    display: block;
    height: 14px !important;
    width: 13px !important;
}

.cart_drawer_product_detials_link {
    text-decoration: underline;
}

/* ======= breadcrumb css start ===== */
.soppiya__cart_page .breadcrumb__wrapper {
    background-color: #f7f7f7;
}

.soppiya__cart_page .breadcrumb {
    padding: 20px 0;
}

.soppiya__cart_page .breadcrumb__title_wrapper {
    margin-bottom: 10px;
    text-align: center;
}

.soppiya__cart_page .breadcrumb__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #333333;
}

.soppiya__cart_page .breadcrumb__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soppiya__cart_page .breadcrumb__nav li {
    display: flex;
    align-items: center;
}

.soppiya__cart_page .breadcrumb__nav li a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
    text-decoration: none;
}

.soppiya__cart_page .breadcrumb__nav li span {
    display: flex;
}

/* ========== CART ITEMS AREA ========== */
.soppiya__cart_page .cart__items_area {
    padding: 30px 0;
}

/* item info bar */
.soppiya__cart_page .cart__item_info__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
    margin-bottom: 7px;
}

/* cart line items */

.soppiya__cart_page .cart__line_item {
    padding: 20px 0;
    box-shadow: 0 1px 0 0 #ececec;
    display: flex;
    gap: 15px;
}

.soppiya__cart_page .cart__line_item:nth-child(1) {
    box-shadow: 0 1px 0 0 #ececec, 0 -1px 0 0 #ececec;
}

.soppiya__cart_page .cart__line_item img {
    width: 120px;
    height: 132px;
    display: block;
    object-fit: cover;
}

.soppiya__cart_page .cart__line_item .item__contents {
    display: flex;
    flex-direction: column;
    width: calc(100% - 135px);
}

.soppiya__cart_page .cart__line_item .item__contents .item__info {
    padding: 8px 0;
}

.soppiya__cart_page .cart__line_item .item__contents .item__info:not(:first-child) {
    box-shadow: 0 -1px 0 0 #ececec;
}

.soppiya__cart_page .cart__line_item .item__name {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 3px;
}

.soppiya__cart_page .cart__line_item .variants {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 3px;
}

.soppiya__cart_page .cart__line_item .variants p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #999999;
}

.soppiya__cart_page .cart__line_item .variants .variant__edit,
.soppiya__cart_page .cart__line_item .empty__icon {
    display: flex;
    width: max-content;
    gap: 5px;
}

/* price */

.soppiya__cart_page .cart__line_item .item__price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.soppiya__cart_page .cart__line_item .item__price .price,
.soppiya__cart_page .cart__line_item .total__price {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
    position: relative;
}

.soppiya__cart_page .cart__line_item .item__price .old__price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #999999;
}

.soppiya__cart_page .cart__line_item .item__price .old__price {
    color: #999999;
}

.soppiya__cart_page .cart__line_item .quantity__box {
    width: 100px;
    height: 44px;
    display: flex;
    border: 1px solid #ececec;
    border-radius: 5px;
}

.soppiya__cart_page .cart__line_item .quantity__controll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 100%;
    outline: none;
    background-color: transparent;
    border: none;
}

.soppiya__cart_page .cart__line_item .quantity__controll svg {
    display: flex;
}

.soppiya__cart_page .cart__line_item .quantity__count {
    border: none;
    text-align: center;
    background-color: transparent;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    width: calc(100% - 46px);
    outline: none;
}

input.quantity__count::-webkit-outer-spin-button,
input.quantity__count::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* gift wrap item */
.soppiya__cart_page .gift__wrap_item img {
    height: 70px;
}

.soppiya__cart_page .gift__wrap_item .variants,
.soppiya__cart_page .gift__wrap_item .quantity__box {
    display: none;
}

.soppiya__cart_page .gift__wrap_item .item__contents .item__col_quantity {
    box-shadow: unset !important;
    padding: 0;
}

/* item checkout area */
.soppiya__cart_page .item__checkout_area {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.soppiya__cart_page .gift__wrap_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.soppiya__cart_page .gift__wrap_heading p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.soppiya__cart_page .gift__wrap_heading p span {
    display: flex;
}

.soppiya__cart_page .gift__wrap .gift_wrap__btn {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #333333;
    background-color: #f3f3f3;
    border: none;
    width: max-content;
    height: 36px;
    border-radius: 5px;
    padding: 0 22px;
}

.soppiya__cart_page .gift__wrap_form {
    margin-top: 24px;
}

.soppiya__cart_page .gift__wrap_form .input__wrapper .label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.soppiya__cart_page .gift__wrap_form .input__wrapper p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
    margin-bottom: 16px;
}

.soppiya__cart_page .gift__wrap_form .form__control,
.soppiya__cart_page .estimate__shipping .form__control {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #333;
    width: 100%;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    outline: none;
    padding: 10px;
}

.soppiya__cart_page .gift__wrap_form .input__box_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.soppiya__cart_page .gift__wrap_form .textarea__control {
    height: 130px;
    resize: none;
}

.soppiya__cart_page .item__checkout_area .coupon__wrapper {
    max-width: 282px;
    margin: 0 auto;
    text-align: center;
}

/* item checkout */

.soppiya__cart_page .item__checkout .offer__text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #333333;
    text-align: center;
    padding-bottom: 12px;
}

.soppiya__cart_page .item__checkout .offer__text span {
    font-weight: 600;
    color: #ec0101;
}

.soppiya__cart_page .item__checkout .offer__progressbar_wrapper {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
    /* margin-top: 4px; */
}

.soppiya__cart_page .item__checkout .offer__progressbar {
    width: 100%;
    height: 8px;
    background-color: #d9d9d9;
    border-radius: 10px;
    margin: 14px 0 10px 0px;
}

.soppiya__cart_page .item__checkout .progress__fill {
    width: 0%;
    height: 8px;
    background-color: #6bad0d;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
}

.soppiya__cart_page .item__checkout .progress__fill::before {
    content: "";
    background: url("{{ icon.png | asset_url}}");
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #6bad0d;
    background-repeat: no-repeat;
    background-position: center;
}

.soppiya__cart_page .item__checkout .subtotal__price {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    margin-top: 22px;
}

.soppiya__cart_page .item__checkout .subtotal__price p,
.soppiya__cart_page .item__checkout .subtotal__price span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #333333;
    display: block;
}

.soppiya__cart_page .item__checkout .total__calculated_val {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #333333;
    text-align: center;
}

.soppiya__cart_page .item__checkout .check__conditions {
    width: 260px;
    margin: 10px auto;
}

/* custom checkbox  css start */

.soppiya__cart_page .item__checkout .checkbox__container {
    display: block;
    position: relative;
    padding-left: 23px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.soppiya__cart_page .item__checkout .checkbox__container input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.soppiya__cart_page .item__checkout .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #ccc;
}

.soppiya__cart_page .item__checkout .checkbox__container input:checked~.checkmark {
    background-color: #333333;
}

.soppiya__cart_page .item__checkout .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.soppiya__cart_page .item__checkout .checkbox__container input:checked~.checkmark:after {
    display: block;
}

.soppiya__cart_page .item__checkout .checkbox__container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* custom checkbox  css end */

/* btn */
.soppiya__cart_page .item__checkout .ecommerce__btn_groups {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.soppiya__cart_page .item__checkout .checkout__btn {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    background-color: var(--primaryColor);
    color: #fff;
    border: none;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    padding: 0px 90px;
    transition: background 0.3s;
}

.soppiya__cart_page .item__checkout .checkout__btn:hover {
    background-color: #333333;
}

.soppiya__cart_page .item__checkout .shop__btn {
    background-color: #333333;

}

.cursor_pointer {
    cursor: pointer;
}

.soppiya__cart_page .item__checkout .shop__btn:hover {
    background-color: var(--primaryColor);
}

/* estimate shipping */
.soppiya__cart_page .estimate__shipping_wrapper {
    margin-bottom: 50px;
    position: relative;
}

.soppiya__cart_page .legend__text {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background-color: #fff;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #000000;
}

.soppiya__cart_page .estimate__shipping {
    padding: 36px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
}

.soppiya__cart_page .estimate__shipping label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #555555;
    display: block;
}

.soppiya__cart_page .estimate__shipping .input__wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.soppiya__cart_page .estimate__shipping .select__box {
    position: relative;
}

.soppiya__cart_page .estimate__shipping .appearance__icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    z-index: 1;
}

.soppiya__cart_page .estimate__shipping select.form__control {
    appearance: none;
}

.soppiya__cart_page .estimate__shipping .btn {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    color: #555555;
    border: none;
    background-color: transparent;
}

.soppiya__cart_page .estimate__shipping .calculate__shipping_btn {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: var(--primaryColor);
    color: var(--secondaryColor);
}

/* related products */
.recent__view_products {
    margin-bottom: 50px;
}

.recent__view_products .product__groups {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.recent__view_products .section__title_wrapper {
    margin-bottom: 20px;
}

.recent__view_products .section__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #333333;
    text-align: center;
}

/* ?@___ loader animation ___@ */
.cart__line_items .cart__line_item {
    position: relative;
}

.cart__line_items .cart__line_item .item__iimg,
.cart__line_items .cart__line_item .item__contents {
    transition: opacity .3s;
}

.loader_wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
    background:
        var(--c) 50% 0,
        var(--c) 50% 100%,
        var(--c) 100% 50%,
        var(--c) 0 50%;
    background-size: 12px 12px;
    animation: l12 1s infinite;
}

.loader::before {
    margin: 4px;
    filter: hue-rotate(45deg);
    background-size: 8px 8px;
    animation-timing-function: linear
}

@keyframes l12 {
    100% {
        transform: rotate(.5turn)
    }
}

@media (min-width: 494px) {
    .soppiya__cart_page .item__checkout .checkout__btn_wrapper {
        width: max-content;
        margin: auto;
    }

    .recent__view_products .product__groups {
        gap: 16px;
    }
}

@media (min-width: 724px) {
    .recent__view_products .product__groups {
        gap: 20px;
    }
}

@media (min-width: 972px) {
    .cart_drawer_product_detials_link {
        cursor: pointer;
    }

    /* ========== CART ITEMS AREA ========== */
    .soppiya__cart_page .cart__items_area {
        padding: 80px 0;
    }

    .soppiya__cart_page .cart__item_info__bar {
        display: flex;
    }

    .soppiya__cart_page .cart__item_info__bar .col {
        display: flex;
    }

    .soppiya__cart_page .cart__item_info__bar .col p {
        font-size: 16px;
        line-height: 24px;
        font-weight: 700;
        color: #333333;
    }

    .soppiya__cart_page .item__col_title {
        width: calc(100% - 540px);
    }

    .soppiya__cart_page .item__col_price {
        width: 220px;
    }

    .soppiya__cart_page .item__col_total,
    .soppiya__cart_page .item__col_quantity {
        width: 160px;
    }

    .soppiya__cart_page .item__col_price,
    .soppiya__cart_page .item__col_quantity {
        justify-content: center;
        text-align: center;
    }

    .soppiya__cart_page .item__col_total {
        justify-content: flex-end;
        text-align: right;
    }

    /* cart line items */

    .soppiya__cart_page .cart__line_item {
        align-items: center;
        transition: opacity .3s;
        position: relative;
    }

    .soppiya__cart_page .cart__line_item .item__contents {
        width: calc(100% - 120px - 15px);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .soppiya__cart_page .cart__line_item .item__contents .item__info:not(:first-child) {
        box-shadow: unset;
    }

    .soppiya__cart_page .cart__line_item .item__price {
        justify-content: center;
    }

    .soppiya__cart_page .cart__line_item .quantity__box {
        margin: 0 auto;
    }

    /* item checkout area */
    .soppiya__cart_page .item__checkout_area {
        flex-direction: row;
        gap: 60px;
        margin-bottom: 80px;
    }

    .soppiya__cart_page .item__checkout_area .gift__wrap_col {
        width: calc(100% / 2 - 30px);
    }

    .soppiya__cart_page .gift__wrap_heading {
        flex-direction: row;
        justify-content: space-between;
    }

    .soppiya__cart_page .gift__wrap_form {
        margin-top: 26px;
    }

    .soppiya__cart_page .gift__wrap_form .input__wrapper .label {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .soppiya__cart_page .gift__wrap_form .input__box_wrapper {
        gap: 26px;
        margin-bottom: 0;
    }

    .soppiya__cart_page .item__checkout_area .coupon__wrapper {
        max-width: 342px;
        margin: 0;
        text-align: left;
    }

    .soppiya__cart_page .gift__wrap .gift_wrap__btn,
    .soppiya__cart_page .item__checkout .checkout__btn,
    .soppiya__cart_page .empty__icon,
    .soppiya__cart_page .quantity__controll,
    .soppiya__cart_page .estimate__shipping select.form__control,
    .soppiya__cart_page .estimate__shipping .btn,
    .soppiya__cart_page .cart__line_item .variants .variant__edit {
        cursor: pointer;
    }

    .soppiya__cart_page .item__checkout .offer__text,
    .soppiya__cart_page .item__checkout .total__calculated_val {
        text-align: right;
    }

    .soppiya__cart_page .item__checkout .offer__progressbar_wrapper,
    .soppiya__cart_page .item__checkout .checkout__btn_wrapper {
        margin: 0;
        margin-left: auto;
    }

    .soppiya__cart_page .item__checkout .subtotal__price {
        justify-content: flex-end;
    }

    .soppiya__cart_page .item__checkout .check__conditions {
        margin: 10px 0px 10px auto;
    }

    /* estimate shipping */
    .soppiya__cart_page .estimate__shipping_wrapper {
        margin-bottom: 80px;
    }

    .soppiya__cart_page .legend__text {
        font-size: 18px;
        line-height: 26px;
        top: -23px;
    }

    .soppiya__cart_page .estimate__shipping {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        align-items: end;
        padding: 50px 30px;
    }

    .soppiya__cart_page .estimate__shipping .input__wrapper {
        margin-bottom: 0;
    }

    /* related products */
    .recent__view_products {
        margin-bottom: 80px;
    }

    .recent__view_products .section__title_wrapper {
        margin-bottom: 40px;
    }

    .recent__view_products .section__title {
        font-size: 28px;
        line-height: 36px;
    }

}

@media (min-width: 1220px) {

    /* cart line items */
    .soppiya__cart_page .item__col_title {
        width: calc(100% - 750px);
    }

    .soppiya__cart_page .item__col_price {
        width: 300px;
    }

    .soppiya__cart_page .item__col_total,
    .soppiya__cart_page .item__col_quantity {
        width: 200px;
    }
}

.error_cart{
    color: red;
}