input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
input[type='date'],
textarea,
select {
	font-size: 1.2rem;
	height: 32px;
	border-radius: 2px;
	padding: 6px 8px;
	color: #7a7f84;
	border: 1px solid #edeff0;
	background-color: #fff;
	outline: 0;
	width: 100%;
	line-height: 1.5;
}

input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
input[type='date'],
textarea {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
	resize: vertical;
}
select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background: #fff url('../img/select.png') no-repeat right 5px center;
}
input[type='email']:focus,
input[type='number']:focus,
input[type='search']:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='date']:focus,
textarea:focus,
select:focus {
	color: #000;
	border-color: #43b7ff;
}
input::-webkit-input-placeholder {
	color: #c7c8cb;
}
input::-moz-placeholder {
	color: #c7c8cb;
}
input:-ms-input-placeholder {
	color: #c7c8cb;
}
::-webkit-input-placeholder {
	color: #c7c8cb;
}
::-moz-placeholder {
	color: #c7c8cb;
}
:-ms-input-placeholder {
	color: #c7c8cb;
}

input[type=email].error,
input[type=search].error,
input[type=text].error,
input[type=password].error,
input[type=tel].error,
textarea.error,
select.error {
	border-color: #ff6464;
	color: #ff6464;
}

input[disabled][type=text],
input.disabled,
textarea[disabled],
textarea.disabled {
	border-color: #f2f4f5;
	background-color: #edeff0;
	cursor: not-allowed;
}
input[readonly][type=text],
input.readonly,
textarea[readonly],
textarea.readonly {
	background-color: #edeff0;
	border-color: #f2f4f5;
}
input[readonly][type=text]:focus,
input.readonly:focus,
textarea[readonly]:focus,
textarea.readonly:focus {
	background-color: #fff;
}

.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	height: 32px;
	display: inline-block;
	padding: 7px 15px;
	border-radius: 2px;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	color: #8c9096;
	border: 0;
	background-color: #f7f9fa;
	/*text-transform: uppercase;*/
	box-shadow: inset 0 0 0 1px rgba(25, 35, 45, .05), inset 0 -40px 40px -20px rgba(25, 35, 45, .02), inset 0 -1px 0 0 rgba(25, 35, 45, .08), 0 1px 0 0 rgba(25, 35, 45, .05);
}
.button_small {
	height: 24px;
	width: 24px;
	padding: 2px 6px;
	font-size: 10px;
	margin: 3px 0 0 0;
}
.button_wrap {
	display: block;
	white-space: normal;
	height: auto;
	position: relative;
	/*padding-left: 40px;*/
	/*padding-right: 40px;*/
}
.button_wrap .percents {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 3px;
	margin: auto 0;
	width: 35px;
	height: 20px;
	padding: 2px;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	background-color: #fff;
	border-radius: 2px;
	box-shadow: 0 0 0 1px #d8dce1;
}
.button_align_right {
	text-align: right;
}
.button_color_red {
	color: #c22222;
}

.button[disabled],
button[disabled] {
	background-color: #d0d0d0 !important;
	color: #fff !important;
	cursor: not-allowed;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
	background-color: #e7edf0;
	text-decoration: none;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12);
}
.button:active,
button:active,
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active {
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12);
}

button + button {
	margin-left: 3px;
}

.button.blue,
.button.button_blue {
	background-color: #22a0ef;
	color: #fff;
}
.button.blue:hover,
.button.blue:focus,
.button.button_blue:hover,
.button.button_blue:focus {
	background-color: #58b4ed;
}
.button.green,
.button.button_green {
	background-color: #8bc34a;
	color: #fff;
}
.button.green:hover,
.button.green:focus,
.button.button_green:hover,
.button.button_green:focus {
	background-color: #a4de62;
}

.button.red,
.button.button_red {
	color: #fff;
	background-color: #ef6661;
}
.button.red:hover,
.button.red:focus,
.button.button_red:hover,
.button.button_red:focus {
	background-color: #d15d58;
}

