@charset "utf-8";
	/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');
* {
	box-sizing:border-box;
	-webkit-appearance:none;
	-webkit-overflow-scrolling:touch;
	box-sizing:border-box;
}
body {
	background:#112d63;
	background:-moz-linear-gradient(-45deg,#000000 0%,#112d63 51%,#000000 100%);
	background:-webkit-linear-gradient(-45deg,#000000 0%,#112d63 51%,#000000 100%);
	background:linear-gradient(135deg,#000000 0%,#112d63 51%,#000000 100%);
	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000',endColorstr='#000000',GradientType=1 );
	font-family:'Noto Sans TC',sans-serif;
	padding-top:80px;
	height:100vh;
	overflow: hidden;
}
.alert{
	display: none;
	width: 500px;
	max-width: calc( 100% - 60px );
	padding: 10px;
	border-radius: 5px;
	color: white;
	margin: 15px auto 0 auto;
	text-align: center;
 }
.success {
	background-color: #00c510;
 }
.danger{
	background-color: #f44336;
} 
  .closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 16px;
	line-height: 16px;
	cursor: pointer;
	transition: 0.3s;
  }
.prev {
	width:60px;
	position:fixed;
	top:50%;
	left:10px;
	transform:translateY(-50%);
	z-index:99;
	opacity:0.8;
}
.prev img,.next img {
	width:100%;
	height:auto;
}
.next {
	width:60px;
	position:fixed;
	top:50%;
	right:10px;
	transform:translateY(-50%);
	z-index:99;
	opacity:0.8;
}
.prev:hover,.next:hover {
	opacity:1;
}
.prev.disabled,.next.disabled {
	opacity:0.3;
	cursor:default;
	pointer-events:none;
}
.logo {
	display:inline-block;
	position:absolute;
	top:15px;
	left:30px;
}
.logo img {
	height:50px;
}
.text-center {
	text-align:center !important;
}
span.red {
	display:inline-block;
	width:18px;
	height:18px;
	border-radius:50%;
	background-color:rgb(250,0,0);
	opacity:0.2;
}
span.yellow {
	display:inline-block;
	width:18px;
	height:18px;
	border-radius:50%;
	background-color:rgb(250,246,0);
	opacity:0.1;
}
span.green {
	display:inline-block;
	width:18px;
	height:18px;
	border-radius:50%;
	background-color:rgb(0,231,19);
	opacity:0.1;
}
span.red.active,span.yellow.active,span.green.active {
	opacity:1;
}
.rwd-tb {
	width:100%;
	height:100%;
	position:relative;
}
#customers {
	border-collapse:collapse;
	width:100%;
	font-size:13px;
	color:rgba(255,255,255,0.6);
	;
	text-align:left;
	position:absolute;
	font-weight:300;
}
#customers td {
	border-bottom:1px solid rgba(255,255,255,0.3);
	padding:8px;
}
#customers th {
	padding:8px;
	background-color:rgba(255,255,255,0.1);
	;
	color:#fff;
	font-weight:500;
	font-size:14px;
}
.ui-resizable-handle {
	position:absolute;
	z-index:90;
	width:18px;
	height:18px;
	right:5px;
	bottom:5px;
	background-image:url(../images/zoom.png);
	background-repeat:no-repeat;
	background-size:100% auto;
	cursor:pointer;
	opacity:0.1;
}
.ui-resizable-handle:hover {
	opacity:0.5;
}
header {
	height:80px;
	position:fixed;
	width:100%;
	background-color:rgba(255,255,255,0.1);
	box-shadow:1px 2px 5px rgb(20,2,49);
	top:0;
	z-index:999;
	text-align:right;
	padding:0 30px;
	z-index:9999;
}
.btn{
	border:solid 1px rgba(255,255,255,0.4);
	display: inline-block;
	color: rgba(255,255,255,0.4);
	width: 120px;
	line-height: 40px;
	margin-right: 20px;
	text-align: center;
	font-size:16px;
	text-decoration: none;
}
.btn span{
	line-height: 40px;
}
.btn:hover{
	background-color: rgba(255,255,255,0.4);
	color: #fff;
}
header .sub-name {
	display:inline-block;
	color:rgba(255,255,255,0.4);
	font-size:16px;
	line-height:80px;
	font-weight:300;
}
.container {
	max-width:1440px;
	height: calc( 100vh - 80px);
	margin:0 auto;
	padding:20px 30px;
	text-align:center;
	overflow: hidden;
}
.col {
	padding:20px;
	width:calc( 33.3% - 1.3% );
	min-height:340px;
	max-width: 100%;
	min-width: calc( 33.3% - 1.3%);
	max-height: calc( 100vh - 160px );
	border:solid 1px rgba(255,255,255,0.1);
	background-color:rgba(10,28,60,0.5);
	margin:0.4%;
	display:inline-block;
	position:relative;
	box-sizing:border-box;
	overflow:hidden;
}
.chart-tit {
	color:#eee;
	font-size:15px;
	font-weight:400;
	line-height:30px;
	padding-bottom:15px;
}
::-webkit-scrollbar {
	width:3px;
}
::-webkit-scrollbar-track {
	background:transparent;
	border-radius:3px;
}
::-webkit-scrollbar-thumb {
	background:rgba(255,255,255,0.5);
	border-radius:3px;
}
.w-100 {
	width:100% !important;
}
.chart{
	min-height: 240px;
}
@media (max-width:1440px) {
	.container {
	width:calc( 100% - 100px );
	margin:0 auto;
	padding:20px 30px;
	text-align:center;
}
.col {
	padding:20px;
	width:calc( 33.3% - 1.3% );
	min-height:280px;
	max-width: 100%;
	min-width: calc( 33.3% - 1.3%);
	max-height: calc( 100vh - 160px );
}
.chart{
	min-height: 200px;
}
}
@media (max-width:1024px) {
	.container {
	width:calc( 100% - 100px );
	margin:0 auto;
	padding:20px 30px;
	text-align:center;
}
.col {
	padding:20px;
	width:48%;
	min-height:240px;
	border:solid 1px rgba(255,255,255,0.1);
	background-color:rgba(10,28,60,1);
	margin:0.6%;
	display:inline-block;
	position:relative;
	box-sizing:border-box;
	overflow:hidden;
}
}
@media (max-width:520px) {

.logo {
	left:20px;
}
header {
	padding:0 20px;
}
header .sub-name {
	display: none;
}
.container {
	width:100%;
	margin:0 auto;
	padding:20px 30px;
	text-align:center;
}
.btn {
    border: none;
    display: inline-block;
    color: rgba(255,255,255,0.4);
    width: auto;
    line-height: 80px;
    margin-right: 0;
	margin-left: 20px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
}
.btn span{
	display: none;
}
.col {
	padding:20px;
	width:100%;
	min-height:300px;
	border:solid 1px rgba(255,255,255,0.1);
	background-color:rgba(10,28,60,1);
	margin:0 0 20px 0;
	display:inline-block;
	position:relative;
	box-sizing:border-box;
	overflow:hidden;
}
.prev {
	display: inline-block;
    width: 60px;
    position: static;
    transform: translateY(0);
	margin: 30px 0 0 20px;
}
.next {
	float: right;
	display: inline-block;
    width: 60px;
    position: static;
    transform: translateY(0);
	margin: 30px 20px 0 0;
}
.container {
	height: calc( 100vh - 140px);
}
}
