

.dots-container {
      grid-column: 1 / 2;
      grid-row: 4 / 5;
      position: relative;
}

.site-location {
  margin: auto;
}

.site-sponsor {
      text-align: center;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
      grid-column: 1 / 2;
      grid-row: 1 / 4;
  max-width: 1000px;
  position: relative;
  margin: 10px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.slide-img {
      width:  250px;
      height:auto;
      margin: auto;
      background-size: cover;
}

.sponsor-img {
  display: block;
  width:  auto;
  margin: auto;
  max-height: 100px;
}

#sponsor-link{
  cursor: pointer;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  width: auto;
  padding: 14px;
  margin-top:-22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: var(--dl-color-scheme-md-red);
}

/* Position the "next button" to the right */

.next {
  right:5px;
  border-radius: 3px 3px 3px 3px;
}
.prev {
    left: 5px;
    border-radius: 3px 3px 3px 3px;
}


/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 4px 6px;
  position: relative;
  width:20%;
  bottom: 40px;
  font-weight: 700;
  margin:auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
}


/* 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}
}

.site-btn{
  background-color: var(--dl-color-scheme-md-red);
  height:100px;
  width: 20px;
  top:15%;
  transition: 0.5s;
}

.btn-hide {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: left;
  left:0px;
  position:absolute;
  display: block;
}

.btn-show {
  display: none;
  position:absolute;
  right:0;
  z-index: 8;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.site-btn:hover{
  width:40px;
  transition: 0.5s;
}

.site-btn:hover .arrow{
  opacity: 100;
  transition: 0.5s
}

#left-arrow {
  border-width: 10px 15px 10px 0;
  border-color: transparent var(--dl-color-scheme-white) transparent transparent;
}

#right-arrow {
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent var(--dl-color-scheme-white);
}

.arrow{
  opacity: 0;
  transition: 0.5s;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
}
