@charset "utf-8";
/* Customize CSS Document */


/*============================
----- Global
============================*/

html,
body {
	height: 100%;
	/* The html and body elements cannot have any padding or margin. */
	font-family: Tahoma, Geneva, Arial, sans-serif;
	background: #fff;
	min-width: 1013px;
	overflow: auto;

}

textarea {
	width: 80%;
}

#wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	/* Negative indent footer by it's height */
	margin: 0 auto -100px;
}

/* Wrapper for page content to push down footer */

/* Set the fixed height of the footer here */
#push,
#footer {
	display: block;
	height: 100px;
}

#footer {
	background-color: #fff;
}

.container {
	margin-right: auto;
	margin-left: auto;
	width: auto;
	max-width: 1280px;
	_width: 1280px;
	/*_width:expression(this.clientWidth > 680 ? "680px" : "auto");*/
}

.container-wrapper {
	margin-left: 200px;
}

.center {
	text-align: center;
}

.clearboth {
	clear: both;
}


/*============================
----- Header
============================*/

.container-maxwidth {
	width: 100%;
	background: linear-gradient(to bottom, #ffffff, #ffffff);
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 30px;
}

.container-maxwidth .container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	margin-top: -10px;
	display: flex;
	flex-direction: column;
}

.page-header {
	display: flex;
	flex-direction: column;
	/* stack rows vertically */
	align-items: flex-start;
	justify-content: flex-start;
	padding: 20px 20px 20px 250px;
	/* adjusted padding */
	position: relative;
	gap: 10px;
	min-height: 100px;
	background-size: contain;
	width: 100%;
	box-sizing: border-box;
	background: url(img/common/logo-EN.jpg) no-repeat right top;
}

/* Top container for language selector and buttons row */
.header-top-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	width: 100%;
	margin-bottom: 5px;
}

.header-inline-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	flex-wrap: nowrap;
	width: 100%;
	margin-left: auto;
}

/*.header-inline-row .navigator2 {
	margin-left: 0;
}*/

/* Language selector - navigator2 */
.navigator2 {
	display: flex;
	align-items: center;
	margin-left: 60%;
	flex-shrink: 0;
	/* don't shrink */
}

.navigator2 .translate {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
	/* space between language flags */
	align-items: center;
}

.navigator2 .translate li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.navigator2 .translate li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
	position: relative;
}

.navigator2 .translate li a:hover {
	background-color: rgba(0, 0, 0, 0.05);
	transform: scale(1.1);
}

.navigator2 .translate li a .background {
	display: none;
	/* hide background span */
}

.navigator2 .translate li a img {
	width: 32px;
	/* adjust flag size as needed */
	height: 32px;
	/* make it square for circular shape */
	display: block;
	border-radius: 100%;
	/* circular shape */
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	object-fit: cover;
	/* ensure image covers the area */
}

/* Top row wrapper for buttons */
.header-top-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	/* move buttons to the right */
	gap: 15px;
	flex: 1;
	/* take remaining space */
}

/* 左侧区域 - 加入我们 */
.adding-us {
	display: flex;
	align-items: center;

}

