/*Swal*/
.swal2-popup {
    border-radius: 20px;
}

.swal2-cancel,
.swal2-cancel:hover,
.swal2-cancel:active,
.swal2-cancel:focus {
    background: var(--secondary) !important;
    color: white;
    border: none;
    outline: none;
}

.swal2-cancel:active {
    box-shadow:
            0 0 5px var(--secondary),
            0 0 10px var(--secondary),
            0 0 15px var(--secondary) !important;
}

.swal2-deny,
.swal2-deny:hover,
.swal2-deny:active,
.swal2-deny:focus {
    background: var(--button-danger) !important;
    color: white;
    border: none;
    outline: none;
}

.swal2-deny:active {
    box-shadow:
            0 0 5px var(--button-danger),
            0 0 10px var(--button-danger),
            0 0 15px var(--button-danger) !important;
}

.swal2-confirm,
.swal2-confirm:hover,
.swal2-confirm:active,
.swal2-confirm:focus {
    background: var(--brand-color) !important;
    color: white;
    border: none;
    outline: none;
}

.swal2-confirm:active {
    box-shadow:
            0 0 5px var(--brand-color),
            0 0 10px var(--brand-color),
            0 0 15px var(--brand-color) !important;
}

.swal2-icon.swal2-success {
    color: var(--success) !important;
    border-color: var(--success) !important;
    background: none !important;
}
.swal2-success-ring {
    border: 4px solid var(--success) !important;
}
.swal2-success-line-tip,
.swal2-success-line-long {
    background-color: var(--success) !important;
}

.swal2-icon.swal2-warning {
    color: var(--warning) !important;
    border-color: var(--warning) !important;
    background: none !important;
}

.swal2-icon.swal2-error {
    color: var(--danger) !important;
    border-color: var(--danger) !important;
    background: none !important;
}
.swal2-x-mark-line-left,
.swal2-x-mark-line-right {
    background-color: var(--danger) !important;
}

.swal2-icon.swal2-info {
    color: var(--info) !important;
    border-color: var(--info) !important;
    background: none !important;
}

.swal2-icon.swal2-question {
    color: var(--question) !important;
    border-color: var(--question) !important;
    background: none !important;
}
.swal2-question-mark {
    color: var(--question) !important;
}

.swal2-textarea {
    height: auto;
    min-height: 8em;
    line-height: 1.6;
}

.swal2-loader {
    border-color: var(--brand-color) var(--brand-color) var(--brand-color) transparent !important;
}