body.sessions-live-search-open {
  overflow: hidden;
}

.sessions-live-search {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7vh 20px 32px;
  background: rgba(17, 17, 17, 0.82);
  opacity: 0;
  transition: opacity 180ms ease-out;
}

.sessions-live-search[hidden] {
  display: none;
}

.sessions-live-search.is-open {
  opacity: 1;
}

.sessions-live-search__panel {
  width: min(760px, 100%);
  max-height: min(780px, 86vh);
  display: flex;
  flex-direction: column;
  background: #fbfaf8;
  color: #171514;
  border: 1px solid rgba(23, 21, 20, 0.18);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.32);
}

.sessions-live-search__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(23, 21, 20, 0.1);
}

.sessions-live-search__head h2 {
  margin: 0;
  color: #171514;
  font-family: Campton-Medium, Helvetica, Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sessions-live-search__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(23, 21, 20, 0.18);
  border-radius: 50%;
  background: #f1efeb;
  color: #171514;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.sessions-live-search__close:hover,
.sessions-live-search__close:focus {
  border-color: #ec665f;
  outline: none;
}

.sessions-live-search__field {
  display: block;
  padding: 18px 24px 12px;
}

.sessions-live-search__label {
  display: block;
  margin-bottom: 8px;
  color: #615b56;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sessions-live-search__field input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 2px solid #171514;
  border-radius: 0;
  background: #fffcf8;
  color: #171514;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  outline: none;
  -webkit-appearance: none;
}

.sessions-live-search__field input:focus {
  border-color: #ec665f;
  box-shadow: 0 0 0 3px rgba(236, 102, 95, 0.22);
}

.sessions-live-search__field input::placeholder {
  color: #8a837d;
}

.sessions-live-search__status {
  min-height: 20px;
  padding: 0 24px 10px;
  color: #615b56;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

.sessions-live-search__results {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 0 14px 12px;
}

.sessions-live-search__group {
  padding: 8px 0 12px;
}

.sessions-live-search__group h3 {
  margin: 0;
  padding: 8px 10px 7px;
  color: #ec665f;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sessions-live-search__item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 9px 10px;
  color: #171514;
  text-decoration: none;
  border: 1px solid transparent;
}

.sessions-live-search__item:hover,
.sessions-live-search__item:focus,
.sessions-live-search__item.is-active {
  border-color: rgba(236, 102, 95, 0.55);
  background: rgba(236, 102, 95, 0.08);
  outline: none;
}

.sessions-live-search__thumb {
  width: 58px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #171514;
  color: #fbfaf8;
  font-family: Campton-Medium, Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.sessions-live-search__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.sessions-live-search__thumb--empty {
  height: 58px;
  background: #2a2623;
}

.sessions-live-search__thumb--image {
  min-height: 0;
  background: transparent;
}

.sessions-live-search__copy {
  min-width: 0;
  display: block;
}

.sessions-live-search__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #615b56;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sessions-live-search__title {
  display: block;
  color: #171514;
  font-family: Campton-Medium, Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.sessions-live-search__meta {
  display: block;
  margin-top: 5px;
  color: #615b56;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sessions-live-search__all {
  display: block;
  align-self: stretch;
  margin: 0 24px 22px;
  min-width: 110px;
  padding: 15px 22px;
  border: #0092d3 1px solid;
  border-radius: 40px;
  background: #0092d3;
  color: #fff;
  font-family: "Campton-Medium", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: lighter;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s 0;
}

.sessions-live-search__all:hover,
.sessions-live-search__all:focus {
  border-color: #007fba;
  background: #007fba;
  color: #fff;
  outline: none;
}

.sessions-live-search__skeleton {
  height: 76px;
  margin: 10px;
  background: linear-gradient(90deg, #efede9 0%, #f8f5f0 45%, #efede9 100%);
  background-size: 220% 100%;
  animation: sessions-live-search-pulse 900ms ease-in-out infinite;
}

.sessions-live-search__skeleton--short {
  width: 72%;
}

@keyframes sessions-live-search-pulse {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sessions-live-search,
  .sessions-live-search__skeleton {
    animation: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .sessions-live-search {
    padding: 0;
    align-items: stretch;
    border-radius: 0 !important;
  }

  .sessions-live-search__panel {
    width: 100%;
    max-height: none;
    min-height: 100vh;
    border: 0;
    border-radius: 0 !important;
  }

  .sessions-live-search__close {
    border-radius: 0 !important;
  }

  .sessions-live-search__head {
    padding: 18px 18px 12px;
  }

  .sessions-live-search__head h2 {
    font-size: 24px;
  }

  .sessions-live-search__field {
    padding: 16px 18px 10px;
  }

  .sessions-live-search__field input {
    min-height: 54px;
    font-size: 18px;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
  }

  .sessions-live-search__field input:focus {
    box-shadow: none;
    outline: 2px solid #ec665f;
    outline-offset: 0;
  }

  .sessions-live-search__status {
    padding-right: 18px;
    padding-left: 18px;
  }

  .sessions-live-search__results {
    padding-right: 8px;
    padding-left: 8px;
  }

  .sessions-live-search__item {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 70px;
    gap: 12px;
  }

  .sessions-live-search__thumb {
    width: 50px;
    min-height: 50px;
  }

  .sessions-live-search__thumb--empty {
    height: 50px;
  }

  .sessions-live-search__title {
    font-size: 17px;
  }

  .sessions-live-search__meta {
    white-space: normal;
  }

  .sessions-live-search__all {
    margin-right: 18px;
    margin-left: 18px;
  }
}

.sessions-search-page__form {
  margin-bottom: 26px;
}

.sessions-search-page__group {
  margin: 0 0 34px;
}

.sessions-search-page__group h2 {
  margin: 0 0 14px;
  color: #ec665f;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.sessions-search-page__list {
  border-top: 1px solid rgba(23, 21, 20, 0.14);
}

.sessions-search-page__result {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  color: #171514;
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 21, 20, 0.14);
}

.sessions-search-page__result:hover,
.sessions-search-page__result:focus {
  color: #171514;
  outline: none;
}

.sessions-search-page__result:hover .sessions-search-page__title,
.sessions-search-page__result:focus .sessions-search-page__title {
  color: #ec665f;
}

.sessions-search-page__thumb {
  width: 76px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #171514;
  color: #fbfaf8;
  font-family: Campton-Medium, Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.sessions-search-page__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.sessions-search-page__thumb--empty {
  height: 76px;
  background: #2a2623;
}

.sessions-search-page__thumb--image {
  min-height: 0;
  background: transparent;
}

.sessions-search-page__copy {
  min-width: 0;
  display: block;
}

.sessions-search-page__label {
  display: block;
  margin-bottom: 5px;
  color: #615b56;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.sessions-search-page__title {
  display: block;
  color: #171514;
  font-family: Campton-Medium, Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.sessions-search-page__meta {
  display: block;
  margin-top: 6px;
  color: #615b56;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .sessions-search-page__result {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .sessions-search-page__thumb {
    width: 58px;
    min-height: 58px;
    font-size: 22px;
  }

  .sessions-search-page__thumb--empty {
    height: 58px;
  }

  .sessions-search-page__title {
    font-size: 18px;
  }
}
