#toast-container {
    display: block;
    position: fixed;
    z-index: 10000; 
}

@media only screen and (max-width : 600px) {
    #toast-container {
        min-width: 100%;
        bottom: 0%; 
    } 
}
@media only screen and (min-width : 601px) and (max-width : 992px) {
    #toast-container {
        min-width: 30%;
        left: 5%;
        right: 5%;
        bottom: 7%; 
    }
}
@media only screen and (min-width : 993px) {
    #toast-container {
        min-width: 8%;
        top: 10%;
        right: 7%;
        left: 7%; 
    } 
}

.toast {
    border-radius: 2px;
    top: 0;
    width: auto;
    clear: both;
    margin-top: 10px;
    position: relative;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    line-height: 1.8em;
    word-break: break-all;
    background-color: #323232;
    padding: 10px 25px;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    box-shadow:0 1px 2px rgba(0,0,0,.2);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between; 
    text-align:center;
}
.toast.rounded { border-radius: 24px; }

@media only screen and (max-width : 600px) {
    .toast {
        width: 100%;
        border-radius: 0; 
    } 
}
@media only screen and (min-width : 601px) and (max-width : 992px) {
    .toast { float: left; } 
}
@media only screen and (min-width : 993px) {
    .toast { float: right; } 
}


.toast.error { background:#EE6E73; }
.toast.ok { background:#26a69a; }
.toast.info { background:#333; }