

/* Start:/local/templates/gotoural/components/bitrix/news/contacts/style.css?17326948995192*/
.wrapper {
    overflow: unset !important;
}
.contacts.bg--line-pattern {
    left: 400px;
}
.map-detail-items__item--hidden {
    display: none;
}
.map-detail-items__item {
    padding: 25px 32px;
}
.map-detail-items__item-svg {
    position: absolute;
    right: 6px;
    top: 8px;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
}
.map-detail-items__item-svg:not(:hover) svg path {
    fill: #999;
}
.map-detail-items__item-close {
    width: 10px;
    height: 10px;
}
.map-detail-items__item-title {
    margin-bottom: 18px;
}
.map-detail-items__item-property {
    margin-top: 10px;
}
.map-detail-items__item-buttons {
    margin-top: 24px;
}
#BX_YMAP_MAP_ID {
    height: 500px;
    min-height: 400px;
}

.bx-map-view-layout {
    height: 500px;
    margin-bottom: 40px;
}
/* ======= */
.contacts__row {
    display: grid;
    grid-template-columns: minmax(400px, 874px) 1fr;
    gap: 50px;
}
.contacts__left {
    width: 100%;
}
.contacts__right {
    width: 100%;
}
.contacts__block-sticky {
    position: sticky;
    top: 20px;
}
.contacts__block {
    width: 100%;
    min-width: 370px;
    background: #fff;
    z-index: 20;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
}
.contact-property__label {
    color: #8c959c;
    font-size: 16px;
    margin-bottom: 5px;
}
.contact-property--address .contact-property__value {
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 20px;
}
.contact-property--phones .contact-property__value a {
    color: #000;
    font-size: 16px;
    line-height: 20px;
}
.contact-property--email .contact-property__value a {
    color: #000;
    font-size: 16px;
}
.contacts__sticky-panel__btn-wraper {
    border-radius: 100px;
    height: 50px;
    padding: 0 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #009474;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 24px;
}
.contacts__cards {
    width: auto;
}
.contacts__card {
    height: auto;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 12px;
    padding: 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    position: relative;
}
.contacts__card-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.contacts__card-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}
.contacts__card-content {
    padding-right: 100px;
}
.contacts__card-address {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}
.contacts__card-operating {
    font-size: 16px;
    color: #8c959c;
    margin-bottom: 20px;
}
.contacts__card-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}
.contacts__card-contact a {
    color: #000;
    font-size: 16px;
    line-height: 20px;
}
.contacts__card-pin {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.contacts__card-pin > svg path {
    fill: #000;
}
.contacts__card-arrow {
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 50px;
}

@media (max-width: 1024px) {
    .contacts__row {
        grid-template-columns: 1fr;
    }
    #BX_YMAP_MAP_ID {
        max-width: 100%;
        min-width: 530px;
        height: 500px;
        min-height: 400px;
    }
    .bx-map-view-layout {
        max-width: 100%;
        height: 500px;
        margin-bottom: 40px;
    }
    .contacts__block {
        /* width: 200px;
        min-width: unset; */
    }
    .contacts__left {
        order: 2; /* Левая колонка с картой будет второй */
    }
    .contacts__right {
        order: 1; /* Правая колонка с контактами будет первой */
    }
    .contacts__card {
        grid-template-columns: 1fr;
    }
    .contacts__card-content {
        padding-right: 0;
    }
    .contacts__card-image {
        max-height: 270px;
    }
    .contacts__card-arrow {
        right: 24px;
        bottom: 24px;
        top: unset;
    }
}
@media (max-width: 530px) {
    .map-detail-items__item {
        padding-left: 28px;
        padding-right: 28px;
    }
    .contacts__card {
        gap: 15px;
        padding: 20px 15px;
    }
    .contacts__card-address {
        font-size: 18px;
    }
    .contacts__card-operating {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .contacts__card-contact {
        gap: 0px;
    }
    .contacts__card-contact a {
        font-size: 14px;
    }
    .contacts__card-pin {
        font-size: 16px;
    }

    .contacts__card-image {
        max-height: 200px;
    }
}

@media (any-hover: hover) {
    .contacts__card-address:hover {
        color: #009474;
    }
    .contacts__card-contact a:hover {
        color: #03745b;
    }
    .contacts__card-pin:hover {
        color: #03745b;
    }
    .contacts__card-pin:hover > svg path {
        fill: #03745b;
    }
}
/* End */


/* Start:/local/templates/gotoural/components/bitrix/map.yandex.view/map/style.css?17326948995009*/
.bx-yandex-map,
.ymaps-map {
  width: auto !important;
}
.map-detail-items__item--hidden {
  display: none;
}
.map-detail-items__item {
  padding: 25px 32px;
}
.map-detail-items__item-svg {
  position: absolute;
  right: 6px;
  top: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
}
.map-detail-items__item-svg:not(:hover) svg path {
  fill: #999;
}
.map-detail-items__item-close {
  width: 10px;
  height: 10px;
}
.map-detail-items__item-title {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
}
.map-detail-items__item-title a {
  color: #333;
}
.map-detail-items__item-title a:hover {
  color: #009474;
}
.map-detail-items__item-property-title {
  color: #8c959c;
  font-size: 16px;
  margin-bottom: 5px;
}
.map-detail-items__item-property-value,
.map-detail-items__item-property-value a {
  color: #000;
  font-size: 16px;
  line-height: 20px;
}
.map-detail-items__item-property {
  margin-top: 10px;
}
.map-detail-items__item-buttons {
  display: none;
}
.ymaps-point-overlay path.fill-theme-svg {
  fill: #009474;
}
.contacts__sticky-panel__property {
  margin-bottom: 10px;
}

body .contacts-page-map-top .ymaps-b-balloon {
  padding: 0;
  width: 366px !important;
  margin: 4px 0 0 -1px;
}

body .contacts-map-top-frame .ymaps-b-balloon {
  padding: 0;
  width: 344px !important;
  margin: 4px 0 0 -1px;
}

.front_map.bx-yandex-view-map {
  position: relative;
  overflow: hidden;
  margin: 0px;
  border: none;
}
.bx-yandex-view-map .bx-yandex-map img {
  position: absolute;
  left: 0px;
  right: 0px;
}
body .ymaps-b-balloon__content {
  background: var(--card_bg_black);
}
.body .ymaps-b-balloon {
  margin: -54px 0 0 -38px;
  width: 344px !important;
  background: #fff;
  border-radius: 3px;
  padding: 25px 45px 30px 32px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(18, 25, 38, 0.1);
  -moz-box-shadow: 0px 5px 20px 0px rgba(18, 25, 38, 0.1);
  box-shadow: 0px 5px 20px 0px rgba(18, 25, 38, 0.1);
}
.body .ymaps-b-balloon:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 19px;
  z-index: 2;
  background: #fff;
  background: var(--card_bg_black);
}
/*.ymaps-b-balloon .ymaps-b-balloon__content > ymaps {*/
/*  width: 100% !important;*/
/*  height: auto !important;*/
/*}*/
.ymaps-b-balloon .ymaps-b-balloon__content-holster {
  padding: 30px;
  background: white;
  border-radius: 30px;
}
.ymaps-b-balloon .ymaps-b-balloon__tr {
  display: none;
}
.ymaps-b-balloon .ymaps-b-balloon__tl {
  display: none;
}
.ymaps-b-balloon .ymaps-b-balloon__content {
  border: none;
}
.ymaps-b-balloon .ymaps-b-balloon__bl {
  display: none;
}
.ymaps-b-balloon .ymaps-b-balloon__br {
  display: none;
}
.ymaps-b-balloon .ymaps-b-balloon__close {
  top: 8px !important;
  right: 8px !important;
  width: 26px !important;
  height: 26px !important;
  background: none !important;
  border-radius: 100% !important;
  transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
}
.ymaps-b-balloon .ymaps-b-balloon__close:before {
  content: "";
  position: absolute;
  top: 20%;
  left: -5px;
  margin: -5px 0 0 -5px;
  width: 32px;
  height: 32px;
  background: url(/local/templates/gotoural/components/bitrix/map.yandex.view/map/../../../../images/detail/icons/close-icon.png) no-repeat;
  transition: opacity ease 0.3s;
}
.ymaps-b-balloon .ymaps-b-balloon__close:hover:before {
  opacity: 0.5;
}


