:root {
  --wp--preset--aspect-ratio--square: 1;
  --wp--preset--aspect-ratio--4-3: 4/3;
  --wp--preset--aspect-ratio--3-4: 3/4;
  --wp--preset--aspect-ratio--3-2: 3/2;
  --wp--preset--aspect-ratio--2-3: 2/3;
  --wp--preset--aspect-ratio--16-9: 16/9;
  --wp--preset--aspect-ratio--9-16: 9/16;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(
    135deg,
    rgba(6, 147, 227, 1) 0%,
    rgb(155, 81, 224) 100%
  );
  --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(
    135deg,
    rgb(122, 220, 180) 0%,
    rgb(0, 208, 130) 100%
  );
  --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(
    135deg,
    rgba(252, 185, 0, 1) 0%,
    rgba(255, 105, 0, 1) 100%
  );
  --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(
    135deg,
    rgba(255, 105, 0, 1) 0%,
    rgb(207, 46, 46) 100%
  );
  --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(
    135deg,
    rgb(238, 238, 238) 0%,
    rgb(169, 184, 195) 100%
  );
  --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(
    135deg,
    rgb(74, 234, 220) 0%,
    rgb(151, 120, 209) 20%,
    rgb(207, 42, 186) 40%,
    rgb(238, 44, 130) 60%,
    rgb(251, 105, 98) 80%,
    rgb(254, 248, 76) 100%
  );
  --wp--preset--gradient--blush-light-purple: linear-gradient(
    135deg,
    rgb(255, 206, 236) 0%,
    rgb(152, 150, 240) 100%
  );
  --wp--preset--gradient--blush-bordeaux: linear-gradient(
    135deg,
    rgb(254, 205, 165) 0%,
    rgb(254, 45, 45) 50%,
    rgb(107, 0, 62) 100%
  );
  --wp--preset--gradient--luminous-dusk: linear-gradient(
    135deg,
    rgb(255, 203, 112) 0%,
    rgb(199, 81, 192) 50%,
    rgb(65, 88, 208) 100%
  );
  --wp--preset--gradient--pale-ocean: linear-gradient(
    135deg,
    rgb(255, 245, 203) 0%,
    rgb(182, 227, 212) 50%,
    rgb(51, 167, 181) 100%
  );
  --wp--preset--gradient--electric-grass: linear-gradient(
    135deg,
    rgb(202, 248, 128) 0%,
    rgb(113, 206, 126) 100%
  );
  --wp--preset--gradient--midnight: linear-gradient(
    135deg,
    rgb(2, 3, 129) 0%,
    rgb(40, 116, 252) 100%
  );
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
  --wp--preset--spacing--20: 0.44rem;
  --wp--preset--spacing--30: 0.67rem;
  --wp--preset--spacing--40: 1rem;
  --wp--preset--spacing--50: 1.5rem;
  --wp--preset--spacing--60: 2.25rem;
  --wp--preset--spacing--70: 3.38rem;
  --wp--preset--spacing--80: 5.06rem;
  --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
  --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
  --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1),
    6px 6px rgba(0, 0, 0, 1);
  --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}
