@media all and (min-width: 800px) {
    #revolver-icon{
    display: none;
}    
}

@media all and (max-width: 800px) {

    .open-sidebar {
        position: absolute!important;
        top: 0%;
        padding: 0.3em;
        min-width: 300px;
        border: 1px solid #1b1a1a;
        background-color: #fff;
        z-index: 999!important;
        left: -100%;
        -webkit-animation: slide 0.5s forwards;
        -webkit-animation-delay: 0s;
        animation: slide 0.5s forwards;
        animation-delay: 0s;
    }
    @-webkit-keyframes slide {
        100% {
            left: 0;
        }
    }
    @keyframes slide {
        100% {
            left: 0;
        }
    }
    .closed-sidebar {
        display: none;
    }
    .sidebar-rev {
        font-size: 1.5em;
        position: fixed;
        z-index: 999999;
        bottom: 2%;
        left: 50%;
        transform: translate(-50%, 0);
        color: #1b1a1a;
        background-color: #ffffff;
        /*display: inline-block;*/
        border-radius: 50px;
        box-shadow: 0px 0px 2px #1b1a1a;
        border: 1px solid #1b1a1a;
        width: auto;
        height: auto;
        padding: 0.1em 0.1em;
    }
}