#cart__header{
    background: var(--pure);
    padding: 17px 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}
#cart__header h4{
    font-size: 1rem;
    color: var(--secondary);
}
.cart__products {
    display: flex;
    background: var(--pure);
    width: 97%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    margin: 0px 6px 15px 6px;
    border-radius: 5px;
    padding: 5px 0px;
}
.cart__products > div{
    padding: 0px 5px;
}
.cart__thumbnail{
    width: 30%;
}
.cart__thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.add__cart {
    width: 40%;
    margin-top: 6px;
}
.cart-form{
    display: flex;
    flex-direction: column;
}
.add__cart h4 {
    font-size: 1rem;
    color: var(--secondary);
}
.add__cart h6 {
    color: #7d7d7d;
    font-size: 14px;
    margin-top: 4px;
}
.add__cart button {
    font-size: 17px;
    padding: 0px 13px;
    color: #fff;
    border-radius: 22px;
    margin: 15px 0px 0px;
    background: #7e7676;
}
.add__cart button.active{
    background: var(--success);
}
.add__cart span{
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 700;
}
.cart__price {
    width: 30%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    align-self: flex-start;
}
.cart__price a {
    display: inline-block;
    font-size: 15px;
    color: var(--secondary);
    font-weight: 600;
}
.cart__price button{
    margin-bottom: 1rem;
    background: transparent;
}
#payment_details{
    margin: 0px 10px;
}
.payment_box{
    display: flex;
    margin-top: 25px;
    justify-content: space-between;
}
.payment_box h5{
    font-size: 15px;
}
.payment_box span{
    font-size: 15px;
    font-weight: bold;
}
/* Total Section */
#total__section {
    display: flex;
    width: 100%;
    padding: 10px 10px;
    background: var(--light);
    border: 1.8px solid #fefefe;

    justify-content: space-between;
}
.total__icon {
    width: 23px;
    height: 23px;
    border: 3px solid #232838;
    text-align: center;
    color: var(--secondary);
    display: inline-block;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}
.total__text{
    font-size: 16px;
    color:var(--secondary);
    font-weight: 600;
    display: inline-block;
}
.total__price a {
    display: inline-block;
    font-size: 17px;
    color: var(--secondary);
    font-weight: 600;
}
#related_products{
    margin: 0px 10px;
    padding-bottom: 55px;
}
.button__book__now{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--pure);
}
.button__book__now div{
  display: flex;
  text-align: center;
}
.button__book__now a.site-btn {
    background: var(--success);
    margin: 5px auto;
    flex: 0.9;
    padding: 12px 50px;
    color: var(--pure);
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(0,0,0,0.3);
    font-weight: bold;
}
.product_amount{
    width: 80%;
}