<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*, *::before, *::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
#cont-preloader{
    background-color: rgba(250, 240, 245, 0.9);
    /*margin-top: -4.5%;*/
    height: 100%;
    width: 100%;
    position: fixed;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 10000;
}
#cont-preloader img{
    margin-left: 42%;
    margin-right: auto;
    display: block;
    margin-top: 10%;
}

#cont-preloader h4{
    margin-top: 10%;
}

#preloader{
    border: 15px solid #617c1f;
    border-top-color: #4ef41c;
    border-top-style: solid;
    height: 100px;
    width: 100px;
    border-radius: 100%;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-top: 25%;
    -webkit-animantion: girar 1.5s linear infinite;
    -o-animantion: girar 1.5s linear infinite;
    animation: girar 1.5s linear infinite;
}


@keyframes girar{
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@media only screen and (max-width: 854px){
    #cont-preloader{
        margin-top: -27%;
        visibility: hidden;
    }

    #cont-preloader img{
        width: 20%;
        padding-top: 0%;
        margin-left: 40%;
    }

    #cont-preloader h4{
        margin-top: 40%;
    }

    #preloader{
        margin-top: 20%;
    }
}

@media only screen and (max-width: 481px){
    #cont-preloader{
        margin-top: -20%;
        visibility: visible;
    }

    #cont-preloader img{
        width: 40%;
        padding-top: 18%;
        margin-left: 30%;
    }

    #cont-preloader h4{
        margin-top: 40%;
    }

    #preloader{
        margin-top: 68%;
    }
}</pre></body></html>