 /* =CSS Reset
--------------------------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;
}
/* Tell the browser to render HTML 5 elements as block */
header, footer, aside, nav, article, section, figure, hgroup { display: block; }

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
   img,object,embed {max-width: 100%;}

   /* force a vertical scrollbar to prevent a jumpy page */

/* we use a lot of ULs that aren't bulleted.
don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

/* Accessible focus treatment people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active, a:focus {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;}

/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable, label, input[type=button], input[type=submit], button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}

/* Micro Clearfix Hack */
.cf:before, .cf:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.cf:after { clear: both; }
.cf { zoom: 1; }

/* End CSS Reset
--------------------------------------------------------------------------------------------------*/

/* Start Basic CSS
--------------------------------------------------------------------------------------------------*/

body {
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: #000;
	min-height: 100%;
	font-family: 'Albert Sans', sans-serif;
 }

 html[lang="zh-hant"] body {
	 font-size: 13px;
	 line-height: 1.2;
 }

 label, input, textarea, select, input[type="submit"] {
	 font-family: 'Genos', sans-serif;
	 font-weight: 500;
 }

 html[lang="zh-hant"] label,
 html[lang="zh-hant"] input,
 html[lang="zh-hant"] textarea,
 html[lang="zh-hant"] select,
 html[lang="zh-hant"] input[type="submit"] {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

html {
	height: 100%;
}

html.canvas-opened {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    overflow-y: scroll;
}

.overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0,0,0,.3);
}

.wrapper {
	position: relative;
	max-width: 1920px;
	width: 100%;
	min-height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance:textfield;
}

.btn {
	display: inline-block;
	outline: none;
	text-decoration: none;
}

i.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn {
	display: inline-block;
	text-align: center;
}

.brown-btn {
	width: 100%;
	position: relative;
	height: 50px;
	line-height: 50px;
	color: #000;
	font-weight: 600;
	font-size: 20px;
	border: 0;
	outline: none;
	text-transform: uppercase;
	font-family: 'Genos', sans-serif;
	background: rgb(232,222,192);
	background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8dec0",endColorstr="#baae80",GradientType=1);
}

 html[lang="zh-hant"] .brown-btn {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.red-btn {
	max-width: 300px;
	width: 100%;
	position: relative;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-weight: 600;
	font-size: 20px;
	border: 0px;
	outline: none;
	text-transform: uppercase;
	font-family: 'Genos', sans-serif;
	background: #E50E50;
}

 html[lang="zh-hant"] .red-btn {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.brown-btn:hover {
	color: #BAAD80;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#666",endColorstr="#000000",GradientType=1);
}

/* End Basic CSS
--------------------------------------------------------------------------------------------------*/

/* Start Header CSS
--------------------------------------------------------------------------------------------------*/
.header-top {
	padding: 40px 0px 30px;
	text-align: center;
}

.logo-img a {
	display: inline-block;
}

.logo-img {
	font-size: 0px;
	line-height: 0px;
	display: inline-block;
	margin: 0 auto;
}

.logo-img img {
	display: block;
}

.header-bottom {
	padding: 15px 0px;
	background: rgb(232,222,192);
	background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8dec0",endColorstr="#baae80",GradientType=1);
}

.header-bottom-inner {
	display: flex;
	justify-content: space-between;
}

.menu-nav-inner li {
	float: left;
	margin-right: 40px;
}

.menu-nav-inner li:last-child {
	margin-right: 0px;
}

.menu-nav-inner li a {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 50px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: 'Genos', sans-serif;
	color: #000;
	text-decoration: none;
}

 html[lang="zh-hant"] .menu-nav-inner li a {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.menu-nav-inner li a:after {
	content: '';
	position: absolute;
	left: 0;
	width: 0;
	bottom: 5px;
	height: 2px;
	background: #000;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.menu-nav-inner li a:hover:after {
	width: 100%;
}

.search-wrapper {
	position: relative;
	z-index: 9990;
	max-width: 540px;
	width: 100%;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
	padding:  0px;
	border-radius: 5px;
	background: none;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	border-radius: 5px !important;
	background-color: #ffffff;
	outline: none;
	height: 50px;
	line-height: 50px;
	border: 0px;
    padding: 0px 50px 0px 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover {
	background-color: #fff;
}

.search-wrapper .dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	border-color: #fff;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	right: 0px !important;
	top: 0;
	width: 50px;
	height: 50px;
	left: auto;
	background: url('../img/bgi/search-gold.svg') no-repeat center center;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
    opacity: 1;
    background: url(../img/bgi/search-gold.svg) no-repeat center center;
    box-shadow: none;
    border-radius: 0%;
}

.dgwt-wcas-open-pirx .dgwt-wcas-details-wrapp, .dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
	margin-top: 1px;
	border-radius: 5px;
}

.dgwt-wcas-suggestion-selected {
    background: #fff;
	background: -moz-linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
	background: -webkit-linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
	background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f7f7f7",GradientType=1);
}

.dgwt-wcas-si {
	width: 200px !important;
}

.dgwt-wcas-si img {
	width: 100% !important;
	border: 0px !important;
	padding: 0px !important;
}

.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product {
	padding: 10px 20px !important;
	text-decoration: none;
}

.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .dgwt-wcas-st-title {
	font-family: 'Genos', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
    vertical-align: top;
}
 html[lang="zh-hant"] .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .dgwt-wcas-st-title {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

 html[lang="zh-hant"] .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .dgwt-wcas-st-title {
	 font-size: 20px;
	 line-height: 1.1;
 }

.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .dgwt-wcas-st {
	font-family: 'Genos', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 16px;
}
 html[lang="zh-hant"] .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .dgwt-wcas-st {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

 html[lang="zh-hant"] .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .dgwt-wcas-st {
	 font-size: 20px;
	 line-height: 1.1;
 }

.dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product .product-price {
	font-size: 14px;
	font-family: 'Albert Sans', sans-serif;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
	display: none;
}

.dgwt-wcas-suggestion {
	font-size: 20px !important;
	font-family: 'Genos', sans-serif;
    font-weight: 500;
    line-height: 16px !important;
    color: #baad80 !important;
    text-transform: uppercase !important;
    text-decoration: none;
}

 html[lang="zh-hant"] .dgwt-wcas-suggestion {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 18px;
	 line-height: 1;
 }

.search-wrapper ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  	color: #baad80;
  	font-family: 'Genos', sans-serif;
    font-weight: 500;
    font-size: 24px;
}
.search-wrapper ::-moz-placeholder { /* Firefox 19+ */
  	color: #baad80;
  	font-family: 'Genos', sans-serif;
    font-weight: 500;
    font-size: 24px;
}
.search-wrapper :-ms-input-placeholder { /* IE 10+ */
  	color: #baad80;
  	font-family: 'Genos', sans-serif;
    font-weight: 500;
    font-size: 24px;
}
.search-wrapper :-moz-placeholder { /* Firefox 18- */
  	color: #baad80;
  	font-family: 'Genos', sans-serif;
    font-weight: 500;
    font-size: 24px;
}
 html[lang="zh-hant"] .search-wrapper ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }
 html[lang="zh-hant"] .search-wrapper ::-moz-placeholder { /* Firefox 19+ */
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }
 html[lang="zh-hant"] .search-wrapper :-ms-input-placeholder { /* IE 10+ */
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }
 html[lang="zh-hant"] .search-wrapper :-moz-placeholder { /* Firefox 18- */
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.close-navbar {
	display: none;
	margin-bottom: 50px;
	width: 50px;
	height: 50px;
	background: url('../img/bgi/close-gold.svg') no-repeat center center;
	background-size: 60%;
}

.hamburger {
	display: none;
	float: left;
	position:relative;
	width: 40px;
	height: 30px;
	left:0%;
	cursor: pointer;
	margin: 9.5px 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.hamburger span{
	display:block;
	width:40px;
	height:5px;
	margin-bottom:8px;
	border-radius: 3px;
	overflow:hidden;
	position:relative;
}
.hamburger span:last-child{
	margin:0;
}
.hamburger span:before,.hamburger span:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background-color:#000;
	transform:translateX(-200%);
	transition:transform ease 300ms;
}
.hamburger span:after{
	transform:translateX(0);
}
.hamburger span:nth-child(2):before,.hamburger span:nth-child(2):after{
	transition-delay:75ms;
}
.hamburger span:last-child:before,.hamburger span:last-child:after{
	transition-delay:150ms;
}
/* End Header CSS
--------------------------------------------------------------------------------------------------*/

/* Start footer CSS
--------------------------------------------------------------------------------------------------*/
#footer {
	margin-top: 60px;
	background: #f7f7f7;
}

.footer-top {
	text-align: center;
	padding: 50px 0px;
	border-bottom: 1px solid #baad80;
}

.footer-middle {
	padding: 30px 0px;
}

.footer-col {
	float: left;
	margin-right: 80px;
}

.footer-col.footer-socials {
	float: right;
	margin-right: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100px;
}

.contact-footer ul li {
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	overflow-wrap: break-word;
}
 html[lang="zh-hant"] .contact-footer ul li {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 1rem;
 }

.contact-footer ul li:last-child {
	margin: 0;
}

.contact-footer ul li span {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	color: #baad80;
	font-size: 24px;
	line-height: 24px;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}
 html[lang="zh-hant"] .contact-footer ul li span {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 1rem;
 }

.contact-footer ul li span.contact-tel:after {
	content: '';
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	background: url('../img/bgi/phone-gold.svg') no-repeat center center;
}

.contact-footer ul li span.contact-email:after {
	content: '';
	position: absolute;
	left: 0;
	width: 24px;
	height: 24px;
	background: url('../img/bgi/email-gold.svg') no-repeat center center;
}

.footer-col h3 {
	display: block;
	color: #baad80;
	font-size: 24px;
	line-height: 24px;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}
 html[lang="zh-hant"] .footer-col h3 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 1.125rem;
 }

.footer-col p {
	display: block;
	font-size: 20px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
}
 html[lang="zh-hant"] .footer-col p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 1rem;
 }

