.d-none {
  display: none;
}
.map__container {
  margin: 50px 0;
}
.map__wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
}
.map__map {
  width: 60%;
}
.map__branches-wrapper {
  aspect-ratio: 1/1;
  position: relative;
  width: 40%;
}
.map__branches {
  box-sizing: border-box;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  width: 100%;
}
.map__branches-overlay {
  height: 50px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.map__branches-overlay--top {
  background: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, 0));
  opacity: 0;
  top: 0;
}
.map__branches-overlay--top.visible {
  opacity: 1;
}
.map__branches-overlay--bottom {
  background: linear-gradient(0deg, #fff, hsla(0, 0%, 100%, 0));
  bottom: 0;
  opacity: 0;
}
.map__branches-overlay--bottom.visible {
  opacity: 1;
}
.map__branch-card {
  background: transparent;
  border: 2px solid #ccc;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}
.map__branch-card:first-child {
  margin-top: -20px;
}
.map__branch-card:last-child {
  margin-bottom: -20px;
}
.map__branch-card:hover {
  border-color: #0f6b00;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.map__branch-card.active {
  background: rgba(255, 83, 43, 0.05);
  border-color: #0f6b00;
}
.map__branch-image {
  border-radius: 15px;
  flex-shrink: 0;
  height: 120px;
  overflow: hidden;
  width: 120px;
}
.map__branch-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.map__branch-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}
.map__branch-title {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.map__branch-address {
  font-size: 18px;
  font-weight: 500;
}
.map__branch-schedule {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.map__branch-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.map__branch-phone {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.map__branch-phone a {
  color: #0f6b00;
  text-decoration: none;
  transition: color 0.3s ease;
}
.map__branch-phone a:hover {
  color: #d43e1f;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .map__wrapper {
    flex-direction: column;
  }
  .map__map {
    width: 100%;
  }
  .map__branches-wrapper {
    aspect-ratio: auto;
    height: auto;
    width: 100%;
  }
  .map__branches {
    height: auto;
    max-height: none;
    overflow-y: visible;
    padding-left: 0;
    padding-right: 0;
  }
  .map__branch-card:first-child {
    margin-top: 0;
  }
  .map__branch-card:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .map__container {
    margin: 30px 0;
  }

  .map__branches-wrapper {
    aspect-ratio: auto;
  }
  .map__branch-card {
    gap: 12px;
    padding: 15px;
  }
  .map__branch-image {
    height: 90px;
    width: 90px;
  }
  .map__branch-title {
    font-size: 20px;
  }
  .map__branch-address {
    font-size: 16px;
  }
}
/*# sourceMappingURL=map.css.map*/
