/*=======================================================================================================================*/
/*=======================================================================================================================*/
/*****************************************
dialogContainer start
*****************************************/
#dialogContainer{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-image:url(../img/dialog_bg.png);
	z-index:999999999999999999;
	display:none;
}
#dialogContainer img.loading{
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#dialogContainer .dialogWrapper{	
	width:70%;
	margin:50px auto;
}
#dialogContainer .dialogContent{
	padding:5px 5px 5px 5px;
	background-color:#e5e9ec;
	margin-top:10px;
	float:left;
	width:100%;
	
}

#dialogContainer .dialogTitle{
	background-color:#000000;
	font-size:130%;
	padding-left:5px;
	width:calc(100% - 5px);
	float:left;
	color:#FFFFFF;
	line-height:38px;
	cursor:move;
}
#dialogContainer .dialogName{
	width:calc(100% - 35px);
	float:left;
	font-weight:bold;
}
#dialogContainer .dialogName span{
	float:left;
}
#dialogContainer .dialogName img{
	float:left;
	margin-right:6px;
	margin-top:9px;
	width:20px;
	height:20px;
}
#dialogContainer .dialogClose{
	float:right;
	width:20px;
	height:20px;
	margin-right:9px;
	margin-top:9px;
	cursor:pointer;
}
#dialogContainer .dialogBody{
	float:left;
	background-color:#FFFFFF;
	max-height:600px;
	min-height:600px;
	width:100%;
}
#dialogContainer .dialogForm{
	width:calc(100% - 10px);
	float:left;	
	padding:10px 5px 5px 5px;
	overflow-y:scroll;
	overflow-x:hidden;
	max-height:585px;
	min-height:585px;
}

#dialogContainer .dialogForm h1{
	font-size:120%;
	margin:0 0 10px 0;
	padding:0 0 0 0;
	width:100%;
	float:left;
	border-bottom:1px #e5e9ec solid;
}

/*
#dialogContainer .dialogFormField{
	width:calc(100% - 20px);
	padding-left:10px;
	padding-right:10px;
}
*/

#dialogContainer .dialogFormField{
	width:100%;
	float:left;
	margin-bottom:10px;
}
#dialogContainer .dialogFormField label{
	width:100px;
	float:left;
}
#dialogContainer .dialogFormField input[type=text], 
#dialogContainer .dialogFormField input[type=password], 
#dialogContainer .dialogFormField input[type=tel]{
	width:calc(100% - 150px);
	float:left;
	background-color:#f4f4f4;
}
#dialogContainer .dialogFormField input[type=text]:focus, 
#dialogContainer .dialogFormField input[type=password]:focus{
	background-color:#FFFFFF;
}
#dialogContainer .dialogFormField input[type=submit]{
	margin-left:100px;
	background-color:#0072c6;
	color:#FFFFFF;
	font-size:100%;
	font-weight:bold;
	height:35px;
	-webkit-transition: background-color 300ms linear;
	-moz-transition: background-color 300ms linear;
	-o-transition: background-color 300ms linear;
	-ms-transition: background-color 300ms linear;
	transition: background-color 300ms linear;
}
#dialogContainer .dialogFormField input[type=submit]:hover{
	background-color:#2196f3;
}
#dialogContainer .dialogFormField select{
	/*max-width:120px;*/
	width:calc(90% - 210px);
	float:left;
	padding-left:10px;
	-webkit-border-radius:5px;
	border-radius:5px;
	-moz-border-radius:5px;
	background-color:#f4f4f4;
}

