@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf')
		format('truetype');
	font-weight: 100 900;
	font-display: swap;
}

/* * * * * * * * * * * * * * * * * */
/* ----- box sizing ----- */
/* * * * * * * * * * * * * * * * * */
*,
::after,
::before {
	box-sizing: border-box;
}

/* * * * * * * * * * * * * * * * * */
/* ----- css variables ----- */
/* * * * * * * * * * * * * * * * * */
:root {
	/* ================= */
	/* font family */
	/* ================= */
	--font-family: 'Montserrat', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial,
		sans-serif;

	/* ================= */
	/* colors */
	/* ================= */

	/* primary (#11) */
	--clr-primary: #eeebd9;

	/* secondary */
	--clr-secondary: #ad7354;

	/* dark and bright */
	--text: #12364a;
	--dark-rgb: 2, 8, 38;
	--bright: #fffffe;

	/* alert colors */
	--red-light: #fcdcd9;
	--red-dark: #913028;
	--green-light: #e7ebdd;
	--green-dark: #434f2b;

	/* various variables */
	--border-radius: 0.25rem;
	--letter-spacing: 0.0625rem;
	--transition: 0.3s ease-in-out all;
	/* --max-width: 1280px; */
	--max-width: 1440px;
	--max-width-modal: 768px;
	--fixed-width: 600px;
	--element-padding: 0.375rem 0.75rem;

	/* box shadow */
	--shadow-sm: 0 0.0625rem 0.1875rem 0 rgba(0, 0, 0, 0.1),
		0 0.0625rem 0.125rem -0.0625rem rgba(0, 0, 0, 0.1);
	--shadow-md: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1),
		0 0.125rem 0.25rem -0.125rem rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1),
		0 0.25rem 0.375rem -0.25rem rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 1.25rem 1.5625rem -0.3125rem rgba(0, 0, 0, 0.1),
		0 0.5rem 0.625rem -0.375rem rgba(0, 0, 0, 0.1);

	--menu-transition: var(--transition);
}

/* * * * * * * * * * * * * * * * * */
/* ----- type scaling ----- */
/* * * * * * * * * * * * * * * * * */
html {
	font-size: 16px;
	scroll-padding-top: 5rem;
}

body {
	font-family: var(--font-family);
	background: var(--bright);
	color: var(--dark);
	font-weight: 400;
	line-height: 1.65;
	/* respect fixed navbar */
	padding-top: 5rem;
}

p {
	/* font-size: 1rem; */
	font-size: clamp(0.6rem, 1.25vw, 1rem);
	max-width: 45rem;
	margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-family);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 1.38rem;
}

h1,
.text-size-h1 {
	font-weight: 700;
	margin-top: 0;
	/* font-size: 3.05rem; */
	font-size: clamp(1.83rem, 3.81vw, 3.05rem);
}

h2,
.text-size-h2 {
	/* font-size: 2.44rem; */
	font-size: clamp(1.46rem, 3.05vw, 2.44rem);
}

h3,
.text-size-h3 {
	/* font-size: 1.95rem; */
	font-size: clamp(1.17rem, 2.44vw, 1.95rem);
}

.modal-content h3 {
	font-size: clamp(1.46rem, 2.2vw, 1.76rem);
}

h4,
.text-size-h4 {
	/* font-size: 1.56rem; */
	font-size: clamp(0.94rem, 1.95vw, 1.56rem);
}

h5,
.text-size-h5 {
	/* font-size: 1.25rem; */
	font-size: clamp(0.675rem, 1.56vw, 1.25rem);
}

.text-size-modal {
	font-size: clamp(0.94rem, 1.56vw, 1rem);
}

.text-size-modal-small {
	font-size: clamp(0.71rem, 1.25vw, 0.9rem);
}

.text-size-cv {
	font-size: clamp(0.8075rem, 1.56vw, 1rem);
}

small,
.text-caption,
.text-small {
	/* font-size: 0.8rem; */
	font-size: clamp(0.48rem, 1.25vw, 0.8rem);
}

/* * * * * * * * * * * * * * * * * */
/* ----- basic styles ----- */
/* * * * * * * * * * * * * * * * * */
a {
	text-decoration: none;
}

ul {
	list-style-type: none;
	padding: 0;
}

.img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* dont apply .img styles to logo! */
/* .img:not(.logo) {} */

