/* ============================================================
   FK Calculator — стилистика сайта fabrika-ks.ru
   Полосы-секции на всю ширину страницы, чередование тёмный/светлый,
   перекрытие. Контент внутри ограничен по ширине сетки.
   ============================================================ */

.fk-calc-container {
	--fk-brand:      #20B8AD;
	--fk-brand-dark: #17968d;
	--fk-brand-deep: #0e6f68;

	--fk-dark:       #111111;
	--fk-dark-2:     #000000;
	--fk-card-d:     #1c1c1c;
	--fk-light:      #ffffff;
	--fk-card-l:     #f5f5f5;

	--fk-inner:      1180px;
	--fk-r-band:     48px;
	--fk-r:          20px;
	--fk-r-sm:       14px;
	--fk-pill:       9999px;

	--fk-font: 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	font-family: var(--fk-font);
	color: #fff;
	line-height: 1.5;
	display: block;
}
.fk-calc-container, .fk-calc-container * { box-sizing: border-box; }

.fk-arrow-ico { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.18s ease; }
.fk-btn:hover .fk-arrow-ico { transform: translate(2px,-2px); }

/* ============ ВЕРХ: расчёт (по ширине сетки, без фона) ============ */
.fk-stage {
	max-width: var(--fk-inner);
	margin: 0 auto;
	/* нижний отступ компенсирует перекрытие первой полосой */
	padding: 30px 24px calc(40px + var(--fk-r-band));
}

