@charset 'UTF-8';
.toast-title
{
    font-weight: 500;
}

.toast-message
{
    -ms-word-wrap: break-word;
        word-wrap: break-word;
}
.toast-message a,
.toast-message label
{
    color: #fff;
}
.toast-message a:hover
{
    text-decoration: none; 

    color: #bdbdbd;
}

.toast-close-button
{
    font-size: 20px;
    font-weight: 300;

    position: relative;
    top: -.3em;
    right: -.3em;

    float: right;

    margin-bottom: -.5em;

    opacity: .8; 
    color: #fff;
            text-shadow: 0 1px 0 white;

    -webkit-text-shadow: 0 1px 0 white;
}
.toast-close-button:hover,
.toast-close-button:focus
{
    cursor: pointer;
    text-decoration: none;

    opacity: .4; 
    color: #000;
}

/*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;

    border: 0;
    background: transparent;

    -webkit-appearance: none;
}

.toast-top-center
{
    top: 12px;
    right: 0;

    width: 100%;
}

.toast-bottom-center
{
    right: 0;
    bottom: 12px;

    width: 100%;
}

.toast-top-full-width
{
    top: 0;
    right: 0;

    width: 100%;
}
.toast-top-full-width .toast
{
    margin-bottom: 0;
}

.toast-bottom-full-width
{
    right: 0;
    bottom: 0;

    width: 100%;
}
.toast-bottom-full-width .toast
{
    margin-bottom: 0;
}

.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;
}

[aria-live='polite']
{
    position: fixed;
    z-index: 1700;

    pointer-events: none;
    /*overrides*/
}
[aria-live='polite'] *
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
[aria-live='polite'] > div
{
    position: relative;

    overflow: hidden;

    width: 300px;
    margin: 0 0 6px;
    padding: 15px 20px;

    pointer-events: auto;

    opacity: .95;
    color: #9e9e9e;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .215rem;
    background-repeat: no-repeat;
    background-position: 15px center;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .16), 0 1px 4px 0 rgba(0, 0, 0, .12);
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .16), 0 1px 4px 0 rgba(0, 0, 0, .12);
}
[aria-live='polite'] > div:hover
{
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .16), 0 2px 8px 0 rgba(0, 0, 0, .12);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .16), 0 2px 8px 0 rgba(0, 0, 0, .12);
}
[aria-live='polite'] > .toast-flat
{
    -webkit-box-shadow: none;
            box-shadow: none;
}
[aria-live='polite'] > .toast-flat:hover
{
    -webkit-box-shadow: none;
            box-shadow: none;
}
[aria-live='polite'] > :hover
{
    cursor: pointer; 

    opacity: 1;
}
[aria-live='polite'] > .toast-success:not(.toast-just-text),
[aria-live='polite'] > .toast-info:not(.toast-just-text),
[aria-live='polite'] > .toast-warning:not(.toast-just-text),
[aria-live='polite'] > .toast-error:not(.toast-just-text)
{
    padding-left: 50px;
}
[aria-live='polite'] > .toast-success:not(.toast-just-text):before,
[aria-live='polite'] > .toast-info:not(.toast-just-text):before,
[aria-live='polite'] > .toast-warning:not(.toast-just-text):before,
[aria-live='polite'] > .toast-error:not(.toast-just-text):before
{
    font-family: 'Material-Design-Iconic-Font';
    font-size: 30px;
    font-weight: 300;
    font-style: normal;

    position: absolute;
    top: 50%;
    left: 12px;

    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
         -o-transform: translate(0, -50%);
            transform: translate(0, -50%); 

    text-rendering: auto;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
[aria-live='polite'] > .toast-success
{
    color: #fff;
}
[aria-live='polite'] > .toast-success:not(.toast-just-text):before
{
    content: '';
}
[aria-live='polite'] > .toast-info
{
    color: #fff;
}
[aria-live='polite'] > .toast-info:not(.toast-just-text):before
{
    content: '';
}
[aria-live='polite'] > .toast-warning
{
    color: #fff;
}
[aria-live='polite'] > .toast-warning:not(.toast-just-text):before
{
    content: '';
}
[aria-live='polite'] > .toast-error
{
    color: #fff;
}
[aria-live='polite'] > .toast-error:not(.toast-just-text):before
{
    content: '';
}
[aria-live='polite'].toast-top-center > div,
[aria-live='polite'].toast-bottom-center > div
{
    width: 300px;
    margin-right: auto; 
    margin-left: auto;
}
[aria-live='polite'].toast-top-full-width > div,
[aria-live='polite'].toast-bottom-full-width > div
{
    width: 100%;
    margin-right: auto;
    margin-left: auto;

    border-radius: 0;
}

.toast
{
    background-color: #e4eaee;
}

.toast-success
{
    background-color: #66bb6a;
}

.toast-error
{
    background-color: #ef5350;
}

.toast-info
{
    background-color: #26c6da;
}

.toast-warning
{
    background-color: #ffa726;
}

.toast-progress
{
    position: absolute;
    bottom: 0;
    left: 0;

    height: 4px;

    opacity: .1; 
    background-color: #000;
}

/*Responsive Design*/
@media all and (max-width: 240px)
{
    [aria-live='polite'] > div
    {
        width: 11em;
    }
    [aria-live='polite'] .toast-close-button
    {
        top: -.2em; 
        right: -.2em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px)
{
    [aria-live='polite'] > div
    {
        width: 18em;
    }
    [aria-live='polite'] .toast-close-button
    {
        top: -.2em; 
        right: -.2em;
    }
}

@media (min-width: 480px) and (max-width: 767px)
{
    [aria-live='polite'] > div
    {
        width: 25em;
    }
}
