@charset "UTF-8";
/* css default reset */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #006F43;
  --main-color2: #E42363;
  --subordinate-color: #58595B;
}
a {
  color: #E42363;
}

/* helper classes */
.form-control-by-me {
  border: 2px solid #ededed;
  height: 45px;
  box-shadow: none;
  outline: none;
  padding: 0 10px;
  font-size: 14px;
  color: #58595B;
  font-weight: 600;
}
input::placeholder {
  color: #999;
  font-weight: normal;
}
.search-group .form-control {
  height: 26px;
  border: 0;
  padding-left: 10px;
  font-size: 12px;
  color: #798080;
  font-weight: 600;
  width: 40px;
  transition: all 0.3s;
  background-image: url(../img/search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 35px;
}
.search-group .form-control:focus,.search-group .form-control:active,.search-group .form-control.active {
  width: 150px;
  background-position: 10px center;
  background-size: 15px;
}
.search-group .easy-autocomplete-container ul {
  min-width: 250px;
  border: 1px solid #EEE;
  
}
.search-group .easy-autocomplete-container ul li {
  margin: 0;  
  padding: 2px;
  border: none;
}
.search-group .easy-autocomplete-container ul .eac-item {
    word-break: normal;
    display: flex;
    align-items: center;
}
.search-group .easy-autocomplete-container ul .eac-item > * {
    line-height: 1.1;
}
.search-group .easy-autocomplete-container ul .eac-item > span {
    display: inline-block;
    padding-left: 5px;
}
.cropped-img-wrapper {
  width: 100%;
  position: relative;
}
.cropped-img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.cropped-img img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}
/* css for productByCategory - start */
.gridColumn {
  -webkit-display: grid;
  display: grid;
  -webkit-grid-template-columns: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .gridColumn {
    -webkit-grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gridColumn {
    -webkit-grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gridColumn {
    -webkit-grid-template-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
  }
}

.gridColumn .column {
  min-height: 200px;
  width: 100%;
}
@media (min-width: 992px) {
  .gridColumn .column:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
  }
  .gridColumn .column:nth-child(8) {
    grid-column: 3/-1;
    grid-row: 3/5;
  }
  .gridColumn .column:nth-child(9) {
    grid-column: 1/3;
  }
  .productByCategory figcaption:nth-child(1) .flcard-info .cardimg.cropped-img-wrapper .cropped-img {
    padding-bottom: calc(120% + 82px);
  }
  .productByCategory figcaption:nth-child(8) .flcard-info .cardimg.cropped-img-wrapper .cropped-img {
    padding-bottom: calc(120% + 93px);
  }
  .productByCategory figcaption:nth-child(9) .flcard-info .cardimg.cropped-img-wrapper .cropped-img {
    padding-bottom: calc(60%);
  }
  
  .productBySympathy .flcard-info .cardimg.cropped-img-wrapper .cropped-img {
  	padding-bottom: 120%!important;
  }
}

.productByCategory .flcard-info .cardimg {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F9F9F9;
}
.productByCategory .flcard-info .cardimg > img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.productByCategory .categryFilter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.productByCategory .categryFilter .filterOptions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.productByCategory .categryFilter .filterOptions select::-ms-expand {
  display: none;
}
.productByCategory .categryFilter .filterOptions select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.productByCategory .categryFilter .filterOptions > label {
  margin-right: 20px;
  font-weight: 600;
  color: var(--subordinate-color);
}
@media (max-width: 575px) {
  .productByCategory .categryFilter .filterOptions > label {
    width: 100%;
    margin-bottom: 5px;
  }
}
.productByCategory .categryFilter .filterOptions .select-control {
  position: relative;
}
@media (max-width: 767px) {
  .productByCategory .categryFilter .filterOptions .select-control {
    margin-bottom: 4px;
  }
}
.productByCategory .categryFilter .filterOptions .select-control .form-control-by-me {
  margin-right: 10px;
  width: 145px;
  text-align: center;
  background-color: transparent;
}
.productByCategory .categryFilter .filterOptions .select-control::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  position: absolute;
  top: 50%;
  right: 15px;
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  background: #fff;
  cursor: pointer;
  pointer-events: none;
  transition: 0.25s all ease;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--subordinate-color);
}
.productByCategory .categryFilter .clear-filter {
  border: 0;
  outline: 0;
  box-shadow: none;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 991px) {
  .productByCategory .categryFilter .clear-filter {
    margin-top: 20px;
  }
}

/* This is to remove the arrow of select element in IE */
/* css for productByCategory - end */

