.slt-wrap {
	position: relative;
	margin: 20px 0;
}

/* ---- Icon badge ---- */
.slt-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: var(--slt-accent);
	flex-shrink: 0;
}
.slt-card__icon svg {
	width: 100%;
	height: 100%;
}
.slt-card__icon--badge {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--slt-badge-bg);
	color: var(--slt-badge-color);
}
.slt-card__icon--badge svg {
	width: 20px;
	height: 20px;
}

/* ---- Card ----
   No background/border/padding here on purpose: the card is a plain block
   of content (eyebrow, title, body, buttons) with no box around it, same
   as the horizontal layout's cards — the vertical layout used to draw a
   filled, bordered box here, but it's been stripped to match. */
.slt-card__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--slt-accent);
	margin: 0 0 10px;
}
.slt-card__title {
	margin: 0 0 8px;
	font-size: 1.25em;
	line-height: 1.3;
}
.slt-card__body {
	font-size: 0.98em;
	line-height: 1.5;
}
.slt-card__body p:last-child {
	margin-bottom: 0;
}
.slt-card__body blockquote {
	margin: 10px 0 0;
	padding: 14px 16px;
	border-style: solid !important;
	border-width: 1px !important;
	border-left-width: 4px !important;
	border-color: var(--slt-box-border) !important;
	border-left-color: var(--slt-accent) !important;
	border-radius: 10px !important;
	background: rgba(255, 255, 255, 0.5);
	font-style: italic;
	color: #3a4a41;
}
.slt-card__body audio,
.slt-card__body video,
.slt-card__body img {
	max-width: 100%;
}

.slt-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--slt-accent), var(--slt-accent));
	filter: brightness(1);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
}
.slt-btn:hover {
	filter: brightness(1.12);
}
.slt-card__popup-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* ---- Dots + avatar (shared) ---- */
.slt-dot {
	position: relative;
	z-index: 2;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--slt-line-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	color: #7c8f7c;
	cursor: pointer;
	padding: 0;
}
.slt-dot:hover {
	border-color: var(--slt-accent);
}
.slt-dot.is-done {
	background: var(--slt-accent);
	border-color: var(--slt-accent);
	color: #fff;
}
.slt-avatar {
	position: absolute;
	top: 0;
	left: 0;
	width: 56px;
	height: 56px;
	transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1), top 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 3;
	pointer-events: none;
}
.slt-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	background: #fff;
	border: 3px solid #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
	display: block;
}

/* ---- Horizontal layout: zigzag (cards alternate above/below the line) ---- */
.slt-horizontal.slt-wrap {
	max-width: 1400px;
	width: calc(100% + 100px);
	margin-left: -50px;
	margin-right: -50px;
	box-sizing: border-box;
}
.slt-horizontal .slt-hline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(var(--slt-cols), minmax(160px, 1fr));
	grid-template-rows: minmax(110px, auto) 40px minmax(110px, auto);
	column-gap: 18px;
	padding: 8px 40px 12px;
}
.slt-horizontal .slt-hline__bar {
	grid-row: 2;
	grid-column: 1 / -1;
	align-self: center;
	height: 3px;
	background: var(--slt-line-color);
	border-radius: 2px;
	z-index: 0;
}
.slt-hitem {
	display: contents;
}
.slt-horizontal .slt-hitem__card {
	grid-column: var(--slt-col);
	position: relative;
	z-index: 1;
	width: calc(100% + 150px);
	margin-left: -75px;
	margin-right: -75px;
}
.slt-horizontal .slt-hitem--top .slt-hitem__card {
	grid-row: 1;
	align-self: end;
	margin-bottom: 16px;
}
.slt-horizontal .slt-hitem--bottom .slt-hitem__card {
	grid-row: 3;
	align-self: start;
	margin-top: 16px;
}
.slt-horizontal .slt-hitem--top .slt-hitem__card::after,
.slt-horizontal .slt-hitem--bottom .slt-hitem__card::before {
	content: "";
	position: absolute;
	left: 50%;
	width: 2px;
	height: 16px;
	background: var(--slt-line-color);
	transform: translateX(-50%);
}
.slt-horizontal .slt-hitem--top .slt-hitem__card::after {
	bottom: -16px;
}
.slt-horizontal .slt-hitem--bottom .slt-hitem__card::before {
	top: -16px;
}
.slt-horizontal .slt-hitem .slt-dot {
	grid-column: var(--slt-col);
	grid-row: 2;
	justify-self: center;
	align-self: center;
}

