* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.block--widget {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 820px;
  font-family: Open Sans, sans-serif;
  display: flex;
  position: relative;
}

.text {
  color: #333f48;
}

.text--highlight {
  color: #2e7dad;
  font-weight: 600;
}

footer {
  justify-content: center;
  align-items: center;
  display: flex;
}

.widget-btn {
  color: #2e7dad;
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #2e7dad;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 120px;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  position: relative;
}

.widget-btn .btn__icon {
  margin-left: 8px;
}

.no-results-text {
  text-align: center;
  word-wrap: break-word;
  color: #333f48;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin-top: 30px;
  font-weight: 500;
  display: flex;
}

.no-results-text .search-query {
  color: #2e7dad;
  font-size: 16px;
}

.block--hits {
  min-width: 100%;
}

.block--search-result {
  border-radius: 10px;
  min-width: 100%;
  margin-bottom: 25px;
  padding: 25px;
  transition: all .1s linear;
  box-shadow: 0 3px 7px #0003;
}

.block--search-result .ais-Highlight-highlighted {
  background-color: #e15e554d;
  font-style: normal;
}

.block--search-result .search-result__highlight.service__name {
  color: #2e7dad;
  font-size: 1.125rem;
  font-weight: 500;
}

@media (width >= 767px) {
  .block--search-result .search-result__highlight.service__name {
    font-size: 1.4375rem;
    font-weight: 600;
  }
}

.block--search-result .search-result__highlight.service__name a {
  color: inherit;
  text-decoration: none;
}

.block--search-result .search-result__highlight.service__name a:hover {
  text-decoration: underline;
}