/* css for productByCategorySympathy - start */
.card-details-pricing-sympathy{
	color: #006f43;
	text-align: center;
}
.gridColumnSympathy {
  -webkit-display: grid;
  display: grid;
  -webkit-grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .gridColumnSympathy {
    -webkit-grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gridColumnSympathy {
    -webkit-grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gridColumnSympathy {
    -webkit-grid-template-columns: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
  }
}

.gridColumnSympathy .column {
  min-height: 200px;
  width: 100%;
}

/* This is to remove the arrow of select element in IE */
/* css for productByCategorySympathy - end */

body,
p {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 26px;
}

html {
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  position: relative;
  text-rendering: optimizeLegibility;
}

ul,
ul li,
ul li a {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a:link,
a:visited {
  text-decoration: none;
}

/* btn */
.flwbtn {
  background: #006f43;
  font-family: Poppins;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
  min-height: 48px;
  line-height: 48px;
  padding: 0 35px;
  display: inline-block;
  border: 1px solid #006f43;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.flwbtn:hover {
  color: #006f43;
  background: transparent;
}

.fllink-btn {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 25px;
  color: #006f43;
  display: inline-flex;
}
.fllink-btn span {
  margin-left: 10px;
  line-height: 25px;
  color: #006f43;
  display: inline-block;
  font-size: 25px;
}

.clearfix {
  position: relative;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.secpadding {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .secpadding {
    padding: 50px 0;
  }
}

.sectitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sectitle h2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  text-align: left;
  color: #006f43;
}
.sectitle h2 span {
  color: #000c07;
  font-weight: 400;
}
.sectitle a {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  display: inline-block;
  color: #006f43;
}
.sectitle a span {
  margin-left: 10px;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
}

.grid-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.container {
  width: 100%;
  padding: 40px 15px;
  margin-right: auto;
  margin-left: auto;
}
.container::after {
  content:'';
  clear:both;
  display:block; 
}
.container .row {
  display: initial;
  clear: both;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 575px) {
  .owl-carousel .owl-nav {
    display: none !important;
  }
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 55px;
  height: 40px;
  background: #f9f9f9;
  border-radius: 0;
  color: #58595b;
  cursor: pointer;
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  z-index: 999;
  font-size: 30px;
}
.owl-carousel .owl-nav button.owl-prev:focus, .owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-next:hover {
  outline: none;
  box-shadow: none;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: #006f43;
  color: #fff;
}

.owl-nav button.owl-prev {
  left: -30px;
}

.owl-nav button.owl-next {
  right: -30px;
}
.product-area .prdslider-wrp {
  max-width: 600px;
  width: 100%;
}
.product-area .flproductinfo-details {
  margin-top: 40px;
}
@media (min-width: 576px) {
  .grid-container, .container {
    max-width: 540px;
  }

  .grid-smcloum-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    width: 100%;
  }

  .grid-smcloum-6 {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .grid-container, .container,.grid-container.product-container {
    max-width: 720px;
  }
  .grid-container.product-container {
    max-width: 600px;
  }
  .product-area .prdslider-wrp {
    width: 100%;
    max-width: 600px;
  }
  .container.cart-container,.container.checkout-container {
    width: 100%;
    max-width: 980px;
  }
  .grid-mdcloum-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    width: 100%;
  }

  .grid-mdcloum-6 {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .grid-cloum-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    width: 100%;
  }

  .grid-cloum-6 {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
  }

  .grid-container, .container, .container.cart-container {
    max-width: 960px;
  }
  .grid-container.product-container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .grid-container, .container, .grid-container.product-container, .container.cart-container {
    max-width: 1140px;
  }
}
.panel-box {
  background-image: url(/img/tiny_grid.png);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 1rem;
  position: relative;
}

@media screen and (min-width: 640px) {
  .home-layout .panel-box {
    grid-column: auto/span 2;
  }

  .home-layout {
    display: grid;
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 2fr 2fr 1fr 1fr;
  }
}
@media screen and (min-width: 640px) {
  .home-layout .panel-c,
.home-layout .panel-d {
    grid-column: auto/span 3;
  }
}
@media (min-width: 1500px) {
  .bestseller-section .grid-container {
    max-width: 1440px;
  }
}
/* header */
section.site_message {
  background-color: #e91d76;
  color: #FFF;
  text-align: center;
}
.site_message_text {
  padding: 5px 20px;
}
.topbar-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 76px;
}
.topbar-wrp .fllogo a {
  display: inline-block;
}
@media (max-width: 767px) {
  .topbar-wrp {
    justify-content: center;
  }
  .topbar-wrp .fllogo {
    display: none;
  }
}
.topbar-wrp .top-contact {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .topbar-wrp .top-contact {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .topbar-wrp .top-contact .contact > a {
    font-size: 12px !important;
  }
}
.topbar-wrp .top-mail {
  font-family: Poppins;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #000c07;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .topbar-wrp .top-mail {
    margin-right: 20px;
  }
}
.topbar-wrp .top-mail span {
  color: #000c07;
  font-size: 15px;
  margin-right: 7px;
}
.topbar-wrp .top-tel {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 14px;
  text-align: right;
  color: #000c07;
}
.topbar-wrp .top-tel span {
  color: #000c07;
  font-size: 20px;
  margin-right: 7px;
}
.topbar-wrp .topbar-icon {
  margin-left: 50px;
}
@media (max-width: 767px) {
  .topbar-wrp .topbar-icon {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.topbar-wrp .topbar-icon > ul {
  display: flex;
  align-content: center;
}
.topbar-wrp .topbar-icon ul li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.topbar-wrp .topbar-icon ul li:last-child {
  margin-right: 0;
}
.topbar-wrp .topbar-icon ul li > a > span {
  color: #222222;
  font-size: 24px;
}
.topbar-wrp .topbar-icon ul li .cart-count {
  width: 22px;
  height: 22px;
  line-height: 17px;
  background: #e91d76;
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: Poppins;
  font-weight: 500;
  font-size: 10px;
  text-align: center;
  color: #fff;
  position: absolute;
  box-shadow: 0 0 black;
  left: 15px;
  top: -5px;
}
.topbar-wrp .topbar-icon ul li a.cartToggle {
  cursor: pointer;
}

.flwheader {
  background-color: #f9f9f9;
}

.navwrp {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 1.5em;
  align-items: center;
}
@media (max-width: 767px) {
  .navwrp {
    min-height: 65px;
  }
}
@media (min-width: 768px) {
  .navwrp .navbar-brand {
    display: none;
  }
}
.navwrp .navbar-brand a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
}
.navwrp .navbar-brand a img {
  max-width: 200px;
  width: auto;
  display: inline-block;
}

.logo span {
  color: #0474bc;
}

@media (max-width: 767px) {
  .navitems {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fbfbfb;
    z-index: 100;
    width: 250px;
    padding-top: 20px;
    padding-left: 20px;
    min-height: 100vh;
    transform: translateX(-100%);
    transition: all 0.4s;
    border-right: 1px solid #ddd;
  }
  .navitems.mobile-menu-show {
    transform: translateX(0%);
  }
}
.navitems ul {
  display: grid;
  align-content: flex-start;
  grid-gap: 10px;
}
@media (min-width: 768px) {
  .navitems ul {
    align-content: center;
    align-items: center;
    grid-auto-flow: column;
    grid-gap: 1.25em;
    justify-content: center;
  }
}
@media (min-width: 991px) {
  .navitems ul {
    grid-gap: 1.75em;
  }
}
@media (min-width: 1200px) {
  .navitems ul {
    grid-gap: 2.5em;
  }
}
.navitems ul li {
  position: relative;
}
@media (min-width: 768px) {
  .navitems ul li:hover > ul, .topbar-wrp .topbar-icon ul li.account-dropdown:hover > ul, .navitems ul > li:hover > ul li ul {
    visibility: visible;
    opacity: 1;
    transform: translateX(0px);
  }
}
.navitems ul li a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  color: #000c07;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  padding: 20px 0;
  display: block;
  text-align: left;
}
.navitems li.dropdown > a::after {
    content: "\e9c5";
    display: inline-block;
    margin-left: 3px;
    font-family: 'Nioicon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  .navitems ul li a {
    padding: 5px 0;
  }
  .navitems li.dropdown > a::after {
    content: '';
  }
}
@media (min-width: 1024px) {
  .navitems ul li a {
    font-size: 14px;
  }
}
.navitems ul li a:hover {
  color: #006f43;
}
.navitems ul li a span {
  display: inline-block;
  margin-left: 5px;
}
.navitems ul li.active > a {
  color: var(--main-color2);
}
.navitems ul li ul, .topbar-wrp .topbar-icon ul li.account-dropdown ul {
  display: none;
  z-index: 1000;
  background-color: #006f43;
  min-width: 200px;
}
.topbar-wrp .topbar-icon ul li.account-dropdown ul li {
  display: block;
  padding: 0;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  margin: 0;
}
@media (min-width: 768px) {
  .navitems ul li ul {
    position: absolute;
    left: 0;
    top: calc(100% + 0px);
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.2s;
  }
  .topbar-wrp .topbar-icon ul li.account-dropdown ul {
    position: absolute;
    right: 0;
    top: 100%;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.2s;
    min-width: 180px;
  }
}

ul.group_start{
	padding:10px!important;
    display: block!important;
    position: relative!important;
    transform: translateX(0px)!important;
    left: 0px!important;
    top: 0px!important;
}


.navitems ul li ul li a, .topbar-wrp .topbar-icon ul li.account-dropdown ul li a {
  display: block;
  padding: 10px;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
}
.navitems ul li ul li a:hover, .topbar-wrp .topbar-icon ul li.account-dropdown ul li a:hover {
  background-color: #222;
  color: #ffffff;
}
.navitems ul li ul li a > span, .topbar-wrp .topbar-icon ul li.account-dropdown ul li a > span {
  transform: rotate(-90deg);
  float: right;
}

ul.group_start li:first-child{
	text-decoration: underline;
	color: white;
	cursor: pointer;
}

@media (max-width: 767px) {
  .navitems ul li ul li {
    padding-left: 20px;
  }
  .navitems ul li ul {
    display: block;
    position: relative;
    background-color: transparent;
  }
  .navitems ul li ul li a {
    color: #000;
  }
	ul.group_start{
		padding: 0px!important;
	}
	ul.group_start li:first-child{
		color: black;
	}
  
  .topbar-wrp .topbar-icon ul li.account-dropdown ul {
    position: absolute;
    right: -50px;
    min-width: 175px;
    background-color: #fbfbfb;
    border: 1px solid #DDD;
  }
  .topbar-wrp .topbar-icon ul li.account-dropdown ul li:not(:first-child) {
    border-top: 1px solid #EEE;
  }
  .topbar-wrp .topbar-icon ul li.account-dropdown ul li a {
    color: #000;
  }
}

.mobile-btn {
  display: grid;
  justify-content: right;
  align-content: center;
  grid-auto-flow: column;
  cursor: pointer;
}
.mobile-btn #menu-btn {
  width: 44px;
  height: 38px;
  font-size: 22px;
  cursor: pointer;
}

.nav-list {
  font-family: "Open Sans", sans-serif;
  list-style-type: none;
}