@media (max-width: 860px) {
	.slt-horizontal.slt-wrap {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.slt-horizontal .slt-hline {
		display: block;
		padding: 4px 4px 4px 40px;
	}
	.slt-horizontal .slt-hline__bar {
		position: absolute;
		left: 16px;
		top: 0;
		bottom: 0;
		width: 3px;
		height: auto;
	}
	.slt-hitem {
		display: block;
		position: relative;
		margin-bottom: 22px;
	}
	.slt-horizontal .slt-hitem__card {
		width: 100% !important;
		margin: 0 !important;
	}
	.slt-horizontal .slt-hitem__card::after,
	.slt-horizontal .slt-hitem__card::before {
		display: none;
	}
	.slt-horizontal .slt-hitem .slt-dot {
		position: absolute;
		left: -40px;
		top: 6px;
	}
	.slt-horizontal .slt-avatar {
		display: none;
	}
}

/* ---- Vertical layout ---- */
.slt-vertical {
	padding-left: 0;
}
.slt-vertical .slt-cards {
	position: relative;
	display: block;
	padding: 10px 0;
}
.slt-vertical .slt-cards::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--slt-line-color);
	transform: translateX(-50%);
	z-index: 0;
}
/* Each item is a full-width row (.slt-vitem) split into a left slot / dot
   gutter / right slot via CSS Grid, so the visible card can shrink-wrap to
   its own content instead of always filling half the width, while the dot
   still lands exactly on the centre line — on both sides, at any
   breakpoint — because it always sits in its own fixed-width middle
   column rather than being offset from the card's (now variable) edge. */
.slt-vertical .slt-vitem {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 30px 1fr;
	column-gap: 20px;
	align-items: start;
	margin-bottom: 28px;
}
.slt-vertical .slt-vitem--left .slt-card {
	grid-column: 1;
	justify-self: end;
}
.slt-vertical .slt-vitem--right .slt-card {
	grid-column: 3;
	justify-self: start;
}
.slt-vertical .slt-card {
	width: fit-content;
	max-width: 100%;
}
.slt-vertical .slt-vitem .slt-dot {
	grid-column: 2;
	justify-self: center;
	margin-top: 15px;
}
@media (max-width: 780px) {
	.slt-vertical .slt-cards::before {
		left: 18px;
	}
	.slt-vertical .slt-vitem {
		grid-template-columns: 36px 1fr;
		column-gap: 10px;
	}
	.slt-vertical .slt-vitem--left .slt-card,
	.slt-vertical .slt-vitem--right .slt-card {
		grid-column: 2;
		justify-self: start;
	}
	.slt-vertical .slt-vitem .slt-dot {
		grid-column: 1;
	}
	.slt-vertical .slt-avatar {
		width: 36px;
		height: 36px;
	}
}

/* ---- Modal / popup ---- */
.slt-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.slt-modal.is-open {
	display: flex;
}
.slt-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 30, 20, 0.6);
}
.slt-modal__box {
	position: relative;
	background: #fff;
	border-radius: 16px;
	width: var(--slt-popup-w, 80vw);
	height: var(--slt-popup-h, 80vh);
	max-width: 1200px;
	overflow-y: auto;
	padding: 34px 36px 30px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
}
.slt-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: none;
	background: #eef7ef;
	color: var(--slt-accent);
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.slt-modal__close:hover {
	background: #d9ecdb;
}
.slt-modal__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 0;
}
.slt-modal__body iframe,
.slt-modal__body video {
	flex: 1;
	width: 100%;
	height: 100%;
	border: 1px solid #e3ece2;
	border-radius: 12px;
}
.slt-modal__body video {
	background: #000;
}
@media (max-width: 700px) {
	.slt-modal__box {
		width: 94vw;
		height: 90vh;
		padding: 26px 20px 20px;
	}
}
body.slt-modal-open-lock {
	overflow: hidden;
}

