html.svc-no-select,
html.svc-no-select * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}

.svc-carousel,
.svc-carousel * {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.svc-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  --svc-gap: 20px;
}

.svc-viewport {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
}

.svc-viewport::-webkit-scrollbar {
  display: none;
}

.svc-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.svc-track {
  display: flex;
  gap: var(--svc-gap);
  align-items: stretch;
  width: 100%;
  min-width: 100%;
}

.svc-slide {
  position: relative;
  flex: 0 0 calc((100% - 80px) / 5);
  max-width: calc((100% - 80px) / 5);
  min-width: 0;
  scroll-snap-align: start;
}

.svc-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition: border-color .22s ease, box-shadow .22s ease;
}

.svc-slide.svc-active .svc-video {
  border-color: rgba(255, 255, 255, .38);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .12), 0 10px 30px rgba(255, 255, 255, .08);
}

.svc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.svc-slide.svc-loaded iframe,
.svc-slide.svc-playing iframe {
  opacity: 1;
}

.svc-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  cursor: grab;
  background: transparent;
}

.svc-hit:active {
  cursor: grabbing;
}

.svc-carousel button.svc-center,
.svc-carousel button.svc-center:hover,
.svc-carousel button.svc-center:focus,
.svc-carousel button.svc-center:active {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 8 !important;
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  min-height: 68px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: rgba(0, 0, 0, .38) !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  transform: translate(-50%, -50%) scale(1) !important;
  transition: opacity .22s ease, transform .22s ease, background .22s ease !important;
}

.svc-carousel button.svc-center:hover,
.svc-carousel button.svc-center:focus-visible {
  background: rgba(0, 0, 0, .52) !important;
  transform: translate(-50%, -50%) scale(1.04) !important;
}

.svc-center svg {
  width: 30px !important;
  height: 30px !important;
  display: block !important;
  pointer-events: none !important;
}

.svc-center .svc-pause-icon {
  display: none !important;
}

.svc-slide.svc-playing .svc-center {
  opacity: 0 !important;
}

.svc-video:hover .svc-center,
.svc-slide.svc-playing .svc-center:hover,
.svc-slide.svc-playing .svc-center:focus-visible {
  opacity: 1 !important;
}

.svc-slide.svc-playing .svc-play-icon {
  display: none !important;
}

.svc-slide.svc-playing .svc-pause-icon {
  display: block !important;
}

.svc-carousel button.svc-speaker,
.svc-carousel button.svc-speaker:hover,
.svc-carousel button.svc-speaker:focus,
.svc-carousel button.svc-speaker:active {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 9 !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: rgba(0, 0, 0, .32) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  transition: background .22s ease, transform .22s ease !important;
}

.svc-carousel button.svc-speaker:hover,
.svc-carousel button.svc-speaker:focus-visible {
  background: rgba(0, 0, 0, .48) !important;
  transform: scale(1.04) !important;
}

.svc-speaker svg {
  width: 19px !important;
  height: 19px !important;
  display: block !important;
  pointer-events: none !important;
}

.svc-speaker .svc-muted-icon,
.svc-speaker.is-muted .svc-sound-icon {
  display: none !important;
}

.svc-speaker.is-muted .svc-muted-icon {
  display: block !important;
}

.svc-time {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 9;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, .32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .01em;
  pointer-events: none;
  white-space: nowrap;
}

.svc-arrows {
  position: static;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
  pointer-events: auto;
}

.svc-carousel button.svc-arrow,
.svc-carousel button.svc-arrow:hover,
.svc-carousel button.svc-arrow:focus,
.svc-carousel button.svc-arrow:active {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: rgba(0, 0, 0, .26) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: none !important;
  outline: none !important;
  text-decoration: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transition: background .22s ease, transform .22s ease, opacity .22s ease !important;
}

.svc-carousel button.svc-arrow:hover,
.svc-carousel button.svc-arrow:focus-visible {
  background: rgba(0, 0, 0, .42) !important;
  transform: scale(1.04) !important;
}

.svc-arrow svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  pointer-events: none !important;
}

@media (max-width: 1440px) {
  .svc-slide {
    flex-basis: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}

@media (max-width: 1024px) {
  .svc-slide {
    flex-basis: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .svc-slide {
    flex-basis: 100%;
    max-width: 100%;
  }

  .svc-carousel button.svc-center,
  .svc-carousel button.svc-center:hover,
  .svc-carousel button.svc-center:focus,
  .svc-carousel button.svc-center:active {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }

  .svc-carousel button.svc-speaker,
  .svc-carousel button.svc-speaker:hover,
  .svc-carousel button.svc-speaker:focus,
  .svc-carousel button.svc-speaker:active {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .svc-carousel button.svc-arrow,
  .svc-carousel button.svc-arrow:hover,
  .svc-carousel button.svc-arrow:focus,
  .svc-carousel button.svc-arrow:active {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .svc-time {
    left: 12px;
    bottom: 12px;
    font-size: 10px;
  }

  .svc-arrows {
    justify-content: center;
    margin-top: 14px;
  }
}
