@-webkit-keyframes snackbar {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    10% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    90% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    99.9%, to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes snackbar {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    10% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    90% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    99.9%, to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.snackbar {
    z-index: 100000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 88px;
    padding: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-animation: snackbar 4s linear;
    animation: snackbar 4s linear;
}
.snackbar.hide {
    z-index: -1;
    display : none;
}
.bar.bar-dark {
    border-color: #111;
    background-color: #281200;
    background-image: none !important;
    color: #fff;
}
.input-wrapper {
    display: flex;
    -webkit-box-flex: 1;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    flex-direction: inherit;
    -webkit-box-align: inherit;
    align-items: inherit;
    align-self: stretch;
    text-overflow: ellipsis;
    padding-top: 12px;
    padding-bottom: 12px;
    overflow: hidden;
    flex: 1 1 0%;
}
.fz-12 {
    font-size: 12px !important;
}
