.c-popup-video {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: none;
}
.c-popup-video__wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 42px 74px 0 rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 870px;
  height: auto;
  text-align: center;
}
@media (max-width: 1499.98px) {
  .c-popup-video__wrapper {
    max-width: 696px;
  }
}
@media (max-width: 575.98px) {
  .c-popup-video__wrapper {
    max-width: 350px;
  }
}
.c-popup-video__wrapper iframe {
  width: auto;
}
.c-popup-video__close {
  position: absolute;
  top: -25px;
  right: -25px;
  border-radius: 50%;
  background-color: #336e63;
  width: 50px;
  height: 50px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1499.98px) {
  .c-popup-video__close {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575.98px) {
  .c-popup-video__close {
    top: 0;
    right: 0;
  }
}
.c-popup-video__close-icon {
  width: 20px;
  height: 20px;
  background-image: url("../../../img/icons/close-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1499.98px) {
  .c-popup-video__close-icon {
    width: 16px;
    height: 16px;
  }
}