.popup {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-header {
    position: absolute;
    top: 0;
    left: 40px;
}

.popup-header img {
    width: 300px;
}

.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin: 0 15px 0 15px;
}

.popup-content h2 {
    margin: 0;
    font-family: sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 32px;
    color: #1c1e21;
}

.popup-content p {
    margin: 0;
    font-family: sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    color: #1c1e21;
}

.popup-content .loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

.popup-content .success-checkmark {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    position: relative;
}

.popup-content .success-checkmark .check-icon {
    width: 36px;
    height: 36px;
    position: absolute;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-color: #22a84b;
    border-style: solid;
    border-width: 3px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.checkmark-line-one,
.checkmark-line-two {
    width: 17px;
    height: 4px;
    background-color: #22a84b;
    position: absolute;
    transform-origin: left;
}

.checkmark-line-one {
    transform: rotate(47deg);
    top: 5px;
    left: 2px;
    animation: drawCheckmarkOne 0.5s forwards;
}

.checkmark-line-two {
    transform: rotate(-48deg);
    top: 17px;
    left: 11px;
    animation: drawCheckmarkTwo 0.5s forwards;
    animation-delay: 0.5s;
    width: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drawCheckmarkOne {
    0% {
        width: 0;
    }

    100% {
        width: 17px;
    }
}

@keyframes drawCheckmarkTwo {
    0% {
        width: 0;
    }

    100% {
        width: 17px;
    }
}