.cb-scout{
  width:100%;
  margin:0;
  padding: 5px;
  z-index:1000;
  ul{
    list-style-type:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:row;
    justify-content: center;
    flex-wrap:wrap;
    li{
      flex-grow:0;
      padding:3px;
      a{
        padding:10px;
        transition: all 300ms ease;
        text-align:center;
        display:block;
      }
    }
  }
  &--sticky{
    position: fixed;
    top: 0;
    left:0;
    z-index:1000;
    width:100%;
    ul{
      position:relative;
      margin: 0 auto;
    }
  }
  &--sticky--mobile{
    position: fixed;
    top: 0;
    left:0;
    z-index:1000;
    width:100%;
    ul{
      position:relative;
      margin: 0 auto;
    }
  }
  &--mobile-icon{
    width:100%;
    display: none;
    text-align: left;
    padding:5px;
  }
  
  &--placeholder{
    width:100%;
    height:0;
  }
} 