/* ============ ПОЛОСЫ НА ВСЮ ШИРИНУ ============ */
.fk-band {
	position: relative;
	width: 100vw;
	left: 50%;
	transform: translateX(-50%);
	border-radius: var(--fk-r-band) var(--fk-r-band) 0 0;
	margin-top: calc(var(--fk-r-band) * -1);
}
.fk-band:nth-of-type(1) { z-index: 1; }
.fk-band:nth-of-type(2) { z-index: 2; }
.fk-band:nth-of-type(3) { z-index: 3; }
.fk-band:nth-of-type(4) { z-index: 4; }
.fk-band--dark  { background: var(--fk-dark); color: #ffffff; }
.fk-band--light { background: var(--fk-light); color: #111111; }
.fk-band:last-child { border-radius: var(--fk-r-band); }

/* Внутренний отступ. Блок наезжает на предыдущий и сам перекрыт следующим
   на величину --fk-r-band. Поэтому padding-bottom = padding-top + перекрытие,
   чтобы видимый отступ сверху и снизу был одинаковым.
   У последнего блока перекрытия снизу нет — там обычный отступ. */
.fk-band-inner {
	max-width: var(--fk-inner);
	margin: 0 auto;
	padding: 64px 24px calc(64px + var(--fk-r-band));
}
.fk-band:last-child .fk-band-inner { padding-bottom: 64px; }

.fk-section-title {
	font-size: 26px; font-weight: 800; margin: 0 0 30px;
	display: flex; align-items: center; gap: 10px; letter-spacing: -0.01em;
}
/* Явные цвета заголовков — тема перебивает наследование (нужен !important) */
.fk-band--dark  .fk-section-title { color: #ffffff !important; }
.fk-band--light .fk-section-title { color: #111111 !important; }
.fk-chevron { color: var(--fk-brand) !important; font-weight: 800; }

/* ============ ТАБЫ ============ */
.fk-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.fk-tab-btn {
	display: flex; align-items: center; gap: 13px;
	background: var(--fk-card-d); border: 1px solid rgba(255,255,255,0.10);
	border-radius: var(--fk-pill); padding: 11px 22px 11px 13px; cursor: pointer;
	color: #a8a8a8; font-family: inherit; font-size: 16px; font-weight: 600;
	transition: all 0.18s ease; line-height: 1.1;
}
.fk-tab-btn:hover { color: #fff; }
.fk-tab-btn.is-active { background: var(--fk-brand); border-color: var(--fk-brand); color: #fff; }
.fk-tab-num {
	display: flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%;
	background: rgba(255,255,255,0.08); font-size: 17px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.fk-tab-btn.is-active .fk-tab-num { background: rgba(0,0,0,0.22); }
.fk-tab-content { display: none; }
.fk-tab-content.is-active { display: block; animation: fkFade 0.25s ease; }
@keyframes fkFade { from {opacity:0;} to {opacity:1;} }

.fk-product-title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; color: #000000 !important; }
.fk-product-sub { font-size: 16px; color: #a8a8a8; margin-bottom: 28px; max-width: 720px; }

/* ============ СПЕЦИФИКАЦИЯ ============ */
.fk-spec { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; margin-bottom: 16px; }
.fk-spec-block { background: var(--fk-card-d); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--fk-r); padding: 24px 26px; }
.fk-spec-sample { display: flex; flex-direction: column; }
.fk-spec-label { font-size: 13px; font-weight: 600; color: #777; text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.fk-sample-price { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; color: #fff; }
.fk-sample-price .fk-rub { color: var(--fk-brand); font-size: 0.5em; margin-left: 6px; font-weight: 700; }
.fk-spec-note { font-size: 14px; color: #a8a8a8; margin-bottom: 16px; }
.fk-spec-delivery { margin-top: auto; font-size: 14px; color: #fff; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; align-items: center; gap: 10px; }
.fk-spec-key { font-size: 11px; color: #777; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid rgba(255,255,255,0.10); border-radius: 6px; padding: 3px 8px; }
.fk-price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.fk-price-table td { padding: 12px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fk-price-table tr:last-child td { border-bottom: none; }
.fk-tier-label { color: #a8a8a8; }
.fk-tier-price { text-align: right; color: #fff; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.fk-tier-price .fk-rub { color: #777; margin-left: 2px; font-weight: 400; }
.fk-tier-row.is-best .fk-tier-price, .fk-tier-row.is-best .fk-tier-price .fk-rub { color: var(--fk-brand); }
.fk-tier-row.is-current { background: rgba(32,184,173,0.10); }
.fk-tier-row.is-current .fk-tier-label, .fk-tier-row.is-current .fk-tier-price { color: var(--fk-brand); font-weight: 700; }
.fk-best-mark { display: inline-block; background: var(--fk-brand); color: #06302c; font-size: 10px; font-weight: 800; padding: 2px 7px; border-radius: 6px; margin-left: 8px; text-transform: uppercase; letter-spacing: 0.05em; vertical-align: middle; }
.fk-spec-foot { font-size: 12px; color: #777; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.10); line-height: 1.5; }

/* ============ ПАНЕЛЬ РАСЧЁТА ============ */
.fk-panel { background: var(--fk-card-d); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--fk-r); overflow: hidden; margin-bottom: 24px; }
.fk-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 26px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.fk-panel-label { font-size: 13px; font-weight: 700; color: var(--fk-brand); text-transform: uppercase; letter-spacing: 0.08em; }
.fk-panel-range { font-size: 12px; color: #777; }
.fk-qty-display { display: flex; justify-content: space-between; align-items: center; padding: 26px 26px 10px; gap: 20px; }
.fk-qty-big { display: flex; align-items: baseline; gap: 12px; }
.fk-qty-num { font-size: 66px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; color: #fff; font-variant-numeric: tabular-nums; }
.fk-qty-unit { font-size: 16px; color: #777; text-transform: uppercase; letter-spacing: 0.1em; }
.fk-qty-input { width: 130px; padding: 12px 14px; border-radius: var(--fk-r-sm); border: 1px solid rgba(255,255,255,0.16); text-align: center; font-weight: 700; font-size: 18px; color: #fff; background: var(--fk-dark-2); font-family: inherit; transition: border-color 0.15s, box-shadow 0.15s; }
.fk-qty-input:focus { outline: none; border-color: var(--fk-brand); box-shadow: 0 0 0 3px rgba(32,184,173,0.2); }
.fk-slider-wrap { padding: 8px 26px 22px; }
.fk-slider { width: 100%; height: 6px; border-radius: 3px; background: #333; -webkit-appearance: none; appearance: none; outline: none; cursor: pointer; margin: 12px 0 8px; }
.fk-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--fk-brand); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.fk-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--fk-brand); cursor: pointer; border: 3px solid #fff; }
.fk-slider-scale { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: #777; font-variant-numeric: tabular-nums; }
.fk-presets { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; }
.fk-presets-label { font-size: 11px; letter-spacing: 0.08em; color: #777; text-transform: uppercase; margin-right: 4px; }
.fk-preset { background: transparent; border: 1px solid rgba(255,255,255,0.16); color: #ddd; border-radius: var(--fk-pill); padding: 7px 18px; font-size: 14px; cursor: pointer; transition: all 0.15s; font-family: inherit; font-weight: 600; }
.fk-preset:hover { border-color: var(--fk-brand); color: #fff; }
.fk-preset.is-active { background: var(--fk-brand); border-color: var(--fk-brand); color: #06302c; font-weight: 800; }
.fk-readout { display: grid; grid-template-columns: 1fr 1.2fr 1fr; background: var(--fk-dark-2); border-top: 1px solid rgba(255,255,255,0.10); }
.fk-readout-cell { padding: 20px 22px; border-right: 1px solid rgba(255,255,255,0.10); }
.fk-readout-cell:last-child { border-right: none; }
.fk-readout-cell--accent { background: rgba(32,184,173,0.06); }
.fk-readout-label { font-size: 11px; color: #777; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; font-weight: 600; }
.fk-readout-value { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1.1; font-variant-numeric: tabular-nums; min-height: 1.1em; }
.fk-readout-cell--accent .fk-readout-value { color: var(--fk-brand); font-size: 30px; }
.fk-readout-saving { color: #7fe3da; }
.fk-readout-saving.is-hint { font-size: 13px !important; color: #777 !important; font-weight: 500; }

/* ============ КНОПКИ ============ */
.fk-btn {
	display: inline-flex; align-items: center; gap: 14px;
	background: var(--fk-card-d); color: #fff;
	border: 2px solid transparent; border-radius: var(--fk-pill);
	font-family: inherit; font-size: 15px; font-weight: 700;
	padding: 15px 26px; cursor: pointer; transition: all 0.18s ease;
	text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1;
}
.fk-btn-text { white-space: nowrap; }
.fk-btn--primary { background: var(--fk-brand); border-color: var(--fk-brand); color: #fff; }
.fk-btn--primary:hover { background: var(--fk-brand-dark); border-color: var(--fk-brand-dark); }
.fk-btn--outline { background: transparent; border-color: currentColor; }
.fk-band--dark .fk-btn--outline { color: #fff; }
.fk-band--dark .fk-btn--outline:hover { background: #fff; color: #141414; }
/* Верхняя часть (stage) на светлом фоне — outline-кнопка чёрная */
.fk-stage .fk-btn--outline { color: #111111; border-color: #111111; }
.fk-stage .fk-btn--outline:hover { background: #111111; color: #fff; border-color: #111111; }
.fk-band--light .fk-btn--outline { color: #1a1a1a; }
.fk-band--light .fk-btn--outline:hover { background: #1a1a1a; color: #fff; }
.fk-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.16); color: #a8a8a8; text-transform: none; letter-spacing: 0.01em; font-weight: 600; font-size: 14px; padding: 11px 20px; }
.fk-band--dark .fk-btn--ghost:hover, .fk-stage .fk-btn--ghost:hover { border-color: #fff; color: #fff; }
.fk-band--light .fk-btn--ghost { border-color: rgba(0,0,0,0.18); color: #555; }
.fk-band--light .fk-btn--ghost:hover { border-color: #1a1a1a; color: #1a1a1a; }
.fk-btn--lg { padding: 17px 32px; font-size: 16px; }
.fk-inline-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 0; }

/* ============ ПРЕИМУЩЕСТВА (светлая) ============ */
.fk-advantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.fk-advantage-item {
	background: var(--fk-card-l); border: 1px solid #ececec;
	border-radius: var(--fk-r); padding: 26px 24px;
	display: flex; flex-direction: column; gap: 18px;
	transition: border-color 0.18s, transform 0.18s;
}
.fk-advantage-item:hover { border-color: var(--fk-brand); transform: translateY(-3px); }
.fk-advantage-num {
	display: flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; border-radius: 16px;
	background: var(--fk-brand); color: #fff !important; font-size: 24px; font-weight: 800;
}
.fk-advantage-text { font-size: 16px; font-weight: 500; color: #111111 !important; line-height: 1.45; }

/* ============ ТАЙМЛАЙН (тёмная) ============ */
.fk-timeline { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; padding: 70px 0; min-height: 80px; }
.fk-timeline-track { position: absolute; left: 4%; right: 4%; top: 50%; height: 3px; background: linear-gradient(90deg, var(--fk-brand-deep), var(--fk-brand)); transform: translateY(-50%); border-radius: 2px; }
.fk-timeline-step { position: relative; display: flex; flex-direction: column; align-items: center; }
.fk-timeline-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--fk-brand); color: #fff !important; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; z-index: 2; border: 5px solid var(--fk-dark); box-shadow: 0 0 0 1px var(--fk-brand); }
.fk-timeline-label { position: absolute; left: 50%; transform: translateX(-50%); width: 150px; text-align: center; font-size: 14px; color: #ffffff !important; font-weight: 500; line-height: 1.35; }
.fk-timeline-step.is-top .fk-timeline-label { bottom: calc(50% + 40px); }
.fk-timeline-step.is-bottom .fk-timeline-label { top: calc(50% + 40px); }

/* ============ FAQ (светлая) ============ */
.fk-faq { display: flex; flex-direction: column; gap: 12px; }
.fk-faq-item { background: var(--fk-card-l); border: 1px solid #ececec; border-radius: var(--fk-r); overflow: hidden; }
.fk-faq-question { width: 100%; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; font-family: inherit; text-align: left; }
.fk-faq-text { font-size: 18px; font-weight: 700; color: #111111 !important; }
.fk-faq-toggle { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--fk-brand); position: relative; transition: background 0.2s; }
.fk-faq-toggle::before, .fk-faq-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2.5px; background: #fff; border-radius: 2px; transform: translate(-50%,-50%); transition: opacity 0.2s, background 0.2s; }
.fk-faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.fk-faq-item.is-open .fk-faq-toggle { background: #1a1a1a; }
.fk-faq-item.is-open .fk-faq-toggle::after { opacity: 0; }
.fk-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.fk-faq-item.is-open .fk-faq-answer { max-height: 600px; }
.fk-faq-answer-inner { margin: 0 16px 16px; padding: 18px 20px; border: 1px solid rgba(0,0,0,0.08); border-radius: var(--fk-r-sm); color: #555; font-size: 15px; line-height: 1.6; }
.fk-faq-answer-inner p { margin: 0; }

/* ============ CTA-полоса ============ */
.fk-cta-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.fk-flex-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ============ МОДАЛКА ============ */
.fk-modal { --fk-brand: #20B8AD; --fk-font: 'Onest', system-ui, sans-serif; }
.fk-modal[hidden] { display: none; }
.fk-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; font-family: var(--fk-font); }
.fk-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); }
.fk-modal-window { position: relative; background: #fff; border-radius: 24px; max-width: 460px; width: 100%; padding: 30px 32px 26px; box-shadow: 0 30px 70px -15px rgba(0,0,0,0.5); color: #1a1a1a; animation: fkModalIn 0.22s cubic-bezier(0.16,1,0.3,1); overflow: hidden; }
.fk-modal-window::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #20B8AD; }
@keyframes fkModalIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fk-modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: #f1f1f1; border: none; cursor: pointer; font-size: 20px; color: #555; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.fk-modal-close:hover { background: #20B8AD; color: #fff; }
.fk-modal-title { font-size: 22px; font-weight: 800; margin: 4px 0 14px; padding-right: 36px; letter-spacing: -0.01em; }
.fk-modal-body { font-size: 15px; line-height: 1.6; color: #555; white-space: pre-wrap; }
.fk-modal-summary { margin: 4px 0 18px; border: 1px solid #ececec; border-radius: 14px; overflow: hidden; }
.fk-modal-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 16px; font-size: 14px; border-bottom: 1px solid #f1f1f1; }
.fk-modal-summary-row:last-child { border-bottom: none; }
.fk-modal-summary-row span { color: #777; }
.fk-modal-summary-row b { color: #1a1a1a; font-weight: 700; }
.fk-modal-summary-row--total { background: #f0fdfc; }
.fk-modal-summary-row--total b { color: #0e6f68; font-size: 19px; }
.fk-lead-form { display: flex; flex-direction: column; gap: 11px; }
.fk-lead-input { width: 100%; padding: 14px 16px; border: 1.5px solid #ddd; border-radius: 14px; font-size: 15px; font-family: inherit; color: #1a1a1a; background: #fff; transition: border-color 0.15s, box-shadow 0.15s; }
.fk-lead-input:focus { outline: none; border-color: #20B8AD; box-shadow: 0 0 0 3px rgba(32,184,173,0.14); }
.fk-lead-file { display: block; cursor: pointer; }
.fk-lead-file input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; clip: rect(0 0 0 0); }
.fk-lead-file-btn { display: block; padding: 13px 16px; border: 1.5px dashed #ccc; border-radius: 14px; font-size: 14px; color: #555; text-align: center; transition: all 0.15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fk-lead-file:hover .fk-lead-file-btn { border-color: #20B8AD; color: #0e6f68; background: #f0fdfc; }
.fk-lead-submit { width: 100%; justify-content: center; margin-top: 4px; color: #fff; }
.fk-lead-msg { font-size: 14px; text-align: center; min-height: 1em; padding-top: 2px; }
.fk-lead-msg.is-ok { color: #0e6f68; }
.fk-lead-msg.is-err { color: #c0392b; }

.fk-calc-error { padding: 22px 24px; background: #fff4f4; border: 1px solid #ffd1d1; border-radius: 14px; color: #8a1a1a; margin: 24px auto; max-width: 700px; text-align: center; font-family: var(--fk-font); }

/* ============ АДАПТИВ ============ */
@media (max-width: 960px) {
	.fk-stage { padding: 8px 18px 44px; }
	.fk-band-inner { padding: 48px 18px; }
	.fk-band { --fk-r-band: 32px; }
	.fk-spec { grid-template-columns: 1fr; }
	.fk-product-title { font-size: 24px; }
	.fk-sample-price { font-size: 38px; }
	.fk-qty-num { font-size: 52px; }
	.fk-readout { grid-template-columns: 1fr; }
	.fk-readout-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
	.fk-readout-cell:last-child { border-bottom: none; }
	.fk-advantage-grid { grid-template-columns: 1fr; }
	.fk-section-title { font-size: 21px; }

	.fk-timeline { grid-auto-flow: row; grid-auto-columns: auto; padding: 8px 0 8px 30px; }
	.fk-timeline-track { left: 30px; right: auto; top: 24px; bottom: 24px; width: 3px; height: auto; background: linear-gradient(180deg, var(--fk-brand-deep), var(--fk-brand)); transform: none; }
	.fk-timeline-step { flex-direction: row; align-items: flex-start; gap: 18px; padding: 12px 0; margin-left: -30px; }
	.fk-timeline-dot { width: 40px; height: 40px; font-size: 17px; flex-shrink: 0; }
	.fk-timeline-label { position: static; transform: none; width: auto; text-align: left; padding-top: 9px; }
	.fk-timeline-step.is-top .fk-timeline-label, .fk-timeline-step.is-bottom .fk-timeline-label { bottom: auto; top: auto; }

	.fk-tab-btn { font-size: 14px; padding: 10px 18px 10px 11px; }
	.fk-tab-num { width: 30px; height: 30px; font-size: 16px; }
	.fk-cta-strip { flex-direction: column; }
	.fk-cta-strip .fk-btn { width: 100%; justify-content: center; }
	.fk-faq-text { font-size: 16px; }
}

@media (max-width: 520px) {
	.fk-tabs { flex-direction: column; }
	.fk-tab-btn { width: 100%; }
	.fk-inline-buttons { flex-direction: column; }
	.fk-inline-buttons .fk-btn { width: 100%; justify-content: center; }
	.fk-qty-display { flex-direction: column; align-items: flex-start; gap: 14px; }
	.fk-qty-input { width: 100%; }
	.fk-modal-window { padding: 24px 22px 20px; }
}

/* ============================================================
   Стили страницы «Прайс-лист — калькулятор».
   Этот файл подключается только на странице с шорткодом [fk_calculator],
   поэтому правила ниже действуют ТОЛЬКО на ней (не на остальном сайте).
   Тёмная подложка-секция под калькулятором + футер.
   ============================================================ */
.page-id-18470 footer#uicore-tb-footer {
	background: transparent !important;
	margin-top: 30px !important;
}
.page-id-18470 .elementor-element.elementor-element-27932c9.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
	background: #111111 !important;
	padding-top: 80px !important;
	margin-top: -80px !important;
	z-index: -1 !important;
}

@media (max-width: 767px) {
	.page-id-18470 .elementor-element.elementor-element-27932c9.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
		background: #111111 !important;
		padding-top: 70px !important;
		margin-top: -60px !important;
		z-index: -1;
	}
	.page-id-18470 body:not(.home) footer#uicore-tb-footer {
		margin-top: 20px !important;
	}
}

@media screen and (max-width: 640px) {
	.page-id-18470 footer#uicore-tb-footer {
		margin-top: 20px !important;
	}
}
