*, *::before, *::after {
box-sizing:border-box;margin:0;padding:0; }

body {
width: 100vw; height: 100vh; color:#000;
font-family: "Times New Roman", Times, serif;
position: relative;
justify-content: center; padding: 10px;
align-items: flex-start; align-content: center; }

.hide { display: none; }
.show { display: flex !important; }




/* Loader */


#trans {
    display: none;
    position: fixed;
    z-index: 9999;
    background: linear-gradient(0deg, transparent, black);
    backdrop-filter: blur(8px);

    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;

    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#ia {
    position: relative;
    width: 250px;
    height: 20px;

box-shadow: inset 2px 2px 5px 0 black;

    border: 2px solid rgba(255,255,255,.5);
    overflow: hidden;
}

.loader {
    position: absolute;

    width: 30px;
    height: 30px;

    background: white;

    animation: run .5s ease-in-out infinite alternate;
}

@keyframes run {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}

.def {
    margin-top: 15px;
    color: #fff;
    position: relative;
}
