.toast-title {
    font-weight: bold;
    display: none;
}
.toast-message {
    font-size: 1rem;
    margin-left: 32px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.toast-message a,
.toast-message label {
    color: #323234;
}
.toast-message a:hover {
    color: #cccccc;
    text-decoration: none;
}
.toast-close-button {
    padding: 12px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: 26px;
    color: #656569;
    height: 46px;
    line-height: 0.7;
}
.toast-close-button:hover { 
    color: #323234;
}
/*Additional properties for button version
iOS requires the button element instead of an anchor tag.
If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
    /* padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none; */
}
.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-left {
    top: 12px;
    left: 12px;
}
.toast-top-right {
    top: 12px;
    right: 12px;
}
.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}
.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}
#toast-container {
    position: fixed;
    z-index: 999999;
    /*overrides*/

}
#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#toast-container > div {
    position: relative;
    overflow: hidden;
    margin: 0 0 20px;
    padding: 0.75rem 1rem;
    box-shadow: 0px 3px 16px 2px rgba(0, 0, 0, 0.12), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 5px 6px -3px rgba(0, 0, 0, 0.2);
    color: #323234;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
}
#toast-container > .toast::before {
        background-image: none !important;
        /* width: 2rem; */
        /* height: 2rem; */
        display: inline-block;
        font: normal normal normal 1em/1 'icons3m';
        speak: none;
        text-transform: none;
        /* Better Font Rendering */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 22px;
        float: left;
    }
#toast-container > .toast-info::before {
    content: "\ea11";
    color: #098AB9;
}
#toast-container > .toast-error::before {
    color:  #FF0000;
    content: "\ea0d";
}
#toast-container > .toast-success::before {
    content: "\ea01";
    color: #00941C;
}
#toast-container > .toast-warning::before {
    content: "\ea18";
    color: #F26700;
}
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.toast {
    border: 0;
    border-radius: 0 !important;
    background-color: #E0F7FF;
    border-left: 8px solid #098AB9;
}
.toast-success {
    background-color: #E3F7E8;
    border-color: #00941C;
}
.toast-error {
    background-color: #FFDBDB;
    border-color: #FF0000;
}
.toast-info {
    background-color: #E0F7FF;
    border-color: #098AB9;
}
.toast-warning {
    background-color: #FEF1E6;
    border-color: #F26700;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
}

/*Responsive Design*/
@media all and (max-width: 240px) {
    #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
    }
    #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
    }
}
@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
    padding: 8px 8px 8px 16px;
    width: 18em;
    }
    #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
    }
}
@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
    padding: 15px 15px 15px 16px;
    width: 25em;
    max-width: 900px !important;
    }
}
