/* ***************************Где купить?************************ */

.container {
    width: 100%;
    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

.mapa {
  margin: 40px 0;
}
.mapa__settings {
  display: flex;
  background: #F9F9FE;
  padding: 16px;
  margin: 0 0 16px 0;
}
.mapa__selects {
  display: flex;
  flex-wrap: wrap;
}
.mapa__select-wrapper {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px 16px;
}
.mapa__select-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #828282;
  margin: 0 0 6px 0;
}
.mapa__input {
}
.mapa__select {
}

.mapa__input, .mapa__select {
  height: 44px;
  border: 1px solid #EAEAEA;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #1B1B20;
  width: 100%;
  padding: 12px 20px;
}

.mapa__boxes {
  flex: 0 0 100%;
  display: flex;
}

@media (max-width: 1023px) {
  .mapa__boxes {
    flex-wrap: wrap;
  }
}

.mapa__check {
  margin: 0 8px 16px;
}

@media (max-width: 430px) {
  .mapa__check {
    flex: 0 0 100%;
  }
}

.mapa__check input {
  display: none;
}

.mapa__check label {
  position: relative;
  display: flex;
  align-items: center;
  color: #828282;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
}

.mapa__check label:before {
  content: '';
  width: 15px;
  height: 15px;
  display: block;
  background: #fff;
  border: 1px solid #EAEAEA;
  margin: -1px 4px 0 0;
  border-radius: 50%;
}

.mapa__check input:checked + label {
  color: #333;
}

.mapa__check input:checked + label:after {
  content: '';
  width: 15px;
  height: 15px;
  background: url('/images/icons/ok.png') center center / contain no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.mapa__go {
  background: #00a0e9;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  flex: 0 0 154px;
  max-width: 154px;
  transition: .4s;
  cursor: pointer;
  margin: 26px 0 0 0;
}

.mapa__go:hover {
  background: #FF5018;
}

.mapa__data {
  display: flex;
}

.mapa__results {
  flex: 0 0 calc(50% - 16px);
  margin: 0 16px 0 0;
  border: 1px solid #EAEAEA;
  transition: .4s;
}

.mapa__results-items {
  height: 450px;
  overflow-y: auto;
  padding: 0 0 45px 0;
}

.mapa__results-items::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}
.mapa__results-items::-webkit-scrollbar-track {
    background: #EAEAEA;
}
.mapa__results-items::-webkit-scrollbar-thumb {
    background-color: #00a0e9;
    border-radius: 10px;
}

.mapa__result {
  display: flex;
  padding: 14px 24px;
  border-bottom: 1px solid #EAEAEA;
}

.mapa__result:hover {
  cursor: pointer;
}

.mapa__result:hover .mapa__contacts-name {
  color: #00a0e9;
}

.mapa__result:nth-child(2n) {
  background: #F9F9F9;
}

.mapa__result._header {
  background: #F9F9FE;
  height: 48px;
  padding: 12px 24px;
}

.mapa__distance {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1C1C1B;
  flex: 0 0 150px;
  padding: 0 45px 0 0;
  display: flex;
  align-items: center;
}

.mapa__contacts {
  flex: 0 0 calc(100% - 150px);
}

.mapa__contacts a {
  font-size: 16px;
}

.mapa__contacts-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1B1B20;
  margin: 0 0 4px 0;
  transition: .4s;
}

.mapa__contacts-address {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1C1C1B;
  margin: 0 0 4px 0;
}

.mapa__contacts-phone {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.mapa__contacts-marks {
  display: flex;
  margin: 4px 0 0 0;
}

.mapa__contacts-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px 0 0;
  transition: .4s;
}

.mapa__contacts-mark img {
  height: 25px;
}

.mapa__contacts-mark:hover {

}

.mapa__contacts-mark:hover:after {
  content: attr(data-title);
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(255,255,255,.7);
  color: #333;
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  text-align: center;
  padding: 4px;
  border-radius: 4px;
}

.mapa__results-total {
  height: 48px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1C1C1B;
  padding: 12px 24px;
  border-top: 1px solid #EAEAEA;
}

.mapa__results-header {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1B1B20;
}

.mapa__noresults {
  padding: 24px;
  font-weight: bold;
}

.mapa__map {
  flex: 0 0 50%;
  max-width: 50%;
  height: 550px;
  transition: .4s;
}

#map {
  width: 100%;
  height: 550px;
}

.mapa__mobile {
  display: none;
}

.mapa__controls {
  display: none;
}

