﻿.modal-dialog {
    left: auto !important;
}

.animated-icon {
    font-size: 2.5rem;
    animation: popScale 0.5s ease-out;
}

@keyframes popScale {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    80% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

#otpModal img {
    animation: zoomIn 0.4s ease-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}