#dialogContainer .dialogFormField input[type=file]{
	display:none;
}
#dialogContainer .dialogFormField .dialogFileField{
	width:calc(100% - 250px);
	float:left;
	background-color:#f4f4f4;
	padding-left:10px;
	line-height:38px;
	height:38px;
	padding-right:10px;
	border:1px #dddddd solid;
	border-bottom-left-radius:5px;
	border-top-left-radius:5px;
	border-right:0px;
}
#dialogContainer .dialogFormField .dialogFileField span{
	margin-left:-5px;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background-color:#455a64;
	padding:5px 10px 5px 10px;
	color:#FFFFFF;
}
#dialogContainer .dialogFormField .dialogFileField span b{
	padding-left:10px;
	font-weight:bolder;
	font-size:80%;
	cursor:pointer;
}
#dialogContainer .dialogFormField .dialogFileBut{
	background-color:#ec407a;
	line-height:40px;
	color:#FFFFFF;
	text-align:center;
	cursor:pointer;
	float:left;
	width:100px;
	border-bottom-right-radius:5px;
	border-top-right-radius:5px;
	-webkit-transition: background-color 300ms linear;
	-moz-transition: background-color 300ms linear;
	-o-transition: background-color 300ms linear;
	-ms-transition: background-color 300ms linear;
	transition: background-color 300ms linear;
	font-weight:bold;
}
#dialogContainer .dialogFormField .dialogFileBut:hover{
	background-color:#da386f;	
}


#dialogContainer .dialogFormField input[type=radio]{
	display:none;
}
#dialogContainer .dialogFormField .dialogRadio{
	color:#545462;
	float:left;
	margin-right:10px;
	cursor:pointer;
	padding-left:20px;
	position:relative !important;
	margin-bottom:5px;
	margin-top:5px;
	
}
#dialogContainer .dialogFormField .dialogRadioChecked:before{
	position: absolute;
	font-family: 'FontAwesome';
	top: 0;
	left: 0;
	content: "\f192";
	font-size:120%;
	color:#607d8b;
}
#dialogContainer .dialogFormField .dialogRadioUncheck:before{
	position: absolute;
	font-family: 'FontAwesome';
	top: 0px;
	left: 0px;
	content: "\f10c";	
	font-size:120%;
	color:#607d8b;
}

#dialogContainer .dialogFormField .dialogNumeric{
	width:100px !important;
	border-bottom-left-radius:0px;
	border-top-left-radius:0px;
	border-left:0px #7c96a2 solid;
}


#dialogContainer .dialogFormField .dialogPercent{
	width:100px !important;
	border-bottom-right-radius:0px;
	border-top-right-radius:0px;
	border-right:1px #7c96a2 solid;
}
#dialogContainer .dialogFormField .dialogDate{
	width:200px !important;
	border-bottom-right-radius:0px;
	border-top-right-radius:0px;
	border-right:1px #7c96a2 solid;
}
#dialogContainer .dialogFormField .dialogTime{
	width:200px !important;
	border-bottom-right-radius:0px;
	border-top-right-radius:0px;
	border-right:1px #7c96a2 solid;
}
#dialogContainer .dialogFormField .dialogColor{
	width:200px !important;
	border-bottom-right-radius:0px;
	border-top-right-radius:0px;
	border-right:1px #7c96a2 solid;
}

#dialogContainer .dialogFormField i.dialogLeftLabel{
	width:35px;
	float:left;
	height:36px;
	line-height:36px;
	background-color:#7c96a2;
	color:#FFFFFF;
	text-align:center;
	font-size:110%;
	border-bottom-left-radius:5px;
	border-top-left-radius:5px;
}
#dialogContainer .dialogFormField i.dialogRightLabel{
	width:35px;
	float:left;
	height:36px;
	line-height:36px;
	background-color:#7c96a2;
	color:#FFFFFF;
	text-align:center;
	font-size:110%;
	border-bottom-right-radius:5px;
	border-top-right-radius:5px;
	font-style:normal !important;
}


#dialogContainer .dialogFormField .dialogCheckboxWrapper{
	width:calc(100% - 152px);
	padding:10px 10px 0px 10px;
	float:left;
	border:1px #dddddd solid;
	background-color:#f4f4f4;
}

