.jq-checkbox {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	/*top: -1px;*/
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin: 0 8px 0 0;
	border: 1px solid #d5d5d5;
	border-radius: 3px;
	background: #fff;
	cursor: pointer;
}
.jq-checkbox.checked {
	background: #ed1b2f;
	border-color: transparent;
}
.jq-checkbox.checked .jq-checkbox__div {
	height: 100%;
	font-size: 10px;
	line-height: 13px;
	color: #fff;
	text-align: center;
}
.jq-checkbox.checked .jq-checkbox__div::before {
	content: "\e8fc";
	font-family: "fontello";
}
/*.jq-checkbox.focused {
	border: 1px solid #08C;
}*/
.jq-checkbox.disabled {
	opacity: .55;
}


.jq-radio {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	/*top: -1px;*/
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin: 0 8px 0 0;
	border: 1px solid #d5d5d5;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}
.jq-radio.checked {
	background: #ed1b2f;
	border-color: transparent;
}
.jq-radio.checked .jq-radio__div {
	width: 7px;
	height: 7px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #fff;
}
/*.jq-radio.focused {
	border: 1px solid #08C;
}*/
.jq-radio.disabled {
	opacity: .55;
}


.jq-file {
	width: 100%;
	max-width: 270px;
}
.jq-file input {
	height: auto;
	line-height: 1em;
	cursor: pointer;
}
.jq-file__name {
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 1.155em 8em 1.155em 1.3em;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	line-height: 1.15;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}
.jq-file__browse {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 8em;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.8em 1.3em;
	background: #ed1b2f;
	border-radius: 5px;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.15;
	color: #fff;
}
/* .jq-file:hover .jq-file__browse {
	background: #f27045;
}
.jq-file:active .jq-file__browse {
	background: #f27045;
} */
/*.jq-file.focused .jq-file__name {
	border: 1px solid #5794BF;
}*/
.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
	border-color: #CCC;
	background: #F5F5F5;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #888;
}


.jq-number {
	background: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 130px;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	position: relative;
	vertical-align: middle;
	padding: 10px;
}
.jq-number__field {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	margin: 0 10px;
}
.jq-number__field input[type="number"] {
	background: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 0;
	border: none;
	outline: none;
	font-family: inherit;
	font-weight: 500;
	font-size: 13px;
	line-height: 1.15;
	text-align: center; /* для Opera Presto */
	-moz-appearance: textfield;
}
.jq-number__field input[type="number"]::-webkit-inner-spin-button,
.jq-number__field input[type="number"]::-webkit-outer-spin-button {
	margin: 0; /* в каких-то браузерах присутствует отступ */
	-webkit-appearance: none;
}
.jq-number__spin {
	background: #f2f2f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	cursor: pointer;
	font-size: 15px;
	line-height: 0;
	color: #9b9b9b;
	text-align: center;
}
.jq-number__spin.minus {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
.jq-number__spin.plus {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}
/*.jq-number__spin:hover {}*/
/*.jq-number__spin:active {}*/
.jq-number__spin.minus:after {
	content: '-';
}
.jq-number__spin.plus:after {
	content: '+';
}
/*.jq-number__spin.minus:hover:after {
	border-top-color: #000;
}*/
/*.jq-number__spin.plus:hover:after {
	border-bottom-color: #000;
}*/
/*.jq-number.focused .jq-number__field {
	border: 1px solid #5794BF;
}*/
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
	border-color: #CCC;
	background: #F5F5F5;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #888;
}
.jq-number.disabled .jq-number__spin:after {
	border-bottom-color: #AAA;
}
.jq-number.disabled .jq-number__spin.minus:after {
	border-top-color: #AAA;
}


