

/* 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/news.detail/contacts-item/style.css?17344357983035*/
.contacts-detail .contacts__row {
    display: flex;
    align-items: stretch;
    flex-direction: row;
}
.contacts-detail__properties {
    display: flex;
    align-items: stretch;
}
.contacts-detail .contacts__col {
    position: relative;
    width: 50%;
}
.contacts__col {
    min-width: 0;
}
.contacts-detail__property {
    padding: 8px 0;
}
.contacts-detail .contacts-detail__info .contact-property__value {
    line-height: 1.47em;
}
.contacts-detail__properties > .contacts__col + .contacts__col {
    padding-left: 16px;
}
.contacts-detail__social {
    position: relative;
    margin-top: 33px;
}
.contacts-detail__social {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
}
.contacts-detail__social .social__items {
    background-color: #fff;
    padding-right: 40px;
}
.contacts__block-btn {
    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;
}
.contacts-detail .contacts__map-wrapper {
    width: 50%;
    padding-left: 24px;
}
.contacts_map-sticky {
    position: -webkit-sticky;
    position: sticky;
    z-index: 5;
    top: 20px;
}
.bottom-links-block {
    margin: 2.89rem 0 0 0;
}
.contacts-detail__social:after {
    content: " ";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    height: 1px;
    width: 80%;
    background-color: #ececec;
    margin: auto;
}
.contacts-detail__description {
    margin-top: 32px;
}
.contacts-detail .contacts__content-wrapper {
    margin: 0 0 0 auto;
    padding-right: 24px;
    padding-bottom: 50px;
}
.bottom-links-block .back-url span {
    font-size: 16px;
    color: #8c959c;
    padding-left: 8px;
}

@media (max-width: 1030px) {
    .contacts-detail .contacts__row {
        flex-direction: column-reverse;
    }
    .contacts-detail .contacts__col {
        width: 100%;
    }
    .contacts-detail .contacts__map-wrapper {
        position: relative;
        min-height: 300px;
        width: 100%;
        left: initial;
        right: initial;
        top: initial;
        bottom: initial !important;
        padding: 0;
    }
    .contacts-detail .contacts__content-wrapper {
        padding: 0;
    }
    .contacts_map-sticky {
        position: unset;
    }
}

@media (max-width: 570px) {
    .contacts-detail .contacts__map-wrapper {
        position: relative;
        min-height: 200px;
        width: 100%;
    }
    .contacts-detail__properties {
        flex-direction: column;
    }
    .contacts-detail__properties > .contacts__col + .contacts__col {
        padding: 0;
    }
    .bx-map-view-layout {
        max-width: 100%;
         min-width: 300px;
         height: 325px;
         margin-bottom: 40px;
    }
    .bx-yandex-map {
        height: 325px !important;
    }
    .contacts__row {
        gap: 0;
    }
    .contacts-detail__social:after {
        top: -20px;
        margin: 0;
        width: 100%;
    }
}

/* End */
/* /local/templates/gotoural/components/bitrix/news/contacts/style.css?17326948995192 */
/* /local/templates/gotoural/components/bitrix/news.detail/contacts-item/style.css?17344357983035 */
