/* Kost Blora Elementor shortcode header. */
.kb-site-header,
.kb-site-header * {
	box-sizing: border-box;
}

.kb-site-header {
	--kb-header-deep: #093c5d;
	--kb-header-coral: #f27689;
	--kb-header-coral-dark: #df5d72;
	--kb-header-muted: #52525b;
	--kb-header-soft: #edf3f6;
	--kb-header-height: 96px;
	--kb-header-current-height: var(--kb-header-height);
	position: fixed;
	z-index: 99990;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: #fff;
	color: var(--kb-header-deep);
	font-family: Inter, "Nunito Sans", "Segoe UI", Arial, sans-serif;
}

.kb-site-header-spacer {
	display: block;
	width: 100%;
	height: var(--kb-header-current-height, 96px);
	pointer-events: none;
}

.admin-bar .kb-site-header {
	top: 32px;
}

.kb-site-header__bar {
	position: relative;
	display: flex;
	width: min(100% - 40px, 1180px);
	height: var(--kb-header-height);
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 auto;
	padding: 24px 0;
	font-size: 14px;
}

.kb-site-header__brand-group {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.kb-site-header__brand,
.kb-site-header__mobile-brand .kb-site-header__brand {
	display: inline-flex;
	width: 132px;
	flex: 0 0 auto;
	align-items: center;
	color: var(--kb-header-deep);
	text-decoration: none;
}

.kb-site-header__brand img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 30px;
	max-height: 30px;
	object-fit: contain;
	object-position: left center;
}

.kb-site-header__brand span {
	color: var(--kb-header-deep);
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	text-transform: lowercase;
}

.kb-site-header__panel {
	display: flex;
	width: auto;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.kb-site-header__links {
	display: flex;
	align-items: center;
	gap: 0;
}

.kb-site-header__links a {
	display: block;
	width: auto;
	padding: 0 12px;
	color: var(--kb-header-muted);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	text-transform: lowercase;
	transition: color 220ms ease-in-out;
}

.kb-site-header__links a:hover,
.kb-site-header__links a:focus-visible {
	color: var(--kb-header-deep);
	outline: none;
}

.kb-site-header__cta {
	display: inline-flex;
	width: auto;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--kb-header-deep);
	border-radius: 999px;
	padding: 0 28px;
	background: #fff;
	color: var(--kb-header-deep);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	text-transform: lowercase;
	transition:
		background 220ms ease-in-out,
		border-color 220ms ease-in-out,
		color 220ms ease-in-out,
		transform 220ms ease-in-out;
}

.kb-site-header__cta:hover,
.kb-site-header__cta:focus-visible {
	border-color: var(--kb-header-deep);
	background: var(--kb-header-deep);
	color: #fff;
	outline: none;
	transform: translateY(-1px);
}

.kb-site-header__toggle {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 5px;
	border: 0;
	padding: 0;
	background: transparent;
	color: #525252;
	cursor: pointer;
	outline: none;
}

.kb-site-header__toggle-line {
	display: block;
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition:
		opacity 220ms ease-in-out,
		transform 260ms ease-in-out;
}

.kb-site-header.is-open .kb-site-header__toggle-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.kb-site-header.is-open .kb-site-header__toggle-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.5);
}

.kb-site-header.is-open .kb-site-header__toggle-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.kb-site-header__overlay,
.kb-site-header__mobile-brand {
	display: none;
}

@media (max-width: 767px) {
	html.kb-header-lock,
	html.kb-header-lock body {
		overflow: hidden;
	}

	.kb-site-header {
		--kb-header-height: 76px;
		--kb-header-current-height: var(--kb-header-height);
	}

	.admin-bar .kb-site-header {
		top: 46px;
	}

	.kb-site-header__bar {
		width: min(100% - 32px, 1180px);
		height: var(--kb-header-height);
		justify-content: flex-start;
		padding: 18px 0;
	}

	.kb-site-header__toggle {
		display: inline-flex;
	}

	.kb-site-header__brand,
	.kb-site-header__mobile-brand .kb-site-header__brand {
		width: 132px;
	}

	.kb-site-header__brand img {
		height: 30px;
		max-height: 30px;
	}

	.kb-site-header__overlay {
		position: fixed;
		z-index: 1001;
		inset: 0;
		display: block;
		background: #000;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition:
			opacity 280ms ease-in-out,
			visibility 280ms ease-in-out;
	}

	.kb-site-header.is-open .kb-site-header__overlay {
		opacity: 0.38;
		pointer-events: auto;
		visibility: visible;
	}

	.kb-site-header__panel {
		position: fixed;
		z-index: 1002;
		top: 0;
		bottom: 0;
		left: 0;
		display: flex;
		width: min(72vw, 270px);
		min-width: 260px;
		max-width: 270px;
		min-height: 100dvh;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-left: 0;
		overflow-y: auto;
		padding: 24px;
		background: #fff;
		box-shadow: 0 24px 54px rgba(9, 60, 93, 0.22);
		text-align: left;
		transform: translate3d(-105%, 0, 0);
		transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.kb-site-header.is-open .kb-site-header__panel {
		transform: translate3d(0, 0, 0);
	}

	.kb-site-header__mobile-brand {
		display: block;
		margin-bottom: 28px;
	}

	.kb-site-header__links {
		display: grid;
		width: 100%;
		order: 1;
		gap: 0;
	}

	.kb-site-header__links a {
		width: 100%;
		border-bottom: 1px solid var(--kb-header-soft);
		padding: 14px 0;
		font-size: 15px;
		font-weight: 600;
	}

	.kb-site-header__cta {
		width: 100%;
		min-height: 44px;
		order: 10;
		margin-top: 16px;
		padding: 0 24px;
	}
}

@media (max-width: 600px) {
	.admin-bar .kb-site-header {
		top: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kb-site-header__links a,
	.kb-site-header__cta,
	.kb-site-header__toggle-line,
	.kb-site-header__overlay,
	.kb-site-header__panel {
		transition-duration: 1ms !important;
	}
}

/* Header text normalization v1.4.12. */
.kb-site-header__links a,
.kb-site-header__cta {
	text-transform: capitalize;
}
