/* CSS FOR CARD SLIDE */
.cartoverlay {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.shipping_cart_wrap {
    position: fixed;
    background: #fff;
    right: 0;
    overflow-x: hidden;
    height: 100%;
    width: 390px;
    top: 0;
    z-index: 1001;
    z-index: 9999999999;
    transform: translateX(100%);
    overflow-y: auto;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.shipping_cart_wrap.active {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
}

.cartit {
    font-size: 22px;
    line-height: 100%;
    color: #242929;
    font-weight: 600;
    text-transform: uppercase;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.cartheight {
    height: calc(100vh - 360px) !important;
    background: #f3f3f3;
    overflow-y: scroll;
}

.cart-is-empty .cartheight {
    height: calc(100vh - 83px);
}

.closecart {
    position: absolute;
    right: 20px;
    font-size: 0;
    text-align: right;
    text-transform: capitalize;
    cursor: pointer;
    top: 30px;
    font-weight: normal;
    line-height: 100%;
}

.closecart img {
    vertical-align: middle;
}

.cartnavimg {
    width: 60px;
}

.cartnavimg a {
    display: block;
    border: 1px solid #d4d4d4;
    padding: 10px;
    background: #ffffff;
}

.cartnavimg img {
    margin: auto;
    max-height: 100%;
}

.cartnavtxt {
    padding-left: 20px;
    flex: 1;
}

.cartnavtxt a {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.cartnavtxt p {
    color: #545454;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
}

.cartnavtxt span {
    color: #545454;
    font-size: 15px;
    line-height: 100%;
    font-weight: 700;
}

.cartnavmain {
    display: flex;
    overflow: hidden;
    flex: 1;
}

.cartnavlist {
}

.cartnavlist li {
    position: relative;
    border-bottom: 1px solid #d4d4d4;
    padding: 30px;
    display: flex;
}

.cartnavlist li:last-child {
    border-bottom: none;
}

.cartnavtxt h2,
.cartnavtxt .variation,
.cartnavtxt .variation > *,
.cartnavtxt .variation p {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.2;
}
.cartnavtxt .variation dd p:last-child {
    margin-bottom: 0 !important;
}
.cartdel-wrap {
    padding-left: 10px;
}
.cartnavtxt .variation {
    display: flex;
    margin-bottom: 0;
}
.cartnavtxt .variation dt {
    margin-right: 10px;
}
.cartdel {
    font-size: 16px;
    color: #545454;
    width: 30px;
    text-align: right;
    z-index: 1;
    padding: 10px 0;
}

.cartdel:hover,
.submenu li:hover > a,
.submenu li.active > a {
    color: var(--green);
}

.cartotal p {
    color: #545454;
    font-size: 16px;
}

.cartotal {
    font-size: 0;
    padding: 15px 20px;
    border-top: 1px solid #d4d4d4;
}

.cartbtnbox {
    padding: 30px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cartnav  .cartbtnbox a.btn-lg{
	width: 48%;
    margin-bottom: 0;
    min-height: 48px;
    padding: 6px 40px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border:1px solid var(--brown);
}
.cartnav  .cartbtnbox a.btn-lg.btn_border{
	color: var(--button-text-color);
    border-color: var(--button-text-color);
}
.cartnav  .cartbtnbox a.btn-lg.btn_theme {
	background: var(--brown);
	color: var(--white);
}
.cartnav  .cartbtnbox a.btn-lg:hover{
	background: var(--button-text-color);
	color: var(--white);
}


.cartnav .qty-wrapper {
    margin-bottom: 3px;
    display: flex;
    flex-wrap: wrap;
}

.cartnav .qty-wrapper .quantitybox {
    width: 75px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #d4d4d4;
    border-radius: 0px;
    overflow: hidden;
    height: 24px;
    justify-content: space-between;
}

.cartnav .qty-wrapper .value-button img {
    width: 7px;
}

.cartnav .qty-wrapper .quantity .qty {
    color: #626967;
    font-family: "Nunito";
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    outline: none;
    border: 0 !important;
    height: 100%;
}

.cartnav .qty-wrapper .quantity {
    width: calc(100% - 44px);
    height: auto;
    align-items: center;
    padding: 0;
    display: inline-flex;
}

.cartnav .qty-wrapper .value-button {
    font-size: 14px;
    margin: 0 -1px;
    height: 21px;
    width: 22px;
    line-height: 20px;
    text-align: center;
    float: left;
    color: #575757;
    background: #eeeeee;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    border: 0;
    border-left: 1px solid #e8e8e8;
    position: relative;
    padding: 0;
}

.cartnav .price ins span,
.cartnav .price ins,
.cartnav .price ins .woocommerce-Price-amount,
.cartnav span.price .woocommerce-Price-currencySymbol,
.cart-subtotal .woocommerce-Price-amount.amount,
.cartnavtxt span.price,
.cartnavtxt .price .woocommerce-Price-amount.amount,
.gift-panel .gift-info .gift-price .woocommerce-Price-amount.amount {
    font-size: 14px;
    text-decoration: none;
    color: var(--brown);
}

.shipping_cart_wrap .cart-subtotal .woocommerce-Price-amount.amount {
        font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.shipping_cart_wrap .cart-shipping {
    border-top: 1px solid #d4d4d4;
    padding: 30px 0 0 0;
    color: #242929;
    font-weight: 600;
}

.btn-lg {
    width: 100%;
}

.shipping_cart_wrap .cart-shipping p img {
    margin-right: 15px;
}

.shipping_cart_wrap .cart-subtotal label {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: var(--product-title);
}

.shipping_cart_wrap .cart-subtotal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.shipping_cart_wrap .cartbtnbox .btn_border {
    margin-bottom: 10px;
}

body.cart_open {
    overflow-y: hidden;
}

.quantity-button-wrap .qtytitle {
    font-size: 14px;
    font-weight: 500;
    text-transform:capitalize;
    letter-spacing: 0.32px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 100%;
}

/* CSS FOR CARD SLIDE */


@media (max-width: 575.99px){
	.shipping_cart_wrap.active{width: 100%}
	.cartnav .cartbtnbox a.btn-lg{padding: 6px 20px;}
	.cartbtnbox{padding: 20px;}
}