.join-us-btn {
	background: linear-gradient(to right, #7367f0, #7367f0);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.join-us-btn:hover {
	background: linear-gradient(to right, #7367f0, #544abe);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}



.navigator {
	display: flex;
	justify-content: flex-end;
	/* move nav to the right */
	margin-left: auto;
	margin-right: 0;
	margin-top: 0;
	/* spacing handled by gap */
	width: 100%;
	/* take full width */
	_bottom: -1px;
	/*IE6*/
}

.nav {
	display: flex;
	list-style: none;
	background-color: rgba(255, 255, 255, 0.08);
	border-radius: 4px;
	padding: 2px;
}

.navigator a:hover {
	transition: 0.4s;
}

.nav li a {
	color: #666664;
	text-decoration: none;
	padding: 10px 10px;
	display: block;
	font-size: 9px;
	border-radius: 5px;
	transition: all 0.3s;
}

.nav li.active a,
.nav li a:hover {
	background-color: #7367f0;
	color: white;
}

/* 右侧区域 - 代理登录 */
.header-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.agent-login-btn {
	background: linear-gradient(to right, #7367f0, #7367f0);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s;
	white-space: nowrap;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.agent-login-btn:hover {
	background: linear-gradient(to right, #7367f0, #544abe);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* 最新动态容器 */
.news-container {
	display: flex;
	justify-content: center;
	/* center the news panel */
	margin-top: -30px;
	/* remove gap to stick with header */
/*	padding-bottom: 15px;*/
	width: 100%;
	max-width: 1280px;
	/* match carousel/page header width */
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* 最新动态面板 */
.news-panel {
	background-color: transparent;
	/* expose inner layer backgrounds */
	padding: 0;
	display: flex;
	align-items: stretch;
	width: 100%;
	/* take full width of container */
	min-height: 40px;
	max-width: 1280px;
	/* match carousel/page header width */
	flex: 1 1 auto;
	/* allow it to grow */
	box-sizing: border-box;
	/* include padding in width calculation */
	border-radius: 20px 20px 0 0;
	/* rounded top left and top right corners */
	overflow: hidden;
	/* ensure rounded corners show properly */
}


.news-content {
	background: #e2e2da;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	height: 24px;
	flex-grow: 1;
	min-width: 200px;
	width: 100%;
	padding: 20px 12px;
	border-radius: 20px 20px 0 0;
	/* match top rounded corners */
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	/* center the text horizontally */
	text-align: center;
}

.news-scroll {
	position: relative;
	/* change to relative for centering */
	white-space: nowrap;
	display: inline-block;
	animation: scrollText 5s linear infinite;
	padding-right: 50px;
	left: auto;
	/* remove absolute positioning */
	top: auto;
	line-height: 24px;
	height: 24px;
	color: #6f6c83;
	/* inherit purple for text on white background */
	text-align: center;
	/* center the text */
}

.news-scroll>div {
	display: inline-block;
	margin-right: 50px;
	vertical-align: top;
	color: inherit;
}

.news-scroll>div p {
	display: inline;
	margin-right: 10px;
	font-weight: bold;
	color: inherit;
}

.news-scroll>div:not(:last-child)::after {
	content: " | ";
	margin: 0 20px;
	color: inherit;
}

@keyframes scrollText {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}



/*============================
----- Slide Banner
============================*/

.slidebanner-container {
	margin-top: -10px;
	max-width: 1900px;
	width: 101.6%;
	margin-left: -1.52%;
	margin-right: auto;
	display: flex;
	background-size: cover;
}

.carousel {
	z-index: 101;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.carousel img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

.slidebanner-container .change-span3 {
	flex: 0 0 303px;
	/* 只保留flex属性 */
}

.slidebanner-container .span9 {
	flex: 1 1 auto;
	/* 简化flex属性 */
	min-width: 0;
}

.carousel-caption {
	display: none;
}

.slidebanner-container div[class^="change"] {
	margin-left: 10px;
}

.carousel-inner .second-banner {
	margin-top: -10px;
	margin-bottom: 1px;
}

/* Ensure carousel matches feature container dimensions */
#myCarousel {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

#myCarousel .carousel-inner {
	width: 100%;
}

#myCarousel .item {
	width: 100%;
}

#myCarousel .item img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

/*============================
----- Viewport
============================*/
.features-container {
	margin-top: -45px;
	max-width: 1400px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	justify-items: center;
}

.features-container .viewport {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 10px;
	padding: 10px 30px 0 30px;
	margin: 0 auto;
	list-style: none;
}

.feature-box {
	padding: 25px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 300px;
	/* 根据设计调整 */
	max-height: 400px;
	/* 限制最大高度 */
	overflow: hidden;
	width: 100%;
	max-width: 230px;
	overflow: hidden;
	position: relative;
}

.feature-caption {
	position: absolute;
	max-height: 40%;
	overflow: hidden;
	/* 要配合高度限制才有效 */
	width: calc(100% - 40px);
	/* 230px - 左右padding */
	bottom: 46px;
	top: 200px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 10px 12px 14px;
	text-align: center;
	color: #4a4a4a;
	background: linear-gradient(180deg, rgba(247, 247, 247, 0.75) 0%, rgba(247, 247, 247, 0.95) 100%);
	font-size: 13px;
	line-height: 1.4;
	box-sizing: border-box;
	backdrop-filter: blur(2px);
}

.feature-caption strong {
	display: block;
	font-size: 19px;
	color: #7367f0;
	margin-bottom: 8px;
}

.feature-caption p {
	color: #b3a08b;
	font-size: 13px;
}

/*.cap-3 {
	margin-bottom: 13px;
}

.cap-4{
	margin-bottom: 12px;
}

.cap-5{
	margin-bottom: -3px;
}

.cap-6{
	margin-bottom: -3px;
}*/

.feature-box img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

.feature-box .background {
	display: none;
}

.capital {
	text-align: center;
	margin: 40px 0 40px 0;
	color: #7367f0;
}

/*============================
-----Container
============================*/

.steps-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 20px;
	box-sizing: border-box;
}

.steps-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
	text-align: center;
	align-items: stretch;
	background: linear-gradient(145deg, #17c8ce, #267cf4);
	max-width: 1280px;
	margin-top: 20px;
	position: relative;
	z-index: 10;
	width: 1280px;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}

.step {
	flex: 1;
	min-width: 180px;
	max-width: 180px;
	background: transparent;
	padding: 30px 0;
	position: relative;
	overflow: hidden;
}

.step-number {
	color: #ffffff;
	font-size: 1.2rem;
	margin-bottom: 10px;

}

.step-title {
	font-size: 1.3rem;
	color: #ffe91f;
	margin-bottom: 15px;
	font-weight: 700;
	padding: -40px 10px -20px 10px;
	line-height: 1.65rem;
}

.step-title.title-special {
	margin-top: 20px;
}

.step-description {
	background-color: #ffffff;
	border-radius: 10px;
	color: #3b3b3d;
	max-width: 200px;
	font-size: 1.0rem;
	line-height: 1.5;
}

.step-description.special-s {
	margin-top: 35px;
}

.step-description.description-s {
	padding: 10px 10px;
}

.acc-img {
	width: 61px;
	height: auto;
}

.link-img {
	width: 60px;
	height: auto;
}

.arrow-img {
	width: 90px;
	height: auto;
	max-width: 70px;
	object-fit: contain;
	align-self: center;
	flex-shrink: 0;
	margin: 0 10px;
}

/*============================
----- Footer
============================*/

#footer [class^="change"] {
	width: 1003px
}

#footer {
	font-size: 14px;
	color: #949494;
}

#footer a {
	color: #222;
	text-decoration: none;
}

.span3 a.goback {
	text-decoration: none;
	padding: 0 9px 0 0;
}

/*#footer a:hover {
	color: #7d7d7d
}*/

#footer a.goback {
	margin: 28px 0 0 0;
	width: 217px;
	height: 43px;
	line-height: 43px;
	font-size: 14px;
	color: #6f6c83;
	display: block;
	text-indent: 78px;
	background: url(../img/common/btn-backhob.gif) top no-repeat
}

/*#footer a:hover.goback {
	color: #252525;
	text-decoration: none;
	background: url(../img/common/btn-backhob.gif) bottom no-repeat
}*/

ul.footer-navigator {
	float: right;
	margin: 28px 0 0 0;
	display: inline;
}

ul.footer-navigator li {
	float: left;
	padding: 0 20px 0 5px;
	list-style: none;
	background: url(../img/footer-italics.gif) right center no-repeat;
}

ul.footer-navigator li#clear {
	padding: 0 0 0 5px;
	background: none;
}

.copyright {
	float: right;
	_margin: -20px 0 0 0;
	/*IE6*/
	width: 100%;
	font-size: 13px;
	text-align: right;
	display: inline;
}



/*===========================
            Login
============================*/

.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.6);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.modal-overlay.modal-visible {
	display: flex;
}

