/* ----- LOADING ----- */
#loading {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    background-color: #000000;
    opacity: 0.5;
    visibility: hidden;
    z-index: 1;
}
#loading .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(250, 250, 250, 1);
    font-size: 24px;
    text-align: center;
}
#loading .icon img {
    width: 100px;
    max-width: 100%;
    max-height: 100%;
}
