#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999998;
    pointer-events: none;
    background: rgb(0,9,130);
    background: linear-gradient(45deg, rgba(0,9,130,1) 0%, rgba(0,212,255,1) 100%);
    animation-duration: 300ms;
    animation-timing-function: ease-in-out;
}
.untouched_fader {
    animation: fade-out 300ms;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}
@keyframes fade-out {
    from { opacity: 1; filter: blur(0px); transform: scale(1.0)}
      to { opacity: 0; filter: blur(50px); transform: scale(0.9)}
}
@keyframes fade-in {
    from { opacity: 0; filter: blur(50px); transform: scale(0.9)}
      to { opacity: 1; filter: blur(0px); transform: scale(1.0)}
}
@media all and (max-width: 1024px) {
    @keyframes fade-out {
    from { opacity: 1}
      to { opacity: 0}
}
@keyframes fade-in {
    from { opacity: 0}
      to { opacity: 1}
}
}
.noanim {
    opacity: 0;
}
#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}
#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}