

/* Start:/local/components/bitrix/map.yandex.view/templates/custom_map/style.css?17778926452076*/
.contacts {
    max-width: 1480px;
    margin: 0 auto;
    padding: 48px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial;
    color: #0F172A;
}

/* HEADER */
.contacts__header {
    margin-bottom: 28px;
}

.contacts__header h1 {
    font-size: 36px;
    margin: 0;
}

.contacts__header p {
    margin-top: 6px;
    color: #64748B;
}

/* GRID */
.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* CARD */
.contacts__card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

/* COMPANY */
.contacts__company {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ROWS */
.contacts__row {
    margin-bottom: 14px;
}

.contacts__label {
    font-size: 15px;
    color: #64748B;
}

.contacts__value {
    font-size: 15px;
    margin-top: 2px;
    color: #0F172A;
}

/* ACTIONS */
.contacts__actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

/* PRIMARY (зелёный muted) */
.btn--primary {
    background: #2F7D6B;
    color: #fff;
}

.btn--primary:hover {
    background: #276B5C;
    transform: translateY(-1px);
}

/* SECONDARY (фиолетовый outline) */
.btn--secondary {
    background: #F4F3FB;
    color: #5A50C8;
    border-color: #D6D2F3;
}

.btn--secondary:hover {
    background: #E9E7FA;
}

/* MAP */
.contacts__map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

#contacts-map {
    width: 100%;
    height: 420px;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .contacts__grid {
        grid-template-columns: 1fr;
    }

    .contacts__map {
        order: -1;
        height: 320px;
    }
}
/* End */


/* Start:/local/components/bitrix/menu/templates/personal/style.css?17810342161850*/
#personalMenuWrap {
	position: sticky;
	top: 0;
	-z-index: 100;

	display: flex;
	align-items: center;
	gap: 8px;

	padding: 10px 12px;

	-background: rgba(255,255,255,0.75);
	-backdrop-filter: blur(12px);

	-border-bottom: 1px solid #e2e8f0;
	border-radius: 16px;
	margin-bottom: 15px;
	
}

/* SCROLL AREA */
#personalMenu {
	display: flex;
	gap: 10px;
	flex: 1;

	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;

	scroll-snap-type: x proximity;

	scrollbar-width: none;
}
#personalMenu::-webkit-scrollbar {
	display: none;
}

/* PILLS */
.navItem {
	flex: 0 0 auto;

	padding: 10px 14px;
	border-radius: 999px;

	font-size: 14px;
	font-weight: 500;

	text-decoration: none;

	color: #334155;
	background: #f1f5f9;

	white-space: nowrap;

	transition: all .18s ease;
}

.navItem:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.navItem.is-active {
	background: #2f7d6b;
	color: #fff;
	box-shadow: 0 8px 24px rgba(47,125,107,0.25);
}

/* ARROWS — Stripe style overlay */
.navArrow {
	width: 36px;
	height: 36px;

	border-radius: 12px;
	border: 1px solid #e2e8f0;

	background: #fff;

	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;

	transition: .15s ease;

	user-select: none;
}

/* hover */
.navArrow:hover {
	background: #f8fafc;
}

/* hidden state (soft fade, NOT display:none) */
.navArrow.hidden {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.95);
}

/* MOBILE: НЕ убираем стрелки полностью */
@media (max-width: 768px) {

	.navArrow {
		width: 32px;
		height: 32px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(255,255,255,0.9);
		backdrop-filter: blur(8px);
	}

	.navArrowLeft {
		left: 6px;
	}

	.navArrowRight {
		right: 6px;
	}

	#personalMenuWrap {
		position: sticky;
	}
}
/* End */
/* /local/components/bitrix/map.yandex.view/templates/custom_map/style.css?17778926452076 */
/* /local/components/bitrix/menu/templates/personal/style.css?17810342161850 */
