.c-popup-video {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}
.c-popup-video__wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1280px;
  max-height: 720px;
  height: 100%;
  text-align: center;
}
@media (max-width: 1599.98px) {
  .c-popup-video__wrapper {
    max-width: 1024px;
    max-height: 576px;
  }
}
@media (max-width: 991.98px) {
  .c-popup-video__wrapper {
    max-width: 640px;
    max-height: 360px;
  }
}
@media (max-width: 575.98px) {
  .c-popup-video__wrapper {
    max-width: 350px;
  }
}
.c-popup-video__wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.c-popup-video__close {
  position: absolute;
  top: 15px;
  right: -50px;
  width: 40px;
  height: 40px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .c-popup-video__close {
    top: -40px;
    right: 0;
  }
}
.c-popup-video__close-icon {
  width: 40px;
  height: 40px;
  background-image: url("../../../img/icons/close-icon-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.c-popup-video__close-overlay {
  width: 100%;
  display: block;
  height: 100%;
}