#dialogContainer .dialogFormField input[type=checkbox]{
	display:none;
}
#dialogContainer .dialogFormField .dialogCheckboxAll{
	color:#ec407a !important;
}
#dialogContainer .dialogFormField .dialogCheckbox{
	color:#545462;
	margin-right:10px;
	cursor:pointer;
	position:relative !important;
	padding-left:20px;
	width:100%;
	margin-bottom:10px;
	display: inline-block;
}
#dialogContainer .dialogFormField .dialogCheckboxChecked:before{
	position: absolute;
	font-family: 'FontAwesome';
	top: 0;
	left: 0;
	content: "\f14a";
	font-size:120%;
	color:#607d8b;
}
#dialogContainer .dialogFormField .dialogCheckboxUncheck:before{
	position: absolute;
	font-family: 'FontAwesome';
	top: 0px;
	left: 0px;
	content: "\f096";	
	font-size:120%;
	color:#607d8b;
}

#dialogContainer .dialogFormField p{
	
	width:calc(100% - 100px);
	padding:0 0 0 0;
	
	margin:0 0 10px 0;
	margin-left:100px !important;
}
#dialogContainer .dialogFormField p i{
	color:#FF9933;
	font-weight:bold;
	text-transform: uppercase;
}


#dialogContainer .dialogFormField .error{
	border:1px #F00 solid !important;
	background-color:#fff9f5 !important;
}
#dialogContainer .dialogFormField .msg{
	color:#F00;
	float:left;
	display:inline;
	line-height:30px;
	width:calc(100% - 100px);
	margin-left:100px;
}



#dialogContainer .dialogList{
	width:100%;
	float:left;	
	overflow-y:scroll;
	overflow-x:auto;
	max-height:570px;
	min-height:570px;
	height:570px;
}
#dialog_search{
	border-left:0px;
	border-right:0px;
	border-top:0px;
	width:calc(100% - 50px);
	padding-left:10px;
	padding-right:40px;
	-webkit-border-radius:0px;
	border-radius:0px;
	float:left;
	background-color:#f4f5f7;
	background-image:url(../img/dialog_search_box.png);
	background-size: 25px 25px;
    background-repeat: no-repeat;
	background-position:right 5px center;
}
#dialog_search:focus{
	border:0px !important;
	border-bottom:1px #767676 solid !important;
	
	outline: none;
}




#dialogContainer table{
	min-width:100%;
	border:0 solid;
	border-collapse:collaps;
	border-spacing:0px;	
	font-size:90%;
}
#dialogContainer table input[type=checkbox]{
	display:none;
}
#dialogContainer table td{
	line-height:20px;
	padding-top:8px;
	padding-bottom:8px;
}


#dialogContainer table thead{
	color:#000;
	background-color:#FFF;
	font-weight:bold;
	white-space: nowrap;
	/*
	position:absolute;
	left:0;
	right:0;
	z-index:99999;
	*/
}
#dialogContainer table thead tr td{
	border-bottom:1px #e1e1e1 solid;
	/*border-right:1px #ffffff solid;*/
	text-align:center;
	padding-left:10px;
	padding-right:10px;
	/*border-right:1px #e1e1e1 solid;*/
}
#dialogContainer table thead tr td span.checkbox{
	color:#0090d9;
	font-size:150% !important;
	height:14px;
	line-height:15px;
	background-color:#FFFFFF;
	cursor:pointer;
}

#dialogContainer table thead tr td.checkbox{
	padding:0 0 0 0 !important;
	width:40px !important;
	text-align:center;
}
#dialogContainer table thead tr td:last-child{
	border-right:0px solid;
}
#dialogContainer table thead tr td.over:hover{
    background-color:#f9f9f9;
	cursor:pointer;
}


