.ffe-osm-panel,
.ffe-osm-right {
  display: flex;
  width: 100%;
}
@media (min-width: 901px) {
  .ffe-osm-panel,
  .ffe-osm-right {
    width: 50%;
  }
}

.ffe-osm-locator {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-base);
  color: var(--color-white);
  z-index: var(--depth-locator);
  height: calc(-196px + 100vh);
  max-height: calc(-196px + 100vh);
}
@media (min-width: 900px) {
  .ffe-osm-locator {
    flex-direction: row;
  }
}
.ffe-osm-locator .ffe-osm-panel {
  flex-direction: column;
}
@media (min-width: 750px) {
  .ffe-osm-locator .ffe-osm-panel {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 749px) {
  .ffe-osm-locator .ffe-osm-panel {
    flex-direction: column;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form {
  position: relative;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar {
  display: flex;
  align-items: center;
  padding-left: 1.125rem;
  background-color: var(--color-base-light);
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar {
    padding-right: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar {
    padding-left: 2.25rem;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .icon-search {
  display: block;
  fill: var(--color-white);
  height: 1.5rem;
  width: 1.5rem;
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .icon-search {
    height: 1.75rem;
    width: 1.75rem;
  }
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .wrapper {
    margin-left: auto;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 1.5rem 0.5rem;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  transition: opacity var(--speed-morph) var(--motion);
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle {
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle {
    padding: 1.5rem;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-base);
  transform-origin: bottom center;
  transform: translateY(100%);
  transition: transform 250ms var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle .icon-caret,
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle .icon-filter {
  fill: none;
  stroke: currentColor;
  margin: 0.125em 0 0 0.75em;
  transition: transform var(--speed-morph) var(--motion);
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle.active {
  z-index: 2;
  opacity: 1;
  background-color: var(--color-base);
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle.active::before {
  transform: translateY(0);
  transition: transform 300ms var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle.active .icon-caret {
  transform: rotate(-180deg);
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .toggle:last-child {
    padding-right: 1.875rem;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar .icon-caret {
  height: 0.75rem;
  width: 0.75rem;
}
@media (max-width: 899px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar + .link {
    display: none;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .input-inline {
  flex-grow: 1;
  padding: 0 0 0 0.75rem;
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  color: var(--color-white);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .input-inline:focus {
  outline: 0;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .input-inline::placeholder {
  color: currentColor;
  opacity: 0.5;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .input-inline::-webkit-search-cancel-button {
  display: none;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .input-inline {
    max-width: 50%;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .search {
  cursor: pointer;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .bar + .link,
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags + .link {
    display: none;
  }
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .flyout .link {
    display: none;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 2.25rem;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--depth-locator);
    flex-wrap: nowrap;
    padding: 1.125rem 1.5rem;
    background-color: var(--color-base-o90);
    overflow-x: scroll;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags .tag {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.375rem;
  padding: 0.28125rem 0.75rem 0.28125rem 0.5625rem;
  background-color: var(--color-white);
  border-radius: 0.9375rem;
  color: var(--color-base);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--speed-morph) var(--motion);
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags .tag:last-child::after {
    content: "";
    display: block;
    position: absolute;
    right: -1.5rem;
    width: 1.5rem;
    height: 1px;
  }
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags .tag {
    display: inline-flex;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags .tag {
    margin: 0 0.375rem 0.375rem 0;
  }
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags .tag:hover {
  opacity: 1;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form .tags .icon-close {
  stroke: var(--color-base);
  stroke-width: 3;
  height: 0.625em;
  width: 0.625em;
  margin-left: 0.5625rem;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form #osmSuggestions {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  padding: 0.3rem 2.25rem;
  background-color: white;
  cursor: pointer;
  z-index: 100;
  border-bottom: 1px solid var(--color-base);
  border-right: 1px solid var(--color-base);
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form #osmSuggestions .suggestion-item {
  color: black;
  padding: 0.1rem 0rem;
  border-bottom: 1px solid #666;
  border-bottom-style: dotted;
}
.ffe-osm-locator .ffe-osm-panel .ffe-osm-form #osmSuggestions .suggestion-item:last-child {
  border: none;
}
.ffe-osm-locator .ffe-osm-panel article.flyout {
  display: none;
  overflow: auto;
  position: absolute;
  top: 64px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  flex-direction: column;
  background-color: var(--color-base);
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel article.flyout {
    z-index: 5;
  }
}
.ffe-osm-locator .ffe-osm-panel article.flyout.active {
  z-index: 6;
}
.ffe-osm-locator .ffe-osm-panel article .filters {
  position: relative;
  padding: 0.75rem 2.25rem;
  overflow: auto;
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel article .filters {
    padding: 0.75rem 2.25rem;
  }
}
.ffe-osm-locator .ffe-osm-panel article .filters h4 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel article #osmLabels .link {
    margin-top: 0;
    margin-right: 0;
  }
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels .options {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel article #osmLabels .options {
    column-count: 2;
  }
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels li + li {
  display: flex;
  margin-top: 1.125rem;
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels input[type=checkbox] {
  cursor: pointer;
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels input[type=checkbox]:checked + label {
  opacity: 1;
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels input[type=checkbox]:checked + label::before {
  background: var(--color-white);
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels label {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1.5;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  transition: opacity var(--speed-morph) var(--motion);
  opacity: 0.7;
  cursor: pointer;
}
.ffe-osm-locator .ffe-osm-panel article #osmLabels .footer {
  margin-top: 3rem;
  text-align: center;
  cursor: pointer;
}
.ffe-osm-locator .ffe-osm-panel article .count {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-base);
  height: 1.5em;
  width: 1.5em;
  border-radius: 50%;
  margin-left: 0.625em;
  font-weight: 700;
  font-size: 90%;
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel article .count {
    display: none;
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button {
  display: inline-block;
  position: relative;
  margin: 1.5rem auto;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button .collapse {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button .collapse .toggle a {
    flex-grow: 1;
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button .collapse .toggle .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    height: 1.125rem;
    width: 1.125rem;
    box-sizing: border-box;
    color: currentColor;
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button .collapse .toggle .icon .icon-plus {
    height: 0.625rem;
    width: 0.625rem;
    stroke-width: 1;
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button .collapse .toggle .icon::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid currentColor;
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button .collapse .toggle h4 {
    display: flex;
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: opacity var(--speed-morph) var(--motion);
}
.ffe-osm-locator .ffe-osm-panel article .link-button a {
  display: block;
  background-color: var(--color-base-light);
  border-radius: 0.3125rem;
  padding: 1.3125rem 4.875rem 1.3125rem 1.5rem;
  color: var(--color-white);
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button a {
    transition: color var(--speed-morph) var(--motion), background-color var(--speed-morph) var(--motion);
  }
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button a:hover {
    background-color: var(--color-white);
    color: var(--color-base-light);
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button a:hover ~ .icon {
    transform: translateX(15%) translateY(-50%);
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button a:hover ~ .icon::before {
    background-color: var(--color-base-light);
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button a:hover ~ .icon .icon-chevron-right {
    stroke: var(--color-base-light);
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button .icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  padding: 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
  will-change: transform;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button .icon {
    transition: transform var(--speed-morph) var(--motion);
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button .icon::before {
  content: "";
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0.1;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button .icon::before {
    transition: background-color var(--speed-morph) var(--motion);
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button .icon .icon-chevron-right {
  fill: none;
  display: block;
  stroke: var(--color-white);
  stroke-width: 1.5;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button .icon .icon-chevron-right {
    transition: stroke var(--speed-morph) var(--motion);
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button.outline a {
  background-color: transparent;
  color: var(--color-base-light);
}
.ffe-osm-locator .ffe-osm-panel article .link-button.outline a::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border: 2px solid var(--color-base-light);
  border-radius: inherit;
}
.ffe-osm-locator .ffe-osm-panel article .link-button.outline .icon::before {
  background-color: var(--color-base-light);
}
.ffe-osm-locator .ffe-osm-panel article .link-button.outline .icon .icon-chevron-right {
  stroke: var(--color-base-light);
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel article .link-button.same a:hover {
    background-color: var(--color-base-light);
    color: var(--color-white);
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button.same a:hover ~ .icon::before {
    background-color: var(--color-white);
  }
  .ffe-osm-locator .ffe-osm-panel article .link-button.same a:hover .icon-chevron-right {
    stroke: var(--color-white);
  }
}
.ffe-osm-locator .ffe-osm-panel article .link-button.disabled {
  pointer-events: none;
  opacity: 0.125;
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active {
  transition: opacity 340ms var(--motion-in), transform 340ms var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(1) {
  transition: opacity 300ms 0.02s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(2) {
  transition: opacity 300ms 0.04s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(3) {
  transition: opacity 300ms 0.06s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(4) {
  transition: opacity 300ms 0.08s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(5) {
  transition: opacity 300ms 0.1s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(6) {
  transition: opacity 300ms 0.12s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(7) {
  transition: opacity 300ms 0.14s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(8) {
  transition: opacity 300ms 0.16s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(9) {
  transition: opacity 300ms 0.18s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(10) {
  transition: opacity 300ms 0.2s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(11) {
  transition: opacity 300ms 0.22s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(12) {
  transition: opacity 300ms 0.24s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(13) {
  transition: opacity 300ms 0.26s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(14) {
  transition: opacity 300ms 0.28s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(15) {
  transition: opacity 300ms 0.3s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(16) {
  transition: opacity 300ms 0.32s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(17) {
  transition: opacity 300ms 0.34s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(18) {
  transition: opacity 300ms 0.36s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(19) {
  transition: opacity 300ms 0.38s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter-active li:nth-child(20) {
  transition: opacity 300ms 0.4s var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active {
  transition: opacity 290ms var(--motion-out), transform 290ms var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(20) {
  transition: opacity 300ms 0.4s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(19) {
  transition: opacity 300ms 0.38s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(18) {
  transition: opacity 300ms 0.36s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(17) {
  transition: opacity 300ms 0.34s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(16) {
  transition: opacity 300ms 0.32s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(15) {
  transition: opacity 300ms 0.3s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(14) {
  transition: opacity 300ms 0.28s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(13) {
  transition: opacity 300ms 0.26s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(12) {
  transition: opacity 300ms 0.24s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(11) {
  transition: opacity 300ms 0.22s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(10) {
  transition: opacity 300ms 0.2s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(9) {
  transition: opacity 300ms 0.18s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(8) {
  transition: opacity 300ms 0.16s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(7) {
  transition: opacity 300ms 0.14s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(6) {
  transition: opacity 300ms 0.12s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(5) {
  transition: opacity 300ms 0.1s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(4) {
  transition: opacity 300ms 0.08s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(3) {
  transition: opacity 300ms 0.06s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(2) {
  transition: opacity 300ms 0.04s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-leave-active li:nth-child(1) {
  transition: opacity 300ms 0.02s var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter,
.ffe-osm-locator .ffe-osm-panel article .list-leave-to {
  opacity: 0;
  transform: translateY(0.75rem);
}
.ffe-osm-locator .ffe-osm-panel article .list-enter li,
.ffe-osm-locator .ffe-osm-panel article .list-leave-to li {
  opacity: 0;
}
.ffe-osm-locator .ffe-osm-panel article .flyout-enter-active {
  transition: opacity 340ms var(--motion-in), transform 340ms var(--motion-in);
}
.ffe-osm-locator .ffe-osm-panel article .flyout-leave-active {
  transition: opacity 290ms var(--motion-out), transform 290ms var(--motion-out);
}
.ffe-osm-locator .ffe-osm-panel article .flyout-enter,
.ffe-osm-locator .ffe-osm-panel article .flyout-leave-to {
  opacity: 0;
  transform: translateY(-0.75rem);
}
@media (min-width: 1200px) {
  .ffe-osm-locator .ffe-osm-panel article .flyout-enter,
  .ffe-osm-locator .ffe-osm-panel article .flyout-leave-to {
    transform: translateY(0.75rem);
  }
}
.ffe-osm-locator .ffe-osm-panel .results {
  position: relative;
  flex-grow: 1;
  overflow: auto;
  padding: 1.5rem 1.125rem 1.125rem;
  background-color: var(--color-base);
  border-radius: 0.5rem 0.5rem 0 0;
  box-sizing: border-box;
  counter-reset: club;
}
@media (max-width: 899px) {
  .ffe-osm-locator .ffe-osm-panel .results {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    pointer-events: auto;
    z-index: 4;
    transform: translateY(101%);
    transition: transform 200ms var(--motion-out);
  }
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel .results {
    padding: 0.75rem 2.25rem 2.25rem;
    height: 500px;
  }
}
@media (max-width: 899px) {
  .ffe-osm-locator .ffe-osm-panel .results.open {
    top: 0;
    z-index: 6;
    transform: translateY(0);
    transition: transform 250ms var(--motion-in);
  }
}
.ffe-osm-locator .ffe-osm-panel .results .cards {
  margin: 0.75rem 0 0 0;
  padding: 0;
  list-style-type: none;
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card {
  position: relative;
  margin-top: 0.3rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  box-sizing: border-box;
  padding: 1.3125rem 1.3125rem 1.3125rem 2.625rem;
  color: rgb(54, 54, 54);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  word-wrap: break-word;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel .results .cards .card {
    padding: 1.5rem 1.5rem 1.5rem 4.125rem;
    counter-increment: club;
    font-size: 0.9375rem;
  }
  .ffe-osm-locator .ffe-osm-panel .results .cards .card::before {
    content: counter(club) ".";
    position: absolute;
    left: 0;
    width: 3.75rem;
    font-size: 1.25rem;
    color: var(--color-base);
    text-align: right;
    letter-spacing: 0.025em;
  }
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card p {
  margin: 0.25em 0 0 0;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel .results .cards .card p {
    margin-top: 0.75em;
  }
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card .title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-base);
  padding-right: 1.875rem;
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card small {
  font-size: 60%;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel .results .cards .card small {
    font-size: 1.25rem;
  }
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card .address {
  text-transform: capitalize;
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card .icon-tag {
  height: 22px;
  width: 22px;
  position: absolute;
  top: 1.125rem;
  right: 1.5rem;
  fill: var(--color-base);
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card small {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card.selected {
  background-color: var(--color-base-burn);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-dp5);
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card.labeled::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.25rem;
  background-color: var(--color-error);
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card.labeled .title {
  padding-right: 1.875rem;
}
.ffe-osm-locator .ffe-osm-panel .results .cards .card.labeled a {
  transition: color var(--speed-control) var(--motion);
  cursor: pointer;
}
@media (min-width: 900px) {
  .ffe-osm-locator .ffe-osm-panel .results .cards .card.labeled a:hover {
    color: var(--color-base);
  }
}
.ffe-osm-locator .ffe-osm-panel .loader {
  display: flex;
  justify-content: center;
}
.ffe-osm-locator .ffe-osm-panel .loader svg {
  width: 100px;
}
.ffe-osm-locator .ffe-osm-map {
  height: 100%;
  flex-grow: 1;
  position: relative;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .ffe-osm-map {
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0px;
  }
}
.ffe-osm-locator .link {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
  color: var(--color-white);
}
@media (max-width: 1199px) {
  .ffe-osm-locator .link {
    align-self: flex-start;
    display: flex;
    height: 40px;
    color: var(--color-white);
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .ffe-osm-locator .link {
    display: block;
    text-align: right;
    margin-top: 1rem;
    margin-right: 2rem;
    padding-right: 2rem;
  }
}
.ffe-osm-locator .buttons {
  display: flex;
  position: absolute;
  z-index: 1000;
  top: 3rem;
  right: 1.125rem;
}
@media (min-width: 901px) {
  .ffe-osm-locator .buttons {
    display: none;
  }
}
@media (max-width: 1199px) {
  .ffe-osm-locator .buttons {
    margin-top: 1.3125rem;
  }
}
@media (min-width: 1200px) {
  .ffe-osm-locator .buttons {
    top: 2.625rem;
    right: 2.625rem;
  }
}
.ffe-osm-locator .buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  padding: 0.625em;
  background-color: var(--color-white);
  border-radius: 50%;
}
.ffe-osm-locator .buttons .button svg {
  display: block;
  height: 1.125rem;
  width: 1.125rem;
}
.ffe-osm-locator .buttons .button .icon-close {
  stroke: var(--color-base);
  stroke-width: 2;
}
.ffe-osm-locator .buttons .button .icon-panel {
  fill: var(--color-base);
}
.ffe-osm-locator .buttons .button .icon-panel:not(.active) {
  display: none;
}
.ffe-osm-locator .buttons .button .icon-panel.active {
  display: block;
}
@media (max-width: 1199px) {
  .ffe-osm-locator .buttons .button {
    margin-left: 0.375rem;
  }
}
.ffe-osm-locator .buttons .switch {
  box-shadow: var(--shadow-dp3);
}
@media (min-width: 1200px) {
  .ffe-osm-locator .buttons .switch {
    display: none;
  }
}
.ffe-osm-locator .custom-cluster-icon {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  text-shadow: 1px 1px 2px black;
}
.ffe-osm-locator .custom-cluster-icon span {
  position: absolute;
}

.ffe-osm-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: var(--depth-search);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-base-darker-o90);
  overflow: hidden;
}
@media (min-width: 900px) {
  .ffe-osm-modal {
    overflow: auto;
  }
}
.ffe-osm-modal .iframe {
  height: 100vw;
  width: 100vw;
  padding-top: 1.5rem;
  background-color: var(--color-white);
  border: none;
  border-radius: 0.25rem;
}
@media (min-width: 900px) {
  .ffe-osm-modal .iframe {
    padding-top: 0;
    height: 33.125rem;
    width: 43.75rem;
    box-sizing: border-box;
  }
}
.ffe-osm-modal .closeModal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.125rem;
  left: 50%;
  z-index: 1;
  padding: 1em;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  box-sizing: border-box;
  opacity: 1;
  color: white;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
}
.ffe-osm-modal .closeModal .icon-close {
  color: white;
  stroke: currentColor;
  stroke-width: 2;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: -webkit-transform var(--speed-morph) var(--motion);
  transition: transform var(--speed-morph) var(--motion);
  transition: transform var(--speed-morph) var(--motion), -webkit-transform var(--speed-morph) var(--motion);
  cursor: pointer;
}

@media (max-width: 750px) {
  .display-flex-mobile {
    display: flex;
  }
}
@media (min-width: 750px) {
  .display-flex-mobile {
    display: none;
  }
}

@media (min-width: 750px) {
  .display-flex-tablet {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .display-flex-tablet {
    display: none;
  }
}

@media (max-width: 1199px) {
  .display-flex-desktop {
    display: none;
  }
}
@media (min-width: 1200px) {
  .display-flex-desktop {
    display: flex;
  }
}

/*# sourceMappingURL=OsmMap.css.map */
