.brnd-header-wrapper {
	width: 100%;
	padding: 16px 0;
	border-bottom: solid 1px var(--brnd-light-gray);
	background: white;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
}
.brnd-header-sticky-spacer {
	display: block;
	width: 100%;
	height: 100px;
}

.brnd-adminbar-spacer {
  padding-top: 28px
}

.brnd-header-side-menu {
	position: fixed;
	top: 0;
	right: -100%;
	opacity: 0;
	height: 100%;
	width: 100%;
	z-index: 1000;
	transition: opacity 300ms ease-in-out, right 300ms ease-in-out;
	color: black;
	display: none;
	background: var(--brnd-primary-blue-opa50);
}
.brnd-header-side-menu.active {
	right: 0;
	opacity: 1;
}
.brnd-header-side-menu-container {
	padding: 40px;
	height: 100%;
	width: 420px;
	position: relative;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-content: flex-start;
}
.brnd-header-side-menu-header {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.brnd-header-menu-close {
	cursor: pointer;
	font-size: 32px;
	font-weight: 700;
	padding-right: 20px;
	padding-bottom: 10px;
	color: var(--brnd-primary-blue);
}
.brnd-header-side-menu-search {
	text-align: center;
	margin: 24px auto;
	flex-grow: 1;
}
.brnd-header-side-menu-search .brnd-searchform-input-wrap {
	width: 100%;
}
.brnd-header-side-menu-link {
	width: 100%;
	display: block;
	color: var(--brnd-dark-gray);
	padding: 10px;
	font-size: 18px;
	font-weight: 700;
	text-align: right;
}

.brnd-header-side-menu-links {
	flex-grow: 1;
	width: 100%;
}

.brnd-header-side-menu-btns {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	margin-top: 16px;
}

.brnd-header-container {
	width: 100%;
	max-width: 83.333%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.brnd-header-start {
	display: flex;
	align-items: center;
}

.brnd-header-logo {
	width: 200px;
	margin-left: 24px;
}

.brnd-header-links {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-width: 500px
}

.brnd-header-link {
	cursor: pointer;
	position: relative;
	display: inline-block;
	padding: 18px 8px;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: 0em;
	text-align: right;
	color: var(--brnd-dark-gray);
}

.brnd-header-link.brnd-active-nav-link {
	color: var(--brnd-primary-blue);
	font-weight: 700;
}

.brnd-header-link-children {
	background: white;
	opacity: 0;
	z-index: -1000;
	position: absolute;
	top: 54px;
	right: 0;
	left: 0;
	visibility: hidden;
	margin: auto;
	width: 250px;
	padding: 24px;
	transition: opacity 300ms ease-in-out;
	border: solid 1px var(--brnd-light-gray);
}

.brnd-header-link-child {
	color: var(--brnd-dark-gray);
	display: block;
	padding: 16px 0;
	border: solid 1px var(--brnd-light-gray);
	border-left-width: 0;
	border-right-width: 0;
	padding-right: 8px;
}

.brnd-header-link-child:hover {
    background: var(--brnd-lighter-gray);
		color: var(--brnd-dark-blue);
}

.brnd-header-link-children .brnd-header-link-child:first-child {
	border-top-width: 0;
}
.brnd-header-link-children .brnd-header-link-child:last-child {
	border-bottom-width: 0;
}

.brnd-header-link-child.brnd-active-nav-link {
	color: var(--brnd-primary-blue);
	font-weight: 700;
}

.brnd-parent-title {
	color: var(--brnd-dark-gray);
	transition: color: 300ms ease-in-out;
	margin-left: 5px;
}

.brnd-parent-chevron {
    display: inline-block;
    transform: rotateZ(90deg);
    font-size: 10px;
    vertical-align: middle;
		transition: transform 300ms ease-in-out;
}

.brnd-active-nav-link-parent {
	color: var(--brnd-dark-gray);
	font-weight: 600;
}

.brnd-header-link:hover .brnd-header-link-children {
	visibility: visible;
	opacity: 1;
	z-index: 1000;
}

.brnd-header-side-menu-link {
	cursor: pointer;
}

.brnd-header-side-menu-link-expanded .brnd-parent-title,
.brnd-header-link:hover .brnd-parent-title {
	color: black;
}

.brnd-header-side-menu-link-expanded .brnd-parent-chevron,
.brnd-header-link:hover .brnd-parent-chevron {
	transform: rotateZ(0deg);
}

.brnd-header-btns {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.brnd-header-btn {
	border-style: solid;
	border-width: 1px;
	margin-left: 16px;
}

.brnd-header-menu-btn {
	width: 30px;
	display: none
}

.brnd-header-side-menu-link-child {
	color: var(--brnd-dark-gray);
	display: block;
	padding: 8px 0;
	border: solid 1px var(--brnd-light-gray);
	border-left-width: 0;
	border-right-width: 0;
}

.brnd-header-search {
	height: 40px;
}

@media screen and (max-width: 1500px) {
	.brnd-header-sticky-spacer {
		height: 100px;
	}
	.brnd-header-menu-btn {
		display: block;
		cursor: pointer
	}
	.brnd-header-search {
		display: none;
	}
	.brnd-header-btns {
		display: none;
	}
	.brnd-header-links {
		display: none;
	}
	.brnd-header-side-menu {
		display: block;
	}
	.brnd-header-logo {
		margin-left: 0;
	}
}
@media screen and (max-width: 420px) {
	.brnd-header-side-menu-container {
		width: 100%;
	}
}
