/* Animación de carga */
.pl-imgloading .loader {
    width: 300px;
    height: auto;
    position: relative;
    margin: auto;
}

.pl-imgloading .loader span {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 0%;
    background: url('../images/elcastillomickeylogo-pagina.png') center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: imgLoading 4s linear infinite;
    animation: imgLoading 4s linear infinite;
    -webkit-transition: 0s;
    transition: 0s;
}

.pl-imgloading .loader img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.1;
}

@-webkit-keyframes imgLoading {
    0% {
        width: 100%;
        height: 0%;
        opacity: 0;
    }

    95% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}

@keyframes imgLoading {
    0% {
        width: 100%;
        height: 0%;
        opacity: 0;
    }

    95% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}