.mdtoast {
    align-items: center;
    background-color: #323232;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: row;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    justify-content: flex-start;
    outline: none;
    padding: 0 24px;
    pointer-events: auto;
    position: fixed;
    text-align: left;
    touch-action: auto;
    transform: translateY(0);
    transition: transform .23s cubic-bezier(0, 0, .2, 1) 0ms;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    will-change: transform;
    z-index: 100002
}

.mdtoast[data-position="bottom left"] {
    bottom: 24px;
    left: 24px
}

.mdtoast[data-position="bottom center"] {
    bottom: 24px;
    left: 50%;
    transform: translateY(0) translateX(-50%)
}

.mdtoast[data-position="bottom right"] {
    bottom: 24px;
    right: 24px
}

.mdtoast[data-position="top left"] {
    left: 24px;
    top: 24px
}

.mdtoast[data-position="top center"] {
    left: 50%;
    top: 24px;
    transform: translateY(0) translateX(-50%)
}

.mdtoast[data-position="top right"] {
    right: 24px;
    top: 24px
}

.mdtoast .mdt-message {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    margin-left: 0;
    min-height: 48px;
    opacity: 1;
    padding: 8px 0;
    transition: opacity .3s cubic-bezier(.4, 0, 1, 1) 0ms
}

.mdtoast .mdt-message:after {
    content: "";
    font-size: 0;
    min-height: 32px
}

.mdtoast .mdt-action {
    align-items: center;
    background: none;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: #ffeb3b;
    cursor: pointer;
    display: flex;
    font-weight: 500;
    letter-spacing: .07em;
    margin: 0 0 0 24px;
    min-height: 32px;
    opacity: 1;
    outline: none;
    padding: 8px;
    text-decoration: none;
    transition: opacity .3s cubic-bezier(.4, 0, 1, 1) 0ms, background-color .15s linear
}

.mdtoast .mdt-action:focus,
.mdtoast .mdt-action:hover {
    background-color: hsla(0, 0%, 100%, .075)
}

.mdtoast .mdt-action:active {
    background-color: hsla(0, 0%, 100%, .15)
}

.mdtoast.mdt--load {
    transition: transform .23s cubic-bezier(.4, 0, 1, 1) 0ms
}

.mdtoast.mdt--load[data-position*=bottom] {
    transform: translateY(150%)
}

.mdtoast.mdt--load[data-position*=top] {
    transform: translateY(-150%)
}

.mdtoast.mdt--load .mdt-action,
.mdtoast.mdt--load .mdt-message {
    opacity: 0
}

.mdtoast.mdt--interactive {
    padding-right: 16px
}

.mdtoast.mdt--interactive .mdt-message {
    margin-right: auto
}

.mdtoast.mdt--info {
    background-color: #1565c0
}

.mdtoast.mdt--error {
    background-color: #e53935
}

.mdtoast.mdt--warning {
    background-color: #ef6c00
}

.mdtoast.mdt--success {
    background-color: #2e7d32
}

@media (min-width:600px) {
    .mdtoast {
        border-radius: 4px;
        max-width: 568px;
        min-width: 288px
    }

    .mdtoast.mdt--load[data-position="bottom center"] {
        transform: translateY(150%) translateX(-50%)
    }

    .mdtoast.mdt--load[data-position="top center"] {
        transform: translateY(-150%) translateX(-50%)
    }
}

@media (max-width:599px) {
    .mdtoast {
        font-size: 14px;
        left: 0 !important;
        max-width: 100%;
        right: 0 !important;
        transform: translateY(0)
    }

    .mdtoast[data-position*=bottom] {
        bottom: 0;
        transform: translateY(0)
    }

    .mdtoast[data-position*=top] {
        top: 0;
        transform: translateY(0)
    }

    .mdtoast.mdt--load {
        transform: translateY(100%)
    }
}

body.mdtoast--modal {
    pointer-events: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}