@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,700');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
/*@import url('../../fonts/material/material-icons.css');*/
@import url('../../tools/fontawesome/css/all.min.css');

:root{
	--main-bg-color: #309866;
}

html{
	height: 100%;
}

html.no_scroll{
	overflow: hidden;
}

body{
	background: white;
	margin: 0;
	font: 14px 'Open Sans', Arial, Helvetica, sans-serif;
	color: black;
	line-height: 1;
	height: 100%;
}

a{
	text-decoration: none;
	color: black;
	outline: none;
}

h1, h2, h3, h4, h5{
	font-size: 14px;
	margin: 0 0 10px 0;
	font-weight: 600;
}

h1{ font-size: 20px; }

h2{ font-size: 18px; }

h3{ font-size: 16px; }

p{ margin: 0; padding: 0; }

img{
	border: 0;
}

form{
	margin: 0px;
	padding: 0px;
}

input, select, textarea{
	vertical-align: middle;
}

label{
	vertical-align: middle;
}

hr{
	color: #D3E5F7;
	height: 1px;
	border: 0;
	margin: 0;
	border-bottom: 1px solid #D3E5F7;
}

ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

/*---------------------------------------------------*/
.show_on_mobile{
	display: none !important;
}

.hide_on_mobile{
	display: block;
}

span.hide_on_mobile{
	display: inline;
}

/*---------------Layout------------------------------*/
.main_center{
	margin: 0 auto;
	position: relative;
}

#top{
	background-color: var(--main-bg-color);
	color: white;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 45px;
	z-index: 4;
}

#left{
	background-color: #f2f2f2;
	width: 189px;
	border-right: 1px solid #c9c9c9;
	float: left;
	height: 100%;
	position: fixed;
	box-sizing: border-box;
	padding-top: 45px;
	z-index: 3;
}

#right{
	width: calc(100% - 190px);
	float: right;
	box-sizing: border-box;
	padding: 45px 0 0 0;
}

.pagepadding{
	padding: 20px;
}

#center{
	padding: 45px 0 0 0;
}

#bottom{
	background-color: #6f6f6f;
	color: white;
}

/*---------------Common------------------------------*/
.clear{
	clear: both;
	overflow: hidden;
	height: 0px;
	display: block;
}

.f-left{
	float: left !important;
}

.f-right{
	float: right !important;
}

.a-left{
	text-align: left !important;
}

.a-right{
	text-align: right !important;
}

.a-center{
	text-align: center !important;
}

.ajax-loader{
	background: url(../images/loader.svg) no-repeat center;
	background-size: contain;
	width: 40px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	margin: 0 5px;
	padding: 0 12px;
	vertical-align: middle;
}

/*---------------------------------------------------*/
.button1{
	background: var(--main-bg-color);
	color: white !important;
	font-family: Roboto, sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none !important;
	padding: 0 10px 0 10px;
	display: inline-flex;
	position: relative;
	align-items: center;
	box-sizing: border-box;
	min-width: 64px;
	height: 40px;
	border: none;
	outline: none;
	/* @alternate */
	line-height: inherit;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-appearance: none;
	overflow: hidden;
	vertical-align: middle;
	cursor: pointer;
	transition: all ease-in 200ms;
	line-height: 1.1;
	border-radius: 4px;
}

.button1.small{
	height: 28px;
	font-size: 12px;
}

.button1.center{
	justify-content: center;
	text-align: center;
}

.button1.uppercase{
	text-transform: uppercase;
}

.button1:disabled,
.button1.disabled{
	cursor: default;
	pointer-events: none;
	opacity: 0.5;
}

.button1.block{
	display: flex;
	width: 100%;
}

.button1.align-left{
	justify-content: left;
}

