/* Logo di Abicloud mostrato mentre si carica la pagina */
.splashscreen {
	position: fixed;
    z-index: 100;
    top: 0;
    background-color: #e2e2e2;
    left: 0;
    right: 0;
    bottom: 0;
}
.splash_img {
    margin: 0 auto;
    width: 500px;
    margin-top: 10%;
    -webkit-animation: pulse 1s infinite ease-in-out;
    -o-animation: pulse 1s infinite ease-in-out;
    -ms-animation: pulse 1s infinite ease-in-out; 
    -moz-animation: pulse 1s infinite ease-in-out; 
    animation: pulse 1s infinite ease-in-out;
    
} 
@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(0.95); opacity: 0.7; }
    50% { -webkit-transform: scale(1); opacity: 1; }
    100% { -webkit-transform: scale(0.95); opacity: 0.7; }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}