

*:focus {
    outline: 0 !important;
}




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

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

.snackbar > div {
    width: 500px;
    height: 60px;
    background: #555;
    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%;
}

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

.snackbar button:nth-child(2) {
    width: 40px;
    height: 40px;
    margin-top: 10px;
    background: #2d2d2d;
	background: #4d4d4d;
    border-radius: 50%;
    transition: all .5s linear 0s;
}

.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: 60px;
    color: #fff;
    float: left;
    line-height: 60px;
    text-indent: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.snackbar.action .text {
    width: calc(100% - 160px);
}

.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: -100px
    }
    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: -100px
    }
}