.custom-navbar {
	position: relative;
	border-bottom: 1px solid #ccc;
	margin: 0 -10px 0px;
}
.custom-navbar.alternate {
	border-bottom: none;
	padding: 20px;
	background-color: var(--deep-purple);
}
.custom-navbar .inner {
	margin: 0px auto;
	max-width: 966px;
	list-style: none;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: space-around;
	padding: 12px 0px;
	position: relative;
}
.custom-navbar.alternate .inner {
	max-width: var(--width-feature);
}
.custom-navbar.alternate {
	margin-bottom: 30px;
}
@media (max-width: 640px) {
	.custom-navbar .inner {
		padding: 24px 15px;
	}
}

.custom-navbar ul.primary-list {
	flex: 1;
	display: flex;
	align-items: center;
	margin: 0;
	white-space: nowrap;
	list-style: none;
}

.custom-navbar ul.primary-list li {
	margin: 0;
	padding: 0 12px;
}

.custom-navbar ul li a {
	font-family:"proxima-nova";
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.5em;
	color: #005293;
	padding: 0px 5px;
}
.custom-navbar.alternate ul li a {
	color: white;
}
.custom-navbar ul li a:hover {
	font-family:"proxima-nova";
}

@media (max-width: 640px) {
	.custom-navbar ul li a { line-height: 1.7em; }
}

.custom-navbar .overflow {
	position: absolute;
	z-index: 15;
	top: 0;
	right: 0;
	display: flex;
	justify-content: right;
	align-items: center;
	height: 100%;
}

@media (max-width: 640px) {
	.custom-navbar .overflow {
		justify-content: center;
		width: 100%;
	}
}

.custom-navbar .overflow button {
	margin: 0;
	padding: 0 12px;
	font-family:"proxima-nova";
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.2em;
	color: #325729;
	background-color: transparent;
	width: 201px;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}
.custom-navbar.alternate .overflow button {
	color: white;
}
@media (max-width: 640px) {
	.custom-navbar .overflow button {}
}

.custom-navbar .overflow button:hover { color: #005293; }
.custom-navbar.alternate .overflow button:hover { color: white; }

.custom-navbar .overflow ul {
	position: absolute;
	right: 0px;
	bottom: 0;
	margin: 0;
	padding: 12px 24px;
	width: 100%;
	list-style: none;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}
@media (min-width: 640px) {
	.custom-navbar span.mobile-caption {
		display: none;
	}
}
@media (max-width: 640px) {
	.custom-navbar .overflow ul {
		right: -0.9375rem;
		width: calc(100% + 1.875rem);
		padding: 12px 35px;
	}
	.custom-navbar span.desktop-caption {
		display: none;
	}
}

.custom-navbar .overflow.open ul {
	opacity: 1;
	pointer-events: all;
	background-color: #fff;
	border: 1px solid #ccc;
}

.custom-navbar.alternate .overflow.open ul {
	background-color: var(--deep-purple);
}

.custom-navbar.alternate .overflow button .fa {
	width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--bright-green);
    border-radius: 100%;
    margin-left: 10px;
	border: 1px solid white;
	color: var(--deep-purple);
}

@media (min-width: 1025px) {
	.custom-navbar.alternate .overflow button .fa {
		width: 33px;
		height: 33px;
		font-size: 18px;
	}
}