.slide {display: none}

.slider-container-inner .slide > * {
    color: #fff;
    z-index: 1;
    max-width: 70ch;
}

.slideshow-container {
  height: 100%;
  position: relative;
}

.slideshow-container .slide img {
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}

.slider-container-inner {
  height: 100%;
}

.slideshow-container h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'Overpass', sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.slideshow-container .slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slideshow-container .slide:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--navy);
  opacity: 0.5;
  z-index: 0;
}

.slideshow-container .slide p {
  max-width: 50ch;
}

.slideshow-container .slide .wp-block-buttons {
  width: fit-content;
}

.slideshow-container .slide .wp-block-button__link {
  background-color: #fff;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1em;
  padding: 18px 24px 14px 24px;
  border: 1px solid #fff;
  font-family: 'Overpass', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}

.slideshow-container .slide .wp-block-button__link:hover, .slideshow-container .slide .wp-block-button__link:focus {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

/* Next & previous buttons */
.navigation-container {
  position: absolute;
  bottom: 60px;
  right: 60px;
  text-align: center;
}

button.pause {
  width: 64px;
}

button.pause:hover, button.pause:active, button.pause:focus {
  background-color: transparent;
}

button.pause svg g {
 
}

button.pause:hover svg g {
/*  stroke-width: 5px;
  stroke: #ffffff;
  fill: #ffffff;*/
}

.pause-play-btn {
  stroke-width: 5px;
  stroke: #ffffff;
  fill: transparent;
  transition: all 0.2s ease-in-out;
}

button.pause:hover .pause-play-btn, button.pause:active .pause-play-btn, button.pause:focus .pause-play-btn {
  stroke-width: 5px;
  stroke: #ffffff;
  fill: #ffffff;
}

.prev, .next, .pause {
  cursor: pointer;
  width: auto;
  padding: 0px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  background-color: transparent;
  vertical-align: middle;
  position: relative;
}

/* On hover, add a black background color with a little bit see-through */
button.prev:hover, button.next:hover, button.prev:active, button.next:active, button.prev:focus, button.next:focus {
  background-color: transparent;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .prev:active, .prev:focus {
  left: -5px;
}

.next:hover, .next:active, .next:focus {
  right: -5px;
}

.dots {
  margin-top: 10px;
}

.countdown-timer {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--lightgrey);
    top: 0;
    right: 0
}

.countdown-timer .countdown-timer-amount {
  background-color: var(--pink);
  height: 5px;
  width: 0px;
  display: block;
  /*animation-name: countdown;*/
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes countdown {
  from {width: 0%;}
  to {width: 100%;}
}

@keyframes countdown_fallback {
  from {width: 0%;}
  to {width: 100%;}
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 42px;
  width: 42px;
  font-size: 22px;
  font-family: 'Overpass', sans-serif;
  margin: 0 6px;
  background-color: #fff;
  color: var(--navy);
  font-weight: 700;
  border-radius: 100px;
  display: inline-block;
  padding: 4px 0px 0px 0px;
}

.active.dot {
  background-color: var(--pink);
  color: #fff;
}

button.dot:hover, button.dot:focus, button.dot:active {
  background-color: var(--navy);
  text-decoration: none;
  color: #fff;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}