.slide-show {
  position: relative;
  width: 80vh;
  margin-bottom: -1%;

  display: flex;
  flex-direction: row;
  align-items: start;
  justify-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 25px;
}

.slide-show .slide-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 1.7%;
  color: white;
  font-weight: bold;
  font-size: 1.1vw;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.slide-show-column {
  width: 10vh;
  margin-left: 20px;
  margin-bottom: 20px;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}