@charset "UTF-8";
.address_book ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.address_book .contact_title:after {
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contacts_popup .validate_button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50px;
  font-size: 140%;
  line-height: 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 10px;
}
.contacts_popup .inactive.validate_button {
  background: #c0c0c0;
  cursor: default;
  pointer-events: none;
}
.contacts_popup .validate_button:hover {
  color: #ffffff;
}

.contacts_popup {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  overflow-x: hidden;
  overflow-y: auto;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contacts_popup .popup_close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 200%;
  background: #333333;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
}
.contacts_popup .popup_close:before {
  display: block;
}
@media (max-width: 1199px) {
  .contacts_popup .popup_close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 160%;
  }
}
@media (max-width: 959px) {
  .contacts_popup .popup_close {
    top: 0;
    right: 0;
  }
}

.web .contacts_popup .validate_button:hover,
.contacts_popup .web .validate_button:hover {
  background: #333333;
  color: #ffffff;
  border-color: transparent;
}
.web .contacts_popup .popup_close:hover {
  background: #666666;
}

.touch .contacts_popup .validate_button:active,
.contacts_popup .touch .validate_button:active {
  background: #333333;
  color: #ffffff;
  border-color: transparent;
}
.touch .contacts_popup .validate_button:hover, .contacts_popup .touch .validate_button:hover {
  color: inherit;
}
.touch .contacts_popup .validate_button:hover:active, .contacts_popup .touch .validate_button:hover:active {
  color: #ffffff;
}
.touch .contacts_popup .popup_close {
  -o-transition: background 0.15s, opacity 0.3s;
  -ms-transition: background 0.15s, opacity 0.3s;
  -moz-transition: background 0.15s, opacity 0.3s;
  -webkit-transition: background 0.15s, opacity 0.3s;
  transition: background 0.15s, opacity 0.3s;
}
.touch .contacts_popup .popup_close:active {
  background: #666666;
}

.map_section {
  display: flex;
  height: 600px;
  max-height: 95vh;
}

.map_block {
  flex: 1;
  height: 100%;
}

#map-canvas {
  width: 100%;
  height: 100%;
}

.popup_buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 0;
  max-width: 720px;
  margin: 0 auto;
}
.popup_buttons button {
  border: none;
  display: flex;
  align-items: center;
  font-size: 160%;
  line-height: 20px;
  color: inherit;
  max-width: 230px;
  margin: 0 15px;
  padding: 0;
  background: transparent;
  text-align: left;
}
.popup_buttons button:before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  margin-right: 20px;
}
.popup_buttons button.icon_letter:before {
  font-size: 125%;
}
.popup_buttons button.icon_pen:before {
  font-size: 175%;
}

.contacts_list {
  flex: 0 0 30%;
  max-width: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 20px 0;
}

.contacts_top {
  padding-bottom: 20px;
  margin: 0 15px;
  border-bottom: 2px solid #ededed;
}
.contacts_top .phone_info {
  font-size: 140%;
  line-height: 20px;
}
.contacts_top .phone_link {
  font-size: 114.3%;
}

