:root {
	--primary-color:  #1684CD;
}

* {
	box-sizing: border-box;
}
@font-face {
	font-family: 'SimplerPro Regular';
	src: url('fonts/SimplerPro-Regular.woff') format('woff'),
		url('fonts/SimplerPro-Regular.ttf') format('truetype');
}
@font-face {
	font-family: 'SimplerPro Bold';
	src: url('fonts/SimplerPro-Bold.woff') format('woff'),
	url('fonts/SimplerPro-Bold.ttf') format('truetype');
}

fieldset,
legend{
	padding: 0;
	border: 0;
	margin:0;
}

body{
	color: #495057;
	font-family: 'SimplerPro Regular';
	font-size: 16px;
	margin:0;
	line-height: 1.25;
}

.logo{
	position: fixed;
	top:50px;
	left: 50px;
	z-index: 10000;
}

.images{
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top:0;
	left:0;
	right: 550px;
	bottom:0;
}

.images img{
	max-width: 100%;
	width: 100%;
	object-fit: cover;
	height: 100%;
}


.credits{
	position: absolute;
	bottom:50px;
	left:50px;
	color:#fff;
}

.progress{
	position: fixed;
	bottom: 50px;
	right: 600px;
	z-index: 100;
	color: #fff;
	width: 160px;
	display: none;
}

.progress-bar{
	position: relative;
	transition: width .6s ease;
	width: 0%;
	height: 4px;
	background: rgba(255, 255, 255, 1);
	border-radius: 2px;
}

.progress-bar:before{
	content:'';
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	width: 160px;
	height: 4px;
	background: rgba(255, 255, 255, 0.56);
	border-radius: 2px;
}

.slide{
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom:0;
	transition: all ease 0.5s;
}

/* Fading animation */
.slide.active {
	z-index: 10;
}

.content p,
.content ul{
	color: #373737;
	margin-bottom:20px;
	margin-top:0;
}

.content p+ul{
	margin-top: -15px;
}

.form{
	position: absolute;
	right: 0;
	top:0;
	bottom:0;
	width:550px;
	background-color: #fff;
}

.buttons{
	display: flex;
}
.btn{
	border-radius: 8px;
	color:#fff;
	font-weight: bold;
	line-height: 19px;
	text-align: center;
	width: 162px;
	height: 48px;
	border:0;
	margin-top:30px;
	cursor: pointer;
	font-family: 'SimplerPro Regular';
}

.btn.prev{
	background-color: #d2d2d2;
	margin-left:20px;
}
.btn.next{
	background-color: #1472B1;
}
.next:hover{
	background-color: var(--primary-color);
}

.fieldset{
	padding:100px 50px;
	background-color: #fff;
}

.legend{
	font-weight: bold;
	font-size: 30px;
	line-height: 36px;
	color: #373737;
	margin-bottom:50px;
}

.field_text,
.field_email,
.field_radio,
.field_file,
.field_textarea{
	margin-top:10px;
	margin-bottom: 25px;
}
.field_text .label,
.field_email .label,
.field_radio .title,
.field_file .label,
.field_textarea .label{
	font-weight: bold;
	text-align: right;
	display: block;
	max-width: 260px;
	margin-bottom: 10px;
}
.location_error p{
	margin-top:0;
}
.location_error,
.taxes46_error{
	display: none;
}

label.error,
.active{
	display: block;
}

.location_error,
.taxes46_error,
label.error{
	font-size: 12px;
	color: rgba(73,80,87,1);
	font-weight: normal;
	position: relative;
	padding-right: 20px;
	margin-top: 10px;
}

.location_error:before,
.taxes46_error:before,
label.error:before{
	content: '';
	width: 16px;
	height: 13px;
	background-image: url('error.svg');
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top:0;
	right: 0;
}

input.error,
input.valid{
	background-position: 15px center;
	background-repeat: no-repeat;
	padding-left: 20px;
}
input.error{
	background-image: url('invalid.svg');
}

input.valid{
	background-image: url('valid.svg');
}

.hidden{
	display: none;
}

.field_checkbox {
	margin-top: 30px;
	line-height: 1;
}

.field_text input,
.field_email input,
.field_textarea textarea{
	width: 350px;
	line-height: 40px;
	background-color: #FFFFFF;
	border: 1px solid #ACB5BD;
	border-radius: 4px;
}

.field_text input:active,
.field_email input:active,
.field_textarea textarea:active,
.field_text input:focus,
.field_email input:focus,
.field_textarea textarea:focus{
	outline: 1px solid #5EC6F1;
}

.field_textarea textarea{
	height: 140px;
	line-height: 20px;
	resize: vertical;
}

.inputs{
	width: 350px;
	display: flex;
}

.field_radio .inputs{
	flex-direction: column;
}
.field_radio .fields{
	display: flex;
}

.field_checkbox .fields{
	display: flex;
	flex-direction: column;
}

.field_checkbox .field-group{
	margin-top:10px;
}

.field-group  label{
	margin-left:20px;
	padding-right:25px;
	position: relative;
}

.field-group input[type="checkbox"],
.field-group input[type="radio"] {
	/*display: none;*/
	background: transparent;
	position: relative;
	visibility: hidden;
	margin: 0;
	padding: 0;
	height: 0;
	width: 0;
}
.field-group label::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: transparent;
	border: 2px solid #ACB5BD;
	border-radius: 50%;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: border-color 400ms ease;
}

.field-group label::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	top: 50%;
	right: 0;
	transform: translateY(-50%) scale(0);
	transition: transform 400ms ease;
}

input[type="radio"]:checked + label::before {
	/*border-color: var(--primary-color);*/
}

input[type="checkbox"]:checked + label::after,
input[type="radio"]:checked + label::after {
	transform: translateY(-50%) scale(0.55);
}



.field_file.file_impact,
.field_file.file_budget {
	margin-top:-15px;
}
.field_file.file_impact label,
.field_file.file_budget label{
	display: none;
}

.field_file{
	position: relative;
}
.field_file div{
	display: flex;
	align-items: center;
	width:350px;
	position: relative;
}
.input-file{
	position: absolute;
	top: 0;
	right: 0;
	width: 0px;
	opacity: 0;
	padding: 4px;
	cursor: pointer;
	height: 28px;
}

.file-upload{
	width: 100px;
	height: 28px;
	background-color: #FFFFFF;
	border: 1px solid #ACB5BD;
	box-sizing: border-box;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 7.5px;
	cursor: pointer;
}
.file-upload img{
	margin-left:5px;
	margin-top:2px;
}


.file-name {
	margin: 0 10px 0 0;
	line-height: 28px;
	font-size: 12px;
}
.file-name.bold{
	font-family: 'SimplerPro Bold';
}
.file-status{
	display: block;
	width: 15px;
	height: 15px;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 15px;
	top:50%;
	transform: translateY(-50%);
}
.file-status.invalid{
	background-image: url('invalid.svg');
}
.file-status.valid{
	background-image: url('valid.svg');
}

.fieldset{display: none; width: 100%; height: 50%;margin: 0px auto;}
.current{display: block;}


/* .field_fileActivityBudget label{
	display: none !important;
} */