.ymaps-b-balloon:before {
  content: "";
  background: #fff;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  margin-left: -6px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ymaps-shadows-pane {
  display: none;
}
.ymaps-b-balloon__content-body .pane_info_wrapper .pane_info .value-block {
  color: #555;
  font-size: 13px;
  padding-left: 24px;
  padding-bottom: 11px;
}
.ymaps-b-balloon__content-body .pane_info_wrapper .pane_info .value-block:last-of-type {
  padding-bottom: 0px;
}
.ymaps-b-balloon__content-body .pane_info_wrapper .pane_info .value-block .svg-inline-metro {
  top: 3px;
}
.ymaps-b-balloon__content-body .pane_info_wrapper .pane_info .value-block .svg-inline-email {
  top: 2px;
}
.ymaps-b-balloon__content-body .pane_info_wrapper .pane_info .value-block a:not(:hover) {
  color: #555;
}
.cluster_custom svg .cls-cluster2 {
  fill: #009474;
}
.cluster_custom span {
  z-index: 2;
  position: relative;
}
.cluster_custom svg {
  position: absolute;
  left: 0;
}

@media (max-width: 530px) {
  .map-detail-items__item {
    padding-left: 28px;
    padding-right: 28px;
  }
  .bx-map-view-layout,
  .ymaps-map,
  .bx-yandex-map {
    height: 250px !important;
  }
  .ymaps-b-balloon .ymaps-b-balloon__close {
    top: 10px !important;
    right: 20px !important;
  }
}
/* End */


/* Start:/local/templates/gotoural/components/bitrix/map.yandex.system/map/style.css?1732694899600*/
div.bx-yandex-map {color: black;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td{padding: 0px !important;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b{background-image: none !important;}
/* End */


/* Start:/bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1730192073666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */
/* /local/templates/gotoural/components/bitrix/news/contacts/style.css?17326948995192 */
/* /local/templates/gotoural/components/bitrix/map.yandex.view/map/style.css?17326948995009 */
/* /local/templates/gotoural/components/bitrix/map.yandex.system/map/style.css?1732694899600 */
/* /bitrix/components/bitrix/map.yandex.system/templates/.default/style.css?1730192073666 */
