.overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  z-index: 500020;
  background: #FFFFFF;
}
@media screen and (min-width: 800px) {
  .overlay-container {
    height: 95vh;
    width: 70vh;
    top: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .overlay-container {
    height: 95vh;
    width: 90vh;
  }
}
.overlay-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.overlay-container .header .close {
  font-size: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(images/icon-cross.svg);
  background-size: 60% 60%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  z-index: 300;
  border: none;
}
@media screen and (min-width: 920px) {
  .overlay-container .header .close {
    width: 40px;
    height: 40px;
  }
}
.overlay-view header,
.overlay-view footer,
.overlay-view .breadcrumb,
.overlay-view .sidebar,
.overlay-view .countdown {
  display: none;
}
.overlay-view body {
  margin-bottom: 0;
}
