.jq-checkbox {
	position: relative;
	display: inline-block;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.BoxCheckbox label {
    cursor: pointer;
}
.jq-checkbox input {
	position: absolute;
	z-index: -1;
	margin: 0;
	padding: 0;
	opacity: 0;
}
.jq-checkbox{
	vertical-align: -4px;
	width:20px;
	height:20px;
	background: url(../img/ico_unchecked.png) no-repeat;
	cursor:pointer;
}
.jq-checkbox:hover {
	width:20px;
	height:20px;	
	background: url(../img/ico_unchecked_hover.png) no-repeat;
}
.jq-checkbox.disabled {
	opacity: .55;
}
.jq-checkbox {
	border-radius: 3px;
}
.jq-checkbox.checked .jq-checkbox__div {
	width:20px;
	height:20px;
	background: url(../img/ico_checked.png) no-repeat;
}
.jq-radio {

}
.jq-radio__div {
    
}
.jq-radio.checked  {

}

/* -- FILE -- */
.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-file {
	width: 180px;
        display:block;
        float:left;
        margin-top: 10px;
}
.jq-file input {
	cursor: pointer;
}
.jq-file__name {
	box-sizing: border-box;
	width: 100%;
	padding: 2px 15px 0 30px;
	border: none;
	border-radius: 0;
	background: none;
        color:#405584;
        font-weight: bold;
        font-size: 14px;
}
.jq-file__browse {
	position: absolute;
	top: 1px;
	left: 1px;
        background: url(../img/plus_file.svg) no-repeat;
        text-indent: -99999em;
        width:40px;
        height:40px;        
}/*
.jq-file:hover .jq-file__browse {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
.jq-file:active .jq-file__browse {
	background: #F5F5F5;
	box-shadow: inset 1px 1px 3px #DDD;
}
 */
.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;
	box-shadow: none;
	color: #888;
}
/* -- END FILE -- */

/* -- Number --*/
.jq-number {
        border:1px solid #dd4d44;
        border-radius:30px;
        color:#dd4d44;
        font-weight: bold;
        width:85px;
}
.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;
}
.jq-number {
	position: relative;
	vertical-align: middle;
	padding: 0 0 0 0;
}
.jq-number__field {
	width: 100px;
}
.jq-number__field:hover {
}
.jq-number__field input {
        width:81%;
        text-align: center;
	padding: 8px 21px;
	border: none;
	outline: none;
	background: none;
        color:#dd4d44;
        font-weight: bold;        
}
.jq-number__spin {
	position: absolute;
	cursor: pointer;
        font-size: 18px;
}
.jq-number__spin:hover {
}
.jq-number__spin:active {
}
.jq-number__spin.minus {
	position: absolute;
	top: 7px;
	left: 8px;    
}
.jq-number__spin.plus {
	position: absolute;
	top: 7px;
	right: 8px;    
}
.jq-number__spin.minus:after {   
        content: '\f068';
        font-family: "Font Awesome 5 Pro";
        font-weight: 100;
}
.jq-number__spin.plus:after {
        content: '\f067';
        font-family: "Font Awesome 5 Pro";
        font-weight: 100;
}
.jq-number__spin.minus:hover:after {
}
.jq-number__spin.plus:hover:after {
}
.jq-number.focused .jq-number__field {
}
.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
}
.jq-number.disabled .jq-number__spin:after {
}
.jq-number.disabled .jq-number__spin.minus:after {
}
/* -- End Number -- */

.jq-selectbox {
	vertical-align: middle;
	cursor: pointer;
}
.jq-selectbox__select {

}
.jq-selectbox__select:hover {

}
.jq-selectbox__select:active {
	background: #F5F5F5;

}
/*
.jq-selectbox.focused .jq-selectbox__select {
	border: 1px solid #5794BF;
}
*/
.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-selectbox__select-text {
	display: block;
	width: 100%;
}
.jq-selectbox .placeholder {
	color: #888;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
}
.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 26%;
	right: 17px;
}
.jq-selectbox__trigger-arrow:before {
        font-family: "Font Awesome 5 Pro";
        content: "\f078";
        color:#405584;
}
.opened .jq-selectbox__trigger-arrow:before {
        font-family: "Font Awesome 5 Pro";
        content: "\f077";
        color:#405584;
}
.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 {
	box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #CCC;
	border-radius: 4px;
	background: #FFF;
        overflow-y:auto;
}
.jq-selectbox__dropdown ul {
    
}
.jq-selectbox__search {
	margin: 5px;
}
.jq-selectbox__search input {
	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%;
}
.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: 5px 10px 6px;
	color: #231F20;
}
.jq-selectbox li.selected {
	background-color: #A3ABB1;
	color: #FFF;
}
.jq-selectbox li:hover {
	background-color: #405584;
	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 {
	box-sizing: border-box;
	padding: 1px;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	border-radius: 4px;
	background: #FFF;
	cursor: default;
}
.jq-select-multiple.focused {
	border: 1px solid #5794BF;
}
.jq-select-multiple.disabled {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}
.jq-select-multiple ul {
	margin: 0;
	padding: 0;
}
.jq-select-multiple li {
	padding: 3px 9px 4px;
	list-style: none;
}
.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 li.optgroup {
	font-weight: bold;
}
.jq-select-multiple li.option {
	padding-left: 25px;
}
.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
	background: #CCC;
	color: #FFF;
}
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;
}
input[type='search'].styler {
	-webkit-appearance: none;
	-moz-appearance: none;
	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:hover:focus,
input[type='password'].styler:hover:focus,
input[type='search'].styler:hover:focus,
input[type='tel'].styler:hover:focus,
input[type='text'].styler:hover:focus,
input[type='url'].styler:hover:focus,
textarea.styler:hover:focus {
	border-color: #CCC;
	border-top-color: #B3B3B3;
	outline: none;
}
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;
	cursor: pointer;
}
button.styler.styler::-moz-focus-inner,
input[type='button'].styler.styler::-moz-focus-inner,
input[type='submit'].styler.styler::-moz-focus-inner,
input[type='reset'].styler.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:not([disabled]):hover,
input[type='reset'].styler:hover {
	background: linear-gradient(#F6F6F6, #E6E6E6);
}
button.styler:active,
input[type='button'].styler:active,
input[type='submit'].styler:active,
input[type='reset'].styler:active {
	background: #F5F5F5;
}
button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
	border-color: #CCC;
	background: #F5F5F5;
	box-shadow: none;
	color: #888;
}

.jq-selectbox,
.jq-select-multiple {
	position: relative;
	display: inline-block;
}
.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;
        font-size: 16px;
        color:#435993;
}
.jq-selectbox {
	z-index: 10;
        width:100%;
}
.jq-selectbox__select {
	position: relative;
}
.jq-selectbox__select-text {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	text-overflow: ellipsis;
        overflow: hidden;
        width:100%;
        line-height: 45px;
        color:#405584;
        font-weight:bold;
        font-size: 13px;
}
.jq-selectbox__dropdown {
	position: absolute;
}

.jq-selectbox {   
}

.jq-selectbox__select {
    width: 100%;   
    height:45px;
    padding: 0 45px 0 20px;
    font-size: 14px;
    border-radius: 0px;
    background: #fff; 
    box-shadow: 0 0 4px 0 rgba(112, 112, 112, 0.5);
    -webkit-box-shadow: 0 0 4px 0 rgba(112, 112, 112, 0.5);
    -moz-box-shadow: 0 0 4px 0 rgba(112, 112, 112, 0.5); 
}

@media only screen and (max-width: 767px) { 
   
    
}