.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;


    /* Para Safari 9+ y Safari en iOS 9+ */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);

}

.swal2-container {
    width: 100% !important;
    display: grid !important;
    /* Para Safari 9+ y Safari en iOS 9+ */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);

}

.swal2-popup {
    grid-column: 2;
    grid-row: 2;
    place-self: center center;
    border-radius: 50px;
}

.swal2-close {
    width: 30px;
    height: 30px;
    background-color: white;
    color: black;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}