.acore-slides {
  position: relative;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--video-bg-color, #000);
}
.video-foreground {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-background iframe,
.video-background video {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  text-align: center;
}
.video-background.video-cover video {
  object-fit: cover;
}
.video-background.video-contain video {
  object-fit: contain;
  background: #000;
}

.my-carousel-progress {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
}
.my-carousel-progress-bar {
  width: 0%;
  height: 100%;
  background: #222;
  transition: width 200ms linear;
}

.msld-custom-arrows {
  display: block;
  max-width: 100%;
  height: auto;
}

.adsi-video-preloader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--video-bg-color, #000);
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 1;
}
.adsi-video-preloader::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  animation: adsi-spin 1s linear infinite;
}
@keyframes adsi-spin { to { transform: rotate(360deg); } }

.video-background.is-loaded .adsi-video-preloader {
  opacity: 0;
  visibility: hidden;
}
