

/* Start:/local/templates/dscontrols/components/bitrix/news.list/contacts-map/style.css?17643313116512*/
@charset "UTF-8";
/*
 >=1440 - размер шрифта берется из $max;
 <1440 размер шрифта высчитывается из $max / 1440 * 100
 при узких ширинах экрана размер шрифта берется из $min
 в качестве аргументов передаем максимальный и минимальный размеры шрифта (без ед. изм.)
 */
/* центрирует элемент делая его flex-контейнером
 в качестве аргумента ожидает булево значение (опционально)
 от аргумента зависит значение свойства display
 */
/* центрирует элемент позиционируя его абсолютно родителя (или body, если таковых не найдется)
 элемент вырывается из потока
 */
/* задает пропорциональные размеры для элемента
 в качестве аргумента ожидает значение с указанием ед. изм.
 */
.main {
  display: flex;
}

.map {
  position: relative;
  flex: 1;
}
.map h2:not([class]) {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  color: #808080;
  margin-bottom: 5px;
}
.map p:not([class]) {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  line-height: 1.7;
  font-weight: 500;
  color: #101010;
  margin-bottom: 10px;
}
.map a:not([class]) {
  color: #1a4080;
  transition: 0.2s all;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .map a:not([class]):hover {
    opacity: 0.75;
  }
}
@media (hover: hover) and (pointer: coarse) {
  .map a:not([class]):active {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .map a:not([class]):active {
    opacity: 0.75;
  }
}
.map__body {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .map__body {
    position: static;
    height: 350px;
  }
}
.map__container {
  pointer-events: none;
  overflow: auto;
  min-height: 81vh;
}
@media (max-width: 768px) {
  .map__container {
    min-height: initial;
  }
}
.map__placemark {
  background: #1a4080;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
}
.map__placemark svg {
  width: 16px;
  height: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .map__placemark:hover .map__placemark-caption {
    opacity: 1;
    padding: 4px 8px;
    transform: translateY(0);
    pointer-events: initial;
  }
}
@media (hover: hover) and (pointer: coarse) {
  .map__placemark:active .map__placemark-caption {
    opacity: 1;
    padding: 4px 8px;
    transform: translateY(0);
    pointer-events: initial;
  }
}
@media (hover: none) {
  .map__placemark:active .map__placemark-caption {
    opacity: 1;
    padding: 4px 8px;
    transform: translateY(0);
    pointer-events: initial;
  }
}
.map__placemark-caption {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  bottom: 100%;
  position: absolute;
  background-color: #1a4080;
  border-radius: 8px;
  transition: all 0.3s ease-out;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4);
  opacity: 0;
  padding: 4px 0;
  transform: translateY(4px);
  min-width: 250px;
  text-align: center;
  pointer-events: none;
}

.info {
  position: relative;
  z-index: 2;
  pointer-events: initial;
  margin: 50px 0;
  max-width: 580px;
  width: 100%;
  border-radius: 6px;
  overflow: auto;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  background: #ffffff;
}
@media (max-width: 1440px) {
  .info {
    margin: 20px 0;
  }
}
@media (max-width: 768px) {
  .info {
    box-shadow: none;
    overflow: visible;
    max-width: 100%;
  }
}
.info__tab-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .info__tab-controls {
    display: flex;
  }
}
.info__tab-trigger {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #101010;
  background: #ffffff;
  transition: 0.2s all;
  padding: 12px;
  width: 100%;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .info__tab-trigger:hover {
    color: #ffffff;
    background: #1a4080;
  }
}
@media (hover: hover) and (pointer: coarse) {
  .info__tab-trigger:active {
    color: #ffffff;
    background: #1a4080;
  }
}
@media (hover: none) {
  .info__tab-trigger:active {
    color: #ffffff;
    background: #1a4080;
  }
}
.info__tab-trigger.active {
  color: #ffffff;
  background: #1a4080;
}
@media (max-width: 768px) {
  .info__tab-trigger {
    font-size: 12px;
    padding: 6px;
  }
}
.info__tab-target {
  overflow-y: auto;
  max-height: 65vh;
  display: none;
  padding: 15px;
  border-top: 1px solid #ddd;
}
@media (max-width: 768px) {
  .info__tab-target {
    overflow-y: visible;
    max-height: initial;
  }
}
.info__tab-target.active {
  display: block;
}
.info__title {
  font-weight: bold;
  font-size: clamp(20px, 2.2222222222vw, 32px);
  line-height: 140%;
  text-transform: uppercase;
  color: #101010;
  margin-bottom: 15px;
}
.info__city {
  margin-bottom: 15px;
}
.info__name {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s all;
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .info__name:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) and (pointer: coarse) {
  .info__name:active {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .info__name:active {
    opacity: 0.6;
  }
}
.info__name span {
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
}
.info__name svg {
  transition: 0.2s all;
  width: 14px;
  height: auto;
  transform-origin: center;
  flex-shrink: 0;
}
.info__name.active svg {
  transform: rotate(180deg);
}
.info__image {
  width: 100%;
  height: auto;
}
.info__content {
  margin-bottom: 15px;
}
.info__main-tab-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.info__expand-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s all;
}
.info__expand-content.active {
  max-height: 100%;
}
.info__branches {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.info__branch, .info__main-tab-item {
  border-bottom: 1px solid #ddd;
}
.info__branch:last-child, .info__main-tab-item:last-child {
  border-bottom: none;
}

/* End */
/* /local/templates/dscontrols/components/bitrix/news.list/contacts-map/style.css?17643313116512 */
