@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800&display=swap");

.gb-content-text a {
    color: #37a400;
    text-decoration: underline;
}


body {
  background-color: #f6f6fa;
}

a, a:hover, a:visited {
  color: inherit;
  text-decoration: none;
}

.g-top {
  width: 100%;
  height: auto;
  background-color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 50px;
  color: #fff;
}
.g-top .g-top-left {
  text-align: left;
}
.g-top .g-top-right {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .g-top .g-top-left,
.g-top .g-top-right {
    text-align: center !important;
  }
}

.g-header {
  padding-top: 15px;
  padding-bottom: 15px;
}
.g-header .g-header-search {
  width: 90%;
  height: 50px;
  line-height: 50px;
  border: 2px solid #000;
  border-radius: 6px;
  margin: auto;
  position: relative;
}
.g-header .g-header-search input[type=text] {
  width: 80%;
  height: 100%;
  border: 0;
  background: none;
  line-height: 40px;
  outline: none;
  padding-left: 10px;
}
.g-header .g-header-search i.fas {
  position: absolute;
  right: 10px;
  top: 15px;
}
.g-header .g-header-search .aws-search-clear span {
  background-color: #f6f6fa;
}
.g-header .g-header-search .aws-loader {
  background-color: #f6f6fa;
}
.g-header .g-header-cart {
  display: flex;
}
.g-header .g-header-cart img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
}
.g-header .g-header-cart span.g-header-cart-count {
  width: auto;
  min-width: 30px;
  text-align: center;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  background-color: #2ba3e5;
  color: #000;
  border-radius: 59%;
  position: absolute;
  top: 20px;
  left: 52px;
  font-size: 1.3em;
  font-weight: 500;
}

.g-menu {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(to top, #318c02, #37a400);
  border-bottom: 7px solid #176a2c;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
}
.g-menu ul.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.g-menu ul.menu-list > li.menu-item {
  display: inline-block;
  padding-right: 30px;
  text-transform: uppercase;
}
.g-menu ul.menu-list > li.menu-item:hover > ul.sub-menu {
  display: block;
}
.g-menu ul.menu-list > li.menu-item > ul.sub-menu {
  width: 100%;
  display: none;
  columns: 4;
  background-color: #176a2c;
  position: absolute;
  z-index: 99;
  padding: 0;
}
.g-menu ul.menu-list > li.menu-item > ul.sub-menu > li.menu-item {
  font-size: 15px;
  line-height: 35px;
  padding-left: 15px;
  list-style: none;
}
.g-menu ul.menu-list > li.menu-item > ul.sub-menu > li.menu-item > ul.sub-menu {
  padding: 0;
}
.g-menu ul.menu-list > li.menu-item > ul.sub-menu > li.menu-item > ul.sub-menu > li.menu-item {
  list-style: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.767);
}
.g-menu ul.menu-list > li.menu-item > ul.sub-menu > li.menu-item > ul.sub-menu > li.menu-item > ul.sub-menu {
  padding: 0;
  font-size: 12px;
  list-style: none;
}
.g-menu .g-header-toggle {
  float: right;
  cursor: pointer;
  color: #fff;
  font-size: 2.5em;
  margin-top: 7px;
}

