.loading-container {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    z-index: 1;

    top: 0;
    left: 0;

    background-color: white;
    background-image: url("https://expo3d.emuseudoesporte.com.br/3D/v2/globe_hall/pt-br/assets/textures/ambiente3D.jpg");
    background-repeat: no-repeat;
    background-size:cover;
    height: 100vh;
}
.loading-container.hidden {
    opacity: 0;
    
    transition: opacity 3s;
}

.loading-container .instruction-item {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);

    text-align: center;
    padding: 60px;
    background-color: #0853cc;
    box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.3);
}

.loading-container .instruction-item p {
    font-size: 20px;
    padding-bottom: 70px;
    line-height: 35px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.loading-container .instruction-item img {
    width: 150px;
    height: auto;
}

.loading-container .loading-icon {
    position: absolute;
    top: 80%;
    left: 50%;
    width: 60px;
    height: 60px;

    transform: translateX(-50%);
}

.loading-container .disable-item {
    top: 0%;
    opacity: 0%;
    visibility: hidden;

    transition: opacity 1s, top 1s, visibility 1.1s;
}

.loading-container .enable-item {
    top: 30%;
    opacity: 1;
    visibility: visible;

    transition: opacity 1s, top 1s, visibility 0s;
    border-radius: 5px;
}

@media only screen and (max-width: 600px) {
    .loading-container .instruction-item {
        width: 80%;
        padding: 50px 10px;
        min-height: 50%;
    }

    .loading-container .instruction-item p {
        line-height: 35px;
        font-size: 20px;
    }

    .loading-container .instruction-item img {
        width: 30%;
    }
}
