@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: 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(51,153,0,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: 1px solid rgba(153, 153, 153, 0.6);
	background-color:#FFF;
	position: relative;
	height: 32px;
	padding:0px;
	display:inline-block;
	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);
}
.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;
}
.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;
	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;
	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);
	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 */

/* -POPUP 3- */
.my-popup-3{position:fixed; z-index:9999; top:0; right:0; bottom:0; left:0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; justify-content: center; align-items: center;} 
.my-popup-3 .my-popup-3-bg{position:absolute; z-index:0; top:0; right:0; bottom:0; left:0; background-color:rgba(0,0,0,0.7); opacity:0; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease}
.my-popup-3 .my-popup-3-container{background-color:rgba(255,255,255,1); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; -webkit-box-orient: vertical; -webkit-box-direction: column; -ms-flex-direction: column; flex-direction: column; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); max-width:90%; max-height:90%; opacity:0; -webkit-transform: translateY(-100%); -moz-transform: translateY(-100%); -ms-transform: translateY(-100%); -o-transform: translateY(-100%); transform: translateY(-100%); -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease;}
.my-popup-3 .my-popup-3-container .my-popup-3-header{border-bottom:1px solid rgba(204,204,204,1); background-color:rgba(255,255,255,1); flex-shrink: 0; box-sizing:border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; -ms-flex-wrap: wrap; flex-wrap: wrap; align-items: center;}
.my-popup-3 .my-popup-3-container .my-popup-3-header>*{padding:5px 10px}
.my-popup-3 .my-popup-3-container .my-popup-3-header .my-popup-3-title{flex-grow: 1; flex-shrink: 1; font-size: 20px}
.my-popup-3 .my-popup-3-container .my-popup-3-header .my-popup-3-btn-container .my-popup-3-btn{display: inline-block; color: rgba(255,255,255,1); background-color: rgba(51,51,51,1); font-size: 12px; text-transform: uppercase; padding: 5px 10px; margin-left:5px; min-height: 30px; box-sizing: border-box; line-height: 20px; cursor:pointer}
.my-popup-3 .my-popup-3-container .my-popup-3-header .my-popup-3-btn-container .my-popup-3-btn[data-hide="true"]{display:none}
.my-popup-3 .my-popup-3-container .my-popup-3-header .my-popup-3-btn-container .my-popup-3-btn.my-popup-3-btn-cancel{background-color:rgba(255,182,0,1)}
.my-popup-3 .my-popup-3-container .my-popup-3-header .my-popup-3-btn-container .my-popup-3-btn.my-popup-3-btn-confirm{background-color:rgba(51,153,0,1)}
.my-popup-3 .my-popup-3-container .my-popup-3-body{flex-grow: 1; flex-shrink: 1; overflow-y: auto; padding:10px}

.my-popup-3.full .my-popup-3-container{width:90%; height:90%}
.my-popup-3.medium .my-popup-3-container{width:980px; height:auto}
.my-popup-3.small .my-popup-3-container{width:600px; height:auto}

.my-popup-3.my-popup-3-multiple .my-popup-3-bg{background-color:transparent}

.my-popup-3.loaded .my-popup-3-bg{opacity:1}
.my-popup-3.loaded .my-popup-3-container{opacity:1; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0);}
.my-popup-3-btn-close{font-size: 20px; color: rgba(51,51,51,1); cursor: pointer;}
.my-popup-3-btn-close:hover{opacity: 0.7;}
/* -/POPUP 3- */
