#snackbar, .snackbar {
    visibility: hidden;
    width: 33%;
    min-width: 250px;
    /*margin-left: -125px;*/
    /*background-color: #333;*/
    background-color: rgba(0,0,0,0.65);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 100000;
    left: 33%;
    right: 33%;
    bottom: 30px;
    font-size: 13px;
    font-family: inherit;
}
    .fa-question-circle {
        font-size: 21px !important;
    }

    #snackbar.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }
    #snackbar.hidden {
        visibility: hidden;
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

    #x-closebutton-snackbar {
        position: absolute;
        background: white;
        color: gray;
        top: 3px;
        right: 3px;
        font-size: 10px;
        font-weight: 500;
        border: 1px solid;
        border-radius: 4px !important;
    }
    @media screen and (max-width: 600px) {
        #snackbar, .snackbar {
            width: 80%;
            min-width: 250px;
            /*margin-left: -125px;*/
            left: 10%;
            right: 10%;
            bottom: 30px;
            font-size: 13px;
            font-family: inherit;
        }
   
    }
@media screen and (max-width: 800px) and (orientation: landscape) {
    #snackbar, .snackbar {
        width: 80%;
        min-width: 250px;
        /*margin-left: -125px;*/
        left: 10%;
        right: 10%;
        bottom: 30px;
        font-size: 13px;
        font-family: inherit;
    }
}



@-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;}
    }