

/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html.content/p2p-promo-hero/style.css?17884305283290*/
/* ============================================================
   P2P-промо: hero — тёмная карточка с одной картинкой
   Базовые стили компонента, страничный style.css их перекрывает.
   ============================================================ */

.p2p-hero-section {
	padding: 0.5rem 0 0;
}

.p2p-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 650px;
	padding: 2rem;
	border-radius: 1.5rem;
	background-color: #00100a;
	overflow: hidden;
	isolation: isolate;
}

/* картинка одна на все экраны: на мобилке она фон, на десктопе — правая половина */
.p2p-hero__art {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
}

.p2p-hero__art img {
	width: 100%;
	height: 335px;
	object-fit: cover;
	margin-top: auto;
	object-position: 95% center;
}

/* затемнение под текстом — на мобилке снизу вверх, на десктопе слева направо */
.p2p-hero__art::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, #010907 48%, rgba(1, 9, 7, 0) 58%);
}

.p2p-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	align-self: start;
	color: #fff;
	text-align: center;
}

.p2p-hero__title {
	margin: 0;
	font-family: var(--font-family-headline);
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.1;
	letter-spacing: -0.0125rem;
	color: inherit;
	text-align: inherit;
}

.p2p-hero__text {
	margin: 0;
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.333;
	color: inherit;
	text-align: inherit;
}

.p2p-hero__content>.p2p-hero__title+.p2p-hero__text {
	margin-top: -1rem;
}

.p2p-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.p2p-hero__actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 3rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 999px;
	font-family: var(--font-family-body);
	font-weight: 600;
	font-size: 1rem;
	line-height: normal;
	text-decoration: none;
	cursor: pointer;
}

/* в макете первая кнопка белая, вторая — фирменная зелёная */
.p2p-hero__actions .button--secondary {
	background-color: #fff;
	color: #151617;
}

.p2p-hero__actions .button--primary {
	background-color: #377420;
	color: #fff;
}

@media (min-width: 768px) {

	.p2p-hero-section {
		padding: 0.5rem 0 0;
	}

	.p2p-hero {
		min-height: 33.75rem;
		padding: 3.75rem 2.75rem;
		border-radius: 2rem;
	}

	.p2p-hero__art {
		left: auto;
		width: 72%;
	}

	.p2p-hero__art img {
		object-position: right center;
		height: 100%;
		margin-top: 0;
	}

	.p2p-hero__art::after {
		background: linear-gradient(to right, #010907 19.7%, rgba(1, 9, 7, 0) 41%);
	}

	.p2p-hero__content {
		gap: 2rem;
		width: 32.0625rem;
		max-width: 60%;
		margin-top: 0;
		text-align: left;
		align-self: center;
	}

	.p2p-hero__title {
		font-size: 3rem;
		letter-spacing: -0.0125rem;
	}

	.p2p-hero__text {
		font-size: 1.125rem;
	}

	.p2p-hero__actions {
		gap: 1rem;
		flex-wrap: wrap;
		flex-direction: row;
	}
}
/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html.content/p2p-promo-cards/style.css?17884305281608*/
/* ============================================================
   P2P-промо: карточки-преимущества (иконка + заголовок + текст)
   Базовые стили компонента, страничный style.css их перекрывает.
   ============================================================ */

.p2p-cards-section {
	padding: 1.5rem 0;
}

.p2p-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.p2p-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 1rem;
	background-color: #f6f7fa;
}

.p2p-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0.75rem;
	border-radius: 0.625rem;
	background-color: #fff;
	line-height: 0;
}

.p2p-card__icon img {
	width: 1.5rem;
	height: 1.5rem;
}

.p2p-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
}

.p2p-card__title {
	margin: 0;
	font-family: var(--font-family-headline);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.17;
	color: #242424;
}

.p2p-card__text {
	margin: 0;
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.33;
	color: #242424;
}

@media (min-width: 768px) {

	.p2p-cards-section {
		padding: 2rem 0;
	}

	.p2p-cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}

	.p2p-card {
		gap: 1.5rem;
		padding: 2rem;
	}

	.p2p-card__icon {
		padding: 1rem;
	}

	.p2p-card__title {
		font-size: 1.5rem;
	}

	.p2p-card__text {
		font-size: 1.125rem;
		line-height: 1.333;
	}
}

/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html.content/gold-bars-purchase/style.css?1786440646475*/
/* ============================================================
   Покупка и обратный выкуп слитка — две колонки со списками
   ============================================================ */

.gold-purchase__row {
    --bs-gutter-x: 1rem;
}

.gold-purchase__col {
    display: flex;
}

.gold-purchase__col>* {
    flex: 1 1 auto;
}

