﻿.toast-container {
    width: 90%;
    max-width: 580px;
    margin: 0 auto;
    z-index: 2000;
}

[class*="toast-pos-"] {
    position: absolute;
    padding: 10px;
}

.toast-pos-top {
    top: 0;
}

.toast-pos-right {
    right: 0;
}

.toast-pos-bottom {
    bottom: 0;
}

.toast-pos-left {
    left: 0;
}

.toast {
    display: none;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.close-toast {
    float: right;
    text-decoration: none;
    color: #ffffff;
    vertical-align: middle;
}

.toast-success {
    background: rgba(51, 153, 0, 0.8);
    color: #FFFFFF;
}

.toast-warning {
    background: rgba(255, 204, 0, 0.8);
    color: #FFFFFF;
}

.toast-error {
    background: rgba(204, 51, 0, 0.8);
    color: #FFFFFF;
}

.toast-trigger {
    display: inline-block;
    top: 50%;
    left: 50%;
    margin: 10px;
    padding: 20px 40px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
    transition: ease .2s;
}
