﻿.toast-container {
    position: fixed;
    width: 350px;
    z-index: 100000;
}
.toast-container.toast-top-center {
    top: 20px;
    left: 50%;
    margin-left: -175px;
}
.toast-container .toast-item {
        animation-name: alert-show;
        animation-duration: 1s;
        box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.63);
        transition: margin-top 0.8s ease-in;
}
.toast-container .toast-item.hide {
    animation-name: alert-hide;
    animation-duration: 1.5s;
}
.toast-container .toast-item .toast-message {
    position: relative;
    margin: 0 0 10px 0;
}
.toast-container .toast-item .toast-message.toast-success {
    background-color: #8eda98;
    color: #05611d;
}
.toast-container .toast-item .toast-message.toast-info {
    background-color: #e6c25b;
    color: #58481a;
}
.toast-container .toast-item .toast-message.toast-danger {
    background-color: #ff7c7c;
    color: #a22828;
}
.toast-container .toast-item .toast-message .toast-message-content {
    padding: .5em 1em;
    
}
.toast-container .toast-item .toast-message .toast-message-content .toast-message-text-content {
    padding: 0 0 .25em;
    margin-left: 5px;
}
.toast-container .toast-item .toast-message .toast-message-content .toast-message-text-content .toast-summary {
    font-weight: 700;
    padding: 0 0 .5em;
}
.toast-container .toast-item .toast-message .toast-message-content .toast-message-text-content .toast-detail {
}

@-webkit-keyframes alert-show {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    33% {
    }
    66% {
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes alert-hide {
    0% {
        opacity: 1;
    }
    33% {
    }
    66% {
        opacity: 0;
    }
    100% {
    }
}