@charset "utf-8";
/* CSS Document */

input:required, input:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
input:focus {
	border-color:inherit;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	outline: none;
}
input:required:focus:invalid, .focus{
	border-color:rgba(64,165,222,1) !important;
	outline: none;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(64,165,222,1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(64,165,222,1);
	box-shadow: 0px 0px 5px 0px rgba(64,165,222,1);
}

input:disabled{
	border:1px solid rgba(204,204,204,0.2);
}
input[readonly="readonly"]{
	border:1px solid rgba(204,204,204,0.2);
}

/* CHEKBOX */
.checkbox>input{
	visibility:hidden;
	width:18px;
	height:18px;
	margin:0;
	position:absolute;
	z-index:-1;
}
.checkbox{
	width:18px;
	height:18px;
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border: 1px solid rgba(153, 153, 153, 0.6);
	cursor:pointer;
	overflow:hidden;
/*	display:inline-block;*/
	position:relative;
}
.checkbox:before{
	content:"";
	width:18px;
	height:18px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff;
	z-index:1;
}
.checked:before{
	content:"\f00c";
	color:rgba(64,165,222,1);
	font-size:16px;
	display:block;
	font-family:'FontAwesome';
	width:18px;
	height:18px;
	line-height:18px;
	text-align:center;
	position:absolute;
	top:0;
	z-index:2;
}
/* /CHEKBOX */

/* /SELECT*/
.select{
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border: 1px solid rgba(153, 153, 153, 0.6);
	background-color:#FFF;
	position: relative;
	height: 32px;
	padding:0px;
	display:inline-block;
	margin:3px 0 !important;
	cursor:pointer;
	box-sizing: border-box;
	width:100%;
}
.select:before{
	position:absolute; 
	content:"\f107";
	color:rgba(102,102,102,1);
	line-height:30px;
	font-size:20px;
	display:block;
	font-family:'FontAwesome';
	right:4px;
	top:0;
	cursor:pointer;
}
.select>label{
	position:absolute;
	line-height:30px;
	height:30px;
	color:rgba(102,102,102,1);
	font-size:12px;
	padding:0 4px;
	margin:0px;
}
.select>select{
	width:100%;
	height:32px;
	opacity:0;
	padding:0;
	margin:0;
}
/* /SELECT */

/* SELECT MULTIPLE */
.select_multiple{
	margin:5px 0 !important;
	position:relative;
}
.select_focus{
	min-height:32px;
	border: 1px solid rgba(153, 153, 153, 0.6);
	position: relative;
	padding:0px;
	display:block;
	cursor:pointer;
	box-sizing: border-box;
	line-height:30px;
	color:rgba(102,102,102,1);
	font-size:12px;
	padding:0 4px;
	margin:0px;
	background-color:rgba(255,255,255,1);
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
}
.select_focus:before{ 
	content:"\f107";
	color:rgba(102,102,102,1);
	line-height:30px;
	font-size:20px;
	display:block;
	font-family:'FontAwesome';
	right:4px;
	top:0;
	cursor:pointer;
	float:right;
}
.select_focus span:not(:first-of-type):before{ 
	content:", ";
}
.select_multiple select{
	display:none;
}
.select_multiple.open .select_list{
	display:block;
}
.select_list{
	list-style:none;
	display:none;
	position:absolute;
	z-index:2;
	width:100%;
	background-color:rgba(247, 247, 247, 1);
	border-left: 1px solid rgba(153, 153, 153, 0.6);
	border-right: 1px solid rgba(153, 153, 153, 0.6);
	border-bottom: 1px solid rgba(153, 153, 153, 0.6);	
	box-sizing: border-box;	
	padding:0px;
	line-height:30px;
	color:rgba(102,102,102,1);
	font-size:12px;
	margin:0px;
}
.select_list li{
	padding:0 3px;
	margin:1px;
	cursor:pointer;
}
.select_list li.selected{
	background-color:rgba(15,104,199,1);
	color:rgba(255,255,255,1);	
}
.select_list li.selected:after{
	content:'\f00d';
	position:absolute;
	right:6px;
	font-family:'FontAwesome';
	font-size:14px;
}
/* /SELECT MULTIPLE */

/* SWITCH */
.input_switch{
	overflow:hidden;
	height:32px;
	line-height:32px;
	color:#999;
	background-color:rgb(255,255,255);
	font-size:0;
	border: 1px solid rgba(153, 153, 153, 0.6);
	margin:4px 0;
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
}
.input_switch li{
	display:inline-block;
	width:50%;
	text-align:center;
	cursor:pointer;
	font-size:12px;
}
.input_switch li.switch_on.active{
	background-color:rgba(0,204,0,1);
	color:#fff;
}
.input_switch li.switch_off.active{
	background-color:rgba(255,0,0,1);
	color:#fff;
}
/* /SWITCH */

/* LABEL */
label{
	color:rgba(15,104,199,1);
	padding:5px 5px 0 5px;
	font-size:12px;
	display:block;
	line-height:14px;
	margin:4px 0 2px 0;
}
label span.upp{
	text-transform:uppercase;
}
/* /LABEL */

/* INPUT & TEXTAREA */
input,textarea{
	width: 100%;
    box-sizing: border-box;
	margin:3px 0;
	border:1px solid rgba(204,204,204,1);
	background-color:#fff;
	font-size:12px;
	color:rgba(102,102,102,1);
}
input,textarea{
	appearance:button;
	-moz-appearance:button; 
	-webkit-appearance:button;
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	padding:5px;
}
input{
	height:32px;
}
textarea{
	font-family:Helvetica, Arial, sans-serif;
	resize:none;
	overflow:auto;
}
/* /INPUT & TEXTAREA */

/* SUBMIT */
input[type="submit"]{
	background-color:rgba(15,104,199,1);
	color:#fff;
}
/* SUBMIT */


/* MULTIPLE SELECT NEW */
.msm select{
	display:none;
}
.msm{
	min-width:100px;
	width:100%;
	position:relative;
}
.msm>div{
	border: 1px solid rgba(153, 153, 153, 0.6);
	min-height:30px;
	padding:0 4px;
	overflow:hidden;
	background-color:rgba(255,255,255,1);
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	color: #666;
	font-size: 12px;
	box-sizing:border-box;
	line-height:28px;
}
.msm>div:after{
	content:'\f107';
	float:right;
	font-family:"fontAwesome";
	color: #666;
	line-height: 28px;
	font-size: 20px;
	display: block;
}
.msm>div>span:not(:last-of-type):after{
	content:', '	
}
.msm>ul{
	list-style:none;
	position:fixed;
	width:100%;
	border:1px solid rgba(204,204,204,1);
	box-sizing:border-box;
	margin-top:-1px;
	display:none;
	z-index:2;
	background-color:rgba(255,255,255,1);
	max-height:300px;
	overflow:auto;
}
.msm.open>ul{
	display:block;
}
.msm>ul>li:not(.msm_search){
	margin:1px;
	background-color:rgba(204,204,204,0.1);
	cursor:pointer;
	padding:2px;
	color: #666;
	font-size: 12px;
}
.msm>ul>li:not(.msm_search):not(.active):hover{
	background-color:rgba(204,204,204,0.6);
}
.msm>ul>li.active:hover{
	background-color:rgba(15,104,199,0.8);
}
.msm>ul>li.msm_search{
	margin:1px;
}
.msm>ul>li.msm_search:after{
	content:'\f002';
	font-family:"fontAwesome";
	position:absolute;
	right:0;
	top:0;
	padding:4px;
	font-size:12px;
	z-index:-1;
	color:rgba(204,204,204,1);
}
.msm>ul>li.active{
	background-color:rgba(15,104,199,1);
	color:rgba(255,255,255,1);
}
.msm>ul>li>input{
	display:block;
	border:1px solid rgb(153,153,153);
	width:100%;
	box-sizing:border-box;
	padding:2px;
	background-color:transparent;
}
/* /MULTIPLE SELECT NEW */
