/* SHOW-HIDE COMPONENT */
.boss-showhide{ 
	position: relative;
	border: 1px solid #AAA;
	background-color: #F4F4F4;
	padding: 5px;
	cursor: pointer;
	line-height: 30px;
	font-size: 0.9em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-showhide-triangle{
	position: absolute;
	top: 45%;
	right: 10px;
	display: block;
	width: 0; 
	height: 0;
	line-height: inherit;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #AAA;
}
.boss-showhide-box{
	border-left: 1px solid #AAA;
	border-right: 1px solid #AAA;
	border-bottom: 1px solid #AAA;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

/* TOOLTIP */
.boss-tooltip{
	position: relative;
}
.boss-tooltip:hover::after{
	background: #8CC63F;
	border-radius: 5px;
	bottom: 26px;
	color: #FFF;
	content: attr(data-title);
	left: 0px;
	padding: 5px 10px;
	line-height: 20px;
	position: absolute;
	z-index: 99998;
	width: auto;
	width: 220px;
	font-size: 0.9em;
	font-weight: normal;
}
.boss-tooltip:hover::before{
	border: solid;
	border-color: #8CC63F transparent;
	border-width: 6px 6px 0 6px;
	bottom: 20px;
	content: "";
	left: 10%;
	position: absolute;
	z-index: 99999;
	font-size: 0.9em;
	font-weight: normal;
}

/* TREE COMPONENT */
.boss-tree{
	list-style: none;
	margin: 0px;
	padding: 0px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.boss-tree li{
	margin: 1px 0px 0px 0px;
	padding: 0px;
}
.boss-tree li label{
	position: relative;

	margin: 0px;
	padding: 0px;
	cursor: pointer;
	display: block;
	padding: 5px 5px 5px 20px;
	list-style: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-tree label::before{
	content: "";
	position: absolute;
	top: 45%;
	left: 5px;
	display: block;
	width: 0; 
	height: 0;
	line-height: inherit;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #888;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-tree ul li{
	margin: 5px 0px 0px 0px;
}
.boss-tree ul li label{

}
.boss-tree li input[type="checkbox"]{
	position: absolute;
	margin-left: -9999px;
}
.boss-tree li input[type="checkbox"] + label + ul{
	list-style: none;
	margin: 0px 0px 0px 10px;
	padding: 0px;
}
.boss-tree li input[type="checkbox"] + label + ul > li {
	display: none;
}
.boss-tree li input[type="checkbox"]:checked + label + ul{
	list-style: none;
	margin: 0px 0px 0px 10px;
	padding: 0px;
}
.boss-tree li input[type="checkbox"]:checked + label + ul > li {
	display: block;
}
.boss-tree input[type="checkbox"]:checked + label::before{
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

/* BUTTONS */
.btn{
	height: 32px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	padding-left: 10px;
	padding-right: 10px;
	outline: none;
	border-radius: 2px;
	margin: 0px;
	border: 1px solid #848484;
	background-color: #FFF;
	color: #848484;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.btn:hover, .btn:active, .btn:focus{
	border: 1px solid #848484;
	background-color: #888;
	color: #FFF;
}
.btn:disabled, .btn:disabled:hover{
	cursor: default;
	background-color: #F8F8F8 !important;
	border: 1px solid #CCC !important;
	color: #D8D8D8 !important;
}
.btna{
	display: inline-block;
	min-height: 32px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	padding-top: 6px;
	padding-left: 10px;
	padding-right: 10px;
	outline: none;
	border-radius: 2px;
	margin: 0px;
	border: 1px solid #848484;
	background-color: #FFF;
	color: #848484;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.btna:hover, .btna:active, .btna:focus{
	font-size: 13px;
	border: 1px solid #848484;
	background-color: #888;
	color: #FFF;
}
.btna:disabled, .btna:disabled:hover{
	font-size: 13px;
	cursor: default;
	background-color: #F8F8F8 !important;
	border: 1px solid #CCC !important;
	color: #D8D8D8 !important;
}
.btn-tiny{
	min-height: 20px;
	line-height: 12px;
	font-size: 10px;
}
.btn-green{
	background-color: #FFF !important;
	border: 1px solid #8CC63F !important;
	color: #8CC63F !important;
}
.btn-green:hover{
	background-color: #8CC63F !important;
	border: 1px solid #7CB62F !important;
	color: #FFF !important;
}
.btn-green-invs{
	background-color: #8CC63F !important;
	border: 1px solid #7CB62F !important;
	color: #FFF !important;
}
.btn-green-invs:hover{
	background-color: #7CB62F !important;
	border: 1px solid #6CA61F !important;
	color: #FFF !important;
}
.btn-blue{
	background-color: #FFF !important;
	border: 1px solid #41A1FF !important;
	color: #41A1FF !important;
}
.btn-blue:hover{
	background-color: #41A1FF !important;
	border: 1px solid #3191EF !important;
	color: #FFF !important;
}
.btn-blue-invs{
	background-color: #41A1FF !important;
	border: 1px solid #3191EF !important;
	color: #FFF !important;
}
.btn-blue-invs:hover{
	background-color: #3191EF !important;
	border: 1px solid #3191EF !important;
	color: #FFF !important;
}
.btn-grey{
	background-color: #333 !important;
	border: 1px solid #333 !important;
	color: #FFF !important;
}
.btn-grey:hover{
	background-color: #323232 !important;
	border: 1px solid #323232 !important;
	color: #FFF !important;
}
.btn-red{
	background-color: #FFF !important;
	border: 1px solid #FF4141 !important;
	color: #FF4141 !important;
}
.btn-red:hover{
	background-color: #FF4141 !important;
	border: 1px solid #EF3131 !important;
	color: #FFF !important;
}
.btn-red-invs{
	background-color: #EF3131 !important;
	border: 1px solid #EF3131 !important;
	color: #FFF !important;
}
.btn-red-invs:hover{
	background-color: #EF3131 !important;
	border: 1px solid #CF1111 !important;
	color: #FFF !important;
}

.btn-orange{
	background-color: #FFF !important;
	border: 1px solid #EF6300 !important;
	color: #EF6300 !important;
}
.btn-orange:hover{
	background-color: #EF6300 !important;
	border: 1px solid #EF6300 !important;
	color: #FFF !important;
}
.btn-orange-inverse{
	background-color: #EF6300 !important;
	border: 1px solid #EF6300 !important;
	color: #FFF !important;
}
.btn-orange-inverse:hover{
	background-color: #FF7310 !important;
	border: 1px solid #FF7310 !important;
}

.btn-download{
	background-color: #007d2d !important;
	border: 1px solid #09692b !important;
	color: #FFFFFF !important;
	text-align: center;
	padding-left: 25px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABQ0lEQVRYR+2X4RXBMBSFmw3YwAZsQCdgA4xgEiuwARNgA92gG7BB3EvqRJS8JHX8Sc7JOdq83Pf1JnktVfy5qZT8WusN5mul1DJWJxVAMzEAonWiJzIxHMgA6Q7AxRncHAo3UYXl3jWxbUsQrNeICAFOAJh4AI4YHwv1CmUBlIJJNQBqD8AA4+y+drifoJSd3MncTkQi6sAzbwbIDmQHJA4ghtVvjr7Cibt6ClEP42v0LWJZFVtb0DE0Hx4EOKOXDYQLj2smZ4UbGYBFVwAU5tPwpfWEsAGc5BXiJrZbLkiQA5xsErxA4PbFCPetJ/cmN3qPV7lkD1hr7jpBq9noCn+LkkcDtDhhOytOngTwASIoeTKAA8HLrxvO3YCdALSJhtwLPgUh4pLYDPDmgMS2X8SwEPE7f/oLcYHmPum/oSCBN+QGMKlUzr0sFkEAAAAASUVORK5CYII=');
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 16px 16px;
}
.btn-download:hover{
	background-color: #09692b !important;
	border: 1px solid #09791b !important;
	color: #FFF !important;
}

.btn-download-csv{
	position: relative;
	background-color: #FFF !important;
	border: 1px solid #259E00 !important;
	color: #259E00 !important;
	text-align: center;
	padding-left: 30px;
}
.btn-download-csv::before{
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	height: 30px;
	width: 30px;
	background-image: url('/jnh/sprites/btns.svg');
	background-position: 0px -271px !important;
	background-repeat: no-repeat;
	background-size: 30px 300px;
}
.btn-download-csv:hover{
	background-color: #259E00 !important;
	border: 1px solid #158E00 !important;
	color: #FFF !important;
}
.btn-download-csv:hover::before{
	background-position: 0px -237px !important;
}

.btn-left, .btn-left:hover, .btn-left:focus{
	border-right: none !important;
}
.btn-center, .btn-center:hover, .btn-center:focus{
	border-radius: 0px !important;
}
.btn-right, .btn-right:hover, .btn-right:focus{
	border-left: none !important;
}
.btn-print-l{
	position: relative;
	padding-left: 30px;
}
.btn-print-l::before{
	background-image: url(/jnh/sprites/sprite_print.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	background-size: 48px 48px;
	width: 24px;
	height: 24px;
	display: block;
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	z-index: 1;
}
.btn-print-l:active::before, .btn-print-l:focus::before, .btn-print-l:hover::before{
	background-position: -24px 0px !important;
}
.btn-print-p{
	position: relative;
	padding-left: 30px;
}
.btn-print-p::before{
	background-image: url(/jnh/sprites/sprite_print.png);
	background-repeat: no-repeat;
	background-position: 0px -24px;
	background-size: 48px 48px;
	width: 24px;
	height: 24px;
	display: block;
	content: "";
	position: absolute;
	left: 5px;
	top: 4px;
	z-index: 1;
}
.btn-print-p:active::before, .btn-print-p:focus::before, .btn-print-p:hover::before{
	background-position: -24px -24px !important;
}

/* FORMS */
/* ON-OFF */
.boss-comp-on-off{
	position: absolute !important;
	opacity: 0 !important;
	z-index: 1;
}
.boss-comp-on-off-div{
	display: inline-block;
	width: 80px;
	height: 26px;
	background-color: #CCC;
	border-radius: 50px;
	position: relative;
	z-index: 2;
	box-shadow: inset 0px 1px 1px rgba(0,0,0,0.5), 0px 1px 0px rgba(255,255,255,0.2);
}
.boss-comp-on-off-div:after{
	content: attr(data-label-off);
	color: #888;
	position: absolute;
	right: 10px;
	z-index: 0;
	text-shadow: 1px 1px 0px rgba(255,255,255,.15);
	line-height: 26px;
	font-size: 0.8em;
}
.boss-comp-on-off-div:before{
	content: attr(data-label-on);
	color: #FFF;
	position: absolute;
	left: 10px;
	z-index: 0;
	line-height: 26px;
	font-size: 0.8em;
	font-weight: 600;
}
.boss-comp-on-off-div label{
	display: block;
	width: 34px;
	height: 20px;
	background-color: #FFF;

	border-radius: 50px;

	cursor: pointer;
	position: absolute;
	top: 3px;
	left: 3px;
	z-index: 1;

	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-on-off:checked + div.boss-comp-on-off-div{
	background-color: #333;
}
.boss-comp-on-off:checked + div.boss-comp-on-off-div::after{
	color: rgba(0,0,0,0);
}
.boss-comp-on-off:checked + div.boss-comp-on-off-div label{
	left: 43px;
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-on-off:disabled + div.boss-comp-on-off-div{
	background-color: #F4F4F4 !important;
	cursor: default !important;
}
.boss-comp-on-off:disabled + div.boss-comp-on-off-div label{
	background-color: #F4F4F4 !important;
	cursor: default !important;
}
.boss-comp-on-off:disabled + div.boss-comp-on-off-div::before{
	color: #EEE !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	cursor: default !important;
}
.boss-comp-on-off:disabled + div.boss-comp-on-off-div::after{
	color: #EEE !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	cursor: default !important;
}

/* CHECKBOX */
.boss-comp-checkbox{
	position: absolute;
	opacity: 0;
	z-index: 1;
}
.boss-comp-checkbox + label {
	cursor: pointer;
	padding-right: 10px;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	position: relative;
	z-index: 2;
}
.boss-comp-checkbox-span {
	position: relative;
	display: block;
	float: left;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 2px solid #AAA;
	z-index: 1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-comp-checkbox-span::before{
	display: block;
	position: absolute;
	bottom: 5px;
	left: 2px;
	background-color: rgba(0,0,0,0);
	width: 6px;
	height: 2px;
	z-index: 3;
	content: '';
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-checkbox-span::after{
	display: block;
	position: absolute;
	bottom: 7px;
	left: 4px;
	background-color: rgba(0,0,0,0);
	width: 12px;
	height: 2px;
	z-index: 3;
	content: '';
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-checkbox:checked + label .boss-comp-checkbox-span::before{
	background-color: #333;
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-checkbox:checked + label .boss-comp-checkbox-span::after{
	background-color: #333;
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-checkbox:checked + label{
	font-weight: 600;
}
.boss-comp-checkbox:checked + label::after{
	display: block;
	position: absolute;
	background-color: #333;
	width: 25px;
	height: 3px;
	z-index: 3;
}
.boss-comp-checkbox:disabled + label{
	cursor: default !important;
}
.boss-comp-checkbox:disabled + label span.boss-comp-checkbox-span{
	background-color: #F4F4F4 !important;
	cursor: default !important;
	border: 2px solid #CCC !important;
}

/* RADIO */
.boss-comp-radio{
	position: absolute;
	opacity: 0;
	z-index: 1;
}
.boss-comp-radio + label{
	cursor: pointer;
	padding-right: 10px;
	display: inline-block;
	height: 20px;
	line-height: 20px;
	position: relative;
	z-index: 2;
}
.boss-comp-radio-span{
	position: relative;
	display: block;
	float: left;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 2px solid #AAA;
	border-radius: 50%;
	z-index: 1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-comp-radio-span::after{
	display: block;
	position: absolute;
	bottom: 3px;
	left: 3px;
	background-color: rgba(0,0,0,0);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	z-index: 3;
	content: '';
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-radio:checked + label span.boss-comp-radio-span::after{
	background-color: #333;
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-comp-radio:checked + label{
	font-weight: 600;
}
.boss-comp-radio:checked + label::after{
	display: block;
	position: absolute;
	background-color: #333;
	width: 25px;
	height: 3px;
	z-index: 3;
}
.boss-comp-radio:disabled + label{
	cursor: default !important;
}
.boss-comp-radio:disabled + label span.boss-comp-radio-span{
	background-color: #F4F4F4 !important;
	cursor: default !important;
	border: 2px solid #CCC !important;
}

/* SELECT */
.boss-select{
	outline: none;
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	z-index: 1;
	border: 1px solid #AAA;
	background-color: #FFF;
	height: 30px;
	line-height: 30px;
	min-width: 40px;
	border-radius: 2px;
}
.boss-select select{
	position: absolute;
	cursor: pointer;
	padding: 0px 5px;
	margin: 0px;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	height: 26px;
	line-height: 26px;
	z-index: 2;
	border: 2px solid rgba(0,0,0,0);
	background-color: rgba(0,0,0,0);
	width: 100%;
	border-radius: 2px;
}
.boss-select::before{
	content: '';
	position: absolute;
	top: 45%;
	right: 10px;
	display: block;
	width: 0; 
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #AAA;
	z-index: 3;
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}
.boss-select:focus::before, .boss-select:active::before{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-animation: all 0.15s ease-in-out;
	-moz-animation: all 0.15s ease-in-out;
	-o-animation: all 0.15s ease-in-out;
	-ms-animation: all 0.15s ease-in-out;
	animation: all 0.15s alternate;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

/* UPLOAD */
.boss-upload{
	background-color: #FFF;
	border: 1px solid #AAA;
	height: 50px;
	position: relative;
}
.boss-upload input{
	width: 100%;
	height: inherit;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	cursor: pointer;
	z-index: 3;
}
.boss-upload:after{
	position: absolute;
	content: '';
	z-index: 2;
	width: 100%;
	height: inherit;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAMAAAD04JH5AAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAAi3AAAItwF70hLJAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAHJQTFRF////AQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQACAQAConHyeAAAACV0Uk5TAAECBgcICQoSFChASH+Il5iZmpucnZ6gsrO0tba3ubu96Onu9PVYoMkAAAHVSURBVHja7dvJdoJAEIXhQjpxiGZOnBNRef9XTAiggPRQ3WWbxb17+L8F9DksIDpvnkfanPr3DwDHxwg7GgAZRVgGAAAAAAAAAAAAAAAAogClbgtQ2626JUBt85wtEAQUfb5ADlD22QIxQN3nCqQAanP+2tyo+IBmnyeQAZT9j32e7z+ZAhFA1U+yPM8GTIEEoO5TASCmQABw6pcApiAcoNZF7z2hGlAJ1ioOoNGvASxBKKDZPwE4gkBAq38GMARhgLL/llAX4C4IAnT6TYCzIASQrtr9FqASrNLrAS76bYCjwB9Q9l8T0gHcBN6Ann4X4CTwBfT1LwAuAk9AuuzpXwIqwTKVBpT9l4RsALvAC6Dp9wGsAh+Art8LsAk8ANp+P8Ai4AP0fQ3ALGAD0kVxt+eE3AGVYJFKAEx9LcAkYAKMfT3AIOABzH0DQC9gAcr+U0J8gFbAAszMfSOgEsyCAMOdsW8G/Am+78OegeHO1LcAfgVfd6FvgTL1bQAaKImTMAAgchICAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxAYep88ZtwNj9yoPMXzbTNmAa/TefawAmD4yN2oAR59oJic3nIRQdAAAAAAAAAAAAAAAAhAN+AARf9vcYrx6aAAAAAElFTkSuQmCC953cc159b008afbdb97c24f2848bfd9b');
	background-size: 30px 30px;
	background-position: center center;
	background-repeat: no-repeat;
}

/* PROGRESS */
.bar-progress{
	height: 30px;
	min-width: 180px;
}
.bar-progress div{
	/*border-radius: 4px;*/
	height: 30px;
	width: 0px;
	line-height: 30px;
	background-color: #AAA;
	text-align: center;
}

/* LABEL TITLE */
.boss-label-title{
	font-weight: 400;
	margin: 10px 0px 5px 0px;
	color: #545454;
	position: relative;
}

/* TEXT */
.boss-input-text{
	position: relative;
	border: 1px solid #AAA;
	display: inline-block;
	padding-right: 30px;
	height: 32px;
	background-color: #FFF;
	border-radius: 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input{
	position: relative;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid rgba(0,0,0,0);
	display: inline-block;
	height: 32px;
	background-color: rgba(0,0,0,0);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
/* TEXTAREA */
.boss-input-textarea{
	font-family: inherit;
	min-height: 80px;
	border: 1px solid #AAA;
	display: inline-block;
	background-color: #FFF;
	border-radius: 2px;
	padding: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input-textarea textarea{
	font-family: inherit;
	color: #222;
	font-size: 0.9em;
	font-family: inherit;
	font-weight: 400;
	background-color: rgba(0,0,0,0);
	border-radius: 2px;
	height: inherit;
	width: 100%;
	min-height: inherit;
	border: none;
	outline: none;
	resize: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input-textarea-alta{
	font-family: inherit;
	min-height: 550px;
	border: 1px solid #AAA;
	display: inline-block;
	background-color: #FFF;
	border-radius: 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input-textarea-alta textarea{
	padding: 10px;
	font-family: inherit;
	color: #222;
	font-size: 0.9em;
	font-family: inherit;
	font-weight: 400;
	background-color: rgba(0,0,0,0);
	border-radius: 2px;
	height: inherit;
	width: 100%;
	min-height: inherit;
	border: none;
	outline: none;
	resize: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
/* PASSWORD */
.boss-input-password{
	font-weight: 400;
	display: inline-block;
	height: 30px;
	background-color: #FFF;
	border-radius: 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input-text input, .boss-input-password input{
	color: #222;
	font-size: 1em;
	font-family: inherit;
	font-weight: 400;
	background-color: rgba(0,0,0,0);
	border-radius: 2px;
	height: inherit;
	width: 100%;
	padding: 0px 5px 0px 10px;
	border: none;
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input input{
	color: #222;
	font-size: 1em;
	font-family: inherit;
	font-weight: 600;
	background-color: rgba(0,0,0,0);
	border-radius: 2px;
	height: inherit;
	width: 100%;
	padding: 0px 5px 0px 0px;
	border: none;
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.boss-input-color{
	position: relative;
	border: none;
	display: inline-block;
	height: 34px;
	background-color: #FFF;
	border-radius: 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input-color input{
	color: #222;
	font-size: 1em;
	font-family: inherit;
	font-weight: 400;
	background-color: rgba(0,0,0,0);
	border-radius: 2px;
	height: inherit;
	width: 100%;
	padding: 0px;
	border: none !important;
	outline: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-input-text-disabled{
	border: 1px solid #DDD;
	background-color: #EEE;
	color: #848484;
}
.boss-input-text-disabled input{
	color: #848484;
}
.boss-input-disabled{
	color: #545454;
	font-weight: 300;
}
.boss-input-disabled input{
	color: #545454;
	font-weight: 300;
}
.boss-input-textarea-disabled{
	border: 1px solid #DDD;
	background-color: #EEE;
}
.boss-input-textarea-disabled textarea{
	color: #848484;
}

/* JS SELECT COMPONENT */
.boss-js-select{
	position: relative;
	display: inline-block;
	vertical-align: top;
	outline: none;
	height: 32px;
	line-height: 30px;
	min-width: 235px;
	background-color: #FFF;
	border: 1px solid #AAA;
	border-radius: 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select select{
	opacity: 0;
	position: absolute;
	border-radius: 2px;
	z-index: 1;
	width: 1px;
	height: 1px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select-label{
	cursor: pointer;
	max-height: 30px;
	overflow: hidden;
	height: inherit;
	line-height: inherit;
	padding: 0px 5px;
	color: #333;
	font-size: 0.9em;
	height: inherit;
	line-height: inherit;
	position: relative;
	z-index: 3;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select-label-show{
	left: -1px;
	right: -1px;
	display: block;
	background-color: #FFF;
	border: 2px solid #AAA;
	position: absolute;
	z-index: 4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select-search, .boss-js-select-check-all{
	padding: 2px 5px;
	background-color: #E8E8E8;
	height: inherit;
	line-height: inherit;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select-search-input{
	border: 1px solid #AAA;
	outline: none;
	height: 30px;
	width: 100%;
	padding-left: 5px;
	padding-right: 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select-search div{
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.boss-js-select-search span{
	cursor: pointer;
	top: 4px;
	right: 6px;
	width: 30px;
	height: 28px;
	line-height: 28px;
	display: block;
	text-align: center;
	position: absolute;
	color: #333;
	font-weight: 600;
	z-index: 2;
	font-family: 'sans';
	font-size: 20px;
	color: #333;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.boss-js-select div.button{
	cursor: pointer;
	float: right;
	vertical-align: middle;
	border: 2px solid #AAA;
	background-color: #FFF;
	height: 24px;
	line-height: 20px;
	padding: 0px 5px;
	margin-top: 3px;
	margin-left: 5px;
	min-width: 40px;
	font-size: 0.8em;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select div.button:hover{
	background-color: #AAA;
}
.boss-js-select-list{
	background-color: #FFF;
	width: 100%;
	display: block;
	max-height: 320px;
	overflow: auto;
}
.boss-js-select-list ul{
	list-style:  none;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
.boss-js-select-list ul li{
	position: relative;
	list-style:  none;
	padding: 2px 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-select-status{
	background-color: #E8E8E8;
	display: block;
	width: 100%;
	font-size: 0.8em;
	padding: 2px 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

/* TABS VERTICAL */
.boss-tabs-vertical ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.boss-tabs-vertical li{
	position: relative;
	cursor: pointer;
	list-style: none;
	margin: 0px;
	padding: 10px 10px 10px 15px;
	background-color: #FFF;
	border-top: 1px solid #DDD;
	border-left: 1px solid #DDD;
	border-right: 1px solid #DDD;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-tabs-vertical li:last-child{
	border-bottom: 1px solid #DDD;
}
.boss-tabs-vertical li:hover{
	background-color: #EEE;
}
.boss-tabs-vertical-active{
	background-color: #F8F8F8 !important;
}
.boss-tabs-vertical-active::before{
	position: absolute;
	top: 35%;
	left: -4px;
	display: block;
	width: 0; 
	height: 0;
	content: "";
	line-height: inherit;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #333;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

/* TABS HORIZONTAL */
.boss-tabs-horizontal ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.boss-tabs-horizontal-area{
	padding: 10px;
	display: block;
	width: 100%;
	border: 1px solid #AAA;
	background-color: #FFF;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-tabs-horizontal li{
	display: inline-block;
	vertical-align: top;
	position: relative;
	cursor: pointer;
	list-style: none;
	margin: 0px 0px -1px 0px;
	padding: 5px 15px;
	background-color: #DDD;
	border-top: 1px solid #AAA;
	z-index: 20;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-tabs-horizontal li:first-child{
	border-left: 1px solid #AAA;
}
.boss-tabs-horizontal li:last-child{
	border-right: 1px solid #AAA;
}
.boss-tabs-horizontal li:hover{
	background-color: #F4F4F4 !important;
}
.boss-tabs-horizontal-active{
	background-color: #FFF !important;
	font-weight: 600;
}
.boss-tabs-horizontal-active::before{
	position: absolute;
	top: -1px;
	left: 2px;
	display: block;
	width: 0; 
	height: 0;
	content: "";
	line-height: inherit;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #333;
}

/* JS DATA COMPONENT */
.boss-js-date{
	position: relative;
	display: inline-block;
	vertical-align: top;
	outline: none;
	height: 32px;
	line-height: 30px;
	min-width: 85px;
	background-color: #FFF;
	border: 1px solid #AAA;
	border-radius: 2px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-date-label{
	cursor: pointer;
	height: inherit;
	line-height: inherit;
	padding: 0px 5px;
	color: #333;
	font-size: 0.9em;
	height: inherit;
	line-height: inherit;
	position: relative;
	z-index: 3;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.boss-js-date-show{
	left: -1px;
	right: -1px;
	margin-top: -4px;
	display: block;
	background-color: #FFF;
	border-left: 1px solid #AAA;
	border-right: 1px solid #AAA;
	border-bottom: 2px solid #AAA;
	position: absolute;
	z-index: 4;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

/* JS TIME COMPONENT */
.boss-js-time{
	position: relative;
	display: inline-block;
	vertical-align: top;
	outline: none;
	height: 32px;
	line-height: 30px;
	min-width: 85px;
	background-color: #FFF;
	border: 1px solid #AAA;
	/*border-radius: 4px;*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-js-time-label{
	cursor: pointer;
	height: inherit;
	line-height: inherit;
	padding: 0px 5px;
	color: #333;
	font-size: 0.9em;
	height: inherit;
	line-height: inherit;
	position: relative;
	z-index: 3;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.boss-js-time-show{
	left: -1px;
	right: -1px;
	margin-top: -4px;
	display: block;
	background-color: #FFF;
	border-left: 1px solid #AAA;
	border-right: 1px solid #AAA;
	border-bottom: 2px solid #AAA;
	position: absolute;
	z-index: 4;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

/* COLOR */
.boss-color{
	cursor: pointer;
	position: relative;
	display: inline-block;
	vertical-align: top;
	outline: none;
	height: 30px;
	line-height: 30px;
	min-width: 225px;
}
.boss-color-label{
	height: inherit;
	line-height: inherit;
	padding: 0px 5px;
	color: #FFF;
	font-size: 0.9em;
	height: inherit;
	line-height: inherit;
	position: relative;
	z-index: 3;
	background-color: #333;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-color-show{
	display: block;
	width: 100%;
	max-height: 320px;
	overflow: auto;
	background-color: #DDD;
	border-left: 2px solid #AAA;
	border-right: 2px solid #AAA;
	border-bottom: 2px solid #AAA;
	position: absolute;
	z-index: 3;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-color-buttons{
	display: block;
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-color div.button{
	cursor: pointer;
	vertical-align: middle;
	border: 2px solid #AAA;
	background-color: #FFF;
	height: 24px;
	line-height: 20px;
	padding: 0px 5px;
	margin-top: 3px;
	margin-bottom: 3px;
	min-width: 40px;
	max-width: 60px;
	font-size: 0.8em;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-color div.button:hover{
	background-color: #AAA;
}
.boss-color-list{
	background-color: #FFF;
	width: 100%;
	display: block;
	max-height: 250px;
	overflow: auto;
}
.boss-color-group{
	padding: 1px 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.boss-color-group span{
	display: block;
	text-align: center;
	width: 100%;
	font-weight: 600;
	font-size: 0.8em;
}
.boss-color-group div{
	display: inline-block;
	vertical-align: top;
	width: 10%;
	padding-top: 10%;
	position: relative;
	z-index: 1;
}
.boss-color-group div:hover{
	box-shadow: 0px 0px 2px 1px #111;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	z-index: 2;
}

.boss-input-text:focus,
.boss-input-text:hover,
.boss-input-text:active,
.boss-input-textarea:focus,
.boss-input-textarea:hover,
.boss-input-textarea:active,
.boss-input-textarea-alta:focus,
.boss-input-textarea-alta:hover,
.boss-input-textarea-alta:active,
.boss-select:focus,
.boss-select:hover,
.boss-select:active,
.boss-password:focus,
.boss-password:hover,
.boss-password:active,
.boss-js-date:hover{
	border: 1px solid #666;
}
.boss-input-text-disabled:focus,
.boss-input-text-disabled:hover,
.boss-input-text-disabled:active,
.boss-input-textarea-disabled:focus,
.boss-input-textarea-disabled:hover,
.boss-input-textarea-disabled:active,
.boss-input-textarea-alta-disabled:focus,
.boss-input-textarea-alta-disabled:hover,
.boss-input-textarea-alta-disabled:active,
.boss-select-disabled:focus,
.boss-select-disabled:hover,
.boss-select-disabled:active,
.boss-password-disabled:focus,
.boss-password-disabled:hover,
.boss-password-disabled:active{
	border: 1px solid #DDD;
}

.boss-input:focus,
.boss-input:hover,
.boss-input:active{
	border-color: #666;
}

.boss-upload:focus,
.boss-upload:hover,
.boss-upload:active{
	border: 1px solid #666;
	background-color: #F8F8F8;
}

/* VALIDATION */
.error-field{
	border-color: #FF9292 !important;
	background-color: #FFD7D7;
}
.error-field-border{
	border: 1px solid #FF9292 !important;
}
.ok-field{
	border-color: #74CF6A !important;
	background-color: #D7FFD9;
}
.ok-field-border{
	border: 1px solid #74CF6A !important;
}

#push-loader{
	position: fixed;
	top: 0px;
	background-color: #B91F1F;
	height: 3px;
	display: table;
	width: 0%;
	z-index: 9999;
	opacity: 0;
	-webkit-animation: all 0.50s ease-in-out;
	-moz-animation: all 0.50s ease-in-out;
	-o-animation: all 0.50s ease-in-out;
	-ms-animation: all 0.50s ease-in-out;
	animation: all 0.50s alternate;
	-webkit-transition: all 0.50s ease-in-out;
	-moz-transition: all 0.50s ease-in-out;
	-o-transition: all 0.50s ease-in-out;
	-ms-transition: all 0.50s ease-in-out;
	transition: all 0.50s ease-in-out;
}
.push-loader{
	max-width: 150px;
	width: 100%;
	background-color: #B91F1F;
	height: 3px;
	box-shadow: 0px 0px 10px 2px rgba(185, 31, 31, 0.62);
	position: absolute;
	right: 0px;
}

@media all and (min-width: 1281px){

}
@media all and (min-width: 961px) and (max-width: 1280px){

}
@media all and (min-width: 801px) and (max-width: 960px){

}
@media all and (min-width: 322px) and (max-width: 800px){
	.btn{
		height: 40px;
	}
	.boss-comp-on-off-div {
		height: 34px;
	}
	.boss-comp-on-off-div:after {
		line-height: 34px;
	}
	.boss-comp-on-off-div:before {
		line-height: 34px;
	}
	.boss-comp-on-off-div label {
		height: 28px;
	}

	.boss-comp-checkbox + label {
		height: 30px;
		line-height: 30px;
	}
	.boss-comp-checkbox-span {
		width: 30px;
		height: 30px;
	}
	.boss-comp-checkbox-span::before{
		bottom: 8px;
		left: 2px;
		width: 8px;
		height: 2px;
	}
	.boss-comp-checkbox-span::after{
		bottom: 12px;
		left: 5px;
		width: 20px;
		height: 2px;
	}

	.boss-comp-radio + label {
		height: 30px;
		line-height: 30px;
	}
	.boss-comp-radio-span {
		width: 30px;
		height: 30px;
	}
	.boss-comp-radio-span::after{
		bottom: 5px;
		left: 5px;
		width: 16px;
		height: 16px;
	}
	/* FORM TEXT */
	.boss-input-text{
		height: 40px;
	}
	/* FILTER COMPONENT */
	.boss-js-select{
		height: 40px;
		line-height: 40px;
		position: static;
	}
	.boss-js-select-label-show{
		position: fixed;
		top: 80px;
		left: 40px;
		right: 40px;
		width: auto;
	}
	.boss-js-select div.button{
		height: 36px;
		line-height: 32px;
	}
	.boss-js-select-search span{
		top: 6px;
		right: 6px;
		width: 34px;
		height: 34px;
		line-height: 32px;
		font-size: 24px;
	}

	/* SELECT COMPONENT */
	.boss-select{
		height: 40px;
		line-height: 40px;
	}
	.boss-select select{
		height: 36px;
		line-height: 32px;
	}

	/* DATE COMPONENT */
	.boss-js-date{
		height: 40px !important;
		line-height: 40px !important;
	}

	/* TIME COMPONENT */
	.boss-js-time{
		height: 40px !important;
		line-height: 40px !important;
	}

	/* COLORS */
	.boss-color{
		height: 40px;
		line-height: 40px;
	}
	.boss-color-group div{
		display: inline-block;
		vertical-align: top;
		width: 20%;
		padding-top: 20%;
	}
	.boss-color div.button{
		height: 36px;
		line-height: 32px;
	}

	/* EDITOR */
	.boss-input-editor-toolbar-text-left{
		width: 40px;
		height: 40px;
		background-size: 400px 80px;
	}
	.boss-input-editor-toolbar-text-left:hover, .boss-input-editor-toolbar-text-left-active{
		background-position: -160px 0px;
	}
	.boss-input-editor-toolbar-text-center{
		width: 40px;
		height: 40px;
		background-size: 400px 80px;
		background-position: -40px 0px;
	}
	.boss-input-editor-toolbar-text-center:hover, .boss-input-editor-toolbar-text-center-active{
		background-position: -200px 0px;
	}

	.boss-tabs-horizontal li {
		width: 100%;
		border: 1px solid #AAA;
	}
}
@media all and (max-width: 321px){
	.btn{
		height: 40px;
	}
	.boss-comp-on-off-div {
		height: 34px;
	}
	.boss-comp-on-off-div:after {
		line-height: 34px;
	}
	.boss-comp-on-off-div:before {
		line-height: 34px;
	}
	.boss-comp-on-off-div label {
		height: 28px;
	}

	.boss-comp-checkbox + label {
		height: 30px;
		line-height: 30px;
	}
	.boss-comp-checkbox-span {
		width: 30px;
		height: 30px;
	}
	.boss-comp-checkbox-span::before{
		bottom: 8px;
		left: 2px;
		width: 8px;
		height: 2px;
	}
	.boss-comp-checkbox-span::after{
		bottom: 12px;
		left: 5px;
		width: 20px;
		height: 2px;
	}

	.boss-comp-radio + label {
		height: 30px;
		line-height: 30px;
	}
	.boss-comp-radio-span {
		width: 30px;
		height: 30px;
	}
	.boss-comp-radio-span::after{
		bottom: 5px;
		left: 5px;
		width: 16px;
		height: 16px;
	}
	/* FORM TEXT */
	.boss-input-text{
		height: 40px;
	}
	/* FILTER COMPONENT */
	.boss-js-select{
		height: 40px;
		line-height: 40px;
		position: static;
	}
	.boss-js-select-label-show{
		position: fixed;
		top: 80px;
		left: 40px;
		right: 40px;
		width: auto;
	}
	.boss-js-select div.button{
		height: 36px;
		line-height: 32px;
	}
	.boss-js-select-search span{
		top: 6px;
		right: 6px;
		width: 34px;
		height: 34px;
		line-height: 32px;
		font-size: 24px;
	}

	/* SELECT COMPONENT */
	.boss-select{
		height: 40px !important;
		line-height: 40px !important;
	}
	.boss-select select{
		height: 36px;
		line-height: 32px;
	}

	/* DATE COMPONENT */
	.boss-js-date{
		height: 40px !important;
		line-height: 40px !important;
	}

	/* TIME COMPONENT */
	.boss-js-time{
		height: 40px !important;
		line-height: 40px !important;
	}

	/* COLORS */
	.boss-color{
		height: 40px;
		line-height: 40px;
	}
	.boss-color-group div{
		display: inline-block;
		vertical-align: top;
		width: 20%;
		padding-top: 20%;
	}
	.boss-color div.button{
		height: 36px;
		line-height: 32px;
	}
	.boss-js-select-list{
		max-height: 260px;
	}

	/* EDITOR */
	.boss-input-editor-toolbar-text-left{
		width: 40px;
		height: 40px;
		background-size: 400px 80px;
	}
	.boss-input-editor-toolbar-text-left:hover, .boss-input-editor-toolbar-text-left-active{
		background-position: -160px 0px;
	}
	.boss-input-editor-toolbar-text-center{
		width: 40px;
		height: 40px;
		background-size: 400px 80px;
		background-position: -40px 0px;
	}
	.boss-input-editor-toolbar-text-center:hover, .boss-input-editor-toolbar-text-center-active{
		background-position: -200px 0px;
	}

	.boss-tabs-horizontal li {
		width: 100%;
		border: 1px solid #AAA;
	}
}