/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge add Firefox */
body {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
  font-family: Verdana;
  font-size: 12px;
}

#cartItems .cartItem {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

#container { 
  width: 100%; 
  margin: 0px auto; 
  background-color: #fff; 
  overflow: hidden; /* Set overflow: hidden to clear the floats on #main and #sidebar */
  padding: 15px; 
}

  #main { 
      width: 100%; 
      float: left; 
  } 

  /*#sidebar { 
      width: 25%; 
      float: right; 
  }*/

.footer {
  position: fixed;
  left: 0px;
  border: 0px;
  width: 100%;
}

#cookie-popup { 
  text-align: center; 
  background: #fff;
  position: fixed;
  bottom: 0px; 
  left: 0;
  right: 0;
  z-index: 9999;
  font-size:14px; 
  line-height:20px;
  padding: 20px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
  }
 
#cookie-popup.hidden {
  display: none;
}