)

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(237, 246, 236, 1);
}
hr{
  border-top: 1px solid rgba(0, 0, 0, .2);
}
h1, h2, h3, h4, h5, h6 {
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  margin: 0 0 10px;
  padding-top: 3px;
}

legend{
  color: rgba(0, 0, 0, 1);
}

a {
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: rgba(0, 0, 0, .7);
  text-decoration: none;
  outline: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none
}
.about li{
    list-style: inside;
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: rgba(48, 126, 32, 1);
  border: none;
  border-radius: 40px;
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover, .primary-btn:focus {
  opacity: 0.9;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(48, 126, 32, .7);
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid rgba(0, 0, 0, 1);
  background-color: rgba(237, 246, 236, 1);
  width: 100%;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 40px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 1);
  background-color: rgba(237, 246, 236, 1);
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up, .input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 1);
  background-color: rgba(237, 246, 236, 1);
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-number .qty-up {
  right: 0;
  top: 0;
  border-bottom: 0px;
}

.input-number .qty-down {
  right: 0;
  bottom: 0;
}

.input-number .qty-up:hover, .input-number .qty-down:hover {
  background-color: #E4E7ED;
  color: #000;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: rgba(237, 246, 236, 1);
  border: 1px solid rgba(0, 0, 0, 1);
  height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.input-radio label, .input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"]+label span, .input-checkbox input[type="checkbox"]+label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #E4E7ED;
  background: #000;
}

.input-radio input[type="radio"]+label span {
  border-radius: 50%;
}

.input-radio input[type="radio"]+label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #000;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"]+label span:after {
  content: '✔';
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #000;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked+label span, .input-checkbox input[type="checkbox"]:checked+label span {
  background-color: #000;
  border-color: #000;
}

.input-radio input[type="radio"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked+label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption, .input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked~.caption, .input-checkbox input[type="checkbox"]:checked~.caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.section-title .title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0px;
}

.section-title .section-nav {
  float: right;
}

.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  display: inline-block;
  margin-right: 15px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  font-weight: 700;
  color: #000;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #000;
}

.section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 30px 0px;
  background: #FBFBFC;
  border-bottom: 1px solid #E4E7ED;
  margin-bottom: 30px;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li+li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li+li:before {
  content: '/';
  display: inline-block;
  color: #8D99AE;
  margin-right: 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: #8D99AE;
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: #000;
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(203, 241, 199, 1);
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  color: rgba(0, 0, 0, 1);
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a, .header-links li button {
  color: rgba(0, 0, 0, 1);
  background:transparent;
  border:0px
}

.header-links li a:hover, .header-links li button:hover {
  color: #000;
}

.header-links li i {
  //color: #000;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  background-color: rgba(203, 241, 199, 1);
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  max-height: 70px;
  width:auto
}

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
  padding: 15px 0px;
}

.header-search form {
  position: relative;
}

.header-search form .input-select {
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .input {
  width: 70%;
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.header-search form .search-btn {
  height: 40px;
  width: 30%;
  background: rgba(48, 126, 32, 1);
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  border: .5px solid rgba(0, 0, 0, 1);
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  //float: right;
  text-align: center;
  padding: 15px 0px;
}

.header-ctn>div, .header-ctn>div>div {
  display: inline-block;
}

.header-ctn>div+div, .header-ctn>div>div+div {
  margin-left: 15px;
}

.header-ctn>div>a, .header-ctn>div>div>a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: rgba(0, 0, 0, 1);
}

.header-ctn>div>a>i, .header-ctn>div>div>a>i {
  display: block;
  font-size: 18px;
}

.header-ctn>div>a>span, .header-ctn>div>div>a>span {
  font-size: 12px;
}

.header-ctn>div>a>.qty, .header-ctn>div>div>a>.qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: rgba(0, 0, 0, 1);
  background-color: rgba(48, 126, 32, 1);
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-drop {
  position: absolute;
  width: 300px;
  background: rgba(237, 246, 236, 1);
  padding: 15px;
  -webkit-box-shadow: 1px 1px 1px 2px #eee;
  box-shadow: 1px 2px 2px 1px #ccc;
  z-index: 99;
  //right: 0;
  display: none;
}

.dropdown.open>.cart-drop {
  opacity: 1;
  visibility: visible
}

.cart-drop .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-drop .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-drop .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-drop .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-drop .cart-list .product-widget .product-body .product-price {
  color: rgba(0, 0, 0, 1);
}

.cart-drop .cart-btns {
  margin: 0px -17px -17px;
  display: flex;
}

.cart-drop .cart-btns>a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: rgba(48, 126, 32, .5);
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-drop .cart-btns>a:first-child {
  background-color: rgba(48, 126, 32, 1);
  margin-left: 3px;
}

.cart-drop .cart-btns>a:hover {
  opacity: 0.9;
}

.cart-drop .cart-summary {
  border-top: 1px solid rgba(237, 246, 236, 1);
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
  background: rgba(203, 241, 199, .4);
  border-bottom: 2px solid rgba(0, 0, 0, 1);
  border-top: 2px solid rgba(0, 0, 0, 1);
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav>li+li {
  margin-left: 30px
}

.main-nav>li>a {
  padding: 20px 0px;
}

.main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
  color: rgba(48, 126, 32, 1);
  background-color: transparent;
}

.main-nav>li>a:after  {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: rgba(48, 126, 32, 1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav>li>a:hover:after, .main-nav>li>a:focus:after, .main-nav>li.active>a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(203, 241, 199, 1);
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 20px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    border-right: 1px solid rgba(0, 0, 0, 1);
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav>li {
    display: block;
    float: none;
  }
  .main-nav>li+li {
    margin-left: 0px;
  }
  .main-nav>li>a {
    padding: 15px;
    color: rgba(0, 0, 0, 1);
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
}

.shop:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  width: 60%;
  background: rgba(48, 126, 32, .8);
  opacity: 0.9;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.shop:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1px;
  width: 100%;
  background: rgba(48, 126, 32, .8);
  opacity: 0.9;
  -webkit-transform: skewX(-45deg) translateX(-100%);
  -ms-transform: skewX(-45deg) translateX(-100%);
  transform: skewX(-45deg) translateX(-100%);
}

.shop .shop-img {
  position: relative;
  background-color: rgba(48, 126, 32, .2);
  z-index: -1;
}

.shop .shop-img>img {
  width: 100%;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.shop:hover .shop-img>img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: #000;
}

.shop .shop-body .cta-btn {
  color: #000;
  text-transform: uppercase;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
  padding: 60px 0px;
  margin: 30px 0px;
  background-color: #E4E7ED;
  background-image: url('../img/hotdeal.png');
  background-position: center;
  background-repeat: no-repeat;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown>li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #000;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown>li>div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown>li>div h3 {
  color: #000;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown>li>div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #000;
}

.hot-deal p {
  text-transform: uppercase;
  font-size: 24px;
}

.hot-deal .cta-btn {
  margin-top: 15px;
}

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .5), 0px 0px 0px 2px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .5), 0px 0px 0px 1px rgba(0, 0, 0, 1);
  cursor: pointer
}

