/*
    IMPORTANT: Use only for webpack build conversion issues.
*/

/*
    Keyframes:
      - Avoid webpack build conversion "from" -> "0%".
      - Percentage missing when the value is 0 issue fixed.
*/
@keyframes zoomin {
    from {
        transform: translate(-50%, -50%) scaleX(0.00) scaleY(0.00);
    }
    to {
        transform: translate(-50%, -50%) scaleX(1.00) scaleY(1.00);
    }
}

@keyframes zoomin-speed-bump {
    from {
        transform: scaleX(0.00) scaleY(0.00);
    }
    to {
        transform: scaleX(1.00) scaleY(1.00);
    }
}

@keyframes progress-bar-fill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
