/** Aviato — pg-gl-2019.10.31 - overlay.css **/

body .component-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  height: 100vh;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 500;
  -webkit-transition: opacity 1s;
  transition: opacity 1s; }
  body .component-overlay .loader {
    background: #ffffff;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0; }
    body .component-overlay .loader .preloader {
      width: 200px;
      -webkit-animation: flickerAnimation 3.5s infinite;
              animation: flickerAnimation 3.5s infinite; }

body .js-overlay-opener {
  cursor: pointer; }

body.overlay-active {
  overflow: hidden;
  height: 100vh; }
  body.overlay-active.overlay-scroll {
    overflow: auto; }
  body.overlay-active .component-overlay {
    display: block;
    opacity: 1; }
  body.overlay-active.overlay-white .component-overlay {
    background: rgba(255, 255, 255, 0.8); }

body.no-scroll {
  overflow: hidden; }

html.overlay-active {
  overflow: hidden;
  height: 100vh; }