.product .product-img {
  position: relative;
  z-index:100;
}

.product .product-img>img {
  height: 250px;
  width: 250px
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product .product-img .product-label>span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label>span.sale {
  background-color: #000;
  border-color: #000;
  color: #000;
}

.product .product-img .product-label>span.new {
  background-color: #000;
  border-color: #000;
  color: #000;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: rgba(237, 246, 236, 1);
  text-align: center;
  z-index: 20;
  height: 120px
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0, 0, 0, 1);
  max-height: 30px;
  overflow: hidden;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
  background-color: transparent;
  color: rgba(0, 0, 0, 1);
  text-align: center;
  max-height: 30px;
  overflow: hidden;
}

.product .product-body .product-name>a {
  font-weight: 700;
}

.product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
  color: #000;
}

.product .product-body .product-price {
  color: rgba(48, 126, 32, 1);
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating>i {
  position: relative;
  width: 14px;
  //margin-right: -4px;
  background: #000;
  color: #E4E7ED;
  z-index: 10;
}

.product .product-body .product-rating>i.fa-star {
  color: #000;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #E4E7ED;
}

.product .product-body .product-btns>button {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  border: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover {
  background-color: #E4E7ED;
  color: #000;
  border-radius: 50%;
}

.product .product-body .product-btns>button .tooltipp {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #000;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-body .product-btns>button:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  padding: 15px;
  background: #1e1f29;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2
}

.product:hover .add-to-cart {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  border: 2px solid #000;
  margin-left:-3px;
  margin-right:-3px
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #000;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #000;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #000;
  color: #000;
  border-color: #000;
  padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
}

.product-widget+.product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
}

.product-widget .product-img>img {
  width: 60px;
  height: 60px;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8D99AE;
  height: 15px;
  overflow: hidden;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
  max-height: 30px;
  overflow: hidden;
}

.product-widget .product-body .product-name>a {
  font-weight: 700;
}

.product-widget .product-body .product-name>a:hover, .product-widget .product-body .product-name>a:focus {
  color: #000;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 31px;
  right: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 14px;
  padding: 0;
  border: none;
  color: rgba(0, 0, 0, 1);
}

.product-widget .product-img h4{
  padding-top: 12px;
  text-align: center;
}

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px
}

.products-tabs>.tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs>.tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 15px;
  z-index: 10;
}

.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}

.products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
  font-size: 14px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside+.aside {
  margin-top: 30px;
}

.aside>.aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 5px 0px 10px;
}

/*-- checkbox Filter --*/

.checkbox-filter>div+div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
  font-size: 12px;
}

.checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
  color: #8D99AE;
}

/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: rgba(48, 126, 32, 1);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(48, 126, 32, 1);
  border-radius: 0px;
}

.noUi-connect {
  background-color: rgba(48, 126, 32, 1);
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: rgba(48, 126, 32, 1);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before, .noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: rgba(237, 246, 236, 1);
  border: 1px solid rgba(48, 126, 32, 1);
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li+li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #E4E7ED;
  color: #000;
}

.store-grid li.active {
  background-color: rgba(48, 126, 32, 1);
  border-color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, 1);
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}

.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #000;
  border: 1px solid #E4E7ED;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li+li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #E4E7ED;
  color: #000;
}

.store-pagination li.active {
  background-color: #000;
  border-color: #000;
  color: #000;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 15px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #000;
}

#product-main-img img{
  height:465px
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #E4E7ED;
}

#product-imgs .product-preview.slick-current {
  border-color: #000;
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}

#product-imgs img{
  height: 153px
}

.product-preview img {
  width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  text-transform: uppercase;
  font-size: 18px;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating>i {
  color: #E4E7ED;
}

.product-details .product-rating>i.fa-star {
  color: #000;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #000;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8D99AE;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 30px;
  color: #000;
}

.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: 90px;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
}

.product-details .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: rgba(48, 126, 32, 1);
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product-details .add-to-cart .add-to-cart-btn>i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  color: #000;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: rgba(48, 126, 32, .7);
  color: rgba(0, 0, 0, 1);
  border-color: rgba(48, 126, 32, .9);
  padding: 0px 30px 0px 50px;
}

.product-details .add-to-cart .add-to-cart-btn:hover>i {
  opacity: 1;
  visibility: visible;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 90px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li+li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-links li+li {
  margin-left: 10px;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #E4E7ED;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #000;
  padding: 0px 15px;
}

#product-tab .tab-nav li+li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8D99AE;
}

#product-tab .tab-nav li.active a {
  color: #000;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.rating-avg>span{
  color: rgba(0, 0, 0, 1);
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars, .rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars>i, .rating .rating-stars>i {
  color: rgba(0, 0, 0, 1);
}
.rating-avg .rating-stars>i{
  margin:0px 5px 0px 5px;
}

