/* swal custom */
.swal2-popup {
    background-color: #181b31 !important;
    border: 2px solid #51597e !important;
    color: aliceblue !important;
    border-radius: 15px !important;
    z-index: 999 !important;
}

.swal2-popup .swal2-styled:focus .swal2-input{
    box-shadow: none !important;
    border: none !important;
}

.swal2-confirm {
    border-radius: 5px !important;
    background-color: #181b31 !important;
    border: 2px solid #51597e !important;
    transition: all .15s ease-in-out;
    padding: 8px 20px !important;
}

.swal2-confirm:hover {
    background-color: #51597e !important;
}

.swal2-cancel {
    border-radius: 5px !important;
    background-color: #181b31 !important;
    border: 2px solid #7e5251 !important;
    transition: all .15s ease-in-out;
    padding: 8px 20px !important;
}

.swal2-deny:hover {
    background-color: #7e5251 !important;
}

.swal2-deny {
    border-radius: 5px !important;
    background-color: #181b31 !important;
    border: 2px solid #7e5251 !important;
    transition: all .15s ease-in-out;
    padding: 8px 20px !important;
}

.swal2-cancel:hover {
    background-color: #7e5251 !important;
}

.swal2-input {
    background-color: #24283B !important;
    border: 1px solid #51597e !important;
    color: aliceblue !important;
    border-radius: 8px !important;
    font-size: 15px;
}

.swal2-validation-message {
    background-color: #24283B !important;
    color: #FFFFFF;
}

.swal2-show {
    animation: show .15s !important;
}

.swal2-hide {
    animation: hide .15s !important;
}

.swal2-timer-progress-bar{
    background-color: #586bc0 !important;
}

@keyframes show {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


@keyframes hide {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(0.8);
        opacity: 0
    }
}

.swal2-input {
    width: 80% !important;
    max-width: 350px !important;
}