*{
    padding-left: 2px;
    overflow-x: hidden; /* Hide horizontal scrollbar */
     }
   #fffffff {
     font-size: 10px;
     }
     #options {
     padding-left: 3px;
     }
     .nav-link {
       justify-content: space-between;
     }

   .nav-link::after {
       display:block;
       content: '';
       border-bottom: 2px solid #696969;
       transform: scaleX(0);
       transition: transform 250ms ease-in-out;
   }

   .nav-link:hover::after {
       transform: scaleX(1);
   }
   #desc {
       overflow: hidden;
       display: -webkit-box;
       -webkit-line-clamp: 7;
       -webkit-box-orient: vertical;
      
   }

   .ui-autocomplete {
    width: 2px;
  }
  
  html .ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
  }
  
  html .ui-autocomplete > li > div {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857143;
    color: #333333;
    white-space: nowrap;
  }
  
  .ui-state-hover,
  .ui-state-active,
  .ui-state-focus {
    text-decoration: none;
    color: #262626;
    background-color: #e4e4e4;
    cursor: pointer;
  }
  
  
  .ui-helper-hidden-accessible { display:none; }