.rating-avg .rating-stars>i.fa-star, .rating .rating-stars>i.fa-star {
  color: rgba(48, 126, 32, 1);
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: rgba(237, 246, 236, 1);
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress>div {
  background-color: rgba(48, 126, 32, 1);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: rgba(0, 0, 0, 1);
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
  max-height: 30px;
  overflow: hidden;
}

.reviews .review-heading .date {
  color: #8D99AE;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating .fa-trash {
  color: #ccc;
  font-size: 17px;
}
.reviews .review-heading .review-rating .fa-trash:hover {
  color: red;
  cursor:pointer
}

.reviews .review-heading .review-rating>i {
  color: #E4E7ED;
}

.reviews .review-heading .review-rating>i.fa-star {
  color: #000;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: rgba(237, 246, 236, 1);
  border: 1px solid rgba(0, 0, 0, 1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: rgba(48, 126, 32, .7);
  color: rgba(0, 0, 0, 1);
}

.reviews-pagination li.active {
  background-color: rgba(48, 126, 32, 1);
  border-color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, 1);
  cursor: default;
}

.reviews-pagination li.disabled {
  cursor:not-allowed;
  filter:alpha(opacity=65);
  -webkit-box-shadow:none;
  box-shadow:none;
  opacity:.65
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars>label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars>label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: rgba(0, 0, 0, 1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars>label:hover:before, .review-form .input-rating .stars>label:hover~label:before {
  content: "\f005";
  color: rgba(48, 126, 32, 1);
}

.review-form .input-rating .stars>input:checked label:before, .review-form .input-rating .stars>input:checked~label:before {
  content: "\f005";
  color: rgba(48, 126, 32, 1);
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;
  border-right: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-bottom: 1px solid #E4E7ED;
}

.order-details:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -15px;
  height: 30px;
  border-top: 1px solid #E4E7ED;
  border-left: 1px solid #E4E7ED;
  border-right: 1px solid #E4E7ED;
}

.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  display: table;
  width: 100%;
}

.order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
}

.order-summary .order-col>div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col>div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col>div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total {
  font-size: 24px;
  color: #000;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
  border-top: 2px solid #E4E7ED;
  border-bottom: 3px solid #000;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
}

.newsletter p {
  font-size: 24px;
}

.newsletter form {
  position: relative;
  max-width: 520px;
  margin: 30px auto;
}

.newsletter form:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #E4E7ED;
  top: 15px;
  -webkit-transform: translateY(-50%) rotate(15deg);
  -ms-transform: translateY(-50%) rotate(15deg);
  transform: translateY(-50%) rotate(15deg);
  z-index: -1;
  left: -90px;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: -4px;
  border-radius: 40px 0px 0px 40px;
}

.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #000;
  color: #000;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

.newsletter .newsletter-follow {
  text-align: center;
}

.newsletter .newsletter-follow li {
  display: inline-block;
  margin-right: 5px;
}

.newsletter .newsletter-follow li:last-child {
  margin-right: 0px;
}

.newsletter .newsletter-follow li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #E4E7ED;
  background-color: #000;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
  background-color: #000;
  color: #000;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: rgba(62, 109, 68, 1);
  color: rgba(0, 0, 0, 1);
}

#bottom-footer {
  background-color: rgba(62, 109, 68, 1);
  border-top: .5px solid rgba(0, 0, 0, .7);
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}

.footer-links li+li {
  margin-top: 15px;
}

.footer-links li a {
  color: rgba(0, 0, 0, 1);
}

.footer-links li i {
  margin-right: 15px;
  color: #000;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: rgba(48, 126, 32, 1);
}

.copyright {
  margin-top: 30px;
  display: block;
  font-size: 12px;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #000;
  font-size: 36px;
  display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(48, 126, 32, 1);
  background-color: rgba(48, 126, 32, 1);
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  color: rgba(0, 0, 0, 1);
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background-color: rgba(48, 126, 32, .7);
  border-color: rgba(48, 126, 32, .7);
}

.slick-prev:before, .slick-next:before {
  font-family: FontAwesome;
  color: rgba(0, 0, 0, 1);
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  color: #000;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #E4E7ED;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: #000;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

.sub-menu {
  list-style-type: none;
  position: absolute;
  top:0;
  left:100%;
  min-width: 178px;
  max-width: 225px;
  background-color: #000;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  padding: 5px 0;

  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);

  visibility: hidden;
  opacity: 0; 
}

.sub-menu a {
  font-size: 14px;
  line-height: 1.5;
  color: #555;

  display: block;
  padding: 8px 20px; 
  width: 100%;

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

@media only screen and (max-width: 1201px) {}

@media only screen and (max-width: 991px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
  .header-logo {
    float: none;
    text-align: center;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sub-menu {
    background-color: #15161D;
  }
  .sub-menu a{
    color: #000;
    margin-left:25px
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*='col-xs'] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}
.sub-menu li {
  position: relative;
  background-color: transparent;

  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.main-nav > li > .sub-menu {
  top:100%;
  left: 0;
}

.main-nav > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  z-index:9999
}

.sub-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
} 

.sub-menu li:hover {
  background-color: transparent;
}

.sub-menu > li:hover > a {
  color: #000;
  font-weight:bold;
  text-decoration: none
}

@media (max-width: 1300px) {
  .main-nav > .respon-sub-menu .sub-menu {
    right: 100%;
    left: auto;
  }

  .main-nav > .respon-sub-menu > .sub-menu {
    right: 0px;
    left: auto;
  }
}
*:focus {
    border: 0 none;
    outline: 0;
}
.img-carousel{
  width: 100%;
  height: 400px;
  /* opacity:0.6; */
}
.carousel-caption h5{
  font-size: 27px
}
.carousel-caption p{
  font-size: 19px;
  color: rgba(0, 0, 0, 1);
}
.dropdown-toggle{
  cursor:pointer
}
.section {
  display: none
}

#notfound {
  position: relative;
  height: 100vh;
}

