@font-face {
    font-family: 'robotoregular';
    src: url('fonts/roboto-regular-webfont.eot');
    src: url('fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('fonts/roboto-regular-webfont.woff') format('woff'),
         url('fonts/roboto-regular-webfont.ttf') format('truetype'),
         url('fonts/roboto-regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserratregular';
    src: url('fonts/montserrat-regular-webfont.eot');
    src: url('fonts/montserrat-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('fonts/montserrat-regular-webfont.woff') format('woff'),
         url('fonts/montserrat-regular-webfont.ttf') format('truetype'),
         url('fonts/montserrat-regular-webfont.svg#montserratregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: 'robotoregular';
	font-size: 16px;
	line-height: 1.25;
	background: white;
	overflow-x: hidden;
	color: #4a4a4a;
}
body.fixed { overflow-y: hidden; }

*:focus { outline: none; }

form { margin: 0; padding: 0; }

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
a:hover { color: inherit; }
a.link { font-family: 'robotoregular'; font-size: 14px; color: #66276e; letter-spacing: 0.5px; text-transform: uppercase; }
a.link.link-sm { font-size: 11px; }
a.link:hover { color: #4e1355; }
a.block { display: block; }
.link-white { color: white; }

.btn {
  display: inline-block;
  height: 40px;
  padding: 0 50px;
  font-family: 'robotoregular';
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  color: #fc8502;
  border: 1px solid #eb7d05;
  background-color: transparent;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 0;
  text-transform: uppercase;
}
.btn:hover {
  background-color: #eb7d05;
  color: white;
}

.btn-full {
  width: 100%;
}

.btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-trans { border-color: #5c2975; background: #fff; color: #5c2975; }
.btn-trans:hover { border-color: #4d1f64; background: #fff; }
.btn-transb { border-color: transparent; background: transparent; color: #5c2975; }
.btn-transb:hover { border-color: transparent; background: transparent; color: #4d1f64; }

.btn-block { display: block; width: 100%; padding: 0; }
@media (max-width: 767px) {
  .btn-block-m { display: block; width: 100%; padding: 0; }
}

.form-group { position: relative; min-height: 1px; margin-bottom: 25px; }
.form-group label { display: block; font-family: 'robotoregular'; font-size: 14px; color: #4a4a4a; margin-bottom: 10px; text-align: left; }
.form-group label .star { color: #159f4a; }
.form-control { background-color: transparent; background-image: none; border: 1px solid #e1e1e1; border-radius: 3px; display: block; width: 100%; height: 50px; padding: 0 15px; font-family: 'robotoregular'; font-size: 15px; color: #4a4a4a; line-height: 38px; }
.form-control:focus { border-color: #a6a6a6; }
textarea.form-control { height: 120px; resize: none; line-height: 1.5; padding-top: 10px; padding-bottom: 10px; }

.custom-file { opacity: 0; position: absolute; width: 100%; left: 0; height: 36px; cursor: pointer; }
.custom-file-box { background-color: #232323; background-image: none; border: 2px dotted #333333; border-radius: 0; display: block; width: 100%; height: 40px; padding: 0 15px; font-family: 'robotoregular'; font-size: 14px; color: #a6a6a6; line-height: 38px; cursor: pointer; overflow: hidden; }

.form-control.error { border-color: #fa5454; }
.form-error { color: #fa5454; line-height: 24px; margin-top: 5px; text-align: left; }

.form-control::-moz-placeholder { color: #b3b3b3; }
.form-control:-ms-input-placeholder { color: #b3b3b3; }
.form-control::-webkit-input-placeholder { color: #b3b3b3; }
.form-control[disabled], .form-control[readonly] { background-color: #f8e9ff; border-color: #edc9ff; color: #909090; cursor: not-allowed; pointer-events: none; }

.input-sm { height: 35px; padding: 10.5px 15px; }

.custom-select { position: relative; cursor: pointer; text-align: center; display: block; vertical-align: middle; }
.custom-select .replacement { width: 100%; background: #fff; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; position: relative; font-family: 'robotoregular'; font-size: 18px; color: #222222; line-height: 1.5; padding-right: 30px; text-align: center; }
.custom-select .replacement:after { background: url('images/select.png') no-repeat; content: ''; width: 12px; height: 8px; display: block; top: 50%; margin-top: -4px; right: 0; position: absolute; }
.custom-select select { width: 100%; height: 100%; position: absolute; top: 0; left: 1px; z-index: 2; opacity: 0; filter: alpha(opacity=0); -webkit-appearance: none; text-align: center; }
.custom-select .replacement.error { border-color: #fa5454; }

.ccheckbox input[type="checkbox"].css-checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.ccheckbox input[type="checkbox"].css-checkbox + label.css-label {
  padding-left: 35px;
  display: inline-block;
  line-height: 24px;
  background-repeat: no-repeat;
  background-position: 0 2px;
  vertical-align: middle;
  cursor: pointer;
  font-family: 'robotoregular';
  font-size: 14px;
  color: #8e8e8e;
  letter-spacing: 0.5px;
}
.ccheckbox input[type="checkbox"].css-checkbox:checked + label.css-label {
  background-image: url('images/checkbox-checked.png');
}
.ccheckbox label.css-label {
  background-image:url('images/checkbox.png');
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cradio input[type="radio"].css-radio {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.cradio input[type="radio"].css-radio + label.css-label {
  padding-left: 35px;
  display: inline-block;
  line-height: 19px;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  cursor: pointer;
  font-family: 'robotoregular';
  font-size: 14px;
  color: #1a1a1a;
  letter-spacing: 0.25px;
}
.cradio input[type="radio"].css-radio:checked + label.css-label {
  background-image: url('images/radio-checked.png');
}
.cradio label.css-label {
  background-image:url('images/radio.png');
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cradio input[type="radio"].css-radio + label.css-label .title { font-family: 'robotoregular'; font-size: 16px; margin-bottom: 5px; }

.tbl { width: 100%; height: 100%; display: table; }
.tbl .trow { display: table-row; }
.tbl .tcell { display: table-cell; vertical-align: middle; }

.tbl-data { font-family: 'robotoregular'; font-size: 14px; color: #8e8e8e; line-height: 24px; }
.tbl-data .thead { font-size: 16px; color: #000; }
.tbl-data .tcell { padding: 10px 20px 10px 0; border-bottom: 1px solid transparent; }
.tbl-data .thead .tcell { padding-bottom: 30px; border-color: #e6bbff; }
.tbl-data .trow:first-child .tcell { padding-top: 0; }
.tbl-data .tcell:last-child { padding-right: 0; }
.tbl-data a { color: #5c2975; }

.nav { margin: 0; padding: 0; list-style: none; }
.nav-inline { font-size: 0; }
.nav > li { margin: 0; padding: 0; }
.nav-inline > li { display: inline-block; }

img { max-width: 100%; }

h1 { font-size: 42px; font-weight: bold; color: #159f4a; margin-bottom: 20px; font-family: 'montserratregular'; }
.page-banner h1 { margin-bottom: 0; }
h2 { font-size: 34px; font-weight: bold; color: #159f4a; margin-bottom: 20px; font-family: 'montserratregular'; }
h3 { font-family: 'montserratregular'; font-size: 22px; font-weight: bold; margin-bottom: 40px; }

@media (max-width: 768px) {
	body { font-size: 14px; line-height: 2; }
	h2 { font-size: 21px; }
	.page-banner h1 { font-size: 30px; }
}

header { padding: 12px; position: fixed; top: 0; width: 100%; z-index: 10; background: white; }
header img { height: 72px; transition: all .4s ease; }
header .header-menu { height: 72px; font-size: 13px; font-weight: bold; font-family: 'montserratregular'; transition: all .3s ease; }
header .header-menu ul { margin: 0; padding: 0; }
header .header-menu ul li { list-style: none; display: inline; margin: 0 25px; transition: all .3s ease; }
header .header-menu ul li:hover { color: #159f4a; }
header .header-menu ul.header-menu-left li:last-child { margin-right: 0; }
header .header-menu ul.header-menu-right li:first-child { margin-left: 0; }
header.fixed img { height: 48px; }
header.fixed .header-menu { height: 48px; }
header .menu { width: 15px; height: 14px; content: ''; position: absolute; background: url('images/menu.png') no-repeat 0 0; top: 50%; right: 10px; margin-top: -7px; cursor: pointer; }
body.open .menu { display: none; }
body .close { width: 14px; height: 14px; content: ''; position: absolute; background: url('images/close.png') no-repeat 0 0; top: 50%; right: 10px; margin-top: -7px; cursor: pointer; display: none; }
body.open .close { display: block; }

@media (max-width: 768px) {
	header img { height: 51px; }
	header.fixed img { height: 51px; }
	header .header-menu { height: 51px; }
}

footer { background: #e7f1d3; padding: 70px 0; font-size: 14px; }
footer ul { margin: 0; padding: 0; }
footer .footer-menu ul li { list-style: none; font-family: 'robotoregular'; line-height: 1.75; transition: all .3s ease; }
footer .footer-menu ul li a:hover { color: black; }
footer .footer-menu ul li:hover { list-style: none; font-family: 'robotoregular'; line-height: 1.75; }
footer .footer-menu ul li:first-child { font-size: 13px; font-weight: bold; font-family: 'montserratregular'; margin-bottom: 5px; }
footer .copyright { margin-top: 70px; }

@media (max-width: 768px) {
	footer { padding: 35px 0; }
	footer .copyright { text-align: center; margin-top: 0; line-height: 1.5; }
}

body .mobile-menu { background: white; position: fixed; top: 55px; left: 0; width: 100%; height: 100%; z-index: 9; text-align: center; transition: all .3s ease; padding-top: 30px; font-size: 15px; font-weight: bold; font-family: 'montserratregular'; opacity: 0; filter:alpha(opacity=0); visibility: hidden; }
body .mobile-menu.fixed { top: 51px; padding-top: 15px; }
body.open .mobile-menu { top: 75px; opacity: 1; filter:alpha(opacity=100); visibility: visible; }
body.open .mobile-menu.fixed { top: 71px; }
.mobile-menu ul { margin: 0; padding: 0; }
.mobile-menu ul li { list-style: none; padding: 20px; transition: all .3s ease; }
.mobile-menu ul li:hover { color: #159f4a; }

@media (min-width: 769px) {
	.mobile-menu { display: none; }
}

.email { color: #159f4a; transition: all .3s ease; }
.email:hover { color: #159f4a; text-decoration: underline; }
.pixaal:hover { color: black; }

.sosmed ul li { display: inline; margin-left: 30px; }
.sosmed ul li:first-child { margin-left: 0; }
.sosmed .fb { width: 8px; height: 15px; background: url('images/sosmed.png') no-repeat left 0; transition: all .3s ease; }
.sosmed .fb:hover { background-position: left bottom; }
.sosmed .tw { width: 16px; height: 15px; background: url('images/sosmed.png') no-repeat -43px 0; transition: all .3s ease; }
.sosmed .tw:hover { background-position: -43px bottom; }
.sosmed .ig { width: 15px; height: 15px; background: url('images/sosmed.png') no-repeat right 0; transition: all .3s ease; }
.sosmed .ig:hover { background-position: right bottom; }

@media (max-width: 992px) {

}

@media (max-width: 768px) {
	.sosmed { text-align: center; margin-bottom: 20px; }
}

.content { margin-top: 96px; }
.content .category a { display: block; text-align: center; }
.content .category > .container { width: auto; padding: 0px 15px; }
.content .category > .container > .row > div { margin-bottom: 8px; padding-left: 5px; padding-right: 5px; transition: all .3s ease; }
.content .category > .container > .row > div:hover { opacity: 0.85; filter:alpha(opacity=85); }
.content .highlightbox { height: 477px; text-align: center; font-family: 'montserratregular'; text-align: center; padding: 0 300px; line-height: 1.25; margin-bottom: 10px; }
.content .highlightbox .text { font-family: 'robotoregular'; line-height: 2; }
.content .history { padding: 100px 300px 120px 300px; }
.content .history .text { font-family: 'robotoregular'; line-height: 2; }

@media (max-width: 992px) {
	.content .highlightbox { padding: 150px; }
	.content .history { padding: 150px; }
}

@media (max-width: 768px) {
	.content { margin-top: 75px; }
	.content .highlightbox { padding: 30px; height: 315px; }
	.content .history { padding: 30px; }
}

@media (max-width: 600px) {
	.content .category > .container > .row > div { width: 100%; }
}

.green { background: #159f4a; color: white; font-family: 'montserratregular'; border: none; border-radius: 4px; padding: 16px 64px; transition: all .3s ease; }
.green:hover { background: #0e893d; }

#slider { height: 560px; margin-bottom: 10px; }
#slider .item { height: 560px; font-size: 42px; font-weight: bold; font-family: 'montserratregular'; text-align: center; color: #159f4a; padding: 0 250px; line-height: 1.25; }
#slider.owl-theme .owl-dots .owl-dot span { width:14px; height: 14px; background: transparent url('images/slider-dots.png') no-repeat right 0; }
#slider.owl-theme .owl-dots .owl-dot.active span, #slider.owl-theme .owl-dots .owl-dot:hover span { width: 14px; height: 14px; background: transparent url('images/slider-dots.png') no-repeat left 0; }
#slider.owl-theme .owl-controls { position: absolute; bottom: 14px; width: 100%; }

@media (max-width: 992px) {
	#slider .item { padding: 0 125px; }
}

@media (max-width: 768px) {
	#slider { height: 520px; }
	#slider .item { padding: 0 25px; font-size: 30px; height: 520px; }
}

.page-banner { height: 350px; margin-bottom: 100px; }

@media (max-width: 768px) {
	.page-banner { margin-bottom: 43px; }
}

.product-category { margin-bottom: 70px; display: inline-block; }
.product-category .replacement { font-family: 'montserratregular'; font-weight: bold; font-size: 24px; text-align: center; }
.product-category select { text-align: center; outline: 0px; }

@media (max-width: 768px) {
	.product-category { margin-bottom: 35px; }
	.product-category .replacement { font-size: 18px; }
	.product-category select { font-size: 16px; }
}

.product-list > div { margin-bottom: 75px; }
.product-list > div:nth-child(4n+1) { clear: both; }
.product-list .sku { font-family: 'montserratregular'; font-size: 15px; line-height: 3; margin-top: 10px; }
.product-list .title { font-family: 'montserratregular'; font-size: 16px; line-height: 1.25; padding: 0 10px; }
.product-list a { display: block; text-align: center; transition: all .3s ease; }
.product-list a:hover img { opacity: 0.85; filter:alpha(opacity=85); }
.product-list a:hover .title { color: black; }

@media (max-width: 768px) {
	.product-list > div { margin-bottom: 35px; }
}

.pagination { font-size: 16px; font-family: 'robotoregular'; margin-bottom: 140px; }
.pagination .paging-left { width: 8px; height: 12px; background: url('images/paging.png') no-repeat left 0; cursor: pointer; transition: all .3s ease; }
.pagination .paging-left:hover { background-position: left bottom; }
.pagination .paging-right { width: 8px; height: 12px; background: url('images/paging.png') no-repeat right 0; cursor: pointer; transition: all .3s ease; }
.pagination .paging-right:hover { background-position: right bottom; }
.pagination ul { margin: 0; padding: 0; }
.pagination ul li { list-style: none; display: inline-block; margin: 0 10px; }

.pagination a, .pagination strong { padding: 0 10px; }

@media (max-width: 768px) {
	.pagination { margin-bottom: 70px; }
}

.product-detail { margin: 100px 0 140px 0; }
.product-detail .sku { font-size: 24px; font-family: 'robotoregular'; margin-bottom: 20px; }
.product-detail .title { font-family: 'montserratregular'; font-size: 24px; line-height: 1.25; margin-bottom: 30px; }
.product-detail .desc { line-height: 1.5; margin-bottom: 60px; }

@media (max-width: 768px) {
	.product-detail { margin: 0 0 70px 0; }
	.product-detail .sku { font-size: 18px; margin-top: 20px; }
	.product-detail .title { font-size: 18px; line-height: 1.6; }
}

.share { margin-bottom: 30px; }
.share ul { margin: 0; padding: 0; }
.share ul li { list-style: none; display: inline-block; margin-right: 30px; }
.share .fb { width: 8px; height: 15px; background: url('images/share.png') no-repeat left 0; }
.share .fb:hover { background: url('images/sosmed.png') no-repeat left bottom; }
.share .tw { width: 16px; height: 15px; background: url('images/share.png') no-repeat -43px 0; }
.share .tw:hover { background: url('images/sosmed.png') no-repeat -43px bottom; }
.share .gp { width: 23px; height: 15px; background: url('images/share.png') no-repeat -94px 0; }
.share .gp:hover { background: url('images/share2.png') no-repeat left 0; }
.share .pi { width: 12px; height: 15px; background: url('images/share.png') no-repeat right 0; }
.share .pi:hover { background: url('images/share2.png') no-repeat right 0; }

.back { position: relative; padding-left: 20px; font-size: 15px; line-height: 1; }
.back:hover { color: #159f4a; }
.back:before { width: 8px; height: 12px; background: url('images/paging.png') no-repeat left 0; content: ''; position: absolute; top: 50%; left: 0; margin-top: -6px; }
.back:hover:before { background-position: left bottom; }

.category-list { margin-bottom: 70px; }
.category-list img { margin-bottom: 40px; }
.category-list .row > div { margin-bottom: 70px; }
.category-list .title { font-family: 'montserratregular'; font-size: 18px; padding: 0 10px; }
.category-list a { display: block; text-align: center; transition: all .3s ease; }
.category-list a:hover img { opacity: 0.85; filter:alpha(opacity=85); }
.category-list a:hover .title { color: black; }

@media (max-width: 768px) {
	.category-list { margin-bottom: 0; }
	.category-list img { margin-bottom: 20px; }
	.category-list .row > div { margin-bottom: 35px; }
}

@media (max-width: 600px) {
	.category-list .row > div { width: 100%; }
}

.blank { margin-bottom: 140px; line-height: 2; }

@media (max-width: 768px) {
	.blank { margin-bottom: 35px; }
}

.news-list > div { margin-bottom: 75px; }
.news-list > div:nth-child(4n+1) { clear: both; }
.news-list .date { font-family: 'montserratregular'; font-size: 15px; line-height: 3; text-transform: uppercase; }
.news-list .title { font-family: 'montserratregular'; font-size: 16px; line-height: 1.25; padding: 0 10px; }
.news-list a { display: block; text-align: center; transition: all .3s ease; }
.news-list a:hover img { opacity: 0.85; filter:alpha(opacity=85); }
.news-list a:hover .title { color: black; }

@media (max-width: 768px) {
	.news-list > div { margin-bottom: 35px; }
}

@media (max-width: 460px) {
	.news-list > div { width: 100%; }
}

.news-detail { margin-top: 70px; margin-bottom: 140px; }
.news-detail .date { font-size: 18px; font-family: 'robotoregular'; margin-bottom: 20px; }
.news-detail .title { font-family: 'montserratregular'; font-size: 24px; line-height: 1.25; margin-bottom: 40px; }
.news-detail .share ul li { margin: 0; margin-left: 30px; }

@media (max-width: 768px) {
	.news-detail { margin-top: 35px; margin-bottom: 35px; }
	.news-detail .title { font-size: 18px; line-height: 1.6; }
}

.contact { margin-bottom: 140px; }
.left-contact { width:calc(50% + 1px);float:left;text-align:center;border-right:1px solid #e1e1e1;padding: 0 10px; }
.right-contact { width:calc(50% - 1px);float:right;text-align:center;padding: 0 10px; }

@media (max-width: 768px) {
	.contact { margin-bottom: 35px; }
	.left-contact { width:100%;float:none;border:none;padding: 0 10px; margin-bottom: 40px; }
	.right-contact { width:100%;float:none;text-align:center;padding: 0 10px; }
}

.search { width: 15px; height: 15px; background: url('images/search.png') no-repeat right 0; position: absolute; top: 50%; right: 0; margin-top: -7.5px; margin-right: 50px; cursor: pointer; }
.search:hover { background-position: left 0; }

#search { position: absolute; top: 0; left: 0; background: white; width: 100%; height: 96px; z-index: 999; padding: 0 60px; transition: all .3s ease; opacity: 0; filter: alpha(opacity=0); visibility: hidden; }
#search.open { opacity: 1; filter: alpha(opacity=100); visibility: visible; }
#search input { border: none; font-family: 'montserratregular'; font-weight: bold; font-size: 13px; }
#search input::-webkit-input-placeholder { font-family: 'montserratregular'; font-weight: bold; font-size: 13px; color: #4a4a4a; opacity: 1; }
#search input:-moz-placeholder { font-family: 'montserratregular'; font-weight: bold; font-size: 13px; color: #4a4a4a; opacity: 1; }
#search input::-moz-placeholder { font-family: 'montserratregular'; font-weight: bold; font-size: 13px; color: #4a4a4a; opacity: 1; }
#search input:-ms-input-placeholder { font-family: 'montserratregular'; font-weight: bold; font-size: 13px; color: #4a4a4a; opacity: 1; }
#search button[type="submit"] { position: absolute; left: 0; border: none; margin-left: 50px; }
#search.fixed { height: 72px; }

@media (max-width: 768px) {
	.search { left: 0; margin-left: 25px; right: inherit; }
	#search { height: 75px; padding: 0 20px 0 35px; }
	#search.fixed { height: 75px; }
	#search button[type="submit"] { margin-left: 25px; }
}

.product-search { font-family: 'montserratregular'; font-weight: bold; font-size: 22px; margin-bottom: 50px; }

@media (max-width: 768px) {
	.product-search { margin-bottom: 25px; }
}