/* 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 15px 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;
}

.title_cart_sh{
    overflow:hidden;
    height:42px;
}

.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
}

.progress-container {
    background: #eee;
    border-radius: 10px;
    /*overflow: hidden;*/
    height: 20px;
    width:70%;
    margin:10px 10%;
    position:relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #890607, #B00000); /* gradient κόκκινου */
    width: 0%;
    transition: width 0.5s ease-in-out;
    border-radius: 10px;
}

.progress-bar-full {
    background: linear-gradient(90deg, #009a20, #00b827);
}

.truck-icon {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 24px; /* μέγεθος φορτηγού */
    transition: left 0.5s ease-in-out;
}

#extra_message{
    border:1px solid rgb(234, 231, 228);
    padding: 10px 0px
}

#extra_message p{
    padding:0px;
    margin:0px;
}