* {
    box-sizing; border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Roboto';
    font-size: 20px;
    color: #ffffff;
}

.grid-container {
    display: grid;
    grid-template-areas:
        'header header'
        'nav content'
        'footer footer';
    grid-template-columns: 100% 0% auto auto auto auto;
}

header, .nav, .content, footer {
    padding: 30px;
    margin: 1px;
}

header {
    text-align: center;
    grid-area: header;
    background-color: #262425;
}

.nav, .content {
    height: 700px;
}

.nav {
    grid-area: nav;
    background-color: white;
}

.content {
    grid-area: content;
    background-color: white;
}

footer {
    grid-area: footer;
    background-color: #262425;
    font-size: 15px;
}

ul, li {
    margin-left: 10%;
    list-style: circle;
    font-size: 15px;
}

#listBox {
    /* border: 2px solid; */
    width: 50%;
    height: 200px;
    margin: 10px;
    overflow-y: scroll;
}

img {
    padding 0px;
    margin: 15px;
    max-width: 50%;
}

.product-names {
    margin-left: 150px;
    word-spacing: 275px;
}

.text {
    margin: auto;
    text-align: center;
    width: 50%;
}

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}



.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  /* z-index: -1; */
  margin-top: 100px;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 10px;
  border: none;
  background-color: #111111;
  text-decoration: none;
  color: #ffffff;
  padding: 5px 6px;
}

.openbtn:hover {
  background-color: #444;
}

