#searchform {
  display: none;
}

.woocommerce-cart-form__contents .actions .button {
  margin-top: 6px !important;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #333;
}
/* 
@media (min-width: 1400px){
  .container {
      width: 1320px;
}
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #2b2d42;
  font-weight: 700;
  margin: 0 0 10px;
}

a {
  color: #2b2d42;
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover,
a:focus {
  color: #ff7626;
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
p {
  line-height: 1.8;
  color: rgb(94, 94, 94);
}
.pt-0 {
  padding-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.microvideo.mb-0 p {
  margin-bottom: 0;
}
.home-opening p {
  font-size: 17px;
}
.home-opening img {
  max-width: 220px;
}
.show-desktop {
  display: none;
}
.videosec h4 p:last-of-type {
  margin-bottom: 0;
}
.section-space-half {
  padding: 40px 0 !important;
}
.header-cart-icon {
  display: flex !important;
  align-items: baseline;
  gap: 8px;
}
.wpcf7-spinner {
  margin: 0 12px !important;
  position: absolute !important;
  top: 14px !important;
}
.wpcf7 form .wpcf7-response-output {
  border: 0 !important;
  text-align: center;
  padding: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: #f00;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450;
  font-size: 18px;
  font-weight: 700;
}
span.wpcf7-not-valid-tip {
  margin-top: -12px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .align-items-center {
    display: flex;
    align-items: center;
  }
  .show-mobile {
    display: none;
  }
  .show-desktop {
    display: block;
  }
  .header-cart-icon .fa-shopping-cart {
    border-left: 1px solid #959595;
    padding-left: 12px;
  }
}
@media (max-width: 767px) {
  .justreleasesec {
    padding: 40px 0 40px 0 !important;
  }
  .section-space-half {
    padding: 20px 0 !important;
  }
}
/*----------------------------*\
  Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff7626;
  border: none;
  border-radius: 40px;
  color: #fff;
  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: #fff;
}

/*----------------------------*\
  Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  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 #e4e7ed;
  background-color: #fff;
  padding: 0px 35px 0px 15px;
}

.input-number .qty-up,
.input-number .qty-down {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  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: #ff7626;
}

/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #fff;
  border: 1px solid #e4e7ed;
  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: #fff;
}

.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: #fff;
  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: #fff;
  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: #ff7626;
  border-color: #ff7626;
}

.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: 50px;
  padding-bottom: 50px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
}

.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: #8d99ae;
}

.section-tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ff7626;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.section-tab-nav li.active a {
  color: #ff7626;
}

.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: #ff7626;
}

/*=========================================================
  02 -> HEADER
===========================================================*/

/*----------------------------*\
  Top header
\*----------------------------*/

#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1e1f29;
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: #fff;
}

.header-links li a:hover {
  color: #ff9b34;
}

.header-links li i {
  color: #ff9b34;
  margin-right: 5px;
}

/*----------------------------*\
  Logo
\*----------------------------*/

#header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
}

.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
  width: 160px;
}

/*----------------------------*\
  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: calc(100% - 100px);
  margin-right: -4px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.header-search form .search-btn {
  height: 40px;
  width: 100px;
  background: #1e1e29;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0px 40px 40px 0px;
}

/*----------------------------*\
  Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 0px;
}

.header-ctn > div {
  display: inline-block;
}

.header-ctn > div + div {
  margin-left: 15px;
}

.header-ctn > div > a {
  display: block;
  position: relative;
  width: 90px;
  text-align: center;
  color: #313131;
}

.header-ctn > div > a > i {
  display: block;
  font-size: 18px;
}

.header-ctn > div > a > span {
  font-size: 12px;
}

.header-ctn > 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: #fff;
  background-color: #ff7626;
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 300px;
  background: #fff;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 0px 2px #e4e7ed;
  box-shadow: 0px 0px 0px 2px #e4e7ed;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open > .cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  max-height: 180px;
  overflow-y: scroll;
  margin-bottom: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: #2b2d42;
}

.cart-dropdown .cart-btns {
  margin: 0px -17px -17px;
}

.cart-dropdown .cart-btns > a {
  display: inline-block;
  width: calc(50% - 0px);
  padding: 12px;
  background-color: #ff7626;
  color: #fff;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.cart-dropdown .cart-btns > a:first-child {
  margin-right: -4px;
  background-color: #1e1f29;
}

.cart-dropdown .cart-btns > a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #e4e7ed;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*=========================================================
  03 -> Navigation
===========================================================*/

#navigation {
  background: #fff;
}

/*----------------------------*\
  Main nav
\*----------------------------*/

.main-nav > li + li {
  margin-left: 20px;
}

.main-nav > li > a {
  padding: 38px 0px 0px;
  color: rgb(58, 135, 55);
  font-size: 17px;
}

.main-nav > li > a:hover,
.main-nav > li > a:focus,
.main-nav > li.active > a {
  color: #1c1c1c;
  background-color: transparent;
  border-bottom: 2px solid #000;
}

.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;
}