/* =========================================================
   Ibilbidea / Journey nav (slt_journey shortcode)
   ========================================================= */
.ikt-journey {
	position: fixed;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	z-index: 40;
	background: #ffffff;
	padding: 18px 16px;
	margin: 0;
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(31, 58, 34, 0.18);
}
.ikt-journey__track {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	max-width: none;
	margin: 0;
}
.ikt-journey__step {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex: 0 0 auto;
}
.ikt-journey__circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 2px solid #cfe0bd;
	color: #6a756f;
	font-weight: 800;
	font-size: 15px;
	transition: all .15s ease;
	flex: 0 0 auto;
}
.ikt-journey__label {
	font-size: 12px;
	font-weight: 700;
	color: #6a756f;
	white-space: nowrap;
}
.ikt-journey__step.is-active .ikt-journey__circle {
	background: #2f4f2f;
	border-color: #2f4f2f;
	color: #fff;
	transform: scale(1.08);
}
.ikt-journey__step.is-active .ikt-journey__label {
	color: #1f3a22;
}
.ikt-journey__line {
	flex: 0 0 auto;
	width: 3px;
	height: 22px;
	background: #cfe0bd;
	margin: 2px 18.5px;
}

/* Below ~860px there isn't enough side room for a floating menu, so it
   reverts to a horizontal bar pinned to the top (its original layout). */
