.popup_video__button {
  cursor: pointer;
}

.popup_video__container {
  position: fixed;
  z-index: 10000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgb(34 34 34 / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup_video__close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: #99191E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #222222;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1.5em;
  padding: 8px;
  width: 40px;
  height: 40px;
}


@media (max-width: 768px) {
  .popup_video__iframe {
    min-width: 60vw;
    min-height: 33.75vw;
  }
}

@media (max-width: 1023px) {
  .popup_video__iframe {
    min-width: calc(100% - 16px);
    margin: auto;
  }
}