#toastr_container {
    box-sizing: border-box;
    position: fixed;
    right: 0;
    bottom: 0;
    width: 300px;
    height: auto;
    padding: 0 8px;
    z-index: 2048;
}
.toastr-card {
    box-sizing: border-box;
    position: relative;
    left: 0;
    bottom: 0;
    float: left;
    width: 100%;
    min-height: 64px;
    margin-bottom: 6px;
    padding: 12px 36px 12px 12px;
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.toastr-card.waiting.flash {
    border: solid 1px rgba(28, 88, 218, 0.5);
    background-color: rgba(18, 73, 144, 0.85);
}
.toastr-card.waiting i {
    border: 2px solid #f3f3f3; 
    border-top: 2px solid #3498db; 
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;

    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin {
    from { -moz-transform: translateY(-50%) rotate(0deg); }
    to { -moz-transform: translateY(-50%) rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: translateY(-50%) rotate(0deg); }
    to { -webkit-transform: translateY(-50%) rotate(360deg); }
}
@keyframes spin {
    from { transform:translateY(-50%) rotate(0deg); }
    to { transform:translateY(-50%) rotate(360deg); }
}

.toastr-card.success.flash {
    border: solid 1px rgba(28, 218, 129, 0.5);
    background-color: rgba(61, 144, 18, 0.85);

    /*-webkit-animation:load_success 0.5s linear;
    -moz-animation:load_success 0.5s linear;
    animation:load_success 0.5s linear;*/
}
@-moz-keyframes load_success {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(28, 218, 129, 0.5);
        background-color: rgba(61, 144, 18, 0.85);
    }
}
@-webkit-keyframes load_success {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(28, 218, 129, 0.5);
        background-color: rgba(61, 144, 18, 0.85);
    }
}
@keyframes load_success {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(28, 218, 129, 0.5);
        background-color: rgba(61, 144, 18, 0.85);
    }
}

.toastr-card.warning.flash {
    border: solid 1px rgba(218, 215, 28, 0.5);
    background-color: rgba(138, 119, 30, 0.85);

    /*-webkit-animation:load_warning 0.5s linear;
    -moz-animation:load_warning 0.5s linear;
    animation:load_warning 0.5s linear;*/
}
@-moz-keyframes load_warning {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(218, 215, 28, 0.5);
        background-color: rgba(138, 119, 30, 0.85);
    }
}
@-webkit-keyframes load_warning {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(218, 215, 28, 0.5);
        background-color: rgba(138, 119, 30, 0.85);
    }
}
@keyframes load_warning {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(218, 215, 28, 0.5);
        background-color: rgba(138, 119, 30, 0.85);
    }
}

.toastr-card.error.flash {
    border: solid 1px rgba(218, 215, 28, 0.5);
    background-color: rgba(183, 36, 11, 0.85);

    /*-webkit-animation:load_error 0.5s linear;
    -moz-animation:load_error 0.5s linear;
    animation:load_error 0.5s linear;*/
}
@-moz-keyframes load_error {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(218, 215, 28, 0.5);
        background-color: rgba(183, 36, 11, 0.85);
    }
}
@-webkit-keyframes load_error {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(218, 215, 28, 0.5);
        background-color: rgba(183, 36, 11, 0.85);
    }
}
@keyframes load_error {
    from { 
        border: solid 1px rgba(28, 88, 218, 0.5);
        background-color: rgba(18, 73, 144, 0.85);
    }
    to { 
        border: solid 1px rgba(218, 215, 28, 0.5);
        background-color: rgba(183, 36, 11, 0.85);
    }
}

.toastr-card i {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
}
.toastr-card span {
    float: left;
    width: 100%;
}
.toastr-card span.status {
    margin: 4px 0;
    font-size: 14px;
}
.toastr-card span.msg {
    margin: 4px 0;
    font-size: 12px;
}

/*
.toastr-card.success i {
    color: rgb(15, 143, 15);
}
.toastr-card.warning i {
    color: rgb(207, 207, 16);
}
.toastr-card.error i {
    color: rgb(196, 44, 44);
}*/