.button1:after{
	background: rgba(255, 255, 255, 0.2);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	transition: all linear 70ms;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.button1:active:after{
	opacity: 1;
	-webkit-transform: scale(2);
	transform: scale(2);
}

.button1 .material-icons{
	margin-right: 5px;
}

.button1.only-ico{
	min-width: 0;
}

.button1.only-ico .material-icons{
	margin-right: 0;
}

.button1.green{
	background-color: #00c853;
}

.button1.darkgreen{
	background-color: #388c85;
}

.button1.gray{
	background-color: #eeeeee;
	color: #666666;
}

.button1.blue{
	background-color: #2979ff;
}

.button1.red{
	background-color: #ff6135;
}

.button1.white{
	background-color: white;
	color: #666666;
	border: 1px solid #bdbdbd;
}

.button1.orange{
	background-color: white;
	color: #f4511e;
	border: 1px solid #f4511e;
}

.button1.transparent{
	background-color: transparent;
	color: #666666;
	border: 1px solid transparent;
}

.button1.transparent.withborder,
.button1.transparent.hoverborder:hover{
	border-color: #bdbdbd;
}

.button1.dashedborder{
	border-style: dashed;
}

.button1.weightnormal{
	font-weight: normal;
}

/*---------------------------------------------------*/
.button_circle{
	background: none;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	line-height: 40px;
	vertical-align: middle;
	border: none;
	outline: none;
	cursor: pointer;
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-appearance: none;
	transition: all ease-in 200ms;
	color: #6f6f6f;
	position: relative;
	padding: 0;
}

.button_circle:hover{
	background-color: #e0e0e0;
}

.button_circle:disabled{
	color: rgba(0, 0, 0, 0.38);
	cursor: default;
	pointer-events: none;
}

.button_circle .material-icons{
	position: relative;
	z-index: 2;
}

.button_circle:after{
	/*background: #c7c7c7;*/
	background: rgba(0, 0, 0, 0.1);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	opacity: 0;
	transition: all linear 70ms;
	-webkit-transform: scale(0);
	transform: scale(0);
	z-index: 1;
}

.button_circle:active:after{
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.button_circle.green{
	background-color: #00c853;
	color: white;
}

.button_circle.orange{
	color: #f4511e;
}

.button_circle.big{
	width: 60px;
	height: 60px;
	border-radius: 30px;
	line-height: 40px;
}

.button_circle.big .material-icons{
	font-size: 40px;
}

/* jQueryui modifications---------------------*/
.ui-widget{
	line-height: 1.2;
	font-size: 11px;
}

.ui-datepicker td.date_disabled{
	opacity: 1;
}

.ui-datepicker{
	z-index: 100 !important;
}

.ui-datepicker td{
	text-shadow: 0 0 0;
}

/*---------------------------------------------------*/
.handsontable{
	z-index: 1;
}

/*---------------------------------------------------*/
#top .topline{
	height: 45px;
}

#top .topline .logo{
	font-size: 16px;
	display: inline-block;
	line-height: 45px;
	color: white;
	margin: 0 10px;
}

#top .topline .logo .img{
	background: url(../images/logo.svg) no-repeat;
	background-size: 30px 30px;
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: middle;
	margin-right: 10px;
}

#top .topline .logo .text{
	vertical-align: middle;
}

#top .topline .menu_opener{
	margin: 0 10px;
	font-size: 30px;
	cursor: pointer;
	vertical-align: middle;
	display: none;
}

#top .right_section{
	float: right;
	height: 100%;
}

#top .user_panel{
	background: rgba(255, 255, 255, 0.2);
	height: 100%;
	font-size: 12px;
	line-height: 1.3;
	box-sizing: border-box;
	padding: 5px 20px 0 10px;
	cursor: pointer;
	position: relative;
}

#top .user_panel:after{
	content: '\f0d7';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	position: absolute;
	top: 14px;
	right: 5px;
}

#top .user_panel:hover{
	background-color: rgba(255, 255, 255, 0.3);
}

#top .user_panel .user_img{
	float: left;
	margin-right: 10px;
	width: 34px;
	height: 34px;
	line-height: 34px;
	border: 2px solid white;
	border-radius: 20px;
	text-align: center;
	overflow: hidden;
}

#top .user_panel .user_img i{
	font-size: 20px;
	vertical-align: middle;
}


#top .user_panel .menu{
	background: white;
	position: absolute;
	top: 45px;
	right: 0;
	width: 180px;
	z-index: 2;
	font-size: 13px;
	border: 1px solid silver;
	border-top: 0;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	display: none;
}

#top .user_panel.menu_opened .menu{
	display: block;
}

#top .user_panel .menu ul{
	padding: 5px 0;
}

#top .user_panel .menu ul li{

}

#top .user_panel .menu ul a{
	display: block;
	padding: 5px 10px;
	color: #585858;
}

#top .user_panel .menu ul a:hover{
	background-color: #f0e68c;
}


#top .user_panel .menu .menu-icon{
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	vertical-align: middle;
}

#top .user_panel .menu .menu-icon i{
	color: black;
	font-size: 14px;
}

#top .user_panel .menu .menu_text{
	vertical-align: middle;
	display: inline-block;
}

/*---------------------------------------------------*/
.main_menu{
	font-size: 13px;
	line-height: 1.2;
	position: relative;
}

.main_menu > ul{

}

.main_menu > ul li{
	position: relative;
}

.main_menu > ul li.haschildren:after{
	content: '\f0da';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 18px;
	color: #c9c9c9;
	position: absolute;
	right: 10px;
	top: 11px;
}

.main_menu > ul > li{
	position: relative;
}

.main_menu > ul > li > a{
	display: block;
	border-bottom: 1px solid #c9c9c9;
	overflow: hidden;
	color: #585858;
}

.main_menu > ul > li.active > a{
	background-color: white;
}

.main_menu > ul > li:hover > a{
	background-color: white;
	box-shadow: 3px 0 0 var(--main-bg-color) inset;
}

.main_menu > ul > li > a .bullet{
	/*background-color: red;
	width: 8px;
	height: 8px;
	border-radius: 4px;*/

}

.main_menu > ul > li > a .bullet:after{
	font-family: "Material Icons";
	content: 'new_releases';
	color: red;
	font-size: 24px;
	position: absolute;
	right: 5px;
	top: 5px;
}



.main_menu > ul > li .menu-icon{
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	line-height: 37px;
	text-align: center;
}

