.success-check.animate-success {

    animation: successPop .45s cubic-bezier(.18, .89, .32, 1.28);

}

.success-check.animate-success svg {

    stroke-dasharray: 40;

    stroke-dashoffset: 40;

    animation: drawCheck .45s ease forwards .18s;

}

@keyframes successPop {

    from {

        transform: scale(.6);

        opacity: 0;

    }

    to {

        transform: scale(1);

        opacity: 1;

    }

}

@keyframes drawCheck {

    to {

        stroke-dashoffset: 0;

    }

}