
/************** eco-popup ************************/
.eco-popup {position:absolute;left:0px;top:0px;border-radius:10px;box-shadow:0px 0px 10px rgba(0,0,0,0.3);overscroll-behavior: contain;}
.eco-popup.full-size { bottom:0px;right:0px; }
.eco-popup > .eco-popup-header { position:absolute;left:0px;right:0px;top:0px;height:0px; }
.eco-popup > .eco-popup-header [button=close] { position:absolute;right:0px;top:0px; }
.eco-popup.has-header > .eco-popup-header { border-radius:0px 0px 0px 0px; height:35px;}
.eco-popup.has-header.has-border-radius > .eco-popup-header { border-radius:10px 10px 0px 0px; height:35px;}

.eco-popup > .eco-popup-body {background:#fff; border-radius:10px 10px 10px 10px;position:absolute;top:0px;bottom:0px;left:0px;right:0px;overflow-y:auto;}
.eco-popup.has-header > .eco-popup-body {top:34px; border-radius:0px 0px 0px 0px; }
.eco-popup.has-header.has-border-radius > .eco-popup-body {top:34px; border-radius:0px 0px 10px 10px; }

@keyframes eco-popup-showtime {
  0% {
	top: 100%;
	bottom:-100%;
  }
  100% {
	top:0px;
	bottom:0px;
  }
}


.eco-popup.showtime {
	animation:eco-popup-showtime 0s;
}

@media (max-width:701px) {
	.eco-popup.showtime {
		animation:eco-popup-showtime .1s;
	}
}


.eco-popup-screen {position: fixed;left:0px;right:0px;top:0px;bottom:0px;background:rgba(0,0,0,0.3);}
[device=mobile] .eco-popup-screen { position:absolute;left:0px;right:0px;top:0px;bottom:0px;background:rgba(0,0,0,0); }
[device=mobile] .eco-popup-screen.dark { background:rgba(0,0,0,.1) }
[device=mobile] .eco-popup-screen.light { background:rgba(255,255,255,.1) }

[device=mobile] .eco-popup {
	border-radius:0px;
}

[device=mobile] .eco-popup.has-header > .eco-popup-header {
	height:40px;
}

[device=mobile] .eco-popup.has-header > .eco-popup-body {
	top:40px;
}

.eco-popup {
	border:none;
}

.eco-popup > .eco-popup-body {
	1border:solid 1px #ccc;
}

.eco-popup.has-header > .eco-popup-header {
	background:#333;
	color:#fff;
}

.eco-popup.has-header.transparent-header > .eco-popup-header {
	background:#fff;
	color:#444;
	border:none;
}


.eco-popup.has-header > .eco-popup-header .title {
	color:#fff;
	font-weight:bold;
	vertical-align:baseline;
	line-height:34px;
	margin-left:15px;
	1font-size:15px;
}

[device=mobile] .eco-popup.has-header > .eco-popup-header .title {
	line-height:39px;
	font-size:14px;
	font-weight:normal;
}


.eco-popup > .eco-popup-header [button=close] label {
	display:none;
}

.eco-popup.has-header > .eco-popup-header [button=close] {
	font-weight:bold;
	background:url(../img/icon/close.white.png) no-repeat center center;
	1margin-right:10px;
	border:none;
	width:40px;
	height:40px;
	height:100%;
	1box-sizing:border-box;
}

.eco-popup.has-header.transparent-header > .eco-popup-header [button=close] {
	background:url(../img/icon/close.black.png) no-repeat center center;

}

/*
[device=mobile] .eco-popup.has-header > .eco-popup-header [button=close] {
	position:absolute;
	right:0px;
	top:0px;
	margin-right:0px;
	font-size:20px;
	display:inline-block;
	width:40px;
	padding:0px;
	margin:0px;
	height:40px;
	line-height:40px;
	text-align:center;
}
*/

.eco-popup-screen {
	background:url(../img/overlay.png);
}

.eco-popup-screen.light { background:rgba(255,255,255,.5); }


.eco-popup[type=bottom] {
	border-radius:0px 0px 0px 0px;
	
}

.eco-popup[type=bottom] > .eco-popup-body {
	border-radius:0px 0px 0px 0px;
	background:none;
	overflow:hidden;
}

.phyton-popup-menu-item-holder {
	padding:10px;
	box-shadow:0px 0px 8px rgba(0,0,0,0.3);
}

.phyton-popup-menu-item {
	display:block;
	width:100%;
	background:#fff;
	padding:14px;
	text-align:center;
	border-bottom:solid 1px #ccc;
	font-size:18px;
	line-height:20px;
	cursor:pointer;
	border-left:solid 1px #ccc;
	border-right:solid 1px #ccc;
}

.phyton-popup-menu-item.disable {
	color:#ccc;
}


.phyton-popup-menu-item.menu-anchor.last-child {
	border-radius:0px 0px 15px 15px;
	1background:red !important;
}


.phyton-popup-menu-item.menu-anchor:first-child {
	border-top:solid 1px #ccc;
	border-radius:15px 15px 0px 0px;
}


.phyton-popup-menu-item[data-id=cancel] {
	border:solid 1px #ccc;
	margin-top:15px;
	border-radius:15px;
}

img[src=""] {
	visibility:hidden;
}








/****************************************************
 eco-tab-control...
***************************************************/
.eco-tab-anchor-holder {
	padding-left:10px;
	text-align:left;
}

[dir=rtl] .eco-tab-anchor-holder {
	padding-left:0px;
	text-align:right;
}

/********** table *******************/
table.common-table {
	width:100%;
	border-collapse:collapse;
	table-layout:fixed;
}

table.common-table th,
table.common-table td {
	border:solid 1px #ccc;
	padding:5px;
}

table.common-table th {
	background:#f1f1f1;
}

table.common-table tbody {
	background:#fff;
}

table.common-table tr.selected {
	background:pink;
}

table.common-table tr:hover {
	1background:#fafafa;
}

table.common-table td.horz-align-center,
table.common-table th.horz-align-center
{
	text-align:center;
}

table.common-table td.horz-align-right,
table.common-table th.horz-align-right
{
	text-align:right;
}

table.common-table td.horz-align-left,
table.common-table td.horz-align-left
{
	text-align:left;
}


table.common-table.panel-main-table {
	border-top:solid 3px #71A6C5;
	border-bottom:solid 2px #71A6C5;
	table-layout:fixed;
}

table.common-table.panel-main-table tbody {
	border-top:solid 1px #BEBEBE;
}

table.common-table.panel-main-table th,
table.common-table.panel-main-table td {
	padding:5px 5px 5px 5px;
}

table.common-table.panel-sub-table th,
table.common-table.panel-sub-table td {
	padding:5px 5px 5px 5px;
}

table.common-table.panel-main-table th [button],
table.common-table.panel-main-table td [button] {
	margin:0px;
}

table.common-table.panel-main-table th [button].normal,
table.common-table.panel-main-table td [button].normal {
	margin:0px 2px 0px 2px;
}

table.common-table.panel-main-table th {
	background:#EFF3F9;
	color:#0D4B6F;
}

table.common-table.panel-sub-table {
	border-top:solid 2px #71A6C5;
}

table.common-table.panel-sub-table th {
	background:#EFF3F9;
	color:#0D4B6F;
}

table.common-table td.editable {
	background:#FFFFF9 url(../img/icon/edit.pen2.png) no-repeat 5px center;
	padding-left:26px;
}

table.common-table td.readonly {
	padding-left:26px;
}

table.common-table td.editable [contentEditable] {
	border:none;
}

[contentEditable=true].editable:hover {
	border:solid 1px #ccc;
	background:#fffff8;
	border-radius:8px;
}

table.common-table td.tile-row {
	vertical-align:top;
}

.common-table-type-anchor {
	display:inline;
	margin-left:10px;
	cursor:pointer;
}

.common-table-type-anchor.selected {
	color:dodgerblue;
}

/* tile type */
table.common-table.panel-main-table[type=tile] {
	border-top:none;solid 2px #ddd;
	border-bottom:none;solid 2px #ddd;
}

table.common-table.panel-main-table[type=tile] th,
table.common-table.panel-main-table[type=tile] td {
	border:solid 1px #eee;
	padding:0px;
}


table.common-table.panel-main-table[type=tile] tr:hover {
	1background:inherit;
}

table.common-table.panel-main-table[type=tile] td:hover {
	1background:#fcfcfc;
}


table.common-table tr.tile-has-no-data:hover {
	background:inherit
}

table.common-table tr.table-has-no-data:hover {
	background:inherit;
}


.list-has-no-data {
	text-indent:-1000px;
	overflow:hidden;
	background:url(../img/nodata.png) no-repeat center center;
	min-height:300px;
	1border-bottom:solid 1px #ddd;
}

.list-has-no-data-small {
	background:url(../img/nodata.small.png) no-repeat center center;
}

table.common-table.panel-main-table[type=tile] .tile-has-no-data {
	text-indent:-10000px;
	background:url(../img/nodata.png) no-repeat center center;
	1border-bottom:solid 1px #ddd;
}

table.common-table.panel-main-table[type=tile] .tile-has-no-data:hover {
	1background:url(../img/nodata.png) no-repeat center center;
}

table.common-table.panel-main-table[type=tile] .tile-has-no-data td {
	height:400px;
}

.eco-table-order-block {
	width:100%;
	padding-left:20px;
	padding-right:0px;
	text-align:right;
}

[dir=rtl] .eco-table-order-block {
	width:100%;
	padding-right:20px;
	padding-left:0px;
	text-align:left;
}

/****************************************************


***************************************************/
.eco-table.toolbar > .tool-bar {
	margin-top:0px;
	border-radius:0px 0px 8px 8px;
	padding:3px 5px 3px 35px;
	background:#f7f7f7 url(../img/arrow.tool.png) no-repeat 15px center;
}

.eco-table .tool-bar >  .selector-tool-bar {
	margin-top:0px;
	border-radius:0px 0px 8px 8px;
	padding:3px 5px 3px 35px;
	background:#f7f7f7 url(../img/bullet/arrow.tool.png) no-repeat 15px center;
}
}