.main_menu > ul > li:hover .menu-icon,
.main_menu > ul > li.active .menu-icon{
	color: var(--main-bg-color);
}

.main_menu > ul > li .menu-icon i{
	font-size: 21px;
	vertical-align: middle;
}

.main_menu > ul > li .menu_text{
	display: block;
	padding: 12px 10px;
	float: left;
	display: block;
	box-sizing: border-box;
	width: calc(100% - 40px);
}

/*level2*/
.main_menu > ul > li ul{
	background: white;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 188px;
	top: -1px;
	z-index: 2;
	width: 188px;
	border: 1px solid #c9c9c9;
	transition: all 0.3s ease;
}

.main_menu > ul li:hover > ul{
	visibility: visible;
	opacity: 1;
}

.main_menu > ul > li ul li{
	position: relative;
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 1px;
}

.main_menu > ul > li ul li:last-child{
	border-bottom: 0;
}

.main_menu > ul > li ul li a{
	padding: 12px 10px;
	display: block;
}

.main_menu > ul > li ul li a:hover{
	background-color: #ecf3fa;
}

/*---------------------------------------------------*/
.breadcrumbs{
	background: #f2f2f2;
	border-bottom: 1px solid #c9c9c9;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	font-size: 13px;
}

.breadcrumbs ul{
	overflow: hidden;

}

.breadcrumbs ul li{
	float: left;
	margin-right: 15px;
	position: relative;
	padding-right: 20px;
}

.breadcrumbs ul li:after{
	content: '\f054';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 11px;
	color: #c9c9c9;
	position: absolute;
	right: 0;
	top: 3px;
}

.breadcrumbs ul li:last-child:after{
	content: '';
}

.breadcrumbs ul i{
	color: black;
	font-size: 20px;
	margin-right: 10px;
	vertical-align: middle;
}

.breadcrumbs ul a{
	color: var(--main-bg-color);
	vertical-align: middle;
}

.breadcrumbs ul a:hover{
	text-decoration: underline;
}

.breadcrumbs ul li span{
	vertical-align: middle;
}

/*---------------------------------------------------*/
.page_heading{
	border-bottom: 1px dotted #E2E2E2;
	padding: 0 10px 10px 10px;
	margin-bottom: 10px;
}

.page_heading h1{
	color: var(--main-bg-color);
	font-weight: 600;
	display: inline;
	font-size: 18px;
}

.page_heading small{
	color: #708090;
	font-size: 13px;
	margin-left: 5px;
}

.page_heading small:before{
	content: '\f101';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-right: 5px;
}

/*---------------------------------------------------*/
.page_heading2{
	border-bottom: 1px dotted #E2E2E2;
	padding: 10px;
	color: var(--main-bg-color);
	font-weight: 600;
}

h2.page_heading2{
	font-size: 15px;
}

/*---------------------------------------------------*/
.dashboard{

}

.dashboard ul.icon_nav{
	display: flex;
	flex-wrap: wrap;
}

.dashboard ul.icon_nav li{
	/*width: 100px;*/
	height: 104px;
	text-align: center;
	/*float: left;*/
	flex: 0 0 100px;
	margin: 0 0 10px 0;
}

.dashboard ul.icon_nav i{
	font-size: 48px;
	color: var(--main-bg-color);
}

.dashboard ul.icon_nav a{
	display: block;
	padding: 10px;
	border: 1px solid transparent;
}

.dashboard ul.icon_nav a:hover{
	background-color: #f9f9f9;
	border-color: #E2E2E2;
}

.dashboard ul.icon_nav .label{
	font-size: 12px;
	color: #708090;
	display: block;
	margin-top: 5px;
	line-height: 1.2;
}

/*---------------------------------------------------*/
table.deftable{
	background-color: white;
	width: 500px;
	font-size: 11px;
	table-layout: fixed;
	border-collapse: collapse;
	border: 1px solid #c7c7c7;
	margin-bottom: 10px;
	cursor: default;
}

