@media only screen and (min-width:768px) {
	.wapper  {
		padding-top: 85px;
	}
}
/*====*/
.float-none {
	float: none !important;
}
.wrap-order {
	z-index: 99;
}
/*====*/
#header {
	background: #78BC1C;
	padding: 0 15px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9996;
}
#header .header-wrap {
	display: flex;
	flex-wrap: wrap;
	max-width: 1400px;
	margin: 0 auto;
	height: 75px;
}
#header .header-logo {
	display: flex;
	align-items: center;
}
#header .header-logo a {
	display: inline-block;
}
#header .header-menu .menu-links,
#header .header-menu .menu-links ul.lv1,
#header .header-menu .menu-links ul.lv1 > li > a {
	height: 100%;
}
#header .header-menu .menu-links ul {
	list-style-type: none;
}
#header .header-menu .menu-links ul.lv1 {
	display: flex;
	justify-content: center;
}
#header .header-menu .menu-links ul li {
	position: relative;
}
#header .header-menu .menu-links ul li:hover ul {
	display: block;
}
#header .header-menu .menu-links ul.lv1 > li > a {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
@media only screen and (min-width:768px) {
	#header .header-menu .menu-links ul.lv1 > li > a {
		font-size: 12px;
	}
}
@media only screen and (min-width:992px) {
	#header .header-menu .menu-links ul.lv1 > li > a {
		font-size: 13px;
	}
}
@media only screen and (min-width:1200px) {
	#header .header-menu .menu-links ul.lv1 > li > a {
		font-size: 15px;
	}
}
#header .header-menu .menu-links ul.lv1 > li > a span {
	background: transparent;
	border-radius: 999px;
	display: inline-block;
	padding: 3px 24px;
	-webkit-transition: all .2s;
	   -moz-transition: all .2s;
	    -ms-transition: all .2s;
	     -o-transition: all .2s;
	        transition: all .2s;
}
@media only screen and (min-width:768px) {
	#header .header-menu .menu-links ul.lv1 > li > a span {
		padding: 3px 7px;
	}
}
@media only screen and (min-width:992px) {
	#header .header-menu .menu-links ul.lv1 > li > a span {
		padding: 3px 10px;
	}
}
@media only screen and (min-width:1400px) {
	#header .header-menu .menu-links ul.lv1 > li > a span {
		padding: 3px 24px;
	}
}
#header .header-menu .menu-links ul.lv1 > li > a:hover span {
	background: #fff;
	color: #78BC1C;
}
#header .dropdown-menu {
	border: none;
	border-radius: 0;
	margin: 0;
}
#header .header-status {
	display: flex;
	align-items: center;
	border-left: 1px solid #9FE441;
	padding-left: 40px;
}
@media only screen and (min-width:768px) {
	#header .header-status {
		padding-left: 15px;
	}
}
@media only screen and (min-width:1200px) {
	#header .header-status {
		padding-left: 40px;
	}
}
#header .header-status .status-cart {
	position: relative;
	width: 25px;
	flex: 0 0 auto;
	margin-right: 30px;
}
#header .header-status .status-cart .ico-cart {
	display: block;
}
#header .header-status .status-cart .quantity {
	background: #EB1A1A;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	text-align: center;
	line-height: 14px;
	color: #fff;
	font-size: 7px;
	display: block;
	position: absolute;
	top: -5px;
	right: -7px;
}
#header .header-status .header-search {
	max-width: 228px;
	width: 100%;
}
#header .header-status .header-search form {
	position: relative;
}
#header .header-status .header-search .form-search input.input-keyword {
	height: 30px;
	border-radius: 999px;
	background: #fff;
	padding: 0 24px;
	font-size: 13px;
	color: #000;
	outline: 0;
	border: none;
	font-style: italic;
	width: 100%;
	box-shadow: 0px 2px 10px rgba(0,0,0,.2);
}
#header .header-status .header-search .form-search button {
	position: absolute;
	background: none;
	outline: 0;
	border: none;
	width: 40px;
	height: 30px;
	right: 0;
	top: 0;
}

