.swal2-container {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 20000 !important;
    background: rgba(0, 0, 0, 0.45);
}

.swal2-popup {
    width: min(32rem, 100%);
    box-sizing: border-box;
}

.swal2-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.swal2-styled {
    border: 0;
    cursor: pointer;
}

.swal2-input,
.swal2-select,
.swal2-textarea {
    width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
}

.swal2-loader {
    width: 2em;
    height: 2em;
    border: 0.25em solid transparent;
    border-radius: 50%;
    animation: swal2-rotate-loading 1.5s linear infinite;
}

@keyframes swal2-rotate-loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
