@charset "UTF-8";
/* CSS Document */
:root{
    --font: "Inter", sans-serif;
    --fontcolor: #252525;
	--themecolor: #0978b7;
	--themehover: #0978b7;
	--themecolor-dark: #272727;
	--border: #ccc 1px solid;
}

html,
body{
	height: 100%;
	width: 100%;
}
body{
	margin: 0;
	padding: 0;
    font-family: var(--font);
	color: var(--fontcolor);
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
	line-height:1.6;
	font-size: 1em;
}
*{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
b,
strong{
	font-weight: 600
}
h1, h2, h3, h4{
	font-weight: 600;
}
a,
a:visited{
	color: var(--themecolor);
	text-decoration: none;
}
a:hover{
	color: var(--themehover);
}
button{
	min-width: 130px;
	padding: 0.8em 1.8em 0.8em 1.8em;
	outline: none;
	border-radius: 20em;
	background: transparent;
	border: #555 1.5px solid;
	appearance: none;
	font-size: 14px;
	font-weight: 300;
	font-family: var(--font);
	cursor: pointer;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	transition: all 0.15s ease;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--fontcolor)
}
button:hover{
	background: var(--themecolor);
	color: #fff;
	border: var(--themecolor) 1.5px solid;
}
button span{
	margin-left: 0.2em;
    transition: all 0.2s ease;
	font-size: 0.6em;
}
button:hover span{
    transform: translateX(8px);
	color: #fff;
}
button.white{
	border-color: #fff;
	color: #fff;
	margin-top: 1.4em
}
button.white:hover{
	background: #fff;
	color: var(--themecolor);
}
button.white:hover span{
    color: var(--themecolor);
}
input,
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"]{
    font-family: var(--font);
    width: 100%;
    box-sizing: border-box;
    padding: 0.7em 0.5em 0.7em 0.5em;
    font-size: 1em;
	font-weight: 300;
    outline: none;
    appearance: none;
    border: var(--border);
    transition: border-color 300ms ease;
}
input:focus,
textarea:focus{
    border: 1px solid #888;
}
input::placeholder,
textarea::placeholder{ /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #aaa;
  opacity: 1; /* Firefox */
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder{ /* Internet Explorer 10-11 */
  color: #aaa;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder{ /* Microsoft Edge */
  color: #aaa;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
textarea{
    font-family: var(--font);
    width: 100%;
	font-weight: 300;
    box-sizing: border-box;
    padding: 0.7em 0.5em 0.7em 0.5em;
    font-size: 1em;
    outline: none;
    appearance: none;
    border: var(--border);
    transition: border-color 300ms ease;
    resize: vertical;
}
select {
	display: block;
    font-family: var(--font);
    color: var(--fontcolor);
    font-weight: 300;
    font-size: 1em;
	line-height: 1.5;
	padding: 0.55em 0.5em 0.55em 0.5em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: var(--border);
	box-shadow: 0;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
    background-image: url('data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 9" style="enable-background:new 0 0 14 9;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:%23666666;%7D%0A%3C/style%3E%3Cpolygon class="st0" points="7,8 1,1 13,1 "/%3E%3C/svg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
    cursor: pointer;
    -webkit-transition: border-color .3s ease-in-out;
    -moz-transition: border-color .3s ease-in-out;
    -o-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
}
select option {
  font-size: 5px;
  padding: 10px;
}
select::-ms-expand {
	display: none;
}
select:focus {
    outline: none;
    border: #222 1px solid;
}
input[type=file]{
	font-size: 0.9em;
	margin: 0;
	padding: 0;
}
input[type=file]::-webkit-file-upload-button{
    background: none;
    padding: 0.5em 1.2em;
    margin-right: 0.5em;
    color: var(--fontcolor);
    line-height: 1.5;
    font-size: 11px;
    font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
    border: #888 1.5px solid;
    border-radius: 0.3em;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-transition: color 0.3s, border-color 0.3s;
    -moz-transition: color 0.3s, border-color 0.3s;
    -o-transition: color 0.3s, border-color 0.3s;
    transition: color 0.2s, border-color 0.3s;
}
input[type=file]::-webkit-file-upload-button:hover{
    background: #f0f0f0
 
}
input[type=file]::-webkit-file-upload-button:focus{
    outline: none;
}
input[type=file]:disabled::-webkit-file-upload-button{
    color: #bbb;
    border: #bbb 1px solid;
    cursor: inherit;
}
label{
	display: inline-block;
	/*margin: 0.8em 0 0.1em 0*/
}
/*---------- Global ------------*/
.full-container{
	width: 100%;
	padding: 5em 0 5.5em 0;
}
.inside{
	width: 93%;
	margin: auto;
	max-width: 1200px;
}
.subbanner{
	background: var(--themecolor-dark) /*#f0f0f0*/;
	border-bottom: var(--themecolor) 4px solid;
	color: #fff
}
.grey{
	background: #f0f0f0;
}
/*---------- Global ------------*/
div.search{
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	min-height: 150px;
	max-height: 80vh;
	background: #fff; /*rgba(255,255,255,0.95);*/
	border-top: 1px solid #ccc;
	z-index: 2100;
	box-sizing: border-box;
	font-size: 0.93em;
	overflow: auto;
	scrollbar-gutter: stable;
	padding-bottom: 1em;
	display: none;
}

div.search form,
.product-search form{
	position: relative;
	flex:1;
	display: flex;
}
div.search .inside{
	max-width: 700px;
	padding: 2em 0 3em 0;
}
div.search h2{
	line-height: 1;
	font-size: 1.8em;
	font-weight: 600;
	margin: 0 0 0.5em 0.3em;
}
div.search input,
.product-search input{
	padding: 0.8em 1em;
	font-size: 1.1em;
	border-radius: 50em;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}
div.search input:focus + button,
.product-search input:focus + button{
	border: 1px solid #888;
	border-left: 0;
}
div.search button,
.product-search button{
	background: none;
	color: var(--fontcolor);
	margin-left: 0em;
	padding-left: 1em;
	padding-right: 1em;
	min-width: inherit;
	width: 5.5em;
	border: 0;
	background: #f5f5f5;
	border-radius: 0 50em 50em 0;
	border: var(--border);
	border-left: 0;
}
div.search button:hover,
.product-search button:hover{
	color: #777
}
div.search button .material-symbols-outlined,
.product-search button .material-symbols-outlined{
  font-size: 2.5em;
}

nav.menu{
	font-size: 0.93em;
	position: fixed;
	top: 60px;
	right: 0;
	width: 100%;
	max-width: 400px;
	height: calc(100% - 55px);
	background: #fff; /*rgba(255,255,255,0.95);*/
	border-top: 1px solid #ccc;
	z-index: 2100;
	box-sizing: border-box;
	overflow: auto;
	scrollbar-gutter: stable;
	padding-bottom: 1em;
	transition: all 0.15s ease-in-out;
	transform:translateX(100%);
}
.menu-open {
	transform:translateX(0) !important;
}
.menu-cover,
.search-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 2000;
	display: none;
}
.active,
header a.active{
	color: var(--themecolor) !important;
}


ul.nav{
	list-style: none;
	margin: 0;
	padding: 0.5em 0;
}
ul.nav a{
	font-size: 1em;
	margin: 0;
	font-weight: 400;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	padding: 0.3em 0 0.3em 0.5em;
	border-bottom:transparent 0px solid;
	transition: background-color 0.05s, border-color 0.05s ease;
	color: var(--fontcolor);
}
ul.nav a.h3{
	font-size: 1.05em;
	padding: 0.5em 0 0.5em 0.5em;
	font-weight: 600
}
ul.nav li{
	margin: 0;
	padding: 0;
	cursor: pointer;
	border-top: 1px solid #e3e3e3
}
.nav > li:nth-of-type(1),
.ul-mobile li:nth-of-type(1){
	border: none;
}

ul.nav>li{
	width: 100%;
}
ul.nav>li>a:hover,
ul.sub1>li>a:hover,
ul.sub2>li>a:hover{
	background: #F3F3F3;
	background: linear-gradient(90deg,rgba(243, 243, 243, 1) 15%, rgba(255, 255, 255, 1) 100%);
	border-bottom:#BE0407 0px solid;
}
ul.nav a.expanded{
	border-bottom:#BE0407 0px solid;
}
ul.sub1 a.expanded{
	background: #F3F3F3;
	background: linear-gradient(90deg,rgba(243, 243, 243, 1) 15%, rgba(255, 255, 255, 1) 100%);
	/*color: var(--themecolor) !important;*/
}

ul.sub1,
ul.sub2{
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
}
ul.sub1 a{
	padding-left: 1em
}
ul.sub2 a{
	font-weight: 400 !important;
	padding-left: 1.5em
}
ul i{
	font-size: 0.9em;
	font-style: normal;
	margin-top: 1.2em;
	display: inline-block;
	color: #444
}
ul hr{
	width: 100%;
	height: 1px;
	background: #bbb;
	border:0;
	margin: 0.5em 0 0.5em 0
}
ul span{
    -webkit-transition: .1s ease-in-out, background 0s;
    -moz-transition: .1s ease-in-out, background 0s;
    -o-transition: .1s ease-in-out, background 0s;
    transition: .1s ease-in-out, background 0s;
}
ul span.opened{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
ul .ul-mobile{
	display: none;
}

header{
	position: fixed;
	width: 100%;
	height: 60px;
	background: #fff; /*rgba(255,255,255,0.95);*/
	display: flex;
	align-items: center;
	font-size: 0.93em;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 2000;
	border-bottom: 1px solid rgba(255,255,255,0);
	border-bottom: #ccc 1px solid;
}
header .inside{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 94%;
}
.header-logo{
	
}
.header-logo img{
	width: 22vw;
	max-width: 110px;
	display: block;
	border: 0;
	margin-top: 3px;
}
.header-navigator,
.header-navigator>div{
	display: flex;
}
.header-navigator a,
.header-navigator a:visited,
.header-navigator a:active{
	color: var(--fontcolor);
	cursor: pointer;
}
.header-navigator a:hover{
	color: var(--themecolor);
}
.header-navigator ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex
}
.header-navigator li{
	padding: 0 0.8em;
}
.header-search{
	display: flex;
	align-items: center;
	padding: 0 0.8em;
}
.header-search span{
	margin-right: 0.1em;
	font-size: 1.4em
}
.header-menu{
	display: flex;
	align-items: center;
	margin-left: 0.8em;
}
.header-menu::before{
	content: "Products";
}
.header-menu span{
	margin-left: 0.1em;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 16
}
footer{
	background: var(--themehover);
	color: #eee;
	font-weight: 300;
	font-size: 0.9em;
	padding-top: 3em !important;
	padding-bottom: 3em !important
}
footer a{
	color: #eee !important;
	text-decoration: none;
}
footer a:hover{
	color: #adcbde !important
}
footer strong{
	font-weight: 600
}
footer .inside>div{
	display: flex;
	justify-content: space-between
}
footer .inside>div:nth-last-child(1){
	margin-top: 1.5em;
	font-size: 0.95em
}
.footer-company{
	width: 50%;
	max-width: 400px;
}
.footer-logo{
	width: 50%;
	text-align: right;
	position: relative;
}

.footer-logo img{
	height: 28px;
	margin: 0 0.3em
}
.footer-copyright{
	width: 100%;
	position: absolute;
	bottom: 0;
	text-align: right;
}
.whatsapp{
	position: fixed;
	right: 2.5em;
	bottom: 2em;
	z-index: 2500;
}
.whatsapp img{
	width: 55px;
	border: 0;
	cursor: pointer;
	transition: all 0.15s ease
}
.whatsapp img:hover{
	transform: scale(1.2);
	transition: all 0.15s ease
}

#gap{
	height: 61px;
}

.index-contact{
	background: url("img/index-contact-bg.webp") no-repeat center center;
	background-size: cover;
}
.index-contact>div{
	display: flex
}
.index-contact>div>div{
	width: 50%;
}
.index-contact>div>div h2{
	font-weight: 500;
	font-size: 2.2em;
	margin: 0;
}
.index-contact>div>div button{
	margin-top: 1.2em
}

.index-title{
	text-align: center !important;
	max-width: 70%;
}
.index-title h1{
	margin: 0;
	line-height: 1.3;
	font-size: 2.1em;
}
.index-title p{
	margin-top: 1em;
	margin-bottom: 1.3em;
	font-size: 1.1em
}
.index-brand-intro{
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}
.index-brand-intro>div:nth-child(1){
	width: 50%;
	color: #fff;
	background: url("img/index-cube-hanwha.webp") no-repeat top;
	background-size: cover;
	aspect-ratio: 3 / 2;
	padding: 2em 3em;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index-brand-intro>div:nth-child(1) div{
	text-align: center;
}
.index-brand-intro div:nth-child(1)>h2{
	font-size: 2em;
	line-height: 1.3;
	font-weight: 300;
	display: block;
	margin: 0;
}

.index-brand-intro>div:nth-child(2){
	width: 50%;
	color: #fff;
	background: url("img/index-cube-reyee.webp") no-repeat top;
	background-size: cover;
	aspect-ratio: 3 / 2;
	padding: 2em;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
}
.index-brand-intro div:nth-child(2) img{
	height: 2.5em;
	position: absolute;
	right: 2em;
	top: 2em;
}
.index-brand-intro div:nth-child(2)>h2{
	font-size: 2em;
	line-height: 1.3;
	font-weight: 300;
	display: block;
	margin: 0;
}
.index-brand-intro div:nth-child(2) div div{
	text-align: center;
	margin-top: 0.8em;
	margin-bottom: 0;
}
.page-banner{
	display: flex;
	justify-content: space-between;
}
.page-banner>div:nth-child(1){
	width: 45%;
	padding: 0;
	margin-block:auto;
}
.page-banner>div:nth-child(1) h1{
	margin: 0;
	margin-top: -0.2em;
	font-weight: 600;
	line-height: 1.3;
	font-size: 1.9em;
}
.page-banner>div:nth-child(1) p{
	margin: 0;
	margin-top: 0.7em;
	font-weight: 300
}
.page-banner>div:nth-child(2){
	width: 52%;
	aspect-ratio: 2 / 1;
	position: relative;
}
.page-banner>div:nth-child(2)>div{
	width: 100%;
	position: absolute;
	aspect-ratio: 1.84 / 1;
}
.about-banner>div:nth-child(2)>div{
	background:url("img/about-intro.webp") no-repeat;
	background-size: cover;
	background-position: bottom left;
}
.about-banner{
	width: 100%;
	aspect-ratio: 16 / 4;
	background: url("img/about-banner.webp") no-repeat;
	background-position: top 28% center;
	background-size: cover;
}
.contact-banner>div:nth-child(2)>div{
	background:url("img/contact-intro.webp") no-repeat;
	background-size: cover;
	background-position: bottom left;
}
.about-title{
	text-align: center;
}
.about-title h1{
	margin-top: 0em;
	line-height: 1.3;
	margin-bottom: 0.6em
}
.about-title h1 span{
	display: block;
	font-size: 0.7em;
	font-weight: 500;
	margin-top: 0.2em;
	margin-bottom: 1em
}
.about-title p{
	text-align: left;
	max-width: 85%;
	margin: auto;
	margin-bottom: 1em
}
.about-title p strong{
	font-weight: 500
}
.about-services h2{
	font-weight: 400;
	font-size: 1.9em;
	margin: 0;
	line-height: 1.3;
	margin-bottom: 0.3em
}
.about-services-grid{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.8em;
	row-gap: 1.8em;
	margin-top: 3em;
}
.about-services-grid>div{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.8em;
	border: 1px #bbb solid;
	border-radius: 50em;
	background: #f8f8f8
}
.about-services-grid h4{
	margin: 0;
	font-size: 1em;
	font-weight: 500;
}
.about-brands>div{
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 1em;
	row-gap: 1em;
	place-items: center;
}
.about-brands>div img{
	height: 46px;
}

.contact-form{
	background: var(--themecolor);
	color: #fff;
	border-bottom: var(--themecolor) 4px solid;
}
.contact-form .inside{
	display: flex;
	justify-content: space-between;
}
.contact-form h3{
	font-size: 2em;
	font-weight: 500;
	margin: 0;
	margin-top: 0.7em;
	line-height: 1.4;
}
.contact-form p{
	font-weight: 300;
	margin-top: 0.5em
}
.contact-form .inside div{
	width: 36%;
}
.contact-form .inside div:nth-child(2){
	width: 60%;
	position: relative;
}
.contact-form .inside .form{
	width: 100%;
	background: #fff;
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
	box-sizing: border-box;
	padding: 1.5em 1.8em;
	min-height: 150px;
	position: absolute;
	right: 0;
	color: var(--fontcolor);
	border-radius: 0.5em;
}
.contact-form .inside .form h3{
	font-size: 1.5em;
	text-align: center;
	margin: 0 0 1em 0
}
.form-gap{
	height: 330px;
	padding: 0 0 5em 0;
}
.contact-form textarea{
	resize: none;
	line-height: 1.5
}
.contact-form .inside .form form>div{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.7em
}
.contact-form .inside .form form>div label{
	min-width: 160px;
	width: 160px;
	margin-top: 0.6em;
}
.contact-form .inside .form form>div.btn{
	margin: 1.5em 0 0.5em 0;
	justify-content: center;
}
.g-recaptcha{
	width: 100% !important;
}
iframe.gmap{
	padding: 0;
	margin: 0;
	border: 0;
	height: 70vh;
	width: 100%;
	display: block;
	outline: none;
}
.contact-details a{
	color: var(--fontcolor);
}
.contact-details .inside{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0em;
	row-gap: 0em;
	margin-top: 0em;
	text-align: center;
}
.contact-details .inside a>div{
	padding: 1em;
	box-sizing: border-box;
}
.contact-details .inside a:nth-child(2)>div{
	border-left: var(--border);
	border-right: var(--border)
}
.contact-details .inside div img{
	height: 55px;
	border: 0;
	transition: all 0.15s ease;
}
.contact-details .inside a:hover img{
	transform: scale(1.2);
}
.contact-details .inside div h3{
	font-weight: 400;
	font-size: 1.7em;
	margin: 0.2em 0 0 0
}
.contact-address .inside{
	display: flex;
	justify-content:flex-start
}
.contact-address .inside>div{
	max-width: 45%;
}
.contact-address h4{
	font-weight: 400;
	font-size: 1.9em;
	line-height: 1.4;
	margin: 0;
	margin-bottom: 0.4em
}
.contact-address span span{
	font-size: 0.85em;
	color: #666;
	display: block;
	margin-top: 0.5em
}
#notice-container{
	width: 100%;
	padding: 0 1em;
	position: fixed;
	top: 61px;
	padding: 0.7em 0;
	text-align: center;
	z-index: 2550;
	font-weight: 500;
	line-height: 1.4;
	font-size: 0.95em
}
.success{
	background:rgba(232,244,237,0.93);
	color: #339262
}
.error{
	background:rgba(255,235,239,0.93);
	color: #93344a
}
.product-banner{
	padding: 2em 0;
}
.product-banner .inside{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-banner .inside h1{
	font-size: 2.1em;
	margin: 0;
	font-weight: 500
}
.product-banner .inside img.logo{
	height: 44px;
}
.product{
	padding: 2em 0 5em 0;
	min-height: 60vh
}
.product .inside{
	display: flex;
	justify-content: space-between;
}
.product .product-menu{
	width: 300px;
	margin-right: 2.2em;
	font-size: 0.85em;
}
.product .product-menu .nav>i{
	margin-top: 0;
}
.product .product-content{
	flex: 1;
}
.product .subcategories{
	line-height: 1.4;
	margin-bottom: 2em
}
.product .subcategories h2{
	font-size: 1em;
	font-weight: 500;
	margin: 0;
}
.product .subcategories h2:nth-child(2){
	font-size: 1.8em;
	font-weight: 600;	
}
.product .subcategories span{
	margin: 0 0.5em
}
.product .product-items>span.empty{
	width: 100%;
	display: inline-block;
	text-align: center;
	margin-top: 3em;
}
.product .product-items>span.count{
	width: 100%;
	text-align: center;
	display: inline-block;
	margin-top: 2em;
	font-size: 0.9em
}
.product .product-items>span.count strong{
	font-weight: 600
}
.product .product-items div.items{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 0.6em;
	row-gap: 0.6em;
	text-align: center;
}
.product .product-items div.items>a{
	padding: 1.5em 0.8em 2em 0.8em;
	box-sizing: border-box;
	border: #ddd 1px solid;
	min-height: 200px;
	line-height: 1.4;
	font-size: 0.9em;
	position: relative;
	color: var(--fontcolor);
}
.product .product-items div.items a{
	
}
.product .product-items div.items>a:hover{
	border-color: #aaa
}
.product .product-items div.items>a div.img{
	min-height: 150px;
	max-width: 90%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product .product-items div.items>a img{
	height: auto;
	width: auto;
	max-height: 140px;
	max-width: 85%;
	display: block;
	margin-bottom: 0.5em;
	margin: auto;
}
.product .product-items div.items>a h2{
	font-size: 1em;
	font-weight: 600;
	margin: 0;
	margin-top: 1em
}
.product .product-items div.items>a p{
	margin: 0;
	margin-top: 0.4em;
	font-size: 0.9em
}
.product .product-items div.product-item-smalldesc{
	font-size: 0.85em;
	color: #888;
	max-height: 7em;
	overflow-x: hidden;
	overflow-y: auto;
}
.product .product-items div.product-item-smalldesc h2{
	font-size: 1em !important; 
	display: inline;
}
.product .product-items button{
	border-radius: 0.4em !important;
	padding: 0.4em 1em;
	font-size: 0.8em;
	margin-top: 1.2em;
	margin-bottom: 0.5em;
	border: 1px #666 solid;
	position: absolute;
	top: 0em;
	right: 1em
}
.product .product-items button:hover{
	color: var(--fontcolor);
	background: #f2f2f2;
}
.product .product-items button span{
	margin: 0 0.2em 0 0;
}
.product .product-items button:hover span{
	transform: none;
	color: var(--fontcolor);
}
/* scroll bar */
.product-item-smalldesc::-webkit-scrollbar {
    width: 8px;
}
.product-item-smalldesc::-webkit-scrollbar-track {
    background: #ddd;
	border-radius: 10px;
}
.product-item-smalldesc::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}
.product-item-smalldesc::-webkit-scrollbar-thumb:hover {
    background: #777;
}
.product-item-smalldesc a{
	color:#777;
	text-decoration:none;
}
.product-lvl1{
	display: flex;
}
.product-lvl1-img{
	width: 350px;
	height: 300px;
	border: #ddd 1px solid;
	margin-right: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-lvl1-img img{
	height: auto;
	width: auto;
	max-height: 90%;
	max-width: 90%;
	display: block;
}
.product-lvl1-title{
	flex: 1;
}
.product-lvl1-title h1{
	margin: 0;
	font-size: 1.6em
}
.product-lvl1-title h1 span{
	display: block;
	font-size: 0.63em;
	font-weight: 300;
}
.product-lvl1 ul{
	margin: 0;
	padding: 0 0 0 16px;
	margin-top: 0.8em
}
.product-lvl1 li{
	padding: 0;
	margin: 0;
}
.product-pdf{
	border-bottom: #ddd 1px solid;
	border-top: #ddd 1px solid;
	margin-top: 2em;
	padding: 1em 0.5em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.product-pdf a{
	color: var(--fontcolor);
	font-weight: 300;
	flex: 0 0 auto;
	display: flex;
	width: fit-content;
}
.product-pdf a:hover{
	color: var(--themecolor)
}
.product-pdf a.no-link,
.product-pdf a.no-link:hover{
	color: var(--fontcolor);
	opacity: 0.3;
}
.product-pdf img{
	padding-top: 3px;
	margin-right: 0.5em;
	height: 20px;
	border: 0;
}
.product-related h3{
	font-size: 1em;
	margin-top: 2em
}
.product-ask{
	background: #5BBA51;
	background: linear-gradient(180deg,rgba(91, 186, 81, 1) 0%, rgba(48, 179, 74, 1) 100%);
	width: fit-content;
	display: flex;
	color: #fff !important;
	font-weight: 400;
	font-size: 0.85em;
	align-items: center;
	border-radius: 50em;
	padding: 0.15em 1.1em 0.15em 0.4em;
	margin-top: 1.5em
}
.product-ask:hover{
	opacity: 0.9
}
.product-ask img{
	width: 2.2em;
	display: block;
	border: 0;
}
.paginations{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.1em;
    font-size: 1em;
}
.paginations select{
    width: auto;
	min-width: 70px;
	font-family: var(--font);
	color: var(--fontcolor);
	line-height: 1.3;
	padding: .5em 2em 0.5em 1em;
	box-shadow: 0;
    margin: 0 0.3em;
	border-radius: 4px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color:#fff;
    background-image: url('data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 14 9" style="enable-background:new 0 0 14 9;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:%23666666;%7D%0A%3C/style%3E%3Cpolygon class="st0" points="7,8 1,1 13,1 "/%3E%3C/svg%3E');
	background-repeat: no-repeat, repeat;
	background-position: right .4em top 50%, 0 0;
	background-size: .65em auto, 100%;
    cursor: pointer;
    -webkit-transition: background .15s, border-color .2s ease-in-out;
    -moz-transition: background .15s, border-color .2s ease-in-out;
    -o-transition: background .15s, border-color .2s ease-in-out;
    transition: background .15s, border-color .2s ease-in-out;
}
.paginations select::-ms-expand{
	display: none;
}
.paginations select:hover{
    border: #555 1px solid;
}
.paginations select:focus{
    outline: none;
    border: #555 1px solid;
}
.paginations p{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    background: #fff;
    width: 42px;
    border-radius: 0.2em;
    margin-left: 0.8em;
    margin-right: 0.8em;
    font-weight: 700;
    line-height: 1;
    font-size: 1.2em;
	border: 1px solid #ccc;
	cursor: pointer;
	color: var(--fontcolor) !important;
	transition: background .15s, border-color .2s ease-in-out;
}
.paginations p.haspage:hover{
	background: #f2f2f2;
	border: 1px solid #888
}
.paginations p.nopage{
	color: #ccc !important
}
.product-search{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 2em
}
.product-search form{
	max-width: 600px;
}
.search-items button{
	top: 35px !important;
}
.search-items img.logo{
	height: 26px !important;
	position: absolute;
	top: 1em;
	right: 1em;
}
.moreproducts{
	display: none;
}
.catalog{
	background: linear-gradient(90deg,rgba(255,252,218, 1) 15%, rgba(255,252,218, 0) 100%);
	padding: 0.6em 0;
	font-size: 0.9em;
	font-weight: 500;
	line-height: 1.4
}
.catalog a{
	color: var(--fontcollor);
	display: flex;
	align-items: center;
}
.catalog a:hover{
	color: var(--themecolor);
}
.catalog span{
	margin-right: 0.2em
}