@charset "utf-8";
/* CSS Cart */

/*---------------- Header -------------*/
.outline{
    height:120px;
    border-bottom: 1px var(--shading2) solid;
    text-align:center;
    padding-top: 40px;
}

/*---------------- Breadcrumb -------------*/
.breadcrumbb-bg{
    height:80px;
    border-bottom: 1px var(--shading2)solid;
}

.breadcrumbb{
    margin-top: 30px;
}

.breadcrumb-checkout{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.breadcrumb-checkout a{
    margin-top: 20px;
}



/* ---------------DROP DOWN SECTION----------------*/


.size-dropdown, .city-dropdown, .country-dropdown{
    width: 100%;
}

.country-dropdown {
    margin-bottom: 30px;
}

.city-dropdown label, .state-dropdown label, .country-dropdown label{
    font-family: subfont;
    font-size: 14px;
    color: var(--primary);
}



#citybtn, #statebtn, #countrybtn {
    background-color: transparent;
    color: var(--shading2);
    font-size: 14px;
    width: 100%;
    padding: 9px 16px 9px 16px;
    text-align: left;
    border: var(--shading2) 1px solid;
    border-radius: 4px;
    cursor: pointer;
}

#citybtn span, #statebtn span, #countrybtn span{
    color: var(--primary);
    display: block;
    float: right;
    position: relative;
    top: 1px;
    transition: all ease .3s;
}

#sizebtn:hover, #sizebtn:focus, #sizebtn:focus-visible, #sizebtn:active {
    outline: none;
  }

.city-option-field, .state-option-field{
    position: relative;
    z-index: 3;
}

.country-option-field {
    width: 100%;
    z-index: 2;
}

