/* searchbox.scss */
.search-container {
    width: 100%;
    margin: 20px 0;
    position: relative;
  }
  
  .search-icon {
    position: absolute;
    top: 23px;
    left: 16px;
    display: block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: 1.5;
    color: inherit;
    content: '\f107';
    transition: all 0.3s ease;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    z-index: 1000;
  }
  .article-page #authorized-banks-article-check-hook ~  .lt-article__body ul {
    list-style: none;
    padding: 0 !important;
  }
  .article-page #authorized-banks-article-check-hook ~  .lt-article__body ul li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  .article-page #authorized-banks-article-check-hook ~  .lt-article__body ul li:last-child {
    border-bottom: none;
  }
  
  .fa-search:before {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }
  
  .search-box {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(45, 55, 69, 1);
    width: 100%;
    padding: 10px 20px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  