  /*! purgecss start ignore */
  
  .filter-box {
  max-width: 500px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: -25px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 35px 40px rgba(93, 93, 93, 0.06);
  z-index:20;
  position: relative;
}

.filter-box.larger {
  max-width: 500px;
}

.filter-box-bottom {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .05);
  border-radius: 8px;
  align-content: space-around;
  justify-content: space-between;
  display: flex;
}

.filter-box-top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  flex-direction: row;
  justify-content: center;
  display: flex;
}

#page-container {
    position: relative; /* Set position to relative for the parent container */
  }
  
  
  #search-input-container {
    position: relative; /* Use relative positioning for the search input container */
  }
  
  #search-input, .languageSelect {
    padding: 10px;
    width: 100%;
    border:none;
    padding-left: 20px;
    border-radius: 0px 8px 8px 0px;
    margin-top:0px;
    font-size:16px;
    line-height: 24px ;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    font-family: Inter, sans-serif;
    color:#6b7280;
  }


 .languageSelect {
    padding: 10px;
    width: auto;
    border:none;
    padding-left: 10px;
    padding-right: 4px;
    border-radius: 8px 0px 0px 8px;
    margin-top:0px;
    color:#fff;
    font-weight: 600;
    font-size: 14px;
    background-image: linear-gradient(to right, #fe813a, #ffaf48);
  }

  .languageSelect option {

    color:#6b7280;
  }

  .languageSelect:hover {
    cursor:pointer;
  }

  #search-input:focus-visible {
    outline:none;
  }
  
  #results-container {
    position: absolute;
    top: 100%; /* Position results container below search container */
    left: 50%; /* Position results container in the middle horizontally */
    transform: translateX(-50%); /* Center the container */
    width: 100%; /* Set the same width as the search input */
    max-height: 500px; /* Set maximum height for the results box */
    overflow-y: auto; /* Add vertical scrollbar if needed */
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff; /* Add background color to separate from the content */
    box-shadow: 4px 0 6px -4px rgba(0, 0, 0, .1), 0 10px 15px -3px rgba(0, 0, 0, .1), 0 0 0 1px rgba(0, 0, 0, .05);
    z-index: 3; /* Set a higher z-index to bring the results box to the foreground */
    display: none; /* Initially hide the results box */
    border-radius:8px;

  }
  
  .article {
    padding: 10px;
    border-bottom: 1px solid #EDEDED;
    padding-top: 7px;
  }
  
  .desc {
    font-size: 14px;
    color:#73729C;
    font-family: Inter, sans-serif;
    text-decoration: none;
    text-align: left;
    padding:0;
    margin-bottom: 0;
  }
  
  .matched, .matched-parent > a {
    font-weight: 600;
    font-size: 16px;
    color:#201E62;
    font-family: Inter, sans-serif;
    text-decoration: none;
    text-align: left;
    padding:0;
  }
  
  .matched-parent > a:hover {
    color: #fe813a;
  }
  
  .matched-parent{
    margin-top:0;
    margin-bottom:0;
    padding:0;
  }
  
  .matched {
    color: #fe813a;
  }
  
  .info-title{
    font-weight: 600;
    font-size: 16px;
    color:#fff;
    font-family: Inter, sans-serif;
    padding-left: 15px;
    background-color:#fe813a;
    margin-left:-15px;
    margin-right:-15px;
    margin-top:0;
    margin-bottom:0;
  }
  
  .no-results {
    font-style: italic;
    color: #706f99;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Inter, sans-serif;
    font-size: 16px;
  }
  
  .paragraph-3::placeholder {
    color: #706f99;
    margin-bottom: 0;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 24px;
  }
  
  .image-2, .search{
    position: absolute;
    right:16px;
    top:13px;
  }

/*! purgecss end ignore */