@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
.mdtoast {
    position: fixed;
    flex-direction: row;
    justify-content: flex-start;
    right: 24px;
    top: 24px;
    padding: 0 24px;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    text-align: left;
    outline: none;
    pointer-events: auto;
    touch-action: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #323232;
    transform: translateY(0);
    transition: transform 0.23s cubic-bezier(0, 0, 0.2, 1) 0ms;
    will-change: transform;
    z-index: 100002;
}
.mdtoast,
.mdtoast .mdt-message {
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.mdtoast .mdt-message {
    min-height: 48px;
    padding: 8px 0;
    opacity: 1;
    margin-left: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0ms;
}
.mdtoast .mdt-message:after {
    content: "";
    min-height: 32px;
    font-size: 0;
}
.mdtoast .mdt-action {
    display: flex;
    align-items: center;
    color: #ffeb3b;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.07em;
    font-weight: 500;
    padding: 8px;
    margin: 0 0 0 24px;
    opacity: 1;
    min-height: 32px;
    background: none;
    border: none;
    outline: none;
    box-sizing: border-box;
    border-radius: 4px;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1) 0ms,
        background-color 0.15s linear;
}
.mdtoast .mdt-action:focus,
.mdtoast .mdt-action:hover {
    background-color: hsla(0, 0%, 100%, 0.075);
}
.mdtoast .mdt-action:active {
    background-color: hsla(0, 0%, 100%, 0.15);
}
.mdtoast.mdt--load {
    transform: translateY(200%);
    transition: transform 0.23s cubic-bezier(0.4, 0, 1, 1) 0ms;
}
.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 {
        min-width: 288px;
        max-width: 568px;
        border-radius: 4px;
    }
}
@media (max-width: 599px) {
    .mdtoast {
        left: 0;
        top: 0;
        right: 0;
        font-size: 14px;
        max-width: 100%;
        transform: translateY(0);
    }
    .mdtoast.mdt--load {
        transform: translateY(100%);
    }
}
body.mdtoast--modal {
    pointer-events: none;
    touch-action: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
