*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
h1,h2{
    font-family: "Marcellus", serif;
}
p{
    font-family: "Jost", sans-serif;
}

thead{
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 20px;
}
tbody{
    font-family: "Poppins", serif;
   
}
.box-title{
    background: url(../images/page-title.jpg);
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.cartDetails table{
    width: 100%;
    text-align: center;
    
}

.cartDetails table thead th{
    background: #F2F3F5;
    padding: 20px 0px;
}
.cart-totals table thead th{
    padding: 15px;
    background: #F2F3F5;
}
.cart-totals table tbody tr td{
    padding: 20px;
}
.cart-totals table tbody tr td button,.offcanvas #payBtn{
    padding: 15px 25px;
    background: #000;
    color: white;
    border: none;
    outline: none;
    transition: all 1s;
    width: 100%;
    border-radius: unset !important;

}
.cart-totals table tbody tr td button:hover,.offcanvas #payBtn:hover{
    background: red;
}
td{
  
   vertical-align: middle !important;

}
.remove-btn{
    border: 1px solid #eceded;
    border-radius: 50%;
    padding: 10px 13px;
    text-align: center;
    transition: all 1s;
}
.remove-btn:hover{
 background: #000;


 color: white;
}

@media (max-width:767px) {
    .qnty{
        width: 100px;
        overflow-x: auto;
        white-space: nowrap;
    }
    .cartDetails{
        overflow-x: scroll;
    }
}

.offcanvas{
    z-index: 999999999999999999999999999999999999;
}

input{
    width: 100%;
    outline: none;
    border: 1px solid #000;
    padding: 10px;
    transition: all .5s;
    margin-bottom: 10px;
    margin-top: 10px;
    
}
