/* 
    Document   : snackbar
    Created on : 25 Jul, 2017, 5:19:11 PM
    Author     : Mayurit
    Description:
        Purpose of the stylesheet follows.
*/

#snackbar {
         display: none;
    width: 200px;
    margin-left: -96px;
    color: #ffffff;
    /* background-color: #1a1a1a; */
    /* border-color: #000000; */
    border: 1px solid #c01012;
    background-color: #f89822;
    text-align: center;
    position: fixed;
    z-index: 1500;
    left: 50%;
    bottom: 32%;
    font-family: 'amazon_emberregular';
    padding: 12px;
}


/*#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
        border: 1px solid #c01012;
    background-color: #f89822;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    padding: 10px;
    position: fixed;
    z-index: 1500;
    left: 50%;
    bottom: 60px;
    font-size: 17px;
}*/

/*#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    -moz-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    -ms-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    -o-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}*/