#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.notfound {
  max-width: 767px;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  padding: 15px;
}

.notfound .notfound-404 {
  position: relative;
  height: 220px;
}

.notfound .notfound-404 h1 {
  font-family: 'Kanit', sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 186px;
  font-weight: 200;
  margin: 0px;
  background: linear-gradient(130deg, #000, #000);
  color:transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-transform: uppercase;
}

.notfound h2 {
  font-family: 'Kanit', sans-serif;
  font-size: 33px;
  font-weight: 200;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 25px;
  letter-spacing: 3px;
}


.notfound p {
  font-family: 'Kanit', sans-serif;
  font-size: 16px;
  font-weight: 200;
  margin-top: 0px;
  margin-bottom: 25px;
}


.notfound a {
  font-family: 'Kanit', sans-serif;
  color: #000;
  font-weight: 200;
  text-decoration: none;
  border-bottom: 1px dashed #000;
  border-radius: 2px;
}

.notfound-social>a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  width: 40px;
  font-size: 14px;
  color: #000;
  border: 1px solid #efefef;
  border-radius: 50%;
  margin: 3px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.notfound-social>a:hover {
  color: #000;
  background-color: #000;
  border-color: #000;
}

@media only screen and (max-width: 480px) {
  .notfound .notfound-404 {
    position: relative;
    height: 168px;
  }

  .notfound .notfound-404 h1 {
    font-size: 142px;
  }

  .notfound h2 {
    font-size: 22px;
  }
}
.login-container{
    margin-top: 5%;
    margin-bottom: 5%;
}
.login-logo{
    position: relative;
    margin-left: -41.5%;
}
.login-logo i{
    position: absolute;
    width: 15%;
    margin-top: 19%;
    background: rgba(48, 126, 32, 1);
    color: rgba(0, 0, 0, 1);
    border-radius: 5rem;
    padding: 5%;
    font-size: 25px;
    margin-left: 10px;
}
@media (max-width: 1200px) {
  .login-logo i{
      font-size: 32px;
  }
}
.login-form-1{
    padding: 9%;
    background:rgba(48, 126, 32, .5);
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
    min-height: 450.50px;
    max-height: 450.50px;
}
.login-form-1 h3{
    text-align: center;
    margin-bottom:12%;
    color:rgba(0, 0, 0, 1);
}
.login-form-2{
    padding: 9%;
    background: rgba(203, 241, 199, .5);
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
    min-height: 450.50px;
    max-height: 450.50px;
}
.login-form-2 h3{
    text-align: center;
    margin-bottom:12%;
    color:rgba(0, 0, 0, 1);
}
.btnSubmit{
    font-weight: 600;
    width: 50%;
    color: rgba(0, 0, 0, 1);
    background-color: rgba(48, 126, 32, 1);
    border: none;
    border-radius: 1.5rem;
    padding:2%;
}
.btnForgetPwd{
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
.btnForgetPwd:hover{
    text-decoration:none;
    color:#000;
}
.emp-profile{
    padding: 3%;
    margin-top: 3%;
    margin-bottom: 3%;
    border-radius: 0.5rem;
    background: #fff;
}
.profile-img{
    text-align: center;
}
.profile-img img{
    width: 200px;
    height: 200px
}
.profile-img .file {
    position: relative;
    overflow: hidden;
    margin-top: -20%;
    width: 70%;
    border: none;
    border-radius: 0;
    font-size: 15px;
    background: rgba(0, 0, 0, .4);
    font-weight: bold
}
.profile-img .file input {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
    height: 100%;
    cursor: pointer
}

.profile-img-admin{
    text-align: center;
}
.profile-img-admin img{
    width: 770px;
    height: 250px
}
.profile-img-admin .file {
    position: relative;
    overflow: hidden;
    margin-top: -20%;
    width: 70%;
    border: none;
    border-radius: 0;
    font-size: 15px;
    background: #212529b8;
}
.profile-img-admin .file input {
    position: absolute;
    opacity: 0;
    right: 0;
    top: 0;
    height: 100%;
    cursor: pointer
}
.profile-edit-btn{
    border: none;
    border-radius: 1.5rem;
    width: 70%;
    padding: 2%;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
}
.proile-rating{
    font-size: 12px;
    color: #818182;
    margin-top: 5%;
}
.proile-rating span{
    color: #495057;
    font-size: 15px;
    font-weight: 600;
}
.profile-head .nav-tabs{
    margin-bottom:5%;
}
.profile-head .nav-tabs .nav-link{
    font-weight:600;
    border: none;
}
.profile-head .nav-tabs .nav-link.active{
    border: none;
    border-bottom:2px solid rgba(0, 0, 0, 1);
}
.profile-work{
    padding: 14%;
    margin-top: -15%;
}
.profile-work p{
    font-size: 12px;
    color: #818182;
    font-weight: 600;
    margin-top: 10%;
}
.profile-work a{
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    font-size: 14px;
}
.profile-work ul{
    list-style: none;
}
.profile-tab label{
    font-weight: 600;
}
.profile-tab p{
    font-weight: 600;
    color: #0062cc;
}
h5.line-text {
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
}
h5.line-text {
  position: relative;
  z-index: 1;
}
h5.line-text:before {
  border-top: 1px solid rgba(0, 0, 0, 1);
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: -1;
}
h5.line-text span {
  background: rgba(237, 246, 236, 1);
  padding:5px
}
.checkbox-filter [type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.checkbox-filter [type="radio"]:checked + label,
.checkbox-filter [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: rgba(0, 0, 0, 1);
}
.checkbox-filter [type="radio"]:checked + label:before,
.checkbox-filter [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: rgba(48, 126, 32, 1);
}
.checkbox-filter [type="radio"]:checked + label:after,
.checkbox-filter [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 11px;
    height: 11px;
    background: rgba(0, 0, 0, 1);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.checkbox-filter [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.checkbox-filter [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{
  color: rgba(0, 0, 0, 1);
  background-color: rgba(48, 126, 32, 1);
  border-color:#dee2e6 #dee2e6 #fff
}
.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{
  background-color:rgba(48, 126, 32, .6);
  color: rgba(0, 0, 0, 1);
}
.nav-tabs>li>a{
  background-color:rgba(237, 246, 236, 1);
  color: rgba(0, 0, 0, 1);
  border:0px
}
.cart table tbody th, .cart table tbody td{
  vertical-align:middle;
  font-size:17px
}
.btn-not-bottom-border{
  background: transparent;
  border: 0px;
  color:#000
}
.btn-not-bottom-border:hover{
  color:#e31a1a
}
#msgReturn{
  display:none;
  padding-right:15px;
  padding-left:15px;
  margin-right:auto;
  margin-left:auto;
  margin-top:20px
}
@media (min-width:768px){
    #msgReturn{
        width:750px
    }
}
@media (min-width:992px){
    #msgReturn{
        width:970px
    }
}
@media (min-width:1200px){
    #msgReturn{
        width:1170px
    }
}
.carregar-mais{
  margin-bottom:30px;
  margin-top:60px
}
.titleForm>.nameTitleForm{
  background-color: rgba(48, 126, 32, 1);
  width:max-content;
  padding:6px;
  color: rgba(0, 0, 0, 1);
  font-weight: bold;
  border-top-right-radius:5px;
  border-top-left-radius:5px;
  margin-top:30px
}
.titleForm hr{
  border:1px solid rgba(48, 126, 32, 1);
  margin-top:-2px;
  margin-bottom:0px
}
.titleForm h3{
  background-color: rgba(203, 241, 199, 1);
  /* margin-left:30px; */
  /* margin-right:30px; */
  padding-top:20px;
  padding-bottom:20px;
  border-radius:5px;
  color: rgba(0, 0, 0, 1);
}
.returnInput{
  color:#C91010;
  font-weight:bold;
  display:none
}
.titleForm-admin h3{
  background-image: linear-gradient(to right, #140aff, #90dbff);
  margin-left:30px;
  margin-right:30px;
  padding-top:20px;
  padding-bottom:20px;
  border-radius:5px;
  color: #fff
}
.titleForm-admin>.nameTitleForm-admin{
  background-color: #140aff;
  width:max-content;
  padding:6px;
  color: #fff;
  font-weight: bold;
  border-top-right-radius:5px;
  border-top-left-radius:5px;
  margin-top:30px
}
.titleForm-admin hr{
  border:1px solid #007cb8;
  margin-top:-2px;
  margin-bottom:0px
}
.titleForm-admin hr.dashed{
  border:1px dashed #007cb8;
  margin-top:-2px;
  margin-bottom:0px
}
.itensCartLoad{
  display:none;
  padding-top:60px;
  padding-bottom:20px;
  background-color: rgba(0, 0, 0, 0.05);
  background-image: url('../img/pattern4.png');
  border-radius: 10px
}
.card-head{
  background-color: rgba(203, 241, 199, 1);
  border:1px solid rgba(0, 0, 0, 1);
  padding:20px;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  color: rgba(0, 0, 0, 1);
  font-size:18px;
  text-transform: uppercase;
}
.card-body{
  background-color: rgba(237, 246, 236, 1);
  border:1px solid rgba(0, 0, 0, 1);
  border-bottom-left-radius:5px;
  border-bottom-right-radius:5px;
  padding:20px;
  border-top:0px;
  color: rgba(0, 0, 0, 1);
}
.card-body a{
  text-transform:uppercase;
  font-weight: bold
}
.card-body button h5:hover{
  color: #000;
}
.card-body button{
  padding:0px
}
.categoryDisplay{
  display:none;
}
.categoryMush{
  cursor: pointer
}
.formSend > form > .form-group div{
  margin-top:10px
}
div[id*="mapa_"]{
    height: 200px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.btn{
    display:inline-block;
    padding:6px 12px;
    margin-bottom:0;
    font-size:14px;
    font-weight:400;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    background-image:none;
    border:1px solid transparent;
    border-radius:4px
}
.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{
    outline:5px auto -webkit-focus-ring-color;
    outline-offset:-2px
}
.btn.focus,.btn:focus,.btn:hover{
    color:#333;
    text-decoration:none
}
.btn.active,.btn:active{
    background-image:none;
    outline:0;
    -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);
    box-shadow:inset 0 3px 5px rgba(0,0,0,.125)
}
.btn.disabled,.btn[disabled],fieldset[disabled] .btn{
    cursor:not-allowed;
    filter:alpha(opacity=65);
    -webkit-box-shadow:none;
    box-shadow:none;
    opacity:.65
}
a.btn.disabled,fieldset[disabled] a.btn{
    pointer-events:none
}
.btn-default{
    color:#333;
    background-color:#fff;
    border-color:#ccc
}
.btn-default.focus,.btn-default:focus{
    color:#333;
    background-color:#e6e6e6;
    border-color:#8c8c8c
}
.btn-default:hover{
    color:#333;
    background-color:#e6e6e6;
    border-color:#adadad
}
.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{
    color:#333;
    background-color:#e6e6e6;
    border-color:#adadad
}
.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{
    color:#333;
    background-color:#d4d4d4;
    border-color:#8c8c8c
}
.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{
    background-image:none
}
.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{
    background-color:#fff;
    border-color:#ccc
}
.btn-default .badge{
    color:#fff;
    background-color:#333
}
.btn-primary{
    color:rgba(0, 0, 0, 1);
    background-color:rgba(48, 126, 32, .9);
    border-color:rgba(48, 126, 32, 1);
}
.btn-primary.focus,.btn-primary:focus{
    color:rgba(0, 0, 0, 1);
    background-color:rgba(48, 126, 32, .9);
    border-color:rgba(48, 126, 32, 1);
}
.btn-primary:hover{
    color:rgba(0, 0, 0, 1);
    background-color:rgba(48, 126, 32, .7);
    border-color:rgba(48, 126, 32, 5);
}
.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{
    color:rgba(0, 0, 0, 1);
    background-color:rgba(48, 126, 32, .9);
    border-color:rgba(48, 126, 32, 1);
}
.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{
    color: rgba(0, 0, 0, 1);
    background-color: rgba(48, 126, 32, .6);
    border-color: rgba(48, 126, 32, .8);
}
.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{
    background-image:none
}
.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{
  background-color:#000;
    border-color:#000
}
.btn-primary .badge{
    color:#337ab7;
    background-color:#fff
}



.btn-secondary{
    color:#fff;
    background-color:#000;
    border-color:#000
}
.btn-secondary.focus,.btn-secondary:focus{
    color:#fff;
    background-color:#000;
    border-color:#000
}
.btn-secondary:hover{
    color:#fff;
    background-color:#000;
    border-color:#000
}
.btn-secondary.active,.btn-secondary:active,.open>.dropdown-toggle.btn-secondary{
    color:#fff;
    background-color:#000;
    border-color:#000
}
.btn-secondary.active.focus,.btn-secondary.active:focus,.btn-secondary.active:hover,.btn-secondary:active.focus,.btn-secondary:active:focus,.btn-secondary:active:hover,.open>.dropdown-toggle.btn-secondary.focus,.open>.dropdown-toggle.btn-secondary:focus,.open>.dropdown-toggle.btn-secondary:hover{
    color:#fff;
    background-color:#000;
    border-color:#000
}
.btn-secondary.active,.btn-secondary:active,.open>.dropdown-toggle.btn-secondary{
    background-image:none
}
.btn-secondary.disabled.focus,.btn-secondary.disabled:focus,.btn-secondary.disabled:hover,.btn-secondary[disabled].focus,.btn-secondary[disabled]:focus,.btn-secondary[disabled]:hover,fieldset[disabled] .btn-secondary.focus,fieldset[disabled] .btn-secondary:focus,fieldset[disabled] .btn-secondary:hover{
  background-color:#000;
    border-color:#000
}
.btn-secondary .badge{
    color:#337ab7;
    background-color:#fff
}




.btn-success{
    color:#fff;
    background-color:#5cb85c;
    border-color:#4cae4c
}
.btn-success.focus,.btn-success:focus{
    color:#fff;
    background-color:#449d44;
    border-color:#255625
}
.btn-success:hover{
    color:#fff;
    background-color:#449d44;
    border-color:#398439
}
.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{
    color:#fff;
    background-color:#449d44;
    border-color:#398439
}
.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{
    color:#fff;
    background-color:#398439;
    border-color:#255625
}
.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{
    background-image:none
}
.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{
    background-color:#5cb85c;
    border-color:#4cae4c
}
.btn-success .badge{
    color:#5cb85c;
    background-color:#fff
}
.btn-info{
    color:#fff;
    background-color:#5bc0de;
    border-color:#46b8da
}
.btn-info.focus,.btn-info:focus{
    color:#fff;
    background-color:#31b0d5;
    border-color:#1b6d85
}
.btn-info:hover{
    color:#fff;
    background-color:#31b0d5;
    border-color:#269abc
}
.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{
    color:#fff;
    background-color:#31b0d5;
    border-color:#269abc
}
.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{
    color:#fff;
    background-color:#269abc;
    border-color:#1b6d85
}
.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{
    background-image:none
}
.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{
    background-color:#5bc0de;
    border-color:#46b8da
}
.btn-info .badge{
    color:#5bc0de;
    background-color:#fff
}
.btn-warning{
    color:#fff;
    background-color:#f0ad4e;
    border-color:#eea236
}
.btn-warning.focus,.btn-warning:focus{
    color:#fff;
    background-color:#ec971f;
    border-color:#985f0d
}
.btn-warning:hover{
    color:#fff;
    background-color:#ec971f;
    border-color:#d58512
}
.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{
    color:#fff;
    background-color:#ec971f;
    border-color:#d58512
}
.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{
    color:#fff;
    background-color:#d58512;
    border-color:#985f0d
}
.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{
    background-image:none
}
.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{
    background-color:#f0ad4e;
    border-color:#eea236
}
.btn-warning .badge{
    color:#f0ad4e;
    background-color:#fff
}
.btn-danger{
    color:#fff;
    background-color:#d9534f;
    border-color:#d43f3a
}
.btn-danger.focus,.btn-danger:focus{
    color:#fff;
    background-color:#c9302c;
    border-color:#761c19
}
.btn-danger:hover{
    color:#fff;
    background-color:#c9302c;
    border-color:#ac2925
}
.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{
    color:#fff;
    background-color:#c9302c;
    border-color:#ac2925
}
.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{
    color:#fff;
    background-color:#ac2925;
    border-color:#761c19
}
.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{
    background-image:none
}
.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{
    background-color:#d9534f;
    border-color:#d43f3a
}
.btn-danger .badge{
    color:#d9534f;
    background-color:#fff
}
.btn-link{
    font-weight:400;
    color:#337ab7;
    border-radius:0
}
.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{
    background-color:transparent;
    -webkit-box-shadow:none;
    box-shadow:none
}
.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{
    border-color:transparent
}
.btn-link:focus,.btn-link:hover{
    color:#23527c;
    text-decoration:underline;
    background-color:transparent
}
.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{
    color:#777;
    text-decoration:none
}
.btn-group-lg>.btn,.btn-lg{
    padding:10px 16px;
    font-size:18px;
    line-height:1.3333333;
    border-radius:6px
}
.btn-group-sm>.btn,.btn-sm{
    padding:5px 10px;
    font-size:12px;
    line-height:1.5;
    border-radius:3px
}
.btn-group-xs>.btn,.btn-xs{
    padding:1px 5px;
    font-size:12px;
    line-height:1.5;
    border-radius:3px
}
.btn-block{
  display:block;
  width:100%
}
.btn-block+.btn-block{
  margin-top:5px
}
input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{
  width:100%
}
.notify{  
  position:fixed;
  top:-1px;
  width:100%;
  height:0;  
  box-sizing:border-box;
  color:white;  
  text-align:center;
  background:rgba(0,0,0,.6);
  overflow:hidden;
  box-sizing:border-box;
  transition:height .2s;
  z-index:2000;
  border-bottom:1px solid #fff
}
.notify span{
  position: relative;
  top: 30%;
}
.notify span .fa-times{
  position: relative;
  top: 30%;
  right: 1%;
  cursor: pointer
}
#notifyType:before{
  display:block;
  margin-top:15px; 
}
.notify.active{  
  height:auto;
  padding: 15px 0px 15px 0px
}
.select-headerinfo{
  width:100%;
  padding:5px;
  border:0px;
  background-color:rgba(203, 241, 199, 1);
  cursor: pointer;
  color: rgba(0, 0, 0, 1);
}
.select-footerinfo{
  width:100%;
  padding:5px;
  border:0px;
  background-color:transparent;
  cursor: pointer;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight: bold;
  padding-top:0px;
  text-transform: uppercase;
}
.select-footerinfo option{
  width:100%;
  padding:5px;
  border:0px;
  background-color:rgba(62, 109, 68, 1);
  cursor: pointer;
  color: #000;
  text-transform: uppercase;
}
.headerInfoData div{
  text-align:center
}

@media (min-width:992px){
  .headerInfoData{
    text-align-last: left
  }
}
@media (max-width:992px){
  .headerInfoData{
    text-align-last: center
  }
}
.single-product div.thumbnails-all .synced a,
.products-2-1-2 .nav-link:hover::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a.current {
  border-bottom-color: rgba(48, 126, 32, 1);
}

.navbar-primary,
.footer-newsletter,
.button:hover::before,
li.product:hover .button::before,
li.product:hover .button,
li.product:hover .added_to_cart::before,
.owl-item .product:hover .button::before,
.owl-item .product:hover .button,
.owl-item .product:hover .added_to_cart::before,
.widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce-pagination ul.page-numbers > li a.current,
.woocommerce-pagination ul.page-numbers > li span.current,
.pagination ul.page-numbers > li a.current,
.pagination ul.page-numbers > li span.current,
.owl-dots .owl-dot.active,
.products-carousel-tabs .nav-link.active::before,
.deal-progress .progress-bar,
.products-2-1-2 .nav-link.active::before,
.ad .ad-action > a::after,
.header-v1 .navbar-search .input-group .btn,
.header-v3 .navbar-search .input-group .btn,
.vertical-menu > li:first-child,
.widget.widget_tag_cloud .tagcloud a:hover,
.widget.widget_tag_cloud .tagcloud a:focus,
.navbar-mini-cart .cart-items-count,
.wc-tabs > li.active a::before,
.ec-tabs > li.active a::before,
.electro-nav-tabs > li.nav-item a.active::before,
.woocommerce-info,
.woocommerce-noreviews,
p.no-comments,
.products-2-1-2 .nav-link:hover::before,
.single_add_to_cart_button,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a:not(.collapsed):before,
ul.products > li.product.list-view:not(.list-view-small) .button:hover,
ul.products > li.product.list-view:not(.list-view-small) .button:focus,
ul.products > li.product.list-view:not(.list-view-small) .button:active,
ul.products > li.product.list-view.list-view-small .button:hover::after,
ul.products > li.product.list-view.list-view-small .button:focus::after,
ul.products > li.product.list-view.list-view-small .button:active::after,
.widget_electro_products_carousel_widget .section-products-carousel .owl-nav .owl-prev:hover,
.widget_electro_products_carousel_widget .section-products-carousel .owl-nav .owl-next:hover,
.full-color-background .header-v3,
.full-color-background .top-bar,
.pace .pace-progress {
  background-color: #000; 
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px); 
  margin-bottom:5px
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; 
}
.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
  display: block;
  width: 100%;
  height: auto; 
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; 
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}
.owl-carousel.owl-loaded {
  display: block; 
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block; 
}
.owl-carousel.owl-hidden {
  opacity: 0; 
}
.owl-carousel.owl-refresh .owl-item {
  display: none; 
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; 
}
.owl-carousel.owl-rtl {
  direction: rtl; 
}
.owl-carousel.owl-rtl .owl-item {
  float: right; 
}
.single-product-wrapper .product-images-wrapper {
  position: relative;
  float: left;
  min-height: 1px;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%; 
}
.single-product div.thumbnails-all a {
  display: inline-block;
  border: 1px solid #eaeaea; 
}
.single-product div.thumbnails-all a img {
  display: block;
  height: 157px; 
  width: 157px; 
}

