@charset "UTF-8";
header {
  display: flex;
  max-width: 1080px;
  margin: auto;
  padding: 20px 0;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  header {
    padding: 10px 20px;
  }
}
@media (max-width: 900px) {
  header .imgLogo img {
    display: none;
  }
}
header .imgLogo .svg {
  display: none;
}
@media (max-width: 900px) {
  header .imgLogo .svg {
    display: flex;
  }
}
header p {
  color: var(--base);
  font-size: 16px;
  font-weight: 400;
}
header .geolocation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
  header .geolocation {
    display: none;
  }
}
header .geolocation .map {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .geolocation .operatingMode {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .geolocation .operatingMode .circle {
  width: 20px;
  height: 20px;
  background: #14AE5C;
  border-radius: 100%;
  opacity: 1;
  animation: blink 1.5s infinite ease-in-out;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3; /* Полупрозрачность */
  }
  100% {
    opacity: 1;
  }
}
header .contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
  header .contacts {
    gap: 5px;
  }
}
header .contacts a {
  text-decoration: none;
  color: var(--base);
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 500;
}
@media (max-width: 900px) {
  header .contacts a {
    display: flex;
    justify-content: flex-end;
    font-weight: 700;
  }
}
header .contacts .wa a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .contacts .wa a p {
  color: var(--secondary);
}

.geolocationInvisible {
  display: none;
}
@media (max-width: 900px) {
  .geolocationInvisible {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
    background: var(--silver);
    font-size: clamp(11px, 2vw, 14px);
  }
  .geolocationInvisible .map {
    display: flex;
    gap: 5px;
    align-items: center;
    display: flex;
  }
  .geolocationInvisible p {
    line-height: 20px;
  }
  .geolocationInvisible .operatingMode {
    display: flex;
    gap: 5px;
    display: flex;
    align-items: center;
  }
  .geolocationInvisible .operatingMode .circle {
    width: 16px;
    height: 16px;
    background: #14AE5C;
    border-radius: 100%;
    opacity: 1;
    animation: blink 1.5s infinite ease-in-out;
  }
  @keyframes blink {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.3; /* Полупрозрачность */
    }
    100% {
      opacity: 1;
    }
  }
}/*# sourceMappingURL=header.css.map */