/*===footer===*/
#cta-icon {
	position: fixed;
	width: 60px;
	right: 0;
	top: 50%;
	z-index: 2000;
	background: #fff;
	box-shadow: -2px 0px 10px rgba(0,0,0,.1);
	border-radius: 10px 0 0 10px;
	-webkit-border-radius: 10px 0 0 10px;
	-moz-border-radius: 10px 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	-webkit-transform: translate(0,-50%);
	   -moz-transform: translate(0,-50%);
	    -ms-transform: translate(0,-50%);
	     -o-transform: translate(0,-50%);
	        transform: translate(0,-50%);
}
#cta-icon a {
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}
#cta-icon .cs-ring {
	position: absolute;
  border: 1px solid #dc3545;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  -webkit-animation: pulsate 1s ease-out;
  -moz-animation: pulsate 1s ease-out;
  -ms-animation: pulsate 1s ease-out;
  -o-animation: pulsate 1s ease-out;
  animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
#cta-icon a.cta-phone {
	border-radius: 10px 0 0 0;
	-webkit-border-radius: 10px 0 0 0;
	-moz-border-radius: 10px 0 0 0;
}
#cta-icon a.cta-phone i {
	color: #dc3545;
	-webkit-animation: swing ease-in-out .2s infinite alternate;
    -moz-animation: swing ease-in-out .2s infinite alternate;
    -ms-animation: swing ease-in-out .2s infinite alternate;
    -o-animation: swing ease-in-out .2s infinite alternate;
    animation: swing ease-in-out .2s infinite alternate;
}
#cta-icon a.cta-form i {
	color: #fe9329;
}
@-webkit-keyframes swing {
	0% {
		-webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
	}
	100% {
		-webkit-transform: rotate(-10deg);
		   -moz-transform: rotate(-10deg);
		    -ms-transform: rotate(-10deg);
		     -o-transform: rotate(-10deg);
		        transform: rotate(-10deg);
	}
    
}
@-moz-keyframes swing {
	0% {
		-webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
	}
	100% {
		-webkit-transform: rotate(-10deg);
		   -moz-transform: rotate(-10deg);
		    -ms-transform: rotate(-10deg);
		     -o-transform: rotate(-10deg);
		        transform: rotate(-10deg);
	}
    
}
@-ms-keyframes swing {
	0% {
		-webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
	}
	100% {
		-webkit-transform: rotate(-10deg);
		   -moz-transform: rotate(-10deg);
		    -ms-transform: rotate(-10deg);
		     -o-transform: rotate(-10deg);
		        transform: rotate(-10deg);
	}
    
}
@keyframes pulsate {
	0% {
		-webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    transform: rotate(10deg);
	}
	100% {
		-webkit-transform: rotate(-10deg);
		   -moz-transform: rotate(-10deg);
		    -ms-transform: rotate(-10deg);
		     -o-transform: rotate(-10deg);
		        transform: rotate(-10deg);
	}

}

@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(.1,.1);
    -moz-transform: scale(.1,.1);
    -ms-transform: scale(.1,.1);
    -o-transform: scale(.1,.1);
    transform: scale(.1,.1);
    opacity: 0;
	}
	50% {
    opacity: 1;
}
	100% {
		-webkit-transform: scale(2,2);
    -moz-transform: scale(2,2);
    -ms-transform: scale(2,2);
    -o-transform: scale(2,2);
    transform: scale(2,2);
    opacity: 0;
	}
    
}
@-moz-keyframes pulsate {
	0% {
		-webkit-transform: scale(.1,.1);
    -moz-transform: scale(.1,.1);
    -ms-transform: scale(.1,.1);
    -o-transform: scale(.1,.1);
    transform: scale(.1,.1);
    opacity: 0;
	}
	50% {
    opacity: 1;
}
	100% {
		-webkit-transform: scale(2,2);
    -moz-transform: scale(2,2);
    -ms-transform: scale(2,2);
    -o-transform: scale(2,2);
    transform: scale(2,2);
    opacity: 0;
	}
    
}
@-ms-keyframes pulsate {
	0% {
		-webkit-transform: scale(.1,.1);
    -moz-transform: scale(.1,.1);
    -ms-transform: scale(.1,.1);
    -o-transform: scale(.1,.1);
    transform: scale(.1,.1);
    opacity: 0;
	}
	50% {
    opacity: 1;
}
	100% {
		-webkit-transform: scale(2,2);
    -moz-transform: scale(2,2);
    -ms-transform: scale(2,2);
    -o-transform: scale(2,2);
    transform: scale(2,2);
    opacity: 0;
	}
    
}
@keyframes pulsate {
	0% {
		-webkit-transform: scale(.1,.1);
    -moz-transform: scale(.1,.1);
    -ms-transform: scale(.1,.1);
    -o-transform: scale(.1,.1);
    transform: scale(.1,.1);
    opacity: 0;
	}
	50% {
    opacity: 1;
}
	100% {
		-webkit-transform: scale(2,2);
    -moz-transform: scale(2,2);
    -ms-transform: scale(2,2);
    -o-transform: scale(2,2);
    transform: scale(2,2);
    opacity: 0;
	}

}
    