@media (max-width: 1199px) {
  .mapa__select-title {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .mapa__settings {
    flex-wrap: wrap;
  }

  .mapa__mobile {
    display: block;
    flex: 0 0 100%;
    margin: 20px 0 0 0;
  }

  .mapa__filter {
    display: none;
    margin: 0 -8px;
  }

  .mapa__filter-items {
    display: flex;
    flex-wrap: wrap;
  }

  .mapa__showfilter {
    height: 44px;
    background: #00a0e9 url('/images/icons/map-filter.png') 20px center / auto no-repeat;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    padding: 12px 20px 12px 50px;
    width: 140px;
    transition: .4s;
    margin: 0 0 16px 0;
  }

  .mapa__showfilter:hover {
    background: #FF5018 url('/images/icons/map-filter.png') 20px center / auto no-repeat;
  }

  .mapa__controls {
    display: block;
    margin: 26px 0 0 auto;
    display: flex;
  }

  .mapa__controls-map {
    background: #fff /*url('/images/icons/map-marker.png') center center / auto no-repeat*/;
    width: 44px;
    height: 44px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .mapa__controls-map.active {
    background: #00a0e9;
  }

  .mapa__controls-map.active svg path {
    fill: #fff;
  }

  .mapa__controls-list {
    background: #fff /*url('/images/icons/map-burger.png') center center / auto no-repeat*/;
    width: 44px;
    height: 44px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .mapa__controls-list.active {
    background: #00a0e9;
  }

  .mapa__controls-list.active svg path {
    fill: #fff;
  }

  .mapa__controls-all {
    background: #fff url('/images/icons/map-ok.png') center center / auto no-repeat;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .mapa__go {
    background: #fff url('/images/icons/map-search.png') center center / auto no-repeat;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid #EAEAEA;
    border-left: none;
  }
  .mapa__go span {
    display: none;
  }

  .mapa__go:hover {
    background: none;
  }

  .mapa__selects {
    flex: 0 0 calc(100% - 210px);
  }

  .mapa__select-wrapper._main {
    margin: 0;
    flex: 0 0 100%;
  }

  .mapa__select-wrapper._main input {
    border-right: none;
  }

  .mapa__map.only {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mapa__results.only {
    flex: 0 0 100%;
    max-width: 100%;
  }

}

@media (max-width: 991px) {
  .mapa__data {
    flex-wrap: wrap;
  }

  .mapa__results {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 0 16px 0;
  }

  .mapa__map {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mapa__filter-items {
    align-items: flex-end;
  }
}

@media (max-width: 584px) {
  .mapa__select-wrapper {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 479px) {
  .mapa__selects {
    flex: 0 0 calc(100% - 44px);
  }

  .mapa__controls {
    margin: 26px 0 0 0;
    flex: 0 0 100%;
  }

  .mapa__controls-showfilter-mobile-wrapper {
    margin: 0 auto 0 0;
  }

  .mapa__controls-map {
    margin: 0 10px 0 auto;
  }

  .mapa__result {
    padding: 12px;
  }

  .mapa__result._header {
    padding: 12px;
  }

  .mapa__results-header {
    font-size: 14px
  }

  .mapa__distance {
      flex: 0 0 100px;
      padding: 0 25px 0 0;
  }

  .mapa__contacts {
      flex: 0 0 calc(100% - 100px);
  }
}

@media (max-width: 419px) {
  .mapa__mobile {
    margin: 10px 0 0 0;
  }
  .mapa__settings {
    background: none;
    padding: 0;
  }
  .mapa__filter {
    margin: 0;
  }
  .mapa__select-wrapper {
    flex: 0 0 100%;
    margin: 0 0 16px 0;
  }

  .mapa__showfilter {
    width: 130px;
    padding: 12px 10px 12px 40px;
    background: #00a0e9 url(/images/icons/map-filter.png) 15px center / auto no-repeat;
  }

  .mapa__controls-item {
    background: #F0FCEA;
  }

  .mapa__controls-all {
    background: #F0FCEA url(/images/icons/map-ok.png) center center / auto no-repeat;
  }

  .mapa__results-header {
    font-size: 12px
  }

  .mapa__distance {
    flex: 0 0 90px;
    padding: 0 15px 0 0;
  }

  .mapa__contacts {
    flex: 0 0 calc(100% - 90px);
  }

  .mapa__contacts-address {
    font-size: 14px
  }
}

.baloon:not(.product__prev):not(.product__next) {
  background: #1B1B20;
  padding: 16px;
}

.baloon__name {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  margin: 0 0 10px 0;
}

.baloon__address {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color:  #fff;
  margin: 0 0 3px 0;
}

.baloon__url {
  margin: 0 0 3px 0;
}

.baloon__phones {
  color: #00a0e9;
}

.baloon__mes {
  display: flex;
  margin: 12px 0 0 0;
}

.baloon__mes-item {
  margin: 0 12px 0 0;
  width: 20px;
  height: 20px;
  transition: .4s;
}

.baloon__mes-item._whatsapp {
  background: url('/images/icons/whatsapp.png') center center / auto no-repeat;
}

.baloon__mes-item._whatsapp:hover {
  background: url('/images/icons/whatsapp-green.png') center center / auto no-repeat;
}

.baloon__mes-item._viber {
  background: url('/images/icons/viber.png') center center / auto no-repeat;
}

.baloon__mes-item._viber:hover {
  background: url('/images/icons/viber-green.png') center center / auto no-repeat;
}

.baloon__mes-item._telegram {
  background: url('/images/icons/telegram.png') center center / auto no-repeat;
}

.baloon__mes-item._telegram:hover {
  background: url('/images/icons/telegram-green.png') center center / auto no-repeat;
}

[class*="-balloon"] {
  background: #1B1B20!important;
}

[class*="-balloon__close-button"]:before, [class*="-balloon__close-button"]:after {
  content: '';
  width: 15px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

[class*="-balloon__close-button"]:before {
  transform: rotate(45deg);
}

[class*="-balloon__close-button"]:after {
  transform: rotate(-45deg);
}

[class*="-balloon__tail"]:after {
  background-color: #1B1B20!important;
}


.vis {
  margin: 0 auto 30px; 
  width:70%;
  position: relative;
}