@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --text: #1b3614;
  --text2: #e7e7e7;
  --text3: #a2a59c;
  --base1: #4d5449;
  --base2:#404040;
  --border1:#1e3614;
  --border2:#e3f5da;
  --white:#fcfcfa;
  --icon:#fafff8;
  --green:#6AB57E;
  --red:#E15B5F;
 
  --fontSizeR:14.4px;
  --fontSizeS:14px;
  --fontSizeT:13px;
 
  --menuW:120px;
  --headH:50px;
  --footH:0px;
  --baseIndex:5;
 
  --gradO:linear-gradient(to bottom, #484141d9 0%, #000000cc 100%);
  --gradW:linear-gradient(to bottom, var(--white) 0%,var(--icon) 100%);
  --gradB1:linear-gradient(to top, var(--base1) 0%,var(--base2) 100%);
  --gradB2:linear-gradient(to bottom, var(--base1) 0%,var(--base2) 100%);
}
green,[green]{
	color:var(--green);
}
red,[red]{
	color:var(--red);
}
grey,[grey]{
	color: #999;
}
semi,[semi]{
	font-weight: 500;
}
bold,[bold]{
	font-weight: 600;
}
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}
::-webkit-scrollbar {
	display: none;
}
.cusic_fill_0{
	fill:#00000099;
}
.cusiq_fill_red{
	fill:#ff0000cc;
}
.noscroll{
	overflow: hidden;
}
.scrollY{
	overflow: hidden;
	overflow-y: scroll;
}
.scrollY::-webkit-scrollbar {
	display: block;
	width: 0px;
	border:0px;
	overflow: visible;
	background-color: var(--white);
	box-shadow: none;
}
.scrollY::-webkit-scrollbar-track {
  background: var(--icon);
  width: 8px;
}
.scrollY::-webkit-scrollbar-thumb {
  background:var(--base2); 
  border-radius:3px;
}

.scrollX{
	overflow: hidden;
	overflow-x: scroll;
}
.scrollX::-webkit-scrollbar {
	display: block;
	width: 0px;
	border:0px;
	overflow: visible;
	background-color: var(--white);
	box-shadow: none;
}
.scrollX::-webkit-scrollbar-track {
  background: var(--icon);
  height: 8px;
}
.scrollX::-webkit-scrollbar-thumb {
  background:var(--base2); 
  border-radius:3px;
}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.f12{font-size: 12px;}
.f600{font-weight: 600;}
.f500{font-weight: 500;}
.clickable:active{
	opacity: 0.8;
}
html,body{
	padding:0px;
	margin: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	color: var(--text);
	font-family: "Montserrat", sans-serif;
	font-style: normal;
	font-size: var(--fontSizeR);
}
.root{
	min-height: 100%;
	width: 100%;
	overflow: auto;
	background-color: #EAEAEA;
	background-image: url('/temp/_t1.png');background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}
input[type=text],
input[type=password],
input[type=number],
input[type=url],
input[type=email],
input[type=tel],
input[type=date],
input[type=datetime],
input[type=datetime-local],
select
{
	background-color: #F6F6F7;
	border: 1px solid #DEDEDE;
	height: 30px;
	line-height: 28px;
	padding: 0px 7px;
	border-radius: 5px;
	width: 100%;
	display: inline-block;
}
input[type=color]
{
	border: white solid 0px;
    border-radius: 2px;
    box-shadow: 0px 0px 1px 1px #33333333;
}
input[type=file]{
	font-size: 0px;
	display: inline-block;
	height: 30px;
	background-color: transparent;
	border:0px;
	outline: none;
	height: 27px;
    width: 50px;
    vertical-align: middle;
	
}
input[type=file]:before{
	content : "Select";
	font-size: 13px;
    background: #ffffff;
    box-shadow: 0px 0px 1px 1px #333;
    display: inline-block;
    border-radius: 2px;
    position: absolute;
	height: 27px;
	line-height: 27px;
	padding: 0px 5px;
	opacity: 1;
	vertical-align: top;
}
input._err,select._err{
	border-color: #ff0000;
	outline-color: #ff0000;
}
input:focus,input:active,select:active,select:focus{
	outline: 1px solid #999;	
}

