.map {
}
._margin-b {
}
.map__container {
}
.map__top {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.map__title {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.map__triggers {
  border: 1px solid #545454;
  border-radius: 100px;
  padding: 8px;
  width: 327px;
  height: 63px;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.4s;
}
.map__trigger {
  flex: 0 0 158px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #1e1e1b;
  cursor: pointer;
}

/* .map__trigger.active {
  cursor: auto;
} */

.map__triggers::before {
  content: '';
  position: absolute;
  border-radius: 100px;
  padding: 14px 20px;
  width: 158px;
  height: 47px;
  top: 50%;
  transform: translate(0, -50%);
  left: 160px;
  border: 1px solid #b5b4b0;
  z-index: -1;
  background-color: #fdfdfd;
  transition: all 0.4s;
}

.map__triggers.one::before {
  left: 8px;
}

.active {
}
.map__body {
  border: 1px solid #b5b4b0;
  border-radius: 8px;
  background-color: #fdfdfd;
  margin: 0;
}
.map__content {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.map__map {
  flex: 1 1 auto;
  height: 100%;
  overflow: hidden;
}
.map__items {
  padding: 37px 30px;
  flex: 0 0 420px;
  border-right: 1px solid #b5b4b0;
}
.map__item {
}
.map__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #aaadb2;
  margin-bottom: 20px;
}
.map__value {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #1e1e1b;
  font-family: 'InterMedium';
}

.map__content {
  display: none;
}

.map__content.active {
  display: flex;
}

.ymaps-2-1-79-map {
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 992px) {
  .map__items {
    padding: 30px 20px;
    flex: 0 0 50vw;
  }

  .map__title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .ymaps-2-1-79-map {
    overflow: hidden;
    border-radius: 8px 8px 0px 0;
  }

  .map__top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .map__title {
    font-size: 24px;
    text-align: left;
  }
  .map__triggers {
    border: 1px solid #545454;
    border-radius: 100px;
    padding: 8px;
    width: 100%;
    max-width: 500;
    height: 63px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.4s;
  }
  .map__trigger {
    flex: 0 0 50%;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #1e1e1b;
    cursor: pointer;
  }
  .map__triggers::before {
    content: '';
    position: absolute;
    border-radius: 100px;
    padding: 14px 20px;
    width: 50%;
    height: 47px;
    top: 50%;
    transform: translate(0, -50%);
    left: 48%;
    border: 1px solid #b5b4b0;
    z-index: -1;
    background-color: #fdfdfd;
    transition: all 0.4s;
  }

  .map__triggers.one::before {
    left: 8px;
  }

  .map__content {
    flex-direction: column-reverse;
  }
  .map__map {
    height: 408px;
  }
  .map__items {
    border: none;
    border-top: 1px solid #b5b4b0;
    padding: 20px 16px;
  }

  .map__name {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .map__value {
    font-size: 18px;
  }
}
