@-webkit-keyframes "load4" {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em gray;
  }
  40% {
    box-shadow: 0 2.5em 0 0 #FFF;
  }
}

@keyframes "load4" {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em gray;
  }
  40% {
    box-shadow: 0 2.5em 0 0 #FFF;
  }
}

hr {
  border-top: none;
}

html.overflow {
  overflow-y: hidden;
}

#searchresults .overlay-content {
  position: relative;
  margin: 20px 0px;
}

#searchresults 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;
}

#searchresults input.searchfield::placeholder {
  color: #2D2E2F;
  opacity: 1;
}

#searchresults input.searchfield:-ms-input-placeholder {
  color: #2D2E2F;
}

#searchresults input.searchfield::-ms-input-placeholder {
  color: #2D2E2F;
}

#searchresults input.searchfield:focus {
  border: 1px solid #00B0F0;
}

#searchresults .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%;
}

#searchresults .select-btn .btn-text {
  font-size: 17px;
  font-weight: 400;
  color: #333;
}

#searchresults .select-btn .arrow-dwn {
  display: flex;
  color: #00B0F0;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

#searchresults .select-btn.open .arrow-dwn {
  transform: rotate(-180deg);
}

#searchresults .select-btn.open ~ .list-items {
  display: block;
}

#searchresults .list-items {
  position: relative;
  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;
}

#searchresults .list-items .item {
  display: flex;
  align-items: center;
  list-style: none;
  height: 35px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 15px;
  border-radius: 5px;
}

#searchresults .list-items .item:hover {
  background-color: #e7edfe;
}

#searchresults .list-items .item .item-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

#searchresults .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;
}

#searchresults .list-items .item.checked .checkbox {
  background-color: #4070f4;
  border-color: #4070f4;
}

#searchresults 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;
}

#searchresults button.filterbtn:hover {
  background-color: #003977;
}

#searchresults ul.resultsfilter {
  margin-left: 0px;
  margin-bottom: 25px;
  float: left;
  width: 100%;
  border-bottom: 2px solid #DFE6E9;
  padding-bottom: 15px;
}

#searchresults ul.resultsfilter::before {
  display: inline-block;
  content: 'Filter:';
  color: #00B0F0;
  float: left;
  margin-right: 30px;
  font-size: 1rem;
  font-weight: 700;
}

#searchresults ul.resultsfilter li {
  list-style-type: none;
  float: left;
  margin-right: 30px;
}

#searchresults ul.resultsfilter li a {
  color: #003977;
  text-decoration: underline;
}

#searchresults .sr-item {
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

#searchresults .sr-item span.sr-term {
  font-weight: 700;
}

#searchresults .sr-item h4.sr-title {
  font-size: 1rem;
  margin-bottom: 5px;
}

#searchresults .sr-item h4.sr-title a {
  color: #00B0F0;
  font-size: 1rem;
  text-decoration: underline;
  cursor: pointer;
  font-weight: normal;
}

#searchresults .sr-item h4.sr-title a:hover {
  font-weight: 700;
}

#searchresults .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;
}

#searchresults .sr-item p.sr-snippet {
  font-style: oblique;
  margin: 0px 0px 3px 0px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.9rem;
}

#searchresults .sr-item a.sr-link {
  color: #B2B8BA;
  font-size: 0.9rem;
  display: block;
}

#searchresults .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 {
  overflow-y: none !important;
  margin: 4rem 0 0 0 !important;
  border-radius: none !important;
  position: absolute;
  max-height: 226px;
  overflow-y: scroll;
  box-sizing: border-box;
  left: 0;
  right: 0;
  margin: 0.5rem 0 0 0;
  padding: 0;
  z-index: 1;
  list-style: none;
  border-radius: 0.6rem;
  background-color: #fff;
  border: 1px solid rgba(33, 33, 33, 0.07);
  box-shadow: 0 3px 6px rgba(149, 157, 165, 0.15);
  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: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: #ff7a7a;
  font-weight: bold;
}

.autoComplete_wrapper > ul > li:hover {
  cursor: pointer;
  background-color: rgba(255, 122, 122, 0.15);
}

.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: rgba(255, 122, 122, 0.8);
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

.autoComplete_wrapper > input:hover::placeholder {
  color: rgba(255, 122, 122, 0.6);
  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: 0.95rem;
  color: rgba(255, 122, 122, 0.4);
}

.autoComplete_wrapper > input:focus::selection {
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > input::selection {
  background-color: rgba(255, 122, 122, 0.15);
}

.autoComplete_wrapper > ul[hidden] {
  display: block;
  opacity: 0;
  transform: scale(0);
}

.loader4 {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load4 1.8s infinite ease-in-out;
  animation: load4 1.8s infinite ease-in-out;
  margin: 8em auto;
  font-size: 20px;
  position: relative;
  text-indent: -9999em;
  -webkit-animation-delay: 0.16s;
  animation-delay: 0.16s;
}

.loader4:before {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load4 1.8s infinite ease-in-out;
  animation: load4 1.8s infinite ease-in-out;
  left: -3.5em;
  content: "";
  position: absolute;
  top: 0;
}

.loader4:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load4 1.8s infinite ease-in-out;
  animation: load4 1.8s infinite ease-in-out;
  left: 3.5em;
  -webkit-animation-delay: 0.32s;
  animation-delay: 0.32s;
  content: "";
  position: absolute;
  top: 0;
}

.adjust {
  min-height: 60px;
  height: auto;
}

.mt {
  margin-top: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  #searchoverlay {
    top: 138px;
  }
}

@media only screen and (max-width: 600px) {
  .autoComplete_wrapper > input {
    width: 18rem;
  }
}
