.section-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 100;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  .section-popup.active {
    display: flex; }
  .section-popup .section-popup__overlay {
    background-color: #000a;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%; }
  .section-popup .section-popup__holder.content {
    background-color: #fff;
    z-index: 101;
    border-radius: 5px;
    position: relative;
    padding: 42px;
    max-height: 84%;
    overflow: visible;
    width: 88%; }
    @media only screen and (max-width: 991px) {
      .section-popup .section-popup__holder.content {
        padding: 42px 4%; } }
  .section-popup .section-popup__contents {
    max-height: calc(80vh - 42px);
    overflow: auto; }
    .section-popup .section-popup__contents > video {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto; }
  .section-popup .section-popup__content {
    display: none; }
    .section-popup .section-popup__content.active {
      display: block; }
  .section-popup .section-popup__cross {
    display: inline-block;
    position: absolute;
    font-size: 32px;
    color: #262626;
    top: 2px;
    right: 6px;
    cursor: pointer; }
    body.largeText .section-popup .section-popup__cross {
      font-size: 41px; }
    body.smallText .section-popup .section-popup__cross {
      font-size: 26px; }
    .section-popup .section-popup__cross:hover {
      opacity: 0.8; }

@media only screen and (min-width: 992px) {
    .section-popup.section-popup-homepage .section-popup__holder.content {
        width: 50%;
    }
}