﻿h1 {
	display:inline-block;
}

.main {
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:space-between;
}

.main.center {
	justify-content:center;
}

.main .column {
	width:45%;
}

@media all and (max-width:767px) {
	.main.center .column {
		width: 100%;
	}
}

.main .column .title.main_title {
	margin-bottom:30px;
	text-transform:capitalize;
}

.main .column .field {
	margin-bottom:6px;
}

.main .column .field .val {
	margin-top:11px;
}

.main .column .field input,
.main .column .field textarea,
.main .column .field select {
	background-color: #1d1d1b;
	color: #FFF;
	width: 100%;
	padding: 10px 18px;
	resize: vertical;
	font-size: 1.05em;
	font-family: 'jl';
	border: 0;
	box-sizing: border-box;
}

.main .column .field .val:before {
	content:"";
	width:18px;
	height:13px;
	display:block;
	margin-top:-13px;
	background-image:url(../img/menu-corner.svg);
	background-size:cover;
	position:absolute;
}

.main .mandatory_text {
	width:100%;
}

.main .mandatory_text .privacy {
	float:right;
}

.main .column .title.button {
	margin-top:19px;
	cursor:pointer;
}

.main .column .title.button:focus {
	outline:none;
}

.main .column .title.button:focus span {
	border-bottom-color:#000;
}

.main .column .separator {
	height:6em;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
	background-color:#333;
}