.jq-selectbox {
	width: 100%;
	vertical-align: middle;
	cursor: pointer;
}
.jq-selectbox__select {
	height: 44px;
	padding: 0 45px 0 20px;
	background: #fff;
	border: 1px solid #b1c0c7;
	font-size: 15px;
	line-height: 42px;
	color: #595959;
}
/*.jq-selectbox__select:hover {
	color: #354353;
}
.jq-selectbox__select:active {
	color: #354353;
}
.jq-selectbox.focused .jq-selectbox__select {
	color: #354353;
}*/
.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #CCC;
	background: #F5F5F5;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #888;
}
.jq-selectbox__select-text {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
}
.jq-selectbox__trigger-arrow {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 10px;
	color: inherit;
	text-align: center;
}
.jq-selectbox__trigger-arrow::before {
	content: "\e909";
	font-family: "fontello";
	line-height: 1;
}
/*.jq-selectbox:hover .jq-selectbox__trigger-arrow {
	border-top-color: #000;
}*/
/*.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
	border-top-color: #AAA;
}*/
.jq-selectbox__dropdown {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: -1px 0;
	padding: 0;
	background: #fff;
	border: 1px solid #b1c0c7;
	-webkit-box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.1);
	box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	font-size: 13px;
	line-height: 1.15;
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #CCC;
	border-radius: 3px;
	outline: none;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
	-webkit-box-shadow: inset 1px 1px #F1F1F1;
	box-shadow: inset 1px 1px #F1F1F1;
	color: #333;
	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none;
}
.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	background: #F0F0F0;
	font-size: 13px;
}
.jq-selectbox ul {
	margin: 0;
	padding: 0;
}
.jq-selectbox li {
	min-height: 18px;
	padding: 6px 20px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
}
.jq-selectbox li.selected {
	background-color: #f27045;
	color: #fff;
}
.jq-selectbox li:hover {
	background-color: #f27045;
	color: #fff;
}
.jq-selectbox li.disabled {
	color: #AAA;
}
.jq-selectbox li.disabled:hover {
	background: none;
}
.jq-selectbox li.optgroup {
	font-weight: bold;
}
.jq-selectbox li.optgroup:hover {
	background: none;
	color: #231F20;
	cursor: default;
}
.jq-selectbox li.option {
	padding-left: 25px;
}


.jq-select-multiple {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 1px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	-webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px/18px Arial, sans-serif;
	color: #333;
	cursor: default;
}
.jq-select-multiple.focused {
	border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
	border-color: #CCC;
	background: #F5F5F5;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #888;
}
.jq-select-multiple ul {
	margin: 0;
	padding: 0;
}
.jq-select-multiple li {
	padding: 3px 9px 4px;
	list-style: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	white-space: nowrap;
}
.jq-select-multiple li:first-child {
	border-radius: 3px 3px 0 0;
}
.jq-select-multiple li:last-child {
	border-radius: 0 0 3px 3px;
}
.jq-select-multiple li.selected {
	background: #08C;
	color: #FFF;
}
.jq-select-multiple li.disabled {
	color: #AAA;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
	background: #CCC;
	color: #FFF;
}
.jq-select-multiple li.optgroup {
	font-weight: bold;
}
.jq-select-multiple li.option {
	padding-left: 25px;
}

input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
	padding: 8px 9px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	-webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
}
input[type='search'].styler {
	-webkit-appearance: none;
}
textarea.styler {
	overflow: auto;
}
input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
	border-color: #B3B3B3;
}
input[type='email'].styler:focus,
input[type='password'].styler:focus,
input[type='search'].styler:focus,
input[type='tel'].styler:focus,
input[type='text'].styler:focus,
input[type='url'].styler:focus,
textarea.styler:focus {
	border-color: #CCC;
	border-top-color: #B3B3B3;
	outline: none;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
	overflow: visible;
	padding: 8px 11px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	outline: none;
	background: #F5F5F5;
	background:         -o-linear-gradient(#FFF, #E6E6E6);
	background:         -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
	background:         linear-gradient(#FFF, #E6E6E6);
	-webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0,0,0,.1);
	font: 14px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #FFF;
	cursor: pointer;
}
button.styler::-moz-focus-inner,
input[type='button'].styler::-moz-focus-inner,
input[type='submit'].styler::-moz-focus-inner,
input[type='reset'].styler::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
	background: #E6E6E6;
	background:         -o-linear-gradient(#F6F6F6, #E6E6E6);
	background:         -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
	background:         linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:not([disabled]):active,
input[type='button'].styler:not([disabled]):active,
input[type='submit'].styler:not([disabled]):active,
input[type='reset'].styler:active {
	background: #F5F5F5;
	-webkit-box-shadow: inset 1px 1px 3px #DDD;
	box-shadow: inset 1px 1px 3px #DDD;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
	border-color: #CCC;
	background: #F5F5F5;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #888;
}