/* Popup Alert Component Styles */
.popup_alert {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup_alert .popup_box {
    padding: 40px 20px;
    background: #fff;
    max-width: 375px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.popup_alert .popup_box h4 {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup_alert .popup_box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #9c9ca4;
    margin-bottom: 20px;
}

.popup_alert .popup_box .btn {
    display: inline-block;
    width: auto;
    padding: 0 20px;
    height: 38px;
    line-height: 38px;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

.popup_alert .popup_box .btn.primary_button {
    background: #3a4fbb;
}

/* Tabler Icon Wrapper Styles */
.popup_alert .icon-wrapper {
    display: inline-block;
    margin-bottom: 10px;
}

.popup_alert .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.popup_alert .icon-circle .ti {
    font-size: 40px;
    line-height: 1;
}

/* Animation Classes */
@keyframes icon-beat {
    0%,
    90% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.25);
    }
}

.icon-beat {
    animation: icon-beat 1s ease infinite;
}

@keyframes icon-bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.icon-bounce {
    animation: icon-bounce 2s ease infinite;
}
