.map-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-color);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.map-popup-container {
  background: var(--background-color-el);
  border-radius: 2vw;
  padding: 1vw;
  width: 90%;
  height: 90%;
  position: relative;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.map-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.map-popup-title {
  font-size: 2.25vw;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
@media (max-width: 900px) {
  .map-popup-title {
    font-size: 5.25vw;
  }
}

.map-popup-close {
  width: 3vw;
  height: 3vw;
  cursor: pointer;
  padding: 1vw;
  border-radius: 50%;
  transition: background 0.3s;
}
@media (max-width: 900px) {
  .map-popup-close {
    height: 10vw;
    width: 10vw;
  }
}

.map-popup-close:hover {
  background: var(--buttons-hover-color);
}

.map-popup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  min-height: 0;
}

.map-section {
  flex: 1;
  border-radius: 1.5vw;
  overflow: hidden;
  background: #f8f9fa;
  min-height: 0;
  position: relative;
  border: 1px solid #ddd;
}

.jobs_map {
  width: 100%;
  height: 100%;
  border: none;
}

.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 4vw;
  color: #666;
  background: #f8f9fa;
}

.error-state {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 4vw;
  color: #d32f2f;
  text-align: center;
  padding: 4vw;
  background: #f8f9fa;
}

.selected-shop-info {
  background: #e3f2fd;
  border: 2px solid #2196F3;
  border-radius: 2vw;
  padding: 1vw;
  margin-top: 1vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.selected-shop-header {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.shop-name {
  font-size: 1.25vw;
  font-weight: 400;
  color: #1976d2;
}
@media (max-width: 900px) {
  .shop-name {
    font-size: 3.25vw;
  }
}

.shop-address {
  font-size: 1.25vw;
  font-weight: 400;
  color: #555;
}
@media (max-width: 900px) {
  .shop-address {
    font-size: 3.25vw;
  }
}

.shop-actions {
  display: flex;
  gap: 2vw;
}

.choose-shop-btn, .whatsapp-btn {
  background: var(--background-color-el-2);
  color: black;
  border: none;
  padding: 1vw;
  border-radius: 1.5vw;
  cursor: pointer;
  font-size: 1.5vw;
  font-weight: bold;
  flex: 1;
  transition: all 0.3s ease;
}
@media (max-width: 900px) {
  .choose-shop-btn, .whatsapp-btn {
    font-size: 3.25vw;
  }
}
.choose-shop-btn:hover, .whatsapp-btn:hover {
  background: var(--buttons-hover-color);
}

.map-div {
  padding: 1vw;
  border-radius: 2vw;
  font-size: 1vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-weight: 400;
  font-family: "BalkaraFreeCondensed", "Inter", sans-serif;
  overflow: hidden;
  background-color: var(--background-color-el);
}
@media (max-width: 900px) {
  .map-div {
    font-size: 4.5vw;
    flex-direction: column;
  }
}

.map-button {
  background-color: var(--background-color-el-2);
  font-size: 1vw;
  outline: none;
  padding: 1vw;
  border-radius: 2vw;
  font-family: "BalkaraFreeCondensed", "Inter", sans-serif;
  cursor: pointer;
}
@media (max-width: 900px) {
  .map-button {
    font-size: 4vw;
    margin-top: 2vw;
  }
}
.map-button:hover {
  background: var(--buttons-hover-color);
}

.ymaps-2-1-79-b-cluster-tabs__menu {
  display: none !important;
}

.ymaps-2-1-79-b-cluster-tabs__section_type_content {
  border-radius: 2vw;
  overflow: hidden !important;
}

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