/* =========================================
   ANIMATIONS
========================================= */


/* -----------------------------------------
   ECG Line Draw Animation
----------------------------------------- */

@keyframes draw {

    to {
        stroke-dashoffset: 0;
    }

}


/* -----------------------------------------
   ECG Pulse Animation
----------------------------------------- */

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

}


/* -----------------------------------------
   Status Dot Blink Animation
----------------------------------------- */

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}


/* ---------- Page Fade In ---------- */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}