.cover-box {
	background-color: white;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 390px;
	overflow: hidden;
	position: relative;
}

.mod-header {
	display: flex;
	justify-content: flex-end;
	padding: 10px 10px 0;
}

.close {
	background: none;
	border: none;
	font-size: 28px;
	color: #aaa;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s;
}

.close:hover {
	background-color: #f0f0f0;
	color: #777;
}

.login-form {
	padding: 10px 40px 35px;
}

.login-form h2 {
	text-align: center;
	margin-bottom: 8px;
	color: #7367f0;
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 1px;
}

.input-box {
	position: relative;
}

.input-box input {
	width: 90%;
	padding: 12px 18px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	transition: all 0.3s;
	background-color: #f9f9f9;
}

.input-box input:focus {
	outline: none;
	border-color: #7367f0;
	background-color: #fff;
	box-shadow: 0 0 0 2px rgba(74, 110, 224, 0.1);
}

.input-box input::placeholder {
	color: #999;
}

.login-btn {
	width: 50% !important;
	padding: 15px;
	background-color: #7367f0;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
	margin-top: 10px;
	letter-spacing: 1px;
	margin: 10px auto 0;
	display: block !important;
}

.login-btn:hover {
	background-color: #544abe;
}

.login-btn:active {
	transform: translateY(1px);
}

