#loading-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10000;
    opacity: 1;
    transition: opacity 1s ease-out;
}

#loading-logo{
    position: fixed;
    top: calc(50% - 200px);
    left: calc(50% - 150px);
    background-image: url('../../dist/logo/free-go_logo_icon_small.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 300px;
    height: 300px;
    animation: spin-counterclockwise 2s infinite linear;
}

@keyframes spin-counterclockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Spin Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Content hidden by default */
#content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.linear-loading {
    height: 10px;
    background-color: rgb(15,84,122);
    position: relative;
    overflow: hidden;
    width: 300px;
    top: calc(50% + 100px);
    left: calc(50% - 150px);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.linear-loading:after {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    background-color: #ffffff;
    width: 50%;
    left: 0;
    animation: slide-away 1.5s infinite linear;
}
@keyframes slide-away {
    0% {
        transform: translate(-100%, 0);
    }
    100% {
        transform: translate(200%, 0);
    }
}