@media (min-width:1200px){
  .owl-carousel .owl-item img {
    width: 375px;
    height: 375px; 
  }
  .single-product div.thumbnails-all a img {
    display: block;
    height: 75px; 
    width: 75px; 
  }
}
@media (min-width:992px) and (max-width:1199px){
  .owl-carousel .owl-item img {
    width: 300px;
    height: 300px; 
  }
  .single-product div.thumbnails-all a img {
    display: block;
    height: 61px; 
    width: 61px; 
  }
  .single-product-wrapper .product-images-wrapper {
    width: 99%; 
  }
}
.lista .size {
  width: 100%;
}
.lista .product .product-img>img {
  height: 100px;
  width: 100px
}
.lista .product .product-img>h3 {
  padding-top: 40%;
  text-align:center;
  width: 100px;
}
.lista .product .product-img {
  float:left
}
.lista .product .product-body{
  padding: 10px;;
  height: 100px
}
.lista .product{
  margin: 4px 0px;
}
.grade .product .product-img{
  text-align: center;  
}
.grade .product .product-img>img {
  height: 250px;
  width: 250px
}
.grade .product .product-img>h3 {
  padding-top: 10%;
  height: 70px;
  font-size: 45px;
}
.grade .product .product-body{
  padding: 15px;;
  height: 120px
}
.grade .product{
  margin: 15px 0px;
}
.grade .product-body.openProduct.showImg{
  height: 370px;
}
.grade .product-body.openProduct.hideImg{
  height: 200px;
}

