.swal2-popup.custom-popup-swal2 {
    border-radius: 12px;
    background-color: var(--neutralWhite);
    padding-top: 52px;
    padding-bottom: 52px;
}

.swal2-popup.custom-popup-swal2 .swal2-title.title {
    font-size: 36px;
    font-weight: 700;
    line-height: 56px;
    margin: 0;
    padding: 0;
}

.swal2-popup.custom-popup-swal2 .swal2-title.title-success {
    color: var(--primaryP100);
}

.swal2-popup.custom-popup-swal2 .swal2-title::before {
    font-family: bootstrap-icons;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    margin-right: 16px;
}

.swal2-popup.custom-popup-swal2 .swal2-title.title-success::before {
    content: "\f272";
}

.swal2-popup.custom-popup-swal2 .swal2-title.title-error {
    color: var(--secondaryRed);
}

.swal2-popup.custom-popup-swal2 .swal2-title.title-error::before {
    content: "\f62a";
}

.swal2-popup.custom-popup-swal2 .swal2-html-container {
    font-size: 1rem;
    font-weight: 500;
    line-height: 26px;
    color: var(--neutralN100);
    margin-top: 12px;
    margin-bottom: 40px;
}

.swal2-popup.custom-popup-swal2  .swal2-actions {
    margin: 0;
}

.swal2-popup.custom-popup-swal2 .swal2-styled {
    padding: 8px 32px;
    color: var(--neutralWhite);
    text-transform: uppercase;
    border-radius: 40px !important;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

.swal2-popup.custom-popup-swal2 .swal2-styled:focus {
    box-shadow: none;
    border: 0;
}

.swal2-popup.custom-popup-swal2 .swal2-styled.swal2-confirm.btn-success {
    background-color: var(--primaryP100);
    font-weight: 500;
}

.swal2-popup.custom-popup-swal2 .swal2-styled.swal2-confirm.btn-error {
    background-color: var(--secondaryRed);
}

.swal2-popup.custom-popup-swal2 .swal2-close {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: var(--neutralB70);
    color: var(--neutralWhite);
    justify-content: center;
    align-items: center;
    font-size: 24px;
    top: 12px;
    right: 12px;
    border: none;
}

.swal2-popup.custom-popup-swal2 .swal2-close:hover {
    color: var(--neutralWhite);
}

@media screen and (max-width: 768px) {
    .swal2-popup.custom-popup-swal2 {
        padding: 24px 16px;
    }

    .swal2-popup.custom-popup-swal2 .swal2-title.title {
        font-size: 28px;
        line-height: 44px;
    }

    .swal2-popup.custom-popup-swal2 .swal2-html-container {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .swal2-popup.custom-popup-swal2 .swal2-styled.swal2-confirm.btn-success {
        line-height: 26px;
    }
}