#cta-icon a.cta-messenger {
	border-radius: 0 0 0 10px;
	-webkit-border-radius: 0 0 0 10px;
	-moz-border-radius: 0 0 0 10px;
}
#cta-icon a.cta-messenger .ico_messenger {
	background: url('../img/ico_messenger.svg') 0 0/100% auto no-repeat;
	width: 27px;
	height: 27px;
	display: inline-block;
}
#cta-icon a.cta-messenger:hover .ico_messenger {
	background: url('../img/ico_messenger_w.svg') 0 0/100% auto no-repeat;
}
#cta-icon a:not(:last-child) {
	border-bottom: 1px solid #dee2e6;
}
#cta-icon a i {
	font-size: 27px;
	color: #78BC1C;
}
#cta-icon a:hover {
	background: #78BC1C;
}
#cta-icon a:hover i {
	color: #fff;
}
#cta-icon a:hover .cs-ring {
	border-color: #fff;
}
@media only screen and (max-width:767px) {
	#cta-icon {
		display: none;
	}
}

/*=====*/
.banner-left1 a,
.banner-left2 a,
.banner-left3 a {
    overflow: hidden;
    display: block;
}
.banner-left1 a img,
.banner-left2 a img,
.banner-left3 a img {
    -webkit-transition: all .2s;
       -moz-transition: all .2s;
        -ms-transition: all .2s;
         -o-transition: all .2s;
            transition: all .2s;
}
.banner-left1 a:hover img,
.banner-left2 a:hover img,
.banner-left3 a:hover img {
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}
#cate-product {
	padding-top: 40px;
    margin-top: 70px;
    background: url(../img/bg-cate.png);
    background-repeat: no-repeat;
    background-position: center top;
}
#cate-product .row {
	margin: 0 -10px;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 10px;
}
#cate-product .wrap-item:after {
	display: none;
}
#cate-product .wrap-item {
	padding: 10px;
}
#cate-product .wrap-item a {
	display: block;
	-webkit-transition: all .2s;
	   -moz-transition: all .2s;
	    -ms-transition: all .2s;
	     -o-transition: all .2s;
	        transition: all .2s;
}
#cate-product .wrap-item .img {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 15px;
}
#cate-product .wrap-item .img img {
	width: 100%;
	display: block;
	border-radius: 100%;
	border: 4px solid transparent;
	padding: 2px;
	max-width: 104px;
	filter: grayscale(1);
	-webkit-transition: all .2s;
	   -moz-transition: all .2s;
	    -ms-transition: all .2s;
	     -o-transition: all .2s;
	        transition: all .2s;
}
#cate-product .wrap-item .ttl {
	font-size: 15px;
	text-align: center;
}
#cate-product .wrap-item p {
	text-align: center;
	font-size: 13px;
	line-height: 17px;
	margin-top: 5px;
	font-style: italic;
}
#cate-product .wrap-item a:hover {
	color: #78BC1C;
}
#cate-product .wrap-item a:hover .img img {
	border-color: #78BC1C;
	filter: grayscale(0);
	box-shadow: -5px 0px 5px rgba(0,0,0,.1);
}
#category .item span {
	font-weight: 700;
	font-size: 15px;
}
.cate-divu .item p {
	font-style: italic;
	font-size: 13px;
	line-height: 17px;
}
#category .item:hover * {
	color: #78BC1C;
}
#category .item .img .round {
	border-color: transparent;
	display: none;
}
#category .item .img {
	overflow: hidden;
	margin: 0 auto;
	width: initial;
	height: initial;
	border-radius: 0;
	text-align: center;
}
#category .item .img img {
	border: 4px solid transparent;
	max-width: 104px;
	border-radius: 100%;
	width: 100%;
	padding: 2px;
	filter: grayscale(1);
	-webkit-transition: all .2s;
	   -moz-transition: all .2s;
	    -ms-transition: all .2s;
	     -o-transition: all .2s;
	        transition: all .2s;
}
#category .item:hover .img img {
	border-color: #78BC1C;
	filter: grayscale(0);
	box-shadow: -5px 0px 5px rgba(0,0,0,.1);
}
#sale-hot.wapper-product-main {
	padding-top: 50px;
    margin-top: 70px;
    background: url(../img/bg-cate.png);
    background-repeat: no-repeat;
    background-position: center top;
}
#why-choice {
	margin: 80px 0 60px;
}
#why-choice .choice-title {
	text-align: center;
	font-size: 36px;
	color: #004123;
	font-weight: 400;
	margin-bottom: 50px;
}
#why-choice .choice-title span,
#why-choice .choice-title em {
	color: #78BC1C;
	font-style: normal;
}
#why-choice .choice-title span {
	font-weight: 700;
}
#why-choice .why-choice-outer {
	background: #D2E2CC;
}
#why-choice .why-choice-wrap {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	margin: 0 -10px;
	padding: 30px 0;
}
#why-choice .why-choice-wrap .choice-item {
	display: flex;
	align-items: center;
	padding: 30px 10px;
}
#why-choice .why-choice-wrap .choice-item .icon {
	width: 90px;
	flex: 0 0 auto;
	margin-right: 20px;
}
#why-choice .why-choice-wrap .choice-item .text {
	font-size: 16px;
	color: #004123;
}

