hr {
  border-top: none;
}

html.overflow {
  overflow-y: hidden;
}

#searchoverlay {
  height: 400px;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 11;
  top: 140px;
  left: 0px;
  background-color: #EFF3F4;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

#searchoverlay .overlay-content {
  position: relative;
  margin: 20px 0px;
}

#searchoverlay input.searchfield {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #DFE6E9;
  background-color: #FFFFFF;
  color: #2D2E2F;
  border-radius: 5px;
  outline: 0;
  height: 55px;
  float: left;
}

#searchoverlay input.searchfield::placeholder {
  color: #2D2E2F;
  opacity: 1;
}

#searchoverlay input.searchfield:-ms-input-placeholder {
  color: #2D2E2F;
}

#searchoverlay input.searchfield::-ms-input-placeholder {
  color: #2D2E2F;
}

#searchoverlay input.searchfield:focus {
  border: 1px solid #00B0F0;
}

#searchoverlay .select-btn {
  display: flex;
  height: 55px;
  align-items: center;
  border: 1px solid #DFE6E9;
  justify-content: space-between;
  padding: 0 16px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #FFFFFF;
  width: 65%;
}

#searchoverlay .select-btn .btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}

#searchoverlay .select-btn .arrow-dwn {
  display: flex;
  color: #00B0F0;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

#searchoverlay .select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}

#searchoverlay .select-btn.open ~ .list-items {
  display: block;
}

#searchoverlay .list-items {
  position: fixed;
  min-width: 360px;
  width: auto;
  margin-top: 10px;
  border-radius: 5px;
  padding: 5px;
  background-color: #FFFFFF;
  border: 1px solid #DFE6E9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  display: none;
  margin-left: 0px;
  margin-bottom: 0px;
}

#searchoverlay .list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 35px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 5px;
}

#searchoverlay .list-items .item:hover {
  background-color: #e7edfe;
}

#searchoverlay .list-items .item .item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

#searchoverlay .list-items .item .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  width: 16px;
  border-radius: 4px;
  margin-right: 12px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease-in-out;
}

#searchoverlay .list-items .item.checked .checkbox {
  background-color: #4070f4;
  border-color: #4070f4;
}

#searchoverlay button.filterbtn {
  float: right;
  background-color: #00B0F0;
  padding: 19px;
  line-height: 1;
  width: 30%;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  border-bottom: 2px solid #003977;
}

#searchoverlay button.filterbtn:hover {
  background-color: #003977;
}

#searchoverlay ul.resultsfilter {
  margin-left: 0px;
  margin-bottom: 25px;
  float: left;
  width: 100%;
  border-bottom: 2px solid #DFE6E9;
  padding-bottom: 15px;
}

#searchoverlay ul.resultsfilter::before {
  display: inline-block;
  content: 'Filter:';
  color: #00B0F0;
  float: left;
  margin-right: 30px;
  font-size: 1rem;
  font-weight: 700;
}

#searchoverlay ul.resultsfilter li {
  list-style-type: none;
  float: left;
  margin-right: 30px;
}

#searchoverlay ul.resultsfilter li a {
  color: #003977;
  text-decoration: underline;
}

#searchoverlay .sr-item {
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

#searchoverlay .sr-item span.sr-term {
  font-weight: 700;
}

#searchoverlay .sr-item h4.sr-title {
  font-size: 1rem;
  margin-bottom: 5px;
}

#searchoverlay .sr-item h4.sr-title a {
  color: #00B0F0;
  font-size: 1rem;
  text-decoration: underline;
  cursor: pointer;
  font-weight: normal;
}

#searchoverlay .sr-item h4.sr-title a:hover {
  font-weight: 700;
}

#searchoverlay .sr-item p.sr-description {
  color: #003977;
  margin: 0px 0px 3px 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9rem;
}

#searchoverlay .sr-item a.sr-link {
  color: #B2B8BA;
  font-size: 0.9rem;
  display: block;
}

#searchoverlay .sr-item a.sr-link:hover {
  font-weight: normal;
}

.checkbox .check-icon {
  color: #fff;
  font-size: 11px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}

.item.checked .check-icon {
  transform: scale(1);
}

.autoComplete_wrapper {
  width: 100%;
  display: inline-block;
  position: relative;
}

.autoComplete_wrapper > ul {
  border-radius: none !important;
  position: absolute;
  height: auto;
  max-height: 220px;
  width: 100%;
  overflow-y: auto !important;
  box-sizing: border-box;
  left: 0;
  right: 0;
  top: 57px;
  padding: 0;
  z-index: 1;
  list-style: none;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #DFE6E9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: opacity 0.15s ease-in-out;
  -moz-transition: opacity 0.15s ease-in-out;
  -webkit-transition: opacity 0.15s ease-in-out;
}

.autoComplete_wrapper > ul p {
  margin: 15px 10px !important;
}

.autoComplete_wrapper > ul:empty {
  display: block;
  opacity: 0;
  transform: scale(0);
}

.autoComplete_wrapper > ul > li {
  margin: 0.3rem;
  padding: 0.3rem 0.5rem;
  text-align: left;
  font-size: 1rem;
  color: #212121;
  border-radius: 0.35rem;
  background-color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.autoComplete_wrapper > ul > li mark {
  background-color: transparent;
  color: #00B0F0;
  font-weight: bold;
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: #e7edfe;
}

.autoComplete_wrapper > ul > li[aria-selected="true"] {
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > input {
  height: 3rem;
  width: 370px;
  margin: 0;
  padding: 0 2rem 0 3.2rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 1rem;
  text-overflow: ellipsis;
  color: rgba(255, 122, 122, 0.3);
  outline: none;
  border-radius: 10rem;
  border: 0.05rem solid rgba(255, 122, 122, 0.5);
  background-image: url(search.svg);
  background-size: 1.4rem;
  background-position: left 1.05rem top 0.9rem;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all -webkit-transform 0.4s ease;
}

.autoComplete_wrapper > input::placeholder {
  color: rgba(255, 122, 122, 0.5);
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:hover {
  color: #e7edfe;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:hover::placeholder {
  color: #e7edfe;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:focus {
  color: #ff7a7a;
  border: 0.06rem solid rgba(255, 122, 122, 0.8);
}

.autoComplete_wrapper > input:focus::placeholder {
  padding: 0.1rem 0.6rem;
  font-size: 1rem;
  color: rgba(255, 122, 122, 0.4);
}

.autoComplete_wrapper > input:focus::selection {
  background-color: #00B0F0;
}

.autoComplete_wrapper > input::selection {
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > ul[hidden] {
  display: block;
  opacity: 0;
  transform: scale(0);
}

@media (min-width: 992px) and (max-width: 1199px) {
  #searchoverlay {
    top: 138px;
  }
}

@media only screen and (max-width: 600px) {
  .autoComplete_wrapper > input {
    width: 18rem;
  }
}