.address_book {
  flex: 1;
  height: 50%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.address_book .contact_title {
  padding: 20px 15px 0;
}
.address_book ul {
  font-size: 160%;
  line-height: 21px;
}
.address_book li {
  padding: 10px 15px 10px 45px;
  margin-right: 15px;
}
.address_book li.selected {
  background: #f2f2f2;
}
.address_book li.selected .address_btn {
  color: #000000;
}
.address_book li.selected .address_btn:before {
  color: #000000;
  font-weight: 700;
}
.address_book .scroll-y {
  opacity: 0;
}
.address_book .scroll-y div {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  border-radius: 0;
  width: 4px;
  right: 0;
}
.address_book .scroll-y div.scroll-element_outer {
  top: 20px;
  right: 15px;
}
.address_book .scroll-y div.scroll-element_track {
  z-index: 2;
  background: #c0c0c0;
}
.address_book .scroll-y div.scroll-bar {
  cursor: pointer;
  z-index: 3;
  background: #666666;
}
.address_book .scroll-y div.scroll-bar:hover {
  background: #000000;
}

.address_btn {
  font-size: 100%;
  border: none;
  background: transparent;
  max-width: 100%;
  padding: 0;
  text-align: left;
  color: #999999;
  margin-bottom: 10px;
  position: relative;
}
.address_btn:before {
  position: absolute;
  top: 0;
  left: -30px;
  color: #666666;
  font-size: 106.25%;
  display: block;
  padding: 2px 0;
}

.contact_title {
  font-size: 180%;
  line-height: 24px;
  margin: 0 0 15px;
}

@media (max-width: 1199px) {
  .contact_title {
    font-size: 160%;
    line-height: 22px;
  }

  .contacts_top .phone_link {
    font-size: 100%;
  }

  .address_book ul {
    font-size: 140%;
    line-height: 20px;
  }
  .address_book li {
    padding-left: 35px;
  }
  .address_book .address_btn:before {
    font-size: 114.3%;
    left: -20px;
  }
}
@media (max-width: 959px) {
  .popup_buttons {
    padding: 20px 0;
    justify-content: center;
  }
  .popup_buttons button {
    font-size: 140%;
    line-height: 20px;
    max-width: 180px;
    margin: 0 30px;
  }
  .popup_buttons button:before {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 15px;
  }

  .contacts_list {
    flex: 0 0 33.3%;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .map_section {
    display: block;
  }

  .map_block {
    width: 100%;
    flex: none;
    height: 480px;
    max-height: 95vh;
  }

  .contacts_list {
    flex: none;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .contacts_top {
    text-align: center;
    padding-top: 10px;
    border: none;
  }

  .address_book {
    flex: none;
    height: 40px !important;
    max-height: none !important;
    overflow: visible !important;
    min-height: 0 !important;
    z-index: 10;
  }
  .address_book.scroll-wrapper > .scroll-content {
    overflow: visible !important;
  }
  .address_book .scroll-y {
    display: none !important;
  }
  .address_book .contact_title {
    border: 2px solid #ededed;
    margin: 0 15px;
    padding: 10px 15px;
    line-height: 20px;
    position: relative;
    background: #ffffff;
    z-index: 2;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .address_book .contact_title:after {
    display: block;
    content: "";
    font-weight: 900;
    font-size: 85.7%;
    -o-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
  }
  .address_book ul {
    border: 2px solid #ededed;
    margin-top: -4px;
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    -o-transition: max-height 0.3s;
    -ms-transition: max-height 0.3s;
    -moz-transition: max-height 0.3s;
    -webkit-transition: max-height 0.3s;
    transition: max-height 0.3s;
  }
  .address_book ul li {
    padding: 15px 15px 15px 35px;
    margin: 0;
    border-top: 1px solid #ededed;
  }
  .address_book.opened .contact_title:after {
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  .address_book.opened ul {
    max-height: 360px;
    overflow-y: auto;
  }
}
@media (max-width: 575px) {
  .popup_buttons {
    justify-content: space-around;
  }
  .popup_buttons button {
    margin: 0 10px;
    font-size: 120%;
    line-height: 16px;
    max-width: 160px;
  }
  .popup_buttons button:before {
    width: 36px;
    min-width: 36px;
    height: 36px;
    margin-right: 7px;
  }
  .popup_buttons button.icon_letter:before {
    font-size: 100%;
  }
  .popup_buttons button.icon_pen:before {
    font-size: 150%;
  }
}
.web .popup_buttons button:hover {
  color: #666666;
}
.web .popup_buttons button:hover:before {
  background: rgba(0, 0, 0, 0.1);
}
.web .address_btn:hover {
  color: #666666;
}
.web .address_book:hover .scroll-y {
  opacity: 1;
}

.touch .popup_buttons button:active {
  color: #666666;
}
.touch .popup_buttons button:active:before {
  background: rgba(0, 0, 0, 0.1);
}
.touch .address_btn:active {
  color: #666666;
}
.touch .address_book .scroll-y {
  opacity: 1;
}
@media (max-width: 767px) {
  .touch .address_book .contact_title {
    -o-transition: background 0.15s;
    -ms-transition: background 0.15s;
    -moz-transition: background 0.15s;
    -webkit-transition: background 0.15s;
    transition: background 0.15s;
  }
  .touch .address_book .contact_title:active {
    background: #f2f2f2;
  }
}

.contacts_popup {
  background: #f9f9f9;
}
.contacts_popup .popup_inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  background-size: 33.3%;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.contacts_popup .popup_inner:not(.showed) {
  display: none;
}
.contacts_popup .popup_title {
  display: flex;
  height: 112px;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #ededed;
}
.contacts_popup .page_title {
  margin: 0;
}
.contacts_popup form {
  flex: 1;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 750px;
  padding: 30px 15px;
  margin: 0 auto;
}
.contacts_popup form:before {
  display: block;
  margin: 0 auto 15px;
}
.contacts_popup form.icon_letter:before {
  font-size: 460%;
}
.contacts_popup form.icon_pen:before {
  font-size: 660%;
  width: 50px;
  padding-bottom: 5px;
  border-bottom: 2px solid;
}
.contacts_popup .form_description {
  text-align: center;
  font-size: 160%;
  line-height: 20px;
  color: #999999;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .contacts_popup .form_description {
    font-size: 140%;
  }
}
.contacts_popup .field_block input.filled ~ .placeholder_block:before, .contacts_popup .field_block input:focus ~ .placeholder_block:before,
.contacts_popup .field_block textarea.filled ~ .placeholder_block:before,
.contacts_popup .field_block textarea:focus ~ .placeholder_block:before {
  opacity: 1;
}
.contacts_popup .field_block textarea {
  display: block;
  resize: none;
  height: 190px;
}
.contacts_popup .field_block .placeholder_block {
  margin-left: 15px;
  background: transparent;
}
.contacts_popup .field_block .placeholder_block:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  height: 2px;
  z-index: -1;
  background: #f9f9f9;
  opacity: 0;
  -o-transition: opacity 0.1s;
  -ms-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.contacts_popup .validate_button {
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .contacts_popup .popup_inner {
    background-size: 45% auto;
  }
}
@media (max-width: 959px) {
  .contacts_popup .popup_inner {
    background-size: 60% auto;
  }
}

.address_book .scroll-y {
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.web .popup_buttons button, .web .address_btn {
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.address_book li, .address_book .scroll-y div.scroll-bar, .web .popup_buttons button:before {
  -o-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.web .contacts_popup .popup_close,
.web .contacts_popup .validate_button,
.contacts_popup .web .validate_button {
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.touch .popup_buttons button, .touch .address_btn {
  -o-transition: color 0.15s;
  -ms-transition: color 0.15s;
  -moz-transition: color 0.15s;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

.touch .popup_buttons button:before {
  -o-transition: background-color 0.15s;
  -ms-transition: background-color 0.15s;
  -moz-transition: background-color 0.15s;
  -webkit-transition: background-color 0.15s;
  transition: background-color 0.15s;
}

.touch .contacts_popup .validate_button,
.contacts_popup .touch .validate_button {
  -o-transition: all 0.15s;
  -ms-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}

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