@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fadeInOut {
    0% {
        opacity: 0;
        -webkit-opacity: 0;
    }
    30% {
        opacity: 1;
        -webkit-opacity: 1;
    }
    70% {
        opacity: 1;
        -webkit-opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-opacity: 0;
    }
}

@-webkit-keyframes ios-btn-shadow-refresh {
    0%,
    100% {
        -webkit-transform: translateZ(0);
    }
    50% {
        -webkit-transform: translateZ(0) scale(1.0001);
    }
}

@keyframes ios-btn-shadow-refresh {
    0%,
    100% {
        transform: translateZ(0);
    }
    50% {
        transform: translateZ(0) scale(1.0001);
    }
}

@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(-3px 3px 16px rgba(50, 170, 255, 0.4)); }
    50%       { filter: drop-shadow(-3px 3px 28px rgba(189, 167, 255, 0.9)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3)); }
}

@-webkit-keyframes neonPulse {
    0%, 100% { -webkit-filter: drop-shadow(-3px 3px 16px rgba(50, 170, 255, 0.4)); }
    50%       { -webkit-filter: drop-shadow(-3px 3px 28px rgba(189, 167, 255, 0.9)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.3)); }
}

@keyframes shimmer {
    0%   { background-position: 100% center; }
    100% { background-position: 0% center; }
}

@-webkit-keyframes shimmer {
    0%   { background-position: 100% center; }
    100% { background-position: 0% center; }
}