@media (min-width: 768px) {
    .gold-purchase__row {
        --bs-gutter-x: 1.5rem;
    }
}
/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html.content/microloan-promo-icon-list/style.css?17865286331578*/
/* ============================================================
   Список с иконкой-маркером (независимый компонент)
   ============================================================ */

.icon-list {
    order: 2;
    padding: 1rem;
    border-radius: 1rem;
    background: var(--bg);
}

.icon-list--success {
    --bg: #ecf8e7;
    --point-bg: #d7efc9;
    --point-color: #1f7a40;
}

.icon-list--error {
    --bg: #fff0f2;
    --point-bg: #ffe0e4;
    --point-color: #e0334f;
}

.icon-list__title {
    margin: 0 0 1rem;
    font-family: var(--promo-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.17;
    color: var(--promo-text);
}

.icon-list__list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.icon-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.37;
    color: var(--promo-text);
    margin: 0;
}

.icon-list__point {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.0625rem;
    border-radius: 0.75rem;
    background: var(--point-bg);
    color: var(--point-color);
}

.icon-list__point img {
    width: 12px;
    height: 12px;
}

@media (min-width: 768px) {
    .icon-list {
        order: 1;
        flex: 1 1 0;
        min-width: 0;
        padding: 2rem;
        border-radius: 2rem;
    }

    .icon-list__title {
        font-size: 1.5rem;
    }
}
/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html.content/microloan-promo-how-it-works/style.css?17884307034613*/
/* ============================================================
   Три шага и вы участник
   ============================================================ */

.promo-steps {
    padding: 1.5rem 1rem;
    border-radius: 1.5rem;
    margin: 0 -.75rem;
    background: var(--container-high);
}

.promo-steps__row {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.promo-steps__slider-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
}

.promo-steps__row::-webkit-scrollbar {
    display: none;
}

.promo-steps__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    flex: 0 0 300px;
    min-height: 562px;
    width: 300px;
    overflow: hidden;
    padding: 1.5rem 1rem;
    border-radius: 1.5rem;
    background: var(--container-higher);
    scroll-snap-align: center;
}

.promo-steps__card-head {
    text-align: center;
}

.promo-steps__card-title {
    margin: 0 0 0.5rem;
    font-family: var(--hero-font-family);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.33;
}

.promo-steps__card-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.37;
    color: var(--on-surface-variant);
}

.promo-steps__card-img {
    display: flex;
    justify-content: center;
    min-height: 0;
    height: 388px;
    margin-top: auto;
}

.promo-steps__card-img img {
    height: 402px;
    align-self: flex-start;
}

.promo-steps__cell {
    position: absolute;
    left: 50%;
    bottom: 1.625rem;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    width: 289px;
    padding: 0.75rem;
    gap: 0.75rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .08);
    text-align: left;
}

.promo-steps__cell-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 31px;
    flex-shrink: 0;
    border-radius: 0.375rem;
    background: #e4d6ff;
}

.promo-steps__cell-icon img {
    width: 14px;
    height: 14px;
}

.promo-steps__cell-body {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    flex: 1 0 0;
    min-width: 0;
}

.promo-steps__cell-sum {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.0125rem;
    color: #2a2b2e;
}

.promo-steps__cell-sum em {
    font-style: normal;
    color: #7d828b;
}

.promo-steps__cell-sub {
    font-size: 0.71875rem;
    line-height: 1.33;
    color: #7d828b;
}

