#popupframeover {
    position: fixed !important;
    width: 100%;
    height: 150%;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    filter: blur(0.5s);
    top: 0;
    pointer-events: auto !important;
    animation: fadein 1s;
  }
  #clickonme {
    width: 120px;
    height: 150px;
    cursor: pointer;
    position: fixed !important;
    z-index: 9999 !important;
    bottom: 0px !important;
    left: 0px;
    transition: 0.5s;
    padding: 10px;
    outline: none;
    border: none;
    background-color: transparent;
    pointer-events: auto !important;
  }
  #clickonme:hover {
    transform: scale(1.1);
  }
  
  #clickonme:hover,
  #clickonme:focus {
    outline: none;
  }
  
  #popupframe {
    position: fixed !important;
    width: 1200px;
    z-index: 9999999999 !important;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #popupgame {
    width: 100%;
    height: 100%;
    pointer-events: auto !important;
  }

  #popupXbutton {
    position: absolute;
    z-index: 999999 !important;
    background-color: white;
    font-size: 1em;
    color: black;
    border: none;
    right: 0px;
    cursor: pointer;
    pointer-events: auto !important;
  }
  
  #popupgame {
    border: none;
    pointer-events: auto !important;
  }
  
  iframe {
    border: none;
    pointer-events: auto !important;
  }
  
  .scrolldown,
  .scrollup {
    border: none;
    display: none !important;
    cursor: pointer;
    background: none;
    outline: none;
    width: 50% !important;
  }
  
  @media only screen and (max-width: 1000px) {
    #popupframe {
      width: 100%;
      height: 500px;
      margin-left: 0% !important;
    }
    .scrolldown,
    .scrollup {
      display: none !important;
      width: 50%;
      justify-content: center;
    }
    img.scrolldown,
    img.scrollup {
      padding: 15px 53px;
      margin: 0;
    }
    .gnn-mobile-cat-nav {
      display: none !important;
    }
  }
  @media only screen and (max-height: 800px) {
    #popupframe {
      height: 80%;
      margin-top: 0px;
    }
  }
  
  /* only the site */
  #wiply-widget-image {
    width: 100%;
  }
  
  #iframe-wiply-popup-title {
    text-align: center;
    font-size: 40px;
    color: white;
    filter: drop-shadow(0px 0px 10px black);
    margin: 10px 0px;
    display: none;
    pointer-events: auto !important;
  
    animation: fadein 2s;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  @keyframes fadeup {
    from {
      opacity: 0;
  
      transform: translateY(100vh) translate(-50%, -50%);
    }
    to {
      opacity: 1;
  
      transform: translateY(0) translate(-50%, -50%);
    }
  }
  
  @keyframes fadeleft {
    from {
      opacity: 0;
      transform: translateX(-100vw) translate(-50%, -50%);
    }
    to {
      opacity: 1;
      transform: translateX(0) translate(-50%, -50%);
    }
  }
  
  @keyframes fadeRight {
    from {
      opacity: 0;
      transform: translateX(100vw) translate(-50%, -50%);
    }
    to {
      opacity: 1;
      transform: translateX(0) translate(-50%, -50%);
    }
  }
  
  @keyframes fadeScale {
    from {
      opacity: 0;
      scale: 0;
    }
    to {
      opacity: 1;
      scale: 1;
    }
  }
  
  @keyframes fadein {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }