.dch-header,
.dch-header * {
	box-sizing: border-box;
}

.dch-header {
	position: relative;
	width: 100%;
	z-index: 50;
	font-family: inherit;
}

.dch-header a {
	text-decoration: none;
	transition: opacity .2s ease, transform .2s ease, color .2s ease, background-color .2s ease;
}

.dch-header a:hover,
.dch-header a:focus-visible {
	opacity: .82;
}

.dch-container {
	width: min(100%, 1135px);
	margin-inline: auto;
	padding-inline: clamp(16px, 3vw, 28px);
}

.dch-topbar {
	background: #5d5d60;
	color: #fff;
}

.dch-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 33px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.dch-topbar__left,
.dch-topbar__right,
.dch-social-links,
.dch-account-links {
	display: flex;
	align-items: center;
}

.dch-topbar__left {
	gap: clamp(18px, 3vw, 38px);
}

.dch-topbar__right {
	gap: 12px;
	margin-left: auto;
}

.dch-topbar a,
.dch-topbar button,
.dch-topbar input {
	font: inherit;
}

.dch-topbar a {
	color: currentColor;
	white-space: nowrap;
}

.dch-social-links {
	gap: 10px;
}

.dch-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: currentColor;
	line-height: 1;
}

.dch-social-link svg,
.dch-social-link i {
	display: block;
	width: 15px;
	height: 15px;
	font-size: 15px;
	color: currentColor;
	fill: currentColor;
}

.dch-social-text {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	opacity: .9;
}

.dch-search {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	border-left: 1px solid rgba(255, 255, 255, .55);
	padding-left: 12px;
}

.dch-search input[type="search"] {
	width: 0;
	max-width: 160px;
	height: 24px;
	border: 0;
	border-radius: 999px;
	padding: 0;
	background: rgba(255, 255, 255, .92);
	color: #1f1f1f;
	opacity: 0;
	outline: none;
	transition: width .22s ease, padding .22s ease, opacity .22s ease;
}

.dch-search:hover input[type="search"],
.dch-search:focus-within input[type="search"] {
	width: 130px;
	padding: 0 10px;
	opacity: 1;
}

.dch-search button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	border: 0;
	background: transparent;
	color: currentColor;
	cursor: pointer;
	font-weight: 700;
	line-height: 1;
}

.dch-search button svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.dch-mainbar {
	color: #fff;
}

.dch-mainbar__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	min-height: 72px;
}

.dch-menu-link {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 12px;
	color: currentColor;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .01em;
	text-transform: uppercase;
	white-space: nowrap;
}

.dch-menu-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.dch-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	width: 245px;
	min-width: 120px;
	color: currentColor;
	line-height: 1;
}

.dch-logo--image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 58px;
	object-fit: contain;
}

.dch-logo--text {
	flex-direction: column;
	gap: 10px;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 900;
	letter-spacing: .03em;
	text-transform: lowercase;
}

.dch-logo--text span {
	filter: drop-shadow(0 1px 0 rgba(0,0,0,.08));
}

.dch-logo--text i {
	position: relative;
	display: block;
	width: 100%;
	height: 5px;
	font-style: normal;
}

.dch-logo--text i::before,
.dch-logo--text i::after {
	content: "";
	position: absolute;
	top: 0;
	height: 5px;
}

.dch-logo--text i::before {
	left: 0;
	width: 50%;
	background: #e1192d;
}

.dch-logo--text i::after {
	right: 0;
	width: 50%;
	background: #ffae19;
}

.dch-account-links {
	justify-content: flex-end;
	gap: 24px;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.dch-account-links a,
.dch-mainbar a {
	color: currentColor;
}

.dch-header .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 860px) {
	.dch-topbar__inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 18px;
		padding-block: 8px;
		text-align: center;
	}

	.dch-topbar__left,
	.dch-topbar__right {
		justify-content: center;
		width: 100%;
		margin-left: 0;
		flex-wrap: wrap;
	}

	.dch-mainbar__inner {
		grid-template-columns: 1fr;
		gap: 14px;
		padding-block: 14px;
		text-align: center;
	}

	.dch-menu-link,
	.dch-logo,
	.dch-account-links {
		justify-self: center;
	}

	.dch-account-links {
		justify-content: center;
		flex-wrap: wrap;
		gap: 14px 22px;
	}
}

@media (max-width: 520px) {
	.dch-container {
		padding-inline: 14px;
	}

	.dch-topbar__left {
		gap: 14px;
		font-size: 13px;
	}

	.dch-social-links {
		gap: 8px;
	}

	.dch-search {
		border-left: 0;
		padding-left: 0;
	}

	.dch-search:hover input[type="search"],
	.dch-search:focus-within input[type="search"] {
		width: 108px;
	}

	.dch-logo--text {
		font-size: 34px;
	}
}
