#carouseltheatre .carousel {
  position: relative;
}

#carouseltheatre .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#carouseltheatre .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

#carouseltheatre .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
  #carouseltheatre .carousel-item {
    transition: none;
  }
}

#carouseltheatre .carousel-item-next, #carouseltheatre .carousel-item-prev, #carouseltheatre .carousel-item.active {
  display: block;
}

#carouseltheatre .carousel-control-next, #carouseltheatre .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
}

@media (prefers-reduced-motion:reduce) {
  #carouseltheatre .carousel-control-next, #carouseltheatre .carousel-control-prev {
    transition: none;
  }
}

#carouseltheatre .carousel-control-next:focus, #carouseltheatre .carousel-control-next:hover, #carouseltheatre .carousel-control-prev:focus, #carouseltheatre .carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

#carouseltheatre .carousel-control-prev {
  left: 0;
}

#carouseltheatre .carousel-control-next {
  right: 0;
}

#carouseltheatre .carousel-control-next-icon, #carouseltheatre .carousel-control-prev-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

#carouseltheatre .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#carouseltheatre .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#carouseltheatre .img-wrapper {
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#carouseltheatre .carousel-inner {
  padding: 1em;
  display: flex;
  scroll-behavior: smooth;
}

#carouseltheatre .card {
  margin: 0 .5em;
  box-shadow: 2px 6px 8px 0px rgba(22, 22, 26, .18);
  height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

#carouseltheatre img {
  max-width: 300px;
}

#carouseltheatre .carousel-control-prev, #carouseltheatre .carousel-control-next {
  width: 6vh;
  height: 6vh;
  background-color: var(--bs-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: .5;
}

#carouseltheatre .carousel-control-prev:hover, #carouseltheatre .carousel-control-next:hover {
  opacity: .8;
}

.event-button {
  bottom: 0;
  position: relative;
  margin-bottom: 15px;
}
.fit-cover {
  object-fit: cover;
}

@media screen and (min-width:576px) {
  #carouseltheatre .carousel-inner {
    display: flex;
  }
  #carouseltheatre .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100%/6);
    margin: 0 0.5em;
  }
  .event-button {
    position: absolute;
  }
}

@media screen and (max-width:576px) {
  #carouseltheatre .img-wrapper {
    width: 100%;
	max-width: unset;
  }
  #carouseltheatre img {
    width: 100%;
	max-width: unset;
  }
}