.promo-steps__cell-arrow {
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.promo-steps__cell-arrow img {
    width: 16px;
    height: 16px;
}



.how-it-works-slider .splide__arrows {
    display: flex;
    padding: .625rem .75rem;
    border-radius: var(--radius-999);
    background-color: var(--container-higher);
    align-self: center;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: min-content;
    gap: .5rem;
}

.how-it-works-slider .splide__arrows .splide__arrow {
    position: static;
    transform: none;
    width: 2.75rem;
    height: 2.75rem;
    transform: none;
    background-color: var(--container-high);
}

.how-it-works-slider .splide__arrows .splide__arrow:disabled {
    background-color: var(--container-lower);
}

@media (min-width: 768px) {
    .promo-steps {
        padding: 4rem 1.5rem;
        border-radius: 2rem;
        margin: 0;
    }

    .promo-steps__row {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .promo-steps__card {
        flex: 1 1 0;
        max-width: 411px;
        width: auto;
        min-height: 570px;
        padding: 2rem;
    }

    .promo-steps__card-title {
        font-size: 1.5rem;
        line-height: 1.17;
        font-weight: 600;
    }

    .promo-steps__card-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .promo-steps__card-img {
        height: 370px;
    }

    .how-it-works-slider .splide__arrows {
        display: none;
    }
}
/* Кнопки под слайдером: сами .button стилизует template_styles.css,
   здесь только раскладка. */
.promo-steps__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {

    .promo-steps__actions {
        gap: 1rem;
        margin-top: 2rem;
    }
}

/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/html.content/p2p-promo-savings/style.css?17889608634473*/
/* ============================================================
   P2P-промо: «Перевод N без комиссии» — текст слева, пример справа
   Базовые стили компонента, страничный style.css их перекрывает.
   ============================================================ */

.p2p-savings-section {
	padding: 2.5rem 0;
}

.p2p-savings {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.p2p-savings__content {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	align-items: center;
	text-align: center;
}


.p2p-savings__content .p2p-savings__actions {
	display: none;
}

.p2p-savings__title {
	margin: 0;
	font-family: var(--font-family-headline);
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 1.1;
	color: var(--on-surface);
}

.p2p-savings__text {
	margin: 0;
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.333;
	color: var(--on-surface-variant);
}

.p2p-savings__actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 3rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 999px;
	background-color: #52ae30;
	font-family: var(--font-family-body);
	font-weight: 600;
	font-size: 1rem;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}

/* карточка примера: картинка фоном, поверх — «стеклянные» плашки */
.p2p-savings__example-wrapper {
	display: flex;
	flex-direction: column;
	gap: .625rem;
}

.p2p-savings__example-text {
	padding: 0 .75rem;
	color: var(--on-surface-variant);
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 123%;
}

.p2p-savings__example {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	padding: 1rem;
	border-radius: 1.75rem;
	background-color: #00100a;
	overflow: hidden;
	isolation: isolate;
}

.p2p-savings__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p2p-savings__badge,
.p2p-savings__rows {
	position: relative;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background-color: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(45px);
	backdrop-filter: blur(45px);
}

.p2p-savings__badge {
	padding: 0.75rem 2rem;
	border-radius: 999px;
	font-family: var(--font-family-body);
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.33;
	color: #fff;
}

.p2p-savings__rows {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: .75rem;
	border-radius: 1.5rem;
}

.p2p-savings__row {
	display: flex;
	gap: 0.25rem;
	padding: 1rem;
	justify-content: space-between;
	align-items: center;
}

.p2p-savings__row:not(:first-child) {
	border-top: 1px dashed #9598A0;
}

.p2p-savings__row-label {
	font-family: var(--font-family-body);
	font-weight: 400;
	font-size: .875rem;
	line-height: 1.28;
	color: rgba(255, 255, 255, 0.8);
}

.p2p-savings__row-value {
	font-family: var(--font-family-headline);
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.17;
	text-align: right;
	color: rgba(255, 255, 255, 0.9);
}

/* ряд с нашей комиссией — без прозрачности, он и есть ответ блока */
.p2p-savings__row.p2p-savings__row--accent {
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
	border: none;
}

.p2p-savings__row--accent .p2p-savings__row-value,
.p2p-savings__row--accent .p2p-savings__row-label {
	color: #fff;
}

@media (min-width: 768px) {

	.p2p-savings__example-wrapper {
		width: 33.25rem;
		max-width: 50%;
	}

	.p2p-savings__example-text {
		padding: 0 2rem;
	}

	.p2p-savings-section {
		padding: 5rem 0;
	}

	.p2p-savings {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 2.5rem;
	}

	.p2p-savings__content {
		gap: 1.25rem;
		max-width: 36rem;
		text-align: left;
		align-items: flex-start;
	}

	.p2p-savings__content .p2p-savings__actions {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.p2p-savings__title {
		font-size: 2.5rem;
	}

	.p2p-savings__text {
		max-width: 21.25rem;
		font-size: 1.125rem;
	}

	.p2p-savings__example {
		flex-shrink: 0;
		padding: 2rem;
		border-radius: 2.5rem;
	}

	.p2p-savings__rows {
		padding: 1.5rem;
	}

	.p2p-savings__row-label {
		font-size: 1.125rem;
	}

	.p2p-savings__row-value {
		font-size: 1.5rem;
	}
}
/* End */


/* Start:/local/templates/ipotekatmpl/components/ipotekabank/panel_single/index_mob_app_v4/style.css?17885064154788*/
/* v2-only: scoped to avoid conflict with index_mob_app */
.promo-section-v4 .promo-block {
    position: relative;
    background: var(--color-main-green);
    color: var(--color-white);
    padding: var(--space-3x);
    border-radius: var(--radius-24);
    text-align: center;
    overflow: hidden;
    font-family: var(--font-family-squad);
}

.promo-section-v4 .promo-block .row {
    position: relative;
    z-index: 10;
}

.promo-section-v4 .promo-block .promo__title {
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-28);
}

.promo-section-v4 .promo-block .promo__texts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.promo-section-v4 .promo-block .promo__text-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.promo-section-v4 .promo-block .promo__text-item p {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 0;
}

.promo-section-v4 .promo-block .promo__subtitle {
    --font-size: var(--body-font-size);
    --line-height: var(--body-line-height);
    --font-weight: var(--body-font-weight);
    --font-family: var(--body-font-family);
    font-family: var(--font-family-squad);
    font-weight: var(--font-weight);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--color-white);
    margin-bottom: 0;
}

.promo-section-v4 .row.promo-row {
    justify-content: space-between;
    row-gap: var(--space-3x);
}

.promo-section-v4 .promo__bg {
    position: absolute;
    right: -1rem;
    bottom: -10rem;
    z-index: 0;
}

.promo-section-v4 .promo__btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.promo-section-v4 .promo__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.promo-section-v4 .promo__screens {
    margin-top: var(--space-3x);
    position: relative;
    height: 17rem;
}

.promo-section-v4 .promo-screen-1,
.promo-section-v4 .promo-screen-2 {
    position: absolute;
}

.promo-section-v4 .promo-block-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: space-between;
}