.blog-list-wrapper .elementor-nav-menu--layout-horizontal .elementor-nav-menu a,
#menu-1-ee4827e a {
  font-weight: bold;
}

.blog-list-wrapper
  .elementor-posts
  .elementor-post__card
  .elementor-post__thumbnail
  img {
  height: 250px;
  object-fit: cover;
}

.blog-list-wrapper .elementor-pagination {
  margin: 35px 0;
}

.blog-list-wrapper .elementor-post__thumbnail {
  padding: 0 !important;
}

figure.alignright img,
img.alignright {
  padding-left: 15px;
  padding-bottom: 15px;
}

figure.alignleft img,
img.alignleft {
  padding-right: 15px;
  padding-bottom: 15px;
}

p a,
ul li strong a {
  text-decoration: underline !important;
  font-weight: normal !important;
}

/*Custom*/
.shop-listing-page{
  margin: 0 -12px;
}
.shop-listing-page li{
  padding: 0 12px;
  text-align: left;
  margin-bottom: 12px!important;
}
.shop-listing-page li img{
  border-radius: 24px;
  width: 100%;
}
.custom-buy-button{
  margin-top: 20px;
}
.custom-buy-button a{
  background-color: #FFC100;
  padding: 12px 24px 12px 24px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 100px;
  text-align: center;
  display: inline-block;
  color: #000!important;
  margin-right: 8px;
}
.custom-buy-button img.cart-icon{
  width: 24px; 
  height: auto; 
  margin-right: 8px; 
  vertical-align: sub;
}
.custom-buy-button a.woocommerce-LoopProduct-link{
  display: none;
}
h2.category-title{
  font-size: 40px;
  line-height: 48px;
  color: #000;
  padding-top: 96px;
  margin-bottom: 0;
  text-align: left;
}
h2.category-title span{
  color: #FFC100;
}
.section-topbar{
  background: #FFC100;
  padding: 12px 0;
}
.section-topbar p{
  cursor: pointer;
  margin: 0;
  text-align: center;
  color: #fff!important;
  font-weight: 600 !important;
}
.section-topbar a{
  color: #fff!important;
  text-decoration: none !important;
  font-weight: 600 !important;  
}
.microbiometer-shop-intro{
    text-align: left;
    padding-top: 48px;
}
.section-topbar.green-topbar{
    background-color: rgb(58, 135, 55);
}
/*Custom*/