input:active+.tip,input:hover+.tip,select:active+.tip,select:hover+.tip{
	display: block !important;
}
button{
	border: 0px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	width: auto;
	border-radius: 5px;
	padding: 0px 15px;
	cursor: pointer;
	margin-right: 5px;
	background-color: #d3d8ee;
	font-size: 13px;
	font-weight: 500;
	vertical-align: middle;
	box-shadow: 0px 0px 2px 0px #66666666;
}
button:hover{
	box-shadow: 0px 0px 3px 1px #33333366;
}
button:active{
	box-shadow: 0px 0px 3px 1px #333333AA;
}
button[mini]
{
	display: inline-block;
	width: auto;
	border-radius: 4px;
	padding: 0px 10px;
	cursor: pointer;
	margin-right: 5px;
	background-color: #d3d8ee;
	font-size: 11px;
	font-weight: 500;
	vertical-align: middle;
	text-transform: uppercase;
	line-height: 22px;
	height: 22px;
	border-radius: 3px;
	padding: 0px 7px;
}
button[red]
{
	background: #fe4141;
	color: #FFFFFF;
}
button[gray]
{
	background-color: #7b7b7b;
	color: #FFFFFF;
}
button[green]
{
	background: linear-gradient(to bottom, #2E721F77 0%, #2E721F 100%);
	color: #FFFFFF;
}
button[blue]
{
	background: linear-gradient(to bottom, #21515f77 0%, #415374 100%);
	color: #FFFFFF;
}
button[white]
{
	background: #fff;
	color: #666;
}
h2{
	font-size: 16px;
}
.T0{
	font-size: 14px;
	font-weight:600;
	margin-bottom: 7px;
	margin-top: 10px;
}
.T1{
	font-size: 15px;
	font-weight:500;
	margin-bottom: 5px;
}
.T2{
	font-size: 14px;
	font-weight:500;
	margin-bottom: 5px;
}
.noscroll{
	overflow: hidden;
}
.scrollY{
	overflow: hidden;
	overflow-y: scroll;
}
.scrollY::-webkit-scrollbar {
	display: block;
	width: 0px;
	border:0px;
	overflow: visible;
	background-color: var(--white);
	box-shadow: none;
}
.scrollY::-webkit-scrollbar-track {
  background: var(--icon);
  width: 8px;
}
.scrollY::-webkit-scrollbar-thumb {
  background:var(--base2); 
  border-radius:3px;
}
.clickable:active{
	opacity: 0.8;
}
.weeber_bu{
	/*mask-image:url('/media/hc/weeber_bottom_up.png?1');
	mask-repeat:repeat-x;
	mask-position:center bottom;*/
}
.nowrap{
	white-space: nowrap;
}
.status{
	font-weight: 600;
}
.status-success{
	color: #478d36;
}
.status-failed{
	color: #e24618;
}
.status-pending{
	color: #999;
}
header{
	position:fixed;
	left:0px;
	right:0px;
	top:0px;
	height:var(--headH);
	background-color:var(--base1);
	z-index: 1;
}
header > section{
	display: inline-block;
	vertical-align: middle;
	height:var(--headH);
}
header > section.header-left,
header > section.header-right{
	
}
@media all and (min-width: 600px)
{
	header > section.header-left{
		width: 160px;
	}
	header > section.header-right{
		width:200px;
	}
}
header > section.header-right{
	float: right;	
}
@media all and (min-width: 600px)
{
	header > section.header-mid{
		width: calc(100% - 410px);
		text-align: center;
	}
}
header > section.header-mid .header-business{
	display: inline-block;
	padding: 5px;
	margin: 5px;
	width: auto;
	white-space: nowrap;
	background-color: rgba(0,0,0,0.1);
	border-radius: 3px;
}
header > section.header-mid .header-business .header-business-logo{
	display: inline-block;
	height: 30px;
	width: 30px;
	margin-right: 5px;
	vertical-align: middle;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
header > section.header-mid .header-business .header-business-info{
		display: inline-block;
	vertical-align: middle;
}
header > section.header-mid .header-business .header-business-info .business-info-title{
	color: #eaeaea;
	font-weight: 600;
	line-height: 18px;
	text-align: left;
}
header > section.header-mid .header-business .header-business-info .business-info-details{
	font-size: 12px;
	line-height: 12px;
	text-align: left;
}
header > section.header-mid .header-business .header-business-info .business-info-details > span{
	display: inline-block;
	margin-right: 3px;
}
header > section.header-mid .header-business .header-business-info .business-info-details .info-plan{
	font-weight: 600;
	color: #fff;
}
header > section.header-mid .header-business .header-business-info .business-info-details .info-vertical{
	color: #ccc;
}
header > section.header-mid .header-business .header-business-info .business-info-details .info-balance{
	color: #f79f9f;
	font-weight: 500;
}
header .page-title{
	height: var(--headH);
	line-height: var(--headH);
	vertical-align: middle;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding-left: 10px;
}
@media all and (max-width: 600px)
{
	header .page-title{
	
	}
}
header .page-icons{
	display: inline-block;
	height: var(--headH);
	padding: 5px 0px;
	display: none;
}
header .page-icons .ico{
	
}
header .pilot{
	box-shadow: 0px 0px 1px 1px var(--base2);
	border-radius: 3px;
	color: var(--text2);
	white-space: nowrap;
	margin: 6px;
	padding: 3px;
	background-color: var(--base2);
	float: right;
}
header .pilot .pilot-icon{
	width: 30px;
	height: 30px;
	background-color: var(--icon);
	mask-size: 18px;
	mask-image: url(/media/hc/profile.png);
	mask-position: center;
	mask-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}
header .pilot .pilot-belt{
	display: inline-block;
	vertical-align: middle;	
}
@media all and (max-width: 600px)
{
	header .pilot .pilot-belt{
		display: none;
	}
}
header .pilot .pilot-title{
	font-size: 11px;
	line-height: calc(var(--headH) / 2 -5);
	overflow: auto;
	text-align: center;
	padding: 0px 3px;
	text-align: center;
}
header .pilot .pilot-identifier{
	text-align: center;
	line-height: calc(var(--headH) / 2 +5);
	padding: 0px 3px;
	font-size: 13px;	
}
.ico{
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background-color: var(--icon);
	mask-size: 25px;
	margin: 7px;
	margin-right: 0px;
}
	.ico.i1{mask-image :url('/media/hc/i1.png')}
	.ico.i2{mask-image :url('/media/hc/i2.png')}
	.ico.i3{mask-image :url('/media/hc/i3.png')}
	.ico.i4{mask-image :url('/media/hc/i4.png')}
	.ico.i5{mask-image :url('/media/hc/i5.png')}
	.ico.i6{mask-image :url('/media/hc/i6.png')}
	
footer{
	min-height: 50px;
	background-color:var(--base2);
}
.hc-body{
	position: fixed;
	left: 0px;
	right: 0px;
	top: var(--headH);
	background-color: #eaeaea;
	bottom: var(--footH);
}
.hc-body .hc-container{
	position: fixed;
	top: var(--headH);
	right: 0px;
	left: 0px;
	bottom: var(--footH);
	overflow-y: scroll;
	transition:all ease-in 0.3s;
	padding: 15px;
}
.hc-body .hc-menu{
	position: fixed;
	top: var(--headH);
	left: 0px;
	width: 0px;
	bottom: var(--footH);
	overflow: hidden;
	transition:all ease-in 0.3s;
	background-color: var(--icon);
	box-shadow:0px 0px 2px 2px var(--base2);
	z-index: var(--baseIndex);
}
@media all and (min-width: 600px)
{
	.hc-body.wopen .hc-menu{
		width: var(--menuW);
	}
	.hc-body.wopen .hc-container{
		left: var(--menuW);
	}
	.hc-body.wopen .hc-menu .menu-in .menu-item{
		padding-left: 0px;
	}
	
	.hc-body .hc-menu{
		width: var(--menuW);
	}
	.hc-body .hc-container{
		left: var(--menuW);
	}
}
@media all and (max-width: 600px)
{
	/*.hc-body.mopen .hc-menu{
		right: 0px;
		width: 100%;
	}*/
}
.hc-menu .menu-in{
	min-width: var(--menuW);
}
.hc-menu .menu-in .menu-head{
	background-color: #4d5449b3;
    font-weight: 600;
    padding: 10px;
    color: #fff;
}
.hc-menu .menu-in .menu-head .mico{
	display:none;
}
.hc-menu .menu-in .menu-item{
	transition: all ease-in 0.3s;
	cursor: pointer;
	background-color: #dbe1d7;
}
.hc-menu .menu-in .menu-item:hover{
	background-color: #C9D1C2;
}
.hc-menu .menu-in .menu-item .mico{
	display: none;
}
.hc-menu .menu-in .menu-item.menu-item-active{
	background-color:#fff;	
}
.hc-menu .menu-in .menu-item .menu-item-title{
	display: inline-block;
	vertical-align: middle;
	font-weight: 500;
	padding: 10px
}
.mico{
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background-color: var(--text);
	mask-size: 25px;
	margin: 7px;
	margin-right: 10px;
	mask-position:center;
	mask-repeat:no-repeat;
}
	.mico.m1{mask-image :url('/media/hc/m1.png');}
	.mico.m2{mask-image :url('/media/hc/m2.png');}
	.mico.m3{mask-image :url('/media/hc/m3.png');}
	.mico.m4{mask-image :url('/media/hc/m4.png');}
	.mico.m5{mask-image :url('/media/hc/m5.png');}
	.mico.m6{mask-image :url('/media/hc/m6.png');}

.film_01{
	z-index: 1000;
	background-color: var(--border1);
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	opacity: 0.7;
	display: none;
}
.ripple{
	z-index: 2000;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	background-color: rgba(255,255,255,0.8);
	display:none;	
}
.loader{
	width:100%;
	height:100%;
	background-color: var(--base1);
	mask-image: url('/media/hc/ripple_b.gif');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size:100px;
}
.modal{
	background-color: #ecf7ea;
	box-shadow:0px 0px 2px 2px var(--base2);
	border-radius:10px;
	font-size: var(--fontSizeR);
	overflow: hidden;
	text-align: left;
	margin: 0px auto;
	display: flex;
	flex-direction: column;
}
	.modal.modal-alert{
		max-width: 300px;
	}
	.modal.modal-edit{
		width: calc(100% - 40px);
		max-width: 400px;
	}
	
.modal .modal-head{
	background-color: var(--base1);
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.modal .modal-head .modal-head-icon{
	display: inline-block;
	height: 30px;
	width: 30px;
	background-color: var(--icon);
	mask-size:75%;
	mask-position:center;
	mask-repeat:no-repeat;
}
	.modal.modal-edit .modal-head .modal-head-icon{
		mask-image:url('/media/hc/modal_icon_edit.png');
	}
	.modal.modal-alert .modal-head .modal-head-icon{
		mask-image:url('/media/hc/modal_icon_edit.png');
	}
	.modal.modal-info .modal-head .modal-head-icon{
		mask-image:url('/media/hc/modal_icon_edit.png');
	}
.modal .modal-head .modal-head-title{
	height: 30px;
	color:var(--icon);
	flex: 1;
	line-height: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 5px;
	font-size: var(--fontSizeS);
	font-weight: 500;
}
.modal .modal-head .modal-head-close{
	height: 30px;
	width: 30px;
	background-color: var(--icon);
	mask-image:url('/media/hc/modal_close.png');
	mask-size:50%;
	mask-position:center;
	mask-repeat:no-repeat;
	cursor: pointer;
}


.modal .modal-body-text{
	padding:10px;
	display:none;	
}
.modal .modal-body-form{
	padding:10px;
	max-height: calc(100vh - 180px);
	flex: 1;
	padding-bottom: 20px;
	display: none;
}

.modal .modal-body-buttons{
	text-align: right;
	padding: 10px;
	white-space: nowrap;
	display: none;
}
.modal .modal-foot{
	text-align: right;
	padding: 10px 5px;
	background:#ecf7ea;
	display: none;
}
.modal button{
	display: inline-block;
	padding: 5px 7px;
	border-radius: 3px;
	margin-right: 5px;
	border: 0px;
	outline: none;
	cursor: pointer;
	line-height: 0px;
}
.modal button:active{
	transform: translate(1px,1px);
}
.modal button.button-positive{
	background-color:var(--base1);
	color:var(--white);	
}
.modal button.button-cancel{
	background-color:var(--red);
	color:var(--white);	
}
.modal button.button-agree{
	background-color:var(--green);
	color:var(--white);	
}
.popup{
	text-align: center;
	font-size: 0px;
	z-index: 1001;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	top: 0px;
	display: none;
}
.popup .popup-col{
	width: 10px;
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.popup .popup-col.popup-col-main{
	height: auto;
	max-height: 100%;
	width: calc(100% - 20px);
}
.popup h2,.popup h3{
	margin: 0px;
}
.toast{
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
	text-align: center;
	height: auto;
	padding: 20px;
	display: none;
	z-index: 2001;
}
.toast .toast-text{
	display: inline-block;
	max-width: 300px;
	padding: 10px;
	border-radius: 4px;
	color: var(--icon);
	font-size:var(--fontSizeS);
	background: var(--gradO);
}

form{
	font-size: 0px;
}
.input{
	display: block;
	padding: 5px;
}
.input[input-type=hidden]{
	display:none;
}
.input.regular{
	
}
.input.medium{
	display: inline-block;
	vertical-align: top;
	width:50%;	
}
.input.small{
	display: inline-block;
	vertical-align: top;
	width:33.33%;
}
.input .input-title{
	display: block;
	font-size: var(--fontSizeT);
	font-weight: 600;
	color: var(--base2);
	margin-bottom: 5px;
	
}
.input input:is([type=text],[type=number],[type=date],[type=email],[type=datetime],[type=datetime-local],[type=email],[type=tel],[type=url]),
.input select,.input textarea
{
	background-color: var(--icon);
	border:0px;
	outline:0px;
	font-size: var(--fontSizeS);
	line-height: 30px;
	padding: 0px 5px;
	display: block;
	border-radius: 3px;
	width: 100%;
	max-width: 100%;
	box-shadow:0px 0px 2px 0px var(--base2) inset;
	min-height: 30px;
}
.input textarea{
	line-height: 20px;
	padding: 5px;
	min-width: 100%;
	min-height: 70px;
}
.input.input-req .input-element[required]{
	box-shadow: 0px 0px 2px 0px var(--red) inset !important;
}
.input.input-req .input-title:after{
	content : '*'
}
.input.input-req .input-element::placeholder{
	color: var(--text3);
}
.input .input-element-holder{
	
}
.input .input-element-holder label{
	display: inline-block;
	vertical-align: middle;
	font-size:var(--fontSizeR);
	width:calc(100% - 30px);
	line-height:25px;	
}
.input .input-element-holder input{
	display: inline-block;
	vertical-align: middle;
	width:29px;
	height: 17px;
	margin: 0px;
	padding: 0px;
}
.input .input-element-holder input{
	appearance: none;
	border-radius: 10px;
	background-color: var(--icon);
	transition:all ease-in 0.2s;
	cursor: pointer;
	opacity:0.4;
	box-shadow:0px 0px 2px 0px var(--base2) inset;
}
.input .input-element-holder input:checked{
	opacity:1;
}
.input .input-element-holder input:after{
	transition:all ease-in 0.2s;
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: var(--base1);
	margin-top: 1px;
	margin-left: 1px;
	transform: translateX(0px);	
}
.input .input-element-holder input:checked:after{
	background-color: var(--base2);
	transform: translateX(12px);	
}
.input .input-element-holder .input-media{
	background-color: var(--icon);
	border:0px;
	outline:0px;
	font-size: var(--fontSizeS);
	display: block;
	border-radius: 3px;
	width: 100%;
	max-width: 100%;
	box-shadow:0px 0px 2px 0px var(--base2) inset;
	cursor: pointer;
	padding-top: 100%;
	background-image: url('/media/hc/media_upload.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50px;
	position: relative;
}
.input.half .input-element-holder .input-media{
	padding-top: 50%;
}
.input .input-element-holder .input-media.input-media-active{
	background-size: contain;
}
.input.half .input-element-holder .input-media.input-media-loading
{
	background-image: url('/media/hc/ripple_b.gif') !important;
	background-position: center;
	background-size: 50px !important;
}
.input .input-element-holder .input-media.input-media-video{
	padding-top:0px; 
}
.input .input-element-holder input[type=file]
{
	height: 0px;
	padding: 0px;
	width: 0px;
	margin: 0px;
	outline: none;
	border:none;
	font-size: 0px;
	opacity: 0;
}
.input .input-element-holder .input-media span{
	position: absolute;
	top: 5px;
	left: 5px;
	width: 15px;
	height: 15px;
	background: radial-gradient(#ff9e9f, #ff1b0b);
	mask-image: url('/media/hc/modal_close.png');
	mask-size: 100%;
	mask-position: center;	
}
.input .input-element-holder .input-media figcaption{
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding: 5px;
	background: linear-gradient(to bottom, #00000000 0%, #00000099 30%, #000000CC 100%);
	color:#fff;
}
.input .input-error{
	padding: 3px 5px;
	font-size: 13px;
	color:var(--red);
}
.hc-business{
	position: fixed;
	background-color: var(--base2);
	z-index: 1;
	
	box-shadow:0px 0px 1px 1px var(--base2);
	height: 0px;
	display: none;
	transition: all ease-in 0.3s;
}
input[type=radio],
input[type=checkbox]
{
	vertical-align: middle;
}
input.pseudo{
	display: inline-block;
	vertical-align: middle;
	width:26px;
	height: 16px;
	margin: 0px;
	padding: 0px;
	appearance: none;
	border-radius: 10px;
	background-color: var(--icon);
	transition:all ease-in 0.2s;
	cursor: pointer;
	opacity:0.4;
	box-shadow:0px 0px 2px 0px var(--base2) inset;
}
input.pseudo:checked{
	opacity:1;
}
input.pseudo:after{
	transition:all ease-in 0.2s;
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: var(--base1);
	margin-top: 1px;
	margin-left: 0px;
	transform: translateX(0px);	
}
input.pseudo:checked:after{
	background-color: var(--base2);
	transform: translateX(12px);	
}
@media all and (min-width: 600px)
{
	.hc-business{
		top:calc(var(--headH) - 6px);
		right: 4px;
		max-height: 300px;
		width: 250px;
		
		border-top-left-radius:5px;
		border-bottom-left-radius:5px;
		border-bottom-right-radius:5px;
		height: 0px;
		display: none;
		transition: all ease-in 0.3s;
	}
}
@media all and (max-width: 600px)
{
	.hc-business{
		top:var(--headH);
		right: 0px;
		left:0px;
		bottom: 0px;
		display: none;
		height: auto !important;
	}
}
.hc-business .hc-business-search{
	
}
.hc-business .hc-business-search input{
	background-color: #00000066;
	border: 1px solid #000000CC;
	color: #ffffffcc;
	outline: none;
}
.hc-business .hc-business-list{
	max-height: 270px;
	overflow-y: scroll;
}
.hc-business .hc-business-list .hc-business-list-item.hbli{
	color: #fff;
	font-size: 13px;
	padding: 5px;
	cursor: pointer;
	white-space: nowrap;
}
.hc-business .hc-business-list .hc-business-list-item.hbli:hover{
	background-color: #00000033;
}
.hc-business .hc-business-list .hc-business-list-item.hbli .hbli-logo{
	display: inline-block;
	width: 25px;
	height: 25px;
	background-color: var(--icon);
	mask-size: 25px;
	mask-image: url('/media/hc/s1.png/');
	mask-position: center;
	mask-repeat: no-repeat;
}
.hc-business .hc-business-list .hc-business-list-item.hbli .hbli-title{
	display: inline-block;
	width: calc(100% - 25px);
	padding-left: 5px;
}
.hc-business .hc-business-list .hc-business-list-item.hbli .hbli-title .hbli-title-u{
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
}
.hc-business .hc-business-list .hc-business-list-item.hbli .hbli-title .hbli-title-s{
	display: block;
}
.hc-container{
	padding: 20px;
}
.hc-container .crate{
	background-color: #f4f4f4;
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	overflow-x: scroll;
}
.hc-container .crate .crate-block{

}
.hc-container .crate .crate-block .crate-block-button{
	padding:0px 5px;
	line-height: 35px;
	background-color: #fff;
	cursor: pointer;
	border-radius: 3px;
	margin-bottom: 5px;
	font-weight: 500;
}
.hc-container .crate .crate-block .crate-block-button:hover{
	background-color: #FEFAFA;
}
.hc-container .mbox{
	margin-bottom: 20px;
}
.hc-container .mbox .mbox-T{
	display: block;
	margin-bottom: 5px;
}
.hc-container .mbox .mbox-T i{
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	border-radius: 3px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.hc-container .mbox .mbox-T span{
	display: inline-block;
	vertical-align: middle;
	line-height: 35px;
	font-weight: 600;
}
.hc-container .mbox .mbox-I{
	display: inline-block;
	width: 90px;
	margin-right: 10px;
	margin-bottom: 10px;
	text-align: center;
	vertical-align: top;
	position: relative;
}
.hc-container .mbox .mbox-I i{
	height: 80px;
	width: 80px;
	margin: 5px;
	display: block;
	border-radius: 3px;
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
}
.hc-container .mbox .mbox-I span{
	display: block;
	font-size:13px;
	font-weight:500;
}
.hc-container .mbox .mbox-I b{
	position: absolute;
	right: 10px;
	top: 10px;
}
.rowtable{
	padding:5px;
	background-color:var(--text2);
	border-radius:5px;	
}
.rowtable .rowtable-tr{
	padding:5px;
	background-color:rgba(255,255,255,0.5);
	border-radius:3px;
	margin-bottom: 4px;
}
.rowtable .rowtable-tr .rowtable-tr-td{
	display: block;
	
}
.rowtable .rowtable-tr .rowtable-tr-td span{
	float:right;
	background-color:#00000099;
	color:#EEE;
	padding:5px;
	font-size:13px;
	border-radius:3px;
	font-weight: normal
}
.flaptable{
	padding:5px;
	background-color:var(--text2);
	border-radius:5px;	
}
.flaptable .flaptable-row{
	padding:5px;
	background-color:rgba(255,255,255,0.5);
	border-radius:3px;
	margin-bottom: 5px;
}
.flaptable .flaptable-row .flaptable-row-hd{
	font-weight:500;
	border-bottom: 1px solid #eee;
}
.flaptable .flaptable-row .flaptable-row-ft{
	font-size: 12px;
	color: #999;
}
.flaptable .flaptable-row .flaptable-row-td{
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 3px;
	font-size:13px;
}
.flaptable .flaptable-row .flaptable-row-td .flaptable-row-td-key{
	color: #999;
}
.flaptable .flaptable-row .flaptable-row-td .flaptable-row-td-val{
	font-weight: 500;
}
.coltable{
	margin-bottom: 10px;
	boder-radius:5px;
}
.coltable .coltable-head{}
.coltable .coltable-row{}
.coltable .coltable-td{
	border:1px solid #ccc;
	padding: 5px;
}
.coltable .coltable-tilde{
	position: relative;
	overflow: visible;
	min-width: 30px;
}
.coltable .coltable-tilde .coltable-tilde-key{
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('/media/images/greek-column.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80%;
	position: absolute;
	top: 5px;
	left: 3px;
	cursor: pointer;
}
.coltable .coltable-tilde .coltable-tilde-menu{
	position: absolute;
	top: -1px;
	left: -1px;
	padding: 10px;
	boder-radius:5px;
	border:1px solid #ccc;
	background-color: #fff;
	display: none;
}
.coltable .coltable-tilde .coltable-tilde-menu .coltable-tilde-menu-list{
	text-align: left;
}
.coltable .coltable-tilde .coltable-tilde-menu .coltable-tilde-menu-list .coltable-tilde-menu-list-item{
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}
.coltable .coltable-tilde .coltable-tilde-key:hover{
	background-color: #00000022;
}
.coltable-pages{
	margin-bottom: 10px;
}
.coltable-pages .coltable-page-index{
	display:inline-block;
	height: 18px;
	vertical-align: middle;
	line-height: 18px;
	font-size: 12px;
	font-weight: 500;
	padding-right: 5px;
}
.coltable-pages .coltable-page{
	display:inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	background-color: var(--base1);
	color:var(--white);
	text-align: center;
	line-height: 16px;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	border:1px solid #00000022;
}
.coltable-pages .coltable-page.coltable-page-cur{
	background-color: var(--base2);
}
.tip{
	position: absolute;
	background-color: #fff;
	padding: 5px;
	box-shadow:0px 0px 2px 2px #99999999;
	border-radius:3px;
	display:none;
	font-size: 13px;
	text-align: left;
}
.accordian{
	transition: all ease-in 0.3s;
	overflow: hidden;
}
.otp-input{
	height: 60px;
	font-size: 24px;
	letter-spacing: 24px;
	text-align: center;
}
.business{
	
}
.business h2{
	margin-bottom: 5px;
}
.business .smallline{
	color: #999;
}
.business .baseline{
	line-height: 20px;
}
.storecard{
	display: inline-block;
	width: auto;
	vertical-align: middle;
	background-color: #fff;
	padding: 5px;
	border-radius: 3px;
	margin: 3px;
	box-shadow:0px 0px 2px 1px #00000033;
}
.storecard .storecard-t{
	display: block;
	font-size: 14px;
}
.storecard .storecard-i{
	font-weight: 500;
	display: block;	
	font-size:14px;
	color: #666;
}
.storecard .storecard-v{
	display: block;
	font-size:11px;
	color: #999;
}
.crate-list{
	
}
.crate-list .crate-list-item{
	padding: 5px;
	background-color: rgba(255,255,225,0.8);
	margin: 5px;
}
.crate-list .crate-list-item .crate-list-item-float{
	float: right;
}
.crate-list .crate-list-item .crate-list-item-text-0{

}
.crate-list .crate-list-item .crate-list-item-text-1{
	font-weight:500;
	color: #666;
}
.crate-list .crate-list-item .crate-list-item-text-2{
	
}
.flex{
	white-space: nowrap;
}
.flex > span{
	display: inline-block;
	vertical-align: middle;
	padding: 2px 5px;
}
.flex .flex-0{
	width: 100px;
	font-weight: 600;
}
.flex .flex-1{
	width: 200px;
}
b.tico{
	display: inline-block;
	min-width: 15px;
	height: 15px;
	border-radius:1px;
	background-color: var(--base2);
	cursor: pointer;
	line-height: 15px;
	padding: 0px 3px;
	color: #fff;
	font-size:9px;
	font-weight:500;
	text-transform: uppercase;
	white-space: nowrap;
}
.comment{
	padding: 3px 5px;
	font-size:13px;
	background-color: rgba(255,255,255,0.5);
	border-radius: 3px;
	box-shadow: 0px 0px 1px 1px #00000033;
	margin-bottom: 3px;
	min-width: 100px;
}
.comment .comment-0{
	font-weight: 600;
	white-space: nowrap;
}
.comment .comment-1{
	
}
.comment .comment-2{
	color: #999;
	font-size: 10px;
}
.control-panel{
	display: inline-block;
	width: auto;
	padding:5px;
	text-align: center;
}
.control-panel .control-panel-button{
	display: inline-block;
	min-width: 50px;
	height: 50px;
	border-radius:3px;
	background-color: #fff;
	box-shadow:0px 0px 1px 1px #66666699;
	text-align: center;
	line-height:50px;
	font-size:15px;
	font-weight: 500;
	cursor: pointer;
	padding: 0px 7px;
}
.mini-control{
	padding: 5px;
	text-align: center;
	background-color: rgba(255,255,255,0.8);
	border-radius: 3px;
	box-shadow:0px 0px 1px 1px #66666699;
}
.mini-control .mini-control-input{
	margin:5px;
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
}
.mini-control .mini-control-input span{
	display: inline-block;
	vertical-align: middle;
}
.mini-control .mini-control-input input{
	display: inline-block;
	vertical-align: middle;
}
.coverinput{
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	line-height: 100% !important;
	border: 0px !important;
	outline: 0px !important;
	padding: 0px 5px !important;
	background-color: transparent !important; 
	border-radius:0px !important;
	color: inherit !important;
	user-select: none;
	font-weight:inherit !important;
	font-size:inherit !important;
}
input[type="file"].coverinput{
	opacity:0;
}
.form-inline{
	display: flex; 
	gap: 5px; 
	flex-wrap: wrap; 
	align-items: flex-end;
}
.form-inline label{
	font-size: 13.3333px;
	font-weight: 500;
}
.boxes{
	
}
.boxes .box{
	display: inline-block;
	background-color: #fff;
	padding: 10px;
	border-radius:5px;
	margin:5px;
	vertical-align: top;
	cursor: pointer;
}
.boxes .box.box-touch{
	background-color: #444;
	color: #fff;
}
.boxes .box .box-tag{
	    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #333;
    padding: 1px 3px;
    border-radius: 3px;

}
.none,[none],none{
	display: none;
}
.flag-gray{
	color:#ccc;
}
.flag-green{
	color:#00ff00;
}
.flag-red{
	color:#ff0000;
}
.flapbook{
	
}
.flapbook .flapbook-index{
	white-space: nowrap;
	font-size:0px;
	overflow: scroll;
}
.flapbook .flapbook-index .flapbook-tab,
.flapbook .flapbook-index .flapbook-tab-fake{
	display: inline-block;
	background-color: #a7c5be;
	font-size: 14px;
	font-weight: 600;
	color: #555;
	padding: 10px;
	cursor: pointer;
	border-radius: 5px;
	margin: 5px 3px;
}
.flapbook .flapbook-index .flapbook-tab-fake{
	background-color:#586c72;
	color:#fff;
}
.flapbook .flapbook-index .flapbook-tab.tab-open{
	background-color: #333;
	color: #fff;
	border-color:#fff;
}
.flapbook .flapbook-pages{
	//background-color: #fff;
}
.flapbook .flapbook-pages .flapbook-page{
	padding: 5px;
	display: none;
	border-radius:5px;
}
.flapbook .flapbook-pages .flapbook-page.page-open{
	display:block;
}
.list{
	
}
.list .list-item{
	display: block;
	display: flex;
	gap:5px;
}
.lynx{
	
}
.lynx .lynx-row{
	display: block;
	padding: 5px;
	background-color: #fff;
	margin: 2px;
	cursor: pointer;
}
.lynx.lynx-clickable .lynx-row:hover{
	box-shadow: 0px 0px 3px 1px #33333366;
}
.genstat{
	margin-bottom: 5px;
}
.flex-row{
	display: flex;
	gap:5px;
}
.index{
	display: flex;
}
.index .index-list{
}
.index .index-list .index-list-item{
	padding: 5px 10px;
	margin-bottom: 5px;
	background-color: #fff;
	border-radius:4px;
	cursor: pointer;
}
.index .index-list .index-list-item-selected{
	background-color: #452d5b;
	color: #fff;
}
.index .index-box-holder{
	min-height: 400px;
	flex: 1;
	padding-left:20px;
}
.index .index-box-holder .index-box{
	display:none;
}
.carder{
	display: flex;
	gap:10px;
	flex-wrap: wrap;
}
.carder .card{
	width: 300px;
	background-color: #fff;
	border-radius: 3px;
}
.carder .card video{
	width: 300px;
	height: 200px;
	background-color: #333;
}
.carder .card .card-title{
	padding: 5px;
	font-weight: 500;
}
.carder .card .card-details{
	padding: 0px 5px;
	font-weight: 500;
}
.blow {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.blow-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
}
.blow-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.blow-close::before, .blow-close::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #333;
}
.blow-close::before { transform: rotate(45deg); }
.blow-close::after  { transform: rotate(-45deg); }