.nav-list:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* Tablet to Desktop */
@media (min-width: 768px) {
  .mobile-btn {
    display: none;
  }
}
/* hero banner */
.hero-inforwrp {
  position: relative;
}
.hero-inforwrp h1 {
  font-family: Allura;
  font-weight: normal;
  font-size: calc(4vw + 20px);
  line-height: 100%;
  color: #000c07;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .hero-inforwrp h1 {
    margin-bottom: 10px;
  }
}
.hero-inforwrp p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 34px;
  color: #58595b;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .hero-inforwrp p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
  }
}

.heroslide-item {
  background-repeat: no-repeat;
  background-color: #e3e3e3;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
}
@media (min-width:768px) {
  .heroslide-item::before {
    content: "";
    transform: skewX(-16deg);
    background-color: #fff;
    position: absolute;
    right: -130px;
    top: 0;
    width: 90%;
    height: 100%;
    background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0.75) 100%);
  }
}
@media (min-width: 1100px) {
  .heroslide-item::before {
    content: "";
    transform: skewX(-16deg);
    background-color: #fff;
    position: absolute;
    right: -130px;
    top: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0.75) 100%);
  }
}

.heroslide-item .grid-row {
  align-items: center;
  justify-content: center;
  height: 75vh;
  display: flex;
  overflow: hidden;
}
@media (max-width: 991px) {
  .heroslide-item .grid-row {
    height: 425px;
    text-align: center;
  }
}
.heroslide-item .grid-row .grid-mdcloum-6 {
  margin-left: auto;
  padding-left: 30px;
}
@media (max-width: 1099px) {
  .heroslide-item .grid-row .grid-mdcloum-6 {
    max-width: 80%;
    width: 80%;
    flex-basis: 80%;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .heroslide-item {
    background-position: left center;
  }
  .heroslide-item .grid-row .grid-mdcloum-6 {
    margin-left: initial;
    max-width: 100%;
    width: 100%;
    flex-basis: 100%;
    padding-left: 0px;
  }
  .hero-inforwrp {
    background-color: rgba(255,255,255,.9);
    padding: 20px
  }
}

.hero-section .owl-carousel .owl-nav button.owl-prev {
  left: 30px;
  background-color: transparent;
}
@media (max-width: 575px) {
  .hero-section .owl-carousel .owl-nav button.owl-prev {
    display: none;
  }
}
.hero-section .owl-carousel .owl-nav button.owl-next {
  right: 30px;
  background-color: transparent;
}
@media (max-width: 575px) {
  .hero-section .owl-carousel .owl-nav button.owl-next {
    display: none;
  }
}
.hero-section .owl-carousel .owl-nav button.owl-prev:hover,
.hero-section .owl-carousel .owl-nav button.owl-next:hover {
  background: #f9f9f9;
  color: #58595b;
}

.content-wrp {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .content-wrp {
    display: block;
  }
}

.product-cardwrp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  grid-auto-rows: minmax(100px, auto);
}
@media (min-width: 1200px) {
  .product-cardwrp {
    width: 75%;
  }
}

.flsection-titleinfo {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .flsection-titleinfo {
    width: 25%;
    margin-bottom: 0px;
    padding-right: 40px;
  }
}
.flsection-titleinfo h2 {
  font-family: Allura;
  font-weight: normal;
  font-size: 63px;
  line-height: 72px;
  color: #000c07;
  margin-bottom: 20px;
}
.flsection-titleinfo p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #58595b;
  margin-bottom: 30px;
}

