.splide__slide--has-video {
  cursor: pointer;
}
.splide__slide--has-video:hover .splide__video__play {
  opacity: 1;
}
.splide__slide__container--has-video {
  cursor: pointer;
  position: relative;
}
.splide__slide__container--has-video:hover .splide__video__play {
  opacity: 1;
}
.splide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
.splide__video div {
  height: 100%;
}
.splide__video iframe,
.splide__video video {
  width: 100%;
  height: 100%;
}
.splide__video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f7847e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}
.splide__video__play:after {
  content: "";
  display: inline-block;
  border-color: transparent transparent transparent white;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  margin-left: 4px;
}
