.carousel {
  --current-slide: 0;
  /* we set position relative so absolute position works properly for the buttons */
  position: relative;
  overflow: hidden;
}

.carousel-button {
  /* vertically centering the buttons */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;

  /* basic styling */
  padding: 0;
  margin: 0.5rem;
  border-radius: 50%;
  background-color: transparent;
  border: none;

  /*font-size: 1.5rem;*/
  cursor: pointer;

  transition: color 0.1s;
}

#seashoreCarousel .carousel-button {
	bottom: 33px;
}

@media screen and (min-width: 1441px) {
	#seashoreCarousel .carousel-button {
		bottom: 60px;
	}
}


@media (pointer:fine) {
	.carousel-button_next:hover, .carousel-button_previous:hover {
  color: #732a12;
}
}

/*.carousel-button_next {
  /* The "next slide button" will be at the right 
  right: 0;
}*/

.carousel-button_middle {
	/*goes right until end then rubberbands to the first slide, horizontally center the button*/
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	color:rgb(214,132,132);
}

.slides {
  display: flex;
  transition: transform 0.5s;
  transform: translateX(calc(-100% * var(--current-slide)));
}

.slidesInitial {
	transition: initial;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
}

.carousel-button {
	top: initial;
	/*bottom: 24px;*/
	bottom: 40px;
}

@media only screen and (max-width: 734px) {
	.carousel-button {
		/*top: initial;
		bottom: 24px;*/
		font-size: 0.9em;
		white-space: nowrap;
		bottom: 0px;
	}
	/*.carousel-button_next:hover, .carousel-button_previous:hover {
  color:rgb(214,132,132);
	}*/
}

@media only screen and (min-width: 735px) and (max-width: 1440px) and (orientation: landscape) {
	.carousel-button {
		bottom: 12px;
	}
}

@media only screen and (max-width: 734px) and (orientation: landscape) {
	.narratorialNavigation {
		top: 520px;
		bottom:24;
	}
}


@media only screen and (min-width: 735px) and (max-width: 1440px) and (orientation: landscape) {
	.narratorialNavigation {
		bottom: 14px;
	}
}

@media screen and (min-width: 768px) {
  .carousel-button {
    font-size: 1rem;
	/*color:rgb(214,132,132);*/
    /*margin: 1rem;*/
	/*margin-top: 375px;*/
  }
}

@media screen and (min-width: 1441px) {
	.carousel-button {
		bottom: 60px;
	}
}

.overflowNo {
	overflow: initial;
}