#informa-header {
	color: #FFF;
    font-family: Arial, Helvetica, sans-serif !important;
	background-color: #52595C;
}
#informa-header .informa-header-copy {
	display: flex;
	align-items: center;
	justify-content: center;
}
#informa-header .informa-header-copy .columns {
	width: 100%;
	max-width: 1036px;
	padding: 24px 0;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 500;
}
#informa-header .informa-header-copy .columns .column-1 {
	flex: 1;
	padding: 0 24px;
}
#informa-header .informa-header-copy .columns .column-1 .informa-links {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
#informa-header .informa-header-copy .columns .column-1 .informa-links li {
	margin-right: 8px;
	padding-right: 8px;
	border-right: 1px solid #FFFFFF;
	font-size: 1em;
}
#informa-header .informa-header-copy .columns .column-1 .informa-links li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
#informa-header .informa-header-copy .columns .column-1 .informa-links li a {
	color: #FFFFFF;
	text-decoration: underline;
}
#informa-header .informa-header-copy .columns .column-2 {
	flex: 1;
	padding: 0 24px;
}
#informa-header .informa-header-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
}
#informa-header .informa-header-toggle a.toggle {
	font-size: 0;
	display: flex;
	gap: 10px;
}
#informa-header .informa-header-toggle a.toggle img.informa-logo {
	width: 72px;
}
#informa-header .informa-header-toggle a.toggle .toggle-icon svg {
	width: 10px;
}
#informa-header .informa-header-toggle a.toggle .toggle-icon.closed svg {
	rotate: 180deg;
}
@media screen and (min-width: 1024px) {
    #informa-header .informa-header-copy .columns {
		width: 100%;
		max-width: 1036px;
		flex-direction: row;
	}
	#informa-header .informa-header-copy .columns .column-1 {
		border-right: 1px solid #FFFFFF;
	}
}

/*
Show/hide
*/

#informa-header .informa-header-copy {
	display: none;
}
#informa-header .informa-header-toggle a.toggle .toggle-icon svg {
	rotate: 180deg;
}
#informa-header.expanded .informa-header-copy {
	display: flex;
}
#informa-header.expanded .informa-header-toggle a.toggle .toggle-icon svg {
	rotate: 0deg;
}