table.deftable.fixed{
	margin-bottom: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

table.deftable td,
table.deftable th{
	border-bottom: 1px solid #c7c7c7;
	border-right: 1px solid #c7c7c7;
	padding: 4px 3px;
}

table.deftable thead td,
table.deftable th{
	background-color: #e6e6e6;
	font-weight: bold;
}

table.deftable tfoot td{
	background-color: #e6e6e6;
	font-weight: bold;
}

table.deftable .chkcol{
	width: 25px;
	background-color: #e6e6e6;
	text-align: center;
}

table.deftable .chkcol input{
	margin: 0;
}

table.deftable .chkcol input{
	vertical-align: middle;
}

table.deftable tr.selected td,
table.deftable tr td.selected{
	background: var(--main-bg-color) !important;
	color: white !important;
	text-shadow: 0 0 0;
}

table.deftable tr.selected td a{
	color: white;
}

table.deftable tr.clickable{
	cursor: pointer;
}

table.deftable tr.clickable:hover td{
	background: var(--main-bg-color) !important;
	color: white !important;
	text-shadow: 0 0 0;
}

table.deftable tr.clickable:hover td a{
	color: white;
}

table.deftable tbody tr.row_focus td{
	background-color: #dcdcdc;
}

table.deftable tr.red td{
	background-color: #ffdfdf;
}

table.deftable tr.green td{
	background-color: #e7f7ed;
}

table.deftable tr.yellow td{
	background-color: #ffffd9;
}

table.deftable tr.blue td{
	background-color: #d3e0f0;
}

table.deftable tr.gray td{
	background-color: #e2e2e2;
}

table.deftable tr.bold{
	font-weight: bold;
}

table.deftable .ordericon{
	font-size: 14px;
	vertical-align: middle;
	color: #708090;
}

/*---------------------------------------------------*/
table.selectlisttable{
	background-color: white;
	min-width: 406px;
	font-size: 10px;
	border: 1px solid #D0D0D0;
	border-bottom: 0;
	margin-top: 10px;
}

table.selectlisttable td{
	padding: 2px;
	border-bottom: 1px solid #D0D0D0;
}

table.selectlisttable td.td1{
	width: 20px;
	text-align: center;
}

table.selectlisttable .highlight{
	background-color: #fafad2;
	height: 16px;
	border: 1px dashed black;
	display: block;

}

/*---------------------------------------------------*/
table.itemlist{
	width: 100%;
	font-size: 11px;
	margin: 10px 0;
	border-collapse: collapse;
}

table.itemlist.hidden{
	display: none;
}

table.itemlist td,
table.itemlist th{
	border: 1px solid #c7c7c7;
	padding: 4px 3px;
}

table.itemlist td.id{
	width: 20px;
	text-align: center;
}

table.itemlist td.buttons{
	width: 100px;
	text-align: center;
}

table.itemlist thead td,
table.itemlist th{
	background-color: #e6e6e6;
	font-weight: bold;
}

/*---------------------------------------------------*/
.grid_form{
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	/*height: 100%;*/
	height: 580px;
}

.grid_form.autoheight{
	max-height: none;
	height: auto;
}

.tablecontainer{
	background-color: rgba(0, 0, 0, 0.02);
	background-color: rgba(220, 220, 220, 0.5);
	overflow: auto;
	position: relative;

	height: calc(100% - 36px);
	height: -moz-calc(100% - 36px);
	height: -webkit-calc(100% - 36px);
}

.tablecontainer thead td.order_down{
	background-image: url(../images/dn.png);
}

.tablecontainer table{
	margin-bottom: 0;
}

#searcresulttable{
	width: 100%;
}

/*---------------------------------------------------*/
.pager{
	background-image: url(../images/wbg.gif);
	background-repeat: repeat-x;
	padding: 5px;
	font-size: 12px;
}

.pager .wrapper{
	float: left;
}

.pager select{
	width: auto;
}

.pager .txtinput{
	width: 30px;
	text-align: center;
	margin-top: 2px;
}

.pager .sep{
	border-left: 1px solid #CCCCCC;
	border-right: 1px solid #FFFFFF;
	float: left;
	height: 22px;
	margin: 3px 10px 0 10px;
}

.pager a:link,
.pager a:visited{
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 20px;
	line-height: 20px;
	display: block;
	text-decoration: none;
	margin: 3px 2px 0 2px;
	border: 1px solid #CCCCCC;
	float: left;
	text-align: center;
}

.pager a:hover{
	border: 1px solid #acacac;
}

/*.pager a.first:link,
.pager a.first:visited{
	background-image: url(../images/first.gif);	
}
.pager a.prev:link,
.pager a.prev:visited{
	background-image: url(../images/prev.gif);	
}
.pager a.next:link,
.pager a.next:visited{
	background-image: url(../images/next.gif);	
}
.pager a.last:link,
.pager a.last:visited{
	background-image: url(../images/last.gif);	
}*/
.pager a.refresh:link,
.pager a.refresh:visited{
	background-image: url(../images/load.png);
}

.pager a.loading:link,
.pager a.loading:visited{
	background-image: url(../images/load.gif);
}

.pager em{
	font-style: normal;
	display: block;
	padding-top: 8px;
	float: left;
	margin: 0 2px;
}

.pager .summary{
	padding-top: 6px;
	font-weight: bold;
	float: right;
	margin-left: 10px;
}

/*---------------------------------------------------*/
.dataform{
	text-align: left;
}

.dataform h3{
	margin-bottom: 10px;
	font-size: 16px;
	color: rgba(48, 152, 102, 0.71);
}

.dataform .subtitle{
	font-size: 13px;
	margin-bottom: 10px;
	color: #696969;
	letter-spacing: -1px;
	font-weight: normal;
}

.dataform fieldset{
	padding: 20px 0;
	border: 0;
	margin: 0;
	border-bottom: 1px dotted #d0d0d0;
}

.dataform fieldset.foldable{

}

.dataform fieldset.foldable .opener{
	cursor: pointer;
	margin-bottom: 0;
	position: relative;
	padding-left: 24px;
}

.dataform fieldset.foldable .opener:before{
	font-family: "Material Icons";
	content: 'arrow_right';
	font-size: 36px;
	position: absolute;
	left: -10px;
	top: -10px;
	color: var(--main-bg-color);
}

