.cart-banner-section{
    background-image: url('../images/cart-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 350px;
}
.cart-tabs{
    flex-direction: column;
}
.cart-nav-link{
    font-size: 19px;
    color: #3E3E3E;
}
.cart-nav-link.active{
    color: var(--main-orange-color);
}
.cart-nav-link.active:after{
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    margin-top: 5px;
    background-color: var(--main-orange-color);
}
.tabs-title,.delivery-title{
    font-size: 19px;
    color: var(--main-orange-color);
}
.tabs-title:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 25px;
    background-color: rgba(221, 165, 25, 0.3);
}
.delivery-title:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 25px;
    background-color: rgba(221, 165, 25, 0.3);
}
.select-all-div {
    border: 1px solid #D4D4D4;
    border-radius: 6px;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 65px;
    align-items: center;
}
.delete-all,.delete-all:hover{
    font-weight: bold;
    font-size: 14px;
    color: #FD4226;
}
.select-all {
    font-size: 16px;
    color: #3E3E3E;
    display: block;
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.select-all input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 1px;
    right: 2px;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 1px solid #3E3E3E;
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.select-all:hover input ~ .checkmark {
    background-color: white;
}

/* When the checkbox is checked, add a blue background */
.select-all input:checked ~ .checkmark {
    background-color: var(--main-orange-color);
    border: none;
    border-radius: 3px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.select-all input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.select-all .checkmark:after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cart-things-div{
    background-color: rgb(255 255 255);
    border-radius: 6px;
    box-shadow: 0 2px 2px #0000000f;
    padding: 5px 20px 15px;
    border: 1px solid rgb(212 212 212);
    margin-top: 12px;
}
.cart-flex-div{
    display: flex;
    align-items: center;
}
.cart-image{
    width: 100%;
    border-radius: 10px;
}
.cart-info-type{
    font-size: 14px;
    font-weight: bold;
    color: #793A33;
}
.cart-info-title,.cart-info-text{
    font-size: 17px;
    color: #463612;
}
.cart-info-size{
    font-size: 16px;
    color: var(--main-orange-color);
}
.price{
    font-family: Arial,sans-serif;
    font-weight: bold;
}
.quantity-cart{
    display: flex;
    border: 1px solid rgb(212 212 212);
    justify-content: center;
    align-items: center;
    height: 45px;
    border-radius: 6px;
    padding-right: 15px;
    padding-left: 15px;
    width: 45%;
}
.quantity-cart-select{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    border-radius: 6px;
    padding-right: 15px;
    padding-left: 15px;
    width: 45%;
}
.quantity-cart .count  ,.quantity-cart .count:focus{
    font-family: Arial,sans-serif;
    font-weight: bold;
    color: var(--main-orange-color);
    font-size: 18px;
    padding-top: 4px;
    outline: none;
}
.quantity-cart .plus {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    font: 30px/1 Arial,sans-serif;
    text-align: right;
}
.quantity-cart .minus {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    font: 30px/1 Arial,sans-serif;
    text-align: left;
}
.quantity-cart .minus-disabled {
    cursor: default;
    display: inline-block;
    width: 50%;
    font: 30px/1 Arial,sans-serif;
    text-align: left;
}
input{
    border: 0;
    background: none;
    width: 100%;
    text-align: center;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input:disabled{
    background-color:white;
}
.quantity-main-div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.trash-button{
    border-radius: 6px;
    border: 1px solid #D8D8D8;
    box-shadow: 0 2px 2px #0000000f;
    height: 45px;
    width: 45px;
}
.trash-icon{
    font-size: 15px;
    color: #A4A4A4;
}
.prod-div{
    width: 34%;
    border: 1px solid #D4D4D4;
    border-radius: 10px;
}
.min-plus-img{
    width: 14px;
}
.fav-button,.fav-button:hover{
    font-size: 18px;
    background-color: var(--main-orange-color);
    color: white;
    border-radius: 6px;
    border: 1px solid var(--main-orange-color);
    box-shadow: 0 2px 2px #0000000f;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.select-pos{
    bottom: 10px;
}
.payment-total-title{
    font-size: 17px;
    color: #3E3E3E;
}
.coupon-title{
    font-size: 17px;
    color: #3E3E3E;
    cursor: pointer;
}
.coupon-title:hover{
    color: var(--main-orange-color);
}
.payment-total-text{
    font-weight: bold;
    font-size: 16px;
    color: var(--main-orange-color);
}
.total-main-div{
    /* width: 35%; */
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.continue-div{
    width: 35%;
    display: inline-block;
    float: right;
}
.continue-button,.continue-button:hover{
    font-size: 16px;
    background-color: var(--main-orange-color);
    color: white;
    border-radius: 8px;
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    height: 42px;
}
.cart-input,.cart-input:focus{
    font-size: 14px;
    color: #3E3E3E;
    border: 1px solid rgba(165, 165, 165, 0.58);
    border-radius: 8px;
    width: 100%;
    height: 47px;
    padding-right: 15px;
    outline: none;
    text-align: right;
}
.cart-input::placeholder,.cart-textarea::placeholder{
    font-size: 14px;
    color: #3E3E3E;
}
.cart-textarea{
    font-size: 14px;
    color: #3E3E3E;
    border: 1px solid rgba(165, 165, 165, 0.58);
    border-radius: 8px;
    width: 100%;
    padding-top: 15px;
    padding-right: 15px;
    outline: none;
    text-align: right;
    resize: none;
}
.select-save {
    font-size: 15px !important;
    color: var(--main-orange-color) !important;
}
.star-txt-div{
    display: flex;
    font-size: 16px;
    line-height: 25px;
    color:  #3E3E3E;
}
.delivery-div{
    background-color: #E2E2E2;
    border-radius: 8px;
}
.delivery-to-home{
    font-size: 16px;
    font-weight: bold;
    color: rgba(62, 62, 62, 0.88);
}
.arial-font{
    font-family: Arial, sans-serif
}
.delivery-txt{
    font-size: 14px;
}
.back-to,.back-to:hover,.back-to-link,.back-to-link:hover{
    font-size: 17px;
    color: var(--main-orange-color);
    text-align: center;
}
.back-to2,.back-to2:hover,.back-to2-link,.back-to2-link:hover{
    font-size: 17px;
    color: red;
    text-align: center;
}
.payment-title{
    font-size: 20px;
    font-weight: bold;
    color: var(--main-orange-color);
}
.payment-choose{
    font-size: 18px;
    color: #3E3E3E;
}
.payment-choose-div{
    display: flex;
    justify-content: center;
}
.payment-link,.payment-link:hover{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 43px;
    color: white;
    border-radius: 8px;
}
.payment-link.visa{
    background-color: var(--main-orange-color);
    font-size: 16px;
}
.payment-link.paypal{
    border: 1px solid rgba(165, 165, 165, 0.58);
    background-color: white;
}

.payment-label{
    font-size: 15px;
    color: #3E3E3E;
    width: 100%;
    padding-right: 2px;
}
.payment-input-style{
    border: 1px solid #6A777F4A;
    border-radius: 8px;
    width: 100%;
    height: 43px;
    padding-right: 15px;
    color: #3E3E3E;
    text-align: right;
}
.payment-input-style:focus{
    border: 2px solid var(--main-orange-color);
    outline: var(--main-orange-color);
}
input[type=number]::-webkit-outer-spin-button,input[type=number]::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
.select-style{
    background: none;
    border: 1px solid #6A777F4A;
    border-radius: 8px;
    width: 100%;
    height: 40px;
    padding-right: 15px;
    color: #3E3E3E;
    font-size: 15px;
}
.select-style:focus,.select-form-style:focus{
    border: 2px solid var(--main-orange-color);
    outline: var(--main-orange-color);
}
.card{
    border: none;
}
#validateCard span.card span{
    left: unset;
    top: 1px;
    right: 4px;
}
.credit-card-btn,.credit-card-btn:hover{
    font-size: 17px;
    width: 100%;
    height: 45px;
    border-radius: 8px;
    color: white;
}
.credit-card-btn.payment-btn{
    background-color: var(--main-orange-color);
}
.credit-card-btn.cancel-btn{
    background-color: rgba(193, 193, 193, 0.91);
}
.coupon-div{
    background-color: #754921;
    border-radius: 7px;
}

@media (max-width:900px){
    .cart-nav-link{
        margin: auto;
    }
    .cart-nav-link.active:after{
        margin: 5px auto;
    }
    .continue-div{
        width: 100%;
    }
    .reviews-div{
        justify-content: start;
    }
    .total-main-div{
        width: 100%;
        justify-content: center;
    }
    .quantity-cart .count, .quantity-cart .count:focus{
        font-size: 15px;
    }
    .min-plus-img{
        width: 9px;
    }
    .prod-div{
        width: 40%;
    }
    .cart-info-title{
        font-size: 16px;
    }
    .quantity-cart{
        width: 55%;
    }
    .tabs-title:after{
        margin-top: 15px;
    }
    .payment-total-title{
        text-align: right;
    }
    .coupon-title{
        text-align: right;
    }
    .payment-link, .payment-link:hover{
        height: 65px;
    }
    .credit-card-btn, .credit-card-btn:hover{
        font-size: 18px;
        height: 55px;
    }
    .mobile-margin-5{
        margin: 5%;
    }
}
