body {
  background-color: #FFF;
}
.ai-search {
  max-width: 944px;
  margin: 0 auto;
  padding: 40px 20px;
}
.ai-search.empty {
  display: flex;
  flex-direction: column;
  height: 95vh;
}
.ai-search .hero-section {
  position: relative;
  margin-bottom: 32px;
  padding-top: 80px;
  padding-right: 340px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ai-search .hero-section {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.ai-search .hero-section h1 {
  margin-bottom: 32px;
  text-align: left;
  font-size: 30px;
  font-weight: 400;
}
.ai-search .hero-section .hero-illustration {
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
  background-image: url('../img/kid-with-laptop.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
@media (max-width: 767px) {
  .ai-search .hero-section .hero-illustration {
    position: static;
    float: right;
    width: 120px;
    height: 120px;
    margin-left: 16px;
  }
}
@media (max-width: 767px) {
  .ai-search .hero-section .ai-search-form {
    clear: both;
  }
}
.ai-search .hero-section .hero-subheader {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: bold;
  color: #2A2C2E;
}
.ai-search .error {
  margin-top: 20px;
  color: red;
}
.ai-search .notice {
  margin-top: 20px;
}
.ai-search section.no-results-error {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 100px;
}
.ai-search section.no-results-error .sticker {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .ai-search section.no-results-error .sticker {
    width: 60px;
    height: 60px;
  }
}
.ai-search .results-layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 30px;
}
.ai-search .results-layout .results {
  flex: 1;
  min-width: 0;
}
.ai-search .results-layout .results .result-count {
  margin-bottom: 16px;
  font-size: 14px;
  color: #788491;
}
.ai-search .results-layout .results-map-col {
  flex-shrink: 0;
  width: 340px;
  position: sticky;
  top: 20px;
}
.ai-search .results-layout .results-map {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .ai-search .results-layout {
    flex-direction: column;
  }
  .ai-search .results-layout .results-map-col {
    order: -1;
    width: 100%;
    position: static;
  }
  .ai-search .results-layout .results-map {
    display: none;
  }
}
.ai-search div.place {
  margin-bottom: 16px;
  border-bottom: 1px solid #D9DCE0;
  background: #FFF;
  padding: 16px;
  transition: all 120ms ease-out;
  overflow: hidden;
}
.ai-search div.place .image-wrapper ~ * {
  margin-left: 156px;
}
@media (max-width: 767px) {
  .ai-search div.place .image-wrapper ~ * {
    margin-left: 0;
  }
}
.ai-search div.place .image-wrapper {
  position: relative;
  float: left;
}
.ai-search div.place .photo {
  width: 140px;
  height: 140px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .ai-search div.place .photo {
    width: 100px;
    height: 100px;
  }
}
.ai-search div.place .info-wrapper {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .ai-search div.place .info-wrapper {
    min-height: 100px;
    margin-left: 108px;
  }
}
.ai-search div.place h2 {
  margin-bottom: 4px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .ai-search div.place h2 {
    word-wrap: break-word;
    font-size: 18px;
  }
}
.ai-search div.place p.place-location {
  margin-bottom: 6px;
  font-size: 12px;
  color: #788491;
}
.ai-search div.place .place-badges {
  clear: none;
  margin-top: 0;
  margin-bottom: 16px;
}
.ai-search div.place .place-badges:last-child {
  margin-bottom: 0;
}
.ai-search div.place .description-wrapper {
  margin-bottom: 16px;
}
.ai-search div.place .description-wrapper .description + .quote {
  margin-top: 16px;
}
.ai-search div.place .description,
.ai-search div.place .quote {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #56595D;
}
.ai-search div.place .quote {
  font-style: italic;
}
.ai-search div.place .quote:before {
  content: '\201C';
  vertical-align: middle;
  margin-right: 2px;
  line-height: 12px;
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  color: #AFB5BC;
}
.ai-search div.place div.program-wrapper {
  margin-top: 8px;
}
.ai-search div.place div.program {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-top: 12px;
  padding-right: 8px;
  padding-bottom: 12px;
  padding-left: 16px;
  border: 1px solid #5DCFFF;
  border-radius: 6px;
  transition: all 120ms ease-out;
}
.ai-search div.place div.program:hover {
  box-shadow: 0 4px 16px 0 rgba(93, 207, 255, 0.4);
  transform: scale(1.01);
  cursor: pointer;
}
.ai-search div.place div.program:hover h3 {
  font-weight: bold;
  color: #005F89;
}
.ai-search div.place div.program h3 {
  margin-bottom: 0;
}
.ai-search div.place div.program .badges {
  margin-top: 0;
  margin-bottom: 0;
}
.ai-search div.place div.program .description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex-basis: 100%;
  padding-top: 8px;
  line-height: 18px;
}
.ai-search div.place a.program-link {
  text-decoration: none;
}
.ai-search div.place div.more-programs {
  margin-top: 8px;
}
.ai-search div.place div.more-programs p {
  font-size: 14px;
  color: #56595D;
}
.ai-search div.place div.more-programs a {
  text-decoration: underline;
  color: #007EB5;
}
.ai-search div.place div.more-programs a:first-of-type {
  margin-left: 3px;
}
.ai-search div.place div.more-programs a:hover {
  color: #005F89;
}
.ai-search div.place .contact-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  font-size: 14px;
  color: #56595D;
}
.ai-search div.place .contact-wrapper .btn-submit {
  border-radius: 8px;
}
.ai-search-form .search-label {
  margin-bottom: 8px;
  color: #2A2C2E;
}
.ai-search-form .search-box {
  border: 2px solid #D9DCE0;
  border-radius: 16px;
  background-color: #FFF;
  box-shadow: 0 12px 28px 0 rgba(23, 28, 33, 0.12);
}
.ai-search-form .search-box:hover,
.ai-search-form .search-box:focus-within {
  border-color: #0DAEF2;
  box-shadow: 0 4px 4px 0 rgba(0, 187, 255, 0.25), 0 12px 28px 0 rgba(23, 28, 33, 0.12);
}
.ai-search-form .search-textarea-wrapper {
  position: relative;
}
.ai-search-form .search-input {
  width: 100%;
  padding-top: 16px;
  padding-right: 60px;
  padding-bottom: 16px;
  padding-left: 16px;
  background-color: transparent;
  font-size: 16px;
  resize: none;
}
.ai-search-form .search-input:focus {
  outline: none;
}
.ai-search-form .search-input[readonly] {
  padding-left: 27px;
  padding-top: 20px;
  color: #788491;
  font-weight: bold;
  cursor: default;
}
.ai-search-form .btn-search-icon {
  position: absolute;
  display: flex;
  top: 50%;
  right: 12px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: all 120ms ease-out;
  color: #56595D;
  transform: translateY(-50%);
}
.ai-search-form .btn-search-icon .material-icons {
  font-size: 20px;
}
.ai-search-form .btn-search-icon:hover {
  color: #007EB5;
}
.ai-search-form .btn-search-icon:disabled {
  color: #D9DCE0;
  cursor: default;
}
.ai-search-form .search-progress {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 300ms ease, opacity 200ms ease;
}
.ai-search-form .search-progress.is-visible {
  max-height: 180px;
  opacity: 1;
}
.ai-search-form .search-progress-steps {
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
}
.ai-search-form .search-progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #AFB5BC;
}
.ai-search-form .search-progress-step .step-icon {
  font-size: 20px;
  color: #AFB5BC;
}
.ai-search-form .search-progress-step.active {
  color: #007EB5;
  font-weight: bold;
}
.ai-search-form .search-progress-step.active .step-icon {
  color: #007EB5;
  animation: step-icon-pulse 1.2s ease-in-out infinite;
}
.ai-search-form .search-progress-step.done {
  color: #007EB5;
}
.ai-search-form .search-progress-step.done .step-icon {
  color: #007EB5;
}
@media (max-width: 767px) {
  .ai-search-form textarea.search-input {
    min-height: 100px;
  }
}
.ai-search-form .search-box .search-input {
  border: none;
  border-radius: 16px;
  box-shadow: none;
}
.ai-search-form .search-box .search-input:-webkit-autofill,
.ai-search-form .search-box .search-input:-webkit-autofill:hover,
.ai-search-form .search-box .search-input:-webkit-autofill:focus,
.ai-search-form .search-box .search-input:autofill {
  -webkit-box-shadow: 0 0 0 1000px #FFF inset;
  -webkit-text-fill-color: #2A2C2E;
}
.ai-search-form .search-box:has(.search-progress.is-visible) textarea.search-input {
  padding-bottom: 8px;
}
@keyframes step-icon-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
