/** Overrides toastr AND materialize CSS **/


#toast-container {
    top: 95px;
}

#toast-container > div {
    padding: 15px;
    font-weight: normal;
    font-size: 1em;
}

#toast-container > div:hover {
    opacity: 0.95;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    cursor: default;
}

#toast-container > .toast-info,
#toast-container > .toast-success,
#toast-container > .toast-warning,
#toast-container > .toast-error {
    background-image: none !important;
}


.toast {
    top: 0; /* materialize */
}

/* Overrides materialize */
@media only screen and (min-width: 993px) {
    #toast-container {
        top: 95px;
        right: 30px;
        max-width: 80%;
    }
}

/* Overrides materialize */
@media only screen and (max-width: 992px) and (min-width: 601px) {
    #toast-container {
        top: 95px;
        right: 30px;
        left: initial;
        bottom: initial;
        max-width: 85%;
    }
}

/* Overrides materialize */
@media only screen and (max-width: 600px) {
    #toast-container {
        bottom: initial;
        min-width: initial;
    }
}