
/*-- Use For Custom Styling --*/

#loader{
    background-color: #000;
}

#loader img{
    width: auto;
    height: auto;
    position: relative;
    margin: 0 auto;
    top: 43%;
}

.animatedColor {
    color: white;
}

.flecha {
    animation: arrow 1s ease-in-out infinite;
}

.flecha:hover {
    animation: arrow 1s ease-out infinite !important;
}

@keyframes arrow {
    0% {
        transform: translate(0px, 50px);
    }

    50% {
        transform: translate(0px, 60px);
    }

    100% {
        transform: translate(0px, 50px);
    }
}