* {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}

body {
    min-height: 100vh;
    max-width: 100%;

}

.d-none {
    display:none;
}
.main-container {
    display: flex;
    flex-direction: row;
    gap: 8px;

}

.left-container {
    width: calc(100%);

}

.left-container-input {
    padding-left: 16px;
    padding-right: 16px;
}
.left-container-input h2 {
    font-weight: 800;
    font-size: 32px;
}

.span-ctn {
    padding-top: 16px;
}
.span-color {
    color: rgb(255, 128, 0);
    
    font-size: 14px;
}

.opener-controll {
    height: 200px;
    width: 100%;
    object-fit: cover;
}




/*------Dishes navbar*/
.menu-bar-container {
    height: 40px;
    background-color: rgba(219, 219, 219, 0.37);
    margin-top: 16px;
    display: flex;
}

.menu-bar {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-left: 16px;
}
.menu-bar a:hover{
    color: rgb(255, 128, 0);
}

.menu-bar a {
    text-decoration: none;
    font-size: 14px;
    color: black;
}

.menu-bar img {
    width: 64px;
}


/*------dishes on main*/
.main-food img{
    height: 150px;
    object-fit: cover;
    width: 100%;
    padding-top: 16px;
}
.main-food span {
    padding-left: 8px;
    padding-top: 16px;
    font-weight: 600;
    font-size: 24px;
}

.all-dishes {
    padding-top: 16px;
    padding-left: 8px;
}
.border-controller{
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}
.pizza {
    line-height: 30px;
    border-style: solid;
    border-color: rgb(211, 211, 211);
    margin-top: 16px;
    cursor: pointer;
}
.pizza:hover {
    background-color: rgba(255, 128, 0, 0.247);
}
.pizza p {
    color: rgb(255, 128, 0);
}


/*------> Basket*/
.right-container {
    width: 300px;
    flex-grow: 1;
    box-shadow: -4px 1px 2px 0px rgba(0, 0, 0, 0.2);


}

.basked {
    top: 0;
    position: sticky;
    width: 100%;
}
.basked-input{
    display: flex;
    justify-content: center;
    padding-top:16px;
    padding-bottom: 16px;
}
.basked-dishes-input {
    padding-top: 16px;
    padding-left: 8px;
    padding-right: 8px;

}
.amount-price-delete {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
}
.amount-price-delete span {
    font-size: 14px;
}
.amount-price-delete img {
    width: 20px;
    cursor: pointer;
}

.change-icon-1:hover {
    width: 20px;
    background: url('/assets/icon/icon-minus-orange.png');
}

.seperation {
    margin-top: 16px;
}

.total-price {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 14px;
}

.btn-controller {
    display: flex;
    justify-content: center;
    
}
.sende-basket-button{
    width: 200px;
    height: 32px;
    background-color: rgba(136, 134, 134, 0.24);
    cursor: pointer;
    text-decoration: none;
    border: none;
    margin-top: 16px;
    margin-left: 8px;
    margin-right: 8px;

}

.sende-basket-button:hover {
    background-color: rgb(255, 128, 0);
    color: whitesmoke
    
}

.order-done-container {
 padding-top: 16px;
 display: flex;
 justify-content: center;

}
.order-done {
    font-weight: 400;
}

.orderBasket {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: orange;
}
/* ------> Footer */
footer {
    margin-top: 64px;
    height: 100px;
    width: 100%;
    background-color: rgba(148, 143, 143, 0.534);
    
    bottom: 0;

}