.sentence-builder-container {
  padding-top: 64px;
  width: 100%;
  box-sizing: border-box;
}

.sentence-builder-container p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 54px;
  font-weight: 700;
  gap: 8px;
}

.sentence-builder-container button {
  font-size: 54px;
  outline-width: 0;
  cursor: pointer;
  max-height: min-content;
  background: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 16px;
  padding-right: 16px;
}

.flex-sentence {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}

.flex-sentence>span {
  text-wrap: nowrap;
  display: flex;
  flex-wrap: nowrap;
}

.full-screen-list {
  z-index: 30;
  position: absolute;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 32px;
  box-sizing: border-box;
  animation: fade-in 0.2s ease-in;
  border: none;
  color: #24272C;
  background-color: #F4F3EA;
}

.fade-out {
  animation: fade-out 1s ease-in;
}

.full-screen-list>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.full-screen-list ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  justify-content: center;
  list-style: none;
}

.full-screen-list li {
  text-align: center;
  font-size: 32px;
  cursor: pointer;
  font-weight: 400;
  padding-top: 8px;
  padding-bottom: 8px;
}

.close-icon {
  display: flex;
  justify-content: end;
  align-items: center;
  cursor: pointer;
}

.close-button {
  border: none;
  background: none;
  color: white;
}

.selected-label {
  text-wrap: nowrap;
  font-weight: 700;
}

.other-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.other-location>button {
  border: none;
  background: none;
}

.other-location>button>img {
  height: 32px;
  width: 32px;
}

.sentence-builder-container span {
  text-wrap: nowrap;
}

.full-screen-list input {
  font-size: 24px;
  background: #0000000D;
  border: 2px solid #0000001A;
  border-radius: 8px;
  display: flex;
  align-items: center;

  &::placeholder {
    color: #00000080;
  }
}

.improve-next-visit-cta {
  font-family: "SF Pro Rounded";
  font-weight: 600;
  font-size: 18px;
  font-style: normal;
  line-height: 100%;
  text-align: center;
  text-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
}

.search-location-container {
  padding-bottom: 30px;
  text-align: center;
}

.search-location-container span {
  font-size: 14px;
  flex-shrink: 1;
  width: min-content;
  font-weight: 700;
}

.search-location {
  font-weight: 600 !important;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .sentence-builder-container {
    padding-top: 0;
  }

  .sentence-builder-container p {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .sentence-builder-container button,
  .sentence-builder-container p {
    font-size: 28px;
  }

  .flex-sentence-stack {
    flex-direction: column;
  }

  .search-location-container {
    padding-bottom: 22px;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
