wc-map .search-results__list, wc-map .search-result__icons {
  margin: 0;
  padding: 0;
  list-style: none;
}

wc-map .result-details__content-scroll, wc-map .search-results__scroll {
  scrollbar-width: none;
}
wc-map .result-details__content-scroll::-webkit-scrollbar, wc-map .search-results__scroll::-webkit-scrollbar {
  display: none;
}

@keyframes pattern-animation {
  from {
    background-position: 0;
  }
  to {
    background-position: 100%;
  }
}

wc-map .result-details__content::after, wc-map .search-results::after, wc-map .result-details__content::before, wc-map .search-results::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 20;
}
wc-map .result-details__content::after, wc-map .search-results::after {
  height: var(--gsf-b, 4rem);
  bottom: 0;
  background: linear-gradient(0deg, var(--white) 0%, rgba(0, 0, 0, 0) 100%);
}
wc-map .result-details__content::before, wc-map .search-results::before {
  height: var(--gsf-t, 4rem);
  top: 0;
  background: linear-gradient(180deg, var(--white) var(--gsf-t-spr, 50%), rgba(0, 0, 0, 0) 100%);
}

wc-map {
  /**
   * Google Map styles
   */
}
wc-map .confirm .btn {
  white-space: nowrap;
}
@media (max-width: 600px) {
  wc-map .confirm .btn {
    text-align: center;
    justify-content: center !important;
  }
  wc-map .confirm .btn .icon {
    display: none;
  }
}
wc-map .search-content {
  position: relative;
  width: 100%;
  transition: height 0.3s var(--ease-out-cubic), transform 0.3s var(--ease-out-cubic), opacity 0.15s var(--ease-out-cubic);
  border-radius: var(--block-radius);
  height: 0;
  opacity: 0;
  background-color: var(--white);
  transform: scale(0.8);
  transform-origin: top center;
  overflow: hidden;
  z-index: 10;
}
wc-map .search-container {
  position: absolute;
  z-index: 20;
  width: calc(100% - 3rem);
  max-width: 50rem;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  wc-map .search-container.is-find-mode {
    position: relative;
    top: 1rem;
  }
}
@media (min-width: 992px) {
  wc-map .search-container {
    width: calc(100% - 6rem);
    top: calc(100% - 51rem);
    max-width: 44rem;
    top: 4rem;
    right: 4rem;
    left: auto;
    transform: none;
  }
}
wc-map .search-container.is-active .search-content {
  height: 48rem;
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 767px) {
  wc-map .search-container.is-active .search-content {
    height: 32rem;
  }
}
@media (min-width: 992px) {
  wc-map .search-container.is-active .search-content {
    height: calc(var(--container-height) - 8rem);
  }
}
wc-map .search-result {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--charcoal-100);
  transition: border-color 0.2s var(--ease-out-cubic);
}
@media (min-width: 992px) {
  wc-map .search-result {
    padding: 2rem 0;
  }
}
wc-map .search-result.is-disabled .result-title {
  opacity: 0.6;
  user-select: none;
}
wc-map .search-result.is-highlighted {
  border: 1px solid var(--orange);
  border-left: 0;
  border-right: 0;
}
wc-map .search-result.is-highlighted .result-title__title, wc-map .search-result.is-highlighted .result-title__address {
  color: var(--orange);
}
wc-map .search-result.is-highlighted .result-title__icon {
  color: hsla(var(--orange-hsl), 0.35);
}
wc-map .search-result::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: calc(100% + 4rem);
  height: 100%;
  top: 50%;
  left: 50%;
  background-color: var(--charcoal-700);
  z-index: -1;
  opacity: 0;
  transform: scale(0.7) translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out-cubic), opacity 0.2s var(--ease-out-cubic);
  transform-origin: top left;
}
@media (min-width: 992px) {
  wc-map .search-result::after {
    border-radius: 2.5rem;
  }
}
wc-map .search-result:last-child {
  border: 0;
}
wc-map .search-result__icons {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
wc-map .search-result__clickable {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
wc-map .search-result__icon {
  margin-right: 2rem;
}
wc-map .search-result__icon:last-child {
  margin: 0;
}
wc-map .search-result__icon-btn {
  position: relative;
  display: block;
  background: none;
  padding: 0;
  border: 0;
  cursor: pointer;
  z-index: 10;
}
wc-map .search-result__icon-btn svg {
  font-size: 1.6rem;
  color: var(--orange);
  transition: fill 0.2s var(--ease-out-cubic);
}
wc-map .search-result__icon-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 100%;
  background-color: var(--orange);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1;
  transition: transform 0.2s var(--ease-out-cubic), opacity 0.15s var(--ease-out-cubic);
  pointer-events: none;
}
wc-map .search-result__icon-btn:hover svg {
  fill: var(--white);
}
wc-map .search-result__icon-btn:hover:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
wc-map .search-result:hover:not(.is-disabled) .result-title__icon {
  transform: translateX(0.4rem);
}
wc-map .search-results {
  --gsf-t: 8rem;
  --gsf-b: 1rem;
  --gsf-t-spr: 80%;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}
@media (min-width: 680px) {
  wc-map .search-results {
    --gsf-b: 6rem;
    --gsf-t: 11rem;
  }
}
wc-map .search-results__scroll {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  z-index: 10;
}
wc-map .search-results__inner {
  padding: var(--gsf-t) 1.6rem var(--gsf-b);
}
@media (min-width: 768px) {
  wc-map .search-results__inner {
    padding: var(--gsf-t) 4rem var(--gsf-b);
  }
}
wc-map .search-results__no-results {
  text-align: center;
  margin: 3.2rem auto 0;
  color: var(--charcoal-700);
}
wc-map .search-results__no-results button {
  margin: 0.8rem auto;
}
wc-map .search-results__continue {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 185px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  z-index: 21;
}
wc-map .search-input {
  position: absolute;
  max-width: 100%;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 20;
  transition: max-width 0.3s var(--ease-out-cubic);
}
@media (min-width: 992px) {
  wc-map .search-input {
    top: 4rem;
  }
}
wc-map .search-input__input {
  transition: 0.3s var(--ease-out-cubic);
  transition-property: background-color, border-color;
}
wc-map .search-input__input::placeholder {
  transition: color 0.3s var(--ease-out-cubic);
  color: var(--charcoal-300);
}
wc-map .search-container.is-active .search-input {
  max-width: calc(100% - 3.2rem);
}
@media (min-width: 47rem) {
  wc-map .search-container.is-active .search-input {
    max-width: 36rem;
  }
}
wc-map .search-container.is-active .search-input__input {
  background-color: var(--charcoal-100);
  border-color: var(--charcoal-100);
}
wc-map .search-container.is-active .search-input__input::placeholder {
  color: var(--charcoal-600);
}
wc-map .search-close {
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0) translate(25%, -25%);
  transition: transform 0.2s var(--ease-out-cubic);
  transform-origin: top right;
  z-index: 40;
}
wc-map .search-close .icon {
  font-size: 1rem;
}
wc-map .search-container.is-active .search-close {
  transition-delay: 0.15s;
  transform: scale(1) translate(25%, -25%);
}
wc-map .result-title__title, wc-map .result-title__address {
  transition: color 0.2s var(--ease-out-cubic);
}
wc-map .result-title__title {
  position: relative;
  display: flex;
  align-items: center;
  font-family: var(--signika-font);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.2rem;
  color: var(--charcoal-700);
  margin: 0 0 0.5rem;
}
wc-map .result-title__title--big {
  font-size: 2.4rem;
  line-height: 3rem;
}
wc-map .result-title__icon {
  color: hsla(var(--charcoal-600-hsl), 0.35);
  font-size: 1rem;
  vertical-align: middle;
  transition: 0.2s var(--ease-out-cubic);
  transition-property: transform, color;
}
wc-map .result-title__icon--right {
  margin-left: 1.2rem;
}
wc-map .result-title__icon--left {
  position: absolute;
  top: 50%;
  left: -2.4rem;
  transform: translateY(-50%);
}
wc-map .result-title__address {
  font-family: var(--lato-font);
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: var(--charcoal-600);
  margin: 0;
}
@media (max-width: 768px) {
  wc-map .result-title__address {
    line-height: 100%;
  }
}
wc-map .result-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4rem;
  background-color: var(--white);
  border-radius: 2.5rem;
  z-index: 30;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s var(--ease-out-cubic);
  transition-property: filter, opacity, visibility;
}
wc-map .result-details .contact-data__item:not(:last-child) {
  margin: 0 0 3.2rem;
}
wc-map .result-details .contact-data__link {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
wc-map .result-details .contact-data__icon {
  font-size: 2rem;
}
wc-map .result-details__header {
  display: flex;
  justify-content: space-between;
}
wc-map .result-details__footer {
  display: none;
}
@media (max-width: 767px) {
  wc-map .result-details__footer {
    display: flex;
    padding-top: 1rem;
    justify-content: center;
  }
}
wc-map .result-details__inner {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  transform: translateY(3rem);
  transition: transform 0.3s var(--ease-out-cubic), filter 0.15s var(--ease-out-cubic);
}
wc-map .result-details__description {
  font-family: var(--lato-font);
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 4rem;
  color: var(--charcoal-700);
}
wc-map .result-details__buttons {
  align-self: end;
  margin-top: 4rem;
}
wc-map .result-details__button {
  margin: 0 0 2rem;
}
wc-map .result-details__button:last-child {
  margin: 0;
}
wc-map .result-details__button .btn {
  width: 100%;
}
wc-map .result-details__content {
  position: relative;
  overflow: hidden;
  width: calc(100% + 8rem);
  height: 100%;
  left: -4rem;
}
wc-map .result-details__content-scroll {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
wc-map .result-details__content-inner {
  overflow: hidden;
  padding: 4rem;
}
wc-map .result-details.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
wc-map .result-details.is-active wc-map .result-details__inner {
  transform: none;
  filter: none;
}
wc-map .result-details .result-title {
  cursor: pointer;
}
wc-map .result-details .result-title:hover .result-title__icon--left {
  transform: translate(-0.4rem, -50%);
}
wc-map .gm-style .cluster > div {
  font-family: var(--signika-font) !important;
  font-weight: 700 !important;
  font-size: 10px;
  line-height: 20px !important;
  width: 20px !important;
  height: 20px !important;
  left: 32px !important;
  color: var(--white) !important;
}
wc-map .wrapper {
  height: 100%;
}
wc-map .map {
  position: relative;
  width: 100%;
  height: calc(92% - 250px);
  z-index: 10;
}
@media (min-width: 992px) {
  wc-map .map {
    height: 100%;
  }
}
wc-map .map.is-registration-mode::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 40%);
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}
wc-map .loading-spinner {
  position: absolute;
}