/* SWEETALERT 2 */
.swal2-modal {
    display: flex;
    width: 707px;
    padding: 50px 100px;
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.swal2-title {
    padding: 0;
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.swal2-html-container {
    padding: 0;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.swal2-actions {
    margin: 0;
    gap: 40px;
}

.swal2-confirm {
    display: flex;
    width: 158px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 100px;
    background: var(--primary-btn-color, #4575dd);
    color: var(--btn-text-color, #ffffff);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin: 0;
    padding: 10px 24px;
}

.swal2-cancel {
    display: flex;
    width: 158px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 100px;
    background: var(--secondary-btn-color);
    color: var(--btn-text-color, #ffffff);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin: 0;
    padding: 10px 24px;
}

.swal2-deny {
    display: flex;
    width: 158px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 100px;
    background: var(--danger-btn-color);
    color: var(--btn-text-color, #ffffff);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;
    margin: 0;
    padding: 10px 24px;
}