﻿html, body {
    /*padding: 0;*/
    margin: 0;
}

.splashContainer { /* E' il DIV che contiene l'oggetto immagine con lo Sfondo */
    position: fixed;
    background-color: white;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    z-index: 500;
}

    .splashContainer.display-none {
        position: fixed;
        top: 0;
        left: 0;
        padding: 0;
        margin: 0;
        width: 100vw;
        height: 100vh;
        opacity: 0;
        z-index: -10;
        transition: all 1s;
        visibility: hidden;
    }

    .splashContainer.hide {
        position: fixed;
        top: 0;
        left: 0;
        padding: 0;
        margin: 0;
        width: 100vw;
        height: 100vh;
        opacity: 0;
        z-index: -10;
        visibility: hidden;
    }


#splashimgBack {                    /* E' l'oggetto immagine con la picture di Sfondo */
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}




.splashRetino {
    position: fixed;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.51);
    
    width: 100%;
    height: 100%;
    top: 0;
    
    text-align: center;
}
    .splashRetino.display-none {
        position: fixed;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.51);
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 1000;
        text-align: center;
        opacity: 0;
        z-index: -10;
        visibility:hidden;
        transition: all 0.5s;
    }
    .splashRetino.hide {
        position: fixed;
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.51);
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 1000;
        text-align: center;
        opacity: 0;
        z-index: -10;
        visibility: hidden;
    }

#splashdivLogo { /* E' il DIV che contiene il Logo */
    /*background-color: yellow;*/
    margin-top: 200px;
    text-align: center;
    width: 100%;
}


#splashimgLogo {         /* E' l'immagine del Logo */
    width: 50%;
    max-width: 450px;
}


#splashdivMsg { /* E' il DIV che contiene il messaggio di Benvenuto */
    /*background-color: green;*/
    width: 100%;
    text-align: center;
    margin-top: 20px;
}


#splashlblMsg {          /* E' la Label con il messaggio di Benvenuto */
    color: white;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15vw !important;
}



@keyframes fadeIn{
    to{
        opacity: 1;
    }
}

.fadein{
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}