.flcard-info .cardimg {
  position: relative;
  margin-bottom: 20px;
}
.flcard-info .cardimg img {
  width: 100%;
}
.flcard-info .cardimg .offstick {
  font-family: Poppins;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
  min-height: 20px;
  line-height: 20px;
  background: #e91d76;
  display: inline-block;
  padding: 0 5px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.flcard-info .card-details h3,
.flcard-info .card-details a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000c07;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.flcard-info:hover h3,
.flcard-info:hover a {
  color: #006f43;
}
.flcard-info .card-details span {
  display: inline-block;
}
.flcard-info .card-details .rgprice {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  text-align: left;
  color: #006f43;
  margin-right: 5px;
}
.flcard-info .card-details .dsprice {
  font-size: 12px;
  color: #e91d76;
  font-weight: 400;
  text-decoration: line-through;
}
.flcard-info .card-details .cfprice {
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
.flcard-info .card-de
.flcard-info .card-details p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #58595b;
  margin-bottom: 8px;
}
.flcard-info .card-details .flcontinueread {
  font-family: Poppins;
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
  line-height: 30px;
  text-align: left;
  color: #006f43;
}

.flcard-info:hover .flcontinueread {
  color: #000c07;
}

/* collection section */
.collection-wrp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  grid-auto-rows: minmax(100px, auto);
}
.collection-content-img {
  position: absolute;
}
.collection-content-img img {
  width: 100%;
}
.collection-content-info {
  position: relative;
}
.collection-content-details {
  padding: 0 40px;
}
.collection-content-details h3 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #000c07;
  margin-bottom: 20px;
}
.collection-content-details h3 span {
  font-weight: 600;
}
.collection-content-details p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
  color: #58595b;
  margin-bottom: 20px;
}
.collection-content .wedding-info {
  margin-bottom: 30px;
  background: linear-gradient(#ffe2eb 0%, rgba(255, 247, 250, 0.27) 72.89%, rgba(255, 255, 255, 0) 100%);
  height: 300px;
}
.collection-content .wedding-info .collection-content-img {display: flex;align-items: center;}
.collection-content .wedding-info .collection-content-img img {
  height: 300px;
}
.collection-content .korona-info {
  background: linear-gradient(#fcf3e1 0%, rgba(255, 255, 255, 0) 100%);
  height: 200px;
}
.collection-content .korona-info .collection-content-img {display: flex;align-items: center;}
.collection-content .korona-info .collection-content-img img {
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.plant-wrp {
  height: 530px;
}
@media (max-width: 991px) {
  .collection-wrp {
    display: block;
  }
  .plant-wrp {
    margin-top: 30px;
    height: 250px;
  }
  .plant-wrp-img {
    background-position: center 25%;
  }
  .plant-wrp-img .plant-wrp-info {
      padding-bottom: 10%;
  }
}
.plant-wrp-info {
  text-align: center;
  width: 100%;
  padding-bottom: 45%;
}
.plant-wrp-info h2 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #000c07;
  margin-bottom: 20px;
}
.plant-wrp-info h2 span {
  font-weight: 600;
  color: #006f43;
}
.plant-wrp-img {
  display: flex;
  align-items: center;
}
.plant-wrp-img img {
  width: 100%;
  height: 530px;
}

/* end collection section */
.newarival-section {
  padding: 110px 0;
}

/* about section */
.about-section {
  padding: 120px 0;
  background-color: #f9f9f9;
  position: relative;
}
.about-section .about-shape {
  position: absolute;
  right: 0;
  top: -60px;
}

@media (min-width: 1100px) {
  .tradition-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.tradition-wrp-img {
  position: relative;
}
@media (min-width: 1100px) {
  .tradition-wrp-img {
    width: 57%;
  }
}
.tradition-wrp-img img {
  width: 100%;
}
.tradition-wrp-img .video_popup_area {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateY(-40%);
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.tradition-wrp-img .video_popup_area:focus {
  outline: none;
  border: none;
}
.tradition-wrp-img .close_ajax_btn {
  position: absolute;
  right: 20%;
  top: 8%;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.tradition-wrp-img .close_ajax_btn:focus {
  outline: none;
  border: none;
}
@media (min-width: 1100px) {
  .tradition-wrp-info {
    width: 40%;
  }
}
.tradition-wrp-info h2 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 36px;
  line-height: 52px;
  color: #000c07;
  margin-bottom: 30px;
}
.tradition-wrp-info h2 span {
  color: #006f43;
  font-weight: 600;
  display: inline-block;
}
.tradition-wrp-info .fllink-btn {
  margin-top: 30px;
}

.flpdinfo-wrp {
  margin-top: 50px;
}
@media (min-width: 1024px) {
  .flpdinfo-wrp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    grid-auto-rows: minmax(100px, auto);
  }
}
.flpdinfo-wrp .single-info {
  background-color: #fff;
  padding: 30px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
@media (max-width: 1023px) {
  .flpdinfo-wrp .single-info {
    margin-bottom: 10px;
  }
}
.flpdinfo-wrp .single-info h2 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #58595b;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.flpdinfo-wrp .single-info h2 span {
  color: #006f43;
  font-size: 22px;
}
.flpdinfo-wrp .single-info p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  display: none;
  color: #58595b;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}/*
.flpdinfo-wrp .single-info:hover {
   background-color: #006f43; 
}
.flpdinfo-wrp .single-info:hover h2,
.flpdinfo-wrp .single-info:hover p {
  color: #fff;
}
.flpdinfo-wrp .single-info:hover h2 span,
.flpdinfo-wrp .single-info:hover p span {
  color: #fff;
}*/

/* end about section */
/* blog section */
.flblog-section {
  padding: 80px 0;
}

/* end blog section */
/* bestsummer-section */
.bestsummer-section .flsection-titleinfo h2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 52px;
  color: #000c07;
}
.bestsummer-section .flsection-titleinfo h2 span,
.bestsummer-section .flsection-titleinfo h2 b {
  color: #006f43;
}

/* end bestsummer-section */
/* testimonial */
.fltestimonial {
  background-image: url(../img/testimonial-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  padding: 120px 0;
}
.fltestimonial .grid-container {
  max-width: 740px;
}
.fltestimonial .owl-carousel .owl-nav button.owl-prev,
.fltestimonial .owl-carousel .owl-nav button.owl-next {
  top: 55%;
  transform: translateY(-55%);
}

.fltestimonial-content {
  background-color: #fff;
  margin-top: 50px;
}
.fltestimonial-content .testimonial-info {
  padding: 0 30px 30px;
}
.fltestimonial-content .testimonial-image {
  text-align: center;
  position: relative;
  margin: auto;
  top: -50px;
}
.fltestimonial-content .testimonial-image img {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
}
.fltestimonial-content p {
  font-family: Poppins;
  font-weight: normal;
  font-style: italic;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #58595b;
  margin-bottom: 30px;
}
.fltestimonial-content h4 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #000c07;
}
.fltestimonial-content h5 {
  font-family: Poppins;
  font-weight: normal;
  font-size: 12px;
  line-height: 27px;
  text-align: center;
  color: #006f43;
}

/* end testmonila */
/* client section */
.flclient-wrp {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
  grid-auto-rows: minmax(100px, auto);
  justify-content: center;
  margin-bottom: 90px;
}
.home-instagram {
  padding-top: 90px;
}
.ig-follow-wrapper {
  text-align: left;
  font-family: Poppins;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
}
a.ig-follow {
  background: transparent;
  border: none;
  padding: 0 0 0 2em;
  text-transform: none;
  margin: 0 0 20px 0;
  }
i.fab.fa-instagram {
  left: 0;
}
.ig-follow b {
  color: #006f43;
}
@media (max-width: 1199px) {
  .flclient-wrp {
    grid-template-columns: repeat(auto-fill, calc(100% / 3 - 10px));
  }
}
@media (max-width: 575px) {
  .flclient-wrp {
    grid-template-columns: repeat(auto-fill, calc(50% - 5px));
    margin-bottom: 40px;
  }
}

.client-details {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-details .client-img {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.client-details .client-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
}
.client-details .client-icons {
  z-index: 1;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  width: 100%;
  height: 100%;
}
.client-details .client-icons a {
  display:flex;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center;
  text-align: center;
}
.client-details .client-icons a img {display: block;margin: auto;}
.client-details:hover .client-icons {
  opacity: 1;
  visibility: visible;
}

/* end client section */
/* footer style */
.newslatter-wrp {
  background-color: #fff;
  min-height: 97px;
  padding: 20px 60px;
  margin-bottom: 90px;
}
@media (min-width: 768px) {
  .newslatter-wrp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0px 60px;
  }
}
.newslatter-wrp .nstlatter-title {
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .newslatter-wrp .nstlatter-title {
    width: 30%;
    margin-bottom: 0px;
    text-align: left;
  }
}
.newslatter-wrp .nstlatter-title h2 {
  font-family: Poppins;
  font-weight: normal;
  font-size: 26px;
  line-height: 42px;
  color: #000c07;
  margin-bottom: 15px;
  text-align: center;
}
.newslatter-wrp .nslatter-filed {
  position: relative;
}
@media (min-width: 768px) {
  .newslatter-wrp .nslatter-filed {
    width: 60%;
    padding: 0 30px;
  }
}
.newslatter-wrp .nslatter-filed .input {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 36px;
  color: #58595b;
  border: none;
  width: 100%;
  border-bottom: 1px solid #d9dadf;
  padding: 0 0 0 30px;
}
.newslatter-wrp .nslatter-filed .input:focus {
  outline: none;
  box-shadow: none;
}
.newslatter-wrp .nslatter-filed .input::placeholder {
  color: #999;
}
.newslatter-wrp .nslatter-filed .nssentbtn {
  width: 36px;
  height: 36px;
  background: #006f43;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color .5s;
}
.newslatter-wrp .nslatter-filed .nssentbtn:hover {
  background-color: #333;
}
.newslatter-wrp .nslatter-filed .nssentbtn:focus {
  outline: none;
}

.footer {
  background-color: #f9f9f9;
  padding: 100px 0 0;
}

.footer-wrp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  grid-auto-rows: minmax(100px, auto);
  padding-bottom: 100px;
}
@media (max-width: 1000px) {
  .footer-wrp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .footer-wrp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .footer-wrp {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 40px;
  }
}

.ftr-title {
  margin-bottom: 20px;
}
.ftr-title h2 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 14px;
  line-height: 42px;
  color: #000c07;
}

.footer-content ul li {
  margin-bottom: 14px;
}
.footer-content ul li:last-child {
  margin-bottom: 0;
}
.footer-content ul li a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  display: block;
  text-align: left;
  color: #58595b;
  transition: all 0.3s;
}
.footer-content ul li a:hover {
  color: var(--main-color2);
}
.footer-content ul li span.ni {
  margin-right: 5px;
  font-size: 20px;
  color: #58595b;
  vertical-align: middle;
  display: inline-block;
}

.footercontact-content > ul > li, .footercontact-content > ul > li a {
  font-family: Poppins;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #58595b;
}
.footer-contact-text {
    display: inline-block;
    line-height: 14px;
    vertical-align: middle;
    font-style: normal;
}
.footercontact-content .footer-contact-text > ul > li {
  margin-bottom: 0;
}
.dblemenu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -5px;
}
.dblemenu ul li {
  width: 50%;
  padding: 0 5px;
}

.footer-social {
  margin-top: 30px;
}
.footer-social ul li {
  display: inline-block;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 36px;
  margin-right: 15px;
  border-radius: 4px;
}
.footer-social ul li:last-child {
  margin-right: 15px;
}
.footer-social ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.footer-social ul li a span {
  font-size: 24px;
  color: #fff;
  line-height: 36px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.footer-social ul .instagram {
  background: #d6249f;
  background: linear-gradient(45deg, #fdf497 0%, #fdf497 2%, #fd5949 25%,#d6249f 60%,#285AEB 100%);
}
.footer-social ul li.instagram a span {
    font-size: 32px;
    line-height: 36px;
}
.footer-social ul .facebook {
  background-color: #1873eb;
}
.footer-social ul .youtube {
  background-color: #f60000;
}
.footer-social ul .pinterest {
  background-color: #e60023;
}

.copyright-wrp {
  min-height: 77px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d9dadf;
  position: relative;
}
.copyright-wrp-info p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 42px;
  color: #58595b;
}
.copyright-wrp-info ul li {
  display: inline-block;
  margin-right: 15px;
}
.copyright-wrp-info ul li:last-child {
  margin-right: 0;
}
.copyright-wrp-info ul li a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 42px;
  text-align: left;
  color: #58595b;
}