#video-customer {
	margin-top: 60px;
	background: #F7FFEC;
	padding: 60px 0 0;
	margin-bottom: 60px;
}
#video-customer .video-customer-outer {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0 0 115px;
}
#video-customer .video-customer-outer:before {
	content: '';
	background: url('../img/video_bg_01.png') 0 0/100% auto no-repeat;
	width: 556px;
	height: 349px;
	position: absolute;
	bottom: -50px;
	left: 0;
	z-index: -1;
}
#video-customer .video-customer-outer:after {
	content: '';
	background: url('../img/video_bg_02.png') 0 0/100% auto no-repeat;
	width: 258px;
	height: 275px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
#video-customer .video-title {
	color: #F2D012;
	font-size: 30px;
	line-height: 1.4em;
	text-align: center;
	font-weight: 700;
	background: url(../img/bg-cate.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 250px auto;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
#video-customer .customer-block {
	display: flex;
	flex-wrap: wrap;
	max-width: 930px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
	box-shadow: 4px 7px 25px rgba(0,0,0,.1);
	position: relative;
}
#video-customer .customer-block:before {
	content: '';
	background: url('../img/video_bg_03.png') 0 0/100% auto no-repeat;
	width: 220px;
	height: 242px;
	position: absolute;
	right: -10%;
	top: -115px;
	z-index: -1;
}

#video-customer .customer-nav {
	width: 30%;
	padding: 15px 0;
}
#video-customer .customer-nav .slick-list {
	padding: 0 !important;
}
#video-customer .customer-slider {
	width: 70%;
	padding: 15px 0 15px 10px;
}
#video-customer .customer-slider .slick-list,
#video-customer .customer-slider .slick-track,
#video-customer .customer-slider .customer-item a {
	height: 100%;
}
#video-customer .customer-slider .customer-item a {
	display: block;
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
#video-customer .customer-slider .customer-item a:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,.66);
	z-index: -1;
}
#video-customer .customer-slider .customer-item a .ico-play {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
#video-customer .customer-nav .customer-nav-item {
	display: flex;
	flex-wrap: wrap;
	padding: 10px 6px;
	cursor: pointer;
	border-bottom: 1px solid #EAEAEA;
}
#video-customer .customer-nav .nav-item-img {
	width: 30%;
}
#video-customer .customer-nav .nav-item-ctn {
	width: 70%;
	padding-left: 10px;
	padding-right: 20px;
}
#video-customer .customer-nav .nav-item-ctn .ttl {
	font-weight: 700;
	font-size: 15px;
	line-height: 20px;
	color: #065821;
	margin-bottom: 5px;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-o-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}
