#splashWrapper {
    background-color: #fff;
    z-index: 10;
}

#splashIcon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../..//images/720p/splash_logo_playkids.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 600px;
    opacity: 0;
}

#splashWrapper.animate #splashIcon {
    opacity: 1;
    transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -moz-transition: all 1s;
    background-size: 356px;
}

#splashBottom {
    opacity: 0;
}

#splashWrapper.animate #splashBottom {
    opacity: 1;
    transition: all 0.7s;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -moz-transition: all 0.7s;
}

#movileIcon {
    position: relative;
    float: left;
    width: 100%;
    height: 200px;
    margin-top: 350px;
    background-image: url(../..//images/720p/splash_logo_movile.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

#splashLoadingIcon {
    position: relative;
    float: left;
    width: 100%;
    height: 155px;
    background-image: url(../..//images/720p/splash_spinner.png);
    background-repeat: no-repeat;
    background-position: center center;
}

#splashWrapper.animate #splashLoadingIcon {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 2000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 2000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 2000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}