.dataform fieldset.foldable.open .opener:before{
	content: 'arrow_drop_down';
}


.dataform fieldset.foldable .opener small{
	font-weight: normal;
	font-size: 16px;
}

.dataform fieldset.foldable .fieldset_content{
	padding-top: 20px;
	display: none;
}

.dataform fieldset.foldable.open .fieldset_content{
	display: block;
}

.dataform .linea{
	height: 1px;
	border-bottom: 1px dashed #d0d0d0;
	margin: 10px 0;
}

.dataform fieldset.noborder{
	background: none;
}

.dataform fieldset .fieldset_header{
	display: block;
	margin-bottom: 10px;
	font-size: 18px;
	color: var(--main-bg-color);
	text-decoration: underline;
}

.dataform .field{
	padding-top: 10px;
	padding-bottom: 10px;
}

.dataform .field .label{
	font-weight: 600;
	margin-bottom: 7px;
	font-size: 15px;
	line-height: 1.3;
}

.dataform .field .label.required:before{
	content: '*';
	color: #ff6135;
	margin-right: 5px;
}

.dataform .field.fixed_width{
	display: flex;
	flex-wrap: wrap;
}

.dataform .field.fixed_width .label{
	margin-top: 5px;

	flex: 0 0 180px;
}

.dataform .field.fixed_width .input{
	flex: 0 0 400px;
}

.dataform .field.fixed_width .msg{
	width: 100%;
	padding-left: 180px;
	box-sizing: border-box;
}

.dataform .unit{
	display: inline-block;
	padding-left: 5px;
	font-size: 14px;
	color: #666666;
	font-weight: bold;
}

.dataform .field label{
	margin-right: 5px;
}

.dataform .field .input{
	position: relative;
	display: flex;
	align-items: center;
}

.dataform .field .input span.counter{
	position: absolute;
	right: 10px;
	top: -24px;
	color: #999999;
	font-size: 12px;
}

.dataform .info{
	display: inline-block;
	font-size: 12px;
	color: #666666;
	margin-top: 5px;
	line-height: 1.2;
	font-weight: normal;
}

.dataform .field .msg{
	color: #ff6135;
	font-weight: 500;
	font-size: 12px;
	margin-top: 5px;
	line-height: 1.2;
	display: none;
}

.dataform .field.error .msg{
	display: block;
}

.dataform input:invalid,
.dataform .field.error input{
	box-shadow: none;
	border-color: #ff6135;
	margin-bottom: 0;
}

.dataform .field.error .select_wrapper{
	border-color: #ff6135;
}

.dataform input[type=text],
.dataform input[type=email],
.dataform input[type=password],
.dataform input[type=search],
.dataform input[type=number]{
	border: 2px solid #d0d0d0;
	padding: 5px 10px;
	width: 100%;
	box-sizing: border-box;
	font: 14px "Open Sans";
	position: relative;
	z-index: 1;
	border-radius: 4px;
	opacity: 1;
}

.dataform input[type=text]:placeholder-shown,
.dataform input[type=email]:placeholder-shown,
.dataform input[type=password]:placeholder-shown,
.dataform input[type=search]:placeholder-shown,
.dataform input[type=number]:placeholder-shown,
.dataform textarea:placeholder-shown{

}

.dataform input:focus,
.dataform textarea:focus,
.dataform select:focus{
	outline: none;
}

.dataform input.small_txtinput{
	padding: 2px;
	font-size: 12px;
}

.dataform select.small_select{
	padding: 2px;
	font-size: 12px;
}

.dataform input[type="number"]::-webkit-outer-spin-button,
.dataform input[type="number"]::-webkit-inner-spin-button{
	-webkit-appearance: none;
	margin: 0;
}

.dataform input[type="number"]{
	-moz-appearance: textfield;
}

.dataform select{
	border: 2px solid #d0d0d0;
	padding: 4px 10px;
	font: 14px "Open Sans";
	width: 100%;
	box-sizing: border-box;
	border-radius: 4px;
}

