
.ic-cart-sidebar-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    width: 450px;
    max-width: 90%;
    background: #fff;
    z-index: 999999;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.3s;
    color: #000;
}
.active-mini-cart .ic-cart-sidebar-wrapper {
    transform: translateX(0);
}

.ic-cart-header-btn {
    cursor: pointer;
    text-align: center;
}

.ic-cart-sidebar-wrapper .remove.remove_from_cart_button {
    position: absolute;
    /* right: 0; */
    color: #687188 !important;
    font-size: 12px;
    left: 110px;
    bottom: 5px;
    width: auto;
    /* height: 20px; */
    vertical-align: middle;
}
.ic-cart-sidebar-wrapper .remove.remove_from_cart_button:hover {
    background-color: #fff;
    color: var(--main-red) !important;
}

.ic-cart-sidebar-wrapper .quantity + span.woocommerce-Price-amount.amount {
    position: absolute;
    top: 50px;
    left: 115px;
}

.ic-cart-sidebar-wrapper .quantity + span.woocommerce-Price-amount.amount::before {
    content: 'Price';
    margin-right: 5px;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-red);
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header p {
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_header .ic-cart-header-btn-close {
    background: #F3F5F6;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    border: 0;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body {
    padding: 20px;
    border-top: 1px solid #EAEAEA;
    position: relative;
    height: calc(100% - 40px);
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body.loading::after {
    content: "";
    position: absolute;
    background-color: #0000007f;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul {
    height: calc(100dvh - 320px);
    overflow-x: hidden;
    margin-right: -15px;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item {
    display: flex;
    padding: 20px 0;
    position: relative;
    font-size: 15px;
    line-height: 18px;
    border-bottom: 1px solid #EAEAEA;
    margin-right: 10px;
    padding-right: 12px;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item img {
    width: 90px;
    height: auto;
    border-radius: 4px;
    margin-right: 20px;
}


.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity {
    margin-top: 8px;
    min-height: 35px;
    max-height: 35px;
    width: 90px;
    max-width: 90px;
    position: relative;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity {
    margin-top: 10px;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity button:first-child {
    left: 5px;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity button:last-child {
    right: 0;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity button {
    width: 25px;
    height: 25px;
    line-height: 0;
    background: #EAEAEA;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 0;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    color: #000;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity button:hover {
    background-color: var(--main-red);
    color: #fff;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity .qty {
    display: block;
    height: 35px;
    padding: 0;
    width: 100%;
    border: 1px solid #EAEAEA;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    font-size: 15px;
    line-height: 22px;
    color: #171717;
    text-align: center;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity .qty::-webkit-outer-spin-button,
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul li.woocommerce-mini-cart-item.mini_cart_item .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__total {
    line-height: 35px;
    font-weight: 700;
    color: #171717;
    display: flex;
    justify-content: space-between;
}

.ic-cart-sidebar-wrapper .ic-custom-render-total {
    position: absolute;
    right: 0;
    bottom: 20px;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__buttons {
    position: absolute;
    bottom: 45px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__buttons a {
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 2px solid var(--main-red);
    filter: drop-shadow(0px 5px 20px rgba(245, 195, 75, 0.15));
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    background-color: transparent;
    color: #171717;
    display: block;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__buttons a:last-child {
    box-shadow: 0px 5px 20px rgba(0, 98, 122, 0.15);
    background: var(--main-red);
    color: #fff;
}
.ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body .woocommerce-mini-cart__buttons a:hover {
    box-shadow: 0px 5px 20px rgba(0, 98, 122, 0.15);
    background: var(--main-red);
    color: #fff;
}
.ic-cart-sidebar-wrapper .free-shipping {
    text-align: center;
    font-size: 12px;
    background-color: #000;
    color: #fff;
    margin-top: -21px;
    margin-left: -20px;
    margin-right: -20px;
}
.cart-totals {
    position: absolute;
    bottom: 130px;
    right: 20px;
    left: 20px;
}
.cart-totals p {
    margin-bottom: 2px;
}
.cart-totals .discounts, .cart-totals .subtotal {
    display: none;
}
.cart-totals .discounts.active, .cart-totals .subtotal.active, .cart-totals .shipping {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}
/*
.international .ic-cart-sidebar-wrapper .ic-cart-sidebar-wrapper_body ul {
    height: calc(100dvh - 490px);
}
*/