.dropdown-city-option, .dropdown-state-option, .dropdown-country-option {
    margin-top: 8px;
    display: none;
    width: 100%;
    position: absolute;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-city-option  a, .dropdown-state-option  a, .dropdown-country-option  a{
    color: var(--dark);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-city-option  a:hover, .dropdown-state-option  a:hover, .dropdown-country-option  a:hover {
    background-color: rgba(161, 162, 133, 0.5);
    color: var(--dark);
    text-decoration: none;
}

.dropdown-city-option a:hover:first-child, .dropdown-state-option a:hover:first-child, .dropdown-country-option a:hover:first-child{
    border-radius: 5px 5px 0px 0px;
}

.dropdown-city-option a:hover:last-child, .dropdown-state-option a:hover:last-child, .dropdown-country-option a:hover:last-child{
    border-radius: 0px 0px 5px 5px;
}


.show{
    display: block;
}

.rotateArrow{
    transform: rotate(180deg);
    transition: all ease .3s;
}



/*---------------- EXPRESS CHECKOUT - PC -------------*/

.cart-checkout-outline{
    padding-top: 40px;
    padding-bottom:80px;
    padding-right: 45px;
}

.express-pc{
    position:relative;
}


.express-checkout{
    margin: 0px;
    padding: 0px 16px;
    background-color: var(--secondary);
    font-family: subfont;
    font-size:14px;
    color:var(--dark);
    text-align: center;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.express-checkout-item{
    border: 1px var(--shading2) solid;
    height: 110px;
    text-align:center;
    padding-top:30px;
    cursor: pointer;
}

.cart-or-line{
    margin-top:48px;
    margin-bottom:40px;
    position:relative;
    

}

.cart-or-line p{
    padding: 0 16px;
    font-family: subfont;
    font-size:16px;
    background-color: var(--secondary);
    position:absolute;
    z-index:1;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    
}
.cart-or-line hr{
    clear: both;
    border-bottom: 1px solid var(--shading2);
}

/*---------------- Phone-Infomation -------------*/
.input-checkout-text, .input-checkout-email{
    margin-bottom: 30px;
}
.input-checkout-text h5{
    margin-bottom: 30px;
}


.input-checkout-text label{
    font-family: subfont;
    font-size:14px;
    color: var(--primary);
}

.input-checkout-text input{
    width: 100%;
    height:40px;
    padding: 16px;
    border: 1px var(--shading2) solid;
    border-radius: 4px;
    background-color: var(--transparent);
    font-size: 14px;
    color: var(--shading2);
    outline:none;
}

.input-checkout-email label{
    font-family: subfont;
    font-size:14px;
    color: var(--primary);
}

.input-checkout-email input{
    width: 100%;
    height:40px;
    padding: 16px;
    border: 1px var(--shading2) solid;
    border-radius: 4px;
    background-color: var(--transparent);
    font-size: 14px;
    color: var(--text);
    outline:none;
}

/*---------- Name Infomation --------*/
.contact-name{
    display:flex;
}


/*--------------- Shipping note --------------*/
.review-form--shipnote p{
    font-family: subfont;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.review-form--shipnote textarea{
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid var(--shading2);
    color: var(--primary);
}

.review-form--shipnote textarea:hover{
    background-color: rgba(161, 162, 133, .15);
    border: 1px solid var(--shading2);
    transition: all ease .3s;
}

.review-form--shipnote textarea::placeholder{
    font-size: 14px;
    color: var(--shading2);

}


.review-form--shipnote textarea:active, .review-form--shipnote textarea:focus, .review-form--shipnote textarea:focus-visible, .review-form--label textarea:focus-within{
    border: 2px solid var(--shading2);
    outline: none;
}

.the-count{
    display:flex;
    justify-content: flex-end;
    font-size: 10px;
    color:var(--shading1);
}

.return-shipping{
    margin-top:30px;
    margin-bottom: 30px;
}

/*---------------- Content-right -------------*/
.cart-checkout-right{
    border-left:1px var(--shading2) solid;
    padding-left:45px;
    padding-top:45px;
}

.cart-checkout-product{
    display: flex;
    justify-content: space-between;
    margin-bottom:30px;
}



.checkout-product img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.product-data{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.checkout-product-content{
    margin-left: 30px;
    width: 100%;
    padding-top: 16px;
}

.checkout-product-content hr{
    clear: both;
    border-bottom: 1px solid var(--shading2);
}


.button-remove{
    margin-bottom: 8px;
    float: right;
}

.checkout-product-content p{
    font-family: subfont;
    font-size: 14px;
    color:var(--shading1);
    margin:0px;
    padding:0px;
}


.button-remove button{
    background-color: var(--transparent);
    border: none;
    padding: 0px;
    font-size: 12px;
    color:var(--text);
    outline: none;
}

.product-price-getbuy{
    clear: both;
}

.checkout-product-content #linehr hr{
    clear: both;
    border-bottom: 1px solid var(--shading2);
}

.product-price-getbuy{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.pricebf{
    font-family: subfont;
    font-size: 16px;
    color:var(--shading2);
}



.priceat{
    font-family: subfont;
    font-size: 16px;
    color:var(--primary);
}

/*---------------------Quantity Count---------------------*/

.checkout-counter{
    position: relative;
}

.checkout-counter input{
    padding-left: 16px;
    width: 90px;
    height: 45px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid var(--shading2);
    text-align: left;
    font-family: bodyfont;
    color: var(--primary);
    font-size: 16px;
    transition: all ease .3s;
}

.checkout-counter input:focus, .checkout-counter input:focus-visible, .checkout-counter input:active{
    outline: none;
}



.checkout-counter .down{
    position: absolute;
    top: 20px;
    right: 13px;
    color: var(--shading1);
    cursor: pointer;
}

.checkout-counter .up{
    position: absolute;
    top: 2px;
    right: 13px;
    color: var(--shading1);
    cursor: pointer;
}    


/*---------------- Coupon - PC -------------*/
.coupon-pc{
    position:relative;
    margin-top:40px;
}


.checkout-coupon{
    margin: 0px;
    padding: 0px 16px;
    background-color: var(--secondary);
    font-family: subfont;
    font-size:14px;
    color:var(--primary);
    text-align: center;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}


.checkout-couponbox{
    border: 1px var(--shading2) solid;
    text-align:center;
    padding:30px;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
}



.checkout-coupon-mb p{
    margin:0px;
    padding:0px;
   font-family: subfont;
   font-size:14px;
   color:var(--primary);
   margin-bottom: 16px;
    
}

.checkout-couponbox-mb{
    text-align:center;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}



.coupon--field{
    border: 1px solid var(--shading2);
    height: 40px;
    width:60%;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: all ease .3s;
    flex:1;

}

.coupon--field input{
    background-color: transparent;
    border: none;
    padding-left: 16px;
    width: 80%;
    color: var(--shading2);
    font-size:14px;
    outline:none;
}



.coupon--field input:focus, .coupon--field input:focus-visible{
    outline: none;
}

.coupon--field button{
    padding-right: 16px;
    color: var(--shading2);
    font-size: 18px;
    text-align: right;
    width: 20%;
    height: inherit;
    border: none;
    background-color: transparent;
    transition: all ease .5s;
   
}

.coupon--field button:focus, .coupon--field button:focus-visible,.coupon--field button:active{
    outline: none;
}


.btn-updatecart{
    color:var(--secondary);
    margin-left: 30px;
}

.checkout-fluid-mb hr{
    clear:both;
    border-bottom: 1px var(--shading2) solid;
    margin-bottom:30px;
    margin-top:30px;
}

/*-------------------- Order Summary -------------*/
.order-summery{
    margin-top:40px;
}

.summery-content{
    margin-top:46px;
}

.summery-01, .summery-02{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom:16px;
}

.summery-01 p{
    font-family: subfont;
    color:var(--dark);
    font-size:16px;
    margin:0px;
}

.summery-01 span{
    font-family: subfont;
    color:var(--primary);
    font-size:16px;
}

.summery-02 p{
    font-family: subfont;
    color:var(--dark);
    font-size:16px;
    margin:0px;
}

.summery-02 span{
    font-family: subfont;
    color:var(--text);
    font-size:16px;
}

.summery-content hr{
    clear:both;
    border-bottom:1px var(--shading2) solid;
}

/*-------------------- Cart-checkout-mobile -------------*/

.cart-checkout-mb{
    margin-top:30px;
   
}
.cart-checkout-product-bg{
    padding:0px;
    margin-left: 30px;
}




/*-------------------- Order Summary -------------*/
.order-summery-mb{
    margin-top:40px;
    margin-bottom: 40px;
    padding:0px;
    padding-left:30px;
    padding-right:30px;
    
}

.order-summery-mb hr{
    clear:both;
    border-top:1px var(--shading2) solid;
}

.summery-content-mb{
    margin-top:46px;
}

.summery-content-mb hr{
    clear:both;
    border-top:1px var(--shading2) solid;
}



/*---------------- EXPRESS -CHECKOUT - MB -------------*/

.checkout-fluid-mb{
    padding: 30px 0px;

}



.express-mb{
    position:relative;
    margin-top:60px;
    margin-bottom:30px;
    padding-left:30px;
    padding-right:30px;
}


.checkout-express-mb{
    margin:0px;
    background-color: var(--secondary);
    color:var(--dark);
    font-family: subfont;
    font-size:14px;
    position:absolute;
    z-index:1;
    bottom:75%;
}

.checkout-expressimg-mb{
    border: 1px var(--shading2) solid;
    height: 110px;
    padding-top:35px;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
}


.cart-or-line-mb{
    padding-left:30px;
    padding-right:30px;
    padding-top:46px;
    padding-bottom:40px;
    position:relative;

}

.cart-or-line-mb p{
    padding:0px;
    font-family: subfont;
    font-size:16px;
    background-color: var(--secondary);
    text-align: center;
    position:absolute;
    z-index:1;
    left:45%;
    top:45%;
    width:10%;
}
.cart-or-line-mb hr{
    padding:0px;
    clear: both;
    border-bottom: 1px solid var(--shading2);
}

/*---------------- Phone-Infomation-MB -------------*/
.cart-contact-mb h5{
    margin-bottom: 30px;
}

.cart-contact-pc {
    padding-top: 30px;
}

.cart-contact-pc h5{
    margin-bottom: 30px;
}

.cart-contact-mb, .cart-contact-name-mb{
    padding-left:30px;
    padding-right:30px;
    padding-bottom:30px;
}
.cart-contact-mb label{
    font-family: subfont;
    font-size:14px;
    color: var(--primary);
}

.cart-contact-mb input{
    width: 100%;
    height:40px;
    padding: 16px;
    border: 1px var(--shading2) solid;
    border-radius: 4px;
    background-color: var(--transparent);
    font-size: 14px;
    color: var(--text);
    outline:none;
}


#the-count-mb{
    display:flex;
    justify-content: flex-end;
    font-size: 10px;
    color:var(--shading1);
}

.return-shipping-mb{
    margin-top:30px;
    margin-bottom: 40px;
    padding-left:30px;
}




/*-------------------- Extra Large -------------*/
@media (min-width:1200px) {
    

    .input-checkout-text input:hover{
        background-color: rgba(161, 162, 133, .15);
        border: 1px solid var(--shading2);
        transition: all ease .3s;
    }

    .input-checkout-email :hover{
        background-color: rgba(161, 162, 133, .15);
        border: 1px solid var(--shading2);
        transition: all ease .3s;
    }

    .checkout-counter input:hover{
        background-color: rgba(161, 162, 133, .15);
        transition: all ease .3s;
    }

    .coupon--field:hover {
        background-color: rgba(161, 162, 133, .15);
        transition: all ease .3s;
    }

    .coupon--field button:hover{
        color: var(--primary);
        transition: all ease .5s;
    }

    .button-remove button:hover{
        color:var(--dark);
    }

    .checkout-product{
        min-width: 160px;
        height: 200px;
    }

    .btn-return-shipping a{
        text-align: center;
        display: block;
    }

    .counter input:hover{
        background-color: rgba(161, 162, 133, .15);
        transition: all ease .3s;
    }

    .dropdown-sorting-city a:hover {
        background-color: var(--dark);
        color: var(--primary);
        text-decoration: none;
    }

    .dropdown-country-option{
        max-width: 510px;
    }
}


/*-------------------- Large -------------*/
@media (max-width:1199px) and (min-width:992px) {

    .input-checkout-text input:hover{
        background-color: rgba(161, 162, 133, .15);
        border: 1px solid var(--shading2);
        transition: all ease .3s;
    }

    .input-checkout-email input:hover{
        background-color: rgba(161, 162, 133, .15);
        border: 1px solid var(--shading2);
        transition: all ease .3s;
    }

    .checkout-counter input:hover{
        background-color: rgba(161, 162, 133, .15);
        transition: all ease .3s;
    }

    .checkout-couponbox{
        padding-left: 15px;
        padding-right: 15px;
    }

    .coupon--field:hover {
        background-color: rgba(161, 162, 133, .15);
        transition: all ease .3s;
    }

    .coupon--field button:hover{
        color: var(--primary);
        transition: all ease .5s;
    }
    

    .checkout-product img{
        width: 160px;
        height: 180px;
    }

    .button-remove button:hover{
        color:var(--dark);
    }

    .checkout-product-content{
        padding-top: 8px;
    }


    .btn-return-shipping a{
        text-align: center;
        display: block;
    }

    .checkout-counter input:hover{
        background-color: rgba(161, 162, 133, .15);
        transition: all ease .3s;
    }

    .checkout-counter input{
        width: 70px;
    }

    .dropdown-country-option{
        max-width: 420px;
    }
   

}


/*-------------------- Medium -------------*/
@media (max-width:991px) and (min-width:768px) {
    .checkout-product{
        width: 160px;
        height: 200px;
    }
    .checkout-counter input:hover{
        background-color: var(--transparent);
        transition: all ease .3s;
    }

    .review-form--shipnote textarea:hover{
        background-color: var(--transparent);
        transition: all ease .3s;
    }


    .btn-return-shipping a{
        text-align: center;
        display: block;
    }

    .checkout-product{
        width: 30%;
        height: 200px;
    }

    .checkout-product-content{
        width: 70%;
    }

    
}


/*-------------------- Small -------------*/
@media (max-width:767px) and (min-width:576px) {
    .checkout-product{
        width: 160px;
        height: 200px;
    }

    .checkout-counter input:hover{
        background-color: var(--transparent);
        transition: all ease .3s;
    }

    .review-form--shipnote textarea:hover{
        background-color: var(--transparent);
        transition: all ease .3s;
    }


    .btn-return-shipping a{
        text-align: center;
        display: block;
    }

    .checkout-product{
        width: 40%;
        height: 200px;
    }

    .checkout-product-content{
        width: 60%;
    }

    .input-checkout-text input{
        font-size: 16px;
    }

    .input-checkout-email input{
        font-size: 16px;
    }

    .city-option-field button.citybtn-mb, .state-option-field button.statebtn-mb, .country-option-field button.countrybtn-mb{
        font-size: 16px !important;
    }

    .review-form--shipnote textarea::placeholder{
        font-size: 16px !important;
    }

}


/*-------------------- Extra Small -------------*/
@media (max-width:575px) {

    .breadcrumbb{
        font-size: 14px !important;
    }

    .checkout-product{
        width: 160px;
        height: 200px;
    }


    .checkout-counter input:hover{
        background-color: var(--transparent);
        transition: all ease .3s;
    }

    .review-form--shipnote textarea:hover{
        background-color: var(--transparent);
        transition: all ease .3s;
    }



    .btn-return-shipping a{
        text-align: center;
        display: block;
    }

    .checkout-product{
        width: 40%;
        height: 200px;
    }

    .checkout-product-content{
        width: 60%;
    }

    .input-checkout-text input{
        font-size: 16px;
    }

    .input-checkout-email input{
        font-size: 16px;
    }

    .city-option-field button.citybtn-mb, .state-option-field button.statebtn-mb, .country-option-field button.countrybtn-mb{
        font-size: 16px !important;
    }

    .review-form--shipnote textarea::placeholder{
        font-size: 16px !important;
    }
}