.dataform .select_wrapper{
	background-color: white;
	border: 2px solid #d0d0d0;
	border-radius: 4px;
	overflow: hidden;
	display: block;
	vertical-align: middle;
	position: relative;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

/*.dataform .select_wrapper.not_selected,
.dataform select.not_selected{
	border-color: #d0d0d0;
}*/

.dataform .select_wrapper:after{
	font-family: 'Material Icons';
	content: 'keyboard_arrow_down';
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -15px;
	font-size: 24px;
	z-index: 1;
}

.dataform .select_wrapper select{
	background: transparent;
	border: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 2px 30px 2px 10px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	color: #666666;
	font-size: 16px;
	z-index: 2;
	position: relative;
	outline: none;
}

.dataform textarea{
	padding: 10px;
	border: 2px solid #d0d0d0;
	border-radius: 4px;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 10px;
	font: 14px "Open Sans";
	resize: vertical;
}

.dataform .option_btn{
	font-size: 14px;
	margin-bottom: 10px;
	position: relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: inline-flex;
	vertical-align: middle;
}

.dataform .option_btn .text{
	line-height: 1.3;
	margin-top: 0;
	display: inline-block;
	font-size: 14px;
}

.dataform .option_btn .text a{
	text-decoration: underline;
}

.dataform .option_btn .format{
	position: relative;
	margin: 0;
	display: block;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin-right: 8px;
}

.dataform .option_btn .format:after{
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	opacity: 0;
}

.dataform .option_btn input:disabled + .format{
	background-color: #ededed;
}

.dataform .option_btn input:checked + .format:after{
	opacity: 1 !important;
}

.dataform .option_btn label:hover .format:after{

}

.dataform .option_btn label{
	cursor: pointer;
	color: #666666 !important;
	display: flex;
	align-items: center;
}

.dataform .option_btn input{
	display: none;
}

.dataform .option_btn.checkbox .format{
	background: white;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	border: 2px solid #6f6f6f;
	border-radius: 2px;
}

.dataform .option_btn.checkbox .format:after{
	content: '';
	position: absolute;
	width: 9px;
	height: 4px;
	top: 3px;
	left: 2px;
	border: 2px solid white;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.dataform .option_btn.checkbox input:checked + .format{
	background-color: var(--main-bg-color);
	border-color: var(--main-bg-color);
}

.dataform .option_btn.checkbox input:checked + .format:after{
	color: white;
}

.dataform .option_btn.checkbox.size-big .format{
	width: 26px;
	height: 26px;
	flex-basis: 26px;
}

.dataform .option_btn.checkbox.size-big .format:after{
	width: 17px;
	height: 7px;
	top: 5px;
	left: 3px;
	border-width: 3px;
}


.dataform .option_btn.radio .format{
	background: white;
	width: 14px;
	height: 14px;
	border: 2px solid #6f6f6f;
	border-radius: 10px;
}

.dataform .option_btn.radio .format:after{
	background: var(--main-bg-color);
	width: 8px;
	height: 8px;
	border-radius: 4px;
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
}

.dataform .option_btn.radio input:checked + .format{
	border-color: var(--main-bg-color);
}

.dataform .option_btn.fleft{
	float: left;
	margin-right: 20px;
}

.dataform .checkbox_switch{
	cursor: pointer;
	display: inline-flex;
	user-select: none;
}

.dataform .checkbox_switch .format{
	position: relative;
	margin: 0;
	display: block;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	margin-right: 8px;
	background: white;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	border: 2px solid #6f6f6f;
	border-radius: 2px;
}

.dataform .checkbox_switch .format:after{
	background-color: #6f6f6f;
	content: '';
	position: absolute;
	width: 9px;
	height: 2px;
	top: 6px;
	left: 3px;
}

.dataform .checkbox_switch.state0 .format:after{
	display: none;
}

.dataform .checkbox_switch.state1 .format{
	background-color: var(--main-bg-color);
	border-color: var(--main-bg-color);
}

.dataform .checkbox_switch.state1 .format:after{
	background: none;
	content: '';
	position: absolute;
	width: 9px;
	height: 4px;
	top: 3px;
	left: 2px;
	border: 2px solid white;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.dataform .checkbox_switch .text{
	line-height: 1.3;
	margin-top: 0;
	display: inline-block;
	font-size: 14px;
	color: #666666;
}

.dataform .checkbox_switch select{
	display: none;
}

.dataform .field .list_selector{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	width: 100%;
}

.dataform .field .list_selector .input .arrow_down{
	background-color: white;
	position: absolute;
	right: 2px;
	top: 3px;
	z-index: 2;
	cursor: pointer;
}

.dataform .field .list_selector .input input{
	cursor: pointer;
}

.dataform .field .list_selector .select-box{
	border: 1px solid #bdbdbd;
	width: 100%;
	height: 40px;
	box-sizing: border-box;
	display: inline-flex;
	/*justify-content: center;*/
	align-items: center;
	cursor: pointer;
	position: relative;
}

.dataform .field .list_selector.border_off .select-box{
	border-color: transparent;
}

.dataform .field .list_selector.center .select-box{
	justify-content: center;
}

.dataform .field .list_selector .select-box:after{
	font-family: "Material Icons";
	content: 'keyboard_arrow_down';
	position: absolute;
	top: 7px;
	right: 10px;
	font-size: 24px;
}

.dataform .field .list_selector .select-box label{
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	max-width: calc(100% - 40px);
	padding: 0 10px;
}

.dataform .field .list_selector .list-popup{
	background-color: white;
	cursor: default;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 4;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: all 0.2s linear;
	position: absolute;
	width: 100%;
	min-width: 280px;
	top: -24px;
	left: 0;
	box-sizing: border-box;
}

.dataform .field .list_selector.opened .list-popup{
	opacity: 1;
	visibility: visible;
	height: auto;
}

.dataform .field .list_selector .list-popup .section_top{
	position: relative;
	border-bottom: 1px solid #e0e0e0;
	padding: 15px 15px 0 15px;
	line-height: 1.3;
}

.dataform .field .list_selector .list-popup .section_top .list-popup-title{
	font-weight: 600;
	color: #333333;
	margin-bottom: 10px;
	font-size: 15px;
}

.dataform .field .list_selector .list-popup .section_top .list-popup-info{
	font-size: 14px;
	margin-bottom: 10px;
}

.dataform .field .list_selector .list-popup .section_top .list-popup-top-right{
	position: absolute;
	top: 3px;
	right: 5px;
}

.dataform .field .list_selector .list-popup .section_top .list-popup-searchbar{
	padding-bottom: 15px;
	display: none;
}

.dataform .field .list_selector.searchbar-open .list-popup .section_top .list-popup-searchbar{
	display: block;
}

.dataform .field .list_selector .list-popup .section_top .list-popup-searchbar input{
	box-sizing: border-box;
	width: 100%;
	border: 1px solid #e0e0e0;
	padding: 5px;
}

.dataform .field .list_selector .list-popup .section_top .close{

}

.dataform .field .list_selector .list-popup .list-popup-scrollbox{
	max-width: 100%;
	max-height: 300px;
	/*height: 300px;*/
	overflow: auto;
}

.dataform .field .list_selector .list-popup ul.items{
	line-height: 1.3;
	color: #333333;
	font-size: 16px;
}

.dataform .field .list_selector .list-popup ul.items li{
	padding: 8px 15px;
	transition: all 0.2s linear;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.dataform .field .list_selector .list-popup ul.items li.hide{
	display: none;
}

.dataform .field .list_selector .list-popup ul.items li:hover{
	background-color: #f5f5f5;
}

.dataform .field .list_selector .list-popup ul.items li.selected{
	background-color: #f5f5f5;
}

.dataform .field .list_selector .list-popup ul.items li .option_btn{
	margin-bottom: 0;
}

.dataform .field .list_selector .list-popup ul.items li .option_btn .text{
	font-size: 16px;
}

.dataform .field .list_selector .list-popup ul.items li .ico{
	width: 24px;
	height: 24px;
	margin-right: 10px;
	flex: 0 0 24px;
}

.dataform .field .list_selector .list-popup ul.items li span{

}

.dataform .field .list_selector .list-popup ul.items li .copytext{
	color: #666666;
	margin-right: 5px;
}

.dataform .field .list_selector .list-popup ul.items li .ico img{
	max-width: 100%;
	max-height: 100%;
}

.dataform .ajax-loader{
	display: none;
	vertical-align: middle;
}

.dataform.ondatasend .ajax-loader{
	display: inline-block;
}

.dataform .btn_container{
	margin: 20px 0;
}

.dataform .btn_container .formmsg{
	vertical-align: middle;
}

.dataform .btn_container .formmsg.red{
	color: #b22222;
}

.dataform .disabled,
.dataform input[disabled],
.dataform select[disabled]{
	background-color: #edf0f0;
	cursor: not-allowed;
}

/*
.dataform input[type=text][disabled]{
	background-color: #f5f5f5;
	color: black;
}

.dataform textarea{
	border: 1px solid #d0d0d0;
	padding: 3px;
	width: 400px;
	font: 12px Verdana;
}

.dataform .error .txtinput,
.dataform .error select,
.dataform .error textarea{
	background-color: #ffeaea;
	border-color: #cd5c5c;
}

.dataform .modselect{
	outline: 2px solid #ff8c00;
}


.dataform .msg{
	display: none;
	font: 12px Verdana;
	color: #b22222;
	margin: 3px 0 0 0;
}

.dataform .error .msg{
	display: block;
}

.dataform .info{
	font-size: 10px;
	color: #797979;
	display: block;
	padding-top: 3px;
	font-weight: normal;
}

.dataform .ajax-loader{
	display: none;
	vertical-align: middle;
}

.dataform.ondatasend .ajax-loader{
	display: inline-block;
}

.dataform .btnholder{
	padding-left: 160px;
	padding-top: 20px;
}

.dataform .btnholder .formmsg{
	vertical-align: middle;
}

.dataform .btnholder .formmsg.red{
	color: #b22222;
}

.dataform .ml10{
	margin-left: 10px;
}

.dataform .unit{
	display: inline-block;
	padding-left: 2px;
	vertical-align: middle;
	font-size: 10px;
}

.dataform .checkcontainer{
	float: left;
	width: 25px;
}
*/
table.recordinfo{
	margin-bottom: 10px;
	font-size: 14px;
}

table.recordinfo td{
	padding: 5px 10px 5px 0;
}

/*---------------------------------------------------*/
#loginbox{
	background: rgba(255, 255, 255, 0.5);
	width: 360px;
	max-width: 100%;
	padding: 20px;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: left;
	margin-top: 20px;
	font-size: 13px;
}

#loginbox input{
	margin-top: 3px;
	border: 1px solid #d0d0d0;
	padding: 2px;
	width: 180px;
	font: 12px Verdana;
	font-weight: normal;
}

#loginbox .lft{
	float: left;
	width: 130px;
	padding-top: 5px;
	font-weight: bold;
}

#loginbox .rght{
	float: left;
	margin-bottom: 10px;
}