.forgot-pass {
	text-align: center;
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.forgot-password-link {
	color: #7367f0 !important;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.2s;
}

.forgot-password-link:hover {
	color: #544abe !important;
}

.password-toggle {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #777;
	cursor: pointer;
	font-size: 18px;
}

/* 响应式调整 */
@media (max-width: 480px) {
	.cover-box {
		max-width: 90%;
		margin: 0 20px;
	}

	.login-form {
		padding: 10px 25px 30px;
	}

	.login-form h2 {
		font-size: 22px;
	}
}


/*============================
-----forgot password* new
============================*/
.modal-overlay.forgot-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.modal-overlay.forgot-overlay.modal-visible {
    display: flex;
}

.content-header {
	padding: 9px 15px;
	height: 37px;
	color: #fff;
	background: #7367f0;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

.content-body {
	overflow-y: auto;
	max-height: 400px;
	padding: 15px;
}

.form-zone {
	display: inline-block;
}

.form-zone .control-group {
	margin-bottom: 10px;
}

.form-zone .control-group:before,
.form-zone .control-group:after {
	display: table;
	content: "";
	line-height: 0;
}

.form-zone .control-label {
	float: left;
	width: 180px;
	padding-top: 5px;
	text-align: right;
}

.form-zone .controls {
	display: inline-block;
	padding-left: 20px;
	margin-left: 130px;
	margin-left: 0;
}

.form-zone .form {
	padding-left: 500;
}


/*==========================
--------News popup
=========================*/

.news-overlay {
	font-family: 'Inter', 'Noto Sans SC', sans-serif;
	position: fixed;
	inset: 0;
	z-index: 1100;
	background-color: rgba(0, 0, 0, 0.6);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.news-overlay.modal-hidden {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.mod-container {
	background-color: white;
	width: 100%;
	max-width: 1000px;
	box-shadow:
		0 25px 50px -12px rgba(0, 0, 0, 0.25),
		0 0 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	max-height: 90vh;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.news-header {
	background-color: #7367f0;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 1px 10px;
}

.news-topic {
	color: #671de8;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 30px;
	margin-bottom: 4px;
}

.blog-1 p,
.blog-2 p {
	color: #4b5563;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.025em;
	text-align: justify;
}

.important {
	font-weight: 800;
	color: #000000;
}


.news-body {
	display: flex;
	flex-direction: column;
	margin-left: 35px;
	gap: 10px;
}

.news-body>div {
	border-bottom: 1px solid #f3f4f6;
	padding-bottom: 38px;
}

#news-body>div:last-child {
	border-bottom: none;
	padding-bottom: 24px;
}

.news-footer {
	padding: 15px 27px;
	background-color: #f8fafc;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-top: 1px solid #f1f5f9;
}

/* Dark Mode Support */
.dark .news-footer {
	background-color: rgba(30, 41, 59, 0.5);
	border-top: 1px solid #1e293b;
}

/* Button */
.close-footer-btn {
	background-color: var(--primary-color, #6366f1);
	color: white;
	font-weight: 600;
	padding: 10px 30px;
	border-radius: 7px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.2);
}


.close-footer-btn:hover {
	background-color: rgba(99, 102, 241, 0.9);
	box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}


.close-footer-btn:active {
	transform: scale(0.95);
}


/*============================
------ New Header
============================*/
.agent-info {
	display: flex;
	width: 150px;
	flex-direction: column;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 4px;
	padding: 10px 20px;
	background: rgba(233, 230, 230, 0.75);
	border-radius: 50px;
	flex-shrink: 0;
}

.agent-label {
	width: 120px;
	margin-left: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 500;
	margin-right: 0;
	margin-top: 5px;
	line-height: 100%;
}

.agent-info .agent-summary {
	margin-bottom: 0px;
}

.agent-info .agent-summary a {
	color: #7367f0;
	font-size: 14px;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.2s;
}

.agent-summary a:hover {
	color: #544abe;
}

.agent-logout-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(to right, #7367f0, #7367f0);
	color: white;
	border: none;
	padding: 15px 20px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 17px;
	transition: all 0.3s;
	white-space: nowrap;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.agent-logout-btn:hover {
	background: linear-gradient(to right, #7367f0, #544abe);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.agent-logout-btn .logout-p {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.header-livechat {
	position: absolute;
	top: 71px;
	left: 220px;
	z-index: 100;
	padding: 0px 10px;
	letter-spacing: 1px;
	font-size: 12px;
	background-color: #cb1f1b;
	color: #fff;
	border-radius: 14px;
	transition: 0.1s;
}

.header-livechat:hover {
	background-color: #ff0000;
	color: #fff;
	text-decoration: none;
}

/*============================
.special-left-span4 {
	margin-top: -20px;
	min-height: 720px;
}

.special-right-span8{
	margin-top: -20px;
	min-height: 720px;
}
==================*/

/*============================
----- Member Column
============================*/

[class^="special-left-"] {
	width: 238px;
	margin-bottom: 15px;
}

[class^="special-right-"] {
	margin-top: -30px;
	margin-left: 45px;
	width: 945px;
}

.column-menu {
	margin-top: -30px;
	width: 248px;
}

.column-menu li {
	padding: 0;
	list-style: none;
	color: #333;
	font-size: 14px;
}

.column-menu li.title {
	line-height: 45px;
	font-size: 14px;
	color: #fffefe;
	text-indent: 20px;
	letter-spacing: 1px;
	background-color: #7367f0;
}

.column-menu li a {
	line-height: normal;
	display: block;
	cursor: pointer;
	padding-left: 20px;
	background-color: #f2f2f3;
}

.column-menu li a:hover {
	text-decoration: none;
	transition: 0.1s;
	color: #7367f0;
	background-color: #e5e1e8;
}

.column-menu li.mark a {
	cursor: default;
	color: #7367f0;
	background-color: #ebe6ef;
}

.column-menu li a p {
	padding: 12px 0;
	display: flex;
	align-items: center;
	/*
				background-image:url(../img/common/mm-icon.png);
				_background-image:none;
				background-repeat:no-repeat;
				*/
}

/*
				.column-menu .m01 p {background-position:18px -3px;}
				.column-menu .m02 p {background-position:18px -47px;}
				.column-menu .m03 p {background-position:18px -92px;}
				.column-menu .m04 p {background-position:18px -135px;}
				.column-menu .m05 p {background-position:18px -182px;}
				.column-menu .m06 p {background-position:18px -226px;}
				.column-menu .m07 p {background-position:18px -272px;}
				.column-menu .m08 p {background-position:18px -315px;}
				.column-menu .m09 p {background-position:18px -360px;}
				*/

.column-menu li>ul li a {
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	background: none;
	text-indent: 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #f2f2f3;
}

.column-menu li.mark li a {
	cursor: pointer;
	color: #222;
	font-size: 14px;
	background: none;
}

.column-menu li.mark li a:hover {
	color: #7367f0;
}

.column-menu li>ul li a span {
	padding-right: 10px;
	color: #18b4ee;
	font-size: 18px;
	font-weight: bold;
}

.column-menu li>ul li a:hover {
	font-size: 15px;
	background: none;
}

.column-menu li ul li {
	padding: 0;
}

.column-menu li li a {
	height: 35px;
	line-height: 35px;
	font-size: 15px;
	background: none;
	text-indent: 27px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #d2d4a5;
	background: none;
}

.column-menu li ul li a:hover {
	font-size: 15px;
	background: none;
}

.column-menu li ul li a span {
	padding-right: 10px;
	color: #18b4ee;
	font-size: 18px;
	font-weight: bold;
}

.column-menu li li a.selected {
	color: #7367f0;
}




/*============================
----- Scroll onTop
============================*/

.goup-text {
	height: 20px;
	font-size: 14px;
	background: #ff0;
}






/*============================
----- Marquee Scroll
============================*/

#marquee {
	padding: 1px;
	width: auto;
	/*width:755px*/
	height: 31px;
	line-height: 31px;
	font-size: 14px;
	color: #7367f0;
	overflow: hidden;
	white-space: nowrap;
	background-color: #f2f2f3;
}

#marquee strong {
	margin-right: 10px;
	color: #f93500;
}

#scroll_begin,
#scroll_end,
#scroll_begin p,
#scroll_end p {
	display: inline;
}

#scroll_begin p,
#scroll_end p {
	padding: 0 0 0 750px;
}






/*============================
----- Main Content
============================*/


/* Title */
h1 {
	
	margin-bottom: 20px;
	width: 100%;
	font-size: 22px;
	text-indent: 32px;
	_text-indent: 0;
	/*IE6*/
	font-weight: normal;
	border-bottom: 2px solid #f2f2f3;
}

.title-icon {
	background-image: url(../img/mm-icon.png);
	_background-image: none;
	/*IE6*/
	background-repeat: no-repeat;
}

.title-icon.m01 {
	background-position: 0 -3px;
}

.title-icon.m02 {
	background-position: 0 -48px;
}

.title-icon.m03 {
	background-position: 0 -93px;
}

.title-icon.m04 {
	background-position: 0 -137px;
}

.title-icon.m05 {
	background-position: 0 -185px;
}

.title-icon.m06 {
	background-position: 0 -227px;
}

.title-icon.m07 {
	background-position: 0 -273px;
}

.title-icon.m08 {
	background-position: 0 -317px;
}

h1 small {
	font-size: 17px;
	font-weight: normal;
}

/* Global */
#maincontent {
	padding-bottom: 50px;
	font-size: 14px;
	line-height: 22px;
}

#maincontent ul {
	margin: 5px 0 0 30px;
}

