/* 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;
}

.boss-auto-clipboard{
	position: relative;
}
.boss-auto-clipboard::after{
	-webkit-animation: all 0.3s ease-in-out;
	-moz-animation: all 0.3s ease-in-out;
	-o-animation: all 0.3s ease-in-out;
	-ms-animation: all 0.3s ease-in-out;
	animation: all 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.boss-auto-clipboard:hover{
	text-decoration: underline !important;
}
.boss-auto-clipboard:hover::after{
	cursor: pointer;
	content: "clique p/ copiar";
	text-align: center;
	color: #FFF;
	font-weight: bold;
	font-size: 10px;
	line-height: 10px;
	position: absolute;
	top: 5%;
	left: 5%;
	background-color: #EF6300;
	padding: 4px;
	width: 100px;
	z-index: 1;
	border-radius: 4px;
	opacity: 1;
	transform: translateY(0%);
}
.boss-auto-clipboard-sucess:hover::after{
	content: "copiado!";
	background-color: #1376d0;
	transform: translateY(-50%);
	opacity: 0;
}
.boss-auto-clipboard-sucess::after{
	animation: alternate clipboard_k 0.5s ease-in-out;
	animation-fill-mode: forwards;
	transform-origin: center center;
}

@keyframes clipboard_k{
	0% {
		transform: translateY(0%);
		opacity: 1;
	}
	5% {
		transform: translateY(5%);
		opacity: 1;
	}
	80%{
		opacity: 1;
	}
	100% {
		transform: translateY(-50%);
		opacity: 0;
	}
}

/* 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: 500;
	text-transform: uppercase;
	cursor: pointer;
	padding-left: 10px;
	padding-right: 10px;
	outline: none;
	border-radius: 3px;
	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{
	vertical-align: middle;
	display: inline-block;
	min-height: 30px;
	line-height: 30px;
	font-size: 13px !important;
	font-weight: 600 !important;
	cursor: pointer;
	padding-left: 10px;
	padding-right: 10px;
	outline: none;
	border: 1px solid #848484;
	border-radius: 2px;
	background-color: #FFF;
	color: #848484;
	text-transform: uppercase;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: 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;
}
.btna:hover, .btna:active, .btna:focus{
	border: 1px solid #848484;
	background-color: #888;
	color: #FFF;
	font-size: 13px !important;
	font-weight: 600 !important;
}
.btna:disabled, .btna:disabled:hover{
	font-size: 13px;
	cursor: default;
	background-color: #F8F8F8 !important;
	border: 1px solid #CCC !important;
	color: #D8D8D8 !important;
}

.btn-driv{
	height: 26px !important;
	color: #343434 !important;
	border-color: rgba(0,0,0,0) !important;
	background-color: rgba(0,0,0,0);
	font-size: 15px !important;
}
.btn-driv:hover, .btn-driv:active{
	height: 26px !important;
	border: 1px solid #343434 !important;
	background-color: #444 !important;
	color: #FFF !important;
	font-size: 15px !important;
}
.btn-driv-new{
	color: #343434 !important;
	height: 26px !important;
	border-color: rgba(0,0,0,0) !important;
	background-color: rgba(0,0,0,0);
	font-size: 12px !important;
}
.btn-driv-new:hover, .btn-driv-new:active{
	height: 26px !important;
	border: 1px solid #343434;
	background-color: #444;
	color: #FFF !important;
	font-size: 12px !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: #7db335 !important;
	border: 1px solid #67942b !important;
	color: #FFF !important;
}
.btn-green-invs:hover{
	background-color: #67942b !important;
	border: 1px solid #57841b !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: #707070 !important;
	border: 1px solid #686868 !important;
	color: #FFF !important;
}
.btn-grey:hover{
	background-color: #686868 !important;
	border: 1px solid #656565 !important;
	color: #FFF !important;
}
.btn-red{
	background-color: #FFF !important;
	border: 1px solid #ed254f !important;
	color: #ed254f !important;
}
.btn-red:hover{
	background-color: #ed254f !important;
	border: 1px solid #dd153f !important;
	color: #FFF !important;
}
.btn-red-invs{
	background-color: #dd153f !important;
	border: 1px solid #dd153f !important;
	color: #FFF !important;
}
.btn-red-invs:hover{
	background-color: #dd153f !important;
	border: 1px solid #CF1111 !important;
	color: #FFF !important;
}
.btn-transparent{
	background-color: rgba(0,0,0,0) !important;
	border: 1px solid rgba(0,0,0,0) !important;
	font-size: 18px !important;
	height: 24px;
	padding-left: 5px;
	padding-right: 5px;
}
.btn-transparent:hover, .btn-transparent:focus, .btn-transparent:active{
	background-color: rgba(0,0,0,0) !important;
	border: 1px solid rgba(0,0,0,0) !important;
	font-size: 18px !important;
	color: #333 !important;
	height: 24px;
	padding-left: 5px;
	padding-right: 5px;
}

.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-add-dialog, .btn-add-dialog:hover, .btn-add-dialog:focus, .btn-add-dialog:active{
	border-radius: 0px 2px 2px 0px !important;
	margin-left: -2px !important;
	border-left: none !important;
	width: 44px !important;
	font-size: 14px !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-close{
	cursor: pointer;
	background: rgb(255, 255, 255);
	border: 2px solid #333;
	height: 40px;
	width: 40px;
	font-size: 20px;
	border-radius: 50%;
	color: #333;
}
.btn-close:hover{
	background: rgb(50, 50, 50);
	border: none;
	height: 40px;
	width: 40px;
	font-size: 12px;
	border-radius: 50%;
	color: #FFF;
}

.btn-close-mini{
	cursor: pointer;
	background: rgb(255, 255, 255);
	border: 2px solid #333;
	height: 26px;
	width: 26px;
	font-size: 14px;
	border-radius: 50%;
	color: #333;
}
.btn-close-mini:hover{
	background: rgb(50, 50, 50);
	border: none;
	height: 26px;
	width: 26px;
	font-size: 12px;
	border-radius: 50%;
	color: #FFF;
}

.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;
}



.btn-login {
	background: rgba(0,0,0,0)!important;
	color: #ffffff !important;
	border: 1px solid #ffffff !important;
	border-radius: 7px;
}
.btn-login:hover{
	background: #ffffff !important;
	color: #0096F5 !important;
	border: 1px solid #0096F5 !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;
	font-size: 12px;
	position: relative;
	z-index: 1;
}
.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;
}
.boss-slct{
	outline: none;
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	position: relative;
	border: 1px solid #AAAAAA;
	background-color: #FFF;
	height: 32px;
	min-width: 100px;
	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-slct select{
	position: absolute;
	z-index: -1;
	visibility: hidden;
	height: 1px;
	width: 1px;
	margin-top: -1px;
}
.boss-slct-label{
	display: block;
	width: inherit;
	height: inherit;
	position: absolute;
	width: 100%;
	z-index: 0;
	top: 0px;
	left: 0px;
	cursor: pointer;
	line-height: 32px;
	overflow: hidden;
	padding: 0px 15px;
	color: #333;
	font-family: sans-serif;
	font-size: 13px;
	text-align: left;
	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-slct-brd{
	height: 38px;
	border: 2px solid #AAAAAA;
}
.boss-slct-brd .boss-slct-label{
	line-height: 34px;
}
.boss-slct-label img{
	vertical-align: middle;
	margin-right: 10px;
	width: auto;
	margin-top: -4px;
	height: 28px;
	border-radius: 50%;
}
.boss-slct-area{
	display: block;
	overflow-y: auto;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	height: 0px;
	width: inherit;
	position: absolute;
	top: 35px;
	left: -1px;
	width: 100%;
	max-height: 300px;
	z-index: 4;
	background-color: #FFF;
	-webkit-animation: height, 0.35s ease-in-out;
	-moz-animation: height, 0.35s ease-in-out;
	-o-animation: height, 0.35s ease-in-out;
	-ms-animation: height, 0.35s ease-in-out;
	animation: height height, 0.35s alternate;
	-webkit-transition: height, 0.35s ease-in-out;
	-moz-transition: height, 0.35s ease-in-out;
	-o-transition: height, 0.35s ease-in-out;
	-ms-transition: height, 0.35s ease-in-out;
	transition: height, 0.35s ease-in-out;
}
.boss-slct-area::-webkit-scrollbar{width: 10px; height: 10px;}
.boss-slct-area::-webkit-scrollbar-track-piece{background-color: #FFF;}
.boss-slct-area::-webkit-scrollbar-thumb:vertical{  height: 5px;  background-color: #888;}
.boss-slct-area::-webkit-scrollbar-thumb:horizontal{  width: 5px;  background-color: #888;}
.boss-slct ul{
	width: 100%;
	list-style: none;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}
.boss-slct ul li{
	width: 100%;
	border-top: 1px solid #EEE;
	font-size: 13px;
	font-family: sans-serif;
	list-style: none;
	cursor: pointer;
	margin: 0;
	padding: 10px 15px;
	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-slct ul li img{
	vertical-align: middle;
	margin-right: 10px;
	width: auto;
	height: 28px;
	margin-top: -2px;
}
.boss-slct-img ul li{
	padding: 2px 15px;
}
.boss-slct-img ul li img{
	height: 45px;
	border-radius: 50%;
}
.boss-slct ul li:hover, .boss-slct ul li.boss-slct-selected{
	background-color: #F4F4F4;
	font-weight: bold;
}
.boss-slct::before{
	content: '';
	position: absolute;
	top: 45%;
	right: 15px;
	display: block;
	width: 0; 
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #333;
	z-index: 1;
	-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-slct:focus::before, .boss-slct: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;
	z-index: 1;
}
.boss-slct:hover, .boss-slct:focus{
	border-color: #888;
}
.boss-slct-disabled, .boss-slct-disabled .boss-slct-label{
	cursor: default !important;
}

/* 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;
}
.boss-upload-photo{
	border-radius: 3px;
}
.boss-upload-photo:after{
	background-size: 78px 32px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJwAAABACAYAAADvRB4ZAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAABuwAAAbsBOuzj4gAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAABAqSURBVHic7Z15kBzVecB/r2dWEsisOBQrCCzuQ4tDwKAUh7mdCDCyQCAwpzmNE0oB2QKJ1c48vp5drbSBbOx1iEsVx4CrEop1xBmOiEsQgzkch0sCLAIY8AKiJCMQq11N98sf3aPtne2eo6d3VornV9Wl7nd9b7TfvH7ve9/3RhljaNCgXlhj3YEGf1w0FK5BXWkoXIO60lC4BnUlnVRDIrIr0JxUe2VYr7XeWCdZDRIkMYUDHgMOS7C9UtwLnFknWQ0SRCVhFsnlcjNc130+gf5UipNOp/davHjxB3WU2SABEpnDua57dRLtVEHKcZzL6yyzQQLUPMJ1dXXt1N/f3wdMTKZLFfM7YB+ttVtnuQ1qoOYRrr+//0Lqr2wA05RSp42B3AY1ELloEBEb+FZI1sta60sCz99NvFcVYoy5GviPsZLfoHpKrVKnAX8ekr65cCMiRwKHJ92pKjhdRPbUWr8/FsJFZGfgnmrqNDU1nd/a2tonIr8AJgNYlpXJZDJPA9i2fZkx5jshVbcA7yml3jbG9GqtX6+gf63AX/mPn2itz4kodyjwo5AsA3wIvA08qbX+z3Iyy1GJWeQ+4N+Ao4G/Lcobs9HNJwVcCdw0RvLHASdUU8F13Qn+7THA7gDGmMmFfGPM3qXa9OfcN4nI7cB3tdb5sHIikgbm4ys1QC6XOyKTyfy6uKxlWZNc1y33OW4UkWfT6fR5ixcvfq9M2UgqmcOt0VrfCTwbTOzq6toJOD+u4AS5ore3NzUWgidMmDAAPFJ0Bf8Y7xfnO47TX4WIjwN1nwYKymUBlwGdURWVUqcQUDYA13XPq0CmE5C5Evg0kHd0Pp//hYiMq/QDFBPb8Nvf338+8KUqqw0CrwG/B/rwhmsL75u+OzAVOARv5KqUPdesWXM6cH+VfamZhQsXfgqcGkwTkVuBv/YfH9Ra12Iy+qXWek6g7V2BpcBVftL87u7u7Pz580cosTHm2yHtnQcsxHtVRvGF1nrrZ/KV6yLgp37SXwDfAB6s5oMUGKZwIrKvUmoGsDfwZ37yUSKyCDjUf57qP19aoYyNwINKqXuMMQ+V25ISkV2VUrOMMWfizT92LCfAGJMVkUPKFHOBtel0+oVaXgljidZ6fUdHR0c+n78SUEDq888/PxR4Lliup6dnPHCW/7gOeB74JjAtl8sdlclkhr2tysgcBP5FRBYCBwIopQ6nFoVbunTpLgMDAz3AhSF2uRMYPqf4CiWG8gBfAN077LDDshtuuOGzSjuktV4P3A7cLiKTgQzeiNFUotqR/lWWfD5vROTWiRMnLlywYMGmSvu1rZDP5z/Fe1OMB1BK/aG4zIYNG04FJvmP9yulnjLGfBPAdd1vUzQ9qpB1+ApnjNkQoz4AloikBwYGVgIXxm0khNuAA7TWbdUoWzFa60+01temUqnpwN0J9U0B12zatOnfE2qvniil1NX4yga81dbW9kZxoeDr1H+z3M/Q/G+uiFRlf83lcjOAYwNJsUY3gLRSar4x5oi4DRQxgLdyuiOh9gBoa2t7C5gjIt8HuqhujhfFTNu2L85msz9PoK3R4ggRuc2/3xHvTfNl//ljX/mGISI7ArP8x03GmJVa680isgo4BW+ufDzwZITMCQGZFjADONh/ziulWrPZ7DtxP5BljAkz7sbhQ+DEpJUtiNb674EzGL5yiqIfeAtv1RVKgp99tJgGfMe/5jKkbAPA2dls9rHiCkqpWQzt/Dyitd7spwffEKVWq00BmRczpGwAmWw2+3cxPsdWLJIx3K4HjtNa/6qKOkpEJvsrr4rRWj+Mt0qKMi/0AbNaWlp20lrv39zcvJNSagHeH6mYsTRaV8LnwBv+tZah1eV4YJVt21cUVyhand4dSL87UP8c304XhhuQ+QYBQz/QKSJ34E1LYpGm9n3QvFLq3Gw2u7ZUod7e3tTq1atn4vmx/SWwB/5CQEQG8DbjHwLu1lo/WaotrfWLInI5nkE6yOepVOrYtra2twsJvsngFhF5Gyiet1Vr1qk3K4vMIvsCNt582zLG3NLb23vb3LlzHYBly5ZNAoL7y1eLyEWB58JiYzJwMhC2c7BJa711VPN3Uy4HbvGTLs7lcv+YyWSeC6lbliTck+aHDe1B2tvbp69evfpZvH3Pq/DMLsFV53jgALydjCdE5OGOjo49SrXpG6M7ipKXBZWtqPwKPIXebtFa/286nV6INwoBTHr99de/VsgfGBg4k6EFBcDXgZmBK5gXZqcLk/kHfyqzupDmuu5J8T5B7Qq3Smv946hMEbFEZIHjOP+NN/mslJn5fP5VEbmkVKGWlhYNrCk8W5a1qlR5pdQvq+jDNonvdPpy4dkYc2TgPqhEbwMvFV0vB/LPqnLHIPhlreZvOYxaXMyNZVnXR2V2dnb+Cd4c4tioMmXYGc8WN6e5ufn8MGv63LlzHX+DujBXGSzTZrn87YWt/xfGmB0AfJvlNwJlTtRa/664ooi8gWdP21kpNZPKd2i+CNxPiCxVhlpGuLsymcwLUZmDg4M/Ib6yBZm9cePGJVGZWut78A2ZruseXaohY0zsb+Y2xkeB+68AKKXOZmgA+XWYsvkEFxKV7K0W+DhwP62KesOoReGWRmXYtn0+MCcqPwbXisjxJfK7/H8XdXZ27hZWIJfLHQucnWCfxpLgnPncm2++eWKRsbeUkXxF4H52d3f3DhXKfJyhVe4hvjG4auIq3Dta6/8Jy1iyZMkUY0xPzHajUMBtIhK6qmxubn4Eb8ifMjg4uFJEvhrMt237LNd176YOcbipVKobOMm/bokqZ1nW2YVyxpinA1k/K6RblpWJqP7PARkXOo6TtiwrG2jvn6Lkaq1fsCzrRL/srI0bN6bGjRv3cqC90yPqrbYs62i/zMmu666LklEKddNNN8UJavih1vq6sAwR6QVCHf0SoEdrXeyTV5B7DzDbfyzYkt7Bc0LYM6K9j7TWf5p0JxtEE+sbr5S6Nyzdn7ieFZaXEJdGrayK+mQB0/FsUlHK1mAMiKVwxpjXIrLOIJl9zih2wjNYjkAp9eooym2QEHEULg98EpGXxKq0HKErUdd1G0HR2wFxFO6jErGg9Xh9TQ1LbGlp+YgSG/UNtg3iKNzHJfJ2j9uRKvhyWKK/nxhr5dSgfsTZaSh1QtII79NRoJSL+qQSeaOGiByDF8FVMVrrVYTEFojIuFQqtZ/rugcaY/bCi/94s7m5+bdhuy0iMhXfE7caLMvakslkRmz1+c6Z0/w291dKfaaUerOpqenNRYsWxfb0LRBH4UqNYvWID+0LS1y6dOkuQKVGzKRZAUyppkJPT8+EefPmbXWZWr58eVNfX998IOM4zgh748aNG7eIyA+BXDAuRCk12xhza7Uddl13AzDMNcy27dnAP+A5VwBeWKIxhoGBAUTkvlQq9X3fITYWcV6pO4pI1Ci3OiI9SUIDgAcGBkp6l2zLiMj+fX19rwDLiHaZagIWAG/ath3bWyOMnp6e8SJyvzHmHgLKFsK3HMdZ7XtexyKWWcSyrL0isu6L25EKcYEHwjKUUvuMsuxKeRdvJV3ymjdv3iCAiEwAeoGD/PoGLwp+BrCbZVmHKaWyeJH3AFOMMXcV3LfS6fSKkPaLt/AeCClTiMhn/fr13XgmrQKP+bsRU4ADlFKXMLR/Ow642bbtWOe6xPIWMcacCrxSnK61flVE1uAZXUeDVVrr0EWL36dtgf4qPZ+XEDjIUSn1g2w22x3IXw+8ZNv2i8aYQvDK5Hw+fwdwSmtr60cM38ynvb19H8cZtmBfF9Un27ZnMRRHC95hj3MymUzBEvExsFZEHgNeBXbBO3XrDhE5yI+yq5i4ht9Sp0/+DaUDbeMyyMijJgoohra1tjeCcRVrp0+fHnbGB9ls9iE8ZShwku/hWxMhcR3XhZm9tNa/x/M2LjBZKXVctfLibmYftWTJktBJsu8eXvUktgK01jp0NyGXyx2J57K+XeG7b+8XSHq+4C4ewTOBe7V58+Yk3K2CEXt9Wut3ogpaljVsVRvH3SuuA6a1ZcuWq4D2sMyJEycu3LRp02nAvjHbL+ZXLS0tkdFCruuO9aE6QSaJyKUl8t/XWj8KYFnWAa47bDApucpXSr1XFKh+MPBozH4WOChwX/JEglQq9X5Rf6ueOtXirnO979U7Aj+i/TKGR/zEZUMqlbo06pvf3t5+kC9rW2F3PBejqOsHhYKu6xbvO5c8zdMUaZtSKol966AOlJsKFfevavm1KFzz4OBglL8WWuunUqnUYRSde1ElDwFfDYsuL+A4Tgej6zDQIEFqdUj8Xi6XCzu0EIC2trY3WlpajlVKtVJdPMFnSqkrtdan+5PVUETkZLY9L961DJ0GNeIaP378BYWCqVSq2HJfLmyxOL+qFWIEwT6UlO+6bs3ya/2dhibXde/t7OycceONN4buY/qvws5cLveA67rX453iExX8/CFwbzqd7ly8ePG7pQT7MZp31dL5USKvtf6wkoKO4/wWL9i58Ic8oEyVYfmWZb1YffdG8BuGdo/2ExEryjnDcZzi/lUtPwmX670GBwdXlAs5y2Qyr/hnA0+xLOsovKML5gHXKKXm4K2W9tBaf6+csvmHId4HhMYvbC/4f9jfBJJO9uekI/Dd64NBzZ+2tbWVPXa1AoJKM4HSx7AF7XVYllX1dCmpX6L5OnCniFyktf6iVEH/iNDniDm3848WW4F3cOF2j2VZi13XfQJvHtrkOM6/tre3nxMM6Pb3iX/GcNesRSRj7+wBrmDIrNRl2/a7weD23t7e1Jo1a1oZbjO8K+z41nIk+dNHZwH/1dHRMXu0DvwTkYPx4ij3H432x4JMJvO0bdvaGFMwMX3NcZyXReQJvLiMvfFOTQpaBHq11j9JQr7W+hMRuQAvKisF7GaMWemftvQSngfOMQz3SHmLoVM4qyLpKKbD8/n8C7Ztz0y4XUTkXLxR8f+NshXIZrNLlFJXMrRF9SW8I7cW4AUkFZRtE94BjSVPJKgWrfVTlmWdxNDrXQEnAtfivWILymaAO4Dj4/64XpIjXIEpxpiHReRRy7IWxRl2g/jxqMuAo5Lp3qjwDEMLoZLzzwhMNpv9aVdX1139/f3X4O2tHgRs9YcDXmtqarq1tbU11D0riGVZmx3HCR57UXaul8lknvZ/BuEivFDAA/EWKZ/58t8Efq61rmmhEjdMsFIMcK9S6s5Kzvct0NnZuduWLVvOMMZcQMCrYRT4UGtdDy/lBj5p4ANGbx9SAWf6m/2DIvK4UuoZ4H1jzAeWZX0ApI0xU40xe+DFRJwAHEd9jLmNwJs6k8ZbFtdj43sccGrQjahoX24sSMKO1aAKLMuyuhkdd6JtnQHLspI+kqJBGVKPP/74u6tWrRqP9xr7Y8EFrstms7FP424Qj62/l2rb9mnGGI23Qhpfstb2yxfAi/7qOc5vFTSokRE/0Lt8+fKmdevWTc3n87EPDt5GcVtaWj4o4+DYYJRJ5DfvGzSolFE/L61BgyANhWtQVxoK16CuNBSuQV35P/I8s89nZT+uAAAAAElFTkSuQmCC');
}

/* 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;
	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: 120px;
	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 10px;
	color: #333;
	font-size: 12px;
	height: inherit;
	line-height: inherit;
	position: relative;
	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-js-select-label-show{
	left: -1px;
	right: -1px;
	display: block;
	background-color: #FFF;
	border: 1px solid #AAA;
	border-top: none;
	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: 5px 10px;
	background-color: #FFFFFF;
	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: none;
	border-bottom: 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: 1px solid #AAA;
	background-color: #F1F1F1;
	line-height: 24px;
	text-transform: uppercase;
	padding: 0px 10px;
	margin-top: 3px;
	margin-left: 5px;
	min-width: 40px;
	font-size: 10px;
	font-weight: 400;
	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: #F1F1F1;
}
.boss-js-select-list{
	background-color: #FFF;
	width: 100%;
	display: block;
	max-height: 320px;
	overflow: auto;
	outline: none;
}
.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: 0px;
}
.boss-js-select-status{
	background-color: #FFFFFF;
	display: block;
	width: 100%;
	font-size: 10px;
	padding: 5px 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-js-select .boss-comp-radio + label{
	display: block !important;
	width: 100% !important;
	height: auto !important;
	line-height: 16px !important;
	font-size: 12px !important;
	padding: 9px 10px !important;
	box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-webkit-box-sizing: border-box !important;
	-ms-box-sizing: border-box !important;
	-o-box-sizing: border-box !important;
}
.boss-js-select .boss-comp-radio + label:hover{
	background-color: #F1F1F1 !important;
}

/* 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: 20px;
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	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;
	line-height: 1em;
	margin: 0px 0px -1px 0px;
	padding: 20px 20px 15px 20px;
	background-color: #DDD;
	border-top: 1px solid #DDD;
	border-color: #ddd;
	border-top-width: 2px;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	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-tabs-horizontal li:first-child{
	border-left: 1px solid #ddd;
}
.boss-tabs-horizontal li:last-child{
	border-right: 1px solid #ddd;
}
.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: 8px;
	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 10px;
	color: #333;
	font-size: 12px;
	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: 1px 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: 1px 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: #84a8cc !important;
	background-color: #f2f8ff;
}
.ok-field-border{
	border: 1px solid #00618f !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;
}
.blur-up-box{
	position: relative;
	overflow: hidden;
}
.blur-up-box img{
	transform: scale(1);
	-webkit-animation: all 0.25s ease-in-out;
	-moz-animation: all 0.25s ease-in-out;
	-o-animation: all 0.25s ease-in-out;
	-ms-animation: all 0.25s ease-in-out;
	animation: all 0.25s alternate;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.blur-up{
	transform: scale(1.1);
	filter: blur(10px);
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5');
}

@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){

	/* 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-search span{
		top: 6px;
		right: 6px;
		width: 34px;
		height: 34px;
		line-height: 32px;
		font-size: 24px;
	}

	/* 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-tabs-horizontal li, .boss-tabs-horizontal li:first-child, .boss-tabs-horizontal li:last-child{
		width: 100%;
		border-color: #ddd;
		border-style: solid;
		padding: 15px;
		border-top-width: 1px !important;
		border-bottom-width: 1px !important;
		border-left-width: 1px !important;
		border-right-width: 1px !important;
	}
}
@media all and (max-width: 321px){

	/* 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-search span{
		top: 6px;
		right: 6px;
		width: 34px;
		height: 34px;
		line-height: 32px;
		font-size: 24px;
	}

	/* 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;
	}
	.boss-tabs-horizontal li, .boss-tabs-horizontal li:first-child, .boss-tabs-horizontal li:last-child{
		width: 100%;
		border-color: #ddd;
		border-style: solid;
		padding: 15px;
		border-top-width: 1px !important;
		border-bottom-width: 1px !important;
		border-left-width: 1px !important;
		border-right-width: 1px !important;
	}
}