#loginbox select{
	margin-top: 3px;
	border: 1px solid #d0d0d0;
	font: 11px Verdana;
	font-weight: normal;
	vertical-align: middle;
}

#loginbox .error{
	padding: 3px;
	font-size: 10px;
	margin-bottom: 5px;
}

#loginbox .error .ui-icon{
	float: left;
}

#loginbox .error .text{
	float: left;
	display: block;
	padding-top: 3px;
}

/*---------------------------------------------------*/
.file_uploader{
	display: none;
}

.file_uploader.opened{
	display: block;
}

.file_uploader .field_file_upload .input{
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.file_uploader .field_file_upload .msg{
	display: block;
}

.file_uploader ul.items{
	margin-left: 10px;
}

.file_uploader ul.items li{
	background: white;
	width: 200px;
	display: inline-block;
	margin: 0 8px 10px 0;
	position: relative;
	border: 1px solid #D9D9D9;
	padding: 1px;
}

.file_uploader ul.items li .handle{
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	right: 5px;
	top: 5px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	line-height: 20px;
	color: black;
	text-align: center;
	cursor: move;
}

.file_uploader ul.items li .image{
	background: #000000;
	height: 180px;
	line-height: 180px;
	display: block;
}

.file_uploader ul.items li .image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: middle;
}

