.lity-active.search-active {
	overflow: auto;
}

.menubar--search-wrap {
	display: block;
	align-self: center;
}

.menubar--search-button {
	background: transparent;
	border: none;
	margin: 0;
	padding: 0;
	color: inherit;
	padding: 0 10px;
	cursor: pointer;
	transition: color .3s;
	-webkit-appearance: none;
	display: flex;
	justify-content: center;
}

.menubar--search-button:hover,
.menubar--search-button:focus {
	outline: none;
	color: var(--theme-chartreuse);
}

.menubar--search-button-icon {
	height: 1.5em;
	width: auto;
}
	
.menubar--search {
	width: 100%;
	margin: 0 auto;
}
	
.menubar--search-container-wrap {
	background: #fff;
	padding: 15px 0;
}

.menubar--search-container {
	padding: 0 30px;
}
	
.menubar--search-close-button {
	align-self: flex-end;
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
	cursor: pointer;
}
	
.menubar--search-logo {
	width: 59px;
	height: auto;
}

.menubar--search-form-col {
	position: relative;
}

.menubar--search-form-col .search-form {
	position: relative;
	display: flex;
	justify-content: space-between;
}
	
.menubar--search-form-col .search-form label {
	display: block;
	margin-bottom: 0;
	flex-grow: 1;
}
	
.menubar--search-form-col input[type="search"] {
	border-radius: 0;
	background: #ffffff;
	width: 100%;
	display: block;
	border: none;
	border-bottom: 1px solid var(--theme-charcoal-25);
	padding: 10px 30px 10px 35px;
	background-image: url(../svg/search-icon-black.svg);
	background-repeat: no-repeat;
	background-position: left center;
}

.menubar--search-form-col input[type="search"]:focus {
	outline: none;
	border-bottom: 1px solid var(--theme-charcoal);	
}

.menubar--search-form-col input[type="submit"] {
	display: none;
}

.search--container {
	padding: 60px 30px;
}

.search--row,
.search--col {
	margin-bottom: 30px;
}

.search-active .lity {
	background: rgba(0, 0, 0, 0.62);
}

.search-active .lity-close {
	visibility: hidden;
}

.search-active .lity-container {
	vertical-align: top;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.search-active .lity-content:after {
	box-shadow: none;
}

.lity-active .menubar--search-ql {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -14px;
	background: #fff;
	padding: 25px 30px 15px;
	box-shadow: inset 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	opacity: 0;
	animation: LWHfadeIn 1s ease-in-out;
	z-index: -1;
}

@keyframes LWHfadeIn {
	0% {
		opacity: 0; 
	}
	50% {
		opacity: 0; 
	}
	100% {
		opacity: 1;
	}
}

.search-active .menubar--search-ql {
	transition: opacity .3s;
	transition-delay: 3s;
	opacity: 1;
}

.menubar--search-ql-link {
	display: block;
	margin-bottom: 5px;
}

.menubar--search-ql-link:hover {
	color: var(--theme-green);
}

@media (min-width: 575px) {
	.menubar--search-form-col .search-form label {
		margin-right: 15px;
	}

	.menubar--search-form-col input[type="submit"] {
		display: inline;
		flex-grow: 0;
		max-width: 100px;
	}
}

@media (max-width: 1299px) {
	.menubar--right {
		display: flex;
	}
	
	.menubar--search-wrap {
		align-self: center;
		margin-right: 15px;
	}
}

@media (min-width: 1300px) {
	.menubar--right {
		display: none;
	}	
}