﻿#toastContainer {
    position: absolute;
    right: 10px;
    top: 110px;
    padding: 18px;
    padding-right: 36px;
    min-height: 18px;
    min-width: 200px;
    font-weight: bold;
    color: white;
}

    #toastContainer.info {
        background-color: #00ADEF;
    }

    #toastContainer.success {
        background-color: #339900;
    }

    #toastContainer.failure {
        background-color: #CC0000;
    }

    #toastContainer .toastClose {
        top: 10px;
        position: absolute;
        right: 10px;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        background: transparent;
        border: 0;
        text-shadow: 0 1px 0 #fff;
        opacity: .5;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        text-shadow: 0 1px 0 #fff;
        opacity: .5;
        cursor: pointer;
    }