/* btn */
.btn {
	cursor: pointer;
	background: transparent;
	border: transparent;
	letter-spacing: var(--letter-spacing);
	padding: var(--element-padding);
	transition: var(--transition);
	display: inline-block;
	color: var(--text);
	font-family: var(--font-family);
}
/* .btn {
	cursor: pointer;
	color: var(--clr-primary-100);
	background: var(--clr-primary-400);
	border: transparent;
	border-radius: var(--border-radius);
	letter-spacing: var(--letter-spacing);
	padding: var(--element-padding);
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	display: inline-block;
} */
/* 
.btn:hover {
	background-color: var(--clr-primary-500);
	box-shadow: var(--shadow-lg);
}

.btn-modern {
	color: var(--clr-primary-500);
	background: var(--clr-primary-100);
	border: 0.0625rem solid var(--clr-primary-500);
}

.btn-modern:hover {
	color: var(--clr-primary-600);
	background: var(--clr-primary-200);
	border-color: var(--clr-primary-600);
}

.btn-block {
	width: 100%;
} */

/* alerts */
.alert {
	padding: var(--element-padding);
	margin-bottom: 1rem;
	border-radius: var(--border-radius);
}

.alert-danger {
	color: var(--red-dark);
	background: var(--red-light);
}

.alert-success {
	color: var(--green-dark);
	background: var(--green-light);
}

/* form */
.form {
	width: 90%;
	max-width: var(--fixed-width);
	background-color: var(--clr-primary-100);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-md);
	padding: 2rem 2.5rem;
	margin: 3rem auto;
}

.form-row {
	margin-bottom: 1rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	letter-spacing: var(--letter-spacing);
}

.form-input,
.form-textarea {
	width: 100%;
	padding: var(--element-padding);
	border-radius: var(--border-radius);
	background-color: var(--clr-primary-200);
	border: 0.0625rem solid var(--clr-primary-300);
}

.form-textarea {
	height: 7rem;
}

::placeholder {
	font-family: inherit;
	color: var(--clr-primary-600);
}

.form-alert {
	color: var(--red-dark);
	letter-spacing: var(--letter-spacing);
}

/* title */
.title {
	text-align: center;
}

.title-underline {
	background-color: var(--clr-primary-400);
	width: 7rem;
	height: 0.25rem;
	margin: 0 auto;
}

/* section */
.section {
	padding: 5rem 0;
}

.section-center {
	width: 94vw;
	max-width: var(--max-width);
	/* padding-left: 1.5rem;
	padding-right: 1.5rem; */
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 768px) {
	.section-center {
		width: 88vw;
	}
}

.section-title {
	margin-bottom: 4rem;
	text-align: center;
}

.section-title h2,
.section-title h3 {
	letter-spacing: var(--letter-spacing);
	font-weight: 400;
}

.section-title h3 {
	margin-top: 3.5rem;
	margin-bottom: 2.5rem;
}

/* * * * * * * * * * * * * * * * * */
/* ----- general css ----- */
/* * * * * * * * * * * * * * * * * */
.nowrap {
	white-space: nowrap;
}

/* * * * * * * * * * * * * * * * * */
/* ----- header ----- */
/* * * * * * * * * * * * * * * * * */

/* ################################# */
.site-header.section {
	background-color: var(--clr-primary);
	padding: 0;
	min-height: 7rem;
	display: flex;
	align-items: center;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}
.site-header__row.section-center {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 3rem;
}

.site-header__left,
.site-header__right {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-self: start;
}

.site-header__right {
	justify-self: end;
}

.site-header__logo img {
	height: 4rem;
	width: auto;
	display: block;
}

.hamburger-btn,
.search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hamburger-btn {
	flex-direction: column;
	gap: 0.35rem;
	--hb-width: 1.5rem;
	--hb-thickness: 0.094rem;
	--hb-radius: 0.125rem;
}

.hamburger__bar {
	display: block;
	width: var(--hb-width);
	height: var(--hb-thickness);
	background-color: currentColor;
	border-radius: var(--hb-radius);
}

#site-search-toggle-left {
	display: none;
}

.search-btn .icon {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

.lang-btn {
	display: none;
}

.cta {
	display: none;
}

#site-search-toggle-right {
	display: inline-block;
}