/*----------------------------*\
  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: rgb(58, 135, 55);
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none !important;
  }
  .main-nav > li {
    display: block;
    float: none;
  }
  .main-nav > li + li {
    margin-left: 0px;
  }
  .main-nav > li > a {
    padding: 15px;
    color: #fff;
  }
}

/*=========================================================
  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: #ff7626;
  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: #ff7626;
  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: #e4e7ed;
  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;
  bottom: 0;
  width: 75%;
  padding: 15px;
  z-index: 10;
  background-color: #fff;
  margin: 15px;
}

.shop .shop-body h3 {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 500;
}

.shop .shop-body .cta-btn {
  color: #ff7626;
  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: #d10024e6;
  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: #fff;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown > li > div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}

.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;
  text-align: center;

  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.productimg {
  border: 1px solid #ddd;
}

.product:hover {
  -webkit-box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #ff7626;
  box-shadow: 0px 0px 6px 0px #e4e7ed, 0px 0px 0px 2px #ff7626;
}

.product .product-img {
  position: relative;
  background-color: #fff;
}

.product .product-img > img {
  width: 100%;
}

.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: #fff;
  border-color: #ff7626;
  color: #ff7626;
}

.product .product-img .product-label > span.new {
  background-color: #ff7626;
  border-color: #ff7626;
  color: #fff;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #fff;
  text-align: center;
  z-index: 20;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size: 12px;
  color: #8d99ae;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 14px;
}

.product .product-body .product-name > a {
  font-weight: 700;
}

.product .product-body .product-name > a:hover,
.product .product-body .product-name > a:focus {
  color: #ff7626;
}

.product .product-body .product-price {
  color: #ff7626;
  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: #fff;
  color: #e4e7ed;
  z-index: 10;
}

.product .product-body .product-rating > i.fa-star {
  color: #ff7626;
}

.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: #ff7626;
  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: #fff;
  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%);
}

.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #ff7626;
  color: #fff;
  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: #ff7626;
  opacity: 0;
  visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
  background-color: #fff;
  color: #ff7626;
  border-color: #ff7626;
  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: 100%;
}

.product-widget .product-body {
  padding-left: 75px;
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8d99ae;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.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: #ff7626;
}

.product-widget .product-body .product-price {
  font-size: 14px;
  color: #ff7626;
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8d99ae;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: #1e1f29;
  border: none;
  color: #fff;
}

/*----------------------------*\
  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: 15px 0px 30px;
}

/*-- 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: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e4e7ed;
  border-radius: 0px;
}

.noUi-connect {
  background-color: #ff7626;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: #ff7626;
  -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: #fff;
  border: 1px solid #e4e7ed;
  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: #ff7626;
}

.store-grid li.active {
  background-color: #ff7626;
  border-color: #ff7626;
  color: #fff;
  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: #fff;
  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: #ff7626;
}

.store-pagination li.active {
  background-color: #ff7626;
  border-color: #ff7626;
  color: #fff;
  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: #fff;
}

#product-imgs .product-preview {
  margin: 0px 5px;
  border: 1px solid #e4e7ed;
}

#product-imgs .product-preview.slick-current {
  border-color: #ff7626;
}

#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-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: #ff7626;
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #ff7626;
}

.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: #ff7626;
}

.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: #ef233c;
  color: #fff;
  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: #ff7626;
  opacity: 0;
  visibility: hidden;
}

.product-details .add-to-cart .add-to-cart-btn:hover {
  background-color: #fff;
  color: #ff7626;
  border-color: #ff7626;
  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: #fff;
  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: #ff7626;
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #ff7626;
  -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 .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: #e4e7ed;
}

.rating-avg .rating-stars > i.fa-star,
.rating .rating-stars > i.fa-star {
  color: #ff7626;
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #e4e7ed;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress > div {
  background-color: #ff7626;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8d99ae;
}

/*-- 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;
}

.reviews .review-heading .date {
  color: #8d99ae;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating > i {
  color: #e4e7ed;
}

.reviews .review-heading .review-rating > i.fa-star {
  color: #ff7626;
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #e4e7ed;
  color: #ff7626;
}

.reviews-pagination li.active {
  background-color: #ff7626;
  border-color: #ff7626;
  color: #fff;
  cursor: default;
}

.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: #e4e7ed;
  -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 {
  color: #ff7626;
}

.review-form .input-rating .stars > input:checked label:before,
.review-form .input-rating .stars > input:checked ~ label:before {
  content: "\f005";
  color: #ff7626;
}

/*=========================================================
  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: #ff7626;
}

.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 #ff7626;
  margin-top: 30px;
}

.newsletter {
  text-align: center;
  margin: 60px 0;
}

.newsletter p {
  font-size: 16px;
}

.newsletter form {
  position: relative;
  margin: 0;
  margin-bottom: 60px;
}

.newsletter:after {
  content: "\f003";
  font-family: FontAwesome;
  position: absolute;
  font-size: 160px;
  color: #ffffff36;
  top: auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  z-index: 99;
  left: 0;
  right: 0;
}

.newsletter form .input {
  width: calc(100% - 160px);
  margin-right: 15px;
  height: 50px;
  background: #ecedef;
}
.newsletter form .newsletter-btn {
  width: 160px;
  height: 40px;
  font-weight: 700;
  background: #ff7626;
  color: #fff;
  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: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.newsletter .newsletter-follow li a:hover,
.newsletter .newsletter-follow li a:focus {
  background-color: #e4e7ed;
  color: #ff7626;
}

/*=========================================================
  11 -> FOOTER
===========================================================*/

#footer {
  background: #f6f6f6;
  color: #b9babc;
  padding-bottom: 60px;
}

#bottom-footer {
  background: #1e1f29;
  padding: 20px;
}

.footer {
  margin: 30px 0px;
}

.footer .footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0px 0px 30px;
  font-weight: 500;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links li a {
  color: #b9babc;
}

.footer-links li i {
  margin-right: 15px;
  color: #00a9eb;
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: #00a9eb;
}

.copyright {
  display: block;
  font-size: 16px;
  color: #000;
  margin: 30px 0;
}

.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #6b6e79;
  font-size: 36px;
  display: block;
}

/*=========================================================
  12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
  Arrows
\*----------------------------*/

.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  border-radius: 50%;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #3a8737;
  border-color: #3a8737;
}

.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  color: #2b2d42;
}

.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: #fff;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.testimonial-slider .slick-prev {
  left: -50px;
}
.testimonial-slider .slick-next {
  right: -50px;
}

