
  
  #categoryList {
    padding-bottom: 2rem;
  }
  #categoryList ul{
    width: 100%;
    display: inline-flex;
    overflow: auto;
    padding: 0 0 1.5rem 1rem;
  }
  #categoryList ul li{
    display: inline-block;
    margin-right: 15px;
  }
  
  #categoryList ul li a{
    display: inline-block;
    padding: 5px 15px;
    background: #e4074e;
    color: #fff;
    font-size: 18px;
  border-radius: 2rem;
  font-weight: 400;
  border: 1px solid #e4074e;
  width: max-content;
  }
  
  #categoryList ul li a:focus,#categoryList ul li a:hover{
    background: #ffffff;
    color: #e4074e;
    transition: ease-in;
  }
  
  #categoryList ul li a:hover::after       {
                content: "\f061";
                font-family: "Font Awesome 5 Free";
                font-weight: 600;
                padding-left: 5px;
                float: right;
              }