@media screen and (min-width: 768px) {
	#site-search-toggle-right {
		display: none;
	}

	#site-search-toggle-left {
		display: inline-block;
	}

	.lang-btn {
		display: inline-block;
		background: transparent;
		border: none;
		position: relative;
		font-size: 0.94rem;
		cursor: pointer;
	}

	.lang-btn::after {
		content: '';
		display: block;
		height: 0.0625rem;
		width: 100%;
		background: var(--text);
		margin: 0.375rem auto 0;
	}

	.site-header__left {
		gap: 2rem;
	}

	.site-header__right {
		gap: 3rem;
	}
}

@media screen and (min-width: 992px) {
	.cta {
		display: inline-block;
		background: var(--text);
		border-radius: 0;
		font-weight: 400;
	}

	.cta-btn {
		color: var(--clr-primary);
		padding: 0.5rem 1.75rem;
		font-size: 0.8rem;
	}

	.lang-btn::after {
		width: 150%;
	}

	.site-header__left {
		gap: 3rem;
	}

	.site-header__right {
		gap: 4rem;
	}
}

/* * * * * * * * * * * * * * * * * */
/* ----- intro ----- */
/* * * * * * * * * * * * * * * * * */

.intro {
	background: var(--clr-primary);
	padding-bottom: 1rem;
}

.intro h1 {
	color: var(--text);
	font-size: clamp(1.46rem, 3.05vw, 1.95rem);
	letter-spacing: var(--letter-spacing);
	font-weight: 300;
}

.intro-text {
	text-align: center;
	width: 85%;
	max-width: 40rem;
	margin: 1.5rem auto;
	letter-spacing: var(--letter-spacing);
	font-size: clamp(0.94rem, 1.25vw, 1rem);
	color: var(--text);
}

/* * * * * * * * * * * * * * * * * */
/* ----- video ----- */
/* * * * * * * * * * * * * * * * * */
.video {
	background: var(--clr-primary);
	padding-top: 7rem;
	padding-bottom: 4rem;
}

.hero-vid {
	padding: 0 5rem;
	position: relative;
	width: 100%;
	height: clamp(70vh, 80vh, 1020px);
	overflow: hidden;
	background: var(--text); /* fallback color */
}

.hero-vid__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* cover and center */
	object-position: center center;
	z-index: 0;
	will-change: transform;
}

.hero-vid__overlay {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	pointer-events: none;
	color: white;
	text-align: center;
	padding: 2rem;
}

/* push toggle into top-right corner (but inside overlay) */
.hero-controls-toggle {
	pointer-events: auto; /* allow clicking */
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	padding: 0.5rem;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	transition: opacity 0.18s ease, transform 0.18s ease;
	opacity: 0; /* hidden by default and shown on hover/focus */
}

/* show toggle on hover (desktop) or when focused */
.hero-vid:hover .hero-controls-toggle,
.hero-vid:focus-within .hero-controls-toggle,
.hero-controls-toggle:focus {
	opacity: 1;
	transform: translateY(0);
}

/* keep toggle visible on small screens — because there's no hover */
@media (hover: none) and (pointer: coarse), (max-width: 767px) {
	.hero-controls-toggle {
		opacity: 1;
	}
}

/* style when active (controls visible) */
.hero-controls-toggle[aria-pressed='true'] {
	background: rgba(255, 255, 255, 0.95);
	color: #111;
}

.hero-vid__overlay img {
	max-width: 10rem;
}

.hero-vid__overlay h3,
.hero-vid__overlay p {
	color: var(--clr-primary);
}

/* optional: dim the video slightly */
.hero-vid::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
	pointer-events: none;
}

