body
{
	background-size: cover;
	background-repeat: no-repeat;
}
.header
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2147483647;
	display: flex;
	box-shadow: none;
	transition: all .5s;
	align-items: center;
	background-color: #fff;
	flex-direction: row;
	gap: 10px;
	height: 52px;
	padding: 0 12px;
	justify-content: space-between;
}
body.scrolled .header
{
	box-shadow: 0 0 7px rgba(0,0,0,0.1) !important;
}

body:not(.menu-opened) .menu-toggle > .closer,
body.menu-opened .menu-toggle > .opener
{
	opacity: 0;
	transition: 0.3s;
	pointer-events: none;
}
.menu-toggle
{
	cursor: pointer;
	position: relative;
	height: 24px;
	width: 24px;
	display: none;
}
.menu-toggle > i
{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.logo-wrapper
{
	margin: 12px 0;
}

.view-selector
{
	position: fixed;
	top: 54px;
	left: 0;
	bottom: 0;
	z-index: 2147483617;
	opacity: 0;
	padding: 12px;
	min-width: 200px;
	transition: 0.2s;
	pointer-events: none;
	background-color: #fff;
	transform: translateX(-100%);
	border-right: 1px solid #ddd;
	box-shadow: 0 0 7px rgba(0,0,0,0.1) !important;
}
body.menu-opened .view-selector
{
	opacity: 1;
	pointer-events: initial;
	transform: translateX(0%);
}
.view-selector-item.active,
.view-selector-item:hover
{
	color: #f79400;
}
.view-selector-item
{
	font-weight: bold;
	cursor: pointer;
	transition: 0.5s;
}
.view-selector-item + .view-selector-item
{
	margin-top: 12px;
}

.view:not(.active),
.header .filters-wrapper .filters:not(.active)
{
	display: none;
}

.header .logo-wrapper .logo
{
	height: 29px;
	overflow: hidden;
	flex: 1;
	align-items: center;
	display: flex;
}

.header .view-selector
{
	gap: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.header .filters-wrapper
{
	flex: 1;
	display: none;
}

.views
{
	height: calc(100vh - 52px);
}

.view.active
{
	/* height: 100%; */
	display: flex;
	justify-content: center;
	padding: 30px;
}
.split-container {
	width: 100%;
	display: flex;
	max-width: 600px;
}
.split-container > div
{
	flex: 1;
	width: 50%;
	display: flex;
}
picture, img
{
	width: 100%;
}
picture {
	padding: 0 24px;
}

.login-wrapper {
	display: flex;
	padding: 30px;
	flex-direction: column;
	width: 100%;
	background-color: #00000030;
	border-radius: 15px;
}

.login-wrapper .login-title {
	margin: 0;
	color: #fff;
	font-size: 34px;
	text-align: right;
	line-height: 100%;
	position: relative;
	font-family: EONBrixSans, Arial, Geneva, Helvetica, sans-serif;
}

.login-wrapper .login-subtitle {
	margin: 0;
	color: #fff;
	text-align: right;
	line-height: 100%;
	font-family: EONBrixSans, Arial, Geneva, Helvetica, sans-serif;
}

.login-wrapper .content {
	padding-top: 30px;
}

input.form-control {
	display: block;
	filter: none;
	padding: 24px 12px 6px 12px;
	margin: 1px 1px 5px 0;
	position: relative;
	background: none;
	border: none;
	border-bottom: solid 2px #002753;
	font-family: EONBrixSans, serif;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	color: #39393a !important;
	width: 100%;
	height: 52px;
	border-radius: 0;
	box-shadow: inset 0 0 100px 100px #fff !important;
}

input.form-control:focus {
	box-shadow: inset 0 0 100px 100px #fff !important;
}

.form-group {
	position: relative;
}

.form-group input:focus + label,
.form-group .placeholder,
.form-group input:-webkit-autofill + label {
	top: 4px;
	font-size: 14px;
}

.form-group > label {
	position: absolute;
	padding-left: 12px;
	top: 15px;
	bottom: 0;
	left: 0;
	pointer-events: none;
	color: #8f9192;
	transition: .2s;
	font-family: EONBrixSans, serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	opacity: 1;
	width: 100%;
}


button
{
	opacity: 1;
	border: none;
	width: 124px;
	font-size: 18px;
	padding: 12px 17px;
	text-align: center;
	display: inline-block;
	outline: none !important;
	background-color: #fff;
	transition: 0.3s;
	font-family: EONBrixSans, serif;
}
button:disabled
{
	/*opacity: .6;*/
}
button:hover {
	background-color: #ef5009;
}

@media (max-width: 990px)
{
	.banner-wrapper
	{
		flex: auto;
		height: 200px;
	}
	.split-container
	{
		max-width: unset;
	}
}