﻿/* Splash Loading */
.splash-loading{
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13,66,65,.6);
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.loading-icon{
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    color: var(--color-neutral-1);
}

/* Animation */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}