/*----------------------------*\
  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: #ff7626;
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}
.shop:before,
.shop:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 118, 38, 0.48);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: scaleX(0);
  transition: all 0.6s ease 0s;
}
.shop:hover:before {
  transform: scaleX(1);
}
.shop:after {
  transform: scaleY(0);
}
.shop:hover:after {
  transform: scaleY(1);
}
.title h5 {
  color: #444;
}
.title h2 {
  color: #ff7626;
}
.gray-bg {
  background-color: #f1f1f1;
}

.product-img:after {
  content: "";
  width: 96%;
  height: 100%;
  background: rgba(255, 118, 38, 0.48);
  position: absolute;
  top: 1%;
  left: 2%;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center 0;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s,
    visibility 0.6s ease 0s, opacity 0.35s ease 0s;
}
.product-img:hover:after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center 0;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1) 0s;
}

ul.sub-menu {
  display: none;
}
.dropdown:hover ul.sub-menu {
  display: block;
  position: absolute;
  z-index: 99;
  background-color: #efefef;
  border-top: 1px solid #fff;
  width: 180px;
}
.dropdown:hover ul.sub-menu li {
  padding: 10px;
}
.dropdown:hover ul.sub-menu li:hover {
  background-color: #ff9b34;
  color: #fff;
}
.dropdown:hover ul.sub-menu li a:hover {
  color: #000;
}
.socialicon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #46a345;
  text-align: center;
  line-height: 47px;
  margin: 0px 19px;
}
.socialicon .fa {
  color: #fff;
  font-size: 25px;
}
.socialmedia ul li {
  display: inline-block;
  margin: 0px 6px;
  font-size: 15px;
}
.socialmedia {
  text-align: center;
  padding: 0;
}
.welcomecontent ul li {
  display: inline-block;
  margin: 0px 6px;
  font-size: 15px;
}
.welcomecontent ul {
  margin: 0 0 1.5em 0em;
}
.welcomecontent h1 {
  color: rgb(58, 135, 55);
  font-weight: 600;
  font-size: 34px;
}
.welcomecontent p {
  font-size: 16px;
  padding: 15px 0;
}
.videosec h4 {
  font-weight: 500;
  line-height: 30px;
  font-size: 16px;
  color: #7e7e7e;
  padding-left: 20px;
}
.microbes {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.videosec h2 {
  font-size: 16px;
  font-weight: 500;
  color: #3c3c3c;
}
.pointimg {
  height: 128px;
  width: 128px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
}
.whypoint {
  text-align: center;
}
.welcomecontent ul {
  margin-top: 40px;
}
.whypoint h3 {
  color: rgb(58, 135, 55);
  line-height: 35px;
  font-size: 30px;
  font-weight: 600;
  margin: 30px 0; /*max-width: 344px;*/
}
.whypoint p {
  font-size: 16px;
  line-height: 28px;
}
.viewalllink {
  color: rgb(58, 135, 55);
  font-size: 25px;
}
.whymicrobiometer {
  text-align: center;
  padding: 40px 0;
}
.postimg img {
  width: 100%;
}
.instagrampost .col-md-3 {
  padding: 0;
}
.instagrampost {
  margin: 0 60px 0;
}
.instagrampost h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.loadmorebtn {
  background-color: #0c9ef3dd;
  color: #fff;
  font-weight: 500;
  padding: 11px;
  width: 200px;
  margin: auto;
  border: none;
  margin-top: 30px;
  font-size: 15px;
}
button.search-btn {
  border: none;
  background-color: rgb(76, 173, 73);
  color: #000;
  padding: 10px 33px;
  font-weight: 600;
  font-size: 21px;
  border-radius: 4px;
  position: relative;
  top: 3px;
}
.contactSection h2 {
  font-size: 16px;
  font-weight: 500;
  color: #3c3c3c;
  margin: 20px 0;
}
.contactform {
  max-width: 750px;
  margin: auto;
}
.contactSection h4 {
  text-align: center;
  color: rgb(58, 135, 55);
  font-size: 27px;
  margin: 25px 0;
}
.contactform input {
  width: 100%;
  background-color: #efefef;
  padding: 15px 12px !important;
  border: none !important;
  margin-bottom: 20px;
  font-size: 14px;
}
.contactform .passwordUpdate {
  background: rgb(76, 173, 73) !important;
  font-size: 18px !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 17px 34px !important;
}
#resetPasswordAlertBtn {
  display: none;
}
.contactform #form {
  margin-bottom: 50px;
}
.contactform textarea {
  width: 100%;
  resize: none;
  background-color: #efefef;
  padding: 18px 12px;
  height: 132px;
  border: none;
  margin-bottom: 10px;
}
.contactform .submitbtn {
  border: none;
  background-color: rgb(76, 173, 73);
  color: #000;
  padding: 13px 30px;
  font-weight: 600;
  width: auto;
  font-size: 20px;
  border-radius: 4px;
}
.contactSection p {
  text-align: left;
}