.eco-table tbody td > div[contentEditable=true] {
	1border:solid 1px #ccc;
	1background:rgb(243,245,220);
}

.eco-table tbody td.changed > div[contentEditable=true] {
	1border:solid 1px red;
}

.eco-table tbody td > div[contentEditable=true]:hover {
	1background:#ffe800;
	background:rgb(243,245,220);
	border:solid 1px #ccc;
}

.common-order-field-anchor {
	cursor:pointer;
	color:#444;
}

.common-order-field-anchor .order-type {
	display:none;
}

.common-order-field-anchor[activeYn=Y] {
	color:dodgerblue;
}

.common-order-field-anchor[activeYn=Y] .order-type {
	display:inline;
}


/************** paging ************************/
.eco-paging {
	margin-top:6px;
	padding:4px;
}

.eco-paging[type=hidden] {
	margin-top:0px;
	padding:0px;
	display:none;
}

[dir=rtl] .eco-paging {
	padding-right:4px;
	text-align:right;
}

.eco-paging .btn-page, 
.eco-paging .btn-action { 
	cursor:pointer;
	display:inline-block;
	width:20px;
	height:20px;
	border:solid 1px #eaeaea;
	border-radius:3px;
	margin-right:5px;
	line-height:20px;
	text-align:center;
	color:#777;
}

