.input-block {
	width: 100%;
	padding-bottom: 20px;
	position: relative;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
	border: 1px solid #c6c6c6;
	background-color: #f8fcff;
	padding: 9px 8px;
	width: 100%;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	font-size: 1em;
}
input[type="text"].error,
input[type="password"].error,
input[type="number"].error,
input[type="email"].error,
textarea.error {
	border: 1px solid #ff0000;
}
select,
.select2 {
	border: 1px solid #c6c6c6;
	padding: 8px;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	background-color: #f8fcff;
	background-image: url(/image/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right center;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 1em;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.option-with-image .img-flag {
	width: 20px;
	height: auto;
	vertical-align: middle;
	margin-right: 4px;
}
.option-without-image {
	padding-left: 28px;
}
label {
	padding-bottom: 2px;
}
button,
input[type=submit] {
	background: #6995ca;
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	padding: 8px 10px !important;
	border: 1px solid #2968b4;
}
button:hover,
button:focus,
input[type=submit]:hover,
input[type=submit]:focus {
	cursor: pointer;
	background: #2968b4;
}
ul.radio-list {
	display: flex;
	flex-wrap: wrap;
}
ul.radio-list li {
	width: 200px;
	padding: 0 6px 4px 0;
}
ul.radio-list li input[type=radio] {
	z-index: 2;
	position: absolute;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
}
ul.radio-list li input[type=radio] + label {
	padding: 2px 0 2px 24px;
	position: relative;
}
ul.radio-list li input[type=radio] + label:before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	display: block;
	border: 1px solid #c6c6c6;
	background: #ffffff;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 0px;
	margin-top: -8px;
	border-radius: 10px;
}
ul.radio-list li input[type=radio]:checked + label:after {
	content: "";
	display: block;
	position: absolute;
	background: #2968b4;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 8px;
	margin: -5px 0 0 -5px;
	border-radius: 10px;
}
/*ul.checkbox-list {
	display: flex;
	flex-wrap: wrap;
}
ul.checkbox-list li {
	width: 200px;
	padding: 0 6px 4px 0;
}
ul.checkbox-list li input[type=checkbox] {
	z-index: 2;
	position: absolute;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
}
ul.checkbox-list li input[type=checkbox] + label {
	padding: 2px 0 2px 24px;
	position: relative;
}
ul.checkbox-list li input[type=checkbox] + label:before {
	content: "";
	box-sizing: border-box;
	position: absolute;
	display: block;
	border: 1px solid #c6c6c6;
	background: #ffffff;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 0px;
	margin-top: -8px;
	border-radius: 2px;
}
ul.checkbox-list li input[type=checkbox]:checked + label:after {
	content: "";
	display: block;
	position: absolute;
	background: #2968b4;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 8px;
	margin: -5px 0 0 -5px;
	border-radius: 2px;
}*/
input[type=checkbox] {
	visibility: hidden;
	position: absolute;
}
input[type=checkbox] + label {
	padding-left: 22px;
	position: relative;
}
input[type=checkbox] + label:before {
	content: "";
	border: 1px solid #c6c6c6;
	border-radius: 4px;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 2px;
	left: 0;
	box-sizing: border-box;
}
input[type=checkbox]:checked + label:after {
	position: absolute;
	top: 5px;
	left: 3px;
	content: "";
	background: #6995ca;
	width: 10px;
	height: 10px;
	border-radius: 2px;
}