:where(.is-layout-flex) {
  gap: 0.5em;
}
:where(.is-layout-grid) {
  gap: 0.5em;
}
body .is-layout-flex {
  display: flex;
}
.is-layout-flex {
  flex-wrap: wrap;
  align-items: center;
}
.is-layout-flex > :is(*, div) {
  margin: 0;
}
body .is-layout-grid {
  display: grid;
}
.is-layout-grid > :is(*, div) {
  margin: 0;
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}
:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}
.has-black-color {
  color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-color {
  color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-color {
  color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-color {
  color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-color {
  color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-color {
  color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-color {
  color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-color {
  color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-color {
  color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-color {
  color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-color {
  color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-color {
  color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-background-color {
  background-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-background-color {
  background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-background-color {
  background-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-background-color {
  background-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-background-color {
  background-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-background-color {
  background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-background-color {
  background-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-background-color {
  background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-background-color {
  background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-background-color {
  background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-background-color {
  background-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-black-border-color {
  border-color: var(--wp--preset--color--black) !important;
}
.has-cyan-bluish-gray-border-color {
  border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}
.has-white-border-color {
  border-color: var(--wp--preset--color--white) !important;
}
.has-pale-pink-border-color {
  border-color: var(--wp--preset--color--pale-pink) !important;
}
.has-vivid-red-border-color {
  border-color: var(--wp--preset--color--vivid-red) !important;
}
.has-luminous-vivid-orange-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}
.has-luminous-vivid-amber-border-color {
  border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}
.has-light-green-cyan-border-color {
  border-color: var(--wp--preset--color--light-green-cyan) !important;
}
.has-vivid-green-cyan-border-color {
  border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}
.has-pale-cyan-blue-border-color {
  border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}
.has-vivid-cyan-blue-border-color {
  border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}
.has-vivid-purple-border-color {
  border-color: var(--wp--preset--color--vivid-purple) !important;
}
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: var(
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple
  ) !important;
}
.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: var(
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan
  ) !important;
}
.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: var(
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange
  ) !important;
}
.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: var(
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red
  ) !important;
}
.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: var(
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray
  ) !important;
}
.has-cool-to-warm-spectrum-gradient-background {
  background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}
.has-blush-light-purple-gradient-background {
  background: var(--wp--preset--gradient--blush-light-purple) !important;
}
.has-blush-bordeaux-gradient-background {
  background: var(--wp--preset--gradient--blush-bordeaux) !important;
}
.has-luminous-dusk-gradient-background {
  background: var(--wp--preset--gradient--luminous-dusk) !important;
}
.has-pale-ocean-gradient-background {
  background: var(--wp--preset--gradient--pale-ocean) !important;
}
.has-electric-grass-gradient-background {
  background: var(--wp--preset--gradient--electric-grass) !important;
}
.has-midnight-gradient-background {
  background: var(--wp--preset--gradient--midnight) !important;
}
.has-small-font-size {
  font-size: var(--wp--preset--font-size--small) !important;
}
.has-medium-font-size {
  font-size: var(--wp--preset--font-size--medium) !important;
}
.has-large-font-size {
  font-size: var(--wp--preset--font-size--large) !important;
}
.has-x-large-font-size {
  font-size: var(--wp--preset--font-size--x-large) !important;
}
:where(.wp-block-post-template.is-layout-flex) {
  gap: 1.25em;
}
:where(.wp-block-post-template.is-layout-grid) {
  gap: 1.25em;
}
:where(.wp-block-columns.is-layout-flex) {
  gap: 2em;
}
:where(.wp-block-columns.is-layout-grid) {
  gap: 2em;
}
:root :where(.wp-block-pullquote) {
  font-size: 1.5em;
  line-height: 1.6;
}

/*! This file is auto-generated */
.wp-block-button__link {
  color: #fff;
  background-color: #32373c;
  border-radius: 9999px;
  box-shadow: none;
  text-decoration: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
}
.wp-block-file__button {
  background: #32373c;
  color: #fff;
  text-decoration: none;
}

.site-content {
  margin-bottom: 0px;
}
[class*="wd-section-stretch"].wd-negative-gap {
  padding-right: 0;
  padding-left: 0;
}
.wd-swatch.wd-bg.wd-disabled {
  display: none;
}
.iconic-was-swatches__item {
  margin: 0 !important;
}
.iconic-was-swatch--disabled {
  display: none !important;
}
.iconic-was-swatches--border.iconic-was-swatches--visual .iconic-was-swatch {
  padding: 4px;
  display: inline-block;
  margin: 0 10px 10px 0;
  vertical-align: top;
  line-height: 0;
}
li.iconic-was-swatches__label {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin-bottom: 2%;
}
strong,
b {
  font-weight: bold !important;
}
.new .wd-product-cats {
  display: none;
}
.whb-sticked .whb-color-light:not(.whb-with-bg) {
  background-color: #000 !important;
}
h2.yikes-custom-woo-tab-title {
  display: none;
}
span.tagged_as {
  display: none;
}
table.variations tr {
  border: 1px solid #ccc;
  padding: 2%;
  border-radius: 3px;
}
table.variations .cell {
  padding: 0 0 0px 0;
}
.iconic-was-swatches {
  margin: 13px 0 11px;
}
.iconic-was-swatches--text-swatch .iconic-was-swatch--selected,
.iconic-was-swatches--text-swatch .iconic-was-swatch--selected:hover {
  background: #9e9e9e;
  border-color: #9e9e9e;
  color: #fff !important;
}
.iconic-was-swatches--text-swatch .iconic-was-swatch {
  margin-right: 9px !important;
  margin-bottom: 9px !important;
}
.single_add_to_cart_button {
  border: 1px solid #000;
}
@media (min-width: 1025px) {
  .whb-sticked .whb-general-header-inner {
    height: auto;
    max-height: 100%;
  }
}
.product_meta {
  display: none;
}
.summary-inner > .price {
  font-size: 25px;
  line-height: 1.2;
}
.woocommerce-variation-price .price {
  font-size: 20px;
}
ul.iconic-was-swatches.iconic-was-swatches--loop.iconic-was-swatches--image-swatch.iconic-was-swatches--border.iconic-was-swatches--visual.iconic-was-swatches--tooltips.iconic-was-swatches--square.iconic-was-swatches--stacked {
  display: none;
}
.page-title-default {
  background-image: none;
}
.wd-hover-standard .wd-add-btn {
  display: none !important;
}
.wd-notice.wd-info {
  display: none;
}
.iconic-was-swatches--text-swatch .iconic-was-swatch--selected {
  background: #8c8c8c !important;
}
.whb-sticked .whb-color-light:not(.whb-with-bg) {
  background-color: transparent !important;
}
.whb-sticky-shadow.whb-sticked .whb-main-header {
  box-shadow: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  background: black;
  color: white;
}
.page-title-default {
  display: none;
}
.whb-header {
  margin-bottom: 100px;
}
.archive .whb-header {
  margin-bottom: 40px;
}
.whb-overcontent .whb-main-header {
  background: linear-gradient(
    0deg,
    rgba(38, 22, 10, 0) 0%,
    rgb(38, 22, 10) 100%
  ) !important;
}
/* .woocommerce-Price-currencySymbol{
         display: none;
         }
         */
/* Make the paragraph element a flex container */
.p11 {
  display: flex;
  align-items: center; /* Vertically center align items */
}
/* Apply styles to the email input */
.p11 .wpcf7-email {
  flex: 1; /* Takes up available space */
  margin-right: 10px; /* Adds some space between the email input and the submit button */
}
/* Apply styles to the submit button */
.p11 .wpcf7-submit {
  margin-left: 10px; /* Adds some space between the email input and the submit button */
}
table.variations .cell {
  padding: 0 !important;
}
.whb-clone,
.whb-sticked .whb-main-header {
  background: linear-gradient(
    0deg,
    rgba(38, 22, 10, 0) 0%,
    rgb(38, 22, 10) 100%
  ) !important;
}
@media only screen and (min-width: 1124px) {
  [class*="wd-header-search-form"] input[type="text"] {
    max-width: 290px;
    border-radius: 20px;
  }
  .searchform .searchsubmit {
    right: 207px !important;
    width: 50px;
  }
}
.whb-color-light:not(.whb-with-bg) {
  background-color: transparent !important;
}
.whb-main-header {
  background: linear-gradient(
    0deg,
    rgba(38, 22, 10, 0) 0%,
    rgb(38, 22, 10) 100%
  ) !important;
}
.home .whb-color-light:not(.whb-with-bg) {
  background-color: transparent !important;
}
.wd-header-cart.wd-design-2 .wd-cart-number,
.wd-header-cart.wd-design-5 .wd-cart-number {
  background-color: rgb(255 255 255) !important;
  color: #000 !important;
}
/* Assuming the swatch's container is .iconic-was-swatch */
.iconic-was-swatch {
  position: relative;
  display: inline-block; /* Ensure that the swatch behaves as a container for the absolutely positioned text */
}
.iconic-was-swatch__large-preview {
  width: 215px;
  height: 215px;
  background-color: #000;
  display: none;
}
span.iconic-was-swatch__text {
  display: block !important;
  position: absolute;
  top: 95px; /* Adjust as necessary to position the title below the swatch */
  left: 0; /* Full width starts from the left edge */
  width: 100%; /* Makes the title span the full width of the swatch */
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0; /* Padding only on top and bottom for full width */
  text-align: center; /* Center the text within the full width */
}
.iconic-was-swatches--image-swatch .iconic-was-swatches__item {
  margin: 0 !important;
  height: 185px;
}
.wc-tab-inner li > ul,
.wc-tab-inner li > ol {
  list-style: circle !important;
}
.hh1 .btn.btn-style-link {
  background-color: #fffdfd !important;
  color: #8d8d8d !important;
}
.wd-entry-meta,
.hovered-social-icons:after {
  display: none !important;
}
.meta-post-categories.wd-post-cat.wd-style-with-bg {
  display: none !important;
}
.blog-design-chess:nth-child(even).has-post-thumbnail .post-date,
.blog-design-masonry.has-post-thumbnail .post-date,
.wd-post-date.wd-style-with-bg {
  display: none !important ;
}
.related-products {
  display: none;
}
.related-and-upsells > div:not(:last-child) {
  margin-bottom: var(--wd-single-spacing);
  padding: 40px 0;
}
.hotspot-content-text.wd-more-desc.set-cont-mb-s.reset-last-child.wd-more-desc-calculated,
.hotspot-content :is(.add_to_cart_button, .product_type_variable) {
  display: none !important ;
}
/* Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .variations_form a.reset_variations {
    margin-top: -128px !important;
    margin-left: 20px;
  }
}
.cart-actions .button[name="update_cart"],
.cart-totals-inner .shipping-calculator-form .button {
  background-color: #000000;
}
@media only screen and (max-width: 767px) {
  .variations_form a.reset_variations {
    margin-top: -128px !important;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 1180px) {
  .btn23 a {
    width: 110px !important;
  }
}
@media (max-width: 768.98px) {
  .product_title {
    font-size: 33px !important;
  }
  .summary-inner > .price {
    font-size: 16px !important;
  }
}
.col-right.set-cont-mb-s.reset-last-child {
  display: none !important;
}
.btn2 {
  background: #000 !important;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 18px;
  background-color: #f3f3f3;
  color: #3e3e3e;
  border: 1px solid #000;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: 0px solid transparent;
  border-radius: 0;
  box-shadow: none;
  flex: 0 0 auto !important;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  color: #fff;
}
.wd-star-rating {
  display: none;
}
/* remove the standard size */
.postid-19514 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-19514 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14495 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14495 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14519 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14519 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14853 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14853 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-22405 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-22405 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14694 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14694 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14525 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14525 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14566 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14566 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14711 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14711 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14724 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14724 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14730 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14730 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14740 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14740 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14745 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14745 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14756 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14756 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14769 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14769 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14780 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14780 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14798 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14798 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14828 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14828 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14810 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14810 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14816 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14816 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14882 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14882 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14888 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14888 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14913 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14913 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14926 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14926 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14947 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14947 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-19482 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-19482 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14963 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14963 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14979 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14979 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14991 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14991 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-15004 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-15004 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-15016 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-15016 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-15032 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-15032 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-15050 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-15050 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14375 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14375 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14484 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14484 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13760 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13760 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13556 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13556 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-22397 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-22397 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13579 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13579 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13595 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13595 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-19547 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-19547 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13606 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13606 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13618 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13618 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13630 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13630 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13637 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13637 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13653 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13653 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-13659 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-13659 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14277 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14277 .variations tr:nth-child(1) .iconic-was-attr-label-sep,
.postid-14864 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-22617 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-22625 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-22633 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-22574 .variations tr:nth-child(1) .iconic-was-chosen-attribute,
.postid-14864 .variations tr:nth-child(1) .iconic-was-attr-label-sep {
  display: none;
}
/* Remove cart update button */
.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
  display: none;
}
/* Code To Remove URL Field from comments - 
         */
.comment-form #url {
  display: none;
}
.wa__btn_popup_txt {
  display: none !important;
}
.wa__btn_popup .wa__btn_popup_icon {
  height: 40px;
  width: 40px;
}
.wa__btn_popup .wa__btn_popup_icon:before {
  -webkit-background-size: 20px auto;
  -moz-background-size: 20px auto;
  z-index: 1;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 83px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .sticky-toolbar-on .scrollToTop {
    bottom: 160px;
  }
  .wa__btn_popup {
    bottom: 100px !important;
  }
}
/* @media (min-width: 1024px) {
         a.scrollToTop.button-show,
         .wa__widget_container {
         display: none !important;
         }
         }
         */
.term-description h1.elementor-heading-title.elementor-size-default {
  margin-bottom: 0;
}
.term-description .elementor-widget-text-editor {
  margin-bottom: 30px;
}

.whb-sticked .whb-general-header .wd-dropdown {
  margin-top: 10px;
}
.whb-sticked .whb-general-header .wd-dropdown:after {
  height: 20px;
}
.whb-header-bottom .wd-dropdown {
  margin-top: 6px;
}
.whb-header-bottom .wd-dropdown:after {
  height: 16px;
}
.whb-sticked .whb-header-bottom .wd-dropdown {
  margin-top: 6px;
}
.whb-sticked .whb-header-bottom .wd-dropdown:after {
  height: 16px;
}
.whb-header .whb-header-bottom .wd-header-cats {
  margin-top: -0px;
  margin-bottom: -0px;
  height: calc(100% + 0px);
}
@media (min-width: 1025px) {
  .whb-general-header-inner {
    height: 105px;
    max-height: 105px;
  }
  .whb-sticked .whb-general-header-inner {
    height: 60px;
    max-height: 60px;
  }
  .whb-header-bottom-inner {
    height: 52px;
    max-height: 52px;
  }
  .whb-sticked .whb-header-bottom-inner {
    height: 52px;
    max-height: 52px;
  }
  .wd-header-overlap .title-size-small {
    padding-top: 177px;
  }
  .wd-header-overlap .title-size-default {
    padding-top: 217px;
  }
  .wd-header-overlap .title-size-large {
    padding-top: 257px;
  }
  .wd-header-overlap .without-title.title-size-small {
    padding-top: 157px;
  }
  .wd-header-overlap .without-title.title-size-default {
    padding-top: 192px;
  }
  .wd-header-overlap .without-title.title-size-large {
    padding-top: 217px;
  }
  .single-product .whb-overcontent:not(.whb-custom-header) {
    padding-top: 157px;
  }
}
@media (max-width: 1024px) {
  .whb-general-header-inner {
    height: 60px;
    max-height: 60px;
  }
  .whb-header-bottom-inner {
    height: 52px;
    max-height: 52px;
  }
  .wd-header-overlap .page-title {
    padding-top: 1px;
  }
  .wd-header-overlap .without-title.title-shop {
    padding-top: 112px;
  }
  .single-product .whb-overcontent:not(.whb-custom-header) {
    padding-top: 112px;
  }
}
.whb-general-header {
  border-bottom-width: 0px;
  border-bottom-style: solid;
}
.whb-header-bottom {
  border-bottom-width: 0px;
  border-bottom-style: solid;
}

.elementor-4400 .elementor-element.elementor-element-65c05ac {
  font-size: 18px;
}

.elementor-4400 .elementor-element.elementor-element-e6779bf {
  font-size: 18px;
}

.font-18 {
  font-size: 18px;
}

input {
  width: 100%;
  margin-top: 10px !important;
  padding: 10px !important;
  text-align: left !important;
  border: 1px solid #000;
}

input:focus {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.textheading {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.margin-top {
  margin-top: 10px;
}

.submit__generated {
  display: inline-block;
}
.submit__generated span {
  display: inline-block;
  width: 50px;
  height: 40px;
  vertical-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.submit__generated.valid:after,
.submit__generated.unvalid:after {
  font-family: FontAwesome;
  font-size: 18px;
  margin-left: 10px;
}
.submit__generated.valid:after {
  content: "";
  color: #2ecc71;
}
.submit__generated.valid .submit__input {
  border: 1px solid #2ecc71;
  color: #2ecc71 !important;
}
.submit__generated.unvalid:after {
  content: "";
  color: #e74c3c;
}
.submit__generated.unvalid .submit__input {
  border: 1px solid #e74c3c;
  color: #e74c3c;
}
.submit__generated .submit__input {
  position: relative;
  outline: 0;
  height: 45px;
  width: 65px;
  border-radius: 4px;
  border: 1px solid #42a0dd;
  color: #42a0dd;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  top: -2px;
}

i.fa-refresh {
  margin: 4px 0 0px 5px;
  padding: 5px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}
i.fa-refresh:hover {
  color: rgba(0, 0, 0, 0.4);
  transform: rotate(180deg);
}

span.submit__error,
span.submit__error--empty {
  color: #e74c3c;
  position: absolute;
  margin-top: 0px;
  margin-left: 100px;
}

.submit {
  display: block;
  margin: 50px 0;
  padding: 7px 15px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none;
  border: 0;
  background-color: #42a0dd;
  background-clip: padding-box;
  border-radius: 3px;
  box-shadow: 0 4px 0 #2c81ba;
  opacity: 1;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.submit:hover {
  background-color: #3498db;
}
.submit:active,
.submit.enter-press,
.submit.overlay {
  margin: 55px 0 46px 0;
  box-shadow: none;
}

.submit__overlay {
  height: 70px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  margin-top: -90px;
  margin-left: 0px;
}

.low-opa {
  opacity: 0.4;
}

.fadeOut {
  opacity: 0;
  transform: translateY(10px);
}

.fadeIn {
  opacity: 1 !important;
  transform: translateY(0px) !important;
}

.form-fields,
.form-success {
  transition: all 0.2s ease-out;
}

.form-success {
  opacity: 0;
  transform: translateY(-10px);
  margin-top: 20px;
}

.captcha-heading {
  font-size: 20px;
  color: #ff1818;
  font-weight: 600;
}

.hide {
  display: none;
}

.box h2 {
  margin: 15px;
}

.box {
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  padding: 10px;
}

.projects {
  padding: 60px 0;
}

.products {
  border: 1px solid #ccc;
}

.products h3 {
  padding-top: 20px;
  font-size: 20px;
}

/*******************
Feature 41
*******************/
.wrap-feature41-box .f41-tab {
  display: block;
}

.wrap-feature41-box .f41-tab li a {
  display: flex;
  margin-bottom: 20px;
  padding: 12px 24px;
  border: 1px solid #ed3237;
}

.wrap-feature41-box .f41-tab li a .t-icon {
  margin-right: 25px;
  color: #8d97ad;
}

.wrap-feature41-box .f41-tab li a h5 {
  font-weight: 500;
}

.wrap-feature41-box .f41-tab li a h6 {
  font-size: 14px;
  margin-bottom: 0px;
}

.wrap-feature41-box .f41-tab li a.active,
.wrap-feature41-box .f41-tab li a:hover {
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.wrap-feature41-box .f41-tab li a.active .t-icon,
.wrap-feature41-box .f41-tab li a:hover .t-icon {
  background: #00b4ff;
  background: -webkit-linear-gradient(
    legacy-direction(to right),
    #00b4ff 0%,
    #00b4ff 100%
  );
  background: linear-gradient(to right, #00b4ff 0%, #00b4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.footer-product {
  margin: 50px 0;
  position: relative;
  /* z-index: 9; */
}
.footer-product span {
  background: #066606;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: block;
}
.footer-product span {
}

.footer-product ul {
  padding-left: 0;
}

.footer-product ul li {
  list-style-type: none;
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}
.footer-product ul li::before {
  content: "";
  height: 12px;
  width: 12px;
  display: block;
  background: #ffd208;
  position: absolute;
  top: 8px;
  left: 0px;
  border-radius: 50%;
  border: 2px solid #ff6600;
}
.footer-product ul li a {
  color: #131e4a;
}

.footer-product ul li a {
  color: #131e4a;
  font-size: 14px;
  font-weight: 700;
}
.footer-product ul li a i {
  margin-right: 10px;
}

.footer-product span.location {
  font-size: 22px;
  background: no-repeat;
  color: #061e75;
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
  text-align: left;
}

.footerPro {
  display: none;
}

.footerPro.mystyle {
  display: flex;
}

.forproduct {
  padding: 80px 0;
}

.product-pic {
  margin-bottom: 20px;
}

.forHeadingOne {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  background: #f3f3f3;
  padding: 18px;
  border-bottom: 2px solid #f59128;
  border-radius: 3px;
  color: #ff6600;
}

.forHeadingTwo {
  font-size: 22px !important;
  margin-bottom: 15px !important;
  line-height: 32px !important;
  color: #ff6600;
  background: #f7f1f1;
  padding: 10px;
  border-left: 2px solid #f59128;
  border-radius: 3px;
  margin-top: 20px;
}

.forproduct-pe {
  margin: 80px 0 0 0;
}

.for-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
}

.for-text strong {
  font-weight: 800;
}

.product-list-li ul li {
  list-style-type: none;
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.product-list-li ul li::before {
  content: "";
  height: 12px;
  width: 12px;
  display: block;
  background: #009444;
  position: absolute;
  top: 7px;
  left: 0px;
  border-radius: 50%;
  border: 2px solid #ff6600;
}

.product-pic {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.product-pic img {
  width: 100%;
}

.accro .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  margin-bottom: 10px;
  font-weight: 400;
}

.accro .active,
.accordion:hover {
  background-color: #ccc;
}

.accro .accordion:after {
  content: "\002B";
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accro .active:after {
  content: "\2212";
}

.accro .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.title-heading {
  font-size: 46px;
}

.product-list-li ul li h3 {
  font-size: 20px;
  margin-bottom: 3px;
}

.product-list-li ul li h4 {
  font-size: 18px;
  margin-bottom: 3px;
}


table.table.table-bordered.table-striped thead {
  border: 1px solid #747474;
}


.for-brand {
    /* padding: 250px 0; */
    background: #383838;
    position: relative;
}

.for-brand::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: #0000009e;
}

.auto-container {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.page-title h1 {
    position: relative;
    display: block;
    font-size: 36px;
    color: #ffffff;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 0;
}
.page-title span {
    position: relative;
    display: block;
    font-size: 36px;
    color: #ffffff;
    line-height: 50px;
    font-weight: 500;
    margin-bottom: 0;
}
.page-title .bread-crumb {
    position: relative;
    float: none;
    padding-top: 20px !important;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title .bread-crumb li {
    position: relative;
    float: left;
    font-size: 18px;
    line-height: 30px;
    color: #ed3237 !important;
    font-weight: 700;
    text-transform: capitalize;
    cursor: default;
    padding-right: 10px;
    margin-right: 10px;
    margin-bottom: 0;
    list-style-type:none ;
}

.page-title .bread-crumb li:before {
    position: absolute;
    right: -2px;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    content: "-";
}

.page-title .bread-crumb li:last-child:before {
    display: none;
}

.page-title .bread-crumb li a {
    color: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.page-title .bread-crumb li a:hover {
    color: #ed3237;
}

.mb-3 {
 margin-bottom: 10px;
}


.circle {
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px #009ee066;
  position: fixed;
  right: 20px;
  bottom: 30%;
  z-index: 9999;
}

.circle1 {
  border-radius: 50%;
  box-shadow: 0px 0px 2px 2px #009ee066;
  position: fixed;
  right: 20px;
  bottom: 20%;
  z-index: 9999;
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
      box-shadow: 0 0 0 0px #009ee066;
  }
  100% {
      box-shadow: 0 0 0 20px #009ee066;
  }
}
.sub-menu li{
  border-bottom: 1px dotted;
}

.h2-style{
  color: #fff !important;
}
.widgt ul{
  background-color: #e8f2fb;
  padding: 5px;
}
.widgt ul li{
  background-color: #e8f2fb;
  padding: 5px;
}
.iframe-style{
  border-radius: 20px 0px 20px 0px;
}

@media screen and (max-width: 600px) {
  .elementor-widget-image img {
    vertical-align: middle;
    display: inline-block;
    height: 300px !important;
}
}
