.section-watch-video {
  display: none;
}

.watch-video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  cursor: default;
  z-index: 1;
}

.watch-video-button {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
}

.watch-video-player-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgb(29, 30, 30);
}

.watch-video-player {
  cursor: default;
}

.watch-video-player-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-video-close {
  position: absolute;
  right: 56px;
  top: 56px;
  cursor: pointer;
}

.watch-video-close svg {
  width: 56px;
  height: 56px;
}

@media screen and (max-width: 959px) {
  .watch-video-wrapper {}

  .watch-video-button {
    right: 6px;
    top: 8px;
  }

  .watch-video-player-wrapper {}

  .watch-video-player {
    width: 100%;
    height: initial;
    object-fit: contain;
  }

  .watch-video-player-full {}

  .watch-video-close {
    top: 13px;
    right: 13px;
  }

  .watch-video-close svg {
    width: 34px;
    height: 34px;
  }
}