/* Loading overlay: dark translucent background with centered light spinner */
.hero-loader {
	position: absolute;
	inset: 0;
	/* use the dark RGB token for a consistent dark overlay */
	background: rgba(var(--dark-rgb), 0.85);
	color: var(--bright);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-loader[hidden] {
	display: none;
}
.hero-loader__inner {
	text-align: center;
}

/* Simple spinner (light on dark background) */
.spinner {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	/* subtle track */
	border: 4px solid rgba(255, 255, 255, 0.15);
	/* bright segment for contrast */
	border-top-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
	animation: spin 1s linear infinite;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Keep the video invisible until we explicitly reveal it (prevents visible motion under overlay) */
.hero-vid__video {
	opacity: 0;
	transition: opacity 360ms ease-in-out;
}

/* responsive: reduce height on very short viewports (mobile chrome/ui) */
@media (max-height: 600px) {
	.hero-vid {
		height: 70vh;
	}
}

/* * * * * * * * * * * * * * * * * */
/* ----- Footer ----- */
/* * * * * * * * * * * * * * * * * */
.site-footer {
	background: var(--bright);
	color: var(--text);
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.06);
	padding: 3rem 0 4rem 0;
}
.site-footer .footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2rem;
	align-items: start;
}
.footer-col h4 {
	font-size: 1.06rem;
	margin-bottom: 1rem;
	color: var(--text);
	font-weight: 500;
}
.footer-col--logo .footer-logo {
	max-width: 8rem;
	display: block;
}
.footer-copy {
	margin-top: 1rem;
	color: rgba(var(--text), 0.6);
	font-size: 0.95rem;
}
.footer-col--links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col--links li {
	margin-bottom: 0.6rem;
}
.footer-col--links a {
	color: rgba(var(--text), 0.7);
}
.footer-socials {
	display: flex;
	gap: 0.8rem;
	align-items: center;
	margin-left: -0.8rem;
}
.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	color: rgba(var(--text), 0.7);
	background: transparent;
	border-radius: 50%;
}
.social-link i {
	font-size: 1rem;
}

@media (max-width: 767px) {
	.site-footer .footer-grid {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
	.footer-col--logo {
		margin-bottom: 1.5rem;
	}

	.site-footer .footer-grid > * {
		width: min(420px, 100%);
	}

	.footer-logo {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-socials {
		justify-content: center;
	}
}

/* * * * * * * * * * * * * * * * * */
/* ----- Additional ----- */
/* * * * * * * * * * * * * * * * * */

/* Menu overlay (non-destructive) */

.menu-overlay {
	position: fixed;
	inset: 0;
	/* start transparent; when opened we'll darken the site area */
	background: transparent;
	z-index: 2000;
	display: none;
	overflow-y: auto;
	/* fade */
	opacity: 0;
	visibility: hidden;
	pointer-events: none; /* ignore clicks when hidden */
	transition: opacity var(--menu-transition) ease-in-out,
		visibility 0s linear calc(var(--menu-transition));
}
.menu-overlay[aria-hidden='false'] {
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: auto; /* allow clicks to close when open */
	/* darken the site outside the menu (menu panel will sit on top) */
	background: rgba(0, 0, 0, 0.46);
}

.menu-panel {
	/* mobile-first: fixed full-screen panel which slides in from the left */
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 100vw; /* full width on mobile */
	height: 100vh;
	max-width: none;
	/* align content to match desktop offsets */
	padding-top: 6.5rem;
	padding-left: 3.25rem;
	padding-right: 1rem;
	padding-bottom: 3rem;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.92); /* slightly transparent */
	transition: transform var(--menu-transition) cubic-bezier(0.2, 0.9, 0.3, 1),
		opacity var(--menu-transition) ease;
	transform: translateX(-100%); /* start off-screen */
	z-index: 2010; /* sit above the overlay background */
}

/* when overlay is visible, slide the panel fully into place (mobile + desktop) */
.menu-overlay[aria-hidden='false'] .menu-panel {
	transform: translateX(0);
}

.menu-close {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	font-size: 1.5rem;
	background: transparent;
	border: none;
	cursor: pointer;
	/* lighter X to match the reference */
	color: rgba(var(--dark-rgb), 0.45);
}

.menu-logo {
	display: block;
	margin: 0 0 1rem; /* no top jump; left alignment handled by panel padding */
	max-width: 9rem;
}

.menu-nav {
	margin-top: 1.25rem; /* match desktop spacing below the logo */
}
.menu-sep {
	display: none;
}

.menu-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu-nav li {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.03);
}

.menu-link {
	display: block;
	font-size: clamp(1rem, 2.8vw, 1.125rem); /* generally smaller on desktop */
	padding: 1rem 0;
	color: var(--text);
	text-decoration: none;
	font-weight: 400;
}
.menu-link:after {
	/* remove the right-arrow chevrons (not needed) */
	display: none;
}
.menu-link:hover,
.menu-link:focus {
	color: rgba(var(--dark-rgb), 0.9);
}

