.splide__video__play {
  display: none !important;
}

.splide__slide {
  position: relative;
}

.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  cursor: pointer;
  z-index: 10;
}

@media (min-width: 768px) {
  .custom-play-button {
    width: 100px;
    height: 100px;
  }
}

.custom-play-button svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-dotted,
.circle-solid {
  fill: none;
  stroke-width: 4;
}
.circle-dotted {
  stroke: rgb(var(--background-main));
  stroke-dasharray: 1 10;
}
.circle-solid {
  stroke: rgb(var(--background-main));
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s ease;
}
.play-icon {
  fill: rgb(var(--background-main));
  transform-origin: center;
  transition: transform 0.2s ease;
  transform: rotate(90deg);
}
.splide__slide:hover .circle-solid {
  stroke-dashoffset: 283;
}
.splide__slide:hover .play-icon {
  transform: rotate(90deg) scale(1.1);
}

.custom-play-button.hidden {
  display: none;
}
