/* fixed postion elements */
/* the idea was to have one close button for all overlays */
#overlay_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 14;
}

.close_btn {
	width: 40px;
	height: 50px;
	position: fixed;
	top: 30px;
	right: 20px;
	background: transparent;
	margin-left: 10px;
	cursor: pointer;
	z-index: 14;
	display: none;
}

.overlay_hr {
	transition: all ease-out 0.5s;
	width: 100%;
	border: none;
	border-radius: 3px;
	position: absolute;
	background: #1a1a1a;
	top: 10%;
	height: 2px;
}

.close_btn #overlay_hr1 {
	transform: rotate(45deg);
}

.close_btn #overlay_hr2 {
	transform: rotate(-45deg);
}







@media screen and (max-width: 830px) {}




/******* Footer *******/

#footer_container {
	position: relative;
	width: 100%;
	background-color: white;
	padding: 50px 0 40px;
	/* margin-top: 150px; */
	/* border-top: 4px solid black; */
	z-index: 8;
}


#footer_elements_container {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	width: calc(95vw);
	max-width: 1520px;
	margin: auto;
}

.footer_element {
	margin: 0 10px 30px;
	min-width: 220px;
	margin-bottom: 60px;
}

.footer_element_cols_container {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.footer_element_col {
	display: flex;
	flex-flow: column nowrap;
}


div#footer_nl {
	margin: 10px 0 30px;
}

#mc_embed_signup,
#mc_embed_signup_scroll {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	align-content: center;
	border: none;
}

#mc-embedded-subscribe-form,
.mc-field-group,
#mce-EMAIL {
	width: 100%;
}

#mce-EMAIL {
	box-sizing: border-box;
	/* height: 100%; */
	height: unset;
	line-height: 47px;
}


.header_newsletter {
	border-radius: 30px;
	color: black;
	padding: 0px 184px 0px 30px;
	border: 1px solid black;
	display: flex;
	align-items: center;
	align-content: center;
	height: 48px;
	background-color: white;
	font-family: 'bnkr_reg', 'Helvetica Neue', Helvetica, 'Arial';
	font-size: 18px;
	text-align: left;
	position: static;
	width: unset;
	outline: none;
}

#mc-embedded-subscribe {
	border: none;
	font-family: 'bnkr_reg', 'Helvetica Neue', Helvetica, 'Arial';
	font-size: 19px;
	width: unset;
	position: static;
	background: transparent;
	color: white;
}

.signup_wrapper {
	position: relative;
	width: 100%;
	height: 50px;
}

#header_submit {
	position: absolute;
	top: 0px;
	right: 0px;
}



#header_newsletter.active {
	border-radius: 30px;
	color: white;
	padding: 0px 184px 0px 70px;
	border: 1px solid white;
	display: flex;
	align-items: center;
	align-content: center;
	height: 48px;
	background-color: black;
	font-family: 'bnkr_reg', 'Helvetica Neue', Helvetica, 'Arial';
	font-size: 19px;
	text-align: center;
}

#thank_you_header.non-active {
	display: none;
}

#thank_you_header.active {
	border-radius: 30px;
	color: white;
	padding: 0px 175px;
	border: 1px solid white;
	display: flex;
	align-items: center;
	align-content: center;
	height: 48px;
	background-color: black;
	font-family: 'bnkr_reg', 'Helvetica Neue', Helvetica, 'Arial';
	font-size: 19px;
	text-align: center;
}




#header_submit,
#header_submit.active {
	cursor: pointer;
	box-sizing: border-box;
	background-color: black;
	border-radius: 30px;
	color: black;
	padding: 5px 32px;
	margin: 1px 0px 0 -130px;
	height: calc(100% - 2px);
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	border: none;
	font-size: 19px;
	font-family: 'bnkr_reg', 'Helvetica Neue', Helvetica, 'Arial';
}

#header_submit.clear.active {
	padding: 0 7px;
}

#mc-embedded-subscribe {
	padding: 15px 40px;
}


#header_submit.non-active,
.header_newsletter.non-active {
	display: none;
}

#header_element_container {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	align-content: center;
	margin: 0px 10px;
	border: none;
}

.header_element_container_item {
	margin-left: 4px;
}

/******* end Footer *******/