.jq-checkbox,
.jq-radio {
	position: relative;
	display: inline-block;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.jq-checkbox input,
.jq-radio input {
	position: absolute;
	z-index: -1;
	margin: 0;
	padding: 0;
	opacity: 0;
}
.jq-file {
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.jq-file input {
	position: absolute;
	top: 0;
	right: 0;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	font-size: 100px;
	line-height: 1em;
}
.jq-file__name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-selectbox,
.jq-select-multiple {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 44px;
	font-size: 16px;
	border-radius: 5px;
	color: #333;
	box-sizing: border-box;
}
.select_inner {
	margin-bottom: 17px;
}
.jq-selectbox select,
.jq-select-multiple select {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0;
	opacity: 0;
}
.jq-selectbox li,
.jq-select-multiple li {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	height: 38px;
	cursor: pointer;
	line-height: 38px;
  padding: 0 19px;
  border-top: 1px solid #e7e6e6;
	/*font-size: 16px;*/
}
.jq-selectbox li:last-child {border-radius: 0 0 4px 4px;}
.jq-selectbox li:hover, .jq-select-multiple li:hover {background-color: #f2f2f2;}
.jq-selectbox li:last-child:hover, .jq-select-multiple li:last-child:hover {background-color: #f2f2f2;border-radius: 0 0 4px 4px;}
.jq-selectbox li.sel, .jq-select-multiple li.sel {background-color: #f2f2f2;}
.jq-selectbox li.disabled, .jq-select-multiple li.disabled {display: none;}
.jq-selectbox {
	z-index: 10;
}
.jq-selectbox__select {
	position: relative;
    z-index: 2;
    border: 1px solid #b0b0b0;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    height: 44px;
}
.jq-selectbox__select-text {
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
  height: 100%;
  line-height: 44px;
  padding: 0 25px 0 19px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  color: #979797;
}
.jq-selectbox.changed .jq-selectbox__select-text {color: #333;}

.opened .jq-selectbox__select {
    border-radius: 5px 5px 0 0;
    border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
    border-left: 1px solid #333333;
    border-right: 1px solid #333333;
}
.opened .jq-selectbox__dropdown {
	border-bottom: 1px solid #333333;
    border-left: 1px solid #333333;
    border-right: 1px solid #333333;
}
.jq-selectbox__select-text:before {
	content: "";
    width: 0;
    height: 0;
    display: block;
    border: 5px solid transparent;
    border-top: 7px solid #5c3795;
    position: absolute;
    right: 19px;
    top: 19px;
    pointer-events: none;
}
.jq-selectbox__dropdown {
	position: absolute;
  width: 100%;
	max-width: 100%;
  margin-top: 6px;
  border: 1px solid #e2e2e2;
  z-index: 1;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  box-sizing: border-box;
}
.jq-selectbox__search input {
	-webkit-appearance: textfield;
}
.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none;
}
.jq-selectbox__dropdown ul {
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	list-style: none;
	-webkit-overflow-scrolling: touch;
	padding: 0;
}
.jq-select-multiple ul {
	position: relative;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}
.jq-number {
	display: inline-block;
}
.jq-number__field input {
	-moz-appearance: textfield;
	text-align: left; /* для Opera Presto */
}
.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
	margin: 0; /* в каких-то браузерах присутствует отступ */
	-webkit-appearance: none;
}