.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

*:focus {
    outline: 0 !important;
}

body {
    margin: 0
}


/*
==============================================
Snackbar style
==============================================
*/

.snackbar {
    width: 100%;
    height: auto;
    position: fixed;
    bottom: -10px;
    pointer-events: none;
}

.snackbar > div {
    width: auto;
    height: auto;
    background: #ED4337;
    border-radius: 5px;
    pointer-events: auto;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    max-width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.snackbar button {
    float: right;
    margin: 14px;
    height: 30px;
    margin-top: 16px;
    border: none;
    background: transparent;
    color: #ccc;
    border-radius: 5px;
    text-transform: uppercase;
    display: flex;
}

.snackbar-action
{
    order: 2;
}

.snackbar-close-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iZmVhdGhlciBmZWF0aGVyLXgiPjxsaW5lIHgxPSIxOCIgeTE9IjYiIHgyPSI2IiB5Mj0iMTgiPjwvbGluZT48bGluZSB4MT0iNiIgeTE9IjYiIHgyPSIxOCIgeTI9IjE4Ij48L2xpbmU+PC9zdmc+') !important;
    background-size: 18px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    flex-shrink: 0;
    align-self: start;
}

.snackbar-close-btn i
{
    padding: 0px !important;
    margin: 0px !important;
    margin-top: -3px !important;
}

.snackbar button:nth-child(2) {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    background: #2d2d2d;
    border-radius: 50%;
    transition: all .5s linear 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snackbar button:nth-child(3) {
    position: relative;
    left: 20px !important;
}

.snackbar button i {
    vertical-align: middle !important;
    font-size: 20px !important;
}

.snackbar .text {
    width: calc(100% - 90px);
    height: auto;
    color: #fff;
    float: left;
    line-height: 1.5;
    overflow: hidden;
    order: 1;
    padding-left: 5px;
}

.snackbar.action .text {
    width: auto;
}

.bottom {
    bottom: -100px
}


/*.top { top: -100px }*/

.left > div {
    float: left;
    margin-left: 25px
}

.right > div {
    float: right;
    margin-right: 25px
}

.center > div {
    margin: 0px auto
}

@media screen and (max-width: 500px) {
    .left > div,
    .right > div {
        margin-left: 0px;
        margin-right: 0px;
        float: none
    }
    .left > div,
    .right > div {
        margin: 0px auto;
    }
}


/*
==============================================
slideUp Animation
==============================================
*/

.slideUp {
    -webkit-animation: slideUp ease .5s 0s forwards;
    animation: slideUp .5s 0s ease forwards;
}

@-webkit-keyframes slideUp {
    from {
        bottom: -50%
    }
    to {
        bottom: 20px
    }
}


/*
==============================================
slideDown Animation 
==============================================
*/

.slideDown {
    -webkit-animation: slideDown .5s 0s ease forwards;
    animation: slideDown .5s 0s ease forwards;
}

@-webkit-keyframes slideDown {
    from {
        bottom: 20px
    }
    to {
        bottom: -50%
    }
}