.slide-large {display: none}

.slider-container-inner-large .slide-large > * {
    color: #fff;
    z-index: 1;
    max-width: 70ch;
}

.slideshow-container-large {
  height: 100%;
  position: relative;
  min-height: 650px;
}

.slideshow-container-large .slide-large img {
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
}

.slider-container-inner-large {
  height: 100%;
}

.slideshow-container-large h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: 'Overpass', sans-serif;
  font-size: 26px;
  font-weight: 900;
}

h2.highlighted {
  position: absolute;
  top: 60px;
  left: 60px;
  color: #fff;
  z-index: 1;
  margin: 0;
}

.slideshow-container-large .slide-large {
  height: 100%;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slideshow-container-large .slide-large:before {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--navy);
  opacity: 0.5;
  z-index: 0;
}

.slideshow-container-large .slide-large p {
  max-width: 50ch;
}

.slideshow-container-large .slide-large .wp-block-buttons {
  width: fit-content;
}

.slideshow-container-large .slide-large .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-large .slide-large .wp-block-button__link:hover, .slideshow-container-large .slide-large .wp-block-button__link:focus {
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}

/* Next & previous buttons */
.navigation-container-large {
  position: absolute;
  bottom: 60px;
  right: 60px;
  text-align: center;
}

button.pause-large {
  width: 64px;
}

button.pause-large:hover, button.pause-large:active, button.pause-large:focus {
  background-color: transparent;
}

button.pause-large svg g {
 
}

button.pause-large:hover svg g {
/*  stroke-width: 5px;
  stroke: #ffffff;
  fill: #ffffff;*/
}

.pause-large-play-btn {
  stroke-width: 5px;
  stroke: #ffffff;
  fill: transparent;
  transition: all 0.2s ease-in-out;
}

button.pause-large:hover .pause-large-play-btn, button.pause-large:active .pause-large-play-btn, button.pause-large:focus .pause-large-play-btn {
  stroke-width: 5px;
  stroke: #ffffff;
  fill: #ffffff;
}

.prev-large, .next-large, .pause-large {
  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-large:hover, button.next-large:hover, button.prev-large:active, button.next-large:active, button.prev-large:focus, button.next-large:focus {
  background-color: transparent;
}

.prev-large {
  left: 0;
}

.next-large {
  right: 0;
}

.prev-large:hover, .prev-large:active, .prev-large:focus {
  left: -5px;
}

.next-large:hover, .next-large:active, .next-large:focus {
  right: -5px;
}

.dots-large {
  margin-top: 10px;
}

.countdown-timer-large {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--lightgrey);
    top: 0;
    right: 0
}

.countdown-timer-large .countdown-timer-amount-large {
  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-large {
  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-large {
  background-color: var(--pink);
  color: #fff;
}

button.dot-large:hover, button.dot-large:focus, button.dot-large: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-large, .next-large, .text {font-size: 11px}
}