.contactSection .text-center p {
  text-align: center;
}
.socialiconbg {
  width: 25px;
  height: 25px;
  background-color: #000000;
  border-radius: 50%;
  line-height: 24px;
}
.quicklinks ul {
  text-align: center;
}
.quicklinks ul li {
  display: inline-block;
  margin: 0px 10px;
}
.quicklinks ul li a {
  text-transform: capitalize;
  color: #3a8637;
  font-size: 15px;
}
.contactinfo {
  padding: 15px 0;
}
.contactinfo p {
  font-size: 18px;
  color: #888;
}
.recapturecontent * {
  font-size: 16px;
  text-align: center !important;
}
.welcomecontent {
  padding: 30px 0;
  text-align: center;
}
.micrometer {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}
.productheading {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.productheading h2 {
  font-size: 16px;
  font-weight: 500;
  color: #3c3c3c;
  margin: 20px 0;
}
.shop-listing-page .product h2 {
  color: #000;
  text-align: left;
  font-weight: bold;
  font-size: 26px;
  line-height: 34px;
  margin: 32px 0 12px;  
}
.shop-listing-page span.woocommerce-Price-amount.amount, span.woocommerce-Price-amount.amount {
  font-size: 24px !important;
  line-height: 32px;
  color: #6EAE46;
  font-weight: 600;
}
.productsection {
  text-align: center;
  padding-bottom: 48px;
}
.productimg img {
  width: 250px;
}
.socialmedia ul li i {
  color: #fff;
  font-size: 13px;
  font: normal normal normal 14px/1 FontAwesome;
}
.contactheading {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.newsletter h2 {
  color: rgb(58, 135, 55);
}
.sticky + .content {
  padding-top: 102px;
}
div#myHeader {
  background-color: #fff;
  z-index: 999;
  padding: 35px 0;
}
.micrometer h2 {
  font-size: 16px;
  font-weight: 500;
  color: #3c3c3c;
  margin: 20px 0;
}
.topheadericon {
  margin-left: 20px;
}
.topheadericon i.fa.fa-search {
  border-left: 1px solid #959595;
  padding-left: 16px;
  font-size: 16px;
  position: relative;
  top: 36px;
  cursor: pointer;
}
.main-nav.topheadericon > li > a:hover,
.main-nav.topheadericon > li > a:focus,
.main-nav.topheadericon > li.active > a {
  border: none;
}
.main-nav.topheadericon > li > a {
  color: #000;
}
/*.microvideo{padding-top:30px;}*/
.boldtext {
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
}
.instructionpoint {
  text-align: center;
}
.instructionpoint h3 {
  color: rgb(58, 135, 55);
  line-height: 34px;
  font-size: 29px;
  font-weight: 600;
  margin: 30px 0;
}
.instructionpoint p {
  font-size: 17px;
  line-height: 1.8;
  color: rgb(94, 94, 94);
}
.instructionsimg {
  margin-bottom: 30px;
}
.instructionsheading h2 {
  font-size: 16px;
  font-weight: 500;
  color: #3c3c3c;
  margin: 20px 0;
}
.instructionsheading {
  position: relative;
}
.biomassresults {
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.biomassresults h2 {
  color: rgb(58, 135, 55);
}
input.wpcf7-form-control.wpcf7-submit {
  max-width: 114px;
  font-size: 18px !important;
  color: #000 !important;
  font-weight: 600 !important;
  padding: 17px 0px !important;
}
.woocommerce-message {
  text-align: center !important;
}
.instructionpoint p a {
  color: rgb(58, 135, 55);
  text-decoration: underline;
}
/*slider*/

.section-testimonial .testimonial-slider {
  position: relative;
  padding-top: 50px;
}
.section-testimonial .testimonial-slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 32px;
  background-image: url("../img/double quote_icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.section-testimonial .testimonial-wrapper {
  text-align: left;
}
.section-testimonial .slick-dots {
  bottom: -50px;
}
.section-testimonial .slick-dots li.slick-active button:before {
  background: rgb(58, 135, 55);
}
.section-testimonial .testimonial-wrapper .short-desp {
  position: relative;
  margin-top: 25px;
  padding-top: 25px;
  color: rgb(58, 135, 55);
}
.section-testimonial .testimonial-wrapper .short-desp p {
  margin-bottom: 0;
  color: rgb(58, 135, 55);
}
.section-testimonial .testimonial-wrapper .short-desp:before {
  content: "";
  background: rgb(58, 135, 55);
  width: 100px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.section-testimonial a.viewalllink {
  margin-top: 75px;
}

.multi-item-carousel {
  overflow: hidden;
}
.multi-item-carousel img {
  height: auto;
  width: 100%;
}
.multi-item-carousel .carousel-control.left,
.multi-item-carousel .carousel-control.right {
  background: rgba(255, 255, 255, 0.3);
  width: 25%;
}
.multi-item-carousel .carousel-inner {
  width: 150%;
  left: -25%;
}
.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
  -webkit-transform: translate3d(33%, 0, 0);
  transform: translate3d(33%, 0, 0);
}
.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
  -webkit-transform: translate3d(-33%, 0, 0);
  transform: translate3d(-33%, 0, 0);
}
.item__third {
  float: left;
  position: relative; /* captions can now be added */
  width: 33.33333333%;
}

.whymicrobiometer .carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
  margin-left: -145px !important;
}
.whymicrobiometer .carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
  margin-right: -147px !important;
}
.instructionsheading.faq:before {
  content: "";
  background-color: #787878;
  height: 1px;
  width: 48%;
  position: absolute;
  left: 0;
  top: 5px;
}
.instructionsheading.contact-us:before {
  content: "";
  background-color: #787878;
  height: 1px;
  width: 46%;
  position: absolute;
  left: 0;
  top: 5px;
}
.instructionsheading.faq:after {
  content: "";
  background-color: #787878;
  height: 1px;
  width: 48%;
  position: absolute;
  right: 0;
  top: 5px;
}
.instructionsheading.contact-us:after {
  content: "";
  background-color: #787878;
  height: 1px;
  width: 46%;
  position: absolute;
  right: 0;
  top: 5px;
}
.faq-part {
  max-width: 750px;
  margin: -34px auto 43px auto;
}
.faq-para h3 {
  color: rgb(58, 135, 55);
  line-height: 34px;
  font-size: 30px;
  font-weight: 600;
  margin: 30px 0;
  letter-spacing: 2px;
}
button.please-check {
  padding: 13px 40px;
  background: #46a345;
  font-weight: 700;
  font-size: 20px;
  border: none;
  border-radius: 4px;
  margin-top: 20px;
}
.instructionsheading.endor:before {
  content: "";
  background-color: #787878;
  height: 1px;
  width: 44%;
  position: absolute;
  left: 0;
  top: 5px;
}
.instructionsheading.endor:after {
  content: "";
  background-color: #787878;
  height: 1px;
  width: 44%;
  position: absolute;
  right: 0;
  top: 5px;
}
.endrosmeny-para p a {
  color: rgb(58, 135, 55);
  font-weight: 700;
  text-decoration: underline;
}
.endrosmeny-para p {
  margin: 40px 0px;
  font-family: "Open Sans", arial, sans-serif;
  font-size: 17px;
}
.endrosmeny-para p span {
  font-style: oblique;
}
.endrosmeny-para h3 {
  font-size: 20px;
  margin: 0px 0px -37px 0px;
}
.endrosmeny-para h3 {
  font-size: 16px;
}
.endrosmeny-para h3 a {
  color: rgb(58, 135, 55);
  font-weight: 700;
  text-decoration: underline;
}
form.search-form {
  position: absolute;
  top: 80px;
}
form.search-form input.search-field {
  width: 223px;
  height: 37px;
  font-size: 14px;
  border: 1px solid #efeaea;
  font-weight: 400;
  fill: none !important;
  outline: none !important;
}
form.search-form input.search-submit {
  float: right;
  position: relative;
  top: -41px;
  width: 68px;
  height: 35px;
  font-size: 14px;
  background: #000;
  border: none;
  color: #fff;
}
.product h2 a {
  color: #3c3c3c;
}
a.viewalllink {
  color: rgb(58, 135, 55);
}
a.viewalllink:hover {
  color: #ff7626;
}
input.tnp-email {
  width: 80% !important;
  float: LEFT;
  height: 50px;
  padding: 0px 8px !important;
  font-size: 15px;
  background: #ecedef;
  border: none;
}
.wpcf7 input {
  width: 100% !important;
  padding: 15px 12px !important;
  border: none !important;
  font-size: 14px !important;
}
.wpcf7 textarea {
  font-size: 14px;
  background: #efefef;
  border: none;
}
.wpcf7-submit {
  width: 119px !important;
  background: rgb(76, 173, 73) !important;
  font-size: 20px !important;
  color: #fff !important;
}
input.tnp-button {
  background: #ddd !important;
  padding: 12px 26px !important;
  font-size: 25px !important;
  background: rgb(76, 173, 73) !important;
  border: none !important;
  border-radius: 4px !important;
}
.contactform p a {
  color: #000 !important;
}
nav.woocommerce-breadcrumb {
  display: none;
}
ul.products.columns-3 li {
  width: 33.33%;
  float: left;
  list-style: none;
}
p.woocommerce-result-count {
  display: none;
}
ul.products.columns-3 {
  margin-left: 0;
  margin-top: 32px !important;
}
select.orderby {
  height: 30px !important;
  width: 180px;
  padding: 0px 5px !important;
  font-size: 14px !important;
}
form.woocommerce-ordering {
  float: right !important;
  display: none;
}
span.woocommerce-Price-amount.amount {
  font-size: 17px !important;
  color: #000;
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart {
  font-size: 14px !important;
  color: #000;
  margin-left: 20px;
  background: rgb(76, 173, 73) !important;
  padding: 4px 14px !important;
  border-radius: 4px !important;
}
.type-page header h1 {
  display: none;
}
.shop_table tr th {
  font-size: 16px;
}
.shop_table tr td a {
  font-size: 16px;
  color: #000;
}
input#coupon_code {
  background: #e8e6e6;
  padding: 17px 19px;
  width: 227px;
  position: relative;
  top: -6px;
}
input#coupon_code::placeholder {
  color: #fff;
  font-size: 13px;
}
button.button {
  background: #6eae47 !important;
  font-size: 19px !important;
  padding: 14px 18px !important;
  margin-top: 30px;
  border: none;
  font-weight: 600;
}
.checkout-button {
  background: #000 !important;
  padding: 14px 14px !important;
  font-size: 13px !important;
}
ul#shipping_method li label {
  font-size: 14px;
}
.woocommerce-info {
  font-size: 14px;
}
.woocommerce-info a {
  color: #000;
}
.checkout input {
  height: 35px;
  border: 1px solid #e8e7e7 !important;
  font-size: 14px !important;
  padding: 0px 13px !important;
}
tr.cart_item td {
  font-size: 13px;
}
textarea#order_comments {
  font-size: 14px;
  height: 100px;
  padding: 7px 4px !important;
  border: 1px solid #f7f3f3;
  resize: none;
}
.woocommerce-privacy-policy-text p a {
  color: #000;
}
.summary.entry-summary {
  overflow: hidden;
  margin-left: 407px;
  text-align: left;
}
.woocommerce-product-gallery__image {
  float: left;
}
.summary.entry-summary h1 {
  font-size: 38px;
  font-weight: 500;
}
.product:hover {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.summary.entry-summary span.woocommerce-Price-amount.amount {
  font-size: 30px !important;
  font-weight: 400 !important;
}
.pro-link-single a {
  font-size: 16px;
  color: #6fae47 !important;
}
.pro-link-single {
  max-width: 1042px;
  margin: 44px auto;
}
.woocommerce-product-details__short-description {
  font-size: 16px;
  margin-bottom: 50px;
  margin-top: 50px;
}
.summary.entry-summary input {
  padding: 10px 2px;
  font-size: 11px;
  background: #f7f7f7;
  border: none;
  margin-top: 10px;
}
input#coupon_code::placeholder {
  color: #000;
}
p.cart-empty {
  text-align: center;
}
p.return-to-shop {
  text-align: center;
}
a.button.wc-backward {
  background: #000 !important;
  color: #fff !important;
}
.woocommerce {
  height: auto;
}
.woocommerce-message {
  border-top-color: #8fae1b;
  font-size: 16px;
  margin: 0 0 1.5em !important;
}
.woocommerce-message a {
  color: #000 !important;
  font-weight: 600;
}
form.gem-form .gem-field {
  height: 48px;
  width: 788px !important;
  background: #f1f1f1;
  border: none;
  float: left;
}
input.button.gem-submit {
  background: #46a345;
  height: 50px;
  width: 117px;
  font-size: 18px;
  font-weight: 600;
  margin-left: 20px;
  position: relative;
  top: -24px;
}
.gem-form-wrapper {
  text-align: left;
}
.newsletter h2 {
  margin-top: 30px;
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  left: 26.5em !important;
}
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  position: relative !important;
  right: 300px !important;
}
.woocommerce-info {
  padding-left: 164px !important;
}
.woocommerce-error::before,
.woocommerce-info::before {
  left: 144px !important;
}
.woocommerce-message::before {
  left: 396px !important;
}
form.checkout_coupon.woocommerce-form-coupon {
  max-width: 1170px;
  margin: 20px auto !important;
  padding: 8px 18px;
  position: relative;
}
p.form-row.form-row-last button {
  position: absolute;
  left: 272px;
  top: 69px;
}
div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14;
  font-size: 15px !important;
}
span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 15px !important;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
  font-size: 15px !important;
}
.site-main h1.entry-title {
  background-color: #eaeaea;
  padding: 15px;
}
.entry-meta {
  font-size: 12px;
}
.entry-content h2 {
  font-size: 18px;
}
ul.dwn {
  text-align: left;
  margin: 0;
  padding: 0;
}

