/* ------------------------ grid ------------------------ */
.main {
	max-width: 1160px;
	min-width: 1000px;
	padding: 0 10px;
	margin: 0 auto;
}
.row {
	margin-left: -10px;
	margin-right: -10px;
}
.row.sm-space {
	margin-left: -5px;
	margin-right: -5px;
}
[class*="col-gr-"] {
	float: left;
	padding: 0 10px;
}
.sm-space > [class*="col-gr-"] {
	float: left;
	padding: 0 5px;
}
.col-gr-20per {
	width: 20%;
}
.col-gr-25per {
	width: 25%;
}
.col-gr-30per {
	width: 30%;
}
.col-gr-35per {
	width: 35%;
}
.col-gr-40per {
	width: 40%;
}
.col-gr-45per {
	width: 45%;
}
.col-gr-50per {
	width: 50%;
}
.col-gr-55per {
	width: 55%;
}
.col-gr-60per {
	width: 60%;
}
.col-gr-65per {
	width: 65%;
}
.col-gr-70per {
	width: 70%;
}
.col-gr-75per {
	width: 75%;
}
.col-gr-80per {
	width: 80%;
}
.col-gr-3ths {
	width: 33.3%;
}

/* ------------------------ input ------------------------ */
.form-control, .select-box {
	font-family: Arial, Helvetica, sans-serif;
	height: 40px;
	font-size: 13px;
	width: 100%;
	padding: 10px;
	line-height: 18px;
	border: 1px solid #ccc;
	background: #fff;
	color: #010101;
	margin: 0;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}