.eco-paging .btn-page.selected {
	background: #3bb2f2;
	background: -webkit-linear-gradient(#47bcf9, #28a2ea);
	background: -moz-linear-gradient(#47bcf9, #28a2ea);
	background: -ms-linear-gradient(#47bcf9, #28a2ea);
	background: -o-linear-gradient(#47bcf9, #28a2ea);
	background: linear-gradient(#47bcf9, #28a2ea);
	border:solid 1px #3bb2f2;
	color:#fff;
}

.eco-paging .count-total {
	margin-right:10px;
}

.eco-paging-list-more {
	cursor:pointer;
}


/********** common-tab-anchor *******************/

.common-tab-anchor-list {
	border-bottom:solid 2px #ccc;
}

.common-tab-anchor {
	background:#f1f1f1;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	min-width:80px;
	display:inline-block;
	border:solid 1px #ccc;
	border-radius:8px 8px 0px 0px;
	border-bottom:none;
	cursor:pointer;
	margin-right:5px;
	border-top:solid 4px #f1f1f1;
}

.common-tab-anchor.selected {
	background-color:#fff;
	font-weight:bold;
	color:#0381D2;
	border-top:solid 4px #71A6C5;
}

.common-tab-anchor.selected .common-tab-anchor-icon {
	color:dodgerblue;
}

.common-sub-tab-anchor {
	cursor:pointer;
	color:#888;
}

.common-sub-tab-anchor.selected {
	color:dodgerblue;
	font-weight:bold;
}



.common-tab-anchor > * {
	vertical-align:baseline;
}

.common-tab-anchor > .icon {
	margin-right:6px;
}

.common-tab-anchor .common-tab-anchor-icon {
	margin-right:5px;
	color:#888;
}

[device=mobile] .eco-tab-anchor-holder {
	padding:0px;
	border-bottom:solid 1px #ccc;
}

[device=mobile] .common-tab-anchor {
	background:transparent;
	border:none;
	border-left:solid 1px #ddd;
	height:60px;
	margin:0px;
	border-radius:0px;
	padding:0px;
	min-width:40px;
	color:#888;
	background:#fff;
}

[device=mobile] .common-tab-anchor:last-child {
	border-right:solid 1px #ddd;
}

[device=mobile] .common-tab-anchor > label {
	1display:none;
}

[device=mobile] .common-tab-anchor > .icon {
	1line-height:40px;
	1margin:0px;
}

[device=mobile] .common-tab-anchor.selected {
	background:#eee;#71A6C5;
	color:dodgerblue;
}

[device=mobile] .common-tab-anchor .common-tab-anchor-icon {
	line-height:40px;
}

[device=mobile] .common-tab-anchor.selected .common-tab-anchor-icon {
	color:dodgerblue;
}

[device=mobile] .eco-tab-tool-block {
	background-color:#f1f1f1;
	border-bottom:solid 1px #eee;
	display:block;
	text-align:right;
}

[device=mobile] .eco-tab-tool-block:empty {
	border-bottom:none;
	display:none;
}

[device=mobile] .eco-tab-tool-block [button] {
	display:inline-block;
	width:35px;
	height:35px;
	padding:0px;
	margin:0px;
	line-height:40px;
	border:0px;
	border-radius:0px;
	color:#888;
	font-size:20px;
	text-align:center;
}

[device=mobile] .eco-tab-control-header {
	background:;
}