.social-footer ul {
	text-align: center;
}
 @media only screen and (min-width: 992px) {
	 .social-footer ul {
		 text-align: right;
	 }
 }

.social-footer ul li {
	display: inline-block;
	margin: 0 10px;
}

.social-footer ul li a {
	display: block;
	font-size: 24px;
	color: #baad80;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.social-footer ul li a:hover {
	color: #000;
}

.footer-bottom {
	padding-bottom: 30px;
	text-align: center;
	font-size: 20px;
	line-height: 20px;
	color: #baad80;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
}
 html[lang="zh-hant"] .footer-bottom {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 1rem;
 }

/* End footer CSS
--------------------------------------------------------------------------------------------------*/

/* Start homepage CSS
--------------------------------------------------------------------------------------------------*/
.mobile-slider {
	display: none !important;
}

.slider-section .slick-dots {
	position: absolute;
	bottom: 30px;
	width: 100%;
	left: 0;
	text-align: center;
}

.slider-section .slick-dots li {
	display: inline-block;
	margin: 0px 10px;
}

.slider-section .slick-dots li button {
	padding: 0px;
	font-size: 0px;
	outline: none;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 2px solid #baad80;
	background: transparent;
}

.slider-section .slick-dots li.slick-active button {
	background: #baad80;
}

.section-title {
	position: relative;
	margin: 50px 0px;
}

.section-title h2 {
	display: inline-block;
	position: relative;
	font-size: 46px;
	font-family: 'Genos', sans-serif;
	line-height: 40px;
	color: #baad80;
	font-weight: 600;
	background: #fff;
	padding-right: 50px;
	z-index: 2;
}
 html[lang="zh-hant"] .section-title h2 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

 html[lang="zh-hant"] .section-title h2 {
	 font-size: 40px;
	 line-height: 1;
 }

.section-title:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	background: #baad80;
}

.featured-cars-wrapper {
	display: flex;
	justify-content: space-between;
}

.highlighted-featured,
.normal-featured {
	width: calc(50% - 10px);
}

.normal-featured .featured-car {
	width: calc(50% - 10px);
}

.normal-featured .featured-car:first-child,
.normal-featured .featured-car:nth-child(2) {
	margin-bottom: 20px;
}

