/* The side navigation menu */
.sidenav {
    height: 100%;
    width: 450px;
    position: fixed;
    z-index: 999999999;
    top: 0;
    right: -480px;
    background-color: #fff;
    overflow-x: hidden;
    padding:15px 0px 15px 15px;
    transition: 1s;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color:var(--primary);
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}


.change_cart{
    float:left;
    padding:0px 10px;
    cursor:pointer;
}

.remove_cart{
    float:left;
    cursor:pointer;
}

.price_cart{
    float:right;
    font-weight:bold;
}

#cart_header{
    font-weight:bold;
}

.title_cart{
    overflow:hidden;
    height:65px;
}

.quantity_cart{
    float:left;
}

.quantity_cart input{
    width:50px;
    text-align:center;
    background-color: #efefef;
    border: none;
}



.mySidenav_show{
    right:0px;
    box-shadow:-7px 0 20px 6px rgba(0, 0, 0, .175);
    max-width:100%;
}

#product_cart{
    max-height:445px;
    overflow-y:auto;
    overflow-x:hidden;
    padding-right: 20px;
}

#total_cart{
    text-align:right;
    font-size:20px;
    padding-right: 10px;
}

#complete_cart{
    background: var(--secondary);
    padding: 8px 20px;
    color: #fff;
    border-radius: 0px;
    font-size: 16px;
    cursor: pointer;
    border: 0;
    width:75%
}

#go_to_cart{
    text-align: center;
    background-color: var(--primary);
    padding: 8px 20px;
    color: #fff;
    border-radius: 0px;
    font-size: 16px;
    border: 0;
    width:75%;
    color:#fff;
}

.moveleft{
    position:absolute;
    width:100%;
    overflow: hidden
}