.popup-video__video-button {
  display: block;
}

.popup-video__video-button img{
  margin-bottom:unset;
}

.popup-video__video-button--image.button.button--video{
  padding: 1rem 0 1rem 0;
}

.popup-video__video-button--image.button.button--video::after{
  left:50%;
  transform: translate(-50%, -50%);
}

/* Video Pop-up */
.popup-video__video-popup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0s linear 0s;
  transition: -webkit-transform 0s linear 0s;
  -o-transition: transform 0s linear 0s;
  transition: transform 0s linear 0s;
  transition: transform 0s linear 0s, -webkit-transform 0s linear 0s;
  visibility: hidden;
  z-index: 10001;
}
/*.show-video-popup .popup-video__video-popup {
  opacity: 1;
  visibility: visible;
}*/
.popup-video__video-popup-overlay {
  background: rgba(122, 201, 229, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity .2s ease-out .05s;
  -o-transition: opacity .2s ease-out .05s;
  transition: opacity .2s ease-out .05s;
  visibility: hidden;
  z-index: 10001;
}
/*.show-video-popup .popup-video__video-popup-overlay {
  opacity: 1;
  visibility: visible;
}*/
.popup-video__video-content {
  bottom: auto;
  height: 0;
  left: auto;
  margin: 0 auto;
  overflow-y: visible;
  padding-top: calc((100% - 12em) * 0.5625);
  position: relative;
  right: auto;
  top: auto;
  width: calc(100% - 12em);
  z-index: 10002;
}
.popup-video__video {
  background: #000;
  bottom: 0;
  -webkit-box-shadow: 0px 2px 16px rgba(0,0,0,0.5);
          box-shadow: 0px 2px 16px rgba(0,0,0,0.5);
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.popup-video__video-popup-close {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

@media(min-aspect-ratio: 16/9) {
  .popup-video__video-content {
    height: calc(100vh - 10em);
    padding-left: calc((100vh - 10em) * 1.7778);
    padding-top: 0;
    width: 0;
  }
}

@media(max-width: 640px) {
  .popup-video__video-content {
    padding-top: calc((100% - 1em) * 0.5625);
    width: calc(100% - 1em);
  }
}