﻿#toast-container {
    position: fixed !important;
    top: 130px !important;
    right: 20px !important;
    transform: translate(-50%,-50%) !important;
    width: 250px !important;
    text-align:center;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 999999 !important;
    pointer-events: none;
}

    #toast-container > div {
        pointer-events: auto;
        width: 100%;
        /*min-height: 75px;*/
        padding:10px 10px;
        margin: 0;
        border-radius: 10px;
        /*background: #ffffff !important;*/
        color: #333 !important;
        font-family: 'Segoe UI',sans-serif;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,.20);
        overflow: hidden;
        position: relative;
        animation: toastShow .35s ease;

    }

        /* Hover Effect */
        #toast-container > div:hover {
            transform: scale(1.02);
            transition: .2s;
        }

/* Title */
.toast-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

/* Message */
.toast-message {
    font-size: 16px;
    color: #fff;
    font-weight:600;
    line-height: 20px;
}
.toast-message a{
    color:#fff;
}

/* Close Button */
.toast-close-button {
    color: #777 !important;
    font-size: 18px;
    right: 12px;
    top: 8px;
}

/* Progress */
.toast-progress {
    height: 4px;
    background: #d1d5db;
}

/* SUCCESS */
.toast-success {
    background: #16a34a;
    /*border-left: 6px solid #16a34a;*/
}

/* ERROR */
.toast-error {
    background: #dc2626;
}

/* WARNING */
.toast-warning {
    background: #f59e0b;
}

/* INFO */
.toast-info {
    background: #2563eb;
}

    /* Icons */
    .toast-success:before,
    .toast-error:before,
    .toast-warning:before,
    .toast-info:before {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        border-radius: 50%;
        color: #fff;
        font-weight: bold;
        font-size: 18px;
    }

.toast-success:before {
    content: "✓";
    background: #16a34a;
}

.toast-error:before {
    content: "✕";
    background: #dc2626;
}

.toast-warning:before {
    content: "!";
    background: #f59e0b;
}

.toast-info:before {
    content: "i";
    background: #2563eb;
}

/* Space for icon */
.toast-title,
.toast-message {
    padding-left: 15px;
}
.toast-title,
.toast-message a{
    font-size:13px;
}

/* Animation */
@keyframes toastShow {

    0% {
        opacity: 0;
        transform: scale(.75);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

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