.copyright-wrp-info .info-img {
  display: table;
  margin: 0 auto;
}
.copyright-wrp-info {
  position: relative;
  z-index: 2;
}
.copyright-wrp-info.payments-footer {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 300px;
}
.footer-powered-by-wrapper {
  text-align: center;
  padding: 40px 0;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.footer-powered-by {
  font-size: .75em;
}
.footer-powered-by img {
  max-width: 100%;
}

/* end footer wrp */
.subhero-sec {
  background-color: #efeeea;
  display: flex;
  min-height: 250px;
  padding: 50px 0;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  background-position: center;
}

.subhero-wrp {
  text-align: center;
}
.subhero-wrp .pageTitle {
  font-family: Poppins;
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  color: #000c07;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.subhero-wrp .pageTitle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -13px;
  width: 40px;
  height: 2px;
  background: #e91d76;
}
.subhero-wrp .breadcrumb {
  margin-bottom: 20px;
}
.subhero-wrp .breadcrumb li {
  display: inline-block;
  list-style: none;
  margin-right: 10px;
}
.subhero-wrp .breadcrumb li:last-child {
  margin-right: 0;
}
.subhero-wrp .breadcrumb li:not(:last-child)::after {
  content: '\25B8';
  font-size: 14px;
  display: inline-block;
  margin-left: 10px;
}
.subhero-wrp .breadcrumb li a {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
  color: #04231c;
}
.subhero-wrp .breadcrumb .active span {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 32px;
  text-align: left;
  color: #04231c;
  opacity: 0.3;
}
.subhero-wrp p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #58595b;
}

.product-area {
  padding: 50px 0;
}
.product-add-top-wrapper {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .product-area {
    padding: 100px 0 40px 0;
    display: table;
    margin: 0 auto;
  }
  .product-area .prdslider-wrp {
    max-width: 100%;
    width: 550px;
    float: left;
  }
  .product-area .flproductinfo-details {
    width: calc(100% - 580px);
    margin-top: 0px;
    float: left;
    margin-left: 30px;
  }
  .product-add-top-wrapper {
    display: none;
  }
}
@media (min-width: 1200px) {
  .product-area .prdslider-wrp {
    width: 550px;
    float: left;
  }
  .product-area .flproductinfo-details {
    width: calc(100% - 610px);
    margin-top: 0px;
    float: left;
    margin-left: 60px;
  }
}
.product-area .flproductinfo-details h2 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 36px;
  line-height: 34px;
  color: #000c07;
  margin-bottom: 30px;
}
.product-area .flproductinfo-details .price {
  margin-bottom: 30px;
}
.product-area .flproductinfo-details .price {
  font-family: Poppins;
  font-weight: 500;
  font-size: 24px;
  line-height: 27px;
}
.product-area .flproductinfo-details .price .rgprice {
  color: #006f43;
  margin-right: 10px;
}
.product-area .flproductinfo-details .price .dsprice {
  text-decoration: line-through;
  color: #e91d76;
}
.product-area .flproductinfo-details .prddes {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: #58595b;
  margin-bottom: 30px;
}
.product-area .product-item {
  margin-bottom: 15px;
  position: relative;
}
.product-area .product-item img {
  width: 100%;
}
.product-area .product-item .verticalsize {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  height: 80%;
}
.product-area .product-item .verticalsize > img {
  height: 100%;
}
.product-area .product-item .verticalsize .vrsize {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  color: #58595b;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: -8px;
}
.product-area .product-item .horizontalsize {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
}
.product-area .product-item .horizontalsize > img {
  width: 100%;
}
.product-area .product-item .horizontalsize .hrsize {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  color: #58595b;
  position: absolute;
  left: 51%;
  transform: translateX(-50%);
  margin: auto;
  top: -10px;
  display: inline-block;
}
.product-area .prdslidertwo-wrp #rfslidergalleryone .product-single-image {
  height: auto;
}

#rfslidergalleryone .product-single-image {
  height: 600px;
}

#rfslidergallerytwo .owl-item .product-single-image {
  border: 2px solid transparent;
}
#rfslidergallerytwo .owl-item.current .product-single-image {
  border: 2px solid #006f43;
}

.product-colorwrp h4 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 42px;
  text-align: left;
  color: #36504a;
  margin-bottom: 4px;
}

.product-colorwrp .check-field {
  display: block;
  position: relative;
  padding-left: 0;
  margin-top: 6px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  user-select: none;
  height: 43px;
  min-width: 34px;
  display: inline-block;
}
.product-colorwrp .check-field input {
  display: none;
  opacity: 0;
  cursor: pointer;
}
.product-colorwrp .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 34px;
  min-width: 34px;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  text-align: center;
  display: block;
}
.product-colorwrp .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.product-colorwrp .check-field input:checked ~ .checkmark:after {
  display: block;
}
.product-colorwrp .check-field .checkmark:after {
  top: 0;
  left: 0;
  height: auto;
  border-radius: unset;
  right: 0;
  margin: -6px;
  bottom: 0;
}
.product-colorwrp .filedone .checkmark:after {
  border: 2px solid #ff2a56;
}
.product-colorwrp .filedtwo .checkmark:after {
  border: 2px solid #ffa114;
}
.product-colorwrp .filedthree .checkmark:after {
  border: 2px solid #c0018d;
}

.product-colorwrp .filedone .checkmark {
  background-color: #ff2a56;
}

.product-colorwrp .filedtwo .checkmark {
  background-color: #ffa114;
}

.product-colorwrp .filedthree .checkmark {
  background-color: #c0018d;
}

.product-colorwrp .filedtfour .checkmark {
  background-color: #de4281;
}

.product-colorwrp .filedfive .checkmark {
  background-color: #6b9817;
}

.product-colorwrp .filedtfour .checkmark:after {
  border: 2px solid #de4281;
}

.product-colorwrp .filedfive .checkmark:after {
  border: 2px solid #6b9817;
}

.product-sizewrp {
  margin-top: 20px;
}
.product-sizewrp .checkmark {
  background-color: #f2f2f2;
}
.product-sizewrp .checkmark:after {
  border: 2px solid #9a9a9a;
}
.product-sizewrp .size {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
  color: #000c07;
  left: 0;
  right: 0;
  top: 6px;
  position: relative;
  bottom: 0;
  margin: auto;
  z-index: 1;
  padding: 0 20px;
}
.product-size-option.product-sizewrp .product-selectcolor {
  word-spacing: 10px;
  text-align: left;
}
.product-size-option.product-sizewrp .check-field {
  word-spacing: normal;
}
.product-size-option.product-sizewrp .size {
  padding: 0 10px;
  display: block;
}
.product-size-option.product-sizewrp .check-field span.additional_option_text_price {
    position: absolute;
    font-size: 12px;
    white-space: nowrap;
    bottom: -25px;
    left: -5px;
}
.product-sizewrp textarea {
  resize: none;
  display: block;
  width: 100%;
  height: 6.7em;
  border: 2px solid #444;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 5px 10px;
}
.product-sizewrp select.additional_option {
  border: 2px solid #333;
  padding: 5px 10px;
  display: block;
}
.final-touches {
  margin: 30px 0;
}
.final-touches h4 {
  margin-bottom: 4px;
}

