﻿.loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: white;
    display: none;
    z-index: 9999;
}

.frame {
    position: absolute;
    top: 0;
    left: 0;
    animation: walk 0.9s steps(1) infinite;
}

/* Frame 2 visibile nel secondo terzo */
.frame2 {
    animation-delay: 0.3s;
}

/* Frame 3 visibile nel terzo terzo */
.frame3 {
    animation-delay: 0.6s;
}

img.frame {
    width: 120px;
    position: absolute;
    top: calc(50% - 90px);
    left: calc(50% - 60px);
}

@@keyframes walk {
    0% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    img.frame {
        width: 120px;
    }
}

body.noscroll {
    overflow: hidden;
}



p.loatest {
    margin: auto;
    text-align: center;
    position: absolute;
    top: 60%;
    width: 100vw;
}