ul.dwn li {
  display: inline-block;
  margin: 10px;
}

.download {
  width: 200px;
  height: 75px;
  background: black;
  float: left;
  border-radius: 5px;
  position: relative;
  color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.download > .fa {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.df,
.dfn {
  position: absolute;
  left: 70px;
}

.df {
  top: 14px;
  font-size: 0.68em;
}

.dfn {
  top: 33px;
  font-size: 1.08em;
}

.download:hover {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
.whymicrobiometer.newsection_20211210 .whypoint h3:last-child {
  margin: 20px 0;
  text-decoration: underline;
}

#footer #menu-item-5330 {
  position: relative;
}

#footer #menu-item-5330.menu-item-has-children:hover .sub-menu {
  min-width: 230px;
  top: -65px;
  left: 0;
  padding: 10px 5px;
}

#footer #menu-item-5330 .sub-menu li {
  display: block;
}

#footer #menu-item-5330 .sub-menu li a:hover {
  color: midnightblue !important;
}

.socialmedia ul {
  margin: 0;
}

/*=========================================================
  13 -> RESPONSIVE
===========================================================*/
@media screen and (min-width: 768px) {
  /* .carousel-indicators {bottom: -50px;} */
  .worldwide {
    min-height: 450px;
  }
  .readmorebtn {
    position: absolute;
    left: 30%;
    bottom: 20px;
  }
  .navbar-nav {
    float: right;
  }
  .simply-testimonal .carousel-indicators {
    bottom: -70px;
  }
  .instructionpoint {
    min-height: 535px;
  }
}
@media only screen and (min-width: 1200px) {
  .microbes:before {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 36%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  .microbes:after {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 36%;
    position: absolute;
    right: 0;
    top: 5px;
  }

  .micrometer:before {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 39%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  .micrometer:after {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 39%;
    position: absolute;
    right: 0;
    top: 5px;
  }

  .productheading:before {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 42%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  .productheading:after {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 42%;
    position: absolute;
    right: 0;
    top: 5px;
  }

  .contactheading:before {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 44%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  .contactheading:after {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 44%;
    position: absolute;
    right: 0;
    top: 5px;
  }

  .instructionsheading:before {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 35%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  .instructionsheading:after {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 35%;
    position: absolute;
    right: 0;
    top: 5px;
  }
}
@media only screen and (max-width: 1280px) {
  .testimonial-slider .slick-prev {
    left: -30px;
  }
  .testimonial-slider .slick-next {
    right: -30px;
  }
}
@media only screen and (max-width: 1200px) {
  .testimonial-slider .slick-prev {
    left: -35px;
  }
  .testimonial-slider .slick-next {
    right: -35px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-testimonial .testimonial-slider {
    padding: 50px 30px 0;
  }
  .testimonial-slider .slick-prev {
    left: -30px;
  }
  .testimonial-slider .slick-next {
    right: -30px;
  }
}

@media only screen and (max-width: 991px) {
  .spacing-md-col .col-md-4:nth-child(2) {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .spacing-md-col .col-md-6:last-child {
    margin-top: 40px;
  }
  .topheadericon i.fa.fa-search {
    display: none;
  }
  #searchform {
    display: block;
  }

  i.fa.fa-shopping-cart {
    color: #fff;
  }
  form.search-form {
    display: block !important;
    position: absolute;
    top: -40px;
    height: 40px;
  }
  li.header-cart-icon a {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  form.search-form input.search-submit {
    position: relative;
    top: -41px;
    width: 68px;
    right: 13px;
    height: 35px;
  }

  ul.main-nav.nav.navbar-nav.topheadericon {
    color: #fff !important;
    margin-left: 15px;
  }
  .header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .row:before,
  .header .container:before,
  .header .row:after,
  .header .container:after {
    display: none;
  }
  .header-ctn > div > a > span {
    display: none;
  }
  #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;
  }
  .testimonial-slider .slick-prev {
    left: -20px;
  }
  .testimonial-slider .slick-next {
    right: -20px;
  }
}

@media only screen and (max-width: 767px) {
  h2.category-title{
      font-size: 32px;
      padding-top: 48px;
  }
  .sbttBacktotop img {
    width: 36px;
  }
  .header-logo {
    margin-left: 15px;
  }
  .variations #pick-your-kit {
    width: 100%;
  }

  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
  .section-testimonial .testimonial-slider {
    padding: 50px 8px 0;
  }
  .testimonial-slider .slick-prev {
    left: -12px;
  }
  .testimonial-slider .slick-next {
    right: -12px;
  }
  .section-testimonial .slick-dots {
    left: 0;
  }
  .socialicon {
    width: 38px;
    height: 38px;
    line-height: 42px;
    margin: 0px 16px;
  }
}
@media only screen and (max-width: 768px) {
  .header-logo {
    float: left;
    text-align: center;
  }
  .menu-toggle > a > span {
    display: none;
  }
  /* ul.main-nav.nav.navbar-nav.topheadericon {color: #fff!important;} */
  .welcomecontent ul li {
    margin: 0px -11px;
  }
  .welcomecontent ul {
    margin-left: 0px;
  }
  ul.products.columns-3 li {
    width: 100%;
    float: none;
  }
  ul.products.columns-3 {
    margin-left: 0px;
  }
  .faq-part {
    padding: 0px 15px;
  }
  .endrosmeny-para {
    padding: 0px 15px;
  }
  .instructionsheading.endor:after {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 34%;
    position: absolute;
    right: 0;
    top: 5px;
  }
  .instructionsheading.endor:before {
    content: "";
    background-color: #787878;
    height: 1px;
    width: 34%;
    position: absolute;
    left: 0;
    top: 5px;
  }
  .woocommerce-product-gallery__image {
    float: none;
  }
  .summary.entry-summary {
    margin-left: 15px;
    margin-right: 15px;
  }
  .pro-link-single {
    margin: 0px 22px;
  }

  .main-nav > li > a {
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
  }
  form.gem-form .gem-field {
    height: 48px;
    width: 100% !important;
  }
  input.button.gem-submit {
    width: 100%;
    margin-left: 0px;
    top: 9px;
  }
  .instructionsheading.faq:before {
    width: 42%;
  }
  .instructionsheading.faq:after {
    width: 42%;
  }
  .biomassresults {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .header-logo .logo img {
    width: 120px;
  }
  [class*="col-xs"] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
  #footer #menu-item-5330.menu-item-has-children:hover .sub-menu {
    left: -190px;
  }
}
@media only screen and (max-width: 420px) {
  #footer #menu-item-5330.menu-item-has-children:hover .sub-menu {
    left: 0;
  }
  .socialicon {
    width: 30px;
    height: 30px;
    line-height: 32px;
    margin: 0px 14px;
  }
  .socialicon .fa {
    font-size: 20px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .instructionpoint {
    min-height: 592px;
  }
  .whypoint {
    text-align: center;
    text-align: -webkit-center;
  }
  input.button.gem-submit {
    margin-left: 0px;
    top: 15px;
  }
  /* .navbar-nav { float: none;}   */
}