.title-none{
  display:none
}
.linha .size {
  width: 100%;
}
.linha .product .product-img>img {
  display:none
}
.linha .product .product-img>h3 {
  display:none;
  margin: 0px 10px 0px 10px;
}
.linha .product .product-img h3.title-none {
  display:block;
  padding-top: 10%
}
.linha .product .product-img {
  text-align: center;
}
.linha .product .product-body{
  padding: 10px;
  height: 35px;
}
.linha .product{
  margin: 4px 0px;
  display: flex;
}
.linha .product .product-body .product-category{
  display:none
}
.linha .product .product-body .product-name{
  overflow: hidden;
}
.linha .product .product-body .product-price{
  text-align: left;
}
.linha .product .product-img {
  position: relative;
  transform: translateY(-10%);
}
.linha .product .product-body .product-name{
  position: relative;
  transform: translateY(15%);
  width: 100%
}
.linha .product .product-body .product-price{
  position: relative;
  transform: translateY(15%);
}
.linha .product .product-body{
  display: contents;
}
@media (min-width:1200px){
  .linha .product .product-img {
    width: 10%;
  }
  .linha .product .product-body{
    width: 100%;
  }
  .linha .product .product-body .product-price{
    width: 15%;
  }
}
@media (min-width:992px) and (max-width:1199px){
  .linha .product .product-img {
    width: 15%;
  }
  .linha .product .product-body{
    width: 100%;
  }
  .linha .product .product-body .product-price{
    width: 20%;
  }
}
@media (min-width:768px) and (max-width:991px){
  .linha .product .product-img {
    width: 20%;
  }
  .linha .product .product-body{
    width: 100%;
  }
  .linha .product .product-body .product-price{
    width: 20%;
  }
}
@media (max-width:768px){
  .store-sort{
    text-align: center;
    width: 100%;
  }
  .store-grid{
    text-align: center;
    width: 100%;
  }
  .linha .product .product-img {
    width: 20%;
    display: inline-table;
  }
  .linha .product .product-body{
    width: 80%;
  }
  .linha .product .product-body .product-price{
    width: 32%;
  }
  @media (min-width:600px) and (max-width:767px){
    .linha .product .product-body .product-price{
    width: 25%;
    }
  }
  
}
.related .product .product-img>h3 {
  padding-top: 10%;
  height: 70px;
  font-size: 45px;
}
.product .add-to-cart {
  display:none
}
.store-grid li{
  cursor: pointer
}
fieldset.scheduler-border {
  border-radius:3px;
  border: 1px solid rgba(0, 0, 0, 1) !important;
  padding: 0 5px 0 5px !important;
  margin: 0 0 1.5em 0 !important
}
legend.scheduler-border {
  font-size: 1.2em !important;
  font-weight: bold !important;
  text-align: left !important;
  width:auto;
  padding:0 0px;
  border-bottom:none;
}
.checkbox-filter .groupStore:hover{
  cursor: pointer;
  color: #000
}
.subGroupStore{
  display: none
}
.subGroupStore label:hover{
  cursor: pointer;
  color: #000
}
.fa-star.meio{
  background: linear-gradient(to right, rgb(89, 241, 137) 50%, transparent 0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#review-form input:focus, #review-form textarea:focus{
  border: 1px solid #ccc;
}
.product:hover h3{
  color: rgba(0, 0, 0, 1);
}
.product:hover p{
  color: rgba(0, 0, 0, 1);
}
.product .product-body.openProduct{
  background-color: rgba(48, 126, 32, 1);
  display: block
}
.product-body.openProduct h4{
  color: rgba(0, 0, 0, 1);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.product-body.openProduct h4 img{
  width: 20px;
  height: 20px;
}
.header-contact{
  padding:7px 0 7px 0;
  overflow: hidden;
  height: 85px;
}
@media (max-width:991px){
  .header-contact{
    height: 65px
  }
  @media (max-width:346px){
    .header-contact{
      height: 85px
    }
  }
  @media (min-width:511px) and (max-width:767px){
    .header-contact{
      height: 45px
    }
  }
}

div[class*="imgContact_"]{
  border-top:1px solid #000;
}
div[class*="imgContact_"] img{
  width: 100%;
  height: 200px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.overflow-on{
  overflow:hidden !important
}
.overflow-off{
  overflow:visible
}
@media (min-width:992px){
  .img-menu-nav{
    display:none;
    max-height:70px
  }
}
.table>tbody>tr>td, 
.table>tbody>tr>th, 
.table>tfoot>tr>td, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>thead>tr>th{
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid rgba(0, 0, 0, 1);
}
.table>thead>tr>th{
    border-bottom: 1px solid rgba(0, 0, 0, 1);
}
.block-screen{
  background: rgba(0, 0, 0, .4);
  height: 2000px;
  z-index: 22;
  width: 100%;
  position: absolute;
  display:none;
  text-align: left;
  padding-left: 260px;
}
.block-screen i{
  color: #fff;
  font-size: 30px
}
.btnPesquisar{
  position: fixed;
  float: bottom;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}
.btnPesquisarInput, .btnPesquisarBtn{
  display: inline-block;
}
.newPageHome{
  height: 250px;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgba(255,0,0,0), rgba(86,86,86,1));
  border: 5px solid #fff;
}
.newPageHome:hover div{
  opacity: .2;
  display: none
}
.newPageHome div{
  padding: 10px;
}


.newPageHome:hover .pedro{
  display: inline-block;
  cursor: pointer;
}
.pedro{
  display: none;
  color: #ffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  height: 250px;
  padding-top: 125px;
  width: 100%;
  padding-left: 35%;
  font-size: 25px;
}
.pedro:hover{
  color: #ffff;
}