﻿

#toast-container.toast-top-center > div, #toast-container.toast-bottom-center > div {
    width: 500px;
}

#toast-container > .toast {
    background-image: none !important;
    width: 500px;
    margin-top: 20px;
    overflow: visible;
    overflow: unset !important;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
    opacity: 1;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, .3);
    transition-property: box-shadow;
    transition-duration: 200ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

    #toast-container > .toast:hover {
        box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, .3);
    }

    #toast-container > .toast:before {
        float: left;
        color: #FFF;
        font-family: 'Font Awesome 5 Pro','Fa 300', 'Font Awesome 5 Free', sans-serif;
        font-weight: 300;
        position: absolute;
        left: 16px;
        top: -16px;
        width: 32px;
        height: 32px;
        border-radius: 16px;
        background-color: white;
        box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, .3);
        cursor: default;
        border: 2px solid transparent;
        box-sizing: border-box;
        font-size: 28px;
        line-height: 28px;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 0;
        margin: 0;
    }

    #toast-container > .toast .toast-message {
        max-height: 100%;
        overflow: hidden;
    }

#toast-container .toast-close-button {
    color: white !important;
    transition: transform 250ms ease 0s;
    opacity: 1;
    transform: scale(.60);
}

    #toast-container .toast-close-button:hover, #toast-container .toast-close-button:hover {
        opacity: 1;
        transform: scale(1);
    }

    #toast-container .toast-close-button .toastr-close {
        font-family: 'Font Awesome 5 Pro';
        font-weight: 300;
    }




#toast-container > .toast-warning {
    background-color: #F89406;
}

    #toast-container > .toast-warning:before {
        /*content: "\f071";*/
        content: "\f06a";
        color: #F89406;
    }

#toast-container > .toast-error {
    background-color: #f56600;
    background-color: #dc3545;
}

    #toast-container > .toast-error:before {
        content: "\f057";
        color: #f56600;
        color: #dc3545;
    }

#toast-container > .toast-info:before {
    content: "\f06a";
    color: #2F96B4;
}

#toast-container > .toast-success {
    background-color: #0ac020;
}

    #toast-container > .toast-success:before {
        content: "\f058";
        color: #0ac020;
    }

@media (max-width:550px) {
    #toast-container.toast-top-center > div, #toast-container.toast-bottom-center > div {
        width: 90%;
    }
}
