@charset "UTF-8";
/*-- Fonts, variable and abstracts -- */
/*-- fonts -- */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
/*-- variable -- */
/*-- mixin -- */
/*-- Reset css styles  -- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* -- Common elements -- */
html {
  scroll-behavior: smooth;
  margin-right: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;
  color: #022d1b;
  background-color: #f5f8ec;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  transition: all 0.6s ease;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1250px;
  padding: 0;
}

/* -- form style -- */
textarea,
select,
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=datetime],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Cairo", sans-serif;
  border: 1px solid #93c202;
  outline: 0 !important;
  box-shadow: none;
  font-size: 18px;
  line-height: 24px;
  border-radius: 200px;
  padding: 10px 20px;
  width: 100%;
  background: #f9fbf2;
  color: #022d1b;
  font-weight: normal;
  cursor: pointer;
}
@media only screen and (max-width: 880px) {
  textarea,
  select,
  input[type=text],
  input[type=password],
  input[type=date],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=datetime],
  input[type=number],
  input[type=email],
  input[type=url],
  input[type=search],
  input[type=tel],
  input[type=color] {
    padding: 10px 25px;
  }
}
textarea:focus,
select:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  border-color: #022d1b;
}
textarea::-moz-placeholder, select::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder {
  color: rgba(2, 45, 27, 0.5254901961);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
textarea::placeholder,
select::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=datetime]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: rgba(2, 45, 27, 0.5254901961);
  transition: all 0.3s ease;
}

textarea {
  border-radius: 30px;
  min-height: 120px;
  resize: none;
  padding-top: 15px;
}

/* -- Placeholder color -- */
::-webkit-input-placeholder {
  color: #022d1b;
}

:-moz-placeholder {
  color: #022d1b;
}

::-moz-placeholder {
  color: #022d1b;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #022d1b;
}

