﻿#toast-container > div {
    opacity: 0.9;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    filter: alpha(opacity=90);
}

.toast-progress {
    opacity: 0.6;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    filter: alpha(opacity=60);
}

.toast-progress.progress {
    width:100%;
    margin:0;
}

.toast-message > pre.toast-message {
    background-color: transparent;
    border: 0 none transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    overflow: hidden;
    padding: 3px;
    white-space: pre-wrap;
    -ms-word-break: break-all;
    word-break: break-all;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

#toast-container > .toast-info,
#toast-container > .toast-error,
#toast-container > .toast-success,
#toast-container > .toast-warning {    
    background-image:none !important;   
}

#toast-container > .toast-info:before,
#toast-container > .toast-error:before,
#toast-container > .toast-success:before,
#toast-container > .toast-warning:before {        
    position: absolute;
    top: 14px;
    left:15px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size:25px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.toast-success {  
  background-color: #dff0d8;
}

#toast-container > .toast-success:before {
    content: "\e084";
}

#toast-container > .toast-success,
#toast-container > .toast-success .toast-message a,
#toast-container > .toast-success .toast-message label,
#toast-container > .toast-success .toast-close-button {
    color: #3c763d;
}

.toast-error {  
  background-color: #f2dede;
}

#toast-container > .toast-error:before {
    content: "\e083";
}

#toast-container > .toast-error,
#toast-container > .toast-error .toast-message a,
#toast-container > .toast-error .toast-message label,
#toast-container > .toast-error .toast-close-button {
    color: #a94442;
}

.toast-info {  
  background-color: #d9edf7;
}

#toast-container > .toast-info:before {
    content: "\e086";
}

#toast-container > .toast-info,
#toast-container > .toast-info .toast-message a,
#toast-container > .toast-info .toast-message label,
#toast-container > .toast-info .toast-close-button {
    color: #31708f;
}

.toast-warning {  
  background-color: #fcf8e3;
}

#toast-container > .toast-warning:before {
    content: "\e101";
}

#toast-container > .toast-warning,
#toast-container > .toast-warning .toast-message a,
#toast-container > .toast-warning .toast-message label,
#toast-container > .toast-warning .toast-close-button {
    color: #8a6d3b;
}