@media (max-width: 860px) {
	.ikt-journey {
		position: sticky;
		top: 0;
		right: auto;
		transform: none;
		z-index: 20;
		padding: 16px 0;
		border-radius: 0;
		box-shadow: none;
	}
	.ikt-journey__track {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		max-width: 520px;
		margin: 0 auto;
	}
	.ikt-journey__step {
		flex-direction: column;
		gap: 6px;
	}
	.ikt-journey__line {
		flex: 1 1 40px;
		width: auto;
		height: 3px;
		margin: 19px 6px 0 6px;
	}
}
.ikt-wrap {
	margin: 0 auto;
	padding-top: 8px;
}
.ikt-step {
	display: none;
	padding: 6px 0 10px 0;
}
.ikt-step.is-active {
	display: block;
}
.ikt-hero {
	border-radius: 18px;
	padding: 28px 26px;
	margin-bottom: 32px;
	color: #fff;
	background: linear-gradient(135deg, #2f6b3f, #1f3a22);
}
.ikt-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 12px;
	font-weight: 800;
	opacity: .85;
	margin: 0 0 8px 0;
	color: #fff;
}
.ikt-hero__title {
	font-size: 1.7rem;
	margin: 0 0 8px 0;
	color: #fff;
}
.ikt-hero__sub {
	margin: 0;
	font-size: 15px;
	opacity: .92;
	color: #fff;
}
.ikt-hero--ezagutu { background: linear-gradient(135deg, #2f6b3f, #1f3a22); }
.ikt-hero--ikertu { background: linear-gradient(135deg, #4a7a4e, #2c4a2e); }
.ikt-hero--sortu { background: linear-gradient(135deg, #1f5245, #123329); }

/* --- Timeline / camino (bloques Sortu de tipo "zig-zag") --- */
.ikt-timeline {
	position: relative;
	padding: 4px 0 6px 0;
}
.ikt-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	border-left: 3px dashed #cfe0bd;
	transform: translateX(-50%);
}
.ikt-tl-row {
	display: grid;
	grid-template-columns: minmax(0,1fr) 34px minmax(0,1fr);
	align-items: start;
	margin-bottom: 26px;
	position: relative;
}
.ikt-tl-row:last-child { margin-bottom: 0; }
.ikt-tl-dot {
	grid-column: 2;
	justify-self: center;
	margin-top: 26px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 3px solid #fff;
	z-index: 2;
}
.ikt-tl-row--left .ikt-tl-card { grid-column: 1; }
.ikt-tl-row--right .ikt-tl-card { grid-column: 3; }
.ikt-step .saio-card.ikt-card.ikt-tl-card {
	margin: 0;
	min-width: 0;
	border-radius: 14px;
	border: 2px solid #dbe8d0;
	background: #f4f8f1;
}
.ikt-step .saio-video video,
.ikt-step .saio-audio audio {
	max-width: 100%;
	width: 100%;
}
.ikt-step .saio-card img { max-width: 100%; }
#ezagutu .ikt-tl-dot { background: #2f6b3f; box-shadow: 0 0 0 3px #bfe0c8; }
#ikertu .ikt-tl-dot { background: #3f6b42; box-shadow: 0 0 0 3px #c9dcc9; }
#sortu .ikt-tl-dot { background: #1f5245; box-shadow: 0 0 0 3px #bcdad2; }
@media (max-width: 680px) {
	.ikt-timeline::before { left: 15px; }
	.ikt-tl-row { grid-template-columns: 30px minmax(0,1fr); }
	.ikt-tl-dot { grid-column: 1; justify-self: start; margin-top: 22px; }
	.ikt-tl-row--left .ikt-tl-card,
	.ikt-tl-row--right .ikt-tl-card { grid-column: 2; }
}
.ikt-card__eyebrow {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin: 0 0 6px 0;
}
.ikt-card__icon { font-size: 16px; }
#ezagutu .ikt-card__eyebrow { color: #2f6b3f; }
#ikertu .ikt-card__eyebrow { color: #3f6b42; }
#sortu .ikt-card__eyebrow { color: #1f5245; }
.ikt-step .sa-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #3d8a4f, #245030);
	color: #fff !important;
	font-weight: 800;
	font-size: 16px;
	padding: 14px 30px;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(31,58,34,.28);
	transition: transform .15s ease, box-shadow .15s ease;
}
.ikt-step .sa-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 24px rgba(31,58,34,.35);
	color: #fff !important;
}

/* --- Ariketa interaktiboa (lotu / hutsuneak) modal --- */
.esna-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.esna-modal.is-open { display: flex; }
.esna-modal__overlay { position: absolute; inset: 0; background: rgba(20,30,20,0.55); }
.esna-modal__box { position: relative; background: #fff; border-radius: 14px; max-width: 640px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 30px 26px 26px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.esna-modal__close { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; border: none; background: #eef7ef; color: #2f6b3f; font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.esna-modal__close:hover { background: #d9ecdb; }
body.esna-modal-open-lock { overflow: hidden; }
.esna-modal__box .saio-just__subtitle { margin-top: 18px; }
.esna-match { display: flex; gap: 24px; flex-wrap: wrap; margin: 14px 0 18px; }
.esna-match-col { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 220px; }
.esna-match-item { border: 2px solid #cfe0bd; background: #fff; color: #243130; border-radius: 10px; padding: 10px 14px; font-size: 14px; text-align: left; cursor: pointer; transition: all .15s ease; }
.esna-match-item:hover { border-color: #3d7a4d; }
.esna-match-item.selected { border-color: #2f6b3f; background: #eef7ef; box-shadow: 0 0 0 2px rgba(47,107,63,0.15); }
.esna-match-item.matched { border-color: #2e7d32; background: #eaf5ea; color: #2e7d32; font-weight: 700; cursor: default; }
.esna-match-item.bad { border-color: #c62828; background: #fdecea; color: #c62828; }
.esna-modal__box .bex-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.esna-modal__box button.bex-btn { border: none; border-radius: 20px; padding: 10px 20px; font-size: 14px; font-weight: bold; cursor: pointer; color: #fff; background: #2e6b3e; }
.esna-modal__box button.bex-btn:hover { background: #3d7a4d; }
.esna-modal__box .bex-score { margin-top: 10px; font-weight: bold; color: #2e6b3e; font-size: 14px; min-height: 1.2em; }
.esna-wordbank { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.esna-word { padding: 8px 16px; border-radius: 20px; border: 2px solid #cfe0bd; background: #fff; font-size: 14px; cursor: pointer; }
.esna-word:hover { border-color: #3d7a4d; }
.esna-blank { display: inline-block; min-width: 70px; border-bottom: 3px solid #999; padding: 2px 6px; text-align: center; font-weight: 700; cursor: pointer; }
.esna-blank--active { border-color: #2f6b3f; background: #eef7ef; }
.esna-blank.ok { border-color: #2f6b3f; color: #2f6b3f; }
.esna-blank.bad { border-color: #b23b2e; color: #b23b2e; }
.esna-fillline { font-size: 15px; margin: 10px 0; }

/* --- Camino de avatar / popups antiguos (legacy Ezagutu) --- */
.ikt-path { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; overflow-x: auto; overflow-y: visible; padding: 60px 14px 14px; margin: 16px 0 8px; -webkit-overflow-scrolling: touch; }
.ikt-path__line { position: absolute; left: 60px; right: 60px; top: 88px; height: 4px; background: #cfe0bd; border-radius: 2px; z-index: 0; }
.ikt-stop { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; width: 140px; flex: 0 0 auto; background: none; border: none; cursor: pointer; padding: 0; }
.ikt-stop__icon { width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 3px solid #cfe0bd; display: flex; align-items: center; justify-content: center; color: #2f6b3f; transition: all .2s ease; }
.ikt-stop:hover .ikt-stop__icon { border-color: #3d7a4d; transform: translateY(-2px); }
.ikt-stop.is-done .ikt-stop__icon { background: #2f6b3f; border-color: #2f6b3f; color: #fff; }
.ikt-stop__num { font-size: 10.5px; font-weight: 700; color: #7c8f7c; text-transform: uppercase; letter-spacing: .03em; }
.ikt-stop__label { font-size: 13px; font-weight: 600; color: #243130; text-align: center; line-height: 1.25; }
.ikt-path__avatar-wrap { position: absolute; top: 22px; width: 60px; height: 60px; transition: left .6s cubic-bezier(.4,0,.2,1); z-index: 2; left: 0; pointer-events: none; }
.ikt-path__avatar-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: #fff; border: 3px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.28); display: block; }
@media (max-width: 700px) {
	.ikt-path { padding: 56px 8px 10px; }
	.ikt-stop { width: 96px; }
	.ikt-stop__icon { width: 48px; height: 48px; }
	.ikt-path__avatar-wrap { width: 48px; height: 48px; top: 18px; }
	.ikt-path__line { top: 70px; left: 48px; right: 48px; }
	.ikt-stop__label { font-size: 11.5px; }
}
.ikt-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.ikt-modal.is-open { display: flex; }
.ikt-modal__overlay { position: absolute; inset: 0; background: rgba(20,30,20,0.6); }
.ikt-modal__box { position: relative; background: #fff; border-radius: 16px; width: 80vw; height: 80vh; max-width: 1100px; overflow-y: auto; padding: 34px 36px 30px; box-shadow: 0 24px 70px rgba(0,0,0,0.35); display: flex; flex-direction: column; }
.ikt-modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: none; background: #eef7ef; color: #2f6b3f; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.ikt-modal__close:hover { background: #d9ecdb; }
.ikt-modal__title { margin: 0 26px 10px 0; font-size: 1.5em; color: #2f6b3f; }
.ikt-modal__desc { color: #3a4a41; margin: 0 0 14px; line-height: 1.5; }
.ikt-modal__body { flex: 1; display: flex; flex-direction: column; gap: 14px; min-height: 0; }
.ikt-modal__frame { width: 100%; border: 1px solid #e3ece2; border-radius: 12px; min-height: 340px; }
.ikt-modal__frame--auto { flex: 1; }
.ikt-modal__frame-auto-wrap { flex: 1; display: flex; min-height: 340px; }
.ikt-modal__frame-auto-wrap iframe { width: 100%; height: 100%; border: 1px solid #e3ece2; border-radius: 12px; }
.ikt-modal__frame-wrap { flex: 1; display: flex; min-height: 340px; }
.ikt-modal__frame-wrap[hidden] { display: none; }
.ikt-modal__frame-wrap .ikt-modal__frame { flex: 1; }
@media (max-width: 700px) {
	.ikt-modal__box { width: 94vw; height: 90vh; padding: 26px 20px 20px; }
}
body.ikt-modal-open-lock { overflow: hidden; }
