.masthead {
	background: var(--color-shade);
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 9991;
}

@media(max-width: 1150px) {
	.masthead {
		align-items: flex-end;
		justify-content: flex-end;
	}
}

@media(max-width: 700px) {
	.masthead {
		/*display: none;*/
	}
	.mastHeadNav > ul > li > a {
		font-size:12px;
	}
}

.masthead-links {
	display: flex;
}

@media(max-width: 1150px) {
/*	.masthead-links {
		display: none;
	}*/
	.masthead-updates {
		display: none;
		float:right;
	}
}

@media(max-width: 700px) {
	.masthead-links .mastHeadNav {
		width: 100%;
	}
	.masthead-links {
		width: 100%;
	}
	.masthead-links .mastHeadNav .nav-list {
width: 100%;

display: flex;
justify-content: space-between;
	}
}

.mastheadUpdates {
	display: flex;
	min-width: 500px;
}

.mastheadUpdates div {
	white-space: nowrap;
}

.mastheadUpdates a {
	text-decoration: none;
}

.mastheadUpdates a:hover {
	text-decoration: underline;
}

.mastheadUpdates-label {
	padding:10px 13px 10px 15px;
	color:#99999a;
}

.mastheadUpdates-update {
	padding:10px 0 10px 0;
}

.mastheadUpdates-update .cycle-slideshow div {
	display: none;
}

.mastheadUpdates-update a {
	border-bottom: 1px solid transparent;
	text-decoration: none;
	transition:0.2s border-bottom-color ease;
}

.mastheadUpdates-update a:hover {
	border-bottom: 1px solid var(--color-accent);
	text-decoration: none;
}

.mastHeadNav {

}

.mastHeadNav > ul {
	list-style: none;
	margin:0;
	padding:0;
}

.mastHeadNav > ul > li {
	float:left;
	position: relative;
}

.mastHeadNav > ul > li > a {
	padding: 10px 13px 10px 15px;
	display: block;
	text-decoration: none;
}

.mastHeadNav > ul > li.buttonlinkstyle > a {
	color:#fff;
	background: var(--color-accent);
	transition:0.2s background ease;
	/*padding:10px 20px !important;*/
	padding-left: 25px;
	padding-right: 25px;
	margin-left: 15px;
}

.mastHeadNav > ul > li.buttonlinkstyle > a:hover {
	background: var(--color-accentHover);
}


/*.mastHeadNav > ul > li > a {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition:0.2s border-bottom-color ease;
}*/

/*.mastHeadNav > ul > li > a:hover,
.mastHeadNav > ul > li.current_page_ancestor > a {
	text-decoration: none;
	border-bottom: 1px solid var(--color-accent);
}*/

/*.mastHeadNav > ul > li.buttonlinkstyle > a {
	background:red;
}*/

.mastHeadNav .sub-menu {
	position: absolute;
	top: 49px;
	height: auto;
	width: 184px;
	z-index: 9999;
	background:#767c7f;
	left: 50%;
	transform: translate(-50%, 30px);
	transition:0.2s ease-in-out;
	margin:0;
	padding:0;
	list-style: none;
	opacity:0;
	visibility: hidden;
}

.mastHeadNav .sub-menu:before {
	content:"";
	display: block;
	height:16px;
	width:100%;
	background:url('/wp-content/themes/westcott/static/images/dropdown-arrow.svg');
	background-position: bottom center;
	background-repeat: no-repeat;
	position: absolute;
	top:-15px;
	left:0;
}

.mastHeadNav .sub-menu li {
	display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #84898c;
}

.mastHeadNav .sub-menu li a {
	display: block;
	color: #fff;
	font-size: 15px;
	border: 0;
	text-align: center;
	padding: 11px;
	text-decoration: none;
}

.mastHeadNav .sub-menu li a:hover,
.mastHeadNav .sub-menu li.current_page_item a {
	background:#6a6f72;
	border:0;
}
/*
.mastHeadButtons {
	margin-left: 15px;
}

.mastHeadButtons ul {
	list-style: none;
	margin:0;
	padding:0;
	overflow:hidden;
}

.mastHeadButtons li {
	float:left;
}

.mastHeadButtons a {
	background:var(--color-accent);
	transition:0.2s background ease-in-out;
	color:#fff;
	padding:10px 20px !important;
	text-decoration: none;
	display: block;
}

.mastHeadButtons a:hover {
	background:var(--color-accentHover);
	text-decoration: none;
}
*/