﻿
/*.toast {
    position: absolute;
    left: 50%;
    top: 40%;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.65, .35);
    display: inline-block;
    transform: translate(250%, -50%);
}

    .toast.active {
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
    }

    .toast .toast-content {
        display: flex;
        align-items: center;
    }

.toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    min-width: 35px;
    background-color: #4070f4;
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

    .message .text.text-1 {
        font-weight: 600;
        color: #333;
    }

.toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

    .toast .close:hover {
        opacity: 1;
    }

.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

    .toast .progress:before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background-color: #4070f4;
    }


.toast--green .progress:before {
    background-color: #2BDE3F;
}

.toast--green .toast__icon {
    background-color: #2BDE3F;
}

.toast--green:before {
    background-color: #2BDE3F;
}

.toast--blue .toast__icon {
    background-color: #1D72F3;
}

.toast--blue:before {
    background-color: #1D72F3;
}

.toast--blue .progress:before {
    background-color: #1D72F3;
}

.toast--yellow .toast__icon {
    background-color: #FFC007;
}

.toast--yellow:before {
    background-color: #FFC007;
}

.toast--yellow .progress:before {
    background-color: #FFC007;
}

.toast--red .toast__icon {
    background-color: #ff3030;
}

.toast--red:before {
    background-color: #ff3030;
}

.toast--red .progress:before {
    background-color: #ff3030;
}

.progress.active:before {
    animation: progress 10s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}*/




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h3 {
}

.alert {
    width: auto;
    padding: 15px 15px;
    position: fixed !important;
    border-radius: 8px;
    border: solid 1 px #CC561E z-index: 9999;
    color: #fff !important;
    min-height: 110px;
    right: 40px;
    bottom: 17%;
    z-index: 99999999999999999999;
    min-width: 320px;
}

.alert-danger {
    color: var(--falcon-alert-danger-color);
    background-color: #D0342C;
    border-color: #D0342C;
}

.alert h2 {
    color: #fff !important;
    font-size: 20px;
}


.alert h4 {
    color: #fff !important;
    font-size: 20px;
}

.alert p {
    color: #fff !important;
    font-size: 14px;
}

.alert .close {
    position: absolute;
    right: 15px;
    top: 9px;
    text-align: center;
    font-size: 1.6em;
    cursor: pointer;
    width: 19px;
    height: 19px;
    font-weight: 100;
    color: #FFF !IMPORTANT;
    opacity: 1;
}

.simple-alert {
    background-color: #ebebeb;
}

    .simple-alert .close {
        border-color: #6c6c6c;
        color: #6c6c6c;
    }

.success-alert {
    background-color: #459f6a;
}

    .success-alert .close {
        border-color: #178344;
        color: #178344;
    }

.danger-alert {
    background-color: indianred;
}

    .danger-alert .close {
        border-color: #8f130c;
        color: #8f130c;
    }

.warning-alert {
    background-color: #EF8D32;
}

    .warning-alert .close {
        border-color: #8a5700;
        color: #8a5700;
    }