.block--search-result .search-result__highlight.site__link {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.block--search-result .search-result__highlight.site__link a {
  color: inherit;
  margin-left: 5px;
}

.block--search-result .search-result__highlight.description {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5rem;
}

.block--search-result .search-result__highlight.info {
  margin-bottom: 10px;
}

.block--search-result .search-result__highlight.info .info__label {
  font-size: .875rem;
  font-weight: 600;
}

.block--search-result .search-result__highlight.info .info__text {
  font-size: .875rem;
}

.block--search-result .btn__show-more {
  color: #e15e55;
  cursor: pointer;
  background-color: #0000;
  border: none;
  align-items: center;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
}

.block--search-result .btn__show-more .icon {
  margin-right: 5px;
}

.highlighted--hit {
  box-shadow: 0 0 8px 5px #2e7dadcc;
}

.block--search-box {
  border: 2px solid #2e7dad;
  border-radius: 4px;
  grid-template-columns: 25% 75%;
  width: 100%;
  margin-bottom: 20px;
  transition: all .2s linear;
  display: grid;
}

@media (width >= 767px) {
  .block--search-box {
    grid-template-columns: minmax(100px, auto) auto 1fr;
  }
}

.block--search-box:focus-within {
  box-shadow: 0 0 8px 5px #2e7dad80;
}

.block--search-box .search-box__label {
  color: #fff;
  background-color: #2e7dad;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  display: flex;
}

.block--search-box .ais-SearchBox {
  grid-area: 1 / 2 / 2 / 3;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

@media (width >= 767px) {
  .block--search-box .ais-SearchBox {
    grid-area: 1 / 3 / 1 / 4;
  }
}

.block--search-box .ais-SearchBox-form {
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
}

.block--search-box .ais-SearchBox-input {
  border: none;
  order: 1;
  width: 100%;
  height: 100%;
}

.block--search-box .ais-SearchBox-input::placeholder {
  font-style: italic;
}

.block--search-box .ais-SearchBox-submit {
  cursor: pointer;
  background-color: #0000;
  border: 2px solid #2e7dad;
  border-radius: 5px;
  order: 3;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  min-height: 30px;
  margin-left: 10px;
  transition: all .2s linear;
  display: flex;
}

@media (width >= 767px) {
  .block--search-box .ais-SearchBox-submit {
    min-width: 36px;
    min-height: 36px;
  }
}

.block--search-box .ais-SearchBox-submit:hover {
  background-color: #2e7dad;
}

.block--search-box .ais-SearchBox-submit:hover .ais-SearchBox-submitIcon {
  color: #fff;
}

.block--search-box .ais-SearchBox-submitIcon {
  color: #2e7dad;
  width: 16px;
  height: 16px;
  transition: all .2s linear;
}

@media (width >= 767px) {
  .block--search-box .ais-SearchBox-submitIcon {
    width: 22px;
    height: 22px;
  }
}

.block--search-box .ais-SearchBox-reset {
  display: none;
}

.block--search-box input[type="search"]::-ms-clear {
  width: 0;
  height: 0;
  display: none;
}

.block--search-box input[type="search"]::-ms-reveal {
  width: 0;
  height: 0;
  display: none;
}

:is(.block--search-box input[type="search"]::-webkit-search-decoration, .block--search-box input[type="search"]::-webkit-search-cancel-button, .block--search-box input[type="search"]::-webkit-search-results-button, .block--search-box input[type="search"]::-webkit-search-results-decoration) {
  display: none;
}

.block--search-box-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
}

.block--category-links {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .5rem;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
}

.block--category-links .link--category {
  color: #fff;
  text-transform: uppercase;
  background-color: #2e7dad;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.block--filters-wrapper {
  z-index: 2;
  background-color: #fff;
  border: 2px solid #2e7dad;
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 15px 20px 30px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

@media (width >= 767px) {
  .block--filters-wrapper {
    top: -12px;
  }
}

.block--filters-wrapper .filters__heading {
  color: #2e7dad;
  margin-bottom: 30px;
  font-weight: 600;
}

.block--filters-wrapper .btn__close {
  color: #2e7dad;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #2e7dad;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.25rem;
  transition: all .2s linear;
  display: flex;
  position: absolute;
  top: 13px;
  right: 13px;
}

.block--filters-wrapper .btn__close:hover {
  color: #fff;
  background-color: #2e7dad;
}

.block--filters-wrapper .ais-ClearRefinements-button {
  color: #2e7dad;
  background-color: #fff;
  border: 2px solid #2e7dad;
  border-radius: 30px;
  width: 130px;
  height: 35px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s linear;
}

.block--filters-wrapper .ais-ClearRefinements-button:hover {
  color: #fff;
  background-color: #2e7dad;
}

.block--filters-wrapper .ais-ClearRefinements-button:disabled {
  color: #b6b6b6;
  border: 2px solid #b6b6b6;
}

.block--filters-wrapper .ais-ClearRefinements-button:disabled:hover {
  cursor: not-allowed;
  background-color: #0000;
}

.hide--filters {
  display: none;
}

.block--filter-buttons {
  z-index: 5;
  place-items: center;
  row-gap: 25px;
  width: 100%;
  margin-bottom: 40px;
  display: grid;
  position: relative;
}

@media (width >= 880px) {
  .block--filter-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

.block--filter-buttons .filters__buttons-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

@media (width >= 768px) {
  .block--filter-buttons .filters__buttons-container {
    grid-column: 1 / 3;
  }
}

@media (width >= 880px) {
  .block--filter-buttons .filters__buttons-container {
    grid-column: 1 / 2;
  }
}

.block--filter-buttons .filters__buttons-container .slider--icon {
  width: 20px;
}

.block--filter-buttons .filters__buttons-container .btn__map {
  color: #fff;
  background-color: #2e7dad;
  position: relative;
}

@media (width >= 866px) {
  .block--filter-buttons .filters__buttons-container .btn__map {
    margin-left: 10px;
  }
}

.block--filter-buttons .filters__buttons-container .btn__map .marker--icon {
  width: 16px;
}

.block--filter-buttons .filters__buttons-container .btn__map .list--icon {
  width: 20px;
}

.block--filter-buttons .btn--disabled {
  cursor: not-allowed;
}

.block--filter-buttons .filters__switch-btn-wrapper {
  align-items: center;
  margin-left: 10px;
  display: flex;
}

@media (width >= 768px) {
  .block--filter-buttons .filters__switch-btn-wrapper {
    grid-column: 1 / 2;
    justify-content: flex-start;
    width: 100%;
  }
}

@media (width >= 880px) {
  .block--filter-buttons .filters__switch-btn-wrapper {
    grid-column: 2 / 3;
    justify-content: center;
  }
}

.block--filter-buttons .filters__switch-btn-wrapper span {
  color: #2e7dad;
  overflow-wrap: break-word;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
}

.block--filter-buttons .filters__switch-btn-wrapper .widget-switch-btn {
  min-width: 80px;
  margin-left: 6px;
  margin-right: 6px;
}

.block--filter-buttons .filters__switch-btn-wrapper .widget-switch-btn .switch-btn__slider {
  background-color: #2e7dad;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  transition: all .2s;
  position: absolute;
  top: 3px;
  left: 3px;
}

.block--filter-buttons .filters__switch-btn-wrapper .widget-switch-btn .btn--toggle {
  left: 38px;
}

.block--filter-buttons .filters__switch-btn-wrapper .error-message {
  text-align: left;
  z-index: 10;
  background-color: #fff;
  border: 2px solid #2e7dad;
  border-radius: 15px;
  min-width: 300px;
  padding: 10px;
  position: absolute;
  top: 120%;
  left: -150%;
  box-shadow: 0 3px 7px #0003;
}

@media (width >= 768px) {
  .block--filter-buttons .filters__switch-btn-wrapper .error-message {
    left: 0;
  }
}

@media (width >= 880px) {
  .block--filter-buttons .filters__switch-btn-wrapper .error-message {
    left: -150%;
  }
}

.block--filter-buttons .filters__switch-btn-wrapper .error-message__text {
  color: #2e7dad;
  font-size: .875rem;
  font-weight: 600;
  line-height: 18px;
}

.block--filter-buttons .filters__switch-btn-wrapper .error-message__close-btn {
  color: #2e7dad;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #2e7dad;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  transition: all .2s linear;
  display: flex;
}

.block--filter-buttons .filters__switch-btn-wrapper .error-message__close-btn:hover {
  color: #fff;
  background-color: #2e7dad;
}

.block--filter-buttons .filters__stats-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

@media (width >= 768px) {
  .block--filter-buttons .filters__stats-wrapper {
    grid-column: 2 / 3;
    justify-content: flex-end;
  }
}

@media (width >= 880px) {
  .block--filter-buttons .filters__stats-wrapper {
    grid-column: 3 / 4;
  }
}

.block--filter-buttons .filters__stats-wrapper .ais-HitsPerPage {
  position: relative;
}

.block--filter-buttons .filters__stats-wrapper .ais-HitsPerPage .ais-HitsPerPage-select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #0000;
  border: 2px solid #333f48;
  border-radius: 5px;
  height: 45px;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
}

browser support .block--filter-buttons .filters__stats-wrapper .ais-HitsPerPage .ais-HitsPerPage-select::-ms-expand {
  display: none;
}

.block--filter-buttons .filters__stats-wrapper .results__text {
  margin-right: 10px;
  font-size: .875rem;
  font-weight: 600;
}

.block--filter-buttons .filters__stats-wrapper .no-results {
  text-align: center;
}

.block--filter-buttons .block--category-links {
  grid-column: 1 / 4;
}

.block--panels-grid {
  gap: 3px;
  margin-bottom: 15px;
  display: grid;
}

@media (width >= 600px) {
  .block--panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 768px) {
  .block--panels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ais-Panel-header {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  background-color: #333f48;
  border-radius: 20px;
  margin-bottom: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.ais-RefinementList-label {
  align-items: flex-start;
  display: flex;
}

.ais-RefinementList-list {
  grid-template-columns: repeat(2, 1fr);
  place-items: center start;
  display: grid;
}

.ais-RefinementList-list .ais-RefinementList-item {
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 5px;
  display: flex;
}

.ais-RefinementList-list input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: #333f48;
  background-color: #fff;
  border: 2px solid #333f48;
  border-radius: 2px;
  place-content: center;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  display: grid;
}

.ais-RefinementList-list input[type="checkbox"]:before {
  content: "";
  transform-origin: 0 100%;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  width: 10px;
  height: 10px;
  transition: transform .1s ease-in-out;
  transform: scale(0);
  box-shadow: inset 16px 16px #2e7dad;
}

.ais-RefinementList-list input[type="checkbox"]:checked:before {
  transform: scale(1);
}

.ais-RefinementList-list .ais-RefinementList-labelText {
  color: #333f48;
  padding-right: 7px;
  font-size: .875rem;
  font-weight: 600;
}

.ais-RefinementList-list .ais-RefinementList-count {
  display: none;
}

.custom-panel__location-distance .ais-Panel-body {
  padding-left: 6px;
  padding-right: 6px;
}

.custom-panel__location-distance .ais-RefinementList {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.custom-panel__location-distance .ais-RefinementList-list {
  justify-content: flex-start;
  display: flex;
}

.custom-panel__location-distance .ais-RefinementList-labelText {
  padding-right: 0;
}

.custom-panel__location-distance .ais-RefinementList-item {
  margin: 0;
}

.custom-panel__location-distance .ais-RefinementList-label {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  display: flex;
}

.custom-panel__location-distance .ais-RefinementList-label input[type="radio"] {
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: #333f48;
  background-color: #fff;
  border: 2px solid #333f48;
  border-radius: 50%;
  place-content: center;
  width: 20px;
  height: 20px;
  margin: 0;
  display: grid;
}

.custom-panel__location-distance .ais-RefinementList-label input[type="radio"]:before {
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: transform .1s ease-in-out;
  transform: scale(0);
  box-shadow: inset 16px 16px #2e7dad;
}

.custom-panel__location-distance .ais-RefinementList-label input[type="radio"]:checked:before {
  transform: scale(1);
}

.custom-panel__location-distance .miles-text {
  font-size: .875rem;
  font-weight: 600;
}

.custom-panel__location-distance input[type="number"] {
  -moz-appearance: textfield;
  color: #333f48;
  border: 2px solid #333f48;
  border-radius: 2px;
  width: 100%;
  margin-bottom: 3px;
  padding: 6px;
  font-size: .875rem;
  font-weight: 600;
}

:is(.custom-panel__location-distance input::-webkit-outer-spin-button, .custom-panel__location-distance input::-webkit-inner-spin-button) {
  -webkit-appearance: none;
  margin: 0;
}

@media (width >= 600px) {
  .custom-panel__languages {
    grid-column: 1 / 2;
  }
}

@media (width >= 768px) {
  .custom-panel__languages {
    grid-area: 1 / 2 / 4 / 3;
  }

  .custom-panel__who {
    grid-area: 2 / 1 / 2 / 2;
  }
}

.spinner__container {
  width: 120px;
  height: 120px;
  margin-top: 100px;
}

.spinner {
  border: 12px solid #d8d2d2;
  border-right-color: #2e7dad;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1s linear infinite spin;
  display: block;
  position: relative;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fill-loader-1 {
  0% {
    transform-origin: 0 0;
    transform: scaleX(0);
  }

  49% {
    transform-origin: 0 0;
    transform: scaleX(1);
  }

  51% {
    transform-origin: 100% 0;
    transform: scaleX(1);
  }

  100% {
    transform-origin: 100% 0;
    transform: scaleX(0);
  }
}

.ais-Pagination-list {
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.ais-Pagination-item {
  color: #2e7dad;
  border: 2px solid #2e7dad;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 65px;
  margin-left: 6px;
  margin-right: 6px;
  font-size: 1.25rem;
  transition: all .2s linear;
  display: flex;
}

.ais-Pagination-item:hover {
  box-shadow: 0 0 5px 3px #2e7dad80;
}

.ais-Pagination-item--selected {
  color: #fff;
  background-color: #2e7dad;
  border-radius: 3px;
  font-weight: 700;
  position: relative;
}

.ais-Pagination-item--selected:hover {
  box-shadow: none;
}

.ais-Pagination-link {
  color: inherit;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 2px;
  padding-left: 3px;
  padding-right: 3px;
  text-decoration: none;
  display: flex;
}

.ais-Pagination-item--nextPage, .ais-Pagination-item--lastPage, .ais-Pagination-item--previousPage, .ais-Pagination-item--firstPage {
  color: #fff;
  background-color: #2e7dad;
  border-radius: 50%;
  width: 30px;
  min-width: auto;
  height: 30px;
  overflow: hidden;
}

.ais-Pagination-item--nextPage a, .ais-Pagination-item--lastPage a, .ais-Pagination-item--previousPage a, .ais-Pagination-item--firstPage a {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.ais-Pagination-item--disabled {
  display: none;
}

.block--chips-container {
  width: 100%;
}

.block--chips-container .ais-CurrentRefinements-list {
  flex-wrap: wrap;
  height: 100%;
  padding-bottom: 1rem;
  display: flex;
}

.block--chips-container .ais-CurrentRefinements-item {
  flex-wrap: wrap;
  height: 35px;
  display: flex;
}

.block--chips-container .ais-CurrentRefinements-label {
  display: none;
}

.block--chips-container .ais-CurrentRefinements-category {
  color: #fff;
  background-color: #2e7dad;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin-bottom: 5px;
  margin-right: 3px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.block--chips-container .ais-CurrentRefinements-categoryLabel {
  margin-right: 5px;
}

.block--chips-container .ais-CurrentRefinements-delete {
  color: #fff;
  background: none;
  border: none;
}

.block--map-container {
  z-index: -1;
  width: 100%;
  height: 500px;
  margin-bottom: 40px;
  position: absolute;
  top: 0;
}

.show--map {
  z-index: 1;
  position: relative;
}

.block--map-info-window {
  flex-direction: column;
  padding: 5px;
  font-size: 1rem;
  display: flex;
}

.block--map-info-window .info-window__site-name {
  margin-bottom: 5px;
  font-weight: 600;
}

.block--map-info-window .info-window__address {
  font-weight: 400;
}

.block--map-info-window .info-window__services-container {
  margin-top: 15px;
}

.block--map-info-window .info-window__services-label {
  font-weight: 600;
}

.block--map-info-window ul {
  margin-top: 10px;
}

.block--map-info-window li {
  margin-bottom: 5px;
}

.block--map-info-window a {
  color: #2e7dad;
  font-weight: 400;
}

.radio-btn__container {
  border-top: 2px solid #2e7dad;
  grid-column: 1 / 3;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 50px;
  display: flex;
}

@media (width >= 767px) {
  .radio-btn__container {
    border: none;
    grid-area: 1 / 2 / 1 / 3;
    justify-content: flex-start;
  }
}

.radio-btn__label {
  align-items: center;
  margin-left: 10px;
  font-weight: 600;
  display: flex;
}

.radio-btn__checkbox {
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: #333f48;
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  place-content: center;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  display: grid;
}

.radio-btn__checkbox:before {
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: transform .1s ease-in-out;
  transform: scale(0);
  box-shadow: inset 15px 15px #2e7dad;
}

.radio-btn__checkbox:checked:before {
  transform: scale(1);
}

.field--title {
  align-items: center;
  column-gap: 1.25rem;
  width: 100%;
  margin-bottom: 1.25rem;
  display: flex;
}

.field--title h1 {
  font-size: 2.25rem;
  line-height: 3.125rem;
}

.field--title span {
  margin-top: .1875rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/*# sourceMappingURL=index.b8f2222b.css.map */
