/* Preload */

.splash {
    width: 100%;
    height: 100vh;
    background-color: /*#000116*/ #11274d;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 1s;
}

.nothing {
    opacity: 0;
    pointer-events: none;
    z-index: -10;
}


.splash img {
    width: 8rem;
    transition: all 2;
    animation: .5s fadeIn ease-in-out forwards;
}

.spinner-box {
    position: absolute;
    width: 10.5rem;
    height: 10.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }

.circle-border {
    width: 10rem;
    height: 10rem;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(63,249,220);
    background: linear-gradient(0deg, rgba(255, 255, 255, .2) 33%, #e6e7e9 100%);
    animation: spin .8s linear 0s infinite, .5s fadeIn ease-in-out forwards;
  }
  
  .circle-core {
    width: 100%;
    height: 100%;
    background-color: #11274d;
    border-radius: 50%;
  }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to{
        transform: rotate(359deg);
    }
}

/* ----- */