#maincontent li {
	line-height: 24px;
}

#maincontent table {
	margin-top: 5px;
	margin-bottom: 5px;
}

#maincontent ul {
	margin: 0 0 0 30px;
}

#maincontent ol {
	margin: 0 0 0 30px;
}

#maincontent li {
	line-height: 22px;
}

p.table-title {
	
	font-size: 15px;
}

p.table-title span {
	padding: 6px 15px;
	font-size: 15px;
}


.row .change-span8 {
	margin-left: 33px;
	_padding-left: 30px;
	/*IE6*/
	width: 680px;
}

.row .change-span8 #maincontent {
	font-size: 16px;
	line-height: 26px;
}



/*============================
----- Register Form
============================*/

.register {
	position: relative;
	margin: 20px auto 0 auto;
	padding: 20px 50px 40px 50px;
	_padding: 70px 50px 40px 50px;
	/*IE6*/
	width: 86%;
	background: #f5f4f7;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	overflow-x: hidden;
}

.register h4 {
	position: absolute;
	left: 0;
	top: -10px;
	z-index: 90;
	width: 100%;
	_width: 950px;
	/*IE6*/
	font-size: 20px;
	text-align: left;
	text-indent: 50px;
	height: 44px;
	line-height: 44px;
	color: #fff;
	background: #7367f0;
}