#video-customer .customer-nav .nav-item-ctn .des {
	font-size: 11px;
	line-height: 15px;
	color: #065821;
	font-style: italic;
	margin-bottom: 0;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-o-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}
#video-customer .customer-nav .nav-item-img .img {
	display: block;
	padding-top: 88.8888%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
/*===*/

.block-cate {
	border-top: none;
}
.block-cate .title-cate {
	font-size: 25px;
	font-weight: 400;
	border-bottom: 1px solid;
	padding-bottom: 15px;
	-webkit-transition: all .2s;
	   -moz-transition: all .2s;
	    -ms-transition: all .2s;
	     -o-transition: all .2s;
	        transition: all .2s;
}
.block-cate .title-cate:hover {
	color: #78BC1C;
}
.slider-arrows-sides .slick-dots {
	bottom: -10px;
}
.slider-arrows-sides .slick-dots li button {
	background: #000;
}
.slider-arrows-sides .slick-dots li.slick-active button {
	background: #78BC1C;
}


#toc-button {
	display: none;
	width: 46px;
	height: 46px;
	position: fixed;
	left: 0;
	top: 50%;
	z-index: 9998;
	-webkit-transform: translate(0,-50%);
	   -moz-transform: translate(0,-50%);
	    -ms-transform: translate(0,-50%);
	     -o-transform: translate(0,-50%);
	        transform: translate(0,-50%);
}
#toc-trigger {
	width: 46px;
	height: 46px;
	border: 2px solid #000;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#toc-trigger i {
	font-size: 25px;
	line-height: 25px;
}
#toc-trigger-content {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 9999;
}
#toc-trigger-content .toc-close {
	color: #000;
	background: none;
	border: none;
	padding: 0;
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 0;
}
#toc-trigger-content .toc-close i {
	font-size: 20px;
}
#toc-trigger-content #toc-inner {
	
}
#toc-trigger-content #tocList {
	padding: 30px 20px 20px;
	
}

@media only screen and (max-width:767px) {
	#toc-button,
	#toc-trigger-content {
		display: none !important;
	}
}
.form-popup {
	padding: 0;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-mox-border-radius: 15px;
	overflow: hidden;
	max-width: 500px;
}
.form-popup .fancybox-close-small:after {
	color: #fff;
	font-size: 40px;
	top: 20px;
	right: 15px;
}
.form-popup .fancybox-close-small:hover:after {
	background: none;
}
.popup-formtuvan .popup-formtuvan-title {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  background: #78BC1C;
  color: #fff;
  padding: 25px 15px;
}
.popup-formtuvan .popup-formtuvan-description {
	background: #f8f9fa;
	padding: 15px;
	font-size: 16px;
	line-height: 20px;
	border-bottom: 1px solid #dee2e6;
	color: #737272;
	margin: 0;
}
.popup-formtuvan .row {
	display: flex;
	-moz-display: flex;
	-webkit-display: flex;
	flex-wrap: wrap;
	padding: 15px;
}
.popup-formtuvan .row input,
.popup-formtuvan .row textarea {
	width: 100%;
	border: 1px solid #ced4da;
	border-radius: 10px;
	height: 40px;
	color: #495057;
	padding: 0 10px;
}
.popup-formtuvan .row textarea {
	padding: 10px;
	resize: none;
	display: block;
	height: 100px;
}
.popup-formtuvan .row button {
	max-width: 200px;
  width: 100%;
  margin: 0 auto;
  display: block;
  background: #78BC1C;
  border: none;
  padding: 10px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  font-size: 16px;
}
.popup-formtuvan .form-group .row {
	padding: 0;
}