.quantity {
  display: flex;
  align-items: center;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
  clear: both;
  justify-content: space-between;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -moz-appearance: textfield;
}
.quantity .main {
  border: 2px solid #ececec;
  padding: 8px 10px;
  margin-right: 30px;
}
.quantity .counter {
  width: 45px;
  border-radius: 0px !important;
  text-align: center;
}
.quantity .up_count {
  margin-bottom: 10px;
  margin-left: -4px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.quantity .down_count {
  margin-bottom: 10px;
  margin-right: -4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.quantity .product-colorwrp {
  display: flex;
}
.quantity .btn-info,
.quantity .counter {
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.quantity .btn-info:focus,
.quantity .counter:focus {
  outline: none;
}
.quantity .counter {
  background: #fff;
  margin: 0 5px;
}

.prddsp-wrp .tab {
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid #d9dadf;
  padding-bottom: 15px;
}
.prddsp-wrp .tablinks {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 14px;
  text-align: left;
  color: #58595b;
  background: none;
  border: none;
  margin-right: 30px;
  cursor: pointer;
}
.prddsp-wrp .tablinks:last-child {
  margin-right: 0;
}
.prddsp-wrp .tablinks:focus {
  outline: none;
}
.prddsp-wrp .tab button:hover {
  color: #006f43;
}
.prddsp-wrp .tab button.active {
  color: #006f43;
}
.prddsp-wrp .tabcontent {
  padding: 40px 0 0;
  display: none;
}

@media (min-width: 1200px) {
  .tabcontent-wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .tabcontent-wrp .tabcontent-des {
    width: 48%;
  }
}
.tabcontent-wrp .tabcontent-des h4 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000c07;
  margin-bottom: 20px;
}
.tabcontent-wrp .tabcontent-des p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  color: #58595b;
  margin-bottom: 20px;
}
.tabcontent-wrp .tabcontent-des p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .tabcontent-wrp .flpdinfo-wrp {
    width: 48%;
  }
}
.tabcontent-wrp .flpdinfo-wrp {
  grid-template-columns: repeat(2, 1fr);
}
.tabcontent-wrp .flpdinfo-wrp .single-info {
  background-color: #f9f9f9;
}
.tabcontent-wrp .flpdinfo-wrp .single-info h2 {
  display: inline-flex;
}
.tabcontent-wrp .flpdinfo-wrp .single-info h2 span {
  margin-right: 10px;
}
.tabcontent-wrp .flpdinfo-wrp .single-info p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  color: #58595b;
}
.tabcontent-wrp .flpdinfo-wrp .single-info:hover {
  background-color: #006f43;
}
.tabcontent-wrp .flpdinfo-wrp .single-info:hover p {
  color: #fff;
}

/* new style */
.product-area .flproductinfo-details .pdtwoprice {
  margin-bottom: 20px;
}

.pdtwosz {
  margin-top: 10px;
  margin-bottom: 15px;
}

.prstock .stksiz {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  text-align: left;
  color: #58595b;
  margin-bottom: 5px;
}
.prstock .stck-prdsz {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  color: #e91d76;
  margin-bottom: 10px;
  display: block;
}

.prtsizewrp {
  margin-bottom: 20px;
}
.prtsizewrp h4 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 14px;
  line-height: 42px;
  color: #000c07;
  margin-bottom: 10px;
}
.prtsizewrp ul li {
  display: inline-block;
  margin-right: 25px;
  text-align: center;
}
.prtsizewrp ul li:last-child {
  margin-right: 0;
}
.prtsizewrp ul li p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  color: #58595b;
  width: 103px;
  min-height: 44px;
  line-height: 44px;
  background: #fff;
  border: 2px solid #ececec;
  text-align: center;
  margin-bottom: 5px;
}
.prtsizewrp ul li span {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 27px;
  text-align: center;
  color: #006f43;
}

.flproductinfo-details h4 {
  font-family: Poppins;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  color: #000c07;
}

.rcmwidget {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.rcmwidget .rmdradio {
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  color: #58595b;
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.rcmwidget .rmdradio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.rcmwidget .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 2px solid #d9dadf;
  transform: translateY(-50%);
}
.rcmwidget .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.rcmwidget .rmdradio input:checked ~ .checkmark:after {
  display: block;
}
.rcmwidget .rmdradio .checkmark:after {
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #006f43;
}
.rcmwidget .rcmwidget {
  margin-bottom: 10px;
}
.rcmwidget .widgetinfo {
  padding-left: 12px;
}
.rcmwidget .widgetinfo h5,
.rcmwidget .widgetinfo a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #000c07;
  margin-bottom: 3px;
  text-align: left;
}

.product-descntwrp {
  padding: 30px 0;
  border-top: 1px solid #d9dadf;
  width: 100%;
  clear: both;
  margin-top: 40px;
}
.product-descntwrp .sectitle {
  display: block;
}
.product-descntwrp h2 {
  margin-bottom: 25px;
}
.product-descntwrp p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  color: #58595b;
}

/* bouquet-care */
.bouquet-care {
  background-color: #f9f9f9;
  padding: 60px 0;
}
.bouquet-care .flpdinfo-wrp .single-info h2 {
  position: relative;
  padding-left: 30px;
}
.bouquet-care .flpdinfo-wrp .single-info img {
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.bouquet-care .flpdinfo-wrp .single-info .hovers {
  visibility: hidden;
  opacity: 0;
}
.bouquet-care .flpdinfo-wrp .single-info:hover .hovers {
  visibility: visible;
  opacity: 1;
}

/* end bouquet-care */
/* card style*/
.jkaddcard-wrp {
  position: relative;
}
.jkaddcard-wrp .jkcard-title-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.jkaddcard-wrp .jkcard-title-info .cartToggle-close {
  cursor: pointer;
  font-size: 22px;
  color: var(--main-color2);
}
.jkaddcard-wrp .jkcard-title-info h2 {
  font-size: 16px;
  font-weight: 700;
  color: #04231c;
}
.jkaddcard-wrp .jkcard-title-info p {
  font-size: 12px;
  font-weight: 500;
  color: #798080;
}
.jkaddcard-wrp .jktotal-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.jkaddcard-wrp .jktotal-wrapper h4 {
  font-size: 16px;
  font-weight: 700;
  color: #04231c;
}
.jkaddcard-wrp .jktotal-wrapper p {
  padding: 0 50px 0 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--main-color2);
}

.jkaddcard-wrp .jkcard-wrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 344px;
  height: 100vh;
  transition: all 0.4s;
  z-index: 15;
  padding: 25px;
  background-color: #fff;
  border-left: 1px solid #ddd;
  transform: translateX(100%);
  transition: all 0.3s;
}
.jkaddcard-wrp .jkcard-wrapper table.table {
  margin-top: 10px;
  width: 100%;
}
.jkaddcard-wrp .jkcard-wrapper table.table tr td {
  vertical-align: top;
  padding: 5px;
  border-bottom: 1px solid #ddd;
}
.jkaddcard-wrp.cartToggle-wrapper-show .jkcard-wrapper {
  transform: translateX(0%);
}
.jkaddcard-wrp .jkcard-wrapper-overlay {
  position: fixed;
  content: "";
  top: 0;
  background: rgba(18, 27, 34, 0.7);
  left: 0;
  right: 0;
  width: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  transition-delay: 0.2s;
}

.cartToggle-wrapper-show .jkcard-wrapper-overlay {
  opacity: 1;
  visibility: visible;
  width: 100vw;
  height: 100vh;
  z-index: 11;
}

.jkaddcart-footer {
  position: absolute;
  bottom: 30px;
  width: 100%;
}
.jkaddcart-footer .jkcart-checkout {
  display: flex;
}
.jkaddcart-footer .jkcart-checkout .btn-checkout {
  background-color: var(--main-color2);
  color: #fff;
  display: inline-block;
  padding: 3px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  transition: all 0.3s;
}
.jkaddcart-footer .jkcart-checkout .btn-checkout:hover {
  opacity: 0.8;
}

/* card style - end*/
.prstock {
  margin-bottom: 10px;
}

