﻿
/* 2dp elevation modified*/
.z-depth-1,
nav,
.card-panel,
.card,
.toast,
.btn,
.btn-large,
.btn-small,
.btn-floating,
.dropdown-content,
.collapsible,
.sidenav {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .12), 0 1px 5px 0 rgba(0, 0, 0, .2);
}

#toast-container {
    position: fixed;
    z-index: 10000;
    display: block;
}

@media only screen and (max-width: 600px) {
    #toast-container {
        bottom: 0;
        min-width: 100%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 992px) {
    #toast-container {
        bottom: 7%;
        left: 5%;
        max-width: 90%;
    }
}

@media only screen and (min-width: 993px) {
    #toast-container {
        top: 10%;
        right: 7%;
        max-width: 86%;
    }
}

.toast {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.5em;
    position: relative;
    top: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 48px;
    margin-top: 10px;
    padding: 10px 25px;
    cursor: default;
    color: #fff;
    border-radius: 2px;
    background-color: #323232;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .toast .toast-action {
        font-weight: 500;
        margin-right: -25px;
        margin-left: 3rem;
        color: #eeff41;
    }

    .toast.rounded {
        border-radius: 24px;
    }

@media only screen and (max-width: 600px) {
    .toast {
        width: 100%;
        border-radius: 0;
    }
}