.promo-section-v4 .promo-screen-1 {
    top: 5rem;
    left: 0rem;
}

.promo-section-v4 .promo-screen-2 {
    right: 0;
    top: -0.5rem;
}

.promo-section-v4 .promo__qr {
    display: none;
    padding: 0.75rem;
    gap: var(--space-2x);
    max-width: 290px;
    border-radius: var(--radius-16);
    background-color: var(--container-higher);
}

.promo-section-v4 .promo__qr .promo__qr__img {
    display: flex;
    width: 7.5rem;
    height: 7.5rem;
    object-fit: cover;
}

.promo-section-v4 .promo__qr .promo__qr__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-content: center;
}

.promo-section-v4 .promo__qr .promo__qr__title {
    font-size: 1.25rem;
    line-height: 1.2;
    font-family: var(--hero-font-family);
    color: var(--on-surface);
}

.promo-section-v4 .promo__qr .promo__qr__btns {
    display: flex;
    gap: var(--space-base);
}

.promo-section-v4 .promo__bottom-text {
    font-size: 13px;
    line-height: 1.2;
    color: #50545d;
    padding: var(--space-2x) var(--space-3x);
}

@media (min-width: 578px) {
    .promo-section-v4 .promo__qr {
        display: flex;
    }

    .promo-section-v4 .promo-block .promo__title {
        font-size: var(--font-size-40);
        line-height: 1.2;
    }

    .promo-section-v4 .promo__btns {
        display: none;
        justify-content: flex-start;
    }

    .promo-section-v4 .promo__logo {
        justify-content: flex-start;
    }

    .promo-section-v4 .promo-block {
        text-align: left;
        padding: var(--space-md) var(--space-x);
    }

    .promo-section-v4 .promo-screen-1 {
        top: 7rem;
        left: -12rem;
    }

    .promo-section-v4 .promo-screens img {
        max-width: 82.5%;
    }

    .promo-section-v4 .promo__bg {
        width: 40rem;
        top: -5rem;
        right: -2rem;
        object-fit: contain;
    }

    .promo-section-v4 .promo-block .promo__title {
        --font-size: var(--hero-title-font-size);
        --line-height: var(--hero-title-line-height);
        --font-weight: var(--hero-font-weight);
        --font-family: var(--hero-font-family);
    }
}

@media (max-width: 578px) {
    .promo-section-v4 .promo__screens img {
        max-width: 220px;
    }

    .promo-section-v4 .promo-block .promo__title {
        text-align: left;
    }

    .promo-section-v4 .promo-block .promo__subtitle {
        text-align: left;
    }
}
/* End */
/* /local/templates/ipotekatmpl/components/ipotekabank/html.content/p2p-promo-hero/style.css?17884305283290 */
/* /local/templates/ipotekatmpl/components/ipotekabank/html.content/p2p-promo-cards/style.css?17884305281608 */
/* /local/templates/ipotekatmpl/components/ipotekabank/html.content/gold-bars-purchase/style.css?1786440646475 */
/* /local/templates/ipotekatmpl/components/ipotekabank/html.content/microloan-promo-icon-list/style.css?17865286331578 */
/* /local/templates/ipotekatmpl/components/ipotekabank/html.content/microloan-promo-how-it-works/style.css?17884307034613 */
/* /local/templates/ipotekatmpl/components/ipotekabank/html.content/p2p-promo-savings/style.css?17889608634473 */
/* /local/templates/ipotekatmpl/components/ipotekabank/panel_single/index_mob_app_v4/style.css?17885064154788 */