.form-control:hover,
.form-control:active {
	 border-color: #5897fb;
        -ms-transition: border-color 0.3s;
        -moz-transition: border-color 0.3s;
        -webkit-transition: border-color 0.3s;
}
.form-control.large, .select-box.large {
	height: 46px;
	padding-top: 13px;
	padding-bottom: 13px;
	font-size: 14px;
}
.form-control.small, .select-box.small {
	height: 30px;
	padding-top: 5px;
	padding-bottom: 5px;
}
textarea.form-control {
	height: 208px;
}
.select-box {
	display: inline-block;
	width: auto;
	min-width: 100px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 20px;
	position: relative;
}
.dropdown-select .select-box {
	width: 100%;
}
.custom-select {
	position: relative;
	background: #fff;
}
.custom-select > select {
	background: none;
	padding-left: 5px;
	padding-right: 21px;
	position: relative;
	z-index: 1;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.custom-select > select:-ms-expand {
    display: none;
}
.select-box .caret, .custom-select .caret {
	position: absolute;
	right: 6px;
	top: 50%;
	margin: -2px -2px 0 0;
}
.select-box [class*="icon-"], .custom-select [class*="icon-"] {
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	text-align: center;
	position: absolute;
	right: 2px;
	top: 50%;
	margin-top: -12px;
}
.custom-select .caret, .custom-select [class*="icon-"] {
	z-index: 0;
}
.form-date-picker {
	position: relative;
}
.form-date-picker i {
    height: 20px;
    right: 10px;
    line-height: 20px;
    position: absolute;
    top: 8px;
}
.form-date-picker .form-control {
    padding-right: 34px;
}
.form-icon {
	position: relative;
}
.form-icon.left .form-control {
	padding-left: 35px;
}
.form-icon.right .form-control {
	padding-right: 35px;
}
.form-icon > [class*="icon-"] {
	position: absolute;
	height: 24px;
	line-height: 24px;
	top: 50%;
	margin-top: -12px;
}
.form-icon.left > [class*="icon-"] {
	left: 6px;
}
.form-icon.right > [class*="icon-"] {
	right: 6px;
}
.form-icon-box {
	position: relative;
}
.form-icon-box .form-control {
	padding-left: 50px;
}
.form-icon-box .form-ico-tit [class*="icon-"] {
	position: absolute;
	height: 34px;
	line-height: 34px;
	left: 1px;
	top: 1px;
	width: 35px;
	text-align: center;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.form-icon-box .form-control.large {
	padding-left: 60px;
}
.form-icon-box .form-control.large + .form-ico-tit [class*="icon-"] {
	width: 45px;
	height: 44px;
	line-height: 44px;
}

.custom-checkbox, .custom-radio {
	display: inline-block;
	position: relative;
	line-height: 0;
	margin-top: 2px;
}
	.custom-checkbox > label, .custom-radio > label {
		display: inline-block;
		width: 16px;
		height: 16px;
		font-size: 11px;
		color: #2384c7;
		text-align: center;
		line-height: 14px;
		border: 1px solid #777;
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
        cursor: pointer;
	}
	.custom-checkbox > label [class*="icon-"] {
		display: none;
	}
	.custom-radio > label {
		position: relative;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border: 1px solid #dedede;
	}
	.custom-radio > label .dot {
		position: absolute;
		width: 6px;
		height: 6px;
		background: #2070d2;
		left: 4px;
		top: 4px;
		display: none;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
	}
	.custom-checkbox input, .custom-radio input {
		position: absolute;
		height: 16px;
		width: 16px;
		left: 0;
		top: 0;
		opacity: 0;
		z-index: 1;
	}
	.custom-checkbox input:checked + label [class*="icon-"], .custom-radio input:checked + label .dot {
		display: block;
	}

/* ------------------------ dropdown ------------------------ */
.dropdown-menu {
	background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #e7e7e7;
    margin: 2px 0 0;
    padding: 5px 0;
    min-width: 140px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    display: none;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}
.dropdown-menu.right {
	right: 0;
	left: auto;
}
.dropdown-select .dropdown-menu {
	width: 100%;
}
.dropdown-menu > li > a, .dropdown-menu > li > span {
	padding: 5px 10px;
	display: block;
	cursor: pointer;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > span:hover, .dropdown-menu > li > .active {
	color: #ff6008;
}
.open, .dropdown-hover {
	position: relative;
}
.dropdown-hover::before {
    background: transparent;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
}
.open > .dropdown-menu, .dropdown-hover:hover .dropdown-menu {
	display: block;
}
.pull-right > .open > .dropdown-menu, .pull-right.open > .dropdown-menu {
	right: 0;
	left: auto;
}
.open .bg-trans {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 99;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}

/* ------------------------ table ------------------------ */
.table {
	width: 100%;
	max-width: 100%;
}
.table td, .table th {
	border-bottom: 1px solid #e7e7e7;
	color: #515356;
	text-align: left;
	padding: 20px 10px;
	vertical-align: top;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.table.ver-mid td {
	vertical-align: middle;
}
.table.text-ct td {
	text-align: center;
}
.table thead tr th {
	white-space: nowrap;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	padding: 5px 10px;
	color: #333;
}
.table-blue-head.table thead tr th {
	background: #2070d2;
	color: #fff;
	font-weight: normal;
	border: 1px solid #2070d2;
}
.table td:first-child, .table th:first-child {
	padding-left: 0;
}
.table td:last-child, .table th:last-child {
	padding-right: 0;
}
.table .col30 {
	width: 30%;
}
.table .col40 {
	width: 40%;
}
.table .col50 {
	width: 50%;
}
.table .col60 {
	width: 60%;
}
.table td > p:last-child, .table th > p:last-child {
	margin-bottom: 0;
}
.table-bordered td, .table-bordered th {
	border: 1px solid #e7e7e7;
}
.table-striped > tbody > tr:nth-child(2n) {
  	background-color: rgba(0, 0, 0, 0.03);
}
.table-hover > tbody > tr:hover {
  	background-color: rgba(0, 0, 0, 0.08);
}

/* ------------------------ panel ------------------------ */
.panel {
	background: #fff;
	margin-bottom: 20px;
}
.panel-header {
	padding: 10px 20px;
}
.panel-body {
	padding: 20px;
}
.panel-header + .panel-body {
	padding-top: 0;
}
.panel-body .panel-header {
	padding-left: 0;
	padding-right: 0;
}
.panel-bordered {
	border: 1px solid #e7e7e7;
}
.panel-bordered > .panel-header {
	border-bottom: 1px solid #e7e7e7;
}
.panel.panel-bordered > .panel-body {
	padding-top: 20px;
}

/* ------------------------ group product ------------------------ */
.group-prd {
	margin: 0 -10px;
}
.group-prd > li {
	float: left;
	padding: 0 10px;
	margin-bottom: 20px;
}
.group-prd.group-1cl {
	margin-right: 0;
	margin-left: 0;
}
.group-1cl > li {
	width: 100%;
	padding: 0;
}
.group-2cl > li {
	width: 50%;
}
.group-3cl > li {
	width: 33.333%;
}
.group-4cl > li {
	width: 25%;
}
.group-5cl > li {
	width: 20%;
}
.group-prd .box-prd {
	display: inline-block;
	width: 100%;
	background: #fff;
	border: 1px solid #e7e7e7;
	padding: 10px;
}
.group-prd.group-col-prd .box-prd {
	background: none;
	border: none;
	border-bottom: 1px solid #e7e7e7;
	padding: 0 0 20px 0;
}
.group-prd.group-col-prd.clear-last li:last-child .box-prd {
	border-bottom: none;
	padding-bottom: 0;
}
.group-prd .image {
	overflow: hidden;
	text-align: center;
	position: relative;
    vertical-align:middle;
}
.group-prd .image:before {
	content: "";
	display: block;
	padding-top: 65%;
}
.group-prd .image > a {
	width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
}
.group-prd .content {
	padding-top: 10px;
}
.group-prd.group-flipVer .content {
	padding-top: 0;
	padding-bottom: 10px;
}
.group-prd .content .gray-clr .icon-location {
	margin-left: -5px;
}
.group-prd .content .title {
	font-size: 20px;
	font-weight: normal;
	line-height: 26px;
	max-height: 52px;
	overflow: hidden;
}
.group-prd .content .col-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	max-height: 40px;
	overflow: hidden;
}
.group-prd .info-prd li {
	display: inline-block;
	width: 100%;
	font-size: 14px;
	line-height: 22px;
}
.group-prd .info-prd .tit {
	float: left;
	width: 22%;
}
.group-prd .info-prd .cont {
	float: left;
	width: 78%;
}
.group-prd.group-horPrd .box-prd {
	border: none;
	border-bottom: 1px solid #e7e7e7;
	padding: 0 0 20px 0;
}
.group-prd.group-horPrd > li:first-child .box-prd {
	padding-top: 20px;
	border-top: 1px solid #e7e7e7;
}
.group-prd.group-horPrd .image {
	float: left;
	width: 32%;
	margin: 0;
}
.group-prd.group-horPrd .content {
	float: left;
	width: 68%;
	padding: 0 0 0 20px;
}
.group-prd.group-horPrd.group-col-prd .image {
	width: 40%;
}
.group-prd.group-horPrd.group-col-prd .image:before {
	padding-top: 75%;
}
.group-prd.group-horPrd.group-col-prd .content {
	width: 60%;
	padding: 0 0 0 10px;
}

/* ------------------------ modal ------------------------ */
.bg-popup {
	position: fixed;
	z-index: 1000;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.5);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#64000000', endColorstr='#64000000');
}
.modal-popup {
	position: absolute;
	z-index: 1001;
	top: 80px;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 1160px;
}
.inner-popup {
	background: #fff;
	margin: 0 10px;
}
.close-popup {
	font-size: 18px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	color: #fff;
	position: absolute;
	right: 5px;
	top: -40px;
}
/* ------------------------------ */
.popup-tooltip {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
}
.popup-tooltip .inner-popup {
	padding: 10px;
	background: #fff;
	position: relative;
	z-index: 1000;
}
.popup-tooltip:before {
	position: fixed;
	content: "";
	z-index: 999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

/* ------------------------ button ------------------------ */
.btn {
	display: inline-block;
	height: 40px;
	padding: 0 25px;
	line-height: 40px;
	text-decoration: none !important;
	cursor: pointer;
	font-family: arial;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	color: #fff;
	border: none;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
button.btn {
	line-height: normal !important;
}
.btn:hover, .btn:active, .btn:focus {
	color: #fff;
}
.btn-gradient {
	background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
	background-image: -o-linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
	background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}
.btn-bordered {
	position: relative;
}
.btn-bordered:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border: 1px solid #e7e7e7;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.btn-bordered.bd-white:after {
	border: 1px solid #fff;
}
.btn-bordered.bd-blue:after {
	border: 1px solid #2070d2;
}
.btn-sm {
	height: 34px;
	padding: 0 10px;
	line-height: 34px;
	font-weight: normal;
	text-transform: none;
}
.btn-xs {
	height: 30px;
	padding: 0 10px;
	line-height: 30px;
	font-weight: normal;
	text-transform: none;
}
.btn-tini {
	height: 24px;
	padding: 0 10px;
	line-height: 24px;
	font-size: 12px;
	font-weight: normal;
	text-transform: none;
}
.btn-large {
	height: 50px;
	font-size: 15px;
	padding: 0 30px;
	line-height: 50px;
}
.btn.btn-circle, .btn.btn-circle.btn-bordered:after {
	border-radius: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
}
.btn-sm.btn-circle, .btn-sm.btn-circle.btn-bordered:after {
	border-radius: 17px;
	-moz-border-radius: 17px;
	-webkit-border-radius: 17px;
}
.btn-tini.btn-circle, .btn-tini.btn-circle.btn-bordered:after {
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
}
.btn-large.btn-circle, .btn-large.btn-circle.btn-bordered:after {
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
}
.btn-xs.btn-circle, .btn-xs.btn-circle.btn-bordered:after {
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
.btn.disable {
	background-color: #e7e7e7 !important;
	color: #333;
}
.btn-control, .btn-control .dot {
	display: inline-block;
	background: #fff;
	border: 1px solid #e7e7e7;
}
.btn-control {
	height: 24px;
	width: 42px;
	padding: 2px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
}
.btn-control .dot {
	height: 18px;
	width: 18px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.btn-control.off .dot {
	float: left;
}
.btn-control.on {
	background: #8EB63E;
}
.btn-control.on .dot {
	float: right;
	border-color: #fff;
}

/* ------------------------ pagination ------------------------ */
.pn-paging
{
    display:block;
    text-align:right;
    margin-top:20px;
}
.paging li {
    display:inline-block;
	margin-right: 10px;
    font-size:14px;
    text-align:center;
}
.paging li:last-child {
	margin-right: 0;
}
.paging li a {
	display: inline-block;
	height: 32px;
	min-width: 34px;
	padding: 0 8px;
	text-align: center;
	line-height: 30px;
	border: 1px solid #ccc;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    font-size:14px;
}
.paging li a:hover, .paging li a.active {
	background: #f49f04;
	border-color: #f49f04;
	color: #fff;
    text-decoration:none;
}

/* ------------------------ group table style ------------------------ */
.group-tbstyle {
	display: table;
	width: 100%;
}
.group-tbstyle > li {
	display: table-row;
}
.group-tbstyle .gr-content, .group-tbstyle .gr-action {
	display: table-cell;
	vertical-align: middle;
}
.group-tbstyle .gr-action {
	/*width: 1%;*/
	white-space: nowrap;
}
.group-tbstyle .gr-content {
	width: auto;
}
/* ------------------------ slide ------------------------ */
.group-slide {
	overflow: hidden;
	position: relative;
}
/* ------------------------ label & tag ------------------------ */
.labels {
	display: inline-block;
	padding: 2px 6px;
	line-height: 1.42857143 !important;
	color: #fff;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.tag-keyword {
	position: relative;
	display: inline-block;
	height: 36px;
	padding: 8px 25px 8px 8px;
	line-height: 20px;
	background: #fafafa;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.tag-keyword .close {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 25px;
	text-align: center;
	padding: 8px 0;
}
/* ------------------------ avatar ------------------------ */
.avatar {
	height: 30px;
	line-height: 30px;
	width: 30px;
	font-size: 20px;
	text-align: center;
	display: inline-block;
	background: #f4f4f4;
	color: #ddd;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	overflow: hidden;
}
.avatar.size40 {
	height: 40px;
	line-height: 40px;
	width: 40px;
	font-size: 24px;
}
.avatar.size50 {
	height: 50px;
	line-height: 50px;
	width: 50px;
	font-size: 24px;
}
.avatar.size60 {
	height: 60px;
	line-height: 60px;
	width: 60px;
	font-size: 28px;
}
.avatar.size70 {
	height: 70px;
	line-height: 70px;
	width: 70px;
	font-size: 30px;
}
.avatar.size80 {
	height: 80px;
	line-height: 80px;
	width: 80px;
	font-size: 30px;
}
.avatar.size90 {
	height: 90px;
	line-height: 90px;
	width: 90px;
	font-size: 32px;
}
.avatar.size100 {
	height: 100px;
	line-height: 100px;
	width: 100px;
	font-size: 32px;
}
.avatar.size120 {
	height: 120px;
	line-height: 120px;
	width: 120px;
	font-size: 34px;
}
.avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}