#header-menu {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

#header-menu .menu-label {
	color: #676767;
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	display: block;
}

#header-menu .t-button-primary {
	min-height: 40px;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	border-radius: 24px;
	padding: 10px 24px;
	background: #ff8200;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition:
		color 150ms ease-out,
		background-color 150ms ease-out;
	margin-top: 4px;
}

#header-menu .t-button-primary:disabled,
#header-menu .t-button-primary.disabled {
	background-color: #fed7be;
}

#header-menu .t-button-primary:disabled span,
#header-menu .t-button-primary.disabled span {
	color: #fed7be;
}

#header-menu .t-button-primary:hover {
	background-color: #e77a1b;
}

#header-menu .t-button-primary span {
	color: #ff8200;
	font-size: 0.75rem;
	font-weight: inherit;
	line-height: 1.5;
	border-radius: 2px;
	padding: 1px 4px;
	background-color: #fff;
}

#header-menu a.t-button-primary {
	color: #fff;
	text-decoration: none;
}
