

/**
* Header logo - responsive
**/

.header .logo {
	width: clamp(84px, 10vw, 132px);
	margin-right: 20px;
}

.header .logo a {
	height: auto;
	min-height: 44px;
}

.header .logo img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 480px) {
	.header .logo {
		width: 92px;
		margin-right: 12px;
	}
}


/**
* Hero - reserve the header height so the vertically centered
* content never slides underneath the logo on short viewports
**/

@media screen and (min-width: 1025px) {
	.lui-section-hero .container {
		padding-top: 120px;
	}
	.section.hero-started .content {
		padding-top: 0;
	}
	.lui-section-hero .container .lui-started .lui-bgtitle {
		top: 90px;
	}
}


/**
* Alert modal
**/

.lui-alert-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(38, 38, 38, 0.55);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	animation: lui-alert-fade 0.3s cubic-bezier(0.3, 0, 0.3, 1) both;
}

.lui-alert {
	position: relative;
	width: 100%;
	max-width: 440px;
	padding: 40px 32px 32px;
	text-align: center;
	background: #F0EBE3;
	color: #262626;
	border: 2px solid #000;
	border-radius: 28px;
	box-shadow: 8px 8px rgba(0, 0, 0, 0.2);
	animation: lui-alert-in 0.45s cubic-bezier(0.3, 0, 0.3, 1) both;
}

.dark-skin .lui-alert {
	background: #1A1A1A;
	color: #eaeaea;
	border-color: rgba(255, 255, 255, 0.85);
	box-shadow: 8px 8px rgba(0, 0, 0, 0.45);
}

.lui-alert__close {
	position: absolute;
	right: 16px;
	top: 16px;
	width: 34px;
	height: 34px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 100%;
	box-shadow: none;
	opacity: 0.5;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.3, 0, 0.3, 1);
}

.lui-alert__close:before {
	display: none;
}

.lui-alert__close:hover {
	color: inherit;
	opacity: 1;
	background: rgba(95, 85, 82, 0.12);
}

.lui-alert__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid currentColor;
	border-radius: 100%;
	color: #5F5552;
}

.lui-alert__icon svg {
	width: 30px;
	height: 30px;
	display: block;
}

.lui-alert--success .lui-alert__icon {
	color: #FFF;
	background: #5F5552;
	border-color: #5F5552;
	box-shadow: 4px 4px rgba(0, 0, 0, 0.2);
}

.lui-alert--error .lui-alert__icon {
	color: #FFF;
	background: #A34A3C;
	border-color: #A34A3C;
	box-shadow: 4px 4px rgba(0, 0, 0, 0.2);
}

.lui-alert__spinner {
	width: 34px;
	height: 34px;
	border: 3px solid rgba(95, 85, 82, 0.25);
	border-top-color: #5F5552;
	border-radius: 100%;
	animation: lui-alert-spin 0.8s linear infinite;
}

.dark-skin .lui-alert__spinner {
	border-color: rgba(255, 255, 255, 0.2);
	border-top-color: #FFF;
}

.lui-alert__eyebrow {
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 600;
	color: #5F5552;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

.dark-skin .lui-alert__eyebrow {
	color: rgba(255, 255, 255, 0.6);
}

.lui-alert__title {
	margin: 0 0 12px;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.lui-alert__text {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.75;
}

.lui-alert__actions {
	margin-top: 28px;
}

.lui-alert__actions .btn {
	min-width: 180px;
	height: 50px;
	line-height: 46px;
}

.dark-skin .lui-alert__actions .btn {
	color: #FFF;
	border-color: #FFF;
}

@media screen and (max-width: 480px) {
	.lui-alert {
		padding: 34px 22px 26px;
		border-radius: 22px;
	}
	.lui-alert__title {
		font-size: 20px;
	}
	.lui-alert__actions .btn {
		width: 100%;
		padding: 0 20px;
	}
}

@keyframes lui-alert-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes lui-alert-in {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.94);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes lui-alert-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.lui-alert-overlay,
	.lui-alert {
		animation: none;
	}
	.lui-alert__spinner {
		animation-duration: 2s;
	}
}
