body {
  background-image: url("img/products_back.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

#menubar {
  background-color: rgb(255,230,140);
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  background-image: url("img/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}

#productwrapper {
  text-align: center;
  padding: 70px 0;
}
.productbox {
  background-color: rgba(255,255,255,0.60);
  margin: 30px auto 0 auto;
  width: 80%;
  height: auto;
  display: inline-block;
  clear: none;
  border-radius: 10px;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.2);
  padding:2.5%;
}
#productdesc {
  text-align: justify;
  text-justify: auto;
}

.productimg:hover {
  opacity: 0.7;
}

#modal {
  display: none;
  position: fixed;
  z-index: 10;
  padding: 100px 0 50px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.7);
}
#modalcontent {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 80%;
  text-align: center;
  background-image: url("img/loading.gif");
  background-repeat: no-repeat;
  background-position: center;
}
#closebtn {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 72px;
  font-weight: bold;
  cursor: pointer;
}
#closebtn:hover,
#closebtn:focus {
  color: #999;
  text-decoration: none;
}
#largeimgsdiv {
  min-height: 150px;
}
.largeimg {
  width: 70vmin;
  width: 70vm;
  margin: 10px auto;
  display: none;
}
.navbtn{
  cursor: pointer;
  position: absolute;
  top: calc(50% - 10px);
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: black;
  font-weight: bold;
  font-size: 64px;
  transition: 0.6s ease;
  user-select: none;
}
#prevbtn {
  left: 0;
  border-radius: 0 3px 3px 0;
}
#nextbtn {
  right: 0;
  border-radius: 3px 0 0 3px;
}
#prevbtn:hover,
#nextbtn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}