.register-info {
	margin-top: 50px;
}

.register-info p {
	margin-bottom: 10px;
}

.register-info .control-label {
	width: 180px;
}

.register-from-info .controls {
	margin-left: 1px;
}

.register-from-info p {
	margin-bottom: 10px;
}

.register-from-info .checkbox {
	margin-right: 20px;
	width: 160px;
	cursor: pointer;
	_cursor: none;
	/*IE6*/
}

.register-from-info .register-agreement .checkbox {
	width: auto;
}

.register-tnc {
	padding: 25px 30px;
	background: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.register-tnc label {
	display: block;
}


.register-agreement #myModalLabel {
	text-indent: 23px;
}

.register-agreement h4 {
	color: #333;
	background: #F7F1AC;
}

.register-agreement .modal-body {
	color: #333;
	font-size: 15px;
}

.register-agreement .nopadding {
	padding: 0;
	overflow: hidden;
}

.register-agreement .modal-body iframe {
	width: 680px;
}

.register-agreement ul {
	margin: 0 0 0 30px;
}

.register-agreement ol {
	margin: 0 0 0 30px;
}

.register-agreement li {
	margin: 5px 0;
	line-height: 22px;
}

.tnc-agreement {
	font-size: 15px;
}

.tnc-agreement ul {
	margin: 0 0 0 30px;
}

.tnc-agreement ol {
	margin: 0 0 0 30px;
}

.tnc-agreement li {
	margin: 5px 0;
	line-height: 22px;
}



/*============================
----- Others
============================*/


.bs-docs-example {
	position: relative;
	margin: 25px 0 0 0;
	padding: 20px 19px 14px;
	background-color: #f2f2f3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.bs-docs-example form {
	margin: 0;
}


/* Remove spacing between an example and it's code */
.bs-docs-example+.prettyprint {
	margin-top: -20px;
	padding-top: 15px;
}

.move:hover {
	-webkit-animation: move 15s infinite;
	animation: move 15s infinite;
}

.namecard {
	padding: 30px 0;
	width: 80%;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	background: #eeebf1
}

tr.sub td {
	padding: 0 8px;
	line-height: 30px;
}



.affiliate p.title {
	margin-bottom: 35px;
	font-size: 18px;
	font-weight: bold;
	color: #7367f0;
}

.affiliate li {
	margin-bottom: 35px;
}

.affiliate li img {
	margin-top: 10px;
	max-width: 600px;
	border-radius: 20px 20px 20px 20px;
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border: 4px solid #f5f4f7;
	-webkit-box-shadow: 2.5px 2.5px 5px -2px rgba(84, 82, 60, 1);
	-moz-box-shadow: 2.5px 2.5px 5px -2px rgba(84, 82, 60, 1);
	box-shadow: 2.5px 2.5px 5px -2px rgba(84, 82, 60, 1)
}