.button-color_green {
	color: #8bc34a !important;
}
.button-color_red {
	color: #c31917 !important;
}
.button.is-wait {
	user-select: none;
	position: relative;
	background-color: #c5c5c5 !important;
	border-color: #adadad !important;
	color: #fff !important;
	overflow: hidden;
	cursor: default;
	pointer-events: none;
}
.button.is-wait:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	display: inline-block;
	height: 100%;
	width: 100%;
	animation: move 2s linear infinite;
	background-image: linear-gradient(-45deg, rgba(230, 230, 230,.8) 25%, transparent 25%, transparent 50%, rgba(230, 230, 230,.8) 50%, rgba(230, 230, 230,.8) 75%, transparent 75%, transparent);
	background-size: 50px 50px;
}
@keyframes move{
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 50px 50px;
	}
}
/*=================================*/
.form {
	margin: 0;
}
.form__fieldset {
	margin: 0;
	border: 0;
	padding: 0;
}
.form__fieldset + .form__fieldset {
	margin-top: 20px;
	border-top: 1px solid #edeff0;
	padding-top: 20px;
}
.form__group + .form__group,
.form__group + .form__inline,
.form__inline + .form__group,
.form__inline + .form__inline {
	margin-top: 15px;
}
.form__label {
	display: block;
	margin-bottom: 5px;
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 700;
	color: #92959a;
}
.form__field {
	position: relative;
}
.form__inline {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.form__inline_group + .form__inline_group {
	margin-left: 10px;
}
.form__inline_group {
	width: 50%;
	-webkit-flex-grow: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 1;
	flex-shrink: 1;
}
.form__inline_group.form_inline-1 {
	-webkit-flex-basis: 25%;
	flex-basis: 25%;
}
.form__inline_group.form_inline-2 {
	-webkit-flex-basis: 75%;
	flex-basis: 75%;
}
.form__headline {
	font-size: 1.3rem;
	line-height: 1;
	margin: 25px 0 0;
	font-weight: 700;
	color: #525458;
}
.form div.error {
	position: absolute;
	top: -2.4rem;
	right: 0;
	z-index: 1;
	color: #fff;
	background-color: red;
	font-size: 1.2rem;
	line-height: 1;
	white-space: nowrap;
	padding: .4rem .6rem;
	border-radius: 4px;
	animation: errorMsgShow 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
	pointer-events: none;
}

.form div.error:after {
	content: '';
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 0;
	border-left: .4rem solid transparent;
	border-right: .4rem solid transparent;
	border-top: .4rem solid red;
}
.form__msg {
	position: relative;
	margin: 0 0 1.6rem;
	line-height: 1.4;
	font-size: 1.6rem;
}
.form__msg div {
	padding: 12px;
	border-radius: 4px;
	padding-right: 32px;
}
.form__msg .status-ok,
.form__msg .status-success {
	background: #daffda;
	color: #00a700;
}
.form__msg .status-warn,
.form__msg .status-warning {
	background: #fff5da;
	color: #6b4500;
}
.form__msg .status-information,
.form__msg .status-info {
	background: #daf3ff;
	color: #005aa7;
}
.form__msg .status-error {
	background: #ffdada;
	color: #a70000;
}
.form__msg:empty {
	display: none;
}
.form__msg > button {
	position: absolute;
	top: 0;
	right: 0;
	width: 26px;
	height: 26px;
	outline: 0;
	color: #000 !important;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	font-size: 16px;
}
.form__msg > button svg {
	display: block;
	height: 100%;
	overflow: visible;
	position: relative;
	width: 100%;
}
@keyframes errorMsgShow {
	0% {
		opacity: 0;
		transform: translateY(-50%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.form_radio {
	
}
.form_radio + .form_radio,
.form_checkbox + .form_checkbox {
	margin-top: 5px;
}
.form_radio .form_radio__input,
.form_checkbox .form_checkbox__input,
.checkbox .checkbox__input {
	display: none;
}
.form_radio__label,
.form_checkbox__label,
.checkbox .checkbox__label {
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}
.form_radio__label .text,
.form_checkbox__label .text {
	display: inline-block;
	float: left;
	font-size: 1.2rem;
	color: #5a6067;
	padding: 3px 0 3px 8px;
	width: calc(100% - 18px);

}
.form_radio__label .mark {
	float: left;
	width: 18px;
	height: 18px;
	border: 1px solid #5a6067;
	background-color: #fff;
	display: inline-block;
	border-radius: 50%;
	transition: box-shadow 100ms linear;
}
.form_radio__label:hover .mark {
	box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.form_radio__input:checked + .form_radio__label .mark,
.form_radio__input:checked + .mark{
	box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 10px #5a6067;
}

.form_checkbox__label .mark,
.checkbox__label .mark {
	float: left;
	width: 18px;
	height: 18px;
	border: 1px solid #5a6067;
	background-color: #fff;
	display: inline-block;
	border-radius: 2px;
	transition: box-shadow 100ms linear;
	text-align: center;
	line-height: 16px;
}
.checkbox__label .mark {
	float: none;
	vertical-align: top;
}
.form_checkbox__label:hover .mark,
.checkbox__label:hover .mark {
	box-shadow: 0 0 5px rgba(0,0,0,.3);
}
.form_checkbox__input:checked + .form_checkbox__label .mark,
.form_checkbox__input:checked + .mark {
	box-shadow: none;
}
.form_checkbox__input:checked + .form_checkbox__label .mark:before,
.form_checkbox__input:checked + .mark:before,
.checkbox__input:checked + .checkbox__label .mark:before,
.checkbox__input:checked + .mark:before {
	content: "\f00c";
	font-family: 'FontAwesome';
	vertical-align: top;
	font-size: 1.2rem;
}

.checkbox_type2 {
	display: inline-block;
	vertical-align: top;
	padding: 8px 0;
}
.checkbox_type2 + .checkbox_type2 {
	margin-left: 15px;
}
.checkbox_type2 .checkbox_type2__input {
	display: none;
}
.checkbox_type2__label {
	cursor: pointer;
}
.checkbox_type2__label .mark {
	display: inline-block;
	vertical-align: top;
	height: 16px;
	border-radius: 6px;
	width: 32px;
	background-color: #e7edf0;
	position: relative;
}
.checkbox_type2__label .mark:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 16px;
	transition: all 250ms ease-in-out;
	border-radius: 8px;
}
.checkbox_type2 .checkbox_type2__input:checked + .checkbox_type2__label .mark:before {
	/*background-color: #22a0ef;*/
	background-color: #8bc34a;
	width: 32px;
}
.checkbox_type2__label .mark:after {
	content: '';
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #fff;
	top: 0;
	left: 0;
	margin: 1px;
	transition: all 250ms ease-in-out;
}
.checkbox_type2 .checkbox_type2__input:checked + .checkbox_type2__label .mark:after {
	left: 16px;
}
.checkbox_type2__label .text {
	font-size: 1.2rem;
	line-height: 1.3;
	display: inline-block;
	vertical-align: top;
	padding-left: 5px;
}
