.core-alarm-finder {
  overflow: hidden;
  interpolate-size: allow-keywords;
}

.core-alarm-finder .autoComplete_wrapper,
.core-alarm-finder #core-alarm-finder-input {
  width: 100%;
  interpolate-size: allow-keywords;
}

.core-alarm-finder-results {
  margin-top: 32px;
}

.core-alarm-finder .core-alarm-finder-results-item {
    padding: 32px;
    background-color: var(--core-alarm-finder-item-background-color, #fff);
    border: 1px solid var(--core-alarm-finder-item-border-color, #aaa);
    border-radius: var(--core-alarm-finder-item-border-radius, 15px);
    margin-bottom: 16px;
    height: 0;
    opacity: 0;
    scale: 0;
    transform: translateY(100px);
    transition: all 0.3s ease-in;
    transition-behavior: allow-discrete;
}

.core-alarm-finder .core-alarm-finder-results-item .core-alarm-finder-results-item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.core-alarm-finder .core-alarm-finder-results-item[data-show="false"] {
  opacity: 0;
  height: 0;
  scale: 0;
  transform: translateY(100px);
  /* display: none; */
  position: absolute;
  pointer-events: none;
  transition-delay: 0 !important;
}

.core-alarm-finder .core-alarm-finder-results-item[data-show="true"] {
  opacity: 1;
  scale: 1;
  height: auto;
  transform: translateY(0);
  /* display: block; */
  position: relative;
}

.core-alarm-finder .core-alarm-finder-results-item .core-alarm-finder-results-item-location {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.core-alarm-finder .core-alarm-finder-results-item .core-alarm-finder-results-item-content {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.core-alarm-finder .core-alarm-finder-results-item .core-alarm-finder-results-item-link {
  font-size: 1.25rem;
}