/* @font-face {
    font-family: 'The Sans';
    src: url(./assets/font/thesans/TheSansPlain.ttf) format('truetype');
} */

.frame-hidden {
    display: none;
    opacity: 0;
  }
  
  .frame-shown {
    border: none;
    height: 100% !important;
    width: 100% !important;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    visibility: visible;
    z-index: 2147483647;
    max-height: 100%;
    max-width: 100%;
    background: transparent;
    animation: zoom-in 0.2s ease-out;
  }
  
  @keyframes zoom-in {
    0% {
      transform: scale(0, 0);
    }
  
    100% {
      transform: scale(1, 1);
    }
  }
  
  .is-open {
    opacity: 1;
  }
  
  .is-visible {
    display: block;
  }
  
  .frame-myframe {
    margin: 0px !important;
    margin-top: 0px !important;
    border: none;
    display: block;
    height: 100% !important;
    width: 100%;
    visibility: visible;
    max-height: 100%;
    max-width: 100%;
    transition: none 0s ease 0s;
  }
  
  .frame-close-button {
    border:none;
    color: #636363;
    background: transparent;
    z-index: 1000000000000000000;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer !important;
  }
  
  .frame-close-button:before,
  .frame-close-button:after {
    position: absolute;
    top: 0px;
    content: ' ';
    height: 24px;
    width: 2px;
    background-color: #ffffff;
  }
  
  .frame-close-button:before {
    transform: rotate(45deg);
  }
  .frame-close-button:after {
    transform: rotate(-45deg);
  }
  
  .iconifier {
    position: fixed;
    border: none;
    right: 25px;
    bottom: 25px;
    cursor: pointer !important;
    z-index: 1147483647;
  }
  
  .imager {
    height: 10em;
  }
  
  @media (min-width: 575px) {
    .frame-shown {
      border-radius: 15px;
      position: fixed !important;
      width: 390px !important;
      top: auto !important;
      left: auto !important;
      bottom: 25px !important;
      right: 25px !important;
      max-height: 80vh !important;
      box-shadow: 0px 0px 10px 5px #d8d7d7;
    }
  
    .frame-myframe {
      border-radius: 15px;
    }
  }
  