.btn {
  border: none;
  background-color: #00b2ac;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  height: 46px;
  line-height: 1;
  padding: 14px 36px;
  border-radius: 23px;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap; }
  .btn:hover, .btn:focus {
    background-color: #179796;
    color: #fff; }
  .btn:active {
    background-color: #05746e;
    color: #fff; }

.btn-block {
  width: 100%; }

.btn-yellow {
  background-color: #fdd615;
  color: #2f353d; }
  .btn-yellow:hover, .btn-yellow:focus {
    background-color: #fee361;
    color: #2f353d; }
  .btn-yellow:active {
    background-color: #fdc115; }

.btn-yellow[disabled]:hover {
  background-color: #fdd615; }

.btn-stroke {
  background-color: transparent;
  color: #FFF;
  border: 2px solid #FFF;
  padding-top: 12px; }
  .btn-stroke:hover, .btn-stroke:focus {
    background-color: #fff;
    color: inherit; }
  .btn-stroke:active {
    background-color: #fff; }

.btn-mini {
  font-weight: normal;
  font-size: 16px;
  height: 40px;
  border-radius: 20px;
  padding: 12px 36px; }

.btn-buy {
  font-size: 21px;
  font-weight: bold;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 46px; }

.btn--hotline {
  background-color: #FFF;
  color: #ff0000;
  position: relative;
  padding-left: 45px; }
  .btn--hotline:hover {
    background-color: #fff;
    color: #222328; }
  .btn--hotline:before {
    content: "";
    position: absolute;
    width: 19px;
    height: 25px;
    background: url("../img/flame.svg") no-repeat;
    left: 15px;
    top: 50%;
    margin-top: -15px; }
  @media (max-width: 47.99em) {
    .btn--hotline {
      display: block;
      padding-left: 15px;
      padding-right: 15px;
      margin-bottom: 10px; }
      .btn--hotline:before {
        display: none; } }

.btn--none {
  background-color: transparent;
  color: #fff; }
  @media (max-width: 47.99em) {
    .btn--none {
      display: block;
      padding-left: 15px;
      padding-right: 15px;
      margin-bottom: 10px; } }

.btn--help {
  background-color: #ff2a63;
  color: #fff;
  -webkit-box-shadow: inset 0 0 0 2px white;
          box-shadow: inset 0 0 0 2px white;
  position: relative;
  padding-left: 50px; }
  .btn--help:hover {
    background-color: #ff2a63;
    color: #fff; }
  .btn--help:before {
    position: absolute;
    width: 24px;
    height: 19px;
    background: url("../img/emergency-icon.svg") no-repeat;
    left: 15px;
    top: 50%;
    margin-top: -11px; }
  @media (max-width: 47.99em) {
    .btn--help {
      display: block;
      padding-left: 15px;
      padding-right: 15px; }
      .btn--help:before {
        display: none; } }

.btn[disabled] {
  opacity: .5;
  cursor: not-allowed; }

.btn[disabled] {
  opacity: .5; }

.form-control {
  -webkit-appearance: none;
  display: block;
  line-height: 1;
  border-radius: 8px;
  background-color: #ffffff;
  border: solid 1px #b9b9b9;
  font-size: 16px;
  font-weight: normal;
  color: #222328;
  width: 100%;
  padding: 12px 20px;
  outline: 0;
  height: 46px; }
  .form-control:focus {
    border-color: #00b2ac; }

.form-control[disabled] {
  cursor: not-allowed;
  opacity: .5; }
  .form-control[disabled]:hover {
    border-color: #b9b9b9; }

.form-control-nb {
  border: 0; }

textarea.form-control {
  height: auto;
  resize: vertical; }

.form-control-auto {
  width: auto;
  display: inline-block; }

.form-control-error {
  border-color: #f15553; }

.form-checkbox a, .form-radio a {
  text-decoration: none; }

.form-checkbox input[type=checkbox], .form-checkbox input[type=radio], .form-radio input[type=checkbox], .form-radio input[type=radio] {
  display: none; }

.form-checkbox label, .form-radio label {
  display: block;
  padding-left: 30px;
  position: relative;
  line-height: 1.3;
  padding-top: 4px;
  padding-bottom: 3px;
  cursor: pointer; }

.form-checkbox input[type="checkbox"] + label:before, .form-checkbox input[type="radio"] + label:before, .form-radio input[type="checkbox"] + label:before, .form-radio input[type="radio"] + label:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #00b2ac;
  background: #FFF;
  left: 0;
  top: 3px;
  cursor: pointer; }

.form-checkbox input[type="checkbox"]:checked + label:before, .form-checkbox input[type="radio"]:checked + label:before, .form-radio input[type="checkbox"]:checked + label:before, .form-radio input[type="radio"]:checked + label:before {
  background: #00b2ac; }

.form-checkbox input[type="checkbox"]:checked + label:after, .form-radio input[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  background: url("../img/check.svg") no-repeat;
  width: 11px;
  height: 8px;
  left: 6px;
  top: 10px;
  cursor: pointer; }

.toggle {
  background-color: #ffffff;
  border-radius: 40px;
  border: solid 1px #00b2ac;
  overflow: hidden;
  display: block; }

.toggle__item {
  font-size: 14px;
  text-align: center;
  color: #00b2ac;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  float: left;
  width: 50%; }
  .toggle__item:hover {
    color: #05746e; }

.toggle__item--active {
  background: #00b2ac;
  color: #fff;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 0 1px #00b2ac;
          box-shadow: 0 0 0 1px #00b2ac; }
  .toggle__item--active:hover {
    color: #FFF; }

.toggle--yellow {
  border: solid 1px #fdd615; }
  .toggle--yellow .toggle__item {
    color: #222328; }
  .toggle--yellow .toggle__item:hover {
    color: #222328; }
  .toggle--yellow .toggle__item--active {
    background: #fdd615;
    color: #222328;
    -webkit-box-shadow: 0 0 0 1px #fdd615;
            box-shadow: 0 0 0 1px #fdd615; }

.toggle--disabled {
  opacity: .5;
  border-color: #c4c4c4;
  position: relative; }
  .toggle--disabled .toggle__item {
    color: #2f353d; }
  .toggle--disabled .toggle__item--active {
    background: #c4c4c4;
    -webkit-box-shadow: 0 0 0 1px #c4c4c4;
            box-shadow: 0 0 0 1px #c4c4c4;
    color: #fff; }
  .toggle--disabled:after {
    content: "";
    position: absolute;
    cursor: not-allowed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }

.checkbox {
  position: relative; }
  .checkbox label {
    display: block;
    padding-left: 35px;
    cursor: pointer;
    line-height: 25px; }
  .checkbox input {
    display: none; }
  .checkbox input[type="checkbox"] + span:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: url("../img/sprite.png") -153px -499px no-repeat; }
  .checkbox input[type="checkbox"]:checked + span:before {
    background-position: -153px -436px; }

.price-badge {
  color: #222328;
  white-space: nowrap;
  font-size: 24px;
  background: #fdd615;
  height: 32px;
  line-height: 32px;
  padding-left: 15px;
  padding-right: 5px;
  display: inline-block;
  position: relative;
  border-radius: 4px 0 0 4px;
  margin-right: 16px; }
  .price-badge i {
    font-style: normal;
    position: relative; }
  .price-badge .pb-co {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 16px;
    overflow: hidden; }
  .price-badge .pb-co:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #fdd615;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    left: -23px; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 10px; }

.rangeslider {
  background: #e6e6e6;
  position: relative; }

.rangeslider--horizontal {
  height: 20px;
  width: 100%; }

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%; }

.rangeslider--disabled {
  opacity: 0.4; }

.rangeslider__fill {
  background: #fdd615;
  position: absolute; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%; }

.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%; }

.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y; }

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x; }

.years_slider .rangeslider {
  background: #83838f; }

.years_slider .rangeslider--horizontal {
  height: 35px;
  border-radius: 0;
  background: transparent; }

.years_slider .rangeslider__handle {
  width: 35px;
  height: 35px;
  top: 16px;
  z-index: 10;
  background-color: #00b2ac;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.09);
  border: solid 1px #05746e; }
  .years_slider .rangeslider__handle:hover {
    background-color: #1aa5a4; }

.years_slider .rangeslider__fill {
  height: 23px;
  border-radius: 0;
  top: 15px;
  background: transparent;
  overflow: hidden; }
  .years_slider .rangeslider__fill:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: -150px;
    z-index: 1;
    border-bottom: 23px solid #fdd615;
    border-left: 670px solid transparent; }

.years_slider .rangeslider__handle span {
  position: absolute;
  width: 60px;
  height: 45px;
  background: #FFF;
  border-radius: 20px;
  top: -55px;
  left: -15px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  font-family: 'HelveticaNeue-Thin', sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  padding-top: 4px; }
  .years_slider .rangeslider__handle span:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    bottom: -4px;
    left: 27px; }

.years_slider-theme {
  position: relative; }
  .years_slider-theme .horizontal {
    background: #83838f;
    top: -1px;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px; }
  .years_slider-theme .first, .years_slider-theme .last {
    color: #83838f;
    top: 18px;
    position: absolute;
    font-size: 14px; }
    .years_slider-theme .first:before, .years_slider-theme .last:before {
      content: "";
      width: 2px;
      height: 15px;
      position: absolute;
      background-color: #83838f;
      top: -26px; }
  .years_slider-theme .first {
    left: -2px; }
    .years_slider-theme .first:before {
      left: 0; }
  .years_slider-theme .last {
    right: -2px; }
    .years_slider-theme .last:before {
      right: 0; }

.mkad_slider .rangeslider {
  background: #83838f; }

.mkad_slider .rangeslider--horizontal {
  height: 35px;
  border-radius: 0;
  background: transparent; }

.mkad_slider .rangeslider__handle {
  width: 0;
  height: 5px;
  border-radius: 0;
  top: 15px;
  z-index: 10;
  background-color: transparent;
  border: 0; }
  .mkad_slider .rangeslider__handle:after {
    content: "";
    position: absolute;
    background: url("../img/pin_slider.svg") no-repeat 100% 0;
    width: 36px;
    height: 36px;
    bottom: 0;
    left: -23px; }

.mkad_slider .rangeslider__fill {
  height: 5px;
  border-radius: 0;
  top: 15px;
  background: #00b2ac;
  overflow: hidden;
  z-index: 9; }

.mkad_slider-theme {
  position: relative; }
  .mkad_slider-theme .horizontal {
    background: #c1cad6;
    top: -18px;
    position: absolute;
    left: 0;
    right: 0;
    height: 1px; }
  .mkad_slider-theme .first, .mkad_slider-theme .last, .mkad_slider-theme .p1, .mkad_slider-theme .p2, .mkad_slider-theme .p3, .mkad_slider-theme .p4 {
    top: 2px;
    position: absolute;
    font-size: 14px;
    color: #83838f; }
    .mkad_slider-theme .first:before, .mkad_slider-theme .last:before, .mkad_slider-theme .p1:before, .mkad_slider-theme .p2:before, .mkad_slider-theme .p3:before, .mkad_slider-theme .p4:before {
      content: "";
      width: 2px;
      height: 15px;
      position: absolute;
      background-color: #c1cad6;
      top: -27px; }
  .mkad_slider-theme .first {
    left: -2px; }
    .mkad_slider-theme .first:before {
      display: none; }
  .mkad_slider-theme .last {
    right: -2px; }
    .mkad_slider-theme .last:before {
      display: none; }
  .mkad_slider-theme .p1 {
    left: 20%; }
  .mkad_slider-theme .p2 {
    left: 40%; }
    .mkad_slider-theme .p2 div {
      margin-left: -3px; }
  .mkad_slider-theme .p3 {
    left: 60%; }
    .mkad_slider-theme .p3 div {
      margin-left: -6px; }
  .mkad_slider-theme .p4 {
    left: 80%; }
    .mkad_slider-theme .p4 div {
      margin-left: -6px; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.31; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }
.mfp-popup-benefits .mfp-content {
  vertical-align: middle;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
  }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: fixed;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.8;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
  text-indent: -9999px;
  overflow: hidden;
  -webkit-transition: .2s;
  transition: .2s; }
  .mfp-close:after {
    content: "";
    background: url("../img/close.svg") no-repeat;
    background-size: 100%;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 15px;
    top: 15px; }
  .mfp-close:before {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    right: -60px;
    top: -60px; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #000; }

#auth .mfp-close, #restore .mfp-close {
  display: block !important;
  text-indent: 0;
  color: #fff; }
  #auth .mfp-close::before, #restore .mfp-close::before {
    content: none; }
  #auth .mfp-close::after, #restore .mfp-close::after {
    content: none; }
  #auth .mfp-close:active, #restore .mfp-close:active {
    top: -15px; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.8;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%; }
  .mfp-container {
    padding-left: 15px;
    padding-right: 15px; } }

.mfp-close {
  display: none ; }

.popup-thanks {
  background: #FFF;
  padding: 35px 25px;
  text-align: left;
  max-width: 350px;
  margin: 40px auto;
  position: relative;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.3); }
  .popup-thanks .h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 300; }
  .popup-thanks .btn-stroke {
    background: #00b2ac; }

.popup-big {
  max-width: 600px; }

.popup-map {
  max-width: 90%;
  padding: 10px; }
  .popup-map iframe {
    display: block; }

.big_icon_ok {
  width: 126px;
  height: 126px;
  margin: 20px auto;
  border-radius: 50%;
  border: solid 1px #d8d8d8;
  position: relative; }
  .big_icon_ok:before {
    content: "";
    position: absolute;
    width: 83px;
    height: 68px;
    left: 22px;
    top: 32px;
    background: url("../img/check-i-n.svg") no-repeat;
    background-size: 100%; }

.mfp-wrap {
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0); }

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
          transform: translateY(-20px) perspective(600px) rotateX(10deg); }

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0deg);
          transform: translateY(0) perspective(600px) rotateX(0deg); }

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
          transform: translateY(-10px) perspective(600px) rotateX(10deg); }

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0; }

.landing_intro {
  position: relative;
  height: 438px;
  background: #D3D3CE url(../img/intro_bg.jpg) no-repeat 50% 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  margin: 0 0 40px; }

  @media (max-width: 567px) {
    .landing_intro {
      height: 260px;
      background-size: cover !important; } }
  .landing_intro__title {
    font-size: 42px;
    font-weight: 700;
    padding: 12px 0 36px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.27);
	line-height: 1.2;}
    @media (max-width: 567px) {
      .landing_intro__title {
        font-size: 22px;
        padding: 8px 0 20px; } }
  .landing_intro__icon {
    display: inline-block;
    width: 190px;
    height: 131px;
    fill: #fff; }
    @media (max-width: 567px) {
      .landing_intro__icon {
        width: 134px;
        height: 90px; } }
  .landing_intro__arc {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 83px;
    fill: #fff; }
    @media (max-width: 767px) {
      .landing_intro__arc {
        height: 30px; } }
    @media (max-width: 567px) {
      .landing_intro__arc {
        height: 20px; } }

@media (max-width: 320px) {
  .landing_intro__title {
        font-size: 17px;
  }
}

@media (max-width: 768px) {
  .mobide_version_services {
    display: block !important;
    text-align: left;
  }
  .desktop_version_services {
    display: none !important;
  }
}

.mobile_comment_slider .doc_carousel .slick-arrow {
  top: 45%;
}

.mobide_version_services .ourservices__colHospitals {
  text-align: left;
}

.landing_benefits {
  text-align: center;
  line-height: 1.2;
  margin: 0 0 60px;
}
.landing_benefits__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.landing_benefits__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.landing_benefits__item:hover {
  color: #00b2ac;
}

@media screen and (max-width: 567px) {
  .landing_benefits__item {
    margin-bottom: 30px;
  }
}

.landing_benefits__icon {
  width: 115px;
  height: 115px;
  border-radius: 100%;
  background: #FDD515;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 17px 0 0;
  margin: 0 auto 23px;
  -webkit-transition: background 0.25s ease-in-out;
  transition: background 0.25s ease-in-out;
}
.landing_benefits__icon svg {
  width: 82px;
  height: 82px;
  fill: #000;
  -webkit-transition: fill 0.25s ease-in-out;
  transition: fill 0.25s ease-in-out;
}

@media (max-width: 567px) {
  .landing_benefits__icon {
    width: 90px;
    height: 90px;

  }
}
.landing_benefits__title {
    min-height: 47px;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #232323;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
}
    @media (max-width: 767px) {
      .landing_benefits__title {
        min-height: 0; } }
    @media (max-width: 567px) {
      .landing_benefits__title {
        font-size: 16px; } }
.landing_benefits__desc {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100%;
    font-size: 18px;
    font-weight: 300;
}
    @media (max-width: 567px) {
      .landing_benefits__desc {
        font-size: 14.5px;
        line-height: 1.07; } }
  .landing_benefits__item:hover .landing_benefits__icon {
    background-repeat: no-repeat !important;
	background-position: center center !important;
    background-color: #00b2ac; }
    .landing_benefits__item:hover .landing_benefits__icon svg {
      fill: #fff; }

.landing_services {
  background: #ECF6F8;
  padding: 60px 0; }
  .landing_services:after {
    content: '';
    display: table !important;
    clear: both;
    height: 0 !important;
    visibility: hidden; }
  @media (max-width: 1023px) {
    .landing_services {
      padding-bottom: 0; } }
  @media (max-width: 767px) {
    .landing_services {
      padding-top: 30px; } }
  @media (max-width: 567px) {
    .landing_services {
      padding-top: 20px; } }
  .landing_services__title {
    font-size: 50px;
    font-weight: 100;
    text-align: center;
    color: #2F353D;
    margin: 0 0 15px;
	line-height: 1.1;}
    @media (max-width: 1023px) {
      .landing_services__title {
        font-size: 40px; } }
    @media (max-width: 767px) {
      .landing_services__title {
        font-size: 34px; } }
    @media (max-width: 567px) {
      .landing_services__title {
        font-size: 30px;
        line-height: 1.2; } }

  .landing_services__super-item__description {
	font-size: 14px;
	margin-bottom: 8px;
	line-height: 1.3;
	width: 210px;
  }
	@media (max-width: 767px) {
	  .landing_services__super-item__description {
		width: 100%;
	  }
	}

  .landing_services__under-title {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    color: #797979;
    margin: 0 0 50px; }
    @media (max-width: 1023px) {
      .landing_services__under-title {
        font-size: 22px; } }
    @media (max-width: 767px) {
      .landing_services__under-title {
        font-size: 20px; } }
    @media (max-width: 567px) {
      .landing_services__under-title {
        font-size: 18px; } }
  .landing_services__left {
    float: left;
    width: 750px; }
    @media (max-width: 1279px) {
      .landing_services__left {
        width: 631px; } }
    @media (max-width: 1023px) {
      .landing_services__left {
        float: none;
        width: auto; } }
    @media (max-width: 567px) {
      .landing_services__left {
        margin: 0 -15px; } }
  .landing_services__super-item {
    position: relative;
    min-height: 237px;
    background: #fff;
    margin: 0 0 20px;
    overflow: hidden; }
    @media (max-width: 567px) {
      .landing_services__super-item {
        height: auto;
        margin: 0 0 5px; } }
    .landing_services__super-item__pic {
      position: relative;
      float: right;
      width: 492px;
      height: 237px;
      background: no-repeat 50% 50%;
      background-size: cover; }
      @media (max-width: 1279px) {
        .landing_services__super-item__pic {
          width: 403px; } }
      @media (max-width: 1023px) {
        .landing_services__super-item__pic {
          width: 462px; } }
      @media (max-width: 767px) {
        .landing_services__super-item__pic {
          width: 290px; } }
      @media (max-width: 567px) {
        .landing_services__super-item__pic {
          float: none;
          width: auto;
          height: 237px; } }
      .landing_services__super-item__pic:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        margin: -18.5px 0 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 18.5px 0 18.5px 18px;
        border-color: transparent transparent transparent #fff; }
        @media (max-width: 567px) {
          .landing_services__super-item__pic:after {
            top: auto;
            bottom: 0;
            left: 50%;
            margin: 0 0 0 -18.5px;
            border-width: 0 18.5px 18px 18.5px;
            border-color: transparent transparent #fff transparent; } }
    .landing_services__super-item__padding {
      position: relative;
      padding: 20px 0 20px 26px;
      max-height: 100%; }
      @media (max-width: 567px) {
        .landing_services__super-item__padding {
          padding: 20px 15px; } }
    .landing_services__super-item__title {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 5px; }
    .landing_services__super-item__list {
      list-style: none;
      font-size: 14px;
      padding: 0;
      margin: 0;
	  }
      .landing_services__super-item__list li {
        margin: 0 0 2px; }
    .landing_services__super-item .readmore__link {
      font-size: 18px;
      font-weight: 600;
	  margin: 20px 0 0;
	      display: block;}
  .landing_services__accordion-item {
    position: relative;
    background: #fff;
    margin: 0 0 20px; }
    @media (max-width: 567px) {
      .landing_services__accordion-item {
        margin: 0 0 5px; } }
    .landing_services__accordion-item__title {
      position: relative;
      padding: 17px 0 16px 26px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer; }
      @media (max-width: 567px) {
        .landing_services__accordion-item__title {
          padding: 17px 0 16px 15px; } }
      .landing_services__accordion-item__title-icon {
        position: absolute;
        top: 0;
        right: 0;
        width: 62px;
        height: 62px;
        background: url(../img/arrow_down.svg) no-repeat 50% 50%;
        -webkit-transition: background 0.25s ease-in-out;
        transition: background 0.25s ease-in-out; }

	.landing_services__accordion-item__description {
		font-size: 14px;
		margin-bottom: 10px;
		line-height: 1.3;
	}

    .landing_services__accordion-item__pre-cont {
      max-height: 0;
      -webkit-transition: max-height 0.25s ease-in-out;
      transition: max-height 0.25s ease-in-out;
      overflow: hidden; }
    .landing_services__accordion-item__cont {
      padding: 0 26px 20px; }
      @media (max-width: 567px) {
        .landing_services__accordion-item__cont {
          padding: 0 15px 20px; } }
    .landing_services__accordion-item__list {
      font-size: 0; }
    .landing_services__accordion-item__column {
      display: inline-block;
      vertical-align: top;
      width: 33.33%;
      padding-right: 3%;
      font-size: 14px;
      margin: 0 0 40px; }
      @media (max-width: 767px) {
        .landing_services__accordion-item__column {
          width: 50%;
          padding-right: 5%; } }
      @media (max-width: 567px) {
        .landing_services__accordion-item__column {
          width: 100%;
          margin: 0; }
          .landing_services__accordion-item__column:last-child {
            margin: 0 0 40px; } }
      .landing_services__accordion-item__column > div {
        margin: 0 0 2px; }
    .landing_services__accordion-item .readmore__link {
      font-size: 18px;
      font-weight: 600; }
    .landing_services__accordion-item.is-opened .landing_services__accordion-item__title-icon {
      background: url(../img/arrow_up.svg) no-repeat 50% 50%; }
    .landing_services__accordion-item.is-opened .landing_services__accordion-item__pre-cont {
      max-height: 1000px; }
  .landing_services__right {
    float: right;
    width: 370px; }
    @media (max-width: 1279px) {
      .landing_services__right {
        width: 318px; } }
    @media (max-width: 1023px) {
      .landing_services__right {
        float: none;
        width: auto;
        margin: 50px 0 0; } }
    @media (max-width: 567px) {
      .landing_services__right {
        margin: 5px 0 0; } }
  @media (max-width: 1023px) {
    .landing_services__post-order {
      max-width: 290px;
      margin: 0 auto; } }
  .landing_services__order {
    padding: 20px 40px 30px;
    background: #fff; }
    @media (max-width: 1279px) {
      .landing_services__order {
        padding: 20px 12px 30px; } }
    @media (max-width: 1023px) {
      .landing_services__order {
        margin: 0 -20px; }
    .landing_map__right .landing_services__order {
        margin: 0 -10px; } }
    .landing_services__order-icon {
      width: 115px;
      height: 115px;
      background: url(../img/24-7.svg) no-repeat 0 0;
      background-size: cover;
      margin: -10px auto 10px; }
      @media (max-width: 567px) {
        .landing_services__order-icon {
          display: none; } }
    .landing_services__order .header__phone.phone {
      padding-right: 20px; }
      @media (max-width: 567px) {
        .landing_services__order .header__phone.phone {
          padding-right: 60px; } }
      .landing_services__order .header__phone.phone:after {
        content: none; }
        @media (max-width: 567px) {
          .landing_services__order .header__phone.phone:after {
            content: ''; } }
    .landing_services__order .btn-yellow {
      border-radius: 5px;
      font-weight: 700; }

.landing_map {
  padding-top: 25px; }
  .landing_map:after {
    content: '';
    display: table !important;
    clear: both;
    height: 0 !important;
    visibility: hidden; }
  .landing_map__left {
    float: left;
    width: 750px; }
    @media (max-width: 1279px) {
      .landing_map__left {
        width: 631px; } }
    @media (max-width: 1023px) {
      .landing_map__left {
        float: none;
        width: auto; } }
  .landing_map__title {
    font-size: 33.5px;
    font-weight: 300;
    color: #41454F;
    margin: 0 0 25px; }
    @media (max-width: 1023px) {
      .landing_map__title {
        font-size: 32px; } }
    @media (max-width: 567px) {
      .landing_map__title {
        font-size: 24px;
        margin: 0 0 15px; } }
  .landing_map__chooser {
    margin: 0 0 35px; }
    .landing_map__chooser select {
      width: 300px; }
    @media (max-width: 767px) {
      .landing_map__chooser {
        margin: 0 0 20px; } }
    @media (max-width: 567px) {
      .landing_map__chooser select {
        width: 100%; } }
    .landing_map__chooser .select2-container {
      display: inline-block;
      vertical-align: middle; }
    .landing_map__chooser-note {
      display: inline-block;
      vertical-align: middle;
      font-size: 18px;
      font-weight: 300;
      line-height: 1.2;
      color: #7A7A7A;
      margin: 0 0 0 30px; }
      @media (max-width: 1279px) {
        .landing_map__chooser-note {
          font-size: 16px;
          margin: 0 0 0 10px; } }
      @media (max-width: 767px) {
        .landing_map__chooser-note {
          padding: 10px 0 0;
          margin: 0; }
          .landing_map__chooser-note br {
            display: none; } }
  .landing_map__full-map {
    position: relative;
    height: 560px;
    margin-left: -300px; }
    @media (max-width: 1739px) {
      .landing_map__full-map {
        margin-left: -200px; } }
    @media (max-width: 1539px) {
      .landing_map__full-map {
        margin-left: -100px; } }
    @media (max-width: 1339px) {
      .landing_map__full-map {
        margin-left: -30px; } }
    @media (max-width: 1023px) {
      .landing_map__full-map {
        height: 400px;
        margin: 0 -20px; } }
    .landing_map__full-map #map {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .landing_map__full-map .info-point {
      display: none;
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 310px;
      height: 100%;
      background: #ECF6F8;
      padding: 30px 25px 30px 10px;
      overflow-y: auto;
    }
      @media (max-width: 1023px) {
        .landing_map__full-map .info-point_post {
          width: 330px;
          height: 100%;
          padding: 0 50px 0 0;
          overflow-y: auto; } }
      .landing_map__full-map .info-point.active {
        display: block; }
        .landing_map__full-map .info-point header .icon {
          margin-right: 6px;
          margin-left: -29px;
          vertical-align: top; }
      .landing_map__full-map .info-point .title {
        display: inline-block;
        color: #00abaa;
        font-size: 16px;
        font-weight: 700;
          padding-right: 25px; }
      .landing_map__full-map .info-point .properties {
        padding-left: 35px; }
        .landing_map__full-map .info-point .properties p {
          position: relative;
          font-family: Arial,sans-serif;
          margin-top: 12px;
          color: #6d7079;
          font-size: 14px;
          line-height: 1.4; }
          .landing_map__full-map .info-point .properties p:before {
            content: '';
            background-image: url("../img/sprite.png");
            background-repeat: no-repeat;
            height: 22px;
            width: 22px;
            background-position: -243px -164px;
            position: absolute;
            top: 0;
            left: -30px; }
          .landing_map__full-map .info-point .properties p.address:before {
            background-position: -270px -164px; }
          .landing_map__full-map .info-point .properties p.phone {
            text-align: left;
            padding: 0;
            margin: 0;
            background-color: transparent; }
          .landing_map__full-map .info-point .properties p.phone:before {
            background-position: -239px -137px; }
.landing_map__right {
    float: right;
    width: 370px; }
    @media (max-width: 1279px) {
      .landing_map__right {
        width: 318px; } }
    @media (max-width: 1023px) {
      .landing_map__right {
        float: none;
        width: auto;
        margin: 20px 0 0; } }

@media (max-width: 1023px) {
  .doc_carousel .slick-prev {
    left: -15px; }
  .doc_carousel .slick-next {
    right: -15px; } }

@media (max-width: 767px) {
  #ajaxContent {
    margin: 0 -15px; }
  #ajax.popup .popup-close-icon {
    top: 0;
    right: -16px; } }

.info-window .title {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
  text-align: center; }

.gm_overlay {
  height: 265px;
  z-index: 5;
  width: 100%;
  position: absolute;
  cursor: pointer;
  opacity: 0.1;
  background-color: #00abaa; }

.map-overlay {
  z-index: 10; }

.moved-right {
  margin-left: 440px; }

.map-siders {
  float: left; }

.wr_map {
  position: relative;
  overflow: hidden; }

.wr_map .info-point {
  background: #ECF6F8;
  position: absolute;
  width: 440px;
  z-index: 10;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 25px; }

.wr_map .info-point.active {
  display: block; }

.wr_map .info-point header .icon {
  margin-right: 2px;
  margin-left: -25px;
  vertical-align: top; }

.wr_map .info-point .title {
  color: #00abaa;
  display: inline-block;
  font-family: "HelveticaNeue",sans-serif;
  font-size: 21px;
  font-weight: normal; }

.wr_map .info-point .properties {
  padding-left: 35px; }

.wr_map .info-point .properties p {
  margin-top: 24px;
  color: #6d7079;
  font-family: Arial,sans-serif;
  font-size: 14px;
  line-height: 1.4;
  position: relative; }

.wr_map .info-point .properties p:before {
  content: '';
  background-image: url("../img/sprite.png");
  background-repeat: no-repeat;
  height: 22px;
  width: 22px;
  background-position: -243px -164px;
  position: absolute;
  top: 0;
  left: -30px; }

.wr_map .info-point .properties p.address:before {
  background-position: -270px -164px; }

.wr_map .info-point .properties p.phone:before {
  background-position: -239px -137px; }

.wr_map .info-point.adaptiv {
  width: 89%;}

.wr_map .map-block.adaptiv {
  padding-top: 400px; }

.search-block {
  background-color: #00abaa;
  padding-top: 20px;
  padding-bottom: 20px; }

.search-form {
  width: 100%;
  position: relative; }

form.container {
  max-width: 100%;
  width: 1020px !important;
  min-width: 320px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.search-form input[type=text], .search-form input[type=search] {
  font-size: 27px;
  width: 100%;
  color: #abadb3;
  border: 0 none;
  text-overflow: ellipsis;
  height: 50px;
  line-height: 40px;
  font-style: italic;
  font-family: Arial, sans-serif;
  padding-left: 25px;
  padding-right: 50px;
  border-radius: 25px; }

.search-form input[type=submit] {
  position: absolute;
  right: 19px !important;
  top: 50% !important;
  margin-top: -14px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  background: url("/local/templates/main/images/sprite.png") -81px -136px no-repeat; }

input[type=submit], input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

/***************************************************************/
.map-wrap .map-overlay {
  bottom: 0;
  height: 0;
  left: 0;
  right: 0;
  text-align: center;
  position: relative;
  top: -47px;
  background: rgba(236, 246, 248, 0.7); }

.map-overlay {
  z-index: 10; }

.map-wrap .map-overlay .label {
  color: #00abaa;
  font-size: 19px;
  background-color: #fff;
  border-radius: 50px;
  min-height: 35px;
  line-height: 34px;
  display: inline-block;
  margin: -19px auto 0;
  padding: 0 15px 0 15px;
  font-family: 'Helvetica Light', sans-serif; }

.icon {
  vertical-align: middle;
  display: inline-block;
  background-image: url("../img/sprite.png") !important;
  background-repeat: no-repeat; }

.caret-icon {
  width: 20px;
  height: 12px;
  background-position: -15px -136px; }

.caret-up-icon {
  width: 20px;
  height: 12px;
  background-position: -15px -160px; }

.star-tear-icon {
  height: 21px;
  width: 18px;
  background-position: -234px -13px; }

.search-form input[type=submit] {
  position: absolute;
  right: 19px;
  top: 50%;
  margin-top: -14px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  background: url("../img/sprite.png") -81px -136px no-repeat;
  border: none; }


.landing_map__full-map .info-point.active::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #fff;
    border-radius: 5px;
}

.landing_map__full-map .info-point.active::-webkit-scrollbar
{
    width: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.landing_map__full-map .info-point.active::-webkit-scrollbar-thumb
{
    background-color: #43abaa;
    border-radius: 5px;
}
