.nav-wrapper{
  position: absolute;
  top: 0;
  width: 100%;
  height: 5rem;
  color: #e0e0e0;
}

.nav-contents {
  display: flex;
  position: relative;
  background: #39393f;
  margin:auto;
  width: 100%;
  padding: 0 20px 0 0px;
}

.nav-fix {
  margin: auto;
  width: 100%;
  max-width: 1150px;
}

.logo-splash {
  position: relative;
  float: left;
}

.dropdown {
  display: flex;
  position: relative;
  float: right;
  transform: translate(0, 20%);

}

.drop-button {
  display:grid;
  padding: 10px;
  margin: 5px;
  background: none;
  border: none;
  font-size: 20px;
  color: #e7e7e7;
  border-radius: 7px;
  transition: 0.3s;
}

.drop-button:hover {
  background: rgba(135, 153, 175, 0.6);
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 9;
  margin: auto;
  top: 5rem;
  right: 5%;
  left: 5%;
  height: 100%;
  max-width: 1150px;
}

.product-content {
  display: inline-block;
  background: #39393f;
  border-radius: 15px;
  height: 399px;
  width: 100%;
}

.show {
  display: block;
}

.product-list {
  position: absolute;
  padding: 10px;
  top: 5px;
  display: grid;
  margin-left: 210px;
}
.product-list a {
  padding: 5px;
  width: 150px;
  margin: 3px;
  border-radius: 7px;
  font-size: 20px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.product-list a:hover {
  background: rgba(80, 156, 255, 0.56);
}

.AB-table {
  position:absolute;
  right: 25px;
  top: 5px;
}
table, td {
  border:1px solid white;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  position: absolute;
  z-index: 1;
  bottom: -3rem;
  left: 50%;
  margin-left: -60px;

  opacity: 0;
  transition: opacity 0.3s;
}


/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.feat-products {
  display: grid;
  position: relative;
  border-radius: 15px;
}

.feat-products img {
  width: 200px;
}

.feat-products a {

}

.feat-products h2 {
  display: grid;
  width: 250px;
  position: absolute;
  padding: 10px;
  color: white;
}

.main-wrapper {
  margin: 100px auto;
  max-width: 1150px;
}

.main-contents {
  margin: 1%;
}

.sl-text {
  font-size: 25px;
  width: 595px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #173444;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #3d3d3d;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
