body.turann-modal-open {
	overflow: hidden;
}

.turann-modal-root {
	position: relative;
	z-index: 99980;
}

.turann-modal-overlay {
	align-items: center;
	background: rgba(7, 12, 28, 0.7);
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 99990;
}

.turann-modal {
	--turann-package-background: #f7f8fb;
	--turann-package-panel: #ffffff;
	--turann-package-primary: #1d4f91;
	--turann-package-accent: #bf1e2e;
	--turann-package-text: #172033;
	--turann-package-muted: #4f5d75;
	--turann-package-button: #1d4f91;
	background: var(--turann-package-panel);
	border: 1px solid var(--turann-package-primary);
	border-radius: 7px;
	box-sizing: border-box;
	box-shadow: 0 28px 70px rgba(7, 12, 28, 0.26);
	color: var(--turann-package-text);
	max-height: calc(100vh - 40px);
	max-width: calc(100vw - 40px);
	outline: none;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 32px;
	position: relative;
	width: clamp(380px, 58vw, 760px);
}

.turann-modal--has-media {
	border-radius: 10px;
	overflow: visible;
	padding: 0;
	width: auto;
}

.turann-modal--has-media::before {
	display: none;
}

.turann-modal,
.turann-modal * {
	box-sizing: border-box;
}

.turann-modal__block,
.turann-modal__body,
.turann-modal__button,
.turann-modal__image,
.turann-modal__list,
.turann-modal__notice,
.turann-modal__title {
	max-width: 100%;
	overflow-wrap: anywhere;
	word-break: normal;
}

.turann-modal__sr-title {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.turann-modal::before {
	background: linear-gradient(90deg, var(--turann-package-accent), var(--turann-package-primary));
	border-radius: 7px 7px 0 0;
	content: "";
	height: 6px;
	left: -1px;
	position: absolute;
	right: -1px;
	top: -1px;
}

.turann-modal__close {
	align-items: center;
	background: #fff;
	border: 1px solid var(--turann-package-primary);
	border-radius: 4px;
	color: var(--turann-package-primary);
	cursor: pointer;
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	height: 38px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 38px;
}

.turann-modal__close:focus,
.turann-modal__close:hover {
	background: var(--turann-package-background);
	border-color: var(--turann-package-primary);
	outline: 2px solid transparent;
}

.turann-modal__title,
.turann-modal__block--headline {
	color: var(--turann-package-primary);
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 4px 50px 14px 0;
}

.turann-modal__body,
.turann-modal__block,
.turann-modal__list {
	color: var(--turann-package-muted);
	font-size: 17px;
	line-height: 1.62;
	margin: 0 0 16px;
	white-space: pre-wrap;
}

.turann-modal__block--eyebrow {
	color: var(--turann-package-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 50px 8px 0;
	text-transform: uppercase;
}

.turann-modal__block--subhead {
	color: var(--turann-package-text);
	font-size: 20px;
	line-height: 1.38;
	margin-bottom: 18px;
}

.turann-modal__block--small {
	font-size: 13px;
	line-height: 1.5;
}

.turann-modal__notice {
	background: var(--turann-package-background);
	border: 1px solid var(--turann-package-primary);
	border-left: 5px solid var(--turann-package-primary);
	border-radius: 5px;
	color: var(--turann-package-text);
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 18px;
	padding: 13px 15px;
}

.turann-modal__notice--warning {
	border-left-color: #b86b00;
}

.turann-modal__notice--danger {
	border-left-color: var(--turann-package-accent);
}

.turann-modal__list {
	padding-left: 24px;
	white-space: normal;
}

.turann-modal__list li {
	margin: 0 0 8px;
}

.turann-modal__image {
	margin: 0;
	text-align: center;
	white-space: normal;
}

.turann-modal__image:first-of-type {
	margin-top: 0;
}

.turann-modal__image img {
	border-radius: 10px;
	box-shadow: 0 16px 38px rgba(7, 12, 28, 0.18);
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: 40vh;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.turann-modal__image--body img {
	max-width: min(560px, 100%);
}

.turann-modal__image--full img {
	width: 100%;
}

.turann-modal__image figcaption {
	color: var(--turann-package-muted);
	font-size: 13px;
	line-height: 1.45;
	margin-top: 10px;
}

.turann-modal__actions {
	border-top: 1px solid var(--turann-package-primary);
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 22px;
	padding-top: 18px;
}

.turann-modal__button {
	background: var(--turann-package-button);
	border: 1px solid var(--turann-package-button);
	border-radius: 5px;
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	padding: 11px 16px;
	text-decoration: none;
}

.turann-modal__button:focus,
.turann-modal__button:hover {
	background: var(--turann-package-primary);
	color: #fff;
}

.turann-modal--font-system {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.turann-modal--font-serif {
	font-family: Georgia, "Times New Roman", serif;
}

.turann-modal--font-slab {
	font-family: Rockwell, "Roboto Slab", Georgia, serif;
}

.turann-modal--font-mono {
	font-family: "Courier New", Courier, monospace;
}

.turann-align-left {
	text-align: left;
}

.turann-align-center {
	text-align: center;
}

.turann-align-right {
	text-align: right;
}

.turann-size-eyebrow {
	font-size: 12px;
}

.turann-size-headline {
	font-size: 30px;
}

.turann-size-subhead {
	font-size: 20px;
}

.turann-size-small {
	font-size: 13px;
}

.turann-style-bold {
	font-weight: 800;
}

.turann-style-italic {
	font-style: italic;
}

.turann-style-uppercase {
	text-transform: uppercase;
}

@media (max-width: 480px) {
	.turann-modal-overlay {
		align-items: flex-end;
		padding: 12px;
	}

	.turann-modal {
		max-width: 100%;
		padding: 24px 20px;
		width: 100%;
	}

	.turann-modal--has-media {
		padding: 0;
	}

	.turann-modal__title,
	.turann-modal__block--headline,
	.turann-size-headline {
		font-size: 22px;
	}
}