@media (min-width: 768px) {
	.menu-overlay {
		/* overlay darkens site area to the right of the panel */
		background: rgba(0, 0, 0, 0.46);
	}
	/* panel slides in from the left and occupies ~75% of the viewport on desktop */
	.menu-panel {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		width: 75vw; /* menu takes left 75% */
		height: 100vh;
		max-width: none;
		padding-top: 6.5rem; /* bring content a little higher */
		padding-left: 3.25rem; /* stronger left offset so logo + links align with visual grid */
		margin: 0;
		transform: translateX(-100%); /* start fully off-screen */
		box-shadow: 2px 0 18px rgba(0, 0, 0, 0.06);
	}
	/* when overlay is visible, slide the panel fully into place */
	.menu-overlay[aria-hidden='false'] .menu-panel {
		transform: translateX(0);
	}
	.menu-close {
		left: 1.5rem;
		top: 1.5rem;
		/* even lighter on desktop */
		color: rgba(var(--dark-rgb), 0.38);
	}

	/* desktop: align nav block to the left edge of the panel */
	.menu-nav {
		width: 100%;
		margin-top: 1.25rem;
	}
	.menu-nav ul {
		width: 100%;
	}
	.menu-nav li {
		padding-left: 0; /* ensure it sits flush */
	}
}

/* * * * * * * * * * * * * * * * * */
/* ----- Impressum block ----- */
/* * * * * * * * * * * * * * * * * */
.impressum {
	font-family: 'Montserrat', sans-serif;
	color: var(--text);
	font-weight: 300; /* light */
	font-style: normal;
	text-align: center; /* center the column content */
	max-width: 56rem;
	margin: 0 auto;
	padding: 4rem 0; /* increased top/bottom spacing */
}

.impressum__header h1 {
	/* margin-bottom: 2rem; */
	padding-bottom: 2rem;
	font-weight: 700; /* keep heading bold */
}

.impressum__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
	justify-items: center; /* center column content */
}

.impressum__contact,
.impressum__details {
	width: 100%;
	max-width: 40rem;
}

.impressum address,
.impressum p,
.impressum dl {
	margin: 0;
	font-weight: 300;
	font-style: normal;
	color: inherit; /* same as text color */
}

.impressum__details dt {
	font-weight: 500;
	margin-top: 0.75rem;
}

.impressum__details dd {
	margin: 0 0 0.75rem 0;
	font-weight: 300;
}

.impressum a {
	color: inherit; /* links use same text color */
	text-decoration: underline;
	font-weight: 300;
}

/* ===== Impressum overrides: single column, lighter, more spacing ===== */
.impressum {
	font-weight: 200; /* lighter */
	margin-bottom: 4rem; /* more space after the block */
	text-align: center; /* keep centered column */
}

.impressum__grid {
	grid-template-columns: 1fr !important; /* force single column */
	gap: 2rem;
	justify-items: center;
}

.impressum__contact,
.impressum__details {
	max-width: 48rem;
}

.impressum address,
.impressum p,
.impressum dl,
.impressum__details dd {
	font-weight: 200; /* lighter text */
}

@media screen and (min-width: 768px) {
	/* keep single-column layout even on larger screens */
	.impressum__grid {
		grid-template-columns: 1fr !important;
	}
	.impressum {
		text-align: center;
	}
}

/* ===== Impressum: spacing + smaller type adjustments ===== */
.impressum {
	font-size: 0.95rem; /* slightly smaller overall */
	font-weight: 200; /* ensure light text */
}

.impressum__header h1 {
	font-size: 1.125rem; /* make heading compact */
	font-weight: 600; /* modestly bold but smaller */
	margin-bottom: 2rem; /* extra space between heading and content */
}

.impressum__contact,
.impressum__details,
.impressum address,
.impressum p,
.impressum dl {
	font-weight: 200; /* very light body weight */
}

.impressum {
	margin-bottom: 5rem; /* a bit more space after the whole block */
}

/* ===== Impressum: responsive sizing ===== */
.impressum {
	/* use the same responsive sizing as paragraphs for readability */
	font-size: clamp(0.85rem, 1.25vw, 1rem);
}

.impressum address,
.impressum p,
.impressum dl,
.impressum__details dd {
	font-size: inherit; /* inherit the responsive size */
}

@media screen and (max-width: 767px) {
	/* ensure the block still uses the responsive clamp on small screens */
	.impressum {
		font-size: clamp(0.85rem, 1.25vw, 1rem);
	}
	.impressum address,
	.impressum p,
	.impressum dl,
	.impressum__details dd {
		font-size: inherit;
	}
}

/* * * * * * * * * * * * * * * * * */
/* ----- Additional ----- */
/* * * * * * * * * * * * * * * * * */
.is-inactive {
	opacity: 0.9;
	cursor: not-allowed;
	pointer-events: none;
}