#dialogContainer table tbody{
	text-align:left;
	white-space: nowrap;
	/*
	position:absolute;
	top:30px;
	*/
}
#dialogContainer table tbody tr{
	cursor:pointer;
}
#dialogContainer table tbody tr:nth-child(even) {
	background-color:#FFF;	
}
#dialogContainer table tbody tr:nth-child(odd) {
	background-color:#ecf0f2;	
}
#dialogContainer table tbody tr:hover {
	background-color:#fef8ae;
}
#dialogContainer table tbody tr td{
	padding-left:10px;
	padding-right:10px;
	text-align:center;
	/*border-right:1px #e1e1e1 solid;*/
	border-bottom:1px #e1e1e1 solid;
}
#dialogContainer table tbody tr td textarea{
	width:60%;
	min-width:60%;
	max-width:60%;
	height:50px;
	min-height:50px;
	max-height:50px;
}
#dialogContainer table tbody tr td:first-child{
	text-align:center !important;
	min-width:inherit;
	padding:0 0 0 0 !important;
	position:relative;
}
#dialogContainer table tbody tr td span.move{
	position:absolute;
	left:3px;
	top:10px;
	
	background-image:url(../img/move_dot.png);
	background-repeat:repeat-y;
	width:5px;
	height:16px;
	color:#000000;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	display:none;
	cursor:grab;
}
#dialogContainer table tbody tr td span.checkbox{
	color:#0090d9;
	font-size:150% !important;
	height:14px;
	line-height:15px;
	background-color:#FFFFFF;
}
#dialogContainer table tbody tr td span.new{
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	color:#FFFFFF;
	padding-top:3px;
	padding-bottom:3px;
	padding-left:10px;
	padding-right:10px;
	font-weight:bold;
	background-color:#ffd200;
	margin-left:15px;
}

#dialogContainer table tbody tr td:last-child{
	border-right:0px solid;
}
#dialogContainer table tbody tr td.selected {
	background-color:#fef8ae;
	font-weight:bold;
	border-bottom:1px #ffffff solid;
}
#dialogContainer table tbody tr td label{
	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	color:#FFFFFF;
	padding-top:3px;
	padding-bottom:3px;
	padding-left:10px;
	padding-right:10px;
	font-weight:bold;
}
#dialogContainer table tbody tr td label.enable{
	background-color:#0aa699;
}
#dialogContainer table tbody tr td label.disable{
	background-color:#f35958;
}
#dialogContainer table tbody tr td .yes{
	color:#21D16C;
	font-weight:bold;
}
#dialogContainer table tbody tr td .no{
	color:#FF0004;
	font-weight:bold;
}
#dialogContainer table tbody select{
	
	border:1px #dddddd solid;	
	height:20px;
	line-height:20px;
	font-size:12px;
	font-family:Arial;
}




#dialogToolWrapper{
	width:100%;
	float:left;
	height:32px;
	line-height:32px;
	
}
#dialogToolWrapper input[type=button]{
	margin-top:6px;
	background-color:#0072c6;
	color:#FFFFFF;
	font-size:100%;
	font-weight:bold;
	height:22px;
	line-height:22px;
	-webkit-transition: background-color 300ms linear;
	-moz-transition: background-color 300ms linear;
	-o-transition: background-color 300ms linear;
	-ms-transition: background-color 300ms linear;
	transition: background-color 300ms linear;
}

#dialogToolWrapper input[type=button]:hover{
	background-color:#2196f3;
}

#dialogToolWrapper .leftBut{
	width:calc(50% - 10px);
	float:left;
	padding-left:10px;
}
#dialogToolWrapper .leftBut ul{
	margin:0 0 0 0;
	padding:0 0 0 0;
	float:left;
}
#dialogToolWrapper .leftBut ul li{
	list-style:none;
	float:left;
	text-align:center;
	margin-right:10px;
	margin-top:6px;
	padding:0 0 0 0;
	height:22px;
	background-color:#000000;
}
#dialogToolWrapper .leftBut ul li:hover{
	background-color:#FF9933;	
}


#dialogToolWrapper .rightBut{
	width:calc(50% - 10px);
	float:right;
	padding-right:10px;
}
#dialogToolWrapper .rightBut ul{
	margin:0 0 0 0;
	padding:0 0 0 0;
	float:right;
}
#dialogToolWrapper .rightBut ul li{
	list-style:none;
	float:left;
	text-align:center;
	margin-left:10px;
	margin-top:6px;
	padding:0 0 0 0;
	height:22px;
	background-color:#000000;
}
#dialogToolWrapper .rightBut ul li:hover{
	background-color:#FF9933;	
}
/*****************************************
dialogContainer end
*****************************************/
/*=======================================================================================================================*/
/*=======================================================================================================================*/