.normal-featured {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.featured-car a {
	display: block;
}

.featured-car figure {
	position: relative;
	margin: 0px;
}

.sold-out-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 10px 20px;
	background: #fff;
	border-radius: 3px;
	text-transform: uppercase;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
    font-size: 20px !important;
    color: #baad80;
    font-family: 'Genos', sans-serif;
    font-weight: 600;
    line-height: 20px;
}
 html[lang="zh-hant"] .sold-out-badge {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.featured-car .car-info {
	background: #000;
	padding: 20px 20px 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.featured-car a:hover .car-info {
	background: rgb(232,222,192);
    background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
    background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8dec0",endColorstr="#baae80",GradientType=1);
}

.highlighted-car .car-info {
	padding: 50px 50px 0px;
}

.featured-car a {
	text-decoration: none;
}

.promo-badges {
	position: absolute;
	left: 0;
	top: 30px;
}

.promo-badge {
	padding: 5px 10px;
	line-height: 20px;
	background: #e50e50;
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
}
 html[lang="zh-hant"] .promo-badge {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.highlighted-car .promo-badge {
	font-size: 24px;
	line-height: 24px;
	padding: 8px 10px;
}

.product-price {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
}

.product-price .sale-price {
	color: #baad80;
	margin-right: 20px;
}

.sold-out-car .product-price .sale-price,
.sold-out-car .product-price .regular-price,
.car-list .sold-out-car .car-info h3,
.car-list .sold-out-car .car-data-info ul li,
.featured-car a.sold-out-car:hover .car-info .sale-price,
.sold-out-car:hover .product-price .regular-price,
.car-list .sold-out-car:hover .car-info h3,
.car-list .sold-out-car:hover .car-data-info ul li {
	color: #aaa;
}

.sold-out-car .car-data-info ul li,
.featured-car a.sold-out-car:hover .car-data-info ul li {
	border-color: #ddd;
}

.sold-out-car img {

}

.car-list a.sold-out-car:hover .car-info .car-data-info {
	border-color: #dddddd;
}

.car-list .sold-out-car .car-info {
	border: 1px solid #dddddd;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	border-top: 0px;
    padding-top: 34px
}

.car-list .sold-out-car .car-info .car-data-info {
	border-color: #ddd;
}

.car-list .sold-out-car .car-info,
.featured-car a.sold-out-car:hover .car-info  {
	background: none;
}

.product-price .regular-price {
	color: #aaa;
	font-weight: 700;
	text-decoration: line-through;
}


.highlighted-car .product-price {
	font-size: 24px;
	margin-bottom: 15px;
}

.car-info h3 {
	padding: 0px !important;
	margin-bottom: 15px !important;
	height: 42px;
	overflow: hidden;
	font-size: 24px !important;
	color: #fff;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
	line-height: 20px;
}
 html[lang="zh-hant"] .car-info h3 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 22px !important;
	 line-height: 1;
	 height: 50px;
 }

.highlighted-car .car-info h3 {
	margin-bottom: 30px !important;
	font-size: 46px !important;
	line-height: 30px;
	height: 64px;
}

 html[lang="zh-hant"] .highlighted-car .car-info h3 {
	 font-size: 40px;
	 line-height: 1;
	 height: 110px;
 }

.car-data-info {
	padding: 10px 0px;
	border-top: 1px solid #666666;
}

.highlighted-car .car-data-info {
	padding: 30px 0px;
}

.car-data-info ul li {
	float: left;
	padding-right: 15px;
	margin-right: 15px;
	color: #baad80;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	border-right: 1px solid #baad80;
}

.car-data-info ul li:last-child {
	padding-right: 0px;
	margin-right: 0px;
	border-right: 0;
}

.highlighted-car .car-data-info ul li {
	font-size: 24px;
	line-height: 30px;
}

.featured-car a:hover .car-info .sale-price {
	color: #aaa080;
}

.featured-car a:hover .car-info .regular-price {
	color: rgba(0,0,0, .3);
}

.featured-car a:hover .car-info h3 {
	color: #000;
}

.featured-car a:hover .car-data-info ul li {
	color: #000;
	border-color: #000;
}

.brand-carousel a {
	background-color: #f7f7f7;
	display: flex;
	padding: 10px 0;
	border-radius: 10px;
	width: 100%;
	height: 272px;
	-webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	margin: 10px 0;
}

 .brand-carousel a:hover {
	 background-color: #fff;
	 -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
	 box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
 }
 .brand-carousel div {
	 text-align: center;
 }

 .brand-carousel .slick-slide {
	padding: 0 10px;
}

.brand-carousel {
	margin:  0 -10px;
}

.brand-logo {
	display: block;
	/*background-position: center center !important;*/
	/*background-size: 50% !important;*/
	/*background-repeat: no-repeat !important;*/
	max-height: 150px;
	width: auto;
	height: auto;
	margin: auto;
	max-width: 80%;
}

.brand-title {
	display: block;
	margin: 15px 0px;
	text-align: center;
	font-size: 24px;
	color: #000;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
}
 html[lang="zh-hant"] .brand-title {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.brand-carousel .slick-slide a {
	text-decoration: none;
}

.brand-carousel .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 124px;
	width: 40px;
	height: 40px;
	font-size: 0px;
	padding: 0px;
	border: 0px;
	opacity: .3;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.brand-carousel .slick-arrow:hover {
	opacity: 1;
}

.brand-carousel .slick-prev {
	left: -40px;
	background: url('../img/bgi/arrow-double-left-black.svg') no-repeat center center;
}

.brand-carousel .slick-next {
	right: -40px;
	background: url('../img/bgi/arrow-double-right-black.svg') no-repeat center center;
}

.car-list .car-info {
	background: #fafbfa;
	border: 1px solid #fafbfa;
	border-top: 0px;
}

.car-list .car-info h3 {
	color: #000;
}

.car-list .product-price .regular-price {
	color: rgba(0,0,0, .3);
}

.car-list .car-data-info ul li {
	color: #aaa;
}

.car-list .car-data-info {
	border-color: #aaa;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.car-list a:hover .car-info .car-data-info {
	border-color: #666;
}

.car-list .car-data-info {
	padding: 25px 0px;
}

.car-list .car-info {
	padding: 35px 35px 0px;
}

.car-list {
	margin: 0px -10px;
}

.car-list .slick-slide {
	padding: 0px 10px;
}

.car-list .product-price {
	margin-bottom: 10px;
}

.car-list .slick-dots {
    width: 100%;
    text-align: center;
    margin: 30px 0px;
}

.car-list .slick-dots li {
    display: inline-block;
    margin: 0px 10px;
}

.car-list .slick-dots li button {
    padding: 0px;
    font-size: 0px;
    outline: none;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 2px solid #baad80;
    background: transparent;
}

.car-list .slick-dots li.slick-active button {
    background: #baad80;
}

.seo-content {
	font-size: 24px;
	line-height: 24px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	text-align: justify;
}
 html[lang="zh-hant"] .seo-content {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.seo-content p {
	margin-bottom: 30px;
}
/* End homepage CSS
--------------------------------------------------------------------------------------------------*/

/* Start category CSS
--------------------------------------------------------------------------------------------------*/
.woocommerce .products ul, .woocommerce ul.products {
	margin: 0 !important;
	display: flex;
	flex-wrap: wrap;
}

.woocommerce .car-list ul.products li.product,
.woocommerce-page .car-list ul.products li.product {
	width: calc(100% / 3 - 40px / 3);
	margin: 0px 20px 20px 0px;
}

.woocommerce .car-list ul.products li.product img,
.woocommerce-page .car-list ul.products li.product img {
	margin: 0px;
}

.woocommerce .car-list ul.products li.product:nth-child(3n),
.woocommerce-page .car-list ul.products li.product:nth-child(3n) {
	margin-right: 0px;
}

.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
	clear: none !important;
}

.aside-filter {
    margin-bottom: 30px;
    border: 1px solid #baad80;
    border-radius: 20px;
    padding: 30px;
}

.aside-filter h3 {
	position: relative;
	margin-bottom: 30px;
	padding-left: 30px;
	font-size: 24px;
	line-height: 24px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
}
 html[lang="zh-hant"] .aside-filter h3 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.aside-filter h3:after {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	background: url('../img/bgi/filter-gold.svg') no-repeat center center;
}

/* .aside-filter .wpc-filter-content {
	position: absolute;
	top: 49px;
	border: 1px solid #dddddd;
	z-index: 9999;
	background: #fff;
	width: 100%;
	padding: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
} */

.aside-filter .wpc-filter-header .wpc-filter-title {
	display: block;
	position: relative;
	color: #baad80;
	font-size: 20px;
	line-height: 20px;
	cursor: pointer;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
 html[lang="zh-hant"] .aside-filter .wpc-filter-header .wpc-filter-title {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.aside-filter .select2-container--default .select2-selection--single {
	border-color: #ddd !important;
}

.aside-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 48px;
	line-height: 48px !important;
	padding:  0px 15px !important;
    align-items: center;
    font-size: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	color: #aaa;
}
 html[lang="zh-hant"] .aside-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.aside-filter .select2.select2-container.select2-container--default {
	width: 100% !important;
}

.aside-filter .wpc-filter-header .wpc-filter-title {
	margin-bottom: 0px;
}

.aside-filter .wpc-filter-content label a {
	font-size: 20px;
	line-height: 24px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	color: #000;
}
 html[lang="zh-hant"] .aside-filter .wpc-filter-content label a {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.aside-filter .wpc-filter-everything-dropdown .select2-results__option {
	font-size: 20px;
	line-height: 24px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	color: #000;
}
 html[lang="zh-hant"] .aside-filter .wpc-filter-everything-dropdown .select2-results__option {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.aside-filter .select2-container--default .wpc-filter-everything-dropdown .select2-search--dropdown .select2-search__field {
	outline: none;
}

.aside-filter .select2-container--default .wpc-filter-everything-dropdown .select2-results__option[aria-selected=true] {
	background: #baad80;
	color: #000;
}

.aside-filter .select2-container--default .wpc-filter-everything-dropdown .select2-results__option--highlighted[aria-selected] {
	background-color: #f7f7f7;
	color: #000;
}

body .aside-filter .wpc-filter-chips-list li.wpc-chip-reset-all a {
	border: 0;
	padding: 10px 15px;
    line-height: 20px;
    background: #e50e50;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Genos', sans-serif;
    font-weight: 600;
}
 html[lang="zh-hant"] body .aside-filter .wpc-filter-chips-list li.wpc-chip-reset-all a {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

body .aside-filter .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a {
	border: 0;
	padding: 10px 15px;
    line-height: 20px;
    background: #f7f7f7;
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    font-family: 'Genos', sans-serif;
    font-weight: 600;
}
 html[lang="zh-hant"] body .aside-filter .wpc-filter-chips-list li.wpc-filter-chip:not(.wpc-chip-reset-all) a {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.aside-filter .wpc-filters-range-inputs {
    margin: 10px 10px 0px 10px;
}

.aside-filter .wpc-filter-header .wpc-filter-title button:after {
	content: '';
	position: absolute;
	right: 0px;
	top: 0;
	width: 30px;
	height: 50px;
	background: url('../img/bgi/arrow-down-gold.svg') no-repeat center center;
}

.aside-filter .wpc-filters-range-wrapper input[type=number] {
	border: 1px solid #ddd;
    height: 30px;
    outline: none;
    padding: 0px 10px;
    font-size: 18px;
}

.aside-filter .wpc-closed.wpc-filter-has-selected .wpc-filter-header .wpc-filter-title button {
	font-size: 20px;
}

.aside-filter .wpc-filter-selected-values {
	font-size: 16px;
}

.aside-filter .wpc-open-icon {
	display: none !important;
}

.aside-filter .wpc-posts-found {
	display: none;
}

.aside-filter .wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-range {
	background-color: #baad80;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default radio
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="radio"]:not(:checked),
[type="radio"]:checked {
	position: absolute;
	left: -6669px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
	display: inline-block !important;
	position: relative;
	margin: 0 0;
	padding: 0 0 0 35px !important;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px !important;
	font-weight: 400;
}

[type="radio"]:not(:checked) + label {
	color: #666;
}

[type="radio"]:checked + label {
	color: #000;
}

/* checkbox aspect */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #f7f7f7;
}

[type="radio"]:checked + label:before {
	background: #baad80;
}

/* checked mark aspect */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 3px;
	position: absolute;
	top: 7px;
	left: 7px;
	background: #000;
	display: inline-block;
}

/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

[type="radio"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #e5e5e5;
}

[type="radio"]:disabled:checked + label:after {
	color: #666;
}

[type="radio"]:disabled + label {
	color: #aaa;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default checkbox
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -6669px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	display: block !important;
	position: relative;
	margin: 0 0;
	padding: 0 0 0 35px !important;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px !important;
}

[type="checkbox"]:not(:checked) + label {
	color: #666;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #f7f7f7;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
	content: "\f00c";
	opacity: 1;
	padding: 5px 0px;
	visibility: visible;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 20px;
	height: 20px;
	background: #baad80;
	text-align: center;
	font-size: 10px !important;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font: normal normal normal 14px/1 FontAwesome;
	color: #000;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

[type="checkbox"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #e5e5e5;
}

[type="checkbox"]:disabled:checked + label:after {
	color: #666;
}

[type="checkbox"]:disabled + label {
	color: #aaa;
}

body .wpc-horizontal-layout .wpc-filter-layout-submit-button {
	justify-content: space-between;
}

body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-reset-button,
body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-submit-button {
	width: 100%;
	margin-right: 0%;
	max-width: 49%;
}

body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-submit-button {
	position: relative;
	height: 50px;
	line-height: 50px;
	color: #000;
	font-weight: 600;
	font-size: 20px;
	border: 0;
	outline: none;
	text-transform: uppercase;
	font-family: 'Genos', sans-serif;
	background: rgb(232,222,192);
	background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8dec0",endColorstr="#baae80",GradientType=1);
}
 html[lang="zh-hant"] body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-submit-button {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-submit-button:hover {
	color: #BAAD80;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#666",endColorstr="#000000",GradientType=1);
}

body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-reset-button {
	position: relative;
	height: 50px;
	line-height: 50px;
	color: #BAAD80;
	font-weight: 600;
	font-size: 20px;
	border: 0;
	outline: none;
	text-transform: uppercase;
	font-family: 'Genos', sans-serif;
	background: #fff;
	background: -moz-linear-gradient(180deg, #fff 0%, #F7F7F7 100%);
	background: -webkit-linear-gradient(180deg, #fff 0%, #F7F7F7 100%);
	background: linear-gradient(180deg, #fff 0%, #F7F7F7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#F7F7F7",GradientType=1);
}
 html[lang="zh-hant"] body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-reset-button {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

body .wpc-horizontal-layout.wpc-horizontal-cols-4 a.wpc-filters-reset-button:hover {
	color: #000;
	background: #F7F7F7;
	background: -moz-linear-gradient(180deg, #F7F7F7 0%, #DDDDDD 100%);
	background: -webkit-linear-gradient(180deg, #F7F7F7 0%, #DDDDDD 100%);
	background: linear-gradient(180deg, #F7F7F7 0%, #DDDDDD 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F7F7F7",endColorstr="#DDDDDD",GradientType=1);
}

.woocommerce .products-list nav.woocommerce-pagination {
	margin: 30px 0 60px;
	text-align: center !important;
}

.woocommerce .products-list nav.woocommerce-pagination ul li {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border: 0;
	margin-left: 2px;
	text-align: center;
}

.woocommerce .products-list nav.woocommerce-pagination ul {
	border: 0;
}

.woocommerce .products-list nav.woocommerce-pagination ul li a,
.woocommerce .products-list nav.woocommerce-pagination ul li span {
	display: block;
	padding: 0;
	line-height: 50px;
	font-size: 20px;
	font-weight: 600;
    border: 0;
    outline: none;
    border-radius: 3px;
    text-transform: uppercase;
    font-family: 'Genos', sans-serif;
}
 html[lang="zh-hant"] .woocommerce .products-list nav.woocommerce-pagination ul li a,
 html[lang="zh-hant"] .woocommerce .products-list nav.woocommerce-pagination ul li span {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.Outfitkid-pagination ul li span {
	height: 50px;
}

.woocommerce .products-list nav.woocommerce-pagination ul li a {
	color: #000;
	text-decoration: none;
	background: #fff;
	background: -moz-linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
	background: -webkit-linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
	background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f7f7f7",GradientType=1);

	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.woocommerce .products-list nav.woocommerce-pagination ul li a:hover {
	color: #000000 !important;
	background: #f7f7f7;
	background: -moz-linear-gradient(180deg, #f7f7f7 0%, #dddddd 100%);
	background: -webkit-linear-gradient(180deg, #f7f7f7 0%, #dddddd 100%);
	background: linear-gradient(180deg, #f7f7f7 0%, #dddddd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f7f7",endColorstr="#dddddd",GradientType=1);
}

.woocommerce .products-list nav.woocommerce-pagination ul li span.current {
	color: #000 !important;
	background: rgb(232,222,192);
    background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
    background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8dec0",endColorstr="#baae80",GradientType=1);
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.next,
.woocommerce .wrapper nav.woocommerce-pagination ul li a.prev {
	font-size: 0;
	position: relative;
	background: #fff;
    background: -moz-linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
    background: -webkit-linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
    background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f7f7f7",GradientType=1);
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.next:hover,
.woocommerce .wrapper nav.woocommerce-pagination ul li a.prev:hover {
	background: -moz-linear-gradient(180deg, #f7f7f7 0%, #dddddd 100%);
	background: -webkit-linear-gradient(180deg, #f7f7f7 0%, #dddddd 100%);
	background: linear-gradient(180deg, #f7f7f7 0%, #dddddd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7f7f7",endColorstr="#dddddd",GradientType=1);
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.next:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: url(../img/bgi/arrow-right-black.svg) no-repeat center center;
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.prev:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background:  url(../img/bgi/arrow-left-black.svg) no-repeat center center;
}
/* End category CSS
--------------------------------------------------------------------------------------------------*/

/* Start car CSS
--------------------------------------------------------------------------------------------------*/
.product-image {
	float: left;
	width: 800px;
	margin-right: 40px;
}

.product-image .product-title-mobile {
	display: none;
}
 .prod-gallery {
	 position: relative;
 }

.default-summary {
	float: left;
	width: calc(100% - 840px);
}

.product-inner-section {
	margin: 40px 0;
}

.thumbnail-container {
	margin: 15px -7.5px;
}

.thumbnail-container .slick-slide {
	padding: 0 7.5px;
}

.thumbnail-container .slick-slide a {
	position: relative;
}

.thumbnail-container .slick-slide a:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(255, 255, 255, .3);
	width: 100%;
	height: 100%;
}

.thumbnail-container .slick-slide.slick-current a:after {
	display: none;
}

.product-title h1 {
	font-size: 46px;
	line-height: 30px;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
	color: #000;
}
 html[lang="zh-hant"] .product-title h1 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 40px;
	 line-height: 1;
 }

.thumbnail-container-main .slick-arrow {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	border: 0;
	font-size: 0;
	z-index: 2;
	background-color: #f7f7f7;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	background-position: center center !important;
	background-repeat: no-repeat !important;
}

.thumbnail-container-main .slick-arrow:hover {
	background-color: #000;
}

.thumbnail-container-main .slick-prev {
	left: 0;
	background-image: url('../img/bgi/arrow-double-left-gold.svg');
}

.thumbnail-container-main .slick-next {
	right: 0;
	background-image: url('../img/bgi/arrow-double-right-gold.svg');
}

.woocommerce form .form-row::before,
.woocommerce form .form-row::after {
	display: none !important;
}

.woocommerce-info {
	border: 0 !important;
	background: #f7f7f7 !important;
	text-align: center !important;
	padding: 30px 10px !important;
    font-size: 24px !important;
    line-height: 24px !important;
    font-family: 'Genos', sans-serif !important;
    font-weight: 500 !important;
}
 html[lang="zh-hant"] .woocommerce-info {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400 !important;
 }

.woocommerce-info::before {
	display: none !important;
}

body .aside-filter .wpc-filters-open-button-container a.wpc-open-close-filters-button {
	margin: 0;
	border: 0;
    font-size: 24px;
    line-height: 24px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    padding-left: 0;
}
 html[lang="zh-hant"] body .aside-filter .wpc-filters-open-button-container a.wpc-open-close-filters-button {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

body .aside-filter .wpc-icon-html-wrapper span {
	background: #baad80;
}

body .aside-filter span.wpc-icon-line-1:after,
body .aside-filter span.wpc-icon-line-2:after,
body .aside-filter span.wpc-icon-line-3:after {
	border: 1px solid #baad80;
}

body .aside-filter .wpc-opened span.wpc-icon-line-1,
body .aside-filter .wpc-opened span.wpc-icon-line-3,
body .aside-filter .wpc-widget-close-icon span.wpc-icon-line-1,
body .aside-filter .wpc-widget-close-icon span.wpc-icon-line-3 {
	top: -1px;
}
/* End car CSS
--------------------------------------------------------------------------------------------------*/

/* Start car inner CSS
--------------------------------------------------------------------------------------------------*/
.brand-link {
	margin-bottom: 90px;
}

.brand-link a {
	display: block;
	text-decoration: none;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 600;
}

 html[lang="zh-hant"] .brand-link a {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 22px;
	 line-height: 1;
 }

.brand-link a .brand-name-label {
	display: block;
	text-transform: uppercase;
	color: #baad80;
	font-weight: 600;

}

.brand-link a .brand-name {
	display: inline-block;
	padding-right: 20px;
	position: relative;
	color: #aaaaaa;
	font-weight: 600;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.brand-link a .brand-name:after {
	content: '';
	position: absolute;
	right: 0;
	width: 20px;
	height: 20px;
	top: 0;
	background: url('../img/bgi/arrow-double-right-gold.svg') no-repeat center center;
}

.brand-link a:hover .brand-name {
	color: #000;
}

.car-price.product-price {
	font-size: 24px;
	margin-top: 1rem;
}

.car-summary .product-title {
	margin: 10px 0px 20px;
}

.car-main-specs ul li {
	float: left;
	padding-right: 25px;
	margin-right: 25px;
	border-right: 1px solid #000;
	font-size: 24px;
	line-height: 28px;
}

.car-main-specs ul li:last-child {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

.more-details-btn {
	margin: 50px 0px;
}

.more-details-btn .btn:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	background: url('../img/bgi/list-black.svg') no-repeat center center;
}

.more-details-btn .btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	width: 50px;
	height: 50px;
	background: url('../img/bgi/list-gold.svg') no-repeat center center;
}

.more-details-btn .btn:hover:after {
	opacity: 1;
	visibility: visible;
}

.enquiry {
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
}

 html[lang="zh-hant"] .enquiry {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.enquiry-label {
	display: block;
	color: #baad80;
	font-weight: 600;
	text-transform: uppercase;
}

.enquiry-phone {
	display: block;
	color: #000;
	font-weight: 500;
}

.share-label {
	display: block;
	margin-bottom: 5px;
	color: #baad80;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
}

 html[lang="zh-hant"] .share-label {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 22px;
	 line-height: 1;
 }

.car-share ul li {
    float: left;
    margin-right: 20px;
}

.car-share ul li a {
    display: block;
    font-size: 24px;
    color: #000;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.car-share ul li a:hover {
	color: #baad80;
}

.specification-container {
	display: flex;
	width: 100%;
	border: 1px solid #baad80;
	border-radius: 20px;
}

.specification-list,
.basic-specification-list {
	width: 50%;
	padding: 30px 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.specification-list {
	border-right: 1px solid #baad80;
}

.car-specification .section-title:after {
	display: none;
}

.specification-list ul li {
	display: flex;
	border-bottom: 1px solid #dddddd;
	padding: 20px 0px;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
}
 html[lang="zh-hant"] .specification-list ul li {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.specification-list ul li:last-child {
	border: 0;
}

.specification-list ul li .spec-label {
	width: 50%;
	display: block;
	font-weight: 500;
}

.specification-list ul li .spec-value {
	width: 50%;
	display: block;
	font-weight: 600;
	color: #baad80;
}

.specification-list ul li .spec-value > span:last-of-type {
	display: none;
}

.basic-specification-list ul li {
	position: relative;
	padding: 20px 0px 20px 90px;
	font-size: 24px;
	line-height: 1.2;
	font-family: 'Genos', sans-serif;
}
 html[lang="zh-hant"] .basic-specification-lis ul li {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.basic-specification-list ul li .spec-label {
	display: block;
	font-weight: 500;
}

.basic-specification-list ul li .spec-value {
	display: block;
	font-weight: 600;
	color: #baad80;
	font-size: 36px;
	line-height: 30px;
}

 html[lang="zh-hant"] .basic-specification-lis ul li .spec-value {
	 font-size: 32px;
	 line-height: 1;
 }

.basic-specification-list ul li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 15px;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	background: rgb(232,222,192);
	background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e8dec0",endColorstr="#baae80",GradientType=1);
}

.basic-specification-list ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 15px;
	width: 60px;
	height: 60px;
	z-index: 2;
}

.basic-specification-list ul li.engine:before {
	background: url('../img/bgi/engine-type-black.svg') no-repeat center center;
}

.basic-specification-list ul li.cc:before {
	background: url('../img/bgi/cylindrical-capacity-black.svg') no-repeat center center;
}

.basic-specification-list ul li.power:before {
	background: url('../img/bgi/power-black.svg') no-repeat center center;
}

.basic-specification-list ul li.transmission:before {
	background: url('../img/bgi/transmission-black.svg') no-repeat center center;
}

.basic-specification-list ul li.drivemode:before {
	background: url('../img/bgi/drive-mode-black.svg') no-repeat center center;
}

.basic-specification-list ul li.torque:before {
	background: url('../img/bgi/torque-black.svg') no-repeat center center;
}

.car-spec-navigation .section-title {
	display: inline-block;
	cursor: pointer;
}

.car-spec-navigation .section-title:not(.active) h2 {
	color: #aaa;
}

.tab-wrap {
	display: none;
}

.tab-wrap.active {
	display: flex;
}

.features-container {
    width: 100%;
    border: 1px solid #baad80;
    border-radius: 20px;
    padding: 30px 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.features-container ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.features-container ul li {
	width: calc(100% / 3 - 20px);
    font-size: 24px;
    line-height: 20px;
    border-bottom: 1px solid #dddddd;
    padding: 30px 0px;
    font-family: 'Genos', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*.features-container ul li:nth-last-child(-n+3) {
    border-bottom: 0px;
}*/

.woocommerce .featured-cars ul.products li.product,
.woocommerce-page .featured-cars ul.products li.product {
	margin: 0px !important;
	padding: 0px 10px;
}

.featured-cars .section-title:after {
	display: none;
}

.featured-cars ul.products {
	margin: 0px -10px !important;
}

.woocommerce .featured-cars .slick-dots {
    width: 100%;
    text-align: center;
    margin: 30px 0 !important;
	display: flex;
	justify-content: center;
}

.featured-cars .slick-dots li {
    display: inline-block;
    margin: 0px 10px;
}

.featured-cars .slick-dots li button {
    padding: 0px;
    font-size: 0px;
    outline: none;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: 2px solid #baad80;
    background: transparent;
}

.featured-cars .slick-dots li.slick-active button {
    background: #baad80;
}

.woocommerce .featured-cars ul.products li.product a img {
	margin-bottom: 0px;
}

.featured-cars .car-info {
    background: #fafbfa;
}

.featured-cars .car-data-info ul li {
    color: #aaa;
}

.featured-cars .car-info h3 {
	color: #000;
}

.featured-cars .car-data-info {
	border-color: #aaa;
}

.featured-cars li a .car-info .regular-price {
    color: rgba(0,0,0, .3);
}

.featured-cars a:hover .car-info .car-data-info {
    border-color: #666;
}

.featured-cars .product-price {
    margin-bottom: 10px;
}
/* End car inner CSS
--------------------------------------------------------------------------------------------------*/

/* Start sell page CSS
--------------------------------------------------------------------------------------------------*/
.sell-section-container {
	max-width: 800px;
	width: 100%;
	margin: 60px auto;
}

.sell-section-title {
	margin-bottom: 30px;
	text-align: center;
}

.sell-section-title h1 {
	margin-bottom: 10px;
	color: #baad80;
	font-size: 46px;
	font-family: 'Genos', sans-serif;
	line-height: 52px;
	font-weight: 600;
}
 html[lang="zh-hant"] .sell-section-title h1 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.sell-section-title p {
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
}

 html[lang="zh-hant"] .sell-section-title p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.sell-section-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	border: 1px solid #baad80;
	border-radius: 20px;
	padding: 50px 90px;
}

.sell-section-top > div,
.sell-section-top > a {
	position: relative;
	padding: 5px 0 5px 80px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.sell-section-container .sell-section-top > a {
    display: block;
    text-decoration: none;
    color: #000;
}

.sell-section-top > div:after,
.sell-section-top > a:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
}

.sell-section-top > a.whatsapp:after {
	background: url('../img/bgi/whatsapp-gold.svg') no-repeat center center;
}

.sell-section-top > div.form:after {
	background: url('../img/bgi/contact-form-gold.svg') no-repeat center center;
}

.sell-section-top .title {
	display: block;
	font-size: 20px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	color: #baad80;
	font-weight: 600;
}
 html[lang="zh-hant"] .sell-section-top .title {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.sell-section-top .value {
	display: block;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
}

 html[lang="zh-hant"] .sell-section-top .value {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.or-divider {
	display: block;
	width: 160px;
	text-align: center;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
}

 html[lang="zh-hant"] .or-divider {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.sell-section-form {
	border: 1px solid #baad80;
	border-radius: 20px;
	padding: 50px;
}

.sell-section-form h2 {
	margin-bottom: 20px;
	margin-top: 30px;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
}

 html[lang="zh-hant"] .sell-section-form h2 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

 .sell-section-form h2:first-child {
	 margin-top: 0;
 }

.sell-section-form .form-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sell-section-form .form-row {
	margin-bottom: 10px;
	padding: 0;
}

.sell-section-form .form-row .form-col {
	width: calc(50% - 10px);
}

.woocommerce .sell-section-form label {
	font-size: 24px;
	line-height: 20px !important;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	color: #baad80;
	margin-bottom: 3px;
	display: inline-block;
}

 html[lang="zh-hant"] .woocommerce .sell-section-form label {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 20px;
	 line-height: 1 !important;
 }

.woocommerce .sell-section-form input[type="text"],
.woocommerce .sell-section-form input[type="email"] {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 10px;
	font-size: 24px;
	line-height: 20px;
	border-radius: 3px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	border: 1px solid #f7f7f7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	background: #f7f7f7;
}

 html[lang="zh-hant"] .woocommerce .sell-section-form input[type="text"],
 html[lang="zh-hant"] .woocommerce .sell-section-form input[type="email"] {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1 !important;
 }

.woocommerce .sell-section-form textarea {
	display: block;
	width: 100%;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	border-radius: 3px;
	height: 150px;
	resize: none;
	padding: 10px;
	border: 1px solid #f7f7f7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	background: #f7f7f7;
}

 html[lang="zh-hant"] .woocommerce .sell-section-form textarea {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.woocommerce .sell-section-form input[type="text"]:focus,
.woocommerce .sell-section-form input[type="email"]:focus,
.woocommerce .sell-section-form textarea:focus {
	border-color: #baad80;
	background: #fff;
}

.sell-section-form .divider {
	display: block;
	margin: 50px 0;
	width: 100%;
	height: 1px;
	background: #baad80;
}

.sell-section-form .radio-title {
	display: block;
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
}

 html[lang="zh-hant"] .sell-section-form .radio-title {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.sell-section-form br {
	display: none;
}

.sell-section-form .wpcf7-radio label {
	position: relative;
	color: #999999;
	padding-left: 40px;
	line-height: 30px;
	margin-bottom: 3px;
	display: inline-block;
}

.sell-section-form .wpcf7-radio label input {
	display: none;
}

.wpcf7-list-item.first {
	margin: 0;
}

.sell-section-form .wpcf7-radio label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	border: 1px solid #ddd;
}

.sell-section-form .wpcf7-radio label.checked {
	color: #000;
}

.sell-section-form .wpcf7-radio label:after {
	content: '';
	position: absolute;
	left: 10px;
	top: 10px;
	width: 10px;
	opacity: 0;
	height: 10px;
	border-radius: 15px;
	background: #baad80;
}

.sell-section-form .wpcf7-radio label.checked:after {
	opacity: 1;
}

.sell-section-form .wpcf7-radio label.checked:before {
	border-color: #baad80;
}

.radio-full {
	margin-bottom: 30px;
}

.wpcf7-not-valid-tip {
	display: none !important;
}

.sell-section-form input[type="text"].wpcf7-not-valid,
.sell-section-form input[type="email"].wpcf7-not-valid {
	border-color: #E50E50;
}

.button-row {
	position: relative;
}

.button-row .wpcf7-spinner {
	position: absolute;
	right: 10px;
	top: 13px;
	background-color: #000;
	opacity: 1;
}

.sell-section-form .wpcf7-response-output {
	border: 0 !important;
	text-align: center;
	color: #AAA080;
}

.sell-section-form .invalid .wpcf7-response-output {
    color: #E50E50;
}
/* End sell page CSS
--------------------------------------------------------------------------------------------------*/

/* Start about page CSS
--------------------------------------------------------------------------------------------------*/
.section-title:after {
	display: none;
}

.section-title h1 {
    font-size: 46px;
	font-family: 'Genos', sans-serif;
    line-height: 40px;
    color: #baad80;
    font-weight: 600;
    background: #fff;
    padding-right: 50px;
    z-index: 2;
}

 html[lang="zh-hant"] .section-title h1 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 42px;
	 line-height: 1;
 }

.about-content {
    font-size: 24px;
    line-height: 24px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    text-align: justify;
}

 html[lang="zh-hant"] .about-content {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 20px;
	 line-height: 1.1;
 }

.about-content p {
	margin-bottom: 30px;
}

.about-form {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
    border: 1px solid #baad80;
    border-radius: 20px;
    padding: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.about-form .contact-form-text {
	margin-bottom: 30px;
}

.about-form h3 {
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	color: #baad80;
}

 html[lang="zh-hant"] .about-form h3 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 22px;
	 line-height: 1;
 }

.about-form .contact-form-text p {
	font-size: 24px;
    line-height: 24px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    text-align: justify;
}

 html[lang="zh-hant"] .about-form .contact-form-text p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 20px;
	 line-height: 1.1;
 }

.about-form .form-row-contact {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.about-form .form-row-contact {
	margin-bottom: 10px;
}

.about-form .form-row-contact .form-col-contact {
	width: calc(50% - 10px);
}

.wpcf7-form label {
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	color: #baad80;
	margin-bottom: 3px;
	display: inline-block;
}

 html[lang="zh-hant"] .wpcf7-form label {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 20px;
	 line-height: 1;
 }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
	display: block;
	width: 100%;
	height: 50px;
	padding: 0 10px;
	font-size: 24px;
	line-height: 20px;
	border-radius: 3px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	border: 1px solid #f7f7f7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	background: #f7f7f7;
}

 html[lang="zh-hant"] .wpcf7-form input[type="text"],
 html[lang="zh-hant"] .wpcf7-form input[type="email"] {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 24px;
	 line-height: 1;
 }

.wpcf7-form textarea {
	display: block;
	width: 100%;
	font-size: 24px;
	line-height: 20px;
	font-family: 'Genos', sans-serif;
	font-weight: 500;
	border-radius: 3px;
	height: 150px;
	resize: none;
	padding: 10px;
	border: 1px solid #f7f7f7;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	background: #f7f7f7;
}

 html[lang="zh-hant"] .wpcf7-form textarea {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 24px;
	 line-height: 1;
 }

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
	border-color: #baad80;
	background: #fff;
}

.wpcf7-form br {
	display: none;
}

.wpcf7-form input[type="text"].wpcf7-not-valid,
.wpcf7-form input[type="email"].wpcf7-not-valid {
	border-color: #E50E50;
}

.contact-form-btn {
	position: relative;
	margin-top: 30px;
}

.contact-form-btn .wpcf7-spinner {
	position: absolute;
	right: 10px;
	top: 13px;
	background-color: #000;
	opacity: 1;
}

.wpcf7-form .wpcf7-response-output {
	border: 0px !important;
	text-align: center;
}
/* End about page CSS
--------------------------------------------------------------------------------------------------*/

/* Start contact page CSS
--------------------------------------------------------------------------------------------------*/
.contact-page-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact-page-info {
	width: 400px;
}

.contact-page-maps {
	width: calc(100% - 480px);
	padding: 50px;
	border: 1px solid #baad80;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.map-address {
	margin-bottom: 30px;
}

.map-address h3 {
    display: block;
    color: #baad80;
    font-size: 24px;
    line-height: 24px;
    font-family: 'Genos', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
 html[lang="zh-hant"] .map-address h3 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.map-container-1 {
	padding-bottom: 50px;
	margin-bottom: 40px;
	border-bottom: 1px solid #baad80;
}

.map-address p {
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
}
 html[lang="zh-hant"] .map-address p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

#map-canvas-1,
#map-canvas-2 {
	width: 100%;
	height: 320px;
}

.contact-page-info ul li {
    position: relative;
    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contact-page-info ul li.working {
	padding: 5px 0 5px 80px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
	.contact-page-info ul li.working {
		padding: 5px 0 5px 60px;
	}
}
.contact-page-info ul li a {
	position: relative;
	display: block;
	padding: 5px 0 5px 80px;
	text-decoration: none;
	color: #000;
	overflow-wrap: break-word;
}

.contact-page-info ul li .label {
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    color: #baad80;
    font-weight: 600;
}
 html[lang="zh-hant"] .contact-page-info ul li .label {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

.contact-page-info ul li .value {
    display: block;
    font-size: 24px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
}
 html[lang="zh-hant"] .contact-page-info ul li .value {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 24px;
	 line-height: 1;
 }

.contact-page-info ul li.working:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
}

.contact-page-info ul li a:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
}

.contact-page-info ul li.whatsapp a:after {
    background: url('../img/bgi/whatsapp-gold.svg') no-repeat center center;
}

.contact-page-info ul li.email a:after {
    background: url('../img/bgi/contact-form-gold.svg') no-repeat center center;
}

.contact-page-info ul li.phone a:after {
    background: url('../img/bgi/call-us-gold.svg') no-repeat center center;
}

.contact-page-info ul li.working:after {
    background: url('../img/bgi/working-hours-gold.svg') no-repeat center center;
}
/* End contact page CSS
--------------------------------------------------------------------------------------------------*/

/* Start product details page CSS
--------------------------------------------------------------------------------------------------*/
.more-details-product {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.more-details-product figure {
	order: 2;
	width: calc(100% - 580px);
}

.product-details-info {
	order: 1;
	width: 540px;
}

.details-title {
	margin: 10px 0 20px;
}

.product-details-info h1 {
	font-size: 46px;
    line-height: 30px;
    font-family: 'Genos', sans-serif;
    font-weight: 600;
    color: #000;
}

 html[lang="zh-hant"] .product-details-info h1 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 42px;
	 line-height: 1;
 }

.product-details-info .sell-section-top {
    padding: 30px;
    margin: 40px 0;
}

.product-details-info .sell-section-top > div {
	padding: 5px 0 5px 60px;
}

.product-details-info .sell-section-top > a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 5px 0px 5px 60px;
}

.product-details-info .or-divider {
	width: 60px;
}

.back-to-product {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	font-size: 24px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

 html[lang="zh-hant"] .back-to-product {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 24px;
	 line-height: 1;
 }

.back-to-product:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: url('../img/bgi/arrow-double-left-gold.svg') no-repeat center center;
}

.product-details-form-contact {
	max-width: 800px;
	width: 100%;
	margin: 50px auto;
}

.product-details-form-contact .sell-section-form h3 {
    font-size: 24px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #baad80;
}
 html[lang="zh-hant"] .product-details-form-contact .sell-section-form h3 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 24px;
	 line-height: 1;
 }

.product-details-form-contact .contact-form-text {
	margin-bottom: 30px;
}

.product-details-form-contact .sell-section-form p {
    font-size: 20px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
}
 html[lang="zh-hant"] .product-details-form-contact .sell-section-form p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.form.detail-form {
	cursor: pointer;
}
/* End product details page CSS
--------------------------------------------------------------------------------------------------*/

/* Start 404 page CSS
--------------------------------------------------------------------------------------------------*/
.error-section {
	text-align: center;
}

.error-section h1 {
	color: #E50E50;
	padding: 0;
}


.error-section p {
    font-size: 24px;
    line-height: 24px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
}
 html[lang="zh-hant"] .error-section p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.error-section .red-btn {
	margin-top: 50px;
}
/* End 404 page CSS
--------------------------------------------------------------------------------------------------*/

/* Start account CSS
--------------------------------------------------------------------------------------------------*/
.resetpw-page-container p,
.succes-reset-password p {
	font-size: 24px;
    line-height: 24px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
}
 html[lang="zh-hant"] .resetpw-page-container p,
 html[lang="zh-hant"] .succes-reset-password p {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
 }

.resetpw-page-container label {
    font-size: 24px;
    line-height: 20px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    color: #baad80;
	margin-bottom: 3px;
	display: inline-block;
}

 html[lang="zh-hant"] .resetpw-page-container label {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 20px;
	 line-height: 1;
 }

.resetpw-page-container input {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 24px;
    line-height: 20px;
    border-radius: 3px;
    font-family: 'Genos', sans-serif;
    font-weight: 500;
    border: 1px solid #f7f7f7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    background: #f7f7f7;
}
 html[lang="zh-hant"] .resetpw-page-container input {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 400;
	 font-size: 24px;
	 line-height: 1;
 }

.resetpw-page-container input:focus {
    border-color: #baad80;
    background: #fff;
}

.resetpw-page-container {
	max-width: 600px;
}

.woocommerce .resetpw-page-container form {
	border: 0px !important;
	padding:  0px !important;
}

.otgs-development-site-front-end {
	display: none !important;
}

.woocommerce-lost-password .woocommerce-ResetPassword woocommerce-form-row {
	margin: 25px 0 0 0;
	padding: 0;
}
.woocommerce-lost-password .woocommerce {
	margin: 50px 0;
}

/* End account CSS
--------------------------------------------------------------------------------------------------*/

#footer .wpml-ls-legacy-list-horizontal {
	padding: 0;
}

.home-slider {
	max-height: 460px;
	overflow: hidden;
}

 .home-slider a {
	position: relative;
	max-height: 460px;
	 display: block;
}

 .home-slider .brand {
	 display: none;
 }

 @media only screen and (min-width: 992px) {
	 .home-slider .brand {
		 background-position: left bottom;
		 background-size: contain;
		 background-repeat: no-repeat;
		 object-fit: contain;
		 display: block;
		 margin-bottom: 1rem;
		 height: 75px;
		 width: 75px;
	 }
 }

 .home-slider .details {
	 display: flex;
	 background: rgba(0,0,0,0.2);
	 align-items: center;
	 justify-content: center;
	 position: absolute;
	 text-align: center;
	 bottom: 0;
	 top: 0;
	 z-index: 2;
 }

 .home-slider .details > div {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 height: 80%;
	 margin: 0 20px;
 }

 @media only screen and (min-width: 480px) {
	 .home-slider .details > div {
		 height: 70%;
	 }

	 .home-slider .details .btn {
		 margin-bottom: 10px;
		 padding: 10px 20px;
	 }
 }

 .home-slider .details h2 {
	 display: inline-block;
	 font-size: 28px;
	 font-family: 'Genos', sans-serif;
	 line-height: 0.7;
	 color: #fff;
	 font-weight: 600;
	 margin-bottom: 1.2rem;
 }

 html[lang="zh-hant"] .home-slider .details h2 {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
	 font-size: 24px;
	 line-height: 1;
 }

 .home-slider .details .price {
	 color: #E8DEBF;
	 font-family: 'Genos', sans-serif;
	 font-size: 24px;
	 font-weight: 600;
	 line-height: 1;
	 margin-bottom: 1.5rem;
 }

 html[lang="zh-hant"] .home-slider .details .price {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

 .home-slider .details .regular-price {
    color: #aaa;
    text-decoration: line-through;
}

 .home-slider .details .info {
	 display: none;
 }

 .home-slider .details .info span {
	 display: inline-block;
	 width: 240px;
 }

 .home-slider .details,
 .home-slider .img {
	 width: 100%;
 }

 .home-slider .img img {
	 width: 100%;
	 height: auto;
	 object-position: center;
	 object-fit: cover;
 }

 .home-slider .btn {
	 border: 0;
	 outline: none;
	 background: #E8DEBF;
	 background: -moz-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	 background: -webkit-linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	 background: linear-gradient(180deg, rgba(232,222,192,1) 0%, rgba(186,174,128,1) 100%);
	 color: #000;
	 font-family: 'Genos', sans-serif;
	 font-weight: 600;
	 margin-bottom: 40px;
	 margin-top: auto;
	 padding: 5px 15px;
	 text-align: center;
	 text-transform: uppercase;
 }
 html[lang="zh-hant"] .home-slider .btn {
	 font-family: 'Noto Sans TC', sans-serif;
	 font-weight: 500;
 }

 .home-slider .btn:hover {
	 background: #000;
	 background: -moz-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	 background: -webkit-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	 background: linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
	 color: #E8DEBF;
 }

 @media only screen and (min-width: 768px) {
	 .home-slider {
		 max-height: 500px;
	 }

	 .home-slider a {
		 display: flex;
		 max-height: 500px;
		 text-decoration: none;
	 }

	 .home-slider .details {
		 display: flex;
		 position: relative;
		 text-align: left;
		 width: 50%;
	 }

	 .home-slider .details > div {
		 display: block;
		 height: auto;
		 margin: 0;
		 width: 70%;
	 }

	 .home-slider .details h2 {
		 font-size: 32px;
	 }

	 .home-slider .img {
		 display: flex;
		 width: 50%;
	 }

	 .home-slider .details {
		 background: #000;
	 }

	 .home-slider .btn {
		 margin-bottom: 0;
		 margin-top: 1.25rem;
	 }

	 .home-slider .details h2 {
		 color: #E8DEBF;
	 }

	 .home-slider .details .info {
		 color: #baad80;
		 display: block;
		 font-family: 'Genos', sans-serif;
		 font-size: 20px;
		 font-weight: 600;
		 text-transform: uppercase;
	 }
	 html[lang="zh-hant"] .home-slider .details .info {
		 font-family: 'Noto Sans TC', sans-serif;
		 font-weight: 500;
	 }
	 .home-slider .details .price {
		 color: #fff;
	 }

	 .home-slider .slick-slide[data-slick-index="1"] .details,
	 .home-slider .slick-slide[data-slick-index="3"] .details,
	 .home-slider .slick-slide[data-slick-index="5"] .details {
		 background: #E8DEBF;
	 }
	 .home-slider .slick-slide[data-slick-index="1"] .details h2,
	 .home-slider .slick-slide[data-slick-index="3"] .details h2,
	 .home-slider .slick-slide[data-slick-index="5"] .details h2,
	 .home-slider .slick-slide[data-slick-index="1"] .details .info,
	 .home-slider .slick-slide[data-slick-index="3"] .details .info,
	 .home-slider .slick-slide[data-slick-index="5"] .details .info,
	 .home-slider .slick-slide[data-slick-index="1"] .details .price,
	 .home-slider .slick-slide[data-slick-index="3"] .details .price,
	 .home-slider .slick-slide[data-slick-index="5"] .details .price {
		 color: #000;
	 }

	 .home-slider .slick-slide[data-slick-index="1"] .details .btn,
	 .home-slider .slick-slide[data-slick-index="3"] .details .btn,
	 .home-slider .slick-slide[data-slick-index="5"] .details .btn {
		 background: #000;
		 background: -moz-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
		 background: -webkit-linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
		 background: linear-gradient(180deg, #666 0%, rgba(0,0,0,1) 100%);
		 color: #E8DEBF;
	 }

	 .home-slider .slick-slide[data-slick-index="1"] .details .btn:hover,
	 .home-slider .slick-slide[data-slick-index="3"] .details .btn:hover,
	 .home-slider .slick-slide[data-slick-index="5"] .details .btn:hover {
		 background: #E8DEBF;
		 background: -moz-linear-gradient(180deg, rgba(232, 222, 192, 1) 0%, rgba(186, 174, 128, 1) 100%);
		 background: -webkit-linear-gradient(180deg, rgba(232, 222, 192, 1) 0%, rgba(186, 174, 128, 1) 100%);
		 background: linear-gradient(180deg, rgba(232, 222, 192, 1) 0%, rgba(186, 174, 128, 1) 100%);
		 color: #000;
	 }
 }
