.result-tab {
  white-space: nowrap; overflow:hidden; width:100%; margin-bottom:15px; box-shadow: -1px 10px 10px 0px rgba(99,99,99,0.07); border-top: 1px solid var(--line-color);
  ul {
    overflow-y:auto; -ms-overflow-style: none;  scrollbar-width: none;    
    &::-webkit-scrollbar {
    display: none;
    }
    li {
      display:inline-block; padding: 18px 10px; font-size:1.4rem; position:relative; font-weight:400;cursor:pointer; transition:color .3s ease;margin-right:15px;
      &.select-categ,
      &:hover:not(.disabled-categ) {color:var(--main-color);}
      &.select-categ {
        font-weight:700;
      }
      > img {
        vertical-align: middle; width: 15px; height: 15px; margin-right: 5px;
      }
      &.select-categ:after {
        position:absolute;bottom:0px; left:2px; width:100%; background:var(--main-color); height:3px; content:'';z-index:2
      }
      &.disabled-categ {
        color:#b0b0b0; cursor:no-drop;
      }
    }
  }
}


@media(max-width:768px) {
  .result-tab {
    ul {
      li {font-size:1.4rem;}
    }
  }
}


@media(max-width:500px) {
  .result-tab {
    ul {
      li {
        font-size:1.3rem; margin-right:5px; padding:15px 10px
      }
    }
  }
}
