/*Animation*/
.spin-pulse {
	animation-name: fa-spin; 
    animation-direction: var(--fa-animation-direction, normal); 
    animation-duration: var(--fa-animation-duration, 1s); 
    animation-iteration-count: var(--fa-animation-iteration-count, infinite); 
    animation-timing-function: var(--fa-animation-timing, steps(8));
}
.shake {
	animation-name: fa-shake;
    animation-duration: var(--fa-animation-direction, 1s); 
    animation-iteration-count: var(--fa-animation-iteration-count, infinite); 
    animation-timing-function: var(--fa-animation-timing, linear);
}
.font-pulse, .font-spin-pulse {
	animation-name: font-spin;
    animation-direction: var(--fa-animation-direction, normal);
    animation-duration: var(--fa-animation-duration, 1s);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-timing-function: var(--fa-animation-timing, steps(8));
}
@keyframes font-spin {
	0% {
		transform:rotate(0deg);
	}
	100% {
		transform:rotate(1turn);
	}
}

.modal > .box .success-pop {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    border-radius: 50%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0);
    margin: 15px auto;
}
.modal > .box .success-pop .ripple {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.5);
    opacity: 0;
}
.modal > .box .error-pop {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #E53935;
    border-radius: 50%;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0);
    margin: 15px auto;
}
.modal > .box .error-pop .ripple {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: rgba(229, 57, 53, 0.5);
    opacity: 0;
}
.modal > .box .error-pop .icon,
.modal > .box .success-pop .icon {
    font-size: 32px;
    color: white;
    opacity: 0;
}
.modal > .box .loading-pop {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    margin: 15px auto;
}
.modal > .box .loading-pop .ripple {
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
}
.modal > .box .loading-pop .icon2 {
    font-size: 64px;
    color: #007BFF;
    opacity: 0;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}
@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes rippleEffect {
    0% { transform: scale(0); opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}