.zoom-minify {
	zoom: 0.8;
	-ms-zoom: 0.8;
	-webkit-zoom: 0.8;
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	margin-bottom: 15px;
}




.button-panel {
	width: 80px;
	display: inline-block;
}



.table,
.table td,
.table label,
.table input,
.table select,
.table-modal,
.table-modal td,
.table-modal label,
.table-modal input,
.table-modal select {
	font-size: 12px !important;
}

.table-modal label {
	margin-bottom: 10px !important;
}

.table-modal .control-label {
	margin-right: 10px;
}

.table .btn,
table-modal .btn {
	padding: 2px 10px !important;
	font-size: 12px !important;
}

.form-horizontal .control-group {
	display: flex;
	align-items:flex-start;
	
}

/* Added new*/
.span2{
	width: auto !important;
}

.form-horizontal .control-group select {
	margin-bottom: 0;
}

.form-horizontal .control-label {
	padding-right: 10px !important;
}


.mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
}

.w-100 {
	width: 100% !important;
}

.d-flex {
	display: flex;
}

.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

.text-center {
	text-align: center;
}

.p-0 {
	padding: 0;
}

.p-1 {
	padding: 1px;
}

.p-2 {
	padding: 2px;
}

.p-3 {
	padding: 3px;
}

.p-4 {
	padding: 4px;
}

.p-5 {
	padding: 5px;
}

.p-10 {
	padding: 10px;
}

.p-20 {
	padding: 20px;
}

.pl-0 {
	padding-left: 0;
}

.pl-1 {
	padding-left: 1px;
}

.pl-2 {
	padding-left: 2px;
}

.pl-3 {
	padding-left: 3px;
}

.pl-4 {
	padding-left: 4px;
}