.g-modal {
  display: none;
  width: 90%;
  height: 90%;
  min-height: 400px;
  background-color: #176a2c;
  padding: 30px;
  position: fixed;
  left: 5%;
  top: 30px;
  z-index: 99;
}
.g-modal.active {
  display: block;
}
.g-modal .g-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2.5em;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}
.g-modal .g-modal-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.g-modal .g-modal-inner ul.menu-list-m {
  padding: 0;
  margin: 0;
  list-style: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item {
  line-height: 60px;
  position: relative;
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item span.g-triangle {
  font-weight: bold;
  font-size: 35px;
  cursor: pointer;
  margin-left: 34px;
  display: none;
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item span.g-triangle.g-active {
  transform: rotate(180deg);
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item.has-children > span.g-triangle {
  display: inline-block;
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item > ul.sub-menu {
  display: none;
  padding: 0;
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item > ul.sub-menu.g-active {
  display: block;
}
.g-modal .g-modal-inner ul.menu-list-m > li.menu-item > ul.sub-menu > li.menu-item {
  font-size: 23px;
  color: rgba(255, 255, 255, 0.788);
  list-style: none;
  padding-left: 20px;
}
.g-modal .g-modal-inner .g-line {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.521);
}
.g-modal .g-modal-inner ul.g-modal-links {
  padding: 0;
  line-height: 1em;
  font-size: 22px;
  color: #fff;
}
.g-modal .g-modal-inner ul.g-modal-links li {
  padding-top: 10px;
  padding-bottom: 10px;
  list-style: none;
}

.g-footer0 {
  padding-top: 80px;
  padding-bottom: 40px;
}
.g-footer0 .g-footer0-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #000;
  font-weight: 500;
}
.g-footer0 input[type=text] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: none;
  margin-top: 0 !important;
  outline: none;
}
.g-footer0 textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background: none;
  margin-top: 0 !important;
  resize: none;
  outline: none;
}
.g-footer0 .gform_wrapper {
  margin-top: 0;
}
.g-footer0 .gform_wrapper ul li.gfield {
  margin-top: 10px;
  margin-left: 10px;
}
.g-footer0 .gform_wrapper .gform_footer {
  margin-top: 0;
  margin-right: 16px;
  width: 50%;
  float: right;
}
@media only screen and (min-width: 992px) {
  .g-footer0 .left-col {
    padding-right: 5px;
  }
}
@media only screen and (min-width: 992px) {
  .g-footer0 .right-col {
    padding-left: 5px;
  }
}
.g-footer0 input[type=submit] {
  width: 100% !important;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, #318c02, #37a400);
}
.g-footer0 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.g-footer0 ul li.g-footer0-link {
  line-height: 46px;
  font-family: "Poppins", sans-serif;
  color: #666666;
}
.g-footer0 .g-footer0-social {
  text-align: right;
}
.g-footer0 .g-footer0-social a {
  margin-left: 10px;
}

footer.g-footer {
  width: 100%;
  height: auto;
  background-color: #000;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer.g-footer .g-footer-left {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #cbcacb;
  letter-spacing: 1px;
  line-height: 54px;
}
footer.g-footer .g-footer-payments {
  text-align: right;
}
footer.g-footer .g-footer-payments img {
  margin-left: 15px;
}
footer.g-footer .g-footer-bottom {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #cbcacb;
  letter-spacing: 1px;
  text-align: center;
}
footer.g-footer .g-footer-bottom span {
  margin-left: 7px;
  margin-right: 7px;
}

.footer-line {
  width: 100%;
  height: 2px;
  display: block;
  background: linear-gradient(to right, #000, #262627, #000);
}

.g-banner {
  width: 100%;
  height: auto;
}
.g-banner img {
  width: 100%;
  height: auto;
}

.g-cats {
  margin-top: 60px;
}
.g-cats .g-cat {
  height: 100%;
  background-color: #fff;
  padding-bottom: 50px;
  position: relative;
}
.g-cats .g-cat .g-cat-image {
  width: 100%;
  height: auto;
  padding-top: 110%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-bottom: 7px solid #293d46;
}
.g-cats .g-cat .g-cat-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #000;
  margin-top: 20px;
  line-height: 1.1em;
  text-align: center;
  font-weight: 400;
  padding-left: 23px;
  padding-right: 23px;
}
.g-cats .g-cat .g-cat-link {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  line-height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #317141;
  letter-spacing: 1px;
}
.g-cats .g-cats-link {
  display: inline-block;
  padding: 15px 25px 15px 25px;
  background: linear-gradient(to top, #318c02, #37a400);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 50px;
}

.g-advanced {
  margin-top: 40px;
}
.g-advanced .g-advanced-text {
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.g-advanced .g-advanced-text .g-advanced-title {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  color: #000;
  text-transform: uppercase;
  line-height: 1.1em;
  font-weight: 500;
}
.g-advanced .g-advanced-text .g-advanced-link {
  display: inline-block;
  padding: 15px 25px 15px 25px;
  background: linear-gradient(to top, #318c02, #37a400);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 50px;
}
.g-advanced .g-advanced-text .g-advanced-search {
  max-width: 350px;
  min-width: 60%;
  display: inline-block;
  background: linear-gradient(to top, #318c02, #37a400);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 50px;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}
.g-advanced .g-advanced-text .g-advanced-search input[type=text] {
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  line-height: 40px;
  outline: none;
  padding-left: 10px;
  color: #fff;
}
.g-advanced .g-advanced-text .g-advanced-search input[type=text]::placeholder {
  color: #fff;
  font-size: 1.3em;
}
.g-advanced .g-advanced-text .g-advanced-search input[type=text]:focus::placeholder {
  opacity: 0;
}
.g-advanced .g-advanced-text .g-advanced-search i.fas {
  position: absolute;
  right: 10px;
  top: 18px;
}
.g-advanced .g-advanced-text .g-advanced-search .aws-search-clear span {
  color: #fff;
}
.g-advanced .g-advanced-text .g-advanced-search .aws-loader {
  color: #fff;
}
.g-advanced .g-advanced-image {
  text-align: center;
}

.g-white {
  background: linear-gradient(to right, #f6f6f6, #fff, #f6f6f6);
}

.g-logos {
  padding-top: 70px;
}
.g-logos .g-logo {
  display: flex;
  padding-bottom: 15px;
}
.g-logos .g-logo a {
  width: auto;
  max-width: 80%;
  height: auto;
  margin: auto;
}

.g-link {
  width: 100%;
  text-align: center;
  line-height: 80px;
  background: linear-gradient(to top, #318c02, #37a400);
  font-family: "Poppins", sans-serif;
  color: #fff !important;
  letter-spacing: 1px;
  font-size: 30px;
  display: block;
}

.gc-banner {
  width: 100%;
  height: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  letter-spacing: 1px;
  background-color: #f0f0f7;
}
.gc-banner h1 {
  text-transform: uppercase;
  font-weight: 400;
}
.gc-banner p {
  margin: 0;
}

.gc-cats {
  padding-top: 30px;
}
.gc-cats .gc-cats-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.gc-cats .gc-cat-out {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
  display: none;
}
.gc-cats .gc-cat-out.gc-active {
  display: block;
}
.gc-cats .gc-cat {
  height: 100%;
  background-color: #fff;
  padding: 20px 20px 50px 20px;
  margin-top: 20px;
  position: relative;
}
.gc-cats .gc-cat .gc-cat-image {
  width: 100%;
  height: auto;
  padding-top: 60%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.gc-cats .gc-cat .gc-cat-name {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.1em;
}
.gc-cats .gc-cat .gc-cat-description {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  line-height: 1.2em;
  color: #353535;
}
.gc-cats .gc-cat .gc-cat-link {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 15px;
  line-height: 40px;
  text-align: center;
  color: #3ca11a;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
}

#gc_more {
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-top: 50px;
  display: inline-block;
  font-size: 20px;
  font-weight: 200;
}

.gps-top {
  width: 100%;
  line-height: 1.5em;
  background-color: #f0f0f7;
  padding-top: 20px;
  padding-bottom: 20px;
}
.gps-top span {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  color: #000;
}

.gps-image {
  width: 100%;
  height: auto;
  padding-top: 60%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.gps-cat-name {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  font-weight: 500;
}

.gps-cat-line {
  width: 50%;
  height: 1px;
  background-color: #f0f0f7;
  margin-top: 10px;
}

.gps-cat-description {
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  color: #363637;
}

table.gps-products {
  table-layout: fixed;
  margin-top: 40px;
}
table.gps-products th.gps-product-total {
  font-family: "Poppins", sans-serif;
  color: #363637;
  font-weight: 200;
}
table.gps-products th.gps-product-property {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #666;
  font-weight: 600;
  font-size: 12px;
}
table.gps-products tr:nth-of-type(odd) {
  background: none;
}
table.gps-products tr.out {
  display: none;
}
table.gps-products tr.out:last-child {
  border-bottom: 1px solid #dee2e6;
}
table.gps-products tr.out.gps-active {
  display: flex;
}
table.gps-products tr.out:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.486);
}
table.gps-products td.gps-product-name {
  font-family: "Poppins", sans-serif;
  color: #363637;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  padding-top: 10px;
  padding-left: 10px;
}
table.gps-products td.gps-product-attribute {
  font-family: "Poppins", sans-serif;
  color: #363637;
  font-weight: 300;
  text-align: center;
  font-size: 13px;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
table.gps-products td.gps-product-attribute a:hover {
  color: #3ca11a;
}
table.gps-products p.gps-product-links {
  text-align: right;
  font-family: "Poppins", sans-serif;
  color: #6e6e6e;
  font-size: 0.8em;
  font-weight: 300;
  padding-right: 15px;
}

.gps-cat-out {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
}

.gps-cat {
  height: 100%;
  background-color: #fff;
  padding: 10px 10px 30px 10px;
  margin-top: 20px;
  position: relative;
}
.gps-cat .gps-cat-image {
  width: 100%;
  height: auto;
  padding-top: 60%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.gps-cat .gps-cat-name {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.1em;
}
.gps-cat .gps-cat-description {
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  line-height: 1.2em;
  color: #353535;
}
.gps-cat .gps-cat-link {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 15px;
  line-height: 40px;
  text-align: center;
  color: #3ca11a;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
}

.gp-product-gallery {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding: 30px 30px 10px 30px;
}
.gp-product-gallery .gp-product-image {
  width: 100%;
  height: auto;
  padding-top: 80%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.gp-product-gallery .gp-product-images {
  text-align: center;
  margin-top: 20px;
}
.gp-product-gallery .gp-product-images .gp-product-images-item {
  display: inline-block;
  width: 50px;
  height: 40px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
}
.gp-product-gallery .gp-product-images .gp-product-images-item.active {
  border: 1px solid #e1e1e1;
  cursor: default;
}

.gp-product-info {
  padding-left: 70px;
}
@media only screen and (max-width: 991px) {
  .gp-product-info {
    padding-left: 15px;
  }
}
.gp-product-info .gp-product-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
.gp-product-info .gp-product-line {
  width: 50%;
  height: 1px;
  background-color: #f0f0f7;
  margin-top: 10px;
}
.gp-product-info .gp-product-undername {
  width: 100%;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding: 10px 0 10px 10px;
}
.gp-product-info .gp-product-undername span.gp-price {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: #d21e1e;
  letter-spacing: 1px;
}
.gp-product-info .gp-product-undername span.gp-calculate,
.gp-product-info .gp-product-undername span.gp-contact {
  font-family: "Poppins", sans-serif;
  color: #3da41b;
  float: right;
  line-height: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}
.gp-product-info .gp-product-undername span.gp-contact {
  cursor: default;
  line-height: 1.2em;
  width: 200px;
  max-width: calc(100% - 160px);
  font-size: 0.7em;
}
.gp-product-info .gp-product-undername span.gp-addcart {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to top, #318c02, #37a400);
  color: #fff;
  line-height: 36px;
  font-size: 14px;
  height: 100%;
  letter-spacing: 1px;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  float: right;
  margin-right: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .gp-product-info .gp-product-undername span.gp-addcart {
    padding-left: 5px;
    padding-right: 7px;
  }
}
.gp-product-info .gp-product-undername span.gp-addcart i.fas {
  font-size: 1.5em;
  line-height: 40px;
}
.gp-product-info .rp_shipping_button {
  display: none;
}
.gp-product-info .gp-product-color select {
  width: 150px;
  height: 35px;
  border: 2px solid #318c02;
  margin-top: 10px;
  outline: none;
}
.gp-product-info form.cart {
  display: none;
}
.gp-product-info .gp-specifications-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}
.gp-product-info table.gp-specifications td {
  line-height: 17px;
}
.gp-product-info table.gp-specifications .gp-prop {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #929294;
}
.gp-product-info table.gp-specifications .gp-value {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
}

.gp-product-description {
  padding-top: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
}

.gp-product-features {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding: 20px 40px 20px 40px;
}
@media only screen and (min-width: 992px) {
  .gp-product-features {
    column-count: 3;
  }
}
.gp-product-features .gp-product-feature {
  line-height: 40px;
  color: #3f3f3f;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
}
.gp-product-features .gp-product-feature img {
  margin-right: 15px;
}

.gp-related-title {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
}
.gp-related-title a.gp-related-title-more {
  float: right;
  font-size: 15px;
  color: #666;
  line-height: 37px;
  font-weight: 500;
}

.gp-related-product {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding: 30px 30px 50px 30px;
  height: 100%;
  position: relative;
}
.gp-related-product .gp-related-product-image {
  width: 70%;
  height: auto;
  padding-top: 50%;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
}
.gp-related-product .gp-related-product-name {
  text-align: center;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  margin-top: 30px;
  text-transform: uppercase;
  line-height: 1.2em;
  font-weight: 500;
  margin-left: 10px;
  font-size: 0.9em;
  margin-right: 10px;
}
.gp-related-product table.gp-related-product-attributes td.gp-property {
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  color: #949494;
  letter-spacing: 1px;
}
.gp-related-product table.gp-related-product-attributes td.gp-value {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #010101;
  padding-left: 25px;
}
.gp-related-product .gp-related-product-link {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 50px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  letter-spacing: 1px;
  color: #3da41b;
}

.gb-content {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  padding-bottom: 20px;
}
.gb-content img {
  width: 100%;
  height: auto;
}
.gb-content .gb-content-date {
  padding: 30px 40px 0 40px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
}
.gb-content .gb-content-text {
  padding: 20px 40px 20px 40px;
  font-family: "Poppins", sans-serif;
}
.gb-content .gb-content-tags {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #3ca11a;
}

.gb-content-post-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #3ca11a;
  letter-spacing: 1px;
  padding-top: 30px;
}
.gb-content-post-link.right {
  float: right;
}

.gb-other-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 1px;
  padding-top: 20px;
}

.gb-other-post {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  height: 100%;
  padding-bottom: 50px;
  position: relative;
}
.gb-other-post img {
  width: 100%;
  height: auto;
}
.gb-other-post .gb-other-date {
  padding: 20px 20px 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
}
.gb-other-post .gb-other-excerpt {
  padding: 20px 20px 0 20px;
  font-family: "Poppins", sans-serif;
}
.gb-other-post .gb-other-link {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 50px;
  font-family: "Poppins", sans-serif;
  color: #3ca11a;
  letter-spacing: 1px;
}

.gbs-featured-title {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  letter-spacing: 1px;
}

.gbs-featured {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  margin: 0;
}
.gbs-featured img {
  width: 100%;
  height: auto;
}
.gbs-featured .gbs-featured-text {
  padding: 30px;
}
.gbs-featured .gbs-featured-text .gbs-featured-date {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gbs-featured .gbs-featured-text .gbs-featured-excerpt {
  padding-top: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
}
.gbs-featured .gbs-featured-text .gbs-featured-tags {
  padding-top: 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #3ca11a;
}
.gbs-featured .gbs-featured-text .gbs-featured-link {
  width: 100%;
  text-align: center;
  line-height: 50px;
  font-family: "Poppins", sans-serif;
  color: #3ca11a;
  letter-spacing: 1px;
}

.gbs-all-title {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  letter-spacing: 1px;
}
.gbs-all-title .gbs-cats {
  float: right;
  background: linear-gradient(to top, #318c02, #37a400);
  color: #fff;
  padding-left: 40px;
  padding-right: 30px;
  line-height: 35px;
  font-size: 17px;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
}
.gbs-all-title .gbs-cats .gbs-cats-left-corner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 35px;
  border-left: 20px solid #f6f6fa;
  border-bottom: 35px solid rgba(255, 255, 255, 0);
}
.gbs-all-title .gbs-cats i.fas {
  position: absolute;
  right: 7px;
  top: 9px;
}
.gbs-all-title .gbs-cats ul.gbs-cats-menu {
  display: none;
  position: absolute;
  top: 35px;
  right: 0;
  background-color: #fff;
  color: black;
  z-index: 99;
  padding: 0;
  list-style: none;
  border: 1px solid #3ca11a;
}
.gbs-all-title .gbs-cats ul.gbs-cats-menu.active {
  display: block;
}
.gbs-all-title .gbs-cats ul.gbs-cats-menu li {
  padding-left: 17px;
  padding-right: 10px;
  font-size: 12px;
  white-space: nowrap;
  text-align: right;
  line-height: 25px;
  cursor: pointer;
}
.gbs-all-title .gbs-cats ul.gbs-cats-menu li:hover {
  color: #3ca11a;
}

.gc-content {
  font-family: "Poppins", sans-serif;
}

.gc-image {
  width: 100%;
  height: 100%;
  background-color: cover;
  background-position: 50% 50%;
}

.gbs-other-post-out {
  display: none;
}
.gbs-other-post-out.active {
  display: block;
}

#gbs_more {
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-top: 50px;
  display: inline-block;
  font-size: 20px;
  font-weight: 200;
}

.gc-content {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  padding-top: 20px;
}
.gc-content h2 {
  font-weight: 400;
}

h2.gc-contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
}

p.gc-contact-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-align: center;
}

.gc-contact-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.gc-contact-form-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
}

.gc-contact-form-info {
  margin-top: 20px;
  line-height: 20px;
  font-size: 0.9em;
  font-weight: 500;
}
.gc-contact-form-info img {
  margin-right: 10px;
}

.gc-locations-title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
}

.gc-locations-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  text-align: center;
  font-weight: 300;
  color: #010101;
}

.gc-locations {
  column-count: 3;
  padding: 40px;
}
.gc-locations .gc-locations-category-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-left: 50px;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 0;
}
.gc-locations .gc-locations-location-name {
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  color: #717173;
  margin-left: 50px;
  line-height: 1.8em;
}

.gc-other {
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to top, #e7e7ed, #f6f6fa);
}
.gc-other .gc-other-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.gc-other .gc-other-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
.gc-other a.gc-other-link {
  display: inline-block;
  padding-left: 60px;
  padding-right: 60px;
  background: linear-gradient(to top, #318c02, #37a400);
  line-height: 50px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}
.gc-other .gc-other-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.gdp-content {
  padding-top: 20px;
  padding-bottom: 80px;
  background: linear-gradient(to top, #e7e7ed, #f6f6fa);
}
.gdp-content .gdp-content-text {
  font-family: "Poppins", sans-serif;
}
.gdp-content .gdp-content-text .woocommerce-message a.button.wc-forward {
  color: #212529 !important;
}
.gdp-content .gdp-content-text a {
  color: #318c02 !important;
}
.gdp-content .gdp-content-text a:hover {
  text-decoration: underline !important;
}
.gdp-content .gdp-content-text a.button {
  color: #fff !important;
}
.gdp-content .gdp-content-text a.checkout-button {
  background: linear-gradient(to top, #318c02, #37a400);
}
.gdp-content input[type=submit] {
  width: 200px !important;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, #318c02, #37a400);
}
.gdp-content .woocommerce-MyAccount-navigation-link {
  list-style: none;
}
.gdp-content .woocommerce-MyAccount-navigation-link:before {
  content: "•";
  color: #318c02;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.gdp-widget .sidebar-title {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  letter-spacing: 1px;
}
.gdp-widget li.widget {
  list-style: none;
}
.gdp-widget li.widget li {
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  font-size: 1em;
  margin-bottom: 10px;
  color: #666;
  font-weight: 300;
}
.gdp-widget li.widget li span.post-date {
  display: block;
  font-size: 0.8em;
  color: #979797;
  text-transform: uppercase;
}
.gdp-widget ul {
  list-style: none;
  padding: 0;
}

.gsearch-content {
  margin-top: 80px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}
.gsearch-content .gsearch-title {
  line-height: 40px;
  font-weight: 500;
  font-size: 1.2em;
}
.gsearch-content p {
  color: #666;
}

.woocommerce .col-1, .col-2 {
  max-width: none;
}

.woocommerce .form-row {
  display: block;
}

a.view-terms:hover {
  text-decoration: underline;
}
p.gp-product-img-main-link {
    text-align: center;
}
a.gp-product-main-link-img {
    display: block;
}
/*# sourceMappingURL=theme.css.map */

.contactform-section input#gform_submit_button_3 {
	width:100% !important;
}

