.video-modal {
  display: flex;
  transition: background 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  z-index: 999;
}
.video-modal--hidden {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.video-modal--active {
  background: rgba(255, 255, 255, 0.8);
}
.video-modal__container {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: white;
  box-shadow: 0px 0px 3.8px rgba(0, 0, 0, 0.035), 0px 0px 30px rgba(0, 0, 0, 0.07);
  padding: 10px;
  top: -2rem;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  padding: 20px;
}
.video-modal__container--down {
  opacity: 1;
  transform: translateY(0);
}
.video-modal__container--podcast {
  opacity: 1;
  transform: translateY(0);
  height: 270px;
}
.video-modal__container--podcastURL {
  opacity: 1;
  transform: translateY(0);
  height: 170px;
}
.video-modal__header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 10px;
}
.video-modal__close {
  outline: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.video-modal__close::before {
  font-size: 25px;
}
.video-modal__body {
  width: 88vw;
  height: calc(49.5vw);
}
@media (min-width: 375px) {
  .video-modal__body {
    width: 70vw;
    height: calc(39.375vw);
  }
}
@media (min-width: 768px) {
  .video-modal__body {
    width: 55vw;
    height: calc(30.9375vw);
  }
}
.video-modal__iframe {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.video-modal__iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal__iframe video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.video-modal__iframe audio {
  width: 100%;
}
.image-block__play-icon .videoType {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: rgba(51, 63, 72, 0.65);
  border: 1px solid #ffffff;
  border-radius: 100%;
  cursor: pointer;
  color: #ffffff;
  font-size: 72px;
}
.image-block__play-icon .videoType .icon--arrow-tip-solid-right {
  font-size: 45px;
}
.image-block__play-icon .videoType i {
  font-size: 24px;
}