.file_uploader ul.items li .ctrl_panel{
	padding: 10px;
	display: flex;
	align-items: center;
}

.file_uploader ul.items li .ctrl_panel a{
	vertical-align: middle;
	display: inline-block;
}

.file_uploader ul.items li .ctrl_panel input{
	flex: 0 0 160px;
	max-width: 160px;
	width: auto;
	margin-right: 10px;
	padding: 2px 10px;
}

.file_uploader ul.items li .ctrl_panel .ext{
	font-size: 12px;
}

.file_uploader ul.items i{
	font-style: normal;
	text-align: center;
	font-size: 13px;
}

.file_uploader ul.items a.delete .fa{
	margin-right: 3px;
}

.file_uploader ul.items .txtinput{
	width: 140px;
	vertical-align: middle;
	margin-left: 10px;
}


/*---------------------------------------------------*/
.popup_panel{
	display: none;
	position: absolute;
	z-index: 10;
}

.popup_panel.opened{
	display: block;
}

.popup_panel.centermodal{
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	box-sizing: border-box;
	display: block;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
	transform: scale(0.7);
}

.popup_panel.centermodal.dialog{
	z-index: 11;
}

.popup_panel.centermodal.opened{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}

.popup_panel .popup_wrapper{
	background: white;
	box-sizing: border-box;
	width: 520px;
	max-width: 100%;
	min-height: 100px;
	max-height: 100%;
	margin: 0 auto;
	font-size: 16px;
	overflow: auto;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.25);
}

.popup_panel.centermodal .popup_wrapper{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}


.popup_panel .popup_wrapper > div:last-child{
	margin-bottom: 0;
}

.popup_panel .popup_wrapper > .close{
	display: block;
	padding: 5px;
	border-radius: 30px;
	color: #6f6f6f;
	text-align: center;
	position: absolute;
	top: 12px;
	right: 10px;
	cursor: pointer;
	z-index: 2;
	transition: all ease-in 0.2s;
}

.popup_panel .popup_wrapper .close:hover{
	background-color: rgba(0, 0, 0, 0.2);
}

.popup_panel .popup_wrapper .close i{
	vertical-align: middle;
	transition: all ease-in 0.2s;
}

.popup_panel .popup_wrapper .close:hover i{
	color: black;
}

.popup_panel .popup_wrapper.w2{ width: 240px; }

.popup_panel .popup_wrapper.w3{ width: 368px; }

.popup_panel .popup_wrapper.w4{ width: 498px; }

.popup_panel .header{
	font-size: 16px;
	font-weight: 500;
	display: flex;
	color: #333333;
	border-bottom: 1px solid #e0e0e0;
	padding: 19px 40px 19px 20px;
	line-height: 1.3;
	align-items: center;
}

.popup_panel .header .material-icons{
	margin-right: 10px;
	color: #6f6f6f;
}

.popup_panel .footer{
	padding: 10px 20px;
	border-top: 1px solid #e0e0e0;
}

.popup_panel .popup_content{
	padding: 20px;
	line-height: 1.4;
}

.popup_panel .popup_content .highlight{
	color: #f4511e;
}

.popup_panel .popup_content .small{
	font-size: 14px;
}

.popup_panel .popup_content img{
	max-width: 100%;
}

.popup_panel .popup_content p{
	margin-bottom: 20px;
}

.popup_panel .popup_content p:last-child{
	margin-bottom: 0;
}

.popup_panel .popup_content p a{
	color: #f4511e;
}

.popup_panel .ico_link{
	display: inline-block;
	margin-top: 10px;
}

.popup_panel .ico_link *{
	vertical-align: middle;
}

.popup_panel .border_off{
	border: none;
}

.popup_panel.loginplease .popup_wrapper{
	width: 368px;
}

.popup_panel .dataform .field:first-child{
	padding-top: 0;
}

.popup_panel .dataform .field:last-child{
	padding-bottom: 0;
}