.video-module>div {
  border-radius: 10px;
  overflow: hidden;
}

.video-module>div .video-module-play-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 26;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-module>div .video-module-play-wrapper .play-pause {
  height: 80px;
  width: 80px;
  border-radius: 80px;
  background: #F26949;
  background-image: url("data:image/svg+xml,%3Csvg width='39' height='38' viewBox='0 0 39 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.18848 18.9955V37.115L37.7502 18.9955L1.18848 0.88501V18.9955Z' fill='white' stroke='white' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 36px 36px;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.video-module>div .video-module-play-wrapper .play-pause:hover {
  transform: scale(1.20);
}


@media screen and (max-width: 992px) {
  .video-module>div .video-module-play-wrapper .play-pause {
    width: 46px;
    height: 46px;
    background-size: 18px
  }
}

.video-module>div .video-module-player>iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}