/*svg, img {*/
/*    max-width: 10px;*/
/*}*/
.preLoad {
    /*display: none !important;*/
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #24A88E;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 123333;
    flex-direction: column;
    transition: 100ms;
}

.preLoad  .loading-dots {
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    top: 0;
    left: 0;

}



.preLoad .loading-dots>div {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: white;
    transition: 0.1s;
    animation: loading_dots .5s infinite;
    margin: 0 20px;
}



.preLoad .loading-dots>div:nth-child(1) {

}
.preLoad  .loading-dots>div:nth-child(2) {

    animation-delay: 0.1s;
}
.preLoad  .loading-dots>div:nth-child(3) {

    animation-delay: 0.15s;
}


@keyframes loading_dots {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }
    100% {
        transform: scale(1);
    }
}



.preLoad .loading-dots.easy {
    position: relative !important;
    background: transparent !important;
    top: unset !important;
    transform: unset !important;;
    height: unset !important;;
    margin: 30px auto !important;
}

.logoSVG {
    max-width: 90px;
    fill: white;
    margin-top: -130px;
}

.preLoad  h1,  .preLoad  p {
    font-family: monospace;
    text-align: center;
}

.preLoad h1 {
    color: white;
}

.preLoad p {
    color: yellow;
}