.product-offers .product-selectcolor {
  word-spacing: 10px;
}
.pdtwosz .check-field {
  width: auto;
  text-align: center;
  word-spacing: normal;
}
.product-offers .check-field p {
  margin: 14px 0 0 0;
  font-size: 14px;
  color: #006F43;
}
.pdtwosz .check-field .checkmark {
  width: 100%;
}
.pdtwosz .check-field .checkmark::after {
  width: auto;
}

.optional-clrwrp {
  margin-bottom: 15px;
}

.optional-clrwrp h4 {
  margin-bottom: 15px;
}

.prdoneszw {
  margin-bottom: 30px;
}

.prdoneinfd h4 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 42px;
  text-align: left;
  color: #36504a;
}

.pnonesubhero {
  padding: 70px 0;
}

.tabcontent-des h4 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000c07;
  margin-bottom: 20px;
}
.tabcontent-des p {
  font-family: Poppins;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  color: #58595b;
}

@media (min-width: 1024px) {
  .subhero-sec {
    min-height: 330px;
  }
}
.tablinks.active {position : relative;}
.tablinks.active:after {
    background-color: #006f43;
    height: 3px;
    width: 100%;
    content: '';
    left: 0;
    bottom: -21px;
    position: absolute;
    z-index: 1;
}

/* INFO */
.typo-black12 {
    margin-bottom: 1em;
}
ul.typo-black12, ul.typo-black12 > li {
    list-style-type: initial;
}
ul.typo-black12 > li {
    padding-left: .5em;
    margin-left: 1.5em;
    margin-bottom: .75em;
    line-height: 1.25;
}
/* PAGES */
main.about .container > br+br {
  display: none;
}
section.subhero-sec.pagesubhero {
  min-height: 0;
}
/* CART */
#cart_total_price_summary_wrapper #checkout {
  background-color: #006F43;
  border: 1px solid #006F43;
  border-radius: 0;
}
#cart_total_price_summary_wrapper #checkout:hover {
  color: #006F43;
  background-color: #FFF;
}
.cart-item-price {
  color: #006F43;
}

.datepicker--day-name { color: #E42363; }
.datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- { background-color: #006F43; }
#delivery_mode_popup .stack_wrapper > .stack_condensed,
#delivery_mode_popup .stack_wrapper > .stack2 {
    padding: 10px;
}
div#delivery_mode_pickup {
  background-image: url(../img/pickup.png);
}
div#delivery_mode_deliver {
  background-image: url(../img/delivery.png);
}
#delivery_mode_popup input[type=button] {
  background-color: #006F43;
  border: 1px solid #006F43;
  border-radius: 0;
}
#delivery_mode_popup input[type=button]:hover {
  color: #006F43;
  background-color: #FFF;
}
/*
/* CHECKOUT */
.checkout_form_header::after {
    display: block;
    content: '';
    clear: both;
}
.checkout_form_header {
    margin-bottom: 20px;
}
#checkout_form_wrapper.checkout-container input[type=button] {
  background-color: #006F43;
  border: 1px solid #006F43;
  border-radius: 0;
  transition: color .5s, background-color .5s;
  padding: 10px 20px;
  cursor: pointer;
}
#checkout_form_wrapper.checkout-container input[type=button]:hover {
  color: #006F43;
  background-color: #FFF;

}
div.stack_wrapper {
  border: 1px solid #DDD;
}
div.stack_wrapper div.stack2 {
  padding: 20px 18px;
}
#checkout_form_wrapper.checkout-container #cart_total_price_summary {
  border: 1px solid #DDD;
}
div.stack_wrapper div.stack_condensed {
  padding: 10px 18px;
  line-height: 1.2;
  font-size: .8em;
  margin: 0;
  color: #777;
}
div.stack_wrapper div.stack2::after,
div.stack_wrapper div.stackcondensed::after {
  display:block; content:''; clear:both;
}
div.stack_wrapper.active div.stack2_header{
  border: 1px solid #006F43;
  background-color: #006F43;
  color: #FFF;
  font-weight: 600;
}
div.stack_wrapper.active div.stack2_header .circle-font{
  color: #006F43;
  background-color: #FFF;
}
.checkout-container p {
  line-height: 1.25;
}
#checkout_form_wrapper input, #checkout_form_wrapper textarea {
  border-radius: 0;
  border: 2px solid #333;
  padding: 4px 6px;
  color: #006F43;
}
#checkout_form_wrapper .address_lookup {
  border: 2px solid !important;
}
#checkout_form_wrapper select {
  border: 2px solid #333;
}

/* ACCOUNT */
.login-wrapper {
  display: table;
  margin: auto;
}
.login-left {
  padding-right: 20px;
  border-right: 1px black dotted;
}
.login-left h2,.login-right h2 {
  margin-bottom:10px;
}
.login-right {
  padding-left: 20px;
}
.login-right p {
  margin-bottom: 10px;
}
.subscribe input {
  border-radius: 0;
  border: 2px solid #333;
  padding: 4px 6px;
  color: #006F43;
}
.subscribe input[type=button] {
  background-color: #006F43;
  border: 1px solid #006F43;
  border-radius: 0;
  -webkit-appearance: none;
  padding: 10px 20px;
  color: #FFF;
  cursor: pointer;
}
.subscribe input[type=button]:hover {
  color: #006F43;
  background-color: #FFF;
}
.subscribe #login {
  margin-top: 10px;
}
.forgot-wrapper {
  display: table;
  margin: auto;
}
.forgot-wrapper h2 {
  margin-bottom: 10px;
}
.account-dashboard li a, #save-info, #add-address, #save-address, #cancel-address {
  background-color: #006F43;
  border: 1px solid #006F43;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  transition: color .5s, background-color .5s;
}
.account-dashboard li a:hover, #save-info:hover, #add-address:hover, #save-address:hover {
  color: #006F43;
  background-color: #FFF;
}
#save-info, #add-address, #save-address, #cancel-address {
  padding: 10px;
}
#cancel-address {
  background-color: #E42363;
  border: 1px solid #E42363;
}
#cancel-address:hover {
  background-color: #FFF;
  color: #E42363;
}
.account-main-wrapper p {
  margin: 1em 0;
  line-height: normal;
}
.account-main-wrapper h3 {
  margin-top: 1em;
}
button.address-form-close.address-form-cancel {
  box-sizing: content-box;
  font-size: 1.5em;
}
div#address_edit_form {
  padding: 0 20px;
}
.address_book_button {
  border-width: 2px;
  border-radius: 0;
}
.form-wrapper input {
  border: 2px solid #666;
  padding: 8px 6px;
}

/* CONTACT */
.contact_us h1 {
  margin-bottom: 40px;
}
.contact_us .col-lg-12::after {
  clear:both; display:block; content:'';
}
.contact_us .col-lg-6 {
    width: 50%;
    float: left;
}
.contact_us input, .contact_us textarea {
  border-radius: 0;
  border: 2px solid #333;
  padding: 4px 6px;
  color: #006F43;
  margin-top: 10px;
  max-width: 800px;
}
.contact_us input:not([type=button]) {
  width:100%;
  max-width: 300px;  
}
.contact-email img, .contact-phone img {
    vertical-align: middle;
    margin-right: 15px;
}

section#contact_us_form {
    margin-top: 30px;
}