.pl-5 {
	padding-left: 5px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-20 {
	padding-left: 20px;
}

.pr-0 {
	padding-right: 0;
}

.pr-1 {
	padding-right: 1px;
}

.pr-2 {
	padding-right: 2px;
}

.pr-3 {
	padding-right: 3px;
}

.pr-4 {
	padding-right: 4px;
}

.pr-5 {
	padding-right: 5px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-20 {
	padding-right: 20px;
}

.pt-0 {
	padding-top: 0;
}

.pt-1 {
	padding-top: 1px;
}

.pt-2 {
	padding-top: 2px;
}

.pt-3 {
	padding-top: 3px;
}

.pt-4 {
	padding-top: 4px;
}

.pt-5 {
	padding-top: 5px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-20 {
	padding-top: 20px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-1 {
	padding-bottom: 1px;
}

.pb-2 {
	padding-bottom: 2px;
}

.pb-3 {
	padding-bottom: 3px;
}

.pb-4 {
	padding-bottom: 4px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-20 {
	padding-bottom: 20px;
}

.m-0 {
	margin: 0;
}

.m-1 {
	margin: 1px;
}

.m-2 {
	margin: 2px;
}

.m-3 {
	margin: 3px;
}

.m-4 {
	margin: 4px;
}

.m-5 {
	margin: 5px;
}

.m-10 {
	margin: 10px;
}

.m-20 {
	margin: 20px;
}

.ml-0 {
	margin-left: 0;
}

.ml-1 {
	margin-left: 1px;
}

.ml-2 {
	margin-left: 2px;
}

.ml-3 {
	margin-left: 3px;
}

.ml-4 {
	margin-left: 4px;
}

.ml-5 {
	margin-left: 5px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-20 {
	margin-left: 20px;
}

.mr-0 {
	margin-right: 0;
}

.mr-1 {
	margin-right: 1px;
}

.mr-2 {
	margin: 2px;
}

.mr-3 {
	margin: 3px;
}

.mr-4 {
	margin: 4px;
}

.mr-5 {
	margin: 5px;
}

.mr-10 {
	margin: 10px;
}

.mr-20 {
	margin: 20px;
}


.mt-0 {
	margin-top: 0;
}

.mt-2 {
	margin-top: 2px;
}

.mt-3 {
	margin-top: 3px;
}

.mt-4 {
	margin-top: 4px;
}

.mt-5 {
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-1 {
	margin-bottom: 1px;
}

.mb-2 {
	margin-bottom: 2px;
}

.mb-3 {
	margin-bottom: 3px;
}

.mb-4 {
	margin-bottom: 4px;
}

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.mwt {
	display: flex;
	justify-content: space-around;
	margin: 20px;
}

.mwt-column {
	display: flex;
	flex-direction: column;
	margin: 0 20px;
	width: 100%;
	border: 1px solid #dbdbdb;
	border-radius: 25px;
	padding: 10px 0;
}

.mwt-column .title {
	display: flex;
	justify-content: center;
}

.mwt-column .balance {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mwt-column .balance .text {
	margin: 5px 0 10px 0;
	padding-right: 10px;
}

.mwt-column .balance .number {
	display: flex;
	margin: 5px 0 10px 0;
	width: 50%;
}

.mwt-column .balance .number>p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	width: 100%;
	height: 26px;
	border-radius: 10px;
	background-color: #f2f2f3;
}

.mwt-column .btn-refresh {
	margin: 0 0 0 10px;
	width: 14px;
	height: 14px;
	text-indent: -999999px;
	background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.56 11.48"><defs><style> .cls-1 { stroke-width: 0px; } </style></defs><path class="cls-1" d="m10.41,5.71h1.15c0,.86-.17,1.67-.53,2.44-.5,1.08-1.26,1.93-2.28,2.54-2.01,1.2-5.06,1.13-7.07-.87-.35.36-.71.71-1.09,1.1v-2.88h2.85c-.32.32-.64.64-.97.97,1.27,1.12,2.7,1.57,4.35,1.21,1.05-.23,1.93-.76,2.6-1.6.67-.84.97-1.82.99-2.9Z"/><path class="cls-1" d="m1.15,5.78H0c0-.86.17-1.67.53-2.44.5-1.08,1.26-1.93,2.28-2.54C4.82-.41,7.87-.34,9.88,1.67c.35-.36.71-.71,1.09-1.1v2.88h-2.85c.32-.32.64-.64.97-.97-1.27-1.12-2.7-1.57-4.35-1.21-1.05.23-1.93.76-2.6,1.6-.67.84-.97,1.82-.99,2.9Z"/></svg>');
	background-repeat: no-repeat;
	background-size: cover;
}

.mwt-column .btn-refresh:hover,
.mwt-column .btn-refresh:focus {
	opacity: 0.8;
}

.mwt-column .button {
	display: flex;
	justify-content: center;
}

.mwt-column .button a {
	margin: 0 5px;
}

.aff-link h4 {
	margin-top: 30px;
	margin-bottom: 20px;
}

.aff-link .function {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	width: 100%;
}

.aff-link .function .input {
	width: 80%;
}

.aff-link .function .input input {
	margin: 0;
	width: 95%;
}

.aff-link .function .button {
	width: 250px;
}

.aff-link .function .button input {
	width: 100px;
}

.aff-link .dropdown-menu .link {
	display: flex;
	flex-direction: column;
	font-size: 12px;
}

.aff-link .dropdown-menu a {
	padding: 5px 10px;
}

.promo-banner {
	padding-top: 10px;
}

.promo-banner .pb-select {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 20px 0 50px 0;
}

.promo-banner .pb-select select {
	font-size: 12px;
}

.promo-banner .pb-preview textarea {
	width: 100%;
	width: fit-content;
	height: 100%;
	font-size: 12px;
}

.promo-banner .pb-grid {
	display: flex;
	margin-bottom: 50px;
	width: 100%;
}

.promo-banner .pb-left {
	width: 75%;
	padding-right: 20px;
}

.promo-banner .pb-left .title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.promo-banner .pb-left .title p:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 5px;
	max-width: 320px;
}

.promo-banner .pb-left .title p strong {
	display: flex;
}

.promo-banner .pb-right {
	width: 25%;
}

.mwt-iframe {
	width: 100%;
	border: 0;
	height: 100%;
	min-height: 600px;
	background: #fbfbfb;
}

.datepicker {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin-bottom: 20px;
}

.datepicker>div {
	display: flex;
	align-items: center;
	margin-bottom: 0 !important;
}

.tab-pane {
	padding: 30px 20px;
	min-height: 400px;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.form-check {
	margin-bottom: 20px;
}

.form-check-label {
	cursor: pointer;
	font-size: 13px;
}

.nav-tabs {
	margin-left: 0 !important;
	padding-left: 22px;
}

.nav>li>a {
	font-size: 14px;
}

.btn-small {
	font-size: 14px !important;
}

.column-button {
	margin-bottom: 20px;
}

.w100 {
	min-width: 100px;
}