.slide-button-caption {
  display: inline-block;
  align-self: center;
  cursor: pointer;
  width:fit-content;
  background: #00aaff; 
  color: #ffffff; 
  padding: 0.33rem; 
  margin: 0.5rem;
  font-size: medium; 
  font-weight: bold;
  text-align: center;
  height: 1.2rem;
  opacity: 0.6;
  border-radius: 10px;
}

.slide-button-caption:hover {
  background: #0077cc; 
  color: #ffffff; 
}

.slide-img {
  vertical-align: middle;
}

.slide-container-popup {
  display: none;
  position: fixed;
  top: 50dvh;
  left: 50dvw;
  width: 90%;
  max-width: 850px;
  height: fit-content;
  max-height: 100dvh;
  min-height: min-content;
  transform: translate(-50%, -50%);
  background-color:  #2c2c2c;
  border-radius: 20px;
}

.slide-show-container {
  width: 100%;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 0.2rem;
  position: relative;
}

/* The Close Button */
.slide-show-close {
  display: flex;
  margin-top: -5px;
  margin-left: 0px;
  margin-right: 0.5rem;
  vertical-align: top;
  padding: 0px;
  color: #ffffff;
  float: right;
  font-size: 2rem;
  font-weight: bold;
}

.slide-show-close:hover,
.slide-show-close:focus {
  color: #ff0000;
  text-decoration: none;
  cursor: pointer;
}

.slide-show-slides {
  display: none;
  margin-bottom: 1rem;
}

.slide-show-slides-img {
  width: 100%;
  max-height: 600px;
  border-radius: 12px;
}

.slide-show-row-container {
  max-height: 100px;
}

.slide-cursor {
  cursor: pointer;
}

.slide-prev,
.slide-next {
  cursor: pointer;
  position: absolute;
  top: 48%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #00aaff;
  background-color: rgba(0,0,0,0.5);
  opacity: 0.5;
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 12px 12px 0;
  -webkit-user-select: none;
  user-select: none;
  z-index: 500;
  opacity: 0.6;
}

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

.slide-prev:hover,
.slide-next:hover {
  color:  #ffffff;
  background-color: #00aaff;
  opacity: 1;
}

.slide-show-caption-container {
  margin-bottom: 1.5rem;
  text-align: center;
  background-color:  rgba(0,0,0,0.5);
  padding: 2px 16px;
  border-radius: 8px;
}

.slide-caption-text {
  color: #ffffff;
  font-weight: bolder;
  background: transparent;
}

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

.slide-column {
  float: left;
  width: 13%;
}

.slide-opacity {
  opacity: 0.6;
}

.slide-row-image {
  width: 100%;
}

.slide-active,
.slide-opacity:hover {
  opacity: 1;
}