*{
    box-sizing: border-box;
}
body{
    font-family: -apple-system, "Helvetica Neue", sans-serif, "Mier Book";
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-align: left;
}



#header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
  }

#upper{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* padding: 10px 10px; */
    /* margin-right: 10px; */
}

#upper img{
    width: 15%;
}

#upper a>h4{
    color: black;
}

#search{
    width: 40%;
    height: 30%;
    padding: 10px;
    margin-top: 20px;
 }
 

 

 /* ---------------------------------------CART DATA------------------------------------------- */

 #container{
    padding-top: 30px;
    width: 70%;
    display: flex;
    margin: auto;
 }

 #container h4{
    color: rgb(51, 51, 51);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    line-height: 24px;
    font-family: "Mier demi";
    margin: 0px;
    padding: 0px 12px 0px 0px;
 }

 #cart_div{ 
   
    padding-top: 30px;
    width: 50%;
    height: 400px;
    overflow-y: scroll;
     scrollbar-width: none; /* FOR FIREFOX BROWSER*/
 }  

 /* FOR OTHER BROWSERS */
 ::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: transparent;
  }

 #cart_div img{
    border-radius: 10px;
    width: 80%;

 }

 #price_detail h4{
    color: rgb(51, 51, 51);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    line-height: 24px;
    font-family: "Mier demi";
    margin: 0px;
    padding: 0px 12px 0px 0px;
 }
 #Price_detail div{
    display: flex;
    justify-content: space-between;
 }