/* -- Typography setting -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cairo", sans-serif;
  text-rendering: optimizeLegibility;
  color: #022d1b;
  font-weight: bold;
}

h1 {
  font-size: 40px;
  line-height: 1.1em;
}

h2 {
  font-size: 35px;
  line-height: 1.2em;
}

h3 {
  font-size: 30px;
  line-height: 1.3em;
}

h4 {
  font-size: 26px;
  line-height: 1.4em;
}

h5 {
  font-size: 22px;
  line-height: 1.5em;
}

h6 {
  font-size: 20px;
  line-height: 1.6em;
}

p {
  line-height: 1.4em;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: #022d1b;
}
a:focus, a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
}

label {
  font-weight: bold;
}

.link {
  transition: all 0.3s ease;
}
.link:hover {
  color: #022d1b;
}

.border-line {
  border: 1px solid #dddddd;
}

.border-line-black {
  border: 1px solid #000000;
}

.border-line-bottom {
  border-bottom: 1px solid #dddddd;
}

.no-line {
  border: 0 !important;
}

/* -- radius --*/
.radius-8 {
  border-radius: 8px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-32 {
  border-radius: 32px;
}

.radius-56 {
  border-radius: 56px;
}

.rounded-full {
  border-radius: 999px;
}

.overflow-hidden {
  overflow: hidden;
}

.none {
  display: none;
}

.padding-y {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-top {
  padding-top: 100px;
}

.padding-bottom {
  padding-bottom: 100px;
}

/* -- text-size -- */
.text-size-1 {
  font-size: 12px;
}

.text-size-2 {
  font-size: 14px;
}

.text-size-3 {
  font-size: 16px;
}

.text-size-4 {
  font-size: 18px;
}

.text-size-5 {
  font-size: 20px;
}

.text-size-6 {
  font-size: 24px;
}

.text-size-7 {
  font-size: 28px;
}

.text-size-8 {
  font-size: 32px;
}

.text-size-9 {
  font-size: 38px;
}

.text-size-10 {
  font-size: 40px;
}

.text-size-11 {
  font-size: 48px;
}

.text-size-12 {
  font-size: 56px;
}

.text-size-13 {
  font-size: 64px;
}

.text-size-14 {
  font-size: 96px;
}

.wooprex-swiper {
  overflow-x: clip;
}

.overflow-x {
  overflow-x: clip !important;
}

/*-- Woocommerce styles -- */
.wooprex-rating {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 6px 0;
  color: #ffa500; /* gold star color */
}

.wooprex-rating .rating-star {
  font-size: 16px;
  margin-right: 4px;
  color: #ffa500;
}

.wooprex-rating .rating-number {
  font-weight: 600;
  margin-right: 4px;
  color: #333;
}

.wooprex-rating .rating-count {
  color: #666;
  font-size: 13px;
}

.cart {
  position: relative;
  display: inline-block;
}

.cart-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.cart-wrapper img {
  width: 24px;
  height: 24px;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-list {
  position: absolute;
  top: 80px;
  right: 0;
  width: 310px;
  max-height: 0;
  overflow: hidden;
  background: #f4f7e5;
  border: 1px solid #93c202;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 999;
  padding: 20px;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
}
.cart-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 65%;
}
.cart-list ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cart-list ul li::before {
  display: none !important;
}
.cart-list ul li .remove {
  position: absolute;
  right: 0;
  top: 0;
  margin-bottom: 0px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1.6em;
  color: #022d1b !important;
  font-size: 1.5em !important;
}
.cart-list ul li .remove:hover {
  color: #022d1b !important;
  background-color: transparent !important;
}
.cart-list ul li .wx-img-thumb {
  width: 85%;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cart-list ul li .wx-img-thumb .wx-image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 5px;
}
.cart-list ul li .wx-img-thumb .wx-image a {
  width: 100%;
  height: 100%;
  display: block;
}
.cart-list ul li .wx-img-thumb .wx-image img {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-list ul li .wx-img-thumb .wx-cart-qty {
  width: 70%;
}
.cart-list ul li .wx-img-thumb .wx-cart-qty h3 {
  font-size: 16px;
  font-weight: 700;
}
.cart-list ul li .wx-img-thumb .wx-cart-qty h3 a {
  font-size: 16px;
  font-weight: 700;
}
.cart-list ul li .wx-img-thumb .wx-cart-qty h3 a:hover {
  color: #93c202;
}
.cart-list ul li .variation {
  padding-left: 0 !important;
  border-left: none !important;
}
.cart-list ul li .variation dt,
.cart-list ul li .variation dd {
  padding: 0 !important;
  margin: 0 !important;
}
.cart-list ul li .variation dd {
  margin-left: 4px !important;
}
.cart-list .woocommerce-mini-cart__total {
  width: 35%;
  text-align: right;
  padding-left: 15px;
}
.cart-list .woocommerce-mini-cart__total strong {
  font-weight: 400;
}
.cart-list .woocommerce-mini-cart__total .woocommerce-Price-amount {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.cart-list .woocommerce-mini-cart__buttons {
  width: 100%;
}
.cart-list .button:not(.checkout) {
  background-color: #93c202 !important;
}
.cart-list .button:not(.checkout):hover {
  background-color: #022d1b !important;
  color: #f5f8ec !important;
  border-color: #022d1b !important;
}
.cart-list .button.checkout {
  background-color: #022d1b !important;
  color: #f5f8ec !important;
  border-color: #022d1b !important;
}
.cart-list .button.checkout:hover {
  background-color: #93c202 !important;
  color: #022d1b !important;
  border-color: #93c202 !important;
}

.cart:hover .cart-list {
  max-height: 500px;
  opacity: 1;
}

.cart-item {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.cart-item-details p {
  margin: 0;
  font-size: 14px;
}

.cart-subtotal {
  padding: 10px;
  font-weight: bold;
}

.cart-buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}

.cart-buttons .sc-btn {
  flex: 1;
  margin-right: 5px;
}

.cart-buttons .sc-btn:last-child {
  margin-right: 0;
}

.woocommerce-mini-cart__buttons {
  display: flex;
  gap: 10px;
}

/* Store page */
.woocommerce-breadcrumb {
  display: none;
}

.woocommerce-products-header {
  margin-bottom: 40px;
}
.woocommerce-products-header .woocommerce-products-header__title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 880px) {
  .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 33px;
  }
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 30px;
}
.woocommerce .woocommerce-result-count {
  position: relative;
  top: 12px;
}
@media only screen and (max-width: 1200px) {
  .woocommerce .woocommerce-result-count {
    top: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .woocommerce .woocommerce-result-count {
    top: 0px;
    margin-bottom: 12px;
    float: inherit !important;
  }
}
.woocommerce .woocommerce-ordering select {
  padding: 10px 15px;
  cursor: pointer;
  background-color: transparent;
  border-radius: 20px;
  color: #022d1b;
}
.woocommerce .woocommerce-ordering select:focus {
  outline: none;
}
@media only screen and (max-width: 575px) {
  .woocommerce .woocommerce-ordering {
    float: inherit !important;
  }
}
.woocommerce .onsale {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background-color: #93c202 !important;
  color: #022d1b !important;
  font-weight: 600;
}

/* Store Product List */
ul.products {
  display: grid;
  gap: 40px;
}
ul.products:before {
  display: none !important;
}
@media only screen and (max-width: 1200px) {
  ul.products {
    gap: 30px;
  }
}
ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1200px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  ul.products.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  ul.products.columns-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 575px) {
  ul.products.columns-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
ul.products li {
  margin: 0 !important;
  width: 100% !important;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  padding: 15px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
}
ul.products li a {
  position: relative;
}
ul.products li img {
  border-radius: 20px;
  margin-bottom: 10px !important;
}
ul.products li .woocommerce-loop-product__title {
  padding: 0 !important;
}
ul.products li .onsale {
  right: inherit !important;
  left: 15px !important;
  top: 20px !important;
}
ul.products li .price {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
ul.products li .star-rating {
  margin: 0px 10px 5px 10px !important;
  color: #ffcb2b;
}
ul.products li .price {
  font-weight: 700 !important;
  color: #022d1b !important;
}
ul.products li .price del bdi {
  position: relative;
}
ul.products li .price del bdi:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* center vertically */
  height: 2px; /* line thickness */
  background: #022d1b; /* line color */
  opacity: 0.7;
  transform: translateY(-50%);
}
ul.products li .button {
  height: 45px;
  padding: 0px 20px !important;
  width: 53%;
}
ul.products li .buy-now-button {
  width: 45%;
}
ul.products li .added_to_cart.wc-forward {
  display: none;
}
ul.products li .wx-product-items {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
  gap: 20;
}
ul.products li .wx-product-items .wx-product-title {
  width: 60%;
}
ul.products li .wx-product-items .wx-price-rating {
  width: 40%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.button,
.buy-now-button,
.single_add_to_cart_button {
  display: inline-flex !important;
  height: 47px;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 10px;
  border-radius: 200px !important;
  padding: 0px 30px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.button,
.single_add_to_cart_button {
  color: #022d1b !important;
  background-color: transparent !important;
  border: 1px solid #93c202 !important;
}
.button:hover,
.single_add_to_cart_button:hover {
  background-color: #93c202 !important;
  color: #022d1b !important;
}

.buy-now-button {
  color: #022d1b !important;
  border-color: #93c202 !important;
  background-color: #93c202 !important;
}
.buy-now-button:hover {
  background-color: #022d1b !important;
  border-color: #022d1b !important;
  color: #f5f8ec !important;
}

/* SINGLE STORE Product */
.summary.entry-summary {
  width: 50% !important;
}
@media only screen and (max-width: 767px) {
  .summary.entry-summary {
    width: 100% !important;
  }
}
.summary.entry-summary .product_title {
  text-align: left;
  font-size: 48px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1200px) {
  .summary.entry-summary .product_title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 880px) {
  .summary.entry-summary .product_title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .summary.entry-summary .product_title {
    font-size: 33px;
  }
}
.summary.entry-summary .woocommerce-product-rating {
  color: #ffa500;
  margin: 7px 0px !important;
  display: flex;
  gap: 10px;
  align-items: center;
}
.summary.entry-summary .woocommerce-product-rating:before {
  display: none;
}
.summary.entry-summary .woocommerce-product-rating .star-rating {
  margin: 0 !important;
  color: #ffcb2b;
}
.summary.entry-summary .price {
  font-size: 30px !important;
  font-weight: 800;
  color: #022d1b !important;
  margin: 5px 0px;
}
.summary.entry-summary .price del bdi {
  position: relative;
  color: #98a579 !important;
}
.summary.entry-summary .price del bdi:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%; /* center vertically */
  height: 2px; /* line thickness */
  background: #98a579; /* line color */
  transform: translateY(-50%);
}
@media only screen and (max-width: 1200px) {
  .summary.entry-summary .price {
    font-size: 26px !important;
  }
}
@media only screen and (max-width: 880px) {
  .summary.entry-summary .price {
    font-size: 22px !important;
  }
}
@media only screen and (max-width: 767px) {
  .summary.entry-summary .price {
    font-size: 18px !important;
  }
}
.summary.entry-summary .woocommerce-product-details__short-description {
  margin: 5px 0px 50px 0px;
}
.summary.entry-summary .woocommerce-product-details__short-description p {
  font-size: 18px;
  font-weight: 600;
}
.summary.entry-summary form.cart .variations label {
  font-weight: 800 !important;
  font-size: 20px !important;
}
.summary.entry-summary form.cart .variations tr {
  margin: 0;
}
.summary.entry-summary form.cart .variations .reset_variations {
  display: none;
}
.summary.entry-summary form.cart .variations .swatchly-type-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}
.summary.entry-summary form.cart .variations .swatchly-type-wrap .swatchly-swatch {
  border: 2px solid #f5f8ec;
  outline: 1px solid #022d1b;
  margin: 0;
}
.summary.entry-summary form.cart .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.summary.entry-summary form.cart .single_variation_wrap .woocommerce-variation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary.entry-summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.summary.entry-summary form.cart .qib-button-wrapper {
  border: 1px solid #93c202;
  overflow: hidden;
  border-radius: 200px;
  margin: 0 !important;
}
.summary.entry-summary form.cart .qib-button-wrapper .quantity input.input-text.qty.text {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none;
  border-left: 1px solid #93c202;
  border-right: 1px solid #93c202;
}
.summary.entry-summary form.cart .qib-button-wrapper button.qib-button {
  background-color: transparent;
}
.summary.entry-summary form.cart .qib-button-wrapper button.qib-button:hover {
  background-color: transparent;
}
.summary.entry-summary .yith-add-to-wishlist-button-block {
  display: inline-flex;
  margin: 0;
  margin-left: 8px;
  vertical-align: bottom;
  position: relative;
  bottom: 40px;
}
.summary.entry-summary .yith-add-to-wishlist-button-block svg {
  stroke: #93c202;
}
.summary.entry-summary .yith-add-to-wishlist-button-block span {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1040px) {
  .summary.entry-summary .yith-add-to-wishlist-button-block {
    display: flex;
    margin-left: 0;
    bottom: 0 !important;
  }
  .summary.entry-summary .yith-add-to-wishlist-button-block span {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .summary.entry-summary .yith-add-to-wishlist-button-block {
    display: flex;
    margin-left: 0;
    bottom: 0 !important;
  }
  .summary.entry-summary .yith-add-to-wishlist-button-block span {
    display: block;
  }
}
.summary.entry-summary .yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon {
  color: #93c202;
}

div.product .onsale {
  position: absolute;
  top: 20px;
  left: 20px;
}
div.product.product-type-simple form.cart {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}
div.product.outofstock .yith-add-to-wishlist-button-block {
  display: flex;
  margin-left: 0;
  margin-top: 10px;
  bottom: 0 !important;
}
div.product.instock:not(.purchasable) .yith-add-to-wishlist-button-block {
  display: flex;
  margin-left: 0;
  margin-top: 10px;
  bottom: 0 !important;
}

/* Single store Product Gallery */
.woocommerce-product-gallery .flex-viewport {
  overflow: visible !important;
  overflow-x: clip !important;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image {
  border-radius: 30px;
  overflow: hidden;
  height: 550px;
}
@media only screen and (max-width: 767px) {
  .woocommerce-product-gallery .woocommerce-product-gallery__image {
    height: 450px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .woocommerce-product-gallery .woocommerce-product-gallery__image {
    height: 370px;
  }
}
.woocommerce-product-gallery .woocommerce-product-gallery__image.flex-active-slide {
  outline: 1px solid #93c202;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image a,
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  display: block;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce-product-gallery .flex-control-thumbs {
  margin-top: 20px !important;
  display: flex;
  gap: 20px;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  border: 1px solid #93c202;
  border-radius: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .woocommerce-product-gallery .flex-control-thumbs li {
    border-radius: 20px;
  }
}

/* Description */
.woocommerce-tabs.wc-tabs-wrapper ul.tabs {
  padding-left: 0 !important;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-tabs.wc-tabs-wrapper ul.tabs::before {
  display: none !important;
}
.woocommerce-tabs.wc-tabs-wrapper ul.tabs li {
  background-color: transparent !important;
  border: 1px solid #93c202 !important;
  margin: 0 !important;
  color: #022d1b !important;
  border-radius: 30px !important;
  padding: 0px 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.woocommerce-tabs.wc-tabs-wrapper ul.tabs li::before, .woocommerce-tabs.wc-tabs-wrapper ul.tabs li::after {
  display: none !important;
}
.woocommerce-tabs.wc-tabs-wrapper ul.tabs li a {
  padding: 10px 0px !important;
}
.woocommerce-tabs.wc-tabs-wrapper ul.tabs li.active {
  border-radius: 30px !important;
  background-color: #93c202 !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab h2 {
  margin-bottom: 15px;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab .commentlist .avatar {
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab .commentlist .comment-text {
  margin-left: 70px !important;
  background-color: #f9fbf2;
  border: 1px solid #dddddd !important;
  border-radius: 10px !important;
  padding: 25px 20px !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab .commentlist .comment-text p {
  font-size: 18px !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form .comment-reply-title {
  margin-bottom: 10px;
  display: block;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form .comment-form-comment label,
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form .comment-form-rating label {
  margin-bottom: 10px;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form .comment-form-rating {
  margin-bottom: 20px;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form .comment-form-rating .stars {
  margin: 0 !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form .comment-form-comment textarea {
  height: 180px !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form input.submit {
  display: inline-flex !important;
  height: 47px;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 10px;
  border-radius: 200px !important;
  padding: 0px 30px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  transition: all 0.3s ease;
  color: #022d1b !important;
  border-color: #93c202 !important;
  background-color: #93c202 !important;
}
.woocommerce-tabs.wc-tabs-wrapper .wc-tab #review_form input.submit:hover {
  background-color: #022d1b !important;
  border-color: #022d1b !important;
  color: #f5f8ec !important;
}

.wc-tab h2,
.related.products h2 {
  font-size: 40px;
  font-weight: 700;
}
@media only screen and (max-width: 1200px) {
  .wc-tab h2,
  .related.products h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 880px) {
  .wc-tab h2,
  .related.products h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wc-tab h2,
  .related.products h2 {
    font-size: 28px;
  }
}

/* related product */
.related.products {
  padding-top: 100px;
}
@media only screen and (max-width: 1200px) {
  .related.products {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 880px) {
  .related.products {
    padding-top: 60px;
  }
}
.related.products h2 {
  margin-bottom: 30px;
}

.woocommerce p.stars a {
  color: #ffa500;
}

/* Shopping Cart */
/* Button */
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  display: inline-flex !important;
  height: 47px;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 10px;
  border-radius: 200px !important;
  padding: 0px 30px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  transition: 0.3s !important;
  color: #022d1b !important;
  border: 1px solid;
  border-color: #93c202 !important;
  background-color: #93c202 !important;
}
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background-color: #022d1b !important;
  border-color: #022d1b !important;
  color: #f5f8ec !important;
}

.wx-single-post h1 {
  text-align: center;
  font-size: 48px;
}
@media only screen and (max-width: 1200px) {
  .wx-single-post h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 880px) {
  .wx-single-post h1 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .wx-single-post h1 {
    font-size: 28px;
  }
}

.wp-block-woocommerce-cart {
  padding-top: 70px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart {
    padding-top: 40px;
  }
}
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
  flex-wrap: nowrap;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout {
    gap: 40px;
  }
}
.wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block {
  border: 1px solid #93c202;
  border-radius: 30px;
  padding: 0 !important;
  overflow-x: auto; /* Makes table scrollable horizontally */
  -webkit-overflow-scrolling: touch;
}
.wp-block-woocommerce-cart table {
  overflow: visible;
  border-bottom: none !important;
}
.wp-block-woocommerce-cart table thead {
  border-bottom: 1px solid #93c202;
}
.wp-block-woocommerce-cart table th {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700 !important;
  padding: 20px !important;
}
.wp-block-woocommerce-cart table tbody tr {
  border-bottom: 1px solid #93c202;
}
.wp-block-woocommerce-cart table tbody tr:last-child {
  border-bottom: none;
}
.wp-block-woocommerce-cart table tbody tr:last-child td {
  padding-bottom: 0 !important;
}
.wp-block-woocommerce-cart table tbody td {
  padding: 24px 16px !important;
  border-top: none !important;
  margin: 0 !important;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart table tbody td {
    padding: 16px 8px !important;
  }
}
.wp-block-woocommerce-cart table tbody td:first-child {
  padding-right: 0px !important;
}
.wp-block-woocommerce-cart table .wc-block-cart-item__image a {
  border-radius: 20px;
  overflow: hidden;
}
.wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-components-product-name {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-components-product-name {
    font-size: 15px;
  }
}
.wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-components-product-details__colours {
  font-size: 18px;
  font-weight: 300;
  color: #022d1b;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-components-product-details__colours {
    font-size: 15px;
  }
}
.wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-components-product-details__colours .wc-block-components-product-details__name {
  font-weight: 300 !important;
}
.wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-cart-item__prices .price {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-cart-item__prices .price {
    font-size: 15px;
  }
}
.wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-cart-item__prices ins {
  font-weight: 700;
}
.wp-block-woocommerce-cart table .wc-block-cart-item__product .wc-block-cart-item__remove-link {
  font-size: 14px !important;
}
.wp-block-woocommerce-cart table .wc-block-cart-item__total span.price {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart table .wc-block-cart-item__total span.price {
    font-size: 15px;
  }
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector {
  border: 1px solid #93c202;
  overflow: hidden !important;
  border-radius: 200px;
  width: 120px;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector::after {
  display: none !important;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector input {
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-left: 1px solid #93c202 !important;
  border-right: 1px solid #93c202 !important;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector button {
  background-color: transparent !important;
  min-width: 40px;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector button:hover {
  background-color: transparent !important;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #93c202;
  border-radius: 30px;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-cart .wc-block-cart__sidebar {
    padding: 20px !important;
  }
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar h2 {
  display: block !important;
  padding: 0px 0px 5px 0px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700 !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
  border-top: 1px solid #93c202 !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block {
  border-bottom: none !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar .wc-block-cart__submit {
  margin: 0 !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar #ppcp-recaptcha-v2-container {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar input[type=text] {
  background-color: transparent !important;
  border-radius: 200px !important;
  border: 1px solid #93c202 !important;
  padding: 0px 20px !important;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar label {
  left: 20px !important;
}

/* CART NEW PRODUCT */
.wp-block-woocommerce-product-new {
  margin-top: 50px;
}
.wp-block-woocommerce-product-new .wc-block-grid__products {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1200px) {
  .wp-block-woocommerce-product-new .wc-block-grid__products {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .wp-block-woocommerce-product-new .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .wp-block-woocommerce-product-new .wc-block-grid__products {
    grid-template-columns: repeat(1, 1fr);
  }
}
.wp-block-woocommerce-product-new .wc-block-grid__products li {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  padding: 15px !important;
}
.wp-block-woocommerce-product-new .wc-block-grid__products li img {
  border-radius: 20px;
  margin-bottom: 10px !important;
}
.wp-block-woocommerce-product-new .wc-block-grid__products li .wc-block-grid__product-onsale {
  position: absolute !important;
  right: inherit !important;
  top: 20px !important;
  left: 20px !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  background-color: #93c202 !important;
  color: #022d1b !important;
  font-weight: 600;
  border: none !important;
}
.wp-block-woocommerce-product-new .wc-block-grid__products li .wc-block-grid__product-title {
  font-size: 16px;
  font-weight: 700;
}
.wp-block-woocommerce-product-new .wc-block-grid__products li .wc-block-grid__product-price {
  font-size: 14px;
  font-weight: 700;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: transparent;
  border-radius: 80px;
  border: 1px solid #93c202;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce-error:after,
.woocommerce-info:after,
.woocommerce-message:after {
  display: none;
}

/* Checkout */
.wp-block-woocommerce-checkout {
  padding-top: 70px !important;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-checkout {
    padding-top: 40px !important;
  }
}

.wc-block-checkout__main .wc-block-components-text-input {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wc-block-checkout__main .wc-block-components-text-input input {
  order: 2;
}
.wc-block-checkout__main .wc-blocks-components-select .wc-blocks-components-select__container {
  height: 100% !important;
  background: transparent !important;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wc-block-checkout__main .wc-blocks-components-select .wc-blocks-components-select__container select {
  font-size: 16px !important;
  order: 2;
  cursor: pointer;
}
.wc-block-checkout__main .wc-blocks-components-select .wc-blocks-components-select__container label {
  order: 1;
}
.wc-block-checkout__main .wc-blocks-components-select .wc-blocks-components-select__container .wc-blocks-components-select__expand {
  top: 46px;
}
.wc-block-checkout__main .wc-block-components-text-input label,
.wc-block-checkout__main .wc-blocks-components-select label {
  order: 1;
  left: 0px !important;
  transform: inherit !important;
  top: inherit !important;
  position: relative !important;
  padding-left: 0px;
  color: #022d1b !important;
  font-weight: 600 !important;
}
@media only screen and (max-width: 880px) {
  .wc-block-checkout__main .wc-block-components-text-input label,
  .wc-block-checkout__main .wc-blocks-components-select label {
    padding-left: 25px !important;
  }
}
.wc-block-checkout__main .wc-block-components-address-card {
  border-color: #93c202 !important;
  border-radius: 20px !important;
  padding: 10px 20px !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
  border-color: #93c202 !important;
  border-radius: 30px !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-text-input label {
  left: 20px !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-totals-block,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper {
  border-color: #93c202 !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-panel__button,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-formatted-money-amount {
  font-size: 18px;
  font-weight: 700 !important;
}
@media only screen and (max-width: 767px) {
  .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-panel__button,
  .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item__label,
  .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name,
  .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-formatted-money-amount {
    font-size: 15px;
  }
}
.wp-block-woocommerce-checkout-order-summary-block input[type=text] {
  background-color: transparent !important;
  border-radius: 200px !important;
  border: 1px solid #93c202 !important;
  padding: 0px 20px !important;
}
.wp-block-woocommerce-checkout-order-summary-block label {
  left: 20px !important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  border-radius: 10px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  background-color: #93c202 !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-components-notice-banner.is-warning,
.wc-block-components-notice-banner.is-error {
  border-radius: 20px;
}

.wc-block-components-radio-control--highlight-checked.wc-block-components-radio-control--highlight-checked--last-selected:after {
  border: none !important;
}

.wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: none !important;
  border: 1px solid #93c202;
  border-radius: 17px !important;
}

/* FORM */
#customer_login textarea,
#customer_login select,
#customer_login input[type=text],
#customer_login input[type=password],
#customer_login input[type=date],
#customer_login input[type=month],
#customer_login input[type=time],
#customer_login input[type=week],
#customer_login input[type=datetime],
#customer_login input[type=number],
#customer_login input[type=email],
#customer_login input[type=url],
#customer_login input[type=search],
#customer_login input[type=tel],
#customer_login input[type=color],
form.lost_reset_password textarea,
form.lost_reset_password select,
form.lost_reset_password input[type=text],
form.lost_reset_password input[type=password],
form.lost_reset_password input[type=date],
form.lost_reset_password input[type=month],
form.lost_reset_password input[type=time],
form.lost_reset_password input[type=week],
form.lost_reset_password input[type=datetime],
form.lost_reset_password input[type=number],
form.lost_reset_password input[type=email],
form.lost_reset_password input[type=url],
form.lost_reset_password input[type=search],
form.lost_reset_password input[type=tel],
form.lost_reset_password input[type=color],
.woocommerce-MyAccount-content textarea,
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content input[type=text],
.woocommerce-MyAccount-content input[type=password],
.woocommerce-MyAccount-content input[type=date],
.woocommerce-MyAccount-content input[type=month],
.woocommerce-MyAccount-content input[type=time],
.woocommerce-MyAccount-content input[type=week],
.woocommerce-MyAccount-content input[type=datetime],
.woocommerce-MyAccount-content input[type=number],
.woocommerce-MyAccount-content input[type=email],
.woocommerce-MyAccount-content input[type=url],
.woocommerce-MyAccount-content input[type=search],
.woocommerce-MyAccount-content input[type=tel],
.woocommerce-MyAccount-content input[type=color],
.woocommerce-EditAccountForm textarea,
.woocommerce-EditAccountForm select,
.woocommerce-EditAccountForm input[type=text],
.woocommerce-EditAccountForm input[type=password],
.woocommerce-EditAccountForm input[type=date],
.woocommerce-EditAccountForm input[type=month],
.woocommerce-EditAccountForm input[type=time],
.woocommerce-EditAccountForm input[type=week],
.woocommerce-EditAccountForm input[type=datetime],
.woocommerce-EditAccountForm input[type=number],
.woocommerce-EditAccountForm input[type=email],
.woocommerce-EditAccountForm input[type=url],
.woocommerce-EditAccountForm input[type=search],
.woocommerce-EditAccountForm input[type=tel],
.woocommerce-EditAccountForm input[type=color],
.wc-block-checkout__form textarea,
.wc-block-checkout__form select,
.wc-block-checkout__form input[type=text],
.wc-block-checkout__form input[type=password],
.wc-block-checkout__form input[type=date],
.wc-block-checkout__form input[type=month],
.wc-block-checkout__form input[type=time],
.wc-block-checkout__form input[type=week],
.wc-block-checkout__form input[type=datetime],
.wc-block-checkout__form input[type=number],
.wc-block-checkout__form input[type=email],
.wc-block-checkout__form input[type=url],
.wc-block-checkout__form input[type=search],
.wc-block-checkout__form input[type=tel],
.wc-block-checkout__form input[type=color] {
  font-family: "Cairo", sans-serif !important;
  border: 1px solid #93c202 !important;
  outline: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
  line-height: 24px !important;
  border-radius: 200px !important;
  padding: 10px 20px !important;
  width: 100% !important;
  background: #f9fbf2 !important;
  color: #022d1b !important;
  font-weight: normal !important;
}
#customer_login textarea:focus,
#customer_login select:focus,
#customer_login input[type=text]:focus,
#customer_login input[type=password]:focus,
#customer_login input[type=date]:focus,
#customer_login input[type=month]:focus,
#customer_login input[type=time]:focus,
#customer_login input[type=week]:focus,
#customer_login input[type=datetime]:focus,
#customer_login input[type=number]:focus,
#customer_login input[type=email]:focus,
#customer_login input[type=url]:focus,
#customer_login input[type=search]:focus,
#customer_login input[type=tel]:focus,
#customer_login input[type=color]:focus,
form.lost_reset_password textarea:focus,
form.lost_reset_password select:focus,
form.lost_reset_password input[type=text]:focus,
form.lost_reset_password input[type=password]:focus,
form.lost_reset_password input[type=date]:focus,
form.lost_reset_password input[type=month]:focus,
form.lost_reset_password input[type=time]:focus,
form.lost_reset_password input[type=week]:focus,
form.lost_reset_password input[type=datetime]:focus,
form.lost_reset_password input[type=number]:focus,
form.lost_reset_password input[type=email]:focus,
form.lost_reset_password input[type=url]:focus,
form.lost_reset_password input[type=search]:focus,
form.lost_reset_password input[type=tel]:focus,
form.lost_reset_password input[type=color]:focus,
.woocommerce-MyAccount-content textarea:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content input[type=text]:focus,
.woocommerce-MyAccount-content input[type=password]:focus,
.woocommerce-MyAccount-content input[type=date]:focus,
.woocommerce-MyAccount-content input[type=month]:focus,
.woocommerce-MyAccount-content input[type=time]:focus,
.woocommerce-MyAccount-content input[type=week]:focus,
.woocommerce-MyAccount-content input[type=datetime]:focus,
.woocommerce-MyAccount-content input[type=number]:focus,
.woocommerce-MyAccount-content input[type=email]:focus,
.woocommerce-MyAccount-content input[type=url]:focus,
.woocommerce-MyAccount-content input[type=search]:focus,
.woocommerce-MyAccount-content input[type=tel]:focus,
.woocommerce-MyAccount-content input[type=color]:focus,
.woocommerce-EditAccountForm textarea:focus,
.woocommerce-EditAccountForm select:focus,
.woocommerce-EditAccountForm input[type=text]:focus,
.woocommerce-EditAccountForm input[type=password]:focus,
.woocommerce-EditAccountForm input[type=date]:focus,
.woocommerce-EditAccountForm input[type=month]:focus,
.woocommerce-EditAccountForm input[type=time]:focus,
.woocommerce-EditAccountForm input[type=week]:focus,
.woocommerce-EditAccountForm input[type=datetime]:focus,
.woocommerce-EditAccountForm input[type=number]:focus,
.woocommerce-EditAccountForm input[type=email]:focus,
.woocommerce-EditAccountForm input[type=url]:focus,
.woocommerce-EditAccountForm input[type=search]:focus,
.woocommerce-EditAccountForm input[type=tel]:focus,
.woocommerce-EditAccountForm input[type=color]:focus,
.wc-block-checkout__form textarea:focus,
.wc-block-checkout__form select:focus,
.wc-block-checkout__form input[type=text]:focus,
.wc-block-checkout__form input[type=password]:focus,
.wc-block-checkout__form input[type=date]:focus,
.wc-block-checkout__form input[type=month]:focus,
.wc-block-checkout__form input[type=time]:focus,
.wc-block-checkout__form input[type=week]:focus,
.wc-block-checkout__form input[type=datetime]:focus,
.wc-block-checkout__form input[type=number]:focus,
.wc-block-checkout__form input[type=email]:focus,
.wc-block-checkout__form input[type=url]:focus,
.wc-block-checkout__form input[type=search]:focus,
.wc-block-checkout__form input[type=tel]:focus,
.wc-block-checkout__form input[type=color]:focus {
  border-color: #022d1b !important;
}
#customer_login textarea::-moz-placeholder, #customer_login select::-moz-placeholder, #customer_login input[type=text]::-moz-placeholder, #customer_login input[type=password]::-moz-placeholder, #customer_login input[type=date]::-moz-placeholder, #customer_login input[type=month]::-moz-placeholder, #customer_login input[type=time]::-moz-placeholder, #customer_login input[type=week]::-moz-placeholder, #customer_login input[type=datetime]::-moz-placeholder, #customer_login input[type=number]::-moz-placeholder, #customer_login input[type=email]::-moz-placeholder, #customer_login input[type=url]::-moz-placeholder, #customer_login input[type=search]::-moz-placeholder, #customer_login input[type=tel]::-moz-placeholder, #customer_login input[type=color]::-moz-placeholder, form.lost_reset_password textarea::-moz-placeholder, form.lost_reset_password select::-moz-placeholder, form.lost_reset_password input[type=text]::-moz-placeholder, form.lost_reset_password input[type=password]::-moz-placeholder, form.lost_reset_password input[type=date]::-moz-placeholder, form.lost_reset_password input[type=month]::-moz-placeholder, form.lost_reset_password input[type=time]::-moz-placeholder, form.lost_reset_password input[type=week]::-moz-placeholder, form.lost_reset_password input[type=datetime]::-moz-placeholder, form.lost_reset_password input[type=number]::-moz-placeholder, form.lost_reset_password input[type=email]::-moz-placeholder, form.lost_reset_password input[type=url]::-moz-placeholder, form.lost_reset_password input[type=search]::-moz-placeholder, form.lost_reset_password input[type=tel]::-moz-placeholder, form.lost_reset_password input[type=color]::-moz-placeholder, .woocommerce-MyAccount-content textarea::-moz-placeholder, .woocommerce-MyAccount-content select::-moz-placeholder, .woocommerce-MyAccount-content input[type=text]::-moz-placeholder, .woocommerce-MyAccount-content input[type=password]::-moz-placeholder, .woocommerce-MyAccount-content input[type=date]::-moz-placeholder, .woocommerce-MyAccount-content input[type=month]::-moz-placeholder, .woocommerce-MyAccount-content input[type=time]::-moz-placeholder, .woocommerce-MyAccount-content input[type=week]::-moz-placeholder, .woocommerce-MyAccount-content input[type=datetime]::-moz-placeholder, .woocommerce-MyAccount-content input[type=number]::-moz-placeholder, .woocommerce-MyAccount-content input[type=email]::-moz-placeholder, .woocommerce-MyAccount-content input[type=url]::-moz-placeholder, .woocommerce-MyAccount-content input[type=search]::-moz-placeholder, .woocommerce-MyAccount-content input[type=tel]::-moz-placeholder, .woocommerce-MyAccount-content input[type=color]::-moz-placeholder, .woocommerce-EditAccountForm textarea::-moz-placeholder, .woocommerce-EditAccountForm select::-moz-placeholder, .woocommerce-EditAccountForm input[type=text]::-moz-placeholder, .woocommerce-EditAccountForm input[type=password]::-moz-placeholder, .woocommerce-EditAccountForm input[type=date]::-moz-placeholder, .woocommerce-EditAccountForm input[type=month]::-moz-placeholder, .woocommerce-EditAccountForm input[type=time]::-moz-placeholder, .woocommerce-EditAccountForm input[type=week]::-moz-placeholder, .woocommerce-EditAccountForm input[type=datetime]::-moz-placeholder, .woocommerce-EditAccountForm input[type=number]::-moz-placeholder, .woocommerce-EditAccountForm input[type=email]::-moz-placeholder, .woocommerce-EditAccountForm input[type=url]::-moz-placeholder, .woocommerce-EditAccountForm input[type=search]::-moz-placeholder, .woocommerce-EditAccountForm input[type=tel]::-moz-placeholder, .woocommerce-EditAccountForm input[type=color]::-moz-placeholder, .wc-block-checkout__form textarea::-moz-placeholder, .wc-block-checkout__form select::-moz-placeholder, .wc-block-checkout__form input[type=text]::-moz-placeholder, .wc-block-checkout__form input[type=password]::-moz-placeholder, .wc-block-checkout__form input[type=date]::-moz-placeholder, .wc-block-checkout__form input[type=month]::-moz-placeholder, .wc-block-checkout__form input[type=time]::-moz-placeholder, .wc-block-checkout__form input[type=week]::-moz-placeholder, .wc-block-checkout__form input[type=datetime]::-moz-placeholder, .wc-block-checkout__form input[type=number]::-moz-placeholder, .wc-block-checkout__form input[type=email]::-moz-placeholder, .wc-block-checkout__form input[type=url]::-moz-placeholder, .wc-block-checkout__form input[type=search]::-moz-placeholder, .wc-block-checkout__form input[type=tel]::-moz-placeholder, .wc-block-checkout__form input[type=color]::-moz-placeholder {
  color: rgba(2, 45, 27, 0.5254901961) !important;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#customer_login textarea::placeholder,
#customer_login select::placeholder,
#customer_login input[type=text]::placeholder,
#customer_login input[type=password]::placeholder,
#customer_login input[type=date]::placeholder,
#customer_login input[type=month]::placeholder,
#customer_login input[type=time]::placeholder,
#customer_login input[type=week]::placeholder,
#customer_login input[type=datetime]::placeholder,
#customer_login input[type=number]::placeholder,
#customer_login input[type=email]::placeholder,
#customer_login input[type=url]::placeholder,
#customer_login input[type=search]::placeholder,
#customer_login input[type=tel]::placeholder,
#customer_login input[type=color]::placeholder,
form.lost_reset_password textarea::placeholder,
form.lost_reset_password select::placeholder,
form.lost_reset_password input[type=text]::placeholder,
form.lost_reset_password input[type=password]::placeholder,
form.lost_reset_password input[type=date]::placeholder,
form.lost_reset_password input[type=month]::placeholder,
form.lost_reset_password input[type=time]::placeholder,
form.lost_reset_password input[type=week]::placeholder,
form.lost_reset_password input[type=datetime]::placeholder,
form.lost_reset_password input[type=number]::placeholder,
form.lost_reset_password input[type=email]::placeholder,
form.lost_reset_password input[type=url]::placeholder,
form.lost_reset_password input[type=search]::placeholder,
form.lost_reset_password input[type=tel]::placeholder,
form.lost_reset_password input[type=color]::placeholder,
.woocommerce-MyAccount-content textarea::placeholder,
.woocommerce-MyAccount-content select::placeholder,
.woocommerce-MyAccount-content input[type=text]::placeholder,
.woocommerce-MyAccount-content input[type=password]::placeholder,
.woocommerce-MyAccount-content input[type=date]::placeholder,
.woocommerce-MyAccount-content input[type=month]::placeholder,
.woocommerce-MyAccount-content input[type=time]::placeholder,
.woocommerce-MyAccount-content input[type=week]::placeholder,
.woocommerce-MyAccount-content input[type=datetime]::placeholder,
.woocommerce-MyAccount-content input[type=number]::placeholder,
.woocommerce-MyAccount-content input[type=email]::placeholder,
.woocommerce-MyAccount-content input[type=url]::placeholder,
.woocommerce-MyAccount-content input[type=search]::placeholder,
.woocommerce-MyAccount-content input[type=tel]::placeholder,
.woocommerce-MyAccount-content input[type=color]::placeholder,
.woocommerce-EditAccountForm textarea::placeholder,
.woocommerce-EditAccountForm select::placeholder,
.woocommerce-EditAccountForm input[type=text]::placeholder,
.woocommerce-EditAccountForm input[type=password]::placeholder,
.woocommerce-EditAccountForm input[type=date]::placeholder,
.woocommerce-EditAccountForm input[type=month]::placeholder,
.woocommerce-EditAccountForm input[type=time]::placeholder,
.woocommerce-EditAccountForm input[type=week]::placeholder,
.woocommerce-EditAccountForm input[type=datetime]::placeholder,
.woocommerce-EditAccountForm input[type=number]::placeholder,
.woocommerce-EditAccountForm input[type=email]::placeholder,
.woocommerce-EditAccountForm input[type=url]::placeholder,
.woocommerce-EditAccountForm input[type=search]::placeholder,
.woocommerce-EditAccountForm input[type=tel]::placeholder,
.woocommerce-EditAccountForm input[type=color]::placeholder,
.wc-block-checkout__form textarea::placeholder,
.wc-block-checkout__form select::placeholder,
.wc-block-checkout__form input[type=text]::placeholder,
.wc-block-checkout__form input[type=password]::placeholder,
.wc-block-checkout__form input[type=date]::placeholder,
.wc-block-checkout__form input[type=month]::placeholder,
.wc-block-checkout__form input[type=time]::placeholder,
.wc-block-checkout__form input[type=week]::placeholder,
.wc-block-checkout__form input[type=datetime]::placeholder,
.wc-block-checkout__form input[type=number]::placeholder,
.wc-block-checkout__form input[type=email]::placeholder,
.wc-block-checkout__form input[type=url]::placeholder,
.wc-block-checkout__form input[type=search]::placeholder,
.wc-block-checkout__form input[type=tel]::placeholder,
.wc-block-checkout__form input[type=color]::placeholder {
  color: rgba(2, 45, 27, 0.5254901961) !important;
  transition: all 0.3s ease;
}

.wc-block-components-checkout-step__content textarea {
  border-radius: 20px !important;
}

/* ACCOUNT */
body.woocommerce-account .woocommerce {
  padding-top: 60px;
}

body.woocommerce-dashboard .woocommerce-MyAccount-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.woocommerce-dashboard .woocommerce-MyAccount-content p a {
  text-decoration: underline;
}

body.woocommerce-view-order .woocommerce-order-details {
  margin-top: 30px;
}

.woocommerce {
  display: flex;
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.woocommerce .woocommerce-MyAccount-navigation ul li a {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-MyAccount-navigation ul li a {
    font-size: 15px;
  }
}
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a, .woocommerce .woocommerce-MyAccount-navigation ul li:hover a {
  color: #93c202;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-MyAccount-navigation {
    margin-bottom: 50px;
  }
}
.woocommerce .woocommerce-MyAccount-content {
  border-left: 1px solid #93c202;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .woocommerce .woocommerce-MyAccount-content {
    border-left: none;
    padding-left: 0px;
  }
}
.woocommerce .woocommerce-MyAccount-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
  float: left;
}
.woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title {
  margin-bottom: 20px;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  margin-top: 25px;
}
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::before {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .woocommerce .col2-set,
  .woocommerce-page .col2-set {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.woocommerce-EditAccountForm .woocommerce-Button {
  margin-top: 20px !important;
}

body.woocommerce-edit-address {
  overflow-x: hidden;
}

.select2-container .select2-dropdown,
.select2-container .select2-selection {
  background: #f5f8ec !important;
  border-radius: 30px !important;
  padding: 0px 20px;
  border-color: #93c202 !important;
}
.select2-container .select2-dropdown .select2-selection__rendered,
.select2-container .select2-selection .select2-selection__rendered {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  right: 20px !important;
}

.woocommerce-orders-table__cell-order-actions {
  display: flex;
  gap: 10px;
}

.woocommerce-order-details .wpifw-my-account-invoice {
  display: inline-flex !important;
  height: 54px;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 10px;
  color: #022d1b !important;
  border-radius: 200px !important;
  background-color: transparent !important;
  border: 1px solid #93c202 !important;
  padding: 0px 25px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease;
}
.woocommerce-order-details .wpifw-my-account-invoice i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}
.woocommerce-order-details .wpifw-my-account-invoice:hover {
  background-color: #93c202 !important;
  color: #022d1b !important;
  border-color: #93c202 !important;
}

/* LOGIN  */
#customer_login h2 {
  font-size: 30px;
  font-weight: 700;
}
#customer_login .woocommerce-form {
  border-color: #93c202 !important;
  border-radius: 30px !important;
}
#customer_login .form-row::before {
  display: none !important;
}
#customer_login .form-row .woocommerce-form-login__rememberme {
  position: relative;
  top: 9px;
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media only screen and (max-width: 332px) {
  #customer_login .form-row .woocommerce-form-login__rememberme {
    margin-bottom: 15px;
    margin-left: 0px;
  }
}
#customer_login .form-row .woocommerce-form-login__rememberme input {
  width: 17px;
  height: 17px;
}
@media only screen and (max-width: 332px) {
  #customer_login .form-row button {
    margin-right: 10px !important;
  }
}
#customer_login .woocommerce-privacy-policy-text {
  margin-bottom: 10px;
}
#customer_login .woocommerce-privacy-policy-text a {
  text-decoration: underline;
}
#customer_login .woocommerce-privacy-policy-text a:hover {
  color: #93c202;
}
#customer_login .lost_password a {
  text-decoration: underline;
}
#customer_login .lost_password a:hover {
  color: #93c202;
}

/* CHECKOUT THANK YOU */
.woocommerce-order {
  padding-top: 50px;
}
.woocommerce-order .woocommerce-thankyou-order-received {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 35px;
  }
}
@media only screen and (max-width: 880px) {
  .woocommerce-order .woocommerce-thankyou-order-received {
    font-size: 28px;
  }
}
.woocommerce-order h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  .woocommerce-order h2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 880px) {
  .woocommerce-order h2 {
    font-size: 20px;
  }
}
.woocommerce-order .woocommerce-thankyou-order-details {
  margin: 60px 0px !important;
  padding: 20px;
  border: 1px solid #93c202;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.woocommerce-order .woocommerce-thankyou-order-details::after, .woocommerce-order .woocommerce-thankyou-order-details::before {
  display: none !important;
}
.woocommerce-order .woocommerce-thankyou-order-details li {
  width: 100%;
  font-size: 20px !important;
  text-transform: capitalize !important;
  font-weight: 600 !important;
  border-right: none !important;
  margin-right: 0px !important;
  padding-right: 0px !important;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-order .woocommerce-thankyou-order-details li strong {
  font-size: 20px !important;
  text-transform: capitalize !important;
  font-weight: 600 !important;
}
@media only screen and (max-width: 767px) {
  .woocommerce-order .woocommerce-thankyou-order-details {
    margin: 30px 0px !important;
  }
  .woocommerce-order .woocommerce-thankyou-order-details li {
    font-size: 15px !important;
  }
  .woocommerce-order .woocommerce-thankyou-order-details li strong {
    font-size: 15px !important;
  }
}
.woocommerce-order .woocommerce-thankyou-order-details + p {
  margin-bottom: 20px;
}
.woocommerce-order .woocommerce-order-details {
  padding: 20px;
  border: 1px solid #93c202 !important;
  border-radius: 20px !important;
  background-color: #f4f7e5 !important;
}
.woocommerce-order table.shop_table {
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #93c202;
  padding: 10px;
  box-shadow: 0px 0px 2px #93c202, 0px 0px 2px #93c202;
}
.woocommerce-order table.shop_table thead th,
.woocommerce-order table.shop_table tbody th,
.woocommerce-order table.shop_table tbody td,
.woocommerce-order table.shop_table tfoot td,
.woocommerce-order table.shop_table tfoot th {
  padding: 15px 20px !important;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #93c202;
}
.woocommerce-order table.shop_table thead th strong,
.woocommerce-order table.shop_table tbody th strong,
.woocommerce-order table.shop_table tbody td strong,
.woocommerce-order table.shop_table tfoot td strong,
.woocommerce-order table.shop_table tfoot th strong {
  font-weight: 600;
}
@media only screen and (max-width: 880px) {
  .woocommerce-order table.shop_table thead th,
  .woocommerce-order table.shop_table tbody th,
  .woocommerce-order table.shop_table tbody td,
  .woocommerce-order table.shop_table tfoot td,
  .woocommerce-order table.shop_table tfoot th {
    font-size: 15px;
    padding: 10px 15px !important;
  }
}
.woocommerce-order .woocommerce-customer-details address {
  padding: 20px;
  border: 1px solid #93c202 !important;
  border-radius: 20px !important;
  background-color: #f4f7e5 !important;
}
.woocommerce-order .woocommerce-customer-details address p {
  display: flex;
  align-items: center;
}

/* WHISHLIST */
.wishlist-title-container {
  margin: 50px 0px 0px 0px;
}
.wishlist-title-container .wishlist-title.wishlist-title-with-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .wishlist-title-container .wishlist-title.wishlist-title-with-form {
    margin-bottom: 10px !important;
  }
}
.wishlist-title-container h2 {
  font-size: 30px;
}
@media only screen and (max-width: 1200px) {
  .wishlist-title-container h2 {
    font-size: 24px !important;
  }
}
.wishlist-title-container h2:hover {
  background-color: transparent !important;
}

/* DESKTOP WISHLIST */
table.wishlist_table.shop_table {
  display: table !important;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #93c202;
  box-shadow: 0px 0px 2px #93c202, 0px 0px 2px #93c202;
}
table.wishlist_table.shop_table th,
table.wishlist_table.shop_table td {
  border-color: #93c202 !important;
  background-color: transparent !important;
  padding: 15px 20px;
  text-align: left !important;
  font-size: 18px;
}
table.wishlist_table.shop_table td.product-remove a {
  color: #022d1b !important;
  width: auto;
  height: auto;
}
table.wishlist_table.shop_table td.product-remove a:hover {
  background-color: transparent !important;
  color: #93c202 !important;
}
table.wishlist_table.shop_table td.product-thumbnail a {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
}
table.wishlist_table.shop_table td.product-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
table.wishlist_table.shop_table td.product-price {
  color: #022d1b !important;
}
table.wishlist_table.shop_table td.product-add-to-cart {
  text-align: right !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
table.wishlist_table.shop_table td.product-add-to-cart a {
  margin: 0 !important;
  height: 50px;
  display: inline-flex !important;
}

/* MOBILE WISHLIST */
.wishlist_table.mobile {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #93c202;
  padding: 20px;
}
.wishlist_table.mobile .product-thumbnail a {
  overflow: hidden;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
}
.wishlist_table.mobile .product-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wishlist_table.mobile .product-name h3 {
  font-size: 18px;
}
.wishlist_table.mobile .item-wrapper {
  width: 100% !important;
}
.wishlist_table.mobile .additional-info-wrapper {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.wishlist_table.mobile .product-add-to-cart {
  text-align: right !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.wishlist_table.mobile .product-add-to-cart a {
  margin: 0 !important;
  height: 50px;
  display: inline-flex !important;
}
.wishlist_table.mobile .product-remove {
  display: none !important;
}

.yith-wcwl-share ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.yith-wcwl-share ul .share-button a {
  background: transparent !important;
  color: #022d1b !important;
  border: 1px solid #022d1b !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.yith-wcwl-share ul .share-button a:hover {
  background-color: #93c202 !important;
  border-color: #93c202 !important;
}

body.rtl ul.products li .wx-product-items .wx-price-rating {
  text-align: left !important;
}
body.rtl #customer_login .form-row .woocommerce-form-login__rememberme {
  margin-left: 0;
  margin-right: 15px;
}
@media only screen and (max-width: 332px) {
  body.rtl #customer_login .form-row .woocommerce-form-login__rememberme #customer_login .form-row .woocommerce-form-login__rememberme {
    margin-right: 0px;
  }
}
body.rtl .woocommerce .woocommerce-MyAccount-content {
  border-left: none;
  padding-left: 0;
  border-right: 1px solid #93c202;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  body.rtl .woocommerce .woocommerce-MyAccount-content {
    border-right: none;
    padding-right: 0px;
  }
}
body.rtl .woocommerce .woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
  float: right;
}

body.admin-bar header.wooprex-header-section,
body.admin-bar .wooprex-mobile-menu {
  top: 32px !important;
}

/******************* HEADER START *******************/
/* Start Wooprex Header & Light header */
header.wooprex-header-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 20px;
  background-color: transparent;
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s;
}
header.wooprex-header-section.sticky {
  position: fixed !important;
  top: 0px;
  background-color: transparent !important;
  animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
}

@keyframes stickyAnimation {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/* Wooprex menu css that applies to all section */
header.wooprex-header-section .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
header.wooprex-header-section .header-main .header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 200px;
  background-color: #f4f7e5;
  box-shadow: -10px 0px 50px -10px rgba(0, 0, 0, 0.0901960784);
  width: 100%;
  gap: 40px;
  border: 1px solid #93c202;
}
header.wooprex-header-section .header-main .header-left .header-inner-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .cart {
  display: flex;
  align-items: center;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper {
  position: relative;
  padding: 15px 0px;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper .badge {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #93c202;
  border-radius: 50%;
  color: #022d1b;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  top: 6px;
  right: -8px;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper .cart-list {
  width: 220px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 80px;
  right: 0;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.0823529412);
  background-color: #f5f8ec;
  padding: 20px;
  transition: all 0.3s ease;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper:hover .cart-list {
  top: 60px;
  opacity: 1;
  visibility: visible;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper {
  display: flex;
  gap: 8px;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper .sc-btn {
  font-weight: 900 !important;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.account .sc-btn {
  min-width: 180px;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.account a.account-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.account a.account-wrapper i {
  display: flex;
  align-items: center;
  justify-content: center;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.hidden {
  display: none;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.active {
  display: flex;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.mobile {
  display: none !important;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .wooprex-search-bar {
  cursor: pointer;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .wooprex-search-bar i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #022d1b;
  transition: all 0.3s ease;
}
header.wooprex-header-section .header-main .header-left .header-inner-right .wooprex-search-bar i:hover {
  color: #022d1b;
}
header.wooprex-header-section .header-main .header-right {
  display: none;
}
header.wooprex-header-section .header-main .wooprex-search-box {
  background: #f5f8ec;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  padding: 20px 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.1);
}
header.wooprex-header-section .header-main .wooprex-search-box form {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
}
header.wooprex-header-section .header-main .wooprex-search-box input {
  border-color: transparent;
  color: #022d1b;
  padding: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
}
header.wooprex-header-section .header-main .wooprex-search-box input::-moz-placeholder {
  color: #022d1b;
  font-weight: 500;
  font-size: 18px;
}
header.wooprex-header-section .header-main .wooprex-search-box input::placeholder {
  color: #022d1b;
  font-weight: 500;
  font-size: 18px;
}
header.wooprex-header-section .header-main .wooprex-search-box .wooprex-search-close {
  cursor: pointer;
}
header.wooprex-header-section .header-main .wooprex-search-box .wooprex-search-close i {
  color: #022d1b;
  font-size: 28px;
  transition: all 0.3s ease;
}
header.wooprex-header-section .header-main .wooprex-search-box .wooprex-search-close:hover i {
  color: #022d1b;
}
header.wooprex-header-section .header-main .wooprex-search-box.active-search {
  opacity: 1;
  visibility: visible;
}

/* Language */
.wpml-ls-legacy-list-horizontal {
  padding: 0;
}
.wpml-ls-legacy-list-horizontal a {
  padding: 0;
  font-weight: 500 !important;
}
@media only screen and (max-width: 340px) {
  .wpml-ls-legacy-list-horizontal a {
    font-size: 10px !important;
  }
}

/* Start desktop menu */
.wooprex-desktop-menu ul.box-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 35px;
  flex-wrap: wrap;
}
.wooprex-desktop-menu ul.box-nav li.menu-item {
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
  color: #022d1b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 0px;
  position: relative;
  font-weight: 600;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 12px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link:before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  background-color: #022d1b;
  width: 0%;
  height: 1px;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
  font-size: 20px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > a.item-link, .wooprex-desktop-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  color: #022d1b;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > a.item-link:before, .wooprex-desktop-menu ul.box-nav li.menu-item.current-menu-item > a.item-link:before {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover a.item-link i {
  transform: rotate(180deg);
}
.wooprex-desktop-menu ul.box-nav li.menu-item > ul.sub-menu {
  left: 0px;
  top: 60px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu {
  position: absolute;
  width: 250px;
  padding: 20px 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  background-color: #f5f8ec;
  box-shadow: 0px 14px 28px 0px rgba(6, 23, 106, 0.0784313725);
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 8px 15px;
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link, .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.item-link {
  color: #022d1b;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link:before, .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.item-link:before {
  opacity: 1;
  visibility: visible;
  height: 15px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link {
  padding: 0px 25px;
  display: block;
  color: #022d1b;
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link i {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: #022d1b;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 4px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
  right: -220px;
  top: 0;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link i {
  transform: rotate(180deg);
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
  right: -250px;
  opacity: 1;
  visibility: visible;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Start mobile menu */
.wooprex-mobile-menu {
  width: 575px;
  max-width: 100%;
  background-color: #f4f7e5;
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(-110%);
  top: 0%;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.6s ease;
  overflow-y: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  border: 1px solid #93c202;
  border-radius: 20px;
}
.wooprex-mobile-menu ul.box-nav {
  margin-top: 50px;
  margin-bottom: 40px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item {
  padding: 0px 20px;
  border: none;
}
.wooprex-mobile-menu ul.box-nav li.menu-item:hover > a.item-link, .wooprex-mobile-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  color: #93c202;
}
.wooprex-mobile-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  border-color: #93c202;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #022d1b;
  transition: all 0.3s ease;
  gap: 5px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 30px;
  font-size: 18px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link.link-active i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu {
  padding-bottom: 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 0px 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.item-link, .wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.item-link {
  color: #93c202;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0px;
  color: #022d1b;
  font-weight: 500;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.item-link.link-active i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu .button-wrapper {
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wooprex-mobile-menu .button-wrapper a {
  width: 100%;
}
.wooprex-mobile-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(130px);
}

.wooprex-mobile-menu-bar {
  cursor: pointer;
  padding: 15px;
  background-color: #93c202;
  border-radius: 50%;
}
.wooprex-mobile-menu-bar i {
  font-size: 30px;
  color: #f5f8ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-bar-close {
  position: absolute;
  right: 0;
  margin-right: 15px;
  cursor: pointer;
}
.mobile-menu-bar-close i {
  font-size: 18px;
  color: #022d1b;
}
.mobile-menu-bar-close:hover i {
  color: #022d1b;
}

/******************* HEADER END *******************/
.sc-btn {
  display: inline-flex;
  height: 54px;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  gap: 10px;
  color: #022d1b !important;
  border-radius: 200px !important;
  background-color: #93c202 !important;
  border: 1px solid #93c202 !important;
  padding: 0px 35px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease;
}
.sc-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}
.sc-btn:hover {
  background-color: #022d1b !important;
  color: #93c202 !important;
  border-color: #022d1b !important;
}
.sc-btn.color-btn {
  color: #93c202 !important;
  border-color: #022d1b !important;
  background-color: #022d1b !important;
}
.sc-btn.color-btn:hover {
  background-color: #93c202 !important;
  border-color: #93c202 !important;
  color: #022d1b !important;
}

/* BANNER */
.wooprex-banner-section .banner-item {
  position: relative;
  height: 100vh;
}
.wooprex-banner-section .banner-item .banner-image {
  height: 100%;
}
.wooprex-banner-section .banner-item .banner-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-banner-section .banner-item .banner-text {
  width: 650px;
  max-width: 100%;
  text-align: center;
  padding: 0px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wooprex-banner-section .banner-item .banner-text .banner-heading {
  font-size: 60px;
  font-weight: 800;
  color: #f5f8ec;
}
.wooprex-banner-section .banner-item .banner-text p {
  font-size: 28px;
  font-weight: 600;
  color: #f5f8ec;
}
@media only screen and (max-width: 767px) {
  .wooprex-banner-section .banner-item .banner-text {
    width: 550px;
  }
  .wooprex-banner-section .banner-item .banner-text .banner-heading {
    font-size: 48px;
  }
  .wooprex-banner-section .banner-item .banner-text p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .wooprex-banner-section .banner-item .banner-text .banner-heading {
    font-size: 35px;
  }
  .wooprex-banner-section .banner-item .banner-text p {
    font-size: 18px;
  }
}
.wooprex-banner-section .swiper-pagination {
  bottom: 70px;
  width: auto;
  right: 60px;
  left: inherit;
  top: inherit;
}
@media only screen and (max-width: 1200px) {
  .wooprex-banner-section .swiper-pagination {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-banner-section .swiper-pagination {
    display: none;
  }
}
.wooprex-banner-section .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #f5f8ec;
  opacity: 1 !important;
}
.wooprex-banner-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #93c202;
}

.banner-heading,
.banner-text p {
  opacity: 0; /* Hidden initially */
}

/* Newsletter */
.newsletter-form p {
  display: flex;
  position: relative;
}
.newsletter-form p .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: -30px;
}
.newsletter-form p .wpcf7-form-control-wrap {
  width: 480px;
  max-width: 100%;
}
.newsletter-form input[type=email] {
  border-radius: 30px;
  height: 54px;
  padding: 0px 30px;
  color: #022d1b;
}
@media only screen and (max-width: 575px) {
  .newsletter-form input[type=email] {
    padding: 0px 20px;
    font-size: 14px;
  }
  .newsletter-form input[type=email]::-moz-placeholder {
    font-size: 14px;
  }
  .newsletter-form input[type=email]::placeholder {
    font-size: 14px;
  }
}
.newsletter-form .sc-btn {
  font-weight: 700 !important;
}
@media only screen and (max-width: 575px) {
  .newsletter-form .sc-btn {
    padding: 0px 20px !important;
  }
}
.newsletter-form .sc-btn:hover {
  background-color: #022d1b !important;
  border-color: #022d1b !important;
  color: #f5f8ec !important;
}

footer.wooprex-footer-section .newsletter-form input[type=email] {
  background-color: #edfecb;
}
footer.wooprex-footer-section .newsletter-form .sc-btn {
  background-image: url("../assets/svg/right-up-arrow.svg") !important;
  background-position: center right 28px;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-right: 52px !important;
}
@media only screen and (max-width: 575px) {
  footer.wooprex-footer-section .newsletter-form .sc-btn {
    background-position: center right 20px;
    padding: 0px 40px 0px 20px !important;
  }
}
footer.wooprex-footer-section .newsletter-form .sc-btn:hover {
  background-color: #f5f8ec !important;
  border-color: #f5f8ec !important;
  color: #022d1b !important;
}

/* FOOTER */
footer.wooprex-footer-section {
  background: #022d1b;
  padding-top: 120px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  footer.wooprex-footer-section {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 880px) {
  footer.wooprex-footer-section {
    padding-top: 60px;
  }
}
footer.wooprex-footer-section .bg-shape {
  position: absolute;
  top: 0;
  right: 60px;
  max-width: 600px;
}
@media only screen and (max-width: 575px) {
  footer.wooprex-footer-section .bg-shape {
    display: none;
  }
}
footer.wooprex-footer-section .footer-top {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 90px;
}
footer.wooprex-footer-section .footer-top .row {
  row-gap: 120px;
}
footer.wooprex-footer-section .footer-top .footer-item h4,
footer.wooprex-footer-section .footer-top .footer-item p {
  color: #f5f8ec;
}
footer.wooprex-footer-section .footer-top .footer-item h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 15px;
}
footer.wooprex-footer-section .footer-top .footer-item ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 575px) {
  footer.wooprex-footer-section .footer-top .footer-item ul {
    justify-content: center;
  }
}
footer.wooprex-footer-section .footer-top .footer-item ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #93c202;
  color: #93c202;
  font-size: 24px;
}
footer.wooprex-footer-section .footer-top .footer-item ul li a:hover {
  background-color: #f5f8ec;
  border-color: #f5f8ec;
  color: #022d1b;
}
footer.wooprex-footer-section .footer-top .footer-item ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.wooprex-footer-section .footer-top .footer-item .wpcf7-response-output {
  color: #f5f8ec;
  margin-bottom: 0;
}
footer.wooprex-footer-section .footer-bottom {
  border-top: 1px solid #93c202;
  padding-left: 20px;
  padding-right: 20px;
}
footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu {
  padding: 60px 0px;
}
footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a {
  font-size: 22px;
  color: #edfecb;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a:after {
  margin-left: 5px;
  content: "\f106";
  font-family: "flaticon_pristine";
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 2px;
}
footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a:hover {
  color: #93c202;
}
@media only screen and (max-width: 1200px) {
  footer.wooprex-footer-section .bg-shape {
    right: 20px;
    max-width: 500px;
  }
  footer.wooprex-footer-section .footer-top {
    padding-bottom: 70px;
  }
  footer.wooprex-footer-section .footer-top .footer-item h4 {
    font-size: 20px;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu {
    padding: 50px 0px;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  footer.wooprex-footer-section .bg-shape {
    max-width: 400px;
  }
  footer.wooprex-footer-section .footer-top .footer-item ul {
    gap: 10px;
  }
  footer.wooprex-footer-section .footer-top .footer-item ul li a {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  footer.wooprex-footer-section .footer-top .footer-item h4 {
    font-size: 18px;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul {
    gap: 30px;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  footer.wooprex-footer-section .bg-shape {
    max-width: 300px;
  }
  footer.wooprex-footer-section .footer-top {
    padding-bottom: 50px;
  }
  footer.wooprex-footer-section .footer-top .row {
    row-gap: 70px;
  }
  footer.wooprex-footer-section .footer-top .footer-item h4 {
    font-size: 16px;
    text-align: center;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu {
    padding: 30px 0px;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul {
    gap: 20px;
    row-gap: 10px;
  }
  footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a {
    font-size: 16px;
  }
}

/* SCROLL SECTION */
.sc-scroll-wrapper.has-active {
  background-color: #022d1b !important;
}
.sc-scroll-wrapper .sc-scroll-item .hidden-text {
  overflow: hidden;
  transition: 0s !important;
}
.sc-scroll-wrapper .sc-scroll-item.active {
  background-color: #022d1b !important;
}

@media only screen and (min-width: 1281px) {
  .sc-custom-padding {
    padding-left: 20px !important;
  }
  .sc-custom-padding-right {
    padding-right: 20px !important;
  }
}
@media only screen and (min-width: 1250px) {
  .sc-custom-padding {
    padding-left: calc((100% - 1250px) / 2) !important;
  }
  .sc-custom-padding-right {
    padding-right: calc((100% - 1250px) / 2) !important;
  }
}
/* ALL SLIDER */
.events-slider .swiper-slide,
.partners-slider .swiper-slide,
.donations-slider .swiper-slide,
.product-slider .swiper-slide {
  height: auto !important;
}

/* CARD */
.wooprex-card-item {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.0470588235);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wooprex-card-item .card-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
}
.wooprex-card-item .card-text .top,
.wooprex-card-item .card-text .bottom {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wooprex-card-item .card-text .heading a {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .wooprex-card-item .card-text .heading a {
    font-size: 18px;
  }
}
.wooprex-card-item .card-text .heading a:hover {
  color: #93c202;
}
.wooprex-card-item .card-text .short-title {
  font-size: 14px;
}
.wooprex-card-item .card-text .sc-btn {
  font-weight: 700 !important;
}
@media only screen and (max-width: 767px) {
  .wooprex-card-item .card-text .sc-btn {
    padding: 0px 15px !important;
  }
}
.wooprex-card-item.event, .wooprex-card-item.product, .wooprex-card-item.leadership {
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .wooprex-card-item.event, .wooprex-card-item.product, .wooprex-card-item.leadership {
    padding: 15px;
  }
}
.wooprex-card-item.event:hover .card-image img, .wooprex-card-item.product:hover .card-image img, .wooprex-card-item.leadership:hover .card-image img {
  transform: scale(1.05);
}
.wooprex-card-item.event .card-image, .wooprex-card-item.product .card-image, .wooprex-card-item.leadership .card-image {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .wooprex-card-item.event .card-image, .wooprex-card-item.product .card-image, .wooprex-card-item.leadership .card-image {
    height: 250px;
  }
}
@media only screen and (max-width: 575px) {
  .wooprex-card-item.event .card-image, .wooprex-card-item.product .card-image, .wooprex-card-item.leadership .card-image {
    height: 220px;
  }
}
.wooprex-card-item.event .card-image a, .wooprex-card-item.product .card-image a, .wooprex-card-item.leadership .card-image a {
  height: 100%;
  display: block;
}
.wooprex-card-item.event .card-image img, .wooprex-card-item.product .card-image img, .wooprex-card-item.leadership .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-card-item.event .card-image .tag,
.wooprex-card-item.event .card-image .category, .wooprex-card-item.product .card-image .tag,
.wooprex-card-item.product .card-image .category, .wooprex-card-item.leadership .card-image .tag,
.wooprex-card-item.leadership .card-image .category {
  position: absolute;
  z-index: 2;
  top: 15px;
  background-color: #022d1b;
  color: #93c202;
  padding: 6px 15px;
  border-radius: 30px;
}
.wooprex-card-item.event .card-image .tag, .wooprex-card-item.product .card-image .tag, .wooprex-card-item.leadership .card-image .tag {
  left: 15px;
}
.wooprex-card-item.event .card-image .category, .wooprex-card-item.product .card-image .category, .wooprex-card-item.leadership .card-image .category {
  right: 15px;
}
.wooprex-card-item.event .card-text, .wooprex-card-item.product .card-text, .wooprex-card-item.leadership .card-text {
  padding: 15px 0px;
}
.wooprex-card-item.event .card-text ul.event-details, .wooprex-card-item.product .card-text ul.event-details, .wooprex-card-item.leadership .card-text ul.event-details {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.wooprex-card-item.event .card-text ul.event-details li, .wooprex-card-item.product .card-text ul.event-details li, .wooprex-card-item.leadership .card-text ul.event-details li {
  display: flex;
  gap: 15px;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .wooprex-card-item.event .card-text ul.event-details li, .wooprex-card-item.product .card-text ul.event-details li, .wooprex-card-item.leadership .card-text ul.event-details li {
    gap: 10px;
  }
}
.wooprex-card-item.event .card-text ul.event-details li i, .wooprex-card-item.product .card-text ul.event-details li i, .wooprex-card-item.leadership .card-text ul.event-details li i {
  display: inline-flex;
  position: relative;
  top: 4px;
}
.wooprex-card-item.donations {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 90px;
}
@media only screen and (max-width: 767px) {
  .wooprex-card-item.donations {
    padding: 20px;
    gap: 50px;
  }
}
.wooprex-card-item.donations .card-text .heading a {
  line-height: 1.2em;
}
.wooprex-card-item.product .card-image {
  position: relative;
}
.wooprex-card-item.product .card-image .onsale {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #93c202;
  color: #022d1b;
  font-weight: 600;
}
.wooprex-card-item.product .card-text .top {
  flex-direction: row;
  gap: 15px;
}
.wooprex-card-item.product .card-text .top .top-left {
  width: 65%;
}
.wooprex-card-item.product .card-text .top .top-right {
  width: 35%;
  text-align: right;
}
.wooprex-card-item.product .card-text .top .top-right .wooprex-rating {
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .wooprex-card-item.product .card-text .top {
    gap: 5px;
  }
  .wooprex-card-item.product .card-text .top .top-left,
  .wooprex-card-item.product .card-text .top .top-right {
    width: 100%;
  }
}
.wooprex-card-item.product .card-text .bottom {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 1024px) {
  .wooprex-card-item.product .card-text .bottom {
    gap: 6px;
  }
}
.wooprex-card-item.product .card-text .bottom .added_to_cart.wc-forward {
  display: none;
}
.wooprex-card-item.product .card-text .bottom .sc-btn,
.wooprex-card-item.product .card-text .bottom .add_to_cart_button,
.wooprex-card-item.product .card-text .bottom .product_type_variable,
.wooprex-card-item.product .card-text .bottom .product_type_simple {
  padding: 0px 5px !important;
  width: 50%;
  font-size: 18px !important;
}
@media only screen and (max-width: 1024px) {
  .wooprex-card-item.product .card-text .bottom .sc-btn,
  .wooprex-card-item.product .card-text .bottom .add_to_cart_button,
  .wooprex-card-item.product .card-text .bottom .product_type_variable,
  .wooprex-card-item.product .card-text .bottom .product_type_simple {
    font-size: 16px !important;
    height: 45px;
  }
}
.wooprex-card-item.product .card-text .price {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  .wooprex-card-item.product .card-text .price {
    font-size: 16px;
  }
}
.wooprex-card-item.product .card-text .price del {
  display: none;
}
.wooprex-card-item.leadership {
  background-color: #022d1b;
}
.wooprex-card-item.leadership .card-image {
  background: #93c202;
  height: 240px;
}
.wooprex-card-item.leadership .card-text .heading a {
  color: #f5f8ec;
}
.wooprex-card-item.leadership .card-text .heading a:hover {
  color: #93c202;
}
.wooprex-card-item.leadership .card-text h5 {
  color: #f5f8ec;
}

.wooprex-partner-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wooprex-partner-item .partner-image {
  text-align: center;
}

/* Category Tabs */
.wooprex-donations-tabs .container,
.wooprex-events-tabs .container,
.product-slider .container {
  margin: 0;
}

.event-category-tabs,
.donation-category-tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.event-category-tabs li,
.donation-category-tabs li {
  cursor: pointer;
  padding: 8px 25px;
  background: transparent;
  border-radius: 30px;
  transition: 0.3s;
  color: #022d1b;
  border: 1px solid #022d1b;
}

.event-category-tabs li:hover,
.event-category-tabs li.active,
.donation-category-tabs li:hover,
.donation-category-tabs li.active {
  background: #93c202;
  color: #022d1b;
  border-color: #93c202;
}

/* CATEGORY & NAVIGATION */
.wooprex-nav-wrapper,
.wooprex-show-nav-wrapper,
.wooprex-cat-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 20px;
}
@media only screen and (max-width: 575px) {
  .wooprex-nav-wrapper,
  .wooprex-show-nav-wrapper,
  .wooprex-cat-nav-wrapper {
    display: none;
  }
}

.wooprex-show-nav-wrapper .sc-btn {
  font-size: 18px !important;
  font-weight: 400 !important;
}

.wooprex-nav-wrapper {
  padding-right: 0;
  justify-content: flex-end;
}

/* SWIPERNAVIGATION */
.wooprex-swiper-navigation {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
}
.wooprex-swiper-navigation .swiper-button-prev,
.wooprex-swiper-navigation .swiper-button-next {
  margin: 0;
  position: relative;
  top: inherit;
  right: inherit;
  left: inherit;
  transform: inherit;
  width: 40px;
  height: 40px;
  color: #93c202;
  border-radius: 50%;
  border: 2px solid #93c202;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wooprex-swiper-navigation .swiper-button-prev:after,
.wooprex-swiper-navigation .swiper-button-next:after {
  font-size: 24px;
  font-family: "flaticon_pristine";
}
.wooprex-swiper-navigation .swiper-button-prev:after {
  content: "\f109";
}
.wooprex-swiper-navigation .swiper-button-next:after {
  content: "\f107";
}

/* Slider wrapper visibility */
.events-slider-wrapper {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: relative; /* keep slider in flow */
}

.events-slider-wrapper.active {
  display: block;
  opacity: 1;
}

/* TIME BOX */
.remaining-time-box {
  background: #edfecb;
  padding: 15px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.remaining-time-box p {
  font-size: 14px;
}

.remaining-time-box .countdown-values {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.remaining-time-box .countdown-values div {
  flex: 1;
  border-right: 1px solid #98a579;
}
.remaining-time-box .countdown-values div small {
  font-size: 9px;
}
.remaining-time-box .countdown-values div:last-child {
  border-right: none;
}

.remaining-time-box .countdown-values div small {
  display: block;
  font-size: 0.7em;
  font-weight: normal;
}

/* Wrapper */
.donation-progress {
  margin: 5px 0px 12px 0px;
  width: 100%;
}

.donation-progress h5 {
  font-size: 12px !important;
  font-weight: 800 !important;
  margin-bottom: 4px;
}

/* Top Amount Labels */
.donation-progress .amount-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}

/* Progress Bar Background */
.donation-progress .progress-bar {
  width: 100%;
  height: 14px;
  background: #022d1b;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  padding: 3px;
}

/* Progress Fill */
.donation-progress .progress-fill {
  display: block;
  height: 100%;
  width: 0%; /* JS will update it */
  background: #93c202; /* green progress color – change if needed */
  border-radius: 50px;
  transition: width 0.8s ease; /* smooth animation */
}

.wx-single-post {
  padding: 200px 20px 120px 20px;
}
@media only screen and (max-width: 1200px) {
  .wx-single-post {
    padding: 180px 20px 90px 20px;
  }
}
@media only screen and (max-width: 880px) {
  .wx-single-post {
    padding: 160px 20px 60px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .wx-single-post {
    padding: 125px 20px 60px 20px;
  }
}
.wx-single-post.leadership {
  padding: 0px;
}

/* RATING */
.wooprex-rating {
  margin: 0;
}
.wooprex-rating .rating-count,
.wooprex-rating .rating-number {
  font-size: 13px;
  color: #022d1b;
}

/* Add to cart */
.add_to_cart_button,
.product_type_variable,
.product_type_simple {
  text-align: center;
  height: 54px;
  border: 1px solid #93c202;
  color: #022d1b;
  padding: 0px 35px;
  background-color: transparent !important;
  transition: all 0.3s ease;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700 !important;
  font-size: 16px !important;
  gap: 0;
}
.add_to_cart_button:hover,
.product_type_variable:hover,
.product_type_simple:hover {
  background-color: #93c202 !important;
}

/* SIngle leadership */
.wooprex-leadership-banner {
  background-color: #93c202;
  padding: 0px 20px;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wooprex-leadership-banner .row {
  row-gap: 40px;
}
.wooprex-leadership-banner .leadership-text {
  padding-left: 80px;
  height: 100%;
  padding-top: 180px;
}
.wooprex-leadership-banner .leadership-text h1,
.wooprex-leadership-banner .leadership-text h2 {
  text-align: left;
  color: #f5f8ec;
}
.wooprex-leadership-banner .leadership-text h1 {
  font-size: 60px;
  font-weight: 800;
}
.wooprex-leadership-banner .leadership-text h2 {
  font-size: 55px;
  font-weight: 300;
}
@media only screen and (max-width: 1480px) {
  .wooprex-leadership-banner .leadership-text {
    padding-left: 50px;
    padding-top: 170px;
  }
  .wooprex-leadership-banner .leadership-text h1 {
    font-size: 50px;
  }
  .wooprex-leadership-banner .leadership-text h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1200px) {
  .wooprex-leadership-banner .leadership-text {
    padding-left: 20px;
    padding-top: 120px;
  }
  .wooprex-leadership-banner .leadership-text h1 {
    font-size: 50px;
  }
  .wooprex-leadership-banner .leadership-text h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1024px) {
  .wooprex-leadership-banner .leadership-text {
    padding-left: 0px;
    padding-top: 100px;
  }
  .wooprex-leadership-banner .leadership-text h1 {
    font-size: 45px;
  }
  .wooprex-leadership-banner .leadership-text h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 880px) {
  .wooprex-leadership-banner .leadership-text h1 {
    font-size: 35px;
  }
  .wooprex-leadership-banner .leadership-text h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-leadership-banner .leadership-text {
    padding-top: 0;
  }
  .wooprex-leadership-banner .leadership-text h1 {
    font-size: 28px;
    text-align: center;
  }
  .wooprex-leadership-banner .leadership-text h2 {
    font-size: 22px;
    text-align: center;
  }
}
.wooprex-leadership-banner .featured-image {
  text-align: right;
}
.wooprex-leadership-banner .featured-image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media only screen and (max-width: 1900px) {
  .wooprex-leadership-banner .featured-image img {
    width: 600px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-leadership-banner .featured-image {
    text-align: center;
  }
}

/* FORM */
.sc-contact-form {
  padding: 25px;
  background-color: #f4f7e5;
  border-radius: 30px;
  border: 1px solid #93c202;
}
@media only screen and (max-width: 767px) {
  .sc-contact-form {
    padding: 15px;
  }
}
.sc-contact-form label {
  font-size: 18px;
  font-weight: 600;
}
.sc-contact-form .sc-btn {
  width: 100%;
}
.sc-contact-form p {
  position: relative;
}
.sc-contact-form .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  right: 0;
}

.wpcf7-response-output {
  margin-bottom: 0;
}

/* Single lesdership */
.wooprex-single-leadership {
  padding: 120px 20px;
}
.wooprex-single-leadership article .post-content h1,
.wooprex-single-leadership article .post-content h2,
.wooprex-single-leadership article .post-content h3 {
  font-size: 40px;
}
.wooprex-single-leadership article .post-content h4,
.wooprex-single-leadership article .post-content h5 {
  font-size: 30px;
}
.wooprex-single-leadership article .post-content h6,
.wooprex-single-leadership article .post-content p {
  font-size: 26px;
}
@media only screen and (max-width: 1200px) {
  .wooprex-single-leadership article .post-content h1,
  .wooprex-single-leadership article .post-content h2,
  .wooprex-single-leadership article .post-content h3 {
    font-size: 33px;
  }
  .wooprex-single-leadership article .post-content h4,
  .wooprex-single-leadership article .post-content h5 {
    font-size: 26px;
  }
  .wooprex-single-leadership article .post-content h6,
  .wooprex-single-leadership article .post-content p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 880px) {
  .wooprex-single-leadership article .post-content h1,
  .wooprex-single-leadership article .post-content h2,
  .wooprex-single-leadership article .post-content h3 {
    font-size: 30px;
  }
  .wooprex-single-leadership article .post-content h4,
  .wooprex-single-leadership article .post-content h5 {
    font-size: 24px;
  }
  .wooprex-single-leadership article .post-content h6,
  .wooprex-single-leadership article .post-content p {
    font-size: 18px;
  }
}

#events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 880px) {
  #events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 575px) {
  #events-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-item {
  display: none;
}

.event-grid-buttons {
  text-align: center;
  margin-top: 40px;
}

.grid-btn {
  font-size: 20px !important;
  font-weight: 400 !important;
}

/* Single event */
.wooprex-single-event .row {
  row-gap: 20px;
}
.wooprex-single-event .head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.wooprex-single-event h5 {
  display: inline-block;
  padding: 3px 20px;
  background-color: #93c202;
  color: #022d1b;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
}
.wooprex-single-event h1 {
  text-align: center;
  font-size: 60px;
  font-weight: 800;
}
.wooprex-single-event h2,
.wooprex-single-event h3 {
  font-size: 38px;
}
.wooprex-single-event h6,
.wooprex-single-event p {
  font-size: 20px;
}
.wooprex-single-event article {
  margin-top: 50px;
}
.wooprex-single-event .featured-image {
  border-radius: 30px;
  border: 1px solid #93c202;
  overflow: hidden;
  height: 100%;
}
.wooprex-single-event .featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wooprex-single-event .single-description {
  border-radius: 30px;
  border: 1px solid #93c202;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background-color: #f4f7e5;
  gap: 30px;
}
.wooprex-single-event .single-description .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.wooprex-single-event .single-description .top span {
  background-color: #f9fbf2;
  border-radius: 30px;
  border: 1px solid #93c202;
  padding: 6px 40px;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
}
.wooprex-single-event .single-description .post-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}
.wooprex-single-event .single-description .post-content .event-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wooprex-single-event .single-description .post-content .event-details li {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.wooprex-single-event .single-description .post-content .event-details li i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c202;
}
.wooprex-single-event .single-description .post-content .sc-btn {
  font-weight: 700 !important;
  font-size: 18px !important;
}

@media only screen and (max-width: 1200px) {
  .wooprex-single-event h1 {
    font-size: 45px;
  }
  .wooprex-single-event h2,
  .wooprex-single-event h3 {
    font-size: 33px;
  }
  .wooprex-single-event h6,
  .wooprex-single-event p {
    font-size: 18px;
  }
  .wooprex-single-event .single-description {
    padding: 20px;
    gap: 20px;
  }
  .wooprex-single-event .single-description .top span,
  .wooprex-single-event .single-description .post-content .event-details li {
    font-size: 18px;
  }
  .wooprex-single-event .single-description .post-content {
    gap: 20px;
  }
  .wooprex-single-event .single-description .post-content .sc-btn {
    font-size: 16px !important;
    padding: 0px 20px !important;
  }
}
@media only screen and (max-width: 880px) {
  .wooprex-single-event h1 {
    font-size: 35px;
  }
  .wooprex-single-event h2,
  .wooprex-single-event h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .wooprex-single-event h1 {
    font-size: 28px;
  }
  .wooprex-single-event h2,
  .wooprex-single-event h3 {
    font-size: 20px;
  }
  .wooprex-single-event h6,
  .wooprex-single-event p {
    font-size: 16px;
  }
  .wooprex-single-event .single-description .top span,
  .wooprex-single-event .single-description .post-content .event-details li {
    font-size: 16px;
  }
}
#donations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 880px) {
  #donations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 575px) {
  #donations-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.donation-grid-buttons {
  text-align: center;
  margin-top: 40px;
}

/* Single donations */
.wooprex-single-donations .row {
  row-gap: 20px;
}
.wooprex-single-donations h1 {
  text-align: center;
  font-size: 48px;
}
.wooprex-single-donations h2 {
  font-size: 38px;
  max-width: 600px;
}
.wooprex-single-donations h3 {
  font-size: 20px;
  font-weight: 700;
}
.wooprex-single-donations h6,
.wooprex-single-donations p {
  font-size: 20px;
}
.wooprex-single-donations article {
  margin-top: 60px;
}
.wooprex-single-donations article .post-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wooprex-single-donations article .post-content .top {
  padding: 25px;
  border: 1px solid #93c202;
  border-radius: 30px;
  background-color: #f4f7e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wooprex-single-donations .billing-form {
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #93c202;
  border-radius: 30px;
}
@media only screen and (max-width: 880px) {
  .wooprex-single-donations .billing-form {
    padding: 20px 15px;
  }
}
.wooprex-single-donations .billing-form label {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}
.wooprex-single-donations .billing-form input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #93c202;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}
.wooprex-single-donations .billing-form input[type=checkbox]:before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #022d1b;
  display: none;
  background-color: transparent;
}
.wooprex-single-donations .billing-form input[type=checkbox]:checked {
  background-color: #93c202;
}
.wooprex-single-donations .billing-form input[type=checkbox]:checked:before {
  display: block;
}
.wooprex-single-donations .billing-form p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.wooprex-single-donations .billing-form p label {
  padding-left: 0px;
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: 700;
}
.wooprex-single-donations .billing-form #amount {
  background-color: #022d1b;
  height: 60px;
  border-radius: 20px;
  color: #f5f8ec;
  font-size: 40px;
  font-weight: 600;
  text-align: right;
  -moz-appearance: textfield;
}
.wooprex-single-donations .billing-form #amount::-webkit-inner-spin-button, .wooprex-single-donations .billing-form #amount::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.wooprex-single-donations .billing-form #amount::-moz-placeholder {
  color: #f5f8ec;
}
.wooprex-single-donations .billing-form #amount::placeholder {
  color: #f5f8ec;
}
@media only screen and (max-width: 880px) {
  .wooprex-single-donations .billing-form #amount {
    font-size: 30px;
  }
}
.wooprex-single-donations .billing-form .example-number {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.wooprex-single-donations .billing-form .example-number span {
  border-radius: 10px;
  background-color: #98a579;
  border: 1px solid #93c202;
  color: #f5f8ec;
  padding: 12px 15px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wooprex-single-donations .billing-form .example-number span.active, .wooprex-single-donations .billing-form .example-number span:hover {
  background-color: #93c202;
  color: #022d1b;
}
@media only screen and (max-width: 880px) {
  .wooprex-single-donations .billing-form .example-number span {
    font-size: 12px;
  }
}
.wooprex-single-donations .billing-form .sc-btn {
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .wooprex-single-donations h1 {
    font-size: 40px;
  }
  .wooprex-single-donations h2 {
    font-size: 33px;
  }
}
.wooprex-single-thank-you .head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wooprex-single-thank-you p.text {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}
.wooprex-single-thank-you p.text a:hover {
  color: #93c202;
}
@media only screen and (max-width: 1200px) {
  .wooprex-single-thank-you p.text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 880px) {
  .wooprex-single-thank-you p.text {
    font-size: 20px;
  }
}
.wooprex-single-thank-you .transaction-details {
  margin: 60px 0px;
  padding: 30px 30px 100px 30px;
  border: 1px solid #93c202;
  border-radius: 30px;
  background-color: #f4f7e5;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 880px) {
  .wooprex-single-thank-you .transaction-details {
    padding: 20px 20px 80px 20px;
    margin: 40px 0px;
  }
}
.wooprex-single-thank-you .transaction-details .top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.wooprex-single-thank-you .transaction-details .top .top-right {
  text-align: right;
}
.wooprex-single-thank-you .transaction-details .top h2 {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .wooprex-single-thank-you .transaction-details .top h2 {
    font-size: 18px;
  }
}
.wooprex-single-thank-you .transaction-date {
  font-weight: 700;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .wooprex-single-thank-you .transaction-date {
    font-size: 18px;
  }
}
.wooprex-single-thank-you .donation-details {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
.wooprex-single-thank-you .donation-details p {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
}
.wooprex-single-thank-you .donation-details p strong {
  font-weight: 600;
  font-size: 18px;
}
.wooprex-single-thank-you .donation-details p span {
  padding: 7px 80px;
  background: #f9fbf2;
  display: inline-flex;
  border: 1px solid #93c202;
  border-radius: 30px;
  font-weight: 700;
  font-size: 20px;
}

/* GALLERY */
.sc-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  width: 100%;
  height: 100%;
}
.sc-gallery a img {
  transition: all 0.3s ease;
}
.sc-gallery a:hover img {
  transform: scale(1.05);
}

/* BODY RIGHT TO LEFT */
body.rtl select {
  background-position: center left 11px;
}
body.rtl .wooprex-swiper-navigation {
  flex-direction: row-reverse;
}
body.rtl footer.wooprex-footer-section .bg-shape {
  right: inherit;
  left: 60px;
}
body.rtl footer.wooprex-footer-section .footer-bottom .wooprex-footer-menu ul li a::after {
  margin-left: 0px;
  margin-right: 5px;
}
@media only screen and (min-width: 1281px) {
  body.rtl .sc-custom-padding {
    padding-left: inherit !important;
    padding-right: 20px !important;
  }
  body.rtl .sc-custom-padding-right {
    padding-left: 20px !important;
    padding-right: inherit !important;
  }
}
@media only screen and (min-width: 1250px) {
  body.rtl .sc-custom-padding {
    padding-left: inherit !important;
    padding-right: calc((100% - 1250px) / 2) !important;
  }
  body.rtl .sc-custom-padding-right {
    padding-left: calc((100% - 1250px) / 2) !important;
    padding-right: inherit;
  }
}

/*-- Responsive styles -- */
/* -- Wooprex - Media Queries -- */
@media only screen and (max-width: 1280px) {
  header.wooprex-header-section .header-main .header-left {
    gap: 20px;
  }
  .wooprex-desktop-menu ul.box-nav {
    gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-logo .logo {
    max-width: 200px;
  }
  .wooprex-desktop-menu ul.box-nav {
    gap: 20px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
    right: inherit;
    left: -220px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
    left: -250px;
  }
}
@media only screen and (min-width: 1071px) {
  .wooprex-mobile-menu {
    display: none;
  }
}
@media only screen and (max-width: 1070px) {
  .wooprex-desktop-menu {
    display: none;
  }
  .wooprex-mobile-menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header.wooprex-header-section .header-main .header-left {
    width: 90%;
  }
  header.wooprex-header-section .header-main .header-right {
    display: flex;
    width: 10%;
    align-items: center;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 1024px) {
  header.wooprex-header-section {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-top {
    padding-top: 80px;
  }
  .padding-bottom {
    padding-bottom: 80px;
  }
  .header-logo .logo {
    max-width: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-y {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .padding-top {
    padding-top: 60px;
  }
  .padding-bottom {
    padding-bottom: 60px;
  }
  .wooprex-mobile-menu-bar i {
    font-size: 26px;
  }
  /* HEADER */
  header.wooprex-header-section .header-main .header-left {
    padding: 15px 12px;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper {
    padding: 7px 0px;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper .badge {
    top: 2px;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.mobile {
    display: flex !important;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.desktop {
    display: none !important;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.auth {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header-logo .logo {
    max-width: 140px;
  }
  .wooprex-mobile-menu-bar i {
    font-size: 20px;
  }
  header.wooprex-header-section {
    padding: 25px 15px;
  }
  header.wooprex-header-section .header-main .header-left {
    width: 85%;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right {
    gap: 12px;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper {
    padding: 0px 0px;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper img {
    width: 20px;
    display: block;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .cart a.cart-wrapper .badge {
    top: -7px;
  }
  header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.account a.account-wrapper {
    font-size: 21px;
  }
  header.wooprex-header-section .header-main .header-right {
    width: 15%;
  }
}
@media only screen and (max-width: 370px) {
  .header-logo .logo {
    max-width: 125px;
  }
}
@media only screen and (max-width: 326px) {
  /* HEADER */
  header.wooprex-header-section .header-main .header-left .header-inner-right .button-wrapper.account a.account-wrapper {
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */