.arrow {
  --active: var(--darker);;
  --border: rgba(51, 51, 51, 0.12);
  --hover-border: rgba(51, 51, 51, 0.3);
  display: block;
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 10;
  pointer-events: all;
}

.arrow:focus-visible {
  outline: 2px solid var(--active);
  outline-offset: 2px;
}

.arrow i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transition: transform 0.3s ease;
}
.arrow i:before, .arrow i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.arrow i:before {
  transform: rotate(-40deg);
}
.arrow i:after {
  transform: rotate(40deg);
}
.arrow:before, .arrow:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: border-color 0.3s ease;
}
.arrow svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
  transition: color 0.3s ease;
}
.arrow.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
          animation: stroke 1s ease forwards 0.3s;
}
.arrow.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
          animation: arrow 1.6s ease forwards;
}
.arrow.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
          animation: arrowUp 1.6s ease forwards;
}
.arrow.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
          animation: arrowDown 1.6s ease forwards;
}

.apartment-types-slider .slick-slide {
  /* space between slides */
  margin: 0 10px;
}
.apartment-types-slider .slick-list {
  /* negate outer margin */
  margin: 0 -10px;
}

/* Slick Slider Global Styles - Moved from globals.css */
.about-dots {
  bottom: 15px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: var(--light) !important;
}
