/* Add to docs */
#scrolling{/*frame*/
    display:none;
    
    position:relative;
    

    background:#243334;/*FF473D*/
    height:50px;
    width:100%;

    overflow: hidden;
 z-index:50;}

#scrolling ul {
    /*Add if you want to disable the option of selecting the text while sliding*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    margin: 0;
    padding: 0;
    position: absolute;
    
    /*top:10%;*/
    width:100%;
    height:100%;
    
    list-style-type: none;

    -webkit-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

#scrolling ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:1em;/*cool*/
    float: left;
    min-width:100px !important; 
    
    height: 100%;
    color: #000;
    font-weight: 300;
    text-align: center;
    
    
    -webkit-transform:  scale(0.95);
    -ms-transform:  scale(0.95);
    -moz-transform:  scale(0.95);
    transform: scale(0.95);
}
#scrolling ul li a{
    color: #fff; padding:10px 20px;
    
    }
#scrolling ul li a:hover{color: #2b97a8;}
.itemslide-active
{/*applied to current active item*/
    -webkit-transform:  scale(1);
    -ms-transform:  scale(1);
    -moz-transform:  scale(1);
    transform: scale(1);
}

@media screen and (max-width:1200px){
    
    #scrolling{display:block; height: 40px;}
    #scrolling ul li{width: 200px;!important}
}
@media screen and (max-width:760px){
    
    
    #scrolling ul li{width: 150px;}
}



@media screen and (max-width:460px){
    #scrolling ul li{width: 100px;}
    #scrolling ul li a{
    color: #fff; padding:5px 10px;
    
    }
}