/* CATEGORY */
.shop-products-section {
  padding: 40px 0;
  margin-bottom: 20px;
}
section.shop-all {
  margin: 40px;
  text-align: center;
}
.grid-container .category-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -10px;
}
.grid-container .category-wrapper > .flcard-info {
  width: 25%;
  padding: 10px;
  margin-bottom: 40px;
}
.grid-container .category-wrapper > .flcard-info .cardimg {
  margin-bottom:0;
}
.subcategories-wrapper {
  padding: 10px 0;
  background-color: #f3f3f3;
}
.subcategories {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
section.shop-products-section:nth-child(odd) {
    background-color: #f3f3f3;
}
.shop-categories-section { 
  padding: 40px 0;
}
.shop-category {
  width: 25%;
  padding: 0 20px;
  margin: 20px 0;
}
.shop-category-img {
  padding-bottom: 85%;
}
.shop-categories {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    padding: 40px 0;
}
.shop-category h4,
.shop-category h4 a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000c07;
  margin-bottom: 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.shop-category:hover h4,
.shop-category:hover a {
  color: #006f43;
}
.back-to-categories-inner.container {
  font-size: 24px;
}
.productByCategory .flcard-info .cardimg.cropped-img-wrapper {
  display: block;
  min-height: 200px;
  overflow: hidden;
}
.productByCategory .flcard-info .cardimg.cropped-img-wrapper .cropped-img{
  padding-bottom: 120%;
  position: relative;
  transition: transform .5s;
}
.productByCategory .flcard-info .cardimg.cropped-img-wrapper .cropped-img:hover{
  transform: scale(1.025);
}
.productByCategory .flcard-info .cardimg.cropped-img-wrapper .cropped-img img{
  position:absolute;
}
.productByCategory .flcard-info .card-details {
  height: 65px;
}
button.productsLoadMore {
  color: #006F43;
  background-color: #FFF;
  border: 1px solid #006F43;
  border-radius: 0;
  padding: 10px;
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 80px auto 0 auto;
  cursor: pointer;
  transition: background-color .5s;
}
button.productsLoadMore:hover {
  background-color: #EEE;
}
.productsLoadingMore {
  width: 100%;
  margin: 80px auto 0 auto;
  text-align: center;
}
@media (min-width:361px) and (max-width:767px) {
  figure.gridColumn {
    display: inline;
  }
  .gridColumn .column {
      width: 50%;
      float: left;
      padding: 10px 5px;
  }
  .gridColumn:nth-child(even)::after {
      display:block; content:''; clear: both;
  }
  .productsLoadingMore {
    position: relative;
    top: 40px;
    margin-bottom: 40px;
    margin-top: 0;
    clear: both;
  }
  button.productsLoadMore {
    position: relative;
    top: 40px;
    margin-bottom: 40px;
    margin-top: 0;
  }
  .back-to-categories {
    clear: both;
  }
  .productByCategory .flcard-info .cardimg.cropped-img-wrapper {
    min-height:0;
    margin-bottom: 0;
  }
  .gridColumn:nth-child(odd) .column:nth-child(odd),
  .gridColumn:nth-child(even) .column:nth-child(even) {
      clear: left;
      padding-left: 0;
  }
  .gridColumn:nth-child(even) .column:nth-child(odd),
  .gridColumn:nth-child(odd) .column:nth-child(even) {
      padding-right: 0;
  }
  .productByCategory .flcard-info .card-details {
      height: auto;
  }
}

@media (min-width:361px) and (max-width:575px) {
  .productByCategory .flcard-info .card-details h3 {
    font-size: .9em;
    margin: 0;
  }
  .productByCategory .flcard-info .card-details a,
  .productByCategory .flcard-info .card-details p span {
      font-size: .8em;
      line-height: normal;
  }
}
/* PRODUCT */
ul.product_thumbnails {
  display: flex;
  margin: 0 -5px;
}
ul.product_thumbnails li {
  padding: 0 5px;
}
ul.product_thumbnails li img {
  border: 2px solid transparent;
  width: 100%;
  transition: border-color .2s;
  cursor: pointer;
}
ul.product_thumbnails li img:hover {
  border-color: #CCC;
}
ul.product_thumbnails li img.active, ul.product_thumbnails li img.active:hover {
  border-color: #006f43;
}
.product-descntwrp .quantity-wrapper::after {
  display: block; content: ''; clear:both;
}
.product-colorwrp .quantity-wrapper h4 {
  float: left;
  line-height: 20px;
}
.quantity-wrapper .price-wrapper {
  float: right;
  text-align: right;
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1;
  color: #006F43;
}
.product-text-option i {
  font-size: 12px;
  color: #e91d76;
  display: block;
  margin-top: -6px;
  text-align: left;
}
span.additional_option_text_price {
  font-size: 13px;
  color: #006F43;
}
.addon-product.rcmwidget .widget-img {
  max-width: 90px;
}
.addon-product.rcmwidget .widget-img img {
  width:100%;
}
.addon_product_price {
  color: #006F43;
}
/* OTHER RESPONSIVE */
@media (max-width: 1023px) {
  .grid-container .category-wrapper > .flcard-info, .shop-category {
    width: calc(100% / 3);
  }
}
@media (max-width:991px) {
  .cart_left {
    width: 60%;
  }
  #cart_total_price_summary_wrapper.right {
    width: 40%;
  }
  .copyright-wrp-info.payments-footer {
    top: 70px;
  }
}
@media (max-width: 767px) {
  .grid-container .category-wrapper > .flcard-info, .shop-category {
    width: 50%;
  }
  .cart_left, #cart_total_price_summary_wrapper.right {
    width: 100%;
  }
  .checkout-container .col_flag {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .login-wrapper, .forgot-wrapper {
    width: 100%;
    max-width: 300px;
  }
  .login-left,.login-right {
    padding: 20px;
    float: none;
    width: 100%;
    border: none;
  }
  .login-left {
    border-bottom: 1px dotted #000; 
  }
  .login-left::after {
    content:'';display: block; clear: both;
  }
  .subscribe #email, .subscribe #password {
    width: 100%;
  }
  .contact_us .col-lg-6 {
    width: 100%;
    float: none;
    margin-top: 10px;
  }
  main.about .container table {
    max-width: 100% !important;
    width: 100%;
  }
  main.about .container td {
    display: block;
    width: 100%;
  }
}
@media (max-width:575px) {
  .content-wrp,
  .collection-content-details,
  .collection-content-details p,
  .sectitle h2 {
      text-align: center;
  }
  .sectitle,
  .tradition-wrp-info,
  .flpdinfo-wrp {
      text-align: center;
  }
  .sectitle a,
  .sectitle {
      display: block;
  }
  .dblemenu ul li {
      width: 100%;
      margin-bottom: 10px;
  }
  .footer-wrp-info, .ftr-title h2,.footercontact-content > ul > li, .footercontact-content > ul > li a, .dblemenu ul li a {
      text-align: center;
      font-size: 16px;
  }
  .ftr-title {
      margin-bottom: 0;
  }
  .card-details,
  .shop-category h4, .shop-category h4 a,
  .back-to-categories-inner.container {
      text-align: center;
  }
  .product-area .flproductinfo-details {
      text-align: center;
  }
  .product-colorwrp, .final-touches, .product-descntwrp {
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
  }
}
@media (max-width: 480px) {
  .topbar-wrp .top-contact .contact {text-align: center;word-spacing: 20px;}
  .topbar-wrp .top-contact .contact > a {
    white-space: nowrap;
    display: inline-block;
    margin-right: 0;
    word-spacing: normal;
  }
  .collection-content-details p {
    line-height: 1.25;
  }
  .collection-content-details p br {
    display: none;
  }
  .shop-category {
    width: 100%;
  }
  .shop-categories {
    padding: 0;
  }
  .flwbtn {padding: 0 20px;}
  .product-area .flproductinfo-details .price {
    font-size: 20px;
  }
  .login-left, .login-right {
    padding: 20px 0;
  }
  .footer-wrp-info, .ftr-title h2,.footercontact-content > ul > li, .footercontact-content > ul > li a, .dblemenu ul li a {
    font-size: 14px;
  }
  .productByCategory .flcard-info .cardimg.cropped-img-wrapper .cropped-img{
    padding-bottom: 80%;
  }
}

/* PAGE BUILDER RESPONSIVE */
@media (max-width:991px) {
	.gfpb-page-content .gfpb-row-wrapper > .pb-outer > .pb-container {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
  .gfpb-page-content .gfpb-product-wrapper.gfpb-product-display-horizontal {
      flex-direction: column;
      align-items: baseline;
  }
}

/* Temp*/

.page-inner{
	padding: 50px;
  font-size: 14px;
}