/**
* Custom styles for the theme
* Here you can override any custom property that's already been set (ie. from Bootstrap)
* Or define your own.
**/ :root {
  --bs-primary: #B4D44D;
  --bs-primary-50: #F8FBED;
  --bs-primary-100: #EEF6D3;
  --bs-primary-200: #E1F0B0;
  --bs-primary-300: #D2E594;
  --bs-primary-400: #CBE182;
  --bs-primary-500: #B4D44D;
  --bs-primary-600: #94B52C;
  --bs-primary-700: #6A811F;
  --bs-primary-800: #424143;
  --bs-primary-900: #2D2C2F;
  --bs-secondary: #F3BA47;
  --bs-secondary-50: #FEFAF1;
  --bs-secondary-100: #FDF4E3;
  --bs-secondary-200: #FAE4B8;
  --bs-secondary-300: #F8D58E;
  --bs-secondary-400: #F6CA71;
  --bs-secondary-500: #F3BA47;
  --bs-secondary-600: #BC810C;
  --bs-secondary-700: #A16F0A;
  --bs-secondary-800: #503705;
  --bs-secondary-900: #1B1202;
  --bs-tertiary-50: #F7FCFE;
  --bs-tertiary-100: #EEF8FE;
  --bs-tertiary-200: #DDF1FD;
  --bs-tertiary-300: #CCEAFB;
  --bs-tertiary-400: #B3E0F9;
  --bs-tertiary-500: #91D2F7;
  --bs-tertiary-600: #62B2E0;
  --bs-tertiary-700: #0C608F;
  --bs-tertiary-800: #063651;
  --bs-tertiary-900: #031B29;
  --bs-neutral-50: #FAFAFA;
  --bs-neutral-100: #F5F5F5;
  --bs-neutral-200: #E5E5E5;
  --bs-neutral-300: #D6D6D6;
  --bs-neutral-400: #A3A3A3;
  --bs-neutral-500: #525252;
  --bs-neutral-600: #4E4E4E;
  --bs-neutral-700: #424242;
  --bs-neutral-800: #292929;
  --bs-neutral-900: #141414;
  --bs-success-50: #ECFDF5;
  --bs-success-100: #D1FAE5;
  --bs-success-200: #A7F3D0;
  --bs-success-300: #6EE7B7;
  --bs-success-500: #10B981;
  --bs-success-400: #34D399;
  --bs-success-600: #059669;
  --bs-success-700: #047857;
  --bs-success-800: #065F46;
  --bs-success-900: #064E3B;
  --bs-warning-50: #FFFBEB;
  --bs-warning-100: #FEF3C7;
  --bs-warning-200: #FDE68A;
  --bs-warning-300: #FCD34D;
  --bs-warning-400: #FBBF24;
  --bs-warning-500: #F59E0B;
  --bs-warning-600: #D97706;
  --bs-warning-700: #B45309;
  --bs-warning-800: #92400E;
  --bs-warning-900: #78350F;
  --bs-error-50: #FEF2F2;
  --bs-error-100: #FEE2E2;
  --bs-error-200: #FECACA;
  --bs-error-300: #FCA5A5;
  --bs-error-400: #F87171;
  --bs-error-500: #EF4444;
  --bs-error-600: #DC2626;
  --bs-error-700: #B91C1C;
  --bs-error-800: #991B1B;
  --bs-error-900: #7F1D1D;
  --bs-shades-0: #fff;
  --bs-shades-2: #e2e8f0;
  --bs-shades-10: #101828;
  --bs-shades-100: #000;
  --bs-dark-50: #3a3c43;
  --bs-dark-100: #373a41;
  --bs-dark-200: #35373e;
  --bs-dark-300: #30333a;
  --bs-dark-400: #2e3138;
  --bs-dark-500: #292c33;
  --bs-dark-600: #272a31;
  --bs-dark-700: #24272f;
  --bs-dark-800: #20232a;
  --bs-dark-900: #14171f;
  --header-height--mobile: 165px;
  --header-height--tablet: 105px;
  --header-height--desktop: 190px;
  --heading-theme-font: 'inter', sans-serif;
  --bs-primary-900-theme-font: 'inter', sans-serif;
  --body-theme-font: 'inter', sans-serif;
  --primary-theme-font: 'inter', sans-serif;
  --bs-heading-color: var(--bs-primary-900);
  --bs-body-color: var(--bs-neutral-500);
}
/****************************** ****************************** 
                          Reset CSS
  ****************************** *****************************/
body {
  background-color: var(--bs-shades-0);
  font-family: var(--body-theme-font);
  font-weight: 400;
}
.content ul li::marker {
  color: var(--bs-neutral-500);
}
/*Buttons*/
.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-box-shadow: none;
  --bs-btn-border-radius: 50rem;
  box-shadow: none !important;
}
.btn-primary {
  --bs-btn-color: var(--bs-primary-900);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-shades-0);
  --bs-btn-hover-bg: var(--bs-primary-900);
  --bs-btn-hover-border-color: var(--bs-primary-900);
  --bs-btn-active-color: var(--bs-shades-0);
  --bs-btn-active-bg: var(--bs-primary-900);
  --bs-btn-active-border-color: var(--bs-primary-900);
  --bs-btn-disabled-color: var(--bs-primary-900);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-outline-primary {
  --bs-btn-color: var(--bs-primary-900);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-primary-900);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-active-color: var(--bs-primary-900);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary-900);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}
.btn-secondary {
  --bs-btn-color: var(--bs-neutral-900);
  --bs-btn-bg: var(--bs-neutral-100);
  --bs-btn-border-color: var(--bs-neutral-200);
  --bs-btn-hover-color: var(--bs-shades-0);
  --bs-btn-hover-bg: var(--bs-neutral-900);
  --bs-btn-hover-border-color: var(--bs-neutral-900);
  --bs-btn-active-color: var(--bs-shades-0);
  --bs-btn-active-bg: var(--bs-neutral-900);
  --bs-btn-active-border-color: var(--bs-neutral-900);
  --bs-btn-disabled-color: var(--bs-neutral-900);
  --bs-btn-disabled-bg: var(--bs-neutral-100);
  --bs-btn-disabled-border-color: var(--bs-neutral-200);
}
.btn-outline-secondary {
  --bs-btn-color: var(--bs-neutral-500);
  --bs-btn-border-color: var(--bs-neutral-200);
  --bs-btn-hover-color: var(--bs-neutral-900);
  --bs-btn-hover-bg: var(--bs-neutral-100);
  --bs-btn-hover-border-color: var(--bs-neutral-900);
  --bs-btn-active-color: var(--bs-neutral-900);
  --bs-btn-active-bg: var(--bs-neutral-100);
  --bs-btn-active-border-color: var(--bs-neutral-900);
  --bs-btn-disabled-color: var(--bs-neutral-500);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-neutral-200);
  --bs-gradient: none;
}
.btn--no-transition svg {
  margin-top: initial;
}
.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10000;
  outline: none;
  box-shadow: none !important;
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
/*Forms*/
.col-form-label {
  color: var(--bs-neutral-800);
  font-size: 0.875rem;
  font-weight: 400;
  padding-bottom: 5px;
}
.form-control {
  padding: .6rem 1rem;
  color: var(--bs-neutral-900);
  border: var(--bs-border-width) solid var(--bs-neutral-200);
  border-radius: 100px;
}
textarea.form-control {
  min-height: 125px;
  border-radius: 18px;
  resize: none;
}
.form-control:focus {
  color: var(--bs-neutral-900);
  border-color: var(--bs-primary);
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: var(--bs-neutral-500);
}
.form-control::placeholder {
  color: var(--bs-neutral-500);
}
.form-select {
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--bs-neutral-500);
  border-radius: 100px;
  border-color: var(--bs-neutral-200);
}
.form-select:focus {
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: none;
}
/*Modal*/
.modal-backdrop {
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(8px);
}
.modal-backdrop.show {
  opacity: 1;
}
@media (min-width: 1024px) {
  .modal {
    --bs-modal-width: 650px;
  }
}
.modal-body {
  padding: 20px;
}
@media (min-width: 768px) {
  .modal-body {
    padding: 40px;
  }
}
.modal-content {
  border-radius: 0;
  box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.18);
}
.modal-heading {
  text-align: center;
  padding-bottom: 10px;
}
.modal-heading svg {
  margin-bottom: 20px;
}
body .modal-heading h4 {
  color: var(--bs-neutral-900) !important;
  font-size: 1.45rem !important;
  font-weight: 500 !important;
}
body .modal-heading p {
  font-size: .875rem;
  color: var(--bs-neutral-500);
}
body .modal-body .checkbox-custom-label {
  font-size: 0.875rem;
}
/**/
a {
  color: var(--bs-primary-900);
  text-decoration: none;
}
a:hover {
  color: var(--bs-primary-900);
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
}
/*Breadcrumb*/
.breadcrumb-part, .single-breadcrumb {
  background: var(--bs-neutral-50);
  padding: 8px 0;
  max-width: 100% !important;
}
@media (min-width: 768px) {
  .breadcrumb-part, .single-breadcrumb {
    padding: 12px 0;
  }
}
/*Woocommerce Breadcrumb*/
body.woocommerce .woocommerce-breadcrumb, body > .wrap .rank-math-breadcrumb {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--bs-neutral-500);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
body.woocommerce .woocommerce-breadcrumb p, body > .wrap .rank-math-breadcrumb p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--bs-neutral-500);
  font-weight: 400;
  line-height: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
}
body.woocommerce .woocommerce-breadcrumb a, body > .wrap .rank-math-breadcrumb a {
  color: var(--bs-neutral-500);
  font-weight: 400;
  line-height: 16px;
}
body.woocommerce .woocommerce-breadcrumb a:hover, body > .wrap .rank-math-breadcrumb a:hover {
  color: var(--bs-primary-900);
  text-decoration: none;
}
body > .wrap .rank-math-breadcrumb a svg {
  width: 1rem;
  height: 1rem;
}
body.woocommerce .woocommerce-breadcrumb span {
  display: inline-flex;
}
body.woocommerce .woocommerce-breadcrumb span, body > .wrap .rank-math-breadcrumb span {
  padding: 0 10px;
}
body > .wrap .rank-math-breadcrumb span.last {
  padding: 0;
}
@media (min-width: 768px) {
  body.woocommerce .woocommerce-breadcrumb span, body > .wrap .rank-math-breadcrumb span {
    padding: 0 22px;
  }
  body > .wrap .rank-math-breadcrumb span.last {
    padding: 0;
  }
}
body > .wrap .rank-math-breadcrumb span.separator {
  display: inline-flex;
}
body > .wrap .rank-math-breadcrumb span.separator::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,<svg width='6' height='11' viewBox='0 0 6 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 9.66406L5 5.66406L1 1.66406' stroke='%23D6D6D6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 2px;
}
body.woocommerce .woocommerce-breadcrumb span svg, body > .wrap .rank-math-breadcrumb span svg {
  display: block;
}
/*Custom Checkbox CSS*/
.checkbox-custom, .form-check-input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.checkbox-custom-label, .form-check-label {
  color: var(--bs-neutral-900);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  display: block;
  min-height: 18px;
  overflow: hidden;
  line-height: normal;
}
.checkbox-custom-label span, .form-check-label span {
  overflow: hidden;
  display: block;
  padding-left: 8px;
  padding-right: 20px;
}
.checkbox-custom-label span a, .form-check-label span a {
  color: var(--bs-neutral-900);
  text-decoration: underline;
}
.checkbox-custom-label span a:hover, .form-check-label span a:hover {
  color: var(--bs-primary);
}
.checkbox-custom-label span + b, .form-check-label span + b {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.875rem;
  color: var(--bs-neutral-400);
  font-weight: 400;
}
.checkbox-custom + .checkbox-custom-label::before, .form-check-input + .form-check-label::before {
  background: var(--bs-shades-0);
  border: 2px solid var(--bs-neutral-900);
  border-radius: 2px;
  content: "";
  float: left;
  height: 16px;
  width: 16px;
  margin-right: 5px;
  text-align: center;
  margin-top: 2px;
}
.checkbox-custom:checked + .checkbox-custom-label::before, .form-check-input:checked + .form-check-label::before {
  background-color: var(--bs-primary-900);
  background-image: url("data:image/svg+xml,<svg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 3L4.5 8.5L2 6' stroke='%23FFFFFF' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 19.5L5 12.5L12 5.5' stroke='%23FFFFFF' stroke-width='0' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 12px;
  border: 2px solid var(--bs-primary-900);
}
.checkbox-custom-disabled:checked + .checkbox-custom-label-disabled:before, .checkbox-custom-disabled + .checkbox-custom-label-disabled:before {
  background: #cccccc none repeat scroll 0 0 !important;
  border: 1px solid #cccccc !important;
  color: #cccccc !important;
  pointer-events: none;
}
.checkbox input.checkbox-custom-disabled[type="checkbox"] {
  pointer-events: none;
}
.checkbox label.checkbox-custom-label-disabled {
  pointer-events: none;
}
/*Custom Radio CSS*/
.custom-radio {
  margin-top: 1rem;
}
.form-radio-input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.form-radio-label {
  color: var(--bs-neutral-900);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  display: block;
  min-height: 18px;
  overflow: hidden;
}
.form-radio-label span {
  overflow: hidden;
  display: block;
  padding-left: 8px;
  padding-right: 20px;
}
.form-radio-label span a {
  color: var(--bs-neutral-900);
  text-decoration: underline;
}
.form-radio-label span a:hover {
  color: var(--bs-primary);
}
.form-radio-label span + b {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.875rem;
  color: var(--bs-neutral-400);
  font-weight: 400;
}
.form-radio-input + .form-radio-label::before {
  display: block;
  position: relative;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background-color: transparent !important;
  border: 2px solid var(--bs-neutral-400);
  text-align: center;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.gform_wrapper.gravity-theme .gfield_radio label.form-radio-label {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
}
.form-radio-input:checked + .form-radio-label::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background-color: var(--bs-primary-900) !important;
  border: none;
  box-shadow: 0 0 0px 2px var(--bs-primary-900) inset;
  text-align: center;
  width: 14px;
  height: 14px;
  left: 5px;
}
.form-radio-input:checked + .form-radio-label::before {
  border: 2px solid var(--bs-primary-900);
}
.gform_wrapper.gravity-theme .gfield_radio label.form-radio-label span.title {
  line-height: normal;
  color: var(--bs-neutral-500);
  font-size: 1.125rem;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
}
.gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) .custom-radio .gfield_radio .gchoice, .gform_wrapper.gravity-theme .gform_body .gfield.gf_list_inline .custom-radio .gfield_radio .gchoice {
  min-height: 1.5rem;
  margin-bottom: .75rem;
  margin-right: .75rem;
  display: inline-block;
  border-radius: 12px;
  background: var(--bs-neutral-50);
  padding: 1rem 1.25rem;
  box-shadow: 0px 1px 0px 0px #E2E8F0;
}
@media (min-width: 1024px) {
  .gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) {
    font: 400 normal 1.125rem/1.5 var(--body-theme-font);
    margin-top: 0;
    padding-bottom: 0;
  }
}
@media(max-width:767.98px) {
  .gform_wrapper.gravity-theme .gform_body .gfield.gf_list_inline .custom-radio .gfield_radio .gchoice {
    margin-bottom: 1.25rem;
    margin-right: 0rem;
    display: block;
  }
}
.gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) .gfield_radio .gchoice .form-radio-input {
  position: absolute;
}
.gform_wrapper.gravity-theme .gform_body .gfield.gf_list_block .custom-radio .gfield_radio .gchoice {
  min-height: 1.5rem;
  margin-bottom: 1.25rem;
  margin-right: 0;
  display: flex;
  flex-direction: row;
  border-radius: 0px;
  background: transparent;
  padding: 0rem;
  box-shadow: none;
}
/**** Tick Box Style CSS *******/
ul.is-style-tickboxes li {
  display: flex;
  padding: 7px 0;
}
ul.is-style-tickboxes li::before {
  content: "";
  position: initial;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 12px;
  background: url(../images/featured-icon.svg) 50% 50%/cover no-repeat;
  flex: 0 0 25px;
  margin-top: 0px;
}
body > .wrap .wp-block-quote, body > .wrapper .wp-block-quote {
  border: 0 solid var(--bs-primary);
  border-left-width: 2px;
  margin-bottom: 2em;
  padding: .5rem 0 .5rem 1.25rem;
}
/**/
main.content a:not([class]) {
  color: var(--bs-primary-900);
}
main.content a:not([class]):hover {
  color: var(--bs-primary-900);
  text-decoration: underline;
}
.editor-styles-wrapper .content p a {
  font-weight: 500;
  text-decoration: underline;
}
main.content > section:not(.is-style-hero):first-child {
  padding-top: 0;
}
main.content > section:first-child.is-style-hero {
  margin-top: -165px;
}
@media (min-width: 768px) {
  main.content > section:first-child.is-style-hero {
    margin-top: -142px;
  }
}
@media (min-width: 1024px) {
  main.content > section:first-child.is-style-hero {
    margin-top: -190px;
  }
}
/****************************** ****************************** 
                          Header CSS
  ****************************** *****************************/
header.banner {
  background: var(--bs-shades-0);
  z-index: 1001;
  border: none;
}
@media (min-width: 1024px) {
  header.banner {
    border: none;
  }
  header.banner.sticky {
    border: none;
  }
}
header.banner .top-banner {
  background: var(--bs-neutral-100);
  padding: 0;
}
@media (min-width: 1024px) {
  header.banner .top-banner {
    padding: .5rem 0;
  }
}
@media (min-width: 768px) {
  header.banner .top-banner header ul.socials li a:link, header.banner .top-banner header ul.socials li a:visited {
    color: var(--bs-primary-900);
  }
}
/***************************/
header.banner .top-banner__right .top-utilities ul li > svg {
  color: var(--bs-primary-900);
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
}
header.banner .top-banner__right a {
  text-decoration: none;
}
header.banner .top-banner__right .top-utilities ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
/*Header CSS*/
header.site-layout {
  background: var(--bgWhite), 1.0);
}
/*Header Main*/
.header-main {
  padding: 0px 0;
  height: 100px;
  background-color: var(--bs-shades-0);
}
@media (max-width: 1023.98px) {
  .header-main {
    height: 105px;
    background-color: var(--bs-shades-0);
    border-bottom: 5px solid var(--bs-primary);
  }
}
header.banner .row.layout {
  padding: 0;
}
@media (max-width: 767.98px) {
  header.banner .row.layout > .col-12 {
    height: 100px;
  }
}
@media(min-width:1024px) {
  header.banner .row.layout {
    padding: 0;
  }
}
header .brand img, header .brand svg {
  display: block;
  width: 90px;
}
@media (min-width: 320px) {
  header .brand img, header .brand svg {
    width: 140px;
  }
}
@media (min-width: 576px) {
  header .brand img, header .brand svg {
    width: 160px;
  }
}
@media (min-width: 1024px) {
  header .brand img, header .brand svg {
    width: 180px;
  }
}
/**/
.header-main .nav-utilities .nav__icons {
  padding-left: 0;
}
@media(min-width:1024px) {
  .header-main .nav-utilities .nav__icons {
    padding-left: 1.5rem;
  }
}
@media(min-width:1200px) {
  .header-main .nav-utilities .nav__icons {
    padding-left: 2.5rem;
  }
}
.header-main .nav-utilities .nav__icons a {
  margin: 0 0.5rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  color: var(--bs-primary-800);
  text-decoration: none;
}
.header-main .nav-utilities .nav__icons a:first-child {
  margin-left: 0;
}
@media(min-width:768px) {
  .header-main .nav-utilities .nav__icons a {
    margin: 0 1rem;
  }
}
@media(min-width:1024px) {
  .header-main .nav-utilities .nav__icons a {
    margin: 0 1.25rem;
  }
  .header-main .nav-utilities .nav__icons a:last-child {
    margin-right: 0;
  }
}
.header-main .nav-utilities .nav__icons .cart-option {
  display: flex;
  position: relative;
}
.header-main .nav-utilities .nav__icons a i {
  display: block;
  text-align: center;
}
.header-main .nav-utilities .nav__icons a i svg {
  width: 32px;
  height: 32px;
}
.header-main .nav-utilities .nav__icons a span, .header-main .nav-utilities .nav__icons a {
  color: var(--bs-primary-900);
  margin-top: 0rem;
  font-size: 0;
}
@media(min-width:768px) {
  .header-main .nav-utilities .nav__icons a span, .header-main .nav-utilities .nav__icons a {
    font: 400 0.875rem/1 var(--heading-theme-font);
  }
}
.header-main .nav-utilities .nav__icons a span {
  display: none;
}
.header-main .nav-utilities .nav__icons .cart-option a span.qbadge {
  display: block;
}
.header-main .nav-utilities .nav__icons a:hover span {
  text-decoration: underline;
}
@media(min-width:768px) {
  .header-main .nav-utilities .nav__icons a span {
    display: block;
  }
}
/**/
.nav__search {
  padding: 15px;
  margin-left: 15px;
}
.nav__search svg {
  width: 35px;
  height: 35px;
}
.header-main .input-group form {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 370px;
}
@media (min-width: 991px) {
  .header-main .input-group form {
    width: 450px;
  }
}
@media (min-width: 1200px) {
  .header-main .input-group form {
    width: 600px;
  }
}
.header-main .input-group form input.form-control {
  padding: 0 60px 0 20px;
  background-color: var(--bs-neutral-50);
  border: 1px solid var(--bs-neutral-300);
  color: var(--bs-neutral-500);
  border-radius: 50px;
  font-size: 0.875rem;
  box-shadow: none;
  height: 52px;
}
.header-main .input-group form input.form-control:focus {
  border: 1px solid var(--bs-primary);
}
.header-main .input-group form input.form-control::-webkit-input-placeholder {
  color: var(--gray);
  opacity: 1;
}
.header-main .input-group form input.form-control::-moz-placeholder {
  color: var(--gray);
  opacity: 1;
}
.header-main .input-group form input.form-control:-ms-input-placeholder {
  color: var(--gray);
  opacity: 1;
}
.header-main .input-group form input.form-control::-ms-input-placeholder {
  color: var(--gray);
  opacity: 1;
}
.header-main .input-group form input.form-control::placeholder {
  color: var(--gray);
  opacity: 1;
  font: 400 0.875rem var(--heading-theme-font);
}
.header-main .input-group form a {
  color: var(--bs-primary-900);
  position: absolute;
  right: 5px;
  background: var(--bs-neutral-200);
  border-radius: 100px;
  width: 44px;
  height: 44px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-main .input-group form a svg {
  width: 24px;
  height: 24px;
}
.header-main .input-group form a:hover {
  color: var(--bs-primary-900);
  background: var(--bs-primary);
}
@media (max-width: 767.95px) {
  .header-main .input-group form input.form-control {
    padding: 0 45px 0 15px;
    height: 44px;
  }
  .header-main .input-group form a {
    width: 36px;
    height: 36px;
  }
  .header-main .input-group form a svg {
    width: 16px;
    height: 16px;
  }
}
/*****Mobile Search Bar*******/
.mobile-nav-search .input-group {
  justify-content: center;
}
@media (max-width: 767.98px) {
  .mobile-nav-search {
    margin-top: -12px;
  }
  .header-main {
    height: 165px;
  }
  .header-main .input-group form {
    width: 100%;
  }
  header.sticky .header-main {
    height: 105px;
  }
  header.sticky .header-main .mobile-nav-search {
    display: none !important;
  }
}
/***Nav Primary***/
header.banner .header-bot {
  background: var(--bs-primary-900);
  height: 52px;
  position: relative;
  color: var(--bs-shades-0);
}
header.banner .nav-primary {
  display: flex;
  align-items: center;
  position: relative;
}
header.banner .nav-primary ul {
  justify-content: center;
}
header.banner .nav-primary ul li a:link, header.banner .nav-primary ul li a:visited {
  display: flex;
  position: relative;
  font: 400 1rem/1.5 var(--heading-theme-font);
  color: var(--bs-shades-0);
  padding: 0.75rem 1rem;
}
@media(min-width:1200px) {
  header.banner .nav-primary ul li a:link, header.banner .nav-primary ul li a:visited {
    padding: 0.75rem 1.5rem;
  }
}
@media(min-width:1400px) {
  header.banner .nav-primary ul li a:link, header.banner .nav-primary ul li a:visited {
    padding: 0.75rem 2.25rem;
  }
}
header.banner .nav-primary ul li:last-child a:link, header.banner .nav-primary ul li:last-child a:visited {
  padding-right: 0;
}
header.banner .nav-primary .menu-main-menu-container > ul > li:after {
  left: 2rem;
}
header.banner .nav-primary ul.nav > li .menu-arrow {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  margin-top: 2px;
  line-height: 0;
  transform: rotate3d(0, 0, 0, 0deg);
  transform-origin: 50% 50%;
  transition: transform .25s ease-out .5s;
  transition-delay: .25s;
}
header.banner .nav-primary ul.nav > li:hover .menu-arrow {
  transform: rotate(-180deg);
  transform-origin: 50% 50%;
  transition-delay: .25s;
}
header.banner .nav-primary ul li.dropdown {
  position: relative;
}
header.banner .nav-primary ul li.dropdown .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  position: absolute;
  top: 55px !important;
  left: calc(50% - 100px) !important;
  width: 100%;
  max-width: 100%;
  min-width: 200px;
  background: var(--bs-shades-0);
  border: none;
  border-radius: 8px;
  opacity: 0;
  z-index: 10;
  transform: translateY(2rem) !important;
  transition: left 0s .5s, transform .15s ease-out .35s, opacity .15s ease-out .35s;
  display: block;
  float: none;
  visibility: hidden;
}
@media (min-width: 1200px) {
  header.banner .nav-primary ul li.dropdown .dropdown-menu {
    padding: 1.5rem 2rem;
    left: calc(50% - 125px) !important;
    min-width: 250px;
  }
}
header.banner .nav-primary ul li.dropdown .dropdown-menu::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -8px;
  left: calc(50% - 8px);
  transform: rotate(45deg);
  background: var(--bs-shades-0);
  border: none;
  border-left: 1px solid var(--borderGray);
  border-top: 1px solid var(--borderGray);
}
header.banner .nav-primary ul li.dropdown .dropdown-menu::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 25px;
  top: -25px;
  left: 0;
}
header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item:link, header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item:visited, header.banner .nav-primary ul li.dropdown .dropdown-menu a.nav-link:link, header.banner .nav-primary ul li.dropdown .dropdown-menu a.nav-link:visited {
  font: 500 1rem/1 var(--heading-theme-font);
  color: var(--bs-primary-900);
  padding: 0.75rem 0;
  text-decoration: none;
  align-items: center;
  white-space: initial;
}
@media (min-width: 1200px) {
  header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item:link, header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item:visited, header.banner .nav-primary ul li.dropdown .dropdown-menu a.nav-link:link, header.banner .nav-primary ul li.dropdown .dropdown-menu a.nav-link:visited {
    padding: 1rem 0;
  }
}
header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item:hover, header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item:active, header.banner .nav-primary ul li.dropdown .dropdown-menu a.dropdown-item.active, header.banner .nav-primary ul li.dropdown .dropdown-menu a.nav-link:hover, header.banner .nav-primary ul li.dropdown .dropdown-menu a.nav-link:active, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-item a.nav-link {
  background: transparent;
  color: var(--bs-primary-900);
}
header.banner .nav-primary ul li.dropdown .dropdown-menu li:first-of-type > a.dropdown-item:hover, header.banner .nav-primary ul li.dropdown .dropdown-menu li:first-of-type > a.dropdown-item:active, header.banner .nav-primary ul li.dropdown .dropdown-menu li.active:first-of-type > a.dropdown-item, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-item:first-of-type > a.dropdown-item, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-ancestor:first-of-type > a.dropdown-item, header.banner .nav-primary ul li.dropdown .dropdown-menu li:first-of-type > a.nav-link:hover, header.banner .nav-primary ul li.dropdown .dropdown-menu li:first-of-type > a.nav-link:active, header.banner .nav-primary ul li.dropdown .dropdown-menu li.active:first-of-type > a.nav-link, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-item:first-of-type > a.nav-link, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-ancestor:first-of-type > a.nav-link {
  border-radius: 14px 14px 0px 0px;
}
header.banner .nav-primary ul li.dropdown .dropdown-menu li:last-of-type > a.dropdown-item:hover, header.banner .nav-primary ul li.dropdown .dropdown-menu li:last-of-type > a.dropdown-item:active, header.banner .nav-primary ul li.dropdown .dropdown-menu li.active:last-of-type > a.dropdown-item, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-item:last-of-type > a.dropdown-item, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-ancestor:last-of-type > a.dropdown-item, header.banner .nav-primary ul li.dropdown .dropdown-menu li:last-of-type > a.nav-link:hover, header.banner .nav-primary ul li.dropdown .dropdown-menu li:last-of-type > a.nav-link:active, header.banner .nav-primary ul li.dropdown .dropdown-menu li.active:last-of-type > a.nav-link, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-item:last-of-type > a.nav-link, header.banner .nav-primary ul li.dropdown .dropdown-menu li.current-menu-ancestor:last-of-type > a.nav-link {
  border-radius: 0px 0px 14px 14px;
}
header.banner .nav-primary ul li.dropdown .dropdown-menu .menu-arrow {
  transform: rotate(-90deg);
}
header.banner .nav-primary ul li.dropdown .dropdown-menu .dropdown-menu:before {
  display: none;
}
header.banner .nav-primary ul li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
  transition: left 0s .35s, transform .15s ease-out .35s, opacity .15s ease-out .35s;
}
header.banner .nav-primary ul li.dropdown:hover > .dropdown-menu .dropdown-menu {
  left: 95%;
  top: 0 !important;
}
header.banner .nav-primary ul li.dropdown:hover > .dropdown-menu .dropdown-menu:before {
  display: none;
}
/*Humburger Menu*/
.hamburger {
  padding-right: 0;
  padding: 10px;
}
header .mobile-menu button {
  line-height: 1;
}
header .hamburger-inner, header .hamburger-inner::after, header .hamburger-inner::before {
  background-color: var(--bs-primary-900);
  right: 0;
  height: 3px;
}
header .hamburger--spin:not(.is-active) .hamburger-inner {
  width: 100%;
  height: 3px;
}
header .hamburger--spin:not(.is-active) .hamburger-inner::before {
  width: 100%;
  height: 3px;
}
header .hamburger.is-active .hamburger-inner, header .hamburger.is-active .hamburger-inner::after, header .hamburger.is-active .hamburger-inner::before {
  background-color: var(--bs-primary-900);
}
header nav.mobile {
  position: absolute;
  top: var(--header-height--mobile);
  right: 0;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - var(--header-height--mobile));
  padding-top: 1em;
  background: var(--bs-shades-0);
  overflow-y: scroll;
  transform: translate3d(100%, 0, 0);
  transition: opacity 0.3s, transform 0s ease-out 0.5s;
}
@media (max-width: 767.98px) {
  header.sticky nav.mobile {
    top: 100px;
    height: calc(100vh - 100px);
  }
}
@media (min-width: 768px) {
  header nav.mobile {
    top: 140px;
    height: calc(100vh - 140px);
  }
}
header nav.mobile.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.3s, transform 0s ease-out 0s;
}
header nav.mobile .nav__cta {
  text-align: center;
  padding: 25px 0;
}
header nav.mobile .mobile__menu {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bs-neutral-300);
}
header nav.mobile .mobile__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
header nav.mobile .mobile__menu ul a:link, header nav.mobile .mobile__menu ul a:visited {
  font-family: var(--heading-theme-font);
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  width: 100%;
  padding: 1rem;
  color: var(--bs-neutral-700);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
}
header nav.mobile .mobile__menu ul a:link:hover, header nav.mobile .mobile__menu ul a:visited:hover {
  text-decoration: underline;
  color: var(--bs-primary-900);
}
header nav.mobile .mobile__menu ul > li ul > li a:link, header nav.mobile .mobile__menu ul > li ul > li a:visited {
  padding-left: 1.5em;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children > a {
  justify-content: space-between;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children > a::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: url(../images/arrow-dark-no-stem.svg) 50% 50%/contain no-repeat;
  transform: rotate3d(0, 0, 1, 180deg);
  transition: transform 0.3s ease-out;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children > a.active::after {
  transform: rotate3d(0, 0, 1, 270deg);
}
header nav.mobile .mobile__menu ul li.menu-item-has-children .sub-menu .sub-menu a {
  padding-left: 2.5em;
}
header nav.mobile .mobile__menu ul li.menu-item-has-children .sub-menu .sub-menu a::before {
  margin-right: 0.75em;
}
header nav.mobile .mobile__menu ul li ul {
  display: none;
}
.mobile__menu--contact .socials ul {
  justify-content: center;
}
/****/
header nav.mobile .mobile-myaccount-container ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  margin-bottom: 0;
}
header nav.mobile .mobile-myaccount-container ul li {
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  width: 100%;
}
header nav.mobile .mobile-myaccount-container ul li svg {
  margin-right: 1rem;
  color: var(--bs-primary-900);
  width: 1.25rem;
  height: 1.25rem;
}
header nav.mobile .mobile-myaccount-container ul li a {
  font-family: var(--heading-theme-font);
  color: var(--bs-neutral-700);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
header nav.mobile .mobile-myaccount-container ul li a:hover, header nav.mobile .mobile-myaccount-container ul li a:focus, header nav.mobile .mobile-myaccount-container ul li a:visited:hover {
  color: var(--bs-primary-900);
  text-decoration: underline;
}
/****/
.nav-utilities .nav__product {
  border-right: 1px solid var(--bs-primary-800);
  padding-right: 1rem;
}
@media(min-width:1200px) {
  .nav-utilities .nav__product {
    padding-right: 2rem;
  }
}
.nav-utilities .nav__product ul li.dropdown {
  position: relative;
}
.nav-utilities .nav__product ul li a:link, .nav-utilities .nav__product ul li a:visited {
  display: flex;
  position: relative;
  font: 400 1rem/1.5 var(--heading-theme-font);
  color: var(--bs-primary-900);
  padding: 0.625rem 0.875rem;
}
.nav-utilities .nav__product ul.nav > li .menu-arrow {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  margin-top: 6px;
  line-height: 0;
  transform: rotate3d(0, 0, 0, 0deg);
  transform-origin: 50% 50%;
  transition: transform .25s ease-out .5s;
  transition-delay: .25s;
}
.nav-utilities .nav__product .nav-link:hover, .nav-utilities .nav__product .nav a:hover, .nav-utilities .nav__product .nav-link:focus, .nav-utilities .nav__product .nav a:focus {
  color: var(--bs-primary-900) !important;
}
.nav-utilities .nav__product ul.nav > li:hover .menu-arrow {
  transform: rotate(-180deg);
  transform-origin: 50% 50%;
  transition-delay: .25s;
}
.nav-utilities .nav__product ul.nav .icon {
  width: 1rem !important;
  height: 1rem !important;
}
.nav-utilities .nav__product ul li.dropdown .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 40px !important;
  left: calc(50% - 125px) !important;
  width: 100%;
  max-width: 100%;
  min-width: 200px;
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-100);
  border-radius: 8px;
  opacity: 0;
  z-index: 10;
  transform: translateY(2rem) !important;
  transition: left 0s .5s, transform .15s ease-out .35s, opacity .15s ease-out .35s;
  display: block;
  float: none;
  visibility: hidden;
  box-shadow: 0px 4px 8px 0px rgba(16, 24, 40, 0.10);
  overflow-y: auto;
  max-height: 310px;
}
@media (min-width: 1200px) {
  .nav-utilities .nav__product ul li.dropdown .dropdown-menu {
    left: calc(50% - 220px) !important;
    min-width: 280px;
  }
}
@media (min-width: 1400px) {
  .nav-utilities .nav__product ul li.dropdown .dropdown-menu {
    left: calc(50% - 220px) !important;
    min-width: 320px;
  }
}
/****/
.nav-utilities .nav__product ul li.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 10px;
  border-radius: 8px;
}
.nav-utilities .nav__product ul li.dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
.nav-utilities .nav__product ul li.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bs-neutral-200);
  border-radius: 8px;
}
.nav-utilities .nav__product ul li.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary-900);
  border-radius: 8px;
}
.nav-utilities .nav__product ul li.dropdown .dropdown-menu li a.dropdown-item {
  font: 400 1rem/1.5 var(--heading-theme-font);
}
.nav-utilities .nav__product ul li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
  transition: left 0s .35s, transform .15s ease-out .35s, opacity .15s ease-out .35s;
}
.nav-utilities .nav__product ul li.dropdown .dropdown-menu li:hover {
  background: var(--bs-neutral-100);
}
/****************************** ****************************** 
                          Footer CSS
  ****************************** *****************************/
footer.site-footer .widget.contact-details ul li.phone .icon, footer.site-footer .widget.contact-details ul li.email .icon, footer.site-footer .widget.contact-details ul li.address .icon {
  color: var(--bs-primary);
}
footer.site-footer .content-info .brand, footer.site-footer .content-info .brand a img {
  width: 230px;
}
@media (min-width: 1024px) {
  footer.site-footer .content-info .brand, footer.site-footer .content-info .brand a img {
    width: 300px;
  }
}
footer.site-footer .widget_nav_menu .menu li a {
  font: 400 0.875rem/1.5 var(--body-theme-font);
  color: var(--bs-neutral-100);
  text-decoration: none;
}
footer.site-footer .widget_nav_menu .menu li a:hover {
  color: var(--bs-primary);
}
footer.site-footer .widget_nav_menu h3, footer.site-footer .widget_nav_menu .h3 {
  color: var(--bs-shades-0);
  font-weight: 500;
}
@media(max-width:575.55px) {
  footer.site-footer .widget_nav_menu h3, footer.site-footer .widget_nav_menu .h3 {
    font-size: 1.25rem;
  }
}
footer.site-footer .copyright {
  color: var(--bs-shades-0);
  margin: 2rem auto 1rem;
}
@media(max-width:767.55px) {
footer.site-footer .copyright {
  color: var(--bs-shades-0);
  margin: 0rem auto 0rem;
}
}
footer.site-footer .copyright a {
  color: var(--bs-shades-0);
  text-decoration: none;
}
footer.site-footer .copyright a:hover {
  text-decoration: underline;
}
footer.site-footer {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: var(--bs-primary-900);
  position: relative;
}
footer.site-footer::before {
  background-image: url(../images/footer-border.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 9px;
  top: 0;
  left: 0;
}
footer.site-footer .widget.contact-details {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  footer.site-footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  footer.site-footer .widget.contact-details {
    margin-top: 3.75rem;
  }
}
footer.site-footer .widget.contact-details ul {
  margin-top: 1rem;
  list-style: none;
  margin-left: 0;
  padding: 0;
}
footer.site-footer .widget.contact-details ul li.phone a, footer.site-footer .widget.contact-details ul li.email a, footer.site-footer .widget.contact-details ul li.address a {
  margin-left: 8px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.875rem;
}
footer.site-footer .widget.contact-details ul li.phone a:hover, footer.site-footer .widget.contact-details ul li.email a:hover, footer.site-footer .widget.contact-details ul li.address a:hover {
  color: var(--bs-primary);
}
@media (min-width: 1024px) {
  footer.site-footer .socials {
    margin-top: 3.75rem;
    margin-bottom: 1.75rem;
  }
}
footer.site-footer .socials ul li a:hover {
  border: 1px solid var(--bs-primary);
  background: var(--bs-primary);
  color: var(--bs-primary-900);
}
/****/
.top-utilities .select-store.dropdown a.nav-link > svg {
  color: var(--bs-primary-900);
}
.top-utilities .select-store.dropdown, .contact-details .footer-contact-info .select-store.dropdown {
  position: relative;
}
.contact-details .footer-contact-info .select-store.dropdown a.nav-link, .contact-details .footer-contact-info .select-store.dropdown a.nav-link:hover, .contact-details .footer-contact-info .select-store.dropdown a.nav-link:focus {
  color: var(--bs-primary) !important;
}
.contact-details .footer-contact-info .select-store.dropdown a.nav-link svg {
  color: var(--bs-shades-0) !important;
}
.top-utilities .select-store.dropdown:link, .top-utilities .select-store.dropdown a:visited, .contact-details .footer-contact-info .select-store.dropdown:link, .contact-details .footer-contact-info .select-store.dropdown a:visited {
  display: flex;
  position: relative;
  font: 400 1.125rem/1.5 var(--heading-theme-font);
  color: var(--bs-primary-900);
  padding: 0.625rem 0.875rem;
}
.top-utilities .select-store.dropdown .menu-arrow, .contact-details .footer-contact-info .select-store.dropdown .menu-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0px;
  margin-top: 0px;
  line-height: 0;
  transform: rotate3d(0, 0, 0, 0deg);
  transform-origin: 50% 50%;
  transition: transform .25s ease-out .5s;
  transition-delay: .25s;
}
.top-utilities .select-store.dropdown .nav-link:hover, .top-utilities .select-store.dropdown a:hover, .top-utilities .select-store.dropdown:focus, .top-utilities .select-store.dropdown a:focus, .contact-details .footer-contact-info .select-store.dropdown .nav-link:hover, .contact-details .footer-contact-info .select-store.dropdown a:hover, .contact-details .footer-contact-info .select-store.dropdown:focus, .contact-details .footer-contact-info .select-store.dropdown a:focus {
  color: var(--bs-primary-900) !important;
  text-decoration: none;
}
.top-utilities .select-store.dropdown .nav-link.dropdown-toggle.show .menu-arrow, .contact-details .footer-contact-info .select-store.dropdown .dropdown-toggle.show .menu-arrow {
  transform: rotate(-180deg);
  transform-origin: 50% 50%;
  transition-delay: .25s;
}
.top-utilities .select-store.dropdown .nav-link.dropdown-toggle:after, .contact-details .footer-contact-info .select-store.dropdown .dropdown-toggle:after {
  display: none;
}
.top-utilities .select-store.dropdown .dropdown-menu, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu {
  padding: 0.875rem 0;
  min-width: 250px;
  background: var(--bs-shades-0);
  border: none;
  border-radius: 8px;
  transition: left 0s .5s, transform .15s ease-out .35s, opacity .15s ease-out .35s;
  box-shadow: 0 10px 20px #1018281a;
  overflow-y: auto;
  max-height: 220px;
  top: 23px !important;
}
@media (min-width: 1200px) {
  .top-utilities .select-store.dropdown .dropdown-menu, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu {
    min-width: 280px;
  }
}
/****/
.top-utilities .select-store.dropdown .dropdown-menu::-webkit-scrollbar, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu::-webkit-scrollbar {
  width: 10px;
  border-radius: 8px;
}
.top-utilities .select-store.dropdown .dropdown-menu::-webkit-scrollbar-track, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
.top-utilities .select-store.dropdown .dropdown-menu::-webkit-scrollbar-thumb, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bs-neutral-200);
  border-radius: 8px;
}
.top-utilities .select-store.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary-900);
  border-radius: 8px;
}
.top-utilities .select-store.dropdown .dropdown-menu li a.dropdown-item, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu li a.dropdown-item {
  font: 400 1rem/1.5 var(--heading-theme-font);
  color: var(--bs-primary-900);
}
.top-utilities .select-store.dropdown .dropdown-menu.show, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
  transition: left 0s .35s, transform .15s ease-out .35s, opacity .15s ease-out .35s;
}
.top-utilities .select-store.dropdown .dropdown-menu li:hover, .top-utilities .select-store.dropdown .dropdown-menu li a.nav-item.dropdown-item:active, .top-utilities .select-store.dropdown .dropdown-menu li a.nav-item.dropdown-item:focus-visible, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu li:hover, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu li a.nav-item.dropdown-item:active, .contact-details .footer-contact-info .select-store.dropdown .dropdown-menu li a.nav-item.dropdown-item:focus-visible {
  background: var(--bs-neutral-50);
  border: none;
}
.contact-details .footer-contact-info .select-store.dropdown .dropdown-menu.show {
  inset: unset !important;
}
/****************************** ****************************** 
                          Wrapper CSS
  ****************************** *****************************/
@media (min-width: 1024px) {
  body > .wrap p.is-style-subtitle, body > .wrapper p.is-style-subtitle {
    font-size: 1.125rem;
  }
}
/*body > .wrap p, body > .wrapper p {
    font: normal 400 1rem/1.5 var(--body-theme-font);
    color: var(--bs-neutral-500);
    margin: 1rem 0;
  }*/
body > .wrap h1, body > .wrap .h1, body > .wrap h2, body > .wrap .h2, body > .wrap h3, body > .wrap .h3, body > .wrap h4, body > .wrap .h4, body > .wrapper h1, body > .wrapper .h1, body > .wrapper h2, body > .wrapper .h2, body > .wrapper h3, body > .wrapper .h3, body > .wrapper h4, body > .wrapper .h4 {
  line-height: 1.2;
}
.heading-border {
  position: relative;
}
.heading-border h1:before, .heading-border h2:before, .heading-border h3:before, .heading-border h4:before, .heading-border h5:before, .heading-border h6:before {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  display: block;
  margin-bottom: 1rem;
}
.reset-pass-container.heading-border h1:before, .reset-pass-container.heading-border h2:before, .reset-pass-container.heading-border h3:before, .reset-pass-container.heading-border h4:before, .reset-pass-container.heading-border h5:before, .reset-pass-container.heading-border h6:before {
  margin: 0 auto;
  margin-bottom: 1rem !important;
}
.gform_wrapper.gravity-theme .gform_body .gfield.form-group.multi-file-upload button, .wp-block-button.is-style-fill a.wp-block-button__link, .wp-block-button a.wp-block-button__link, .btn.btn-outline--subscribe, .is-style-outline a:link.wp-block-button__link, .is-style-outline a:visited.wp-block-button__link {
  color: var(--bs-primary-900);
  border-radius: 3rem;
  min-width: 170px;
  font-size: 1rem;
}
.wp-block-button.is-style-fill a.wp-block-button__link img, .wp-block-button.is-style-outline a.wp-block-button__link img {
  margin-left: 10px;
}
.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background), .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background) {
  color: var(--bs-primary-900) !important;
  border-color: var(--bs-primary);
  padding: 1rem 2.25rem;
}
.gform_wrapper.gravity-theme .gform_body .gfield.form-group.multi-file-upload button:hover, .wp-block-button a.wp-block-button__link:hover, .wp-block-button a.wp-block-button__link:focus, .wp-block-button a.wp-block-button__link:active, .wp-block-button a.wp-block-button__link:first-child:active, .wp-block-button a.wp-block-button__link:focus-visible {
  color: var(--bs-primary-900);
  background: var(--bs-secondary-500);
  border-color: var(--bs-secondary-500);
  box-shadow: none;
}
.wp-block-button .wp-block-button__link.is-style-outline:hover, .wp-block-button.is-style-outline > .wp-block-button__link:focus, .wp-block-button .wp-block-button__link.is-style-outline:not(.has-background):hover, .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background):hover, .is-style-outline a.wp-block-button__link:hover:link, .is-style-outline a.wp-block-button__link:hover:visited, .wp-block-button.is-style-outline a.wp-block-button__link:active, .wp-block-button.is-style-outline a.wp-block-button__link:first-child:active, .wp-block-button.is-style-outline a.wp-block-button__link:focus-visible, .wp-block-button .wp-block-button__link.is-style-outline:not(.has-background):focus, .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background):focus {
  background: var(--bs-primary-500);
  border-color: var(--bs-primary-500);
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  z-index: 10000;
  background: #fff;
  width: 15px;
}
.select2-container--default .select2-selection--single {
  border-radius: 4rem !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: .6rem !important;
}
.select2-container--open .select2-dropdown {
  top: 5px;
  z-index: 9;
  border: 1px solid var(--bs-neutral-200);
}
.wp-block-button.is-style-fill a.wp-block-button__link:hover, .wp-block-button.is-style-fill a.wp-block-button__link:focus, .wp-block-button.is-style-fill a.wp-block-button__link:focus-visible, .wp-block-button a.wp-block-button__link:hover, .wp-block-button a.wp-block-button__link:focus, .wp-block-button a.wp-block-button__link:focus-visible {
  color: var(--bs-shades-0);
  background: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
}
.wp-block-button.is-style-fill a.wp-block-button__link:hover img, .wp-block-button.is-style-fill a.wp-block-button__link:focus img, .wp-block-button.is-style-fill a.wp-block-button__link:focus-visible img {
  filter: brightness(100);
}
.faq-categories .select2-container--default .select2-selection--single, .blog-categories .select2-container--default .select2-selection--single, .title-gallery-filters .select2-container--default .select2-selection--single {
  padding: 0.825rem 1rem;
  height: 50px !important;
  border: 1px solid var(--bs-neutral-200);
}
.title-gallery-filters .select2-container {
  margin: 5px;
}
/****************************** ****************************** 
                      Section Heading Block
  ****************************** *****************************/
.section-heading-block {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-heading-block {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .section-heading-block {
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1630px) {
  .section-heading-block {
    margin-bottom: 3rem;
  }
}
body .section-heading-block h1, body .section-heading-block h2, body .section-heading-block h3, body .section-heading-block h4 {
  margin-bottom: 0;
}
body .section-heading-block span.border-line {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  display: inline-block;
  margin-bottom: 20px;
}
body .section-heading-block p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}
@media (max-width: 479.98px) {
  body .section-heading-block p {
    font-size: 1rem;
  }
}
body .section-heading-block p:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  body .section-heading-block p.is-style-supporting-text {
    width: 75%;
  }
}
/****************************** ****************************** 
                  Product Category Slider Block
****************************** *****************************/
.zdcb-product-category-slider-block {
  background: var(--bs-neutral-100);
  padding: 3rem 0;
}
@media (min-width: 1200px) {
  .zdcb-product-category-slider-block > .container > .row {
    overflow: hidden;
    margin-right: calc(-100vw / 2 + (100% - -0px) / 2);
    width: initial;
    max-width: initial;
    min-width: 100%;
    align-items: center;
  }
}
.zdcb-product-category-slider-block .content h1, .zdcb-product-category-slider-block .content h2, .zdcb-product-category-slider-block .content h3 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.zdcb-product-category-slider-block .content h1::before, .zdcb-product-category-slider-block .content h2::before, .zdcb-product-category-slider-block .content h3::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  top: 0;
  left: 0;
}
.zdcb-product-category-slider-block .content p:last-child {
  margin-bottom: 0;
}
.zdcb-product-category-slider-block .card {
  background: transparent;
  border: none;
}
.zdcb-product-category-slider-block .card .card-link {
  text-decoration: none;
}
.zdcb-product-category-slider-block .card .card-img {
  border-radius: 0;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .zdcb-product-category-slider-block .card .card-img {
    height: 195px;
  }
}
@media (min-width: 1024px) {
  .zdcb-product-category-slider-block .card .card-img {
    height: 185px;
  }
}
@media (min-width: 1200px) {
  .zdcb-product-category-slider-block .card .card-img {
    height: 215px;
  }
}
.zdcb-product-category-slider-block .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zdcb-product-category-slider-block .swiper .swiper-slide {
  margin-right: 24px;
}
.zdcb-product-category-slider-block .swiper .swiper-slide:last-child {
  margin-right: 0;
}
.zdcb-product-category-slider-block .swiper .swiper-wrapper .swiper-slide {
  width: 290px;
  margin-right: 24px;
}
.zdcb-product-category-slider-block .card .card-body {
  padding: 1rem 0;
}
.zdcb-product-category-slider-block .card .card-body .card-title {
  font-size: 1.2rem;
  color: var(--bs-primary-900);
  font-weight: 600;
}
.zdcb-product-category-slider-block .card .btn.btn-link {
  color: var(--bs-primary-900);
  padding: 0 0 15px;
  font-weight: 500;
  font-size: 0.875rem;
}
.zdcb-product-category-slider-block .card .btn.btn-link::after {
  border-color: var(--bs-primary-900);
  border-width: 1px 1px 0 0;
  margin-top: 2px;
}
.zdcb-product-category-slider-block .card a.card-link:hover .btn-link::after {
  border-color: var(--bs-secondary-900);
  transform: translate(5px)rotate(45deg);
}
.zdcb-product-category-slider-block .swiper-button-prev, .zdcb-product-category-slider-block .swiper-button-next {
  top: calc(50% - 48px);
  width: 56px;
  height: 56px;
  background-color: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-200);
  border-radius: 25rem;
  transition: all 0.25s ease;
}
.zdcb-product-category-slider-block .swiper-button-prev, .zdcb-product-category-slider-block .swiper-button-next {
  background-image: url("data:image/svg+xml,<svg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 12.6643H19 M12 5.66431L19 12.6643L12 19.6643' stroke='%232D2C2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 24px;
}
.zdcb-product-category-slider-block .swiper-button-prev {
  transform: rotate(180deg);
}
.zdcb-product-category-slider-block .swiper-button-prev:hover, .zdcb-product-category-slider-block .swiper-button-next:hover {
  background-color: var(--bs-primary);
}
@media (max-width: 767.98px) {
  .zdcb-product-category-slider-block .swiper-button-prev, .zdcb-product-category-slider-block .swiper-button-next {
    display: none;
  }
}
.zdcb-product-category-slider-block .swiper-button-prev::after, .zdcb-product-category-slider-block .swiper-button-next::after {
  font-size: 20px;
  font-weight: 600;
  display: none;
}
.zdcb-product-category-slider-block .swiper-button-next.swiper-button-disabled, .zdcb-product-category-slider-block .swiper-button-prev.swiper-button-disabled {
  pointer-events: initial;
}
.zdcb-product-category-slider-block .swiper-button-next.swiper-button-disabled:hover, .zdcb-product-category-slider-block .swiper-button-prev.swiper-button-disabled:hover {
  background-color: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-200);
}
.zdcb-product-category-slider-block .swiper-horizontal > .swiper-scrollbar, .zdcb-product-category-slider-block .swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0;
  width: 100%;
}
/****************************** ****************************** 
                      Product Listing Section
****************************** *****************************/
.product-main-listing ul, .woocommerce .product-main-listing ul.products {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media (max-width: 575.98px) {
  .product-main-listing ul, .woocommerce .product-main-listing ul.products {
    margin: 0 -8px;
  }
}
.product-main-listing ul::after, .woocommerce .product-main-listing ul.products::after, .product-main-listing ul::before, .woocommerce .product-main-listing ul.products::before {
  display: none;
}
.product-main-listing ul li, .woocommerce .product-main-listing ul.products li.product, .woocommerce-page .product-main-listing ul.products li.product {
  float: left;
  width: 25%;
  margin: 0 0 1.75rem;
  clear: none;
  position: relative;
}
@media (max-width: 1023.98px) {
  .product-main-listing ul li, .woocommerce .product-main-listing ul.products li.product, .woocommerce-page .product-main-listing ul.products li.product {
    width: 33.33%;
  }
}
@media (max-width: 767.98px) {
  .product-main-listing ul li, .woocommerce .product-main-listing ul.products li.product, .woocommerce-page .product-main-listing ul.products li.product {
    width: 50%;
  }
}
.product-main-listing ul li.first, .woocommerce .product-main-listing ul.products li.product.first, .woocommerce-page .product-main-listing ul.products li.product.first {
  clear: none;
}
.product-item-box {
  margin: 0 12px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .product-item-box {
    margin: 0 8px;
  }
}
.product-pic {
  border: 1px solid var(--bs-neutral-200);
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden;
  /*  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);*/
}
.product-pic > a {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  padding-top: 100%;
}
.zdcb-product-slider-block {
  --swiper-navigation-sides-offset: -75px;
}
.zdcb-product-slider-block .product-posts__slider .product-pic > a {
  padding-top: inherit;
  width: auto;
  height: auto;
}
.product-pic img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100% !important;
  display: inline-block !important;
  margin: 0 !important;
  max-height: 100%;
  transition: transform 0.75s ease-out;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.zdcb-product-slider-block .product-posts__slider .product-pic img {
  position: static;
  object-fit: cover;
  height: 312px !important;
  max-height: 312px !important;
}
.product-item-box:hover .product-pic img {
  transform: scale3d(1.15, 1.15, 1.15);
}
.product-pic span.new-label, .product-item-box span.new-label, .product-image-part span.new-label, .product-pic span.sale-label, .product-item-box span.sale-label, .product-image-part span.sale-label {
  border-radius: 25px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bs-primary-900);
  width: 50px;
  position: absolute;
  top: 12px;
  z-index: 2;
  text-align: center;
  padding: 2px 0;
}
@media (min-width: 768px) {
  .product-pic span.new-label, .product-item-box span.new-label, .product-image-part span.new-label, .product-pic span.sale-label, .product-item-box span.sale-label, .product-image-part span.sale-label {
    width: 55px;
    padding: 4px 0;
  }
}
.product-pic span.new-label, .product-item-box span.new-label, .product-image-part span.new-label {
  background: var(--bs-primary);
  left: 12px;
}
.product-pic span.sale-label, .product-item-box span.sale-label, .product-image-part span.sale-label {
  background: var(--bs-secondary);
  right: 12px;
}
.product-content {
  display: flex;
  padding: 0.5rem 0 0;
  flex-direction: column;
}
@media (min-width: 576px) {
  .product-content {
    padding: 0.75rem 0 0;
  }
}
@media (min-width: 768px) {
  .product-content {
    padding: 1rem 0 0;
  }
}
@media (min-width: 1024px) {
  .product-content {
    padding: 1.25rem 0 0;
  }
}
.product-cat {
  color: var(--bs-neutral-700);
  margin-bottom: 5px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .product-cat {
    margin-bottom: 8px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .product-cat {
    font-size: 1rem;
  }
}
.product-name {
  display: block;
  text-align: left;
  min-height: 38px;
}
body .product-name h2 {
  font-size: 1rem;
  line-height: normal;
  color: var(--bs-primary-900);
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
@media (min-width: 768px) {
  .product-name {
    min-height: 42px;
  }
  body .product-name h2 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .product-name {
    min-height: 48px;
  }
  body .product-name h2 {
    font-size: 1.25rem;
  }
}
.product-name h2 a {
  color: var(--bs-primary-900);
  display: block;
  text-decoration: none;
}
.product-price {
  display: block;
  margin-top: 5px;
  min-height: 24px;
}
@media (min-width: 768px) {
  .product-price {
    margin-top: 8px;
    min-height: 27px;
  }
}
@media (min-width: 1024px) {
  .product-price {
    margin-top: 10px;
    min-height: 30px;
  }
}
.product-value {
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .product-value {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .product-value {
    font-size: 1.125rem;
  }
}
.product-value span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
  display: inline-block;
  margin: 0 3px 0 0;
}
.product-value .p_discount {
  color: var(--bs-primary-900);
}
.product-value .p_original {
  color: var(--bs-neutral-500);
  text-decoration: line-through;
}
.product-btn {
  display: block;
  margin-top: 10px;
}
.product-btn .btn {
  width: 100%;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .product-btn {
    margin-top: 15px;
  }
  .product-btn .btn {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .product-btn {
    margin-top: 20px;
  }
  .product-btn .btn {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .product-btn {
    margin-top: 25px;
  }
}
/****************************** ****************************** 
                        Pagination CSS
****************************** *****************************/
/*WP Pagination*/
.wp-pagenavi-wrapper .wp-pagenavi {
  text-align: center;
  margin: 2.5rem 0 0;
  flex-wrap: wrap;
}
.wp-pagenavi-wrapper .wp-pagenavi .current, .wp-pagenavi-wrapper .wp-pagenavi .extend, .wp-pagenavi-wrapper .wp-pagenavi .page {
  text-decoration: none;
}
.wp-pagenavi-wrapper .wp-pagenavi .current {
  color: var(--bs-primary-900);
  background: var(--bs-primary-500);
}
.wp-pagenavi-wrapper .wp-pagenavi .previouspostslink, .wp-pagenavi-wrapper .wp-pagenavi .nextpostslink, .wp-pagenavi-wrapper .wp-pagenavi .page {
  text-decoration: none;
  color: var(--bs-neutral-500);
}
.wp-pagenavi-wrapper .wp-pagenavi .previouspostslink:hover, .wp-pagenavi-wrapper .wp-pagenavi .nextpostslink:hover, .wp-pagenavi-wrapper .wp-pagenavi .page:hover {
  color: var(--bs-primary-900);
}
/*Pagination CSS*/
.woocommerce nav.woocommerce-pagination {
  text-align: center;
  border: 0;
  justify-content: center;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .woocommerce nav.woocommerce-pagination {
    margin: 2.5rem 0 0;
  }
}
.woocommerce nav.woocommerce-pagination a, .woocommerce nav.woocommerce-pagination span {
  font: normal 500 .875rem/1.125 var(--body-theme-font);
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  color: var(--bs-neutral-500);
  padding: 0;
  min-width: initial;
  text-decoration: none;
}
.woocommerce nav.woocommerce-pagination a.prev, .woocommerce nav.woocommerce-pagination a.next {
  width: auto;
}
.woocommerce nav.woocommerce-pagination a:focus, .woocommerce nav.woocommerce-pagination a:hover {
  background: transparent;
  color: var(--bs-primary-900);
}
.woocommerce nav.woocommerce-pagination span.current {
  color: var(--bs-primary-900);
  background: var(--bs-primary-500);
  border-radius: 50%;
}
/****************************** ****************************** 
                      Product Filter CSS
****************************** *****************************/
.product-filter-section {
  display: block;
}
.product-filter-wrap {
  display: flex;
  align-items: center;
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-100);
  border-radius: 25px;
  padding: 5px;
  margin-bottom: 1.75rem;
}
@media (min-width: 1200px) {
  .product-filter-wrap {
    border-radius: 100px;
  }
}
.product-filter--left {
  display: flex;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .product-filter--left {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199.98px) {
  .product-filter--left .dropdown {
    width: calc(25% - 15px);
    margin: 5px;
  }
  .product-filter--left .dropdown .btn {
    width: 100%;
  }
}
.product-filter--left .dropdown .btn {
  padding: 0 15px;
  height: 42px;
  text-align: left;
  min-width: 100px;
  margin: 0 2px;
}
@media (min-width: 1630px) {
  .product-filter--left .dropdown .btn {
    min-width: 115px;
  }
}
.product-filter--left .dropdown .btn span {
  padding-right: 20px;
}
.product-filter--left .dropdown .btn span b {
  font-weight: 400;
  color: var(--bs-neutral-500);
}
.product-filter--left .dropdown .btn.dropdown-toggle::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='1258 0 24 24'%3e%3cpath fill='none' stroke='%23737373' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1264 9L1270 15L1276 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  height: 18px;
  width: 18px;
  border: none;
  position: absolute;
  top: calc(50% - 9px);
  right: 18px;
}
.product-filter--left .dropdown:hover .btn.dropdown-toggle::after, .product-filter--left .dropdown:active .btn.dropdown-toggle::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='1258 0 24 24'%3e%3cpath fill='none' stroke='%23141414' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M1264 9L1270 15L1276 9'/%3e%3c/svg%3e");
}
.product-filter--left .dropdown .dropdown-menu {
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-100);
  box-shadow: 0px 4px 8px 0px rgba(16, 24, 40, 0.10);
  border-radius: 8px;
  padding: 0;
  font-size: 1rem;
  color: var(--gray);
  margin-top: 6px !important;
  min-width: 328px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body {
  padding: 10px;
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
}
.filter-modal .accordion-body .dropdown-body {
  list-style: none;
  padding: 8px 0;
  max-height: auto;
  overflow-y: auto;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body li, .filter-modal .accordion-body .dropdown-body li {
  background: var(--bs-shades-0);
  padding: 10px 14px;
  margin: 2px 0;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body li .checkbox, .filter-modal .accordion-body .dropdown-body li .checkbox {
  position: relative;
}
.filter-modal .accordion-body .dropdown-body li {
  padding: 10px 1rem;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body li:hover, .filter-modal .accordion-body .dropdown-body li:hover {
  background: var(--bs-neutral-50);
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body li.active, .filter-modal .accordion-body .dropdown-body li.active {
  background: var(--bs-neutral-100);
}
.product-filter--left .dropdown .dropdown-menu .dropdown-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid var(--bs-neutral-100);
  justify-content: space-between;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-footer .btn {
  text-align: center;
  margin: 0;
  width: 48%;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-footer .btn svg {
  width: 20px;
  height: 20px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-footer .btn span {
  padding-right: 0;
}
/*Price Range Slider*/
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body, .filter-modal .accordion-body .dropdown-body.price-slider-body {
  padding: 10px 20px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .dropdown-header, .filter-modal .accordion-body .dropdown-body.price-slider-body .dropdown-header {
  padding: 0 0 5px;
  font-size: 1rem;
  color: var(--bs-neutral-900);
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body small.price-min-max, .filter-modal .accordion-body .dropdown-body.price-slider-body small.price-min-max {
  font-size: 0.875rem;
  color: var(--bs-neutral-400);
  display: block;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider {
  display: block;
  margin: 18px 0 0;
  text-align: center;
  height: 55px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-range-slider, .filter-modal .price-range-slider {
  display: none;
  height: 0;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal .ui-slider-handle, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal .ui-slider-handle {
  margin-left: -.6em;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: -8px;
  background: var(--bs-shades-0) !important;
  border-color: var(--bs-neutral-500) !important;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal .ui-slider-handle span, .product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal .ui-slider-range span, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal .ui-slider-handle span {
  font-size: 1rem;
  color: var(--bs-neutral-500);
  font-weight: 500;
  position: absolute;
  bottom: -30px;
  font-family: var(--body-theme-font);
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.minimum-slider, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.minimum-slider {
  left: 20px;
  right: auto;
  text-align: left;
  width: auto !important;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.maximum-slider, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.maximum-slider {
  right: 0;
  left: auto;
  text-align: right;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.minimum-slider, .product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.maximum-slider, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.minimum-slider, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range.ui-slider-horizontal span.maximum-slider {
  font-size: 1rem;
  color: var(--bs-neutral-500);
  font-weight: 500;
  font-family: var(--body-theme-font);
  width: auto !important;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider .ui-widget-content, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider .ui-widget-content {
  background: var(--bs-neutral-300);
  border: 0 !important;
  border-radius: 20px;
  height: 8px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.price-slider-body .price-slider #slider-range .ui-widget-header, .filter-modal .accordion-body .dropdown-body.price-slider-body .price-slider #slider-range .ui-widget-header {
  background: var(--bs-primary);
  height: 8px;
}
/*Colour Filter*/
.product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour li, .filter-modal .accordion-body .dropdown-body.pa_colour li {
  padding: 16px 14px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .checkbox-custom-label, .product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .form-check-label, .filter-modal .accordion-body .dropdown-body.pa_colour .checkbox-custom-label, .filter-modal .accordion-body .dropdown-body.pa_colour .form-check-label {
  overflow: inherit;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .checkbox-custom + .checkbox-custom-label::before, .product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .form-check-input + .form-check-label::before, .filter-modal .accordion-body .dropdown-body.pa_colour .checkbox-custom + .checkbox-custom-label::before, .filter-modal .accordion-body .dropdown-body.pa_colour .form-check-input + .form-check-label::before {
  height: 32px;
  width: 32px;
  border: 0;
  box-shadow: 0 0 0 2px var(--bs-neutral-300), 0 0 0 5px white inset;
  border-radius: 100px;
  margin-top: -4px;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .checkbox-custom:checked + .checkbox-custom-label::before, .product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .form-check-input:checked + .form-check-label::before, .filter-modal .accordion-body .dropdown-body.pa_colour .checkbox-custom:checked + .checkbox-custom-label::before, .filter-modal .accordion-body .dropdown-body.pa_colour .form-check-input:checked + .form-check-label::before {
  background-image: url("data:image/svg+xml,<svg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 3L4.5 8.5L2 6' stroke='%23141414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 19.5L5 12.5L12 5.5' stroke='%23B4D44D' stroke-width='0' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 50% 50%;
  border: 0;
  box-shadow: 0 0 0 2px var(--bs-primary), 0 0 0 5px white inset;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour li .checkbox-custom + .checkbox-custom-label.multicolour::before, .filter-modal .accordion-body .dropdown-body.pa_colour li .checkbox-custom + .checkbox-custom-label.multicolour::before {
  background-image: url(../images/color-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .checkbox-custom:checked + .checkbox-custom-label.multicolour::before, .product-filter--left .dropdown .dropdown-menu .dropdown-body.pa_colour .form-check-input:checked + .form-check-label.multicolour::before, .filter-modal .accordion-body .dropdown-body.pa_colour .checkbox-custom:checked + .checkbox-custom-label.multicolour::before, .filter-modal .accordion-body .dropdown-body.pa_colour .form-check-input:checked + .form-check-label.multicolour::before {
  background-image: url("data:image/svg+xml,<svg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 3L4.5 8.5L2 6' stroke='%23141414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 19.5L5 12.5L12 5.5' stroke='%23B4D44D' stroke-width='0' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 50% 50%;
}
/*Product Filter Right*/
.product-filter--right {
  display: flex;
  margin-left: auto;
  margin-right: 20px;
  flex-shrink: 0;
}
.resetfilter {
  font-weight: 500;
  color: var(--bs-neutral-500);
  display: flex;
  align-items: center;
}
.resetfilter svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.resetfilter:hover {
  color: var(--bs-neutral-900);
}
/*Active Filters*/
.product-active-filter {
  display: block;
  margin-bottom: 1.75rem;
}
.product-active-filter h6 {
  font-size: 1rem;
  color: var(--bs-shades-100);
}
@media (min-width: 1200px) {
  .product-active-filter h6 {
    font-size: 1.125rem;
  }
}
.product-active-filter ul {
  list-style: none;
  margin: 0 -4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.product-active-filter ul li {
  margin: 4px;
}
.product-active-filter ul li .btn {
  border-color: var(--bs-neutral-900);
  color: var(--bs-neutral-900);
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
.product-active-filter ul li .btn .icon {
  width: 18px;
  height: 18px;
}
.product-active-filter ul li .btn span {
  padding: 0 12px;
}
/*Product Sorting*/
.product-sorting {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}
.product-sorting .sortby .form-select, .product-mobile-filter-section .sortby .form-select {
  padding: 0.5rem 2.25rem 0.5rem 1.15rem;
  background-position: right 1rem center;
}
.product-showing {
  margin-left: auto;
  color: var(--bs-neutral-500);
}
/*Mobile Filters*/
.product-mobile-filter-section .btn:not(.modal-footer .btn) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.product-mobile-filter-section .btn .icon:not(.modal-footer .btn .icon) {
  width: 20px;
  height: 20px;
}
.product-mobile-filter-section .product-showing {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 15px;
}
/*Filter Modal for Mobile*/
.filter-modal .modal-header {
  border: 0;
  padding: 2rem 1rem;
}
.filter-modal .modal-header .btn-close {
  background-color: var(--bs-neutral-200);
  width: 32px;
  height: 32px;
  border-radius: 100px;
  outline: none;
  box-shadow: none;
  position: initial;
}
.filter-modal .modal-body {
  padding: 0 1rem;
}
.filter-modal .modal-title {
  font-size: 1.45rem !important;
  color: var(--bs-primary-900);
}
.filter-modal .modal-footer {
  display: flex;
  padding: 30px 1rem;
  border-top: 1px solid var(--bs-neutral-100);
  justify-content: space-between;
}
.filter-modal .modal-footer .btn {
  text-align: center;
  margin: 0;
  width: 48%;
  min-height: 52px;
}
.filter-modal .modal-footer .btn svg {
  width: 20px;
  height: 20px;
}
.filter-modal .modal-footer .btn span {
  padding-right: 0;
}
/**/
.filter-modal .accordion-item {
  border-bottom: 1px solid var(--bs-neutral-200);
}
.filter-modal .accordion-item:first-child {
  border-top: 1px solid var(--bs-neutral-200);
}
.filter-modal .accordion-item:last-child {
  border-bottom: 1px solid var(--bs-neutral-200);
}
.filter-modal .accordion-item i {
  width: 22px;
  height: 22px;
  margin-right: 15px;
}
.filter-modal .accordion-item i img {
  width: 100%;
  height: 100%;
}
.filter-modal .accordion-button {
  background-color: transparent;
  padding: 1rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bs-neutral-700);
}
.filter-modal .accordion-button span b, .filter-modal .accordion-button span.mobile-clear {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--bs-neutral-400);
}
.filter-modal .accordion-button:focus {
  box-shadow: none;
}
.filter-modal .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232D2C2F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 16px;
  background-position: center;
}
.filter-modal .accordion-button:not(.collapsed) {
  color: var(--bs-neutral-700);
  background-color: transparent;
  box-shadow: none;
}
.filter-modal .accordion-body {
  background-color: transparent;
  padding: 0 0;
}
.filter-modal .accordion-body .checkbox-custom + .checkbox-custom-label::before, .filter-modal .accordion-body .form-check-input + .form-check-label::before {
  margin-top: 1px;
}
/****************************** ****************************** 
                        Product Detail CSS
****************************** *****************************/
/*Product Main*/
.product-main-section {
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .product-main-section {
    padding: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .product-main-section {
    padding: 3.25rem 0;
  }
}
/*Product Content Section*/
.product-content-section {
  display: flex;
  flex-direction: column;
}
/*Product Heading*/
.product-heading-part .product--cat {
  margin: 0;
  font-size: 1rem;
  color: var(--bs-primary-900);
  font-weight: 600;
}
@media (min-width: 768px) {
  .product-heading-part .product--cat {
    margin: 0 0 2px;
    font-size: 1.125rem;
  }
}
.product-heading-part .product--sku {
  margin-top: 0;
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .product-heading-part .product--sku {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}
body .product-heading-part h1, body .product-heading-part h2 {
  font-size: 1.25rem;
  color: var(--bs-neutral-900);
  font-weight: 600;
  margin: 0 0 1rem;
}
@media (min-width: 576px) {
  body .product-heading-part h1, body .product-heading-part h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  body .product-heading-part h1, body .product-heading-part h2 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  body .product-heading-part h1, body .product-heading-part h2 {
    font-size: 2rem;
    margin: 0 0 0.75rem;
  }
}
/*Product Value*/
.product-value-part {
  color: var(--bs-primary-900);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  margin: 5px 0;
  align-items: baseline;
  line-height: 1;
}
.product-value-part span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
  display: inline-block;
  margin: 0 10px 0 0;
}
.product-value-part .p_discount {
  color: var(--bs-primary-900);
  font-weight: 600;
  font-size: 1.75rem;
}
.product-value-part .p_original {
  color: var(--bs-neutral-500);
  text-decoration: line-through;
  font-size: 1.75rem;
}
@media (min-width: 576px) {
  .product-value-part .p_discount {
    font-size: 1.75rem;
  }
  .product-value-part .p_original {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .product-value-part .p_discount {
    font-size: 2rem;
  }
  .product-value-part .p_original {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .product-value-part .p_discount {
    font-size: 2.5rem;
  }
  .product-value-part .p_original {
    font-size: 2.5rem;
  }
}
@media (min-width: 1630px) {
  .product-value-part {
    font-size: 1.125rem;
  }
  .product-value-part .p_discount {
    font-size: 3rem;
  }
  .product-value-part .p_original {
    font-size: 3rem;
  }
}
/*Woo-Commerce Sigle Variation*/
.woocommerce-variation.single_variation {
  padding: 1rem 0;
}
.woocommerce-variation.single_variation .woocommerce-variation-price {
  color: var(--bs-primary-900);
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  margin: 5px 0;
  line-height: 1;
  justify-content: center;
}
.woocommerce-variation.single_variation .woocommerce-variation-price span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
  display: inline-block;
}
.woocommerce-variation.single_variation .woocommerce-variation-price span.p_original {
  margin: 0 10px 0 0;
}
.woocommerce-variation.single_variation .woocommerce-variation-price .p_discount {
  color: var(--bs-primary-900);
  font-weight: 600;
  font-size: 1.25rem;
}
.woocommerce-variation.single_variation .woocommerce-variation-price .p_original {
  color: var(--bs-neutral-500);
  text-decoration: line-through;
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  .woocommerce-variation.single_variation .woocommerce-variation-price .p_discount {
    font-size: 1.5rem;
  }
  .woocommerce-variation.single_variation .woocommerce-variation-price .p_original {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .woocommerce-variation.single_variation .woocommerce-variation-price {
    font-size: 1.125rem;
  }
  .woocommerce-variation.single_variation .woocommerce-variation-price .p_discount {
    font-size: 1.75rem;
  }
  .woocommerce-variation.single_variation .woocommerce-variation-price .p_original {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .woocommerce-variation.single_variation .woocommerce-variation-price .p_discount {
    font-size: 2rem;
  }
  .woocommerce-variation.single_variation .woocommerce-variation-price .p_original {
    font-size: 2rem;
  }
}
.woocommerce-variation-availability {
  text-align: center;
}
.woocommerce-variation-availability .stock {
  padding: .75rem;
}
.woocommerce-variation-availability .stock.out-of-stock, .stock.out-of-stock {
  background: var(--bs-error-50);
  border: 1px solid var(--bs-error-100);
  color: var(--bs-error-500);
  padding: .75rem;
  text-align: center;
}
.woocommerce-variation-availability .stock.in-stock, .stock.in-stock {
  background: var(--bs-success-50);
  border: 1px solid var(--bs-success-100);
  color: var(--bs-success-700);
  padding: .75rem;
  text-align: center;
}
/*Product Variation Select*/
.product-content-section .variations select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-neutral-500);
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-neutral-200);
  border-radius: 100px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .product-content-section .variations select {
    transition: none;
  }
}
.product-content-section .variations select:focus {
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: none;
}
.product-content-section .variations select[multiple], .product-content-section .variations select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.product-content-section .variations select:disabled {
  background-color: var(--bs-secondary-bg);
}
.product-content-section .variations select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}
/*Product Info*/
.product-info-part, body .product-info-part p {
  font-size: 1rem;
  color: var(--bs-neutral-500);
  font-weight: 400;
}
.product-content-section hr {
  color: var(--bs-neutral-400);
}
.product-content-section form.cart {
  display: flex;
  flex-direction: column;
}
/*Product Options*/
.product-content-section .col-form-label {
  font-weight: 600;
  color: var(--bs-primary-900);
  line-height: 2;
  font-size: 1rem;
}
.product-content-section .col-form-label span {
  font-weight: 400;
  color: var(--bs-neutral-500);
}
/*Qty*/
.quantity {
  cursor: pointer;
  background: #ffffff;
  border: 1px solid var(--bs-neutral-200);
  border-radius: 100px;
  height: 46px;
  position: relative;
  display: flex;
  max-width: 130px;
  overflow: hidden;
}
.quantity .minus, .quantity .plus {
  width: 45px;
  height: 100%;
  text-align: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bs-neutral-500);
  line-height: 40px;
}
.quantity input[type="text"] {
  height: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--bs-neutral-500);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  width: 38px;
  outline: none;
}
/*Product Calculation*/
.product-calculation-part {
  background: var(--bs-neutral-100);
  padding: 1rem;
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 576px) {
  .product-calculation-part {
    padding: 2rem;
  }
}
body .product-calculation-part h5 {
  color: var(--bs-primary-900);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  body .product-calculation-part h5 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-align: left;
  }
}
.product-calculation-part .btn {
  border-width: 2px;
  font-weight: 500;
  --bs-btn-padding-y: 1rem;
}
.product-calculation-part .btn-outline-primary {
  background-color: var(--bs-neutral-50);
}
.product-calculation-part .btn-outline-primary:hover {
  background-color: var(--bs-primary);
}
body .product-calculation-part p {
  color: var(--bs-primary-900);
  font-weight: 600;
  font-size: 1rem;
}
.product-calculation-part .product-inputField {
  position: relative;
  margin-bottom: 1rem;
}
.product-calculation-part .product-inputField .form-control {
  padding: 1.125rem 1.5rem;
  font-weight: 500;
}
.product-calculation-part .product-inputField a {
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 12px);
  color: var(--bs-neutral-900);
}
.product-calculation-part .product-totals {
  display: flex;
  border-top: 1px solid var(--bs-neutral-300);
  border-bottom: 1px solid var(--bs-neutral-300);
  padding: 1.25rem 0;
  margin: 1rem 0 0.75rem;
  color: var(--bs-primary-900);
}
.product-calculation-part .product-totals span {
  font-size: 1.25rem;
  font-weight: 600;
}
.product-calculation-part .product-totals span small {
  font-size: 0.775rem;
  color: var(--bs-neutral-500);
  font-weight: 400;
}
@media (min-width: 576px) {
  .product-calculation-part .product-totals span {
    font-size: 1.5rem;
  }
  .product-calculation-part .product-totals span small {
    font-size: 0.875rem;
  }
}
.product-calculation-part .product-btns .btn {
  margin-top: 1rem;
  font-size: 1rem;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-calculation-part .product-btns .btn .icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.product-calculation-part .product-btns p {
  margin-bottom: 0;
  color: var(--bs-neutral-500);
  font-weight: 500;
  display: flex;
  justify-content: center;
}
.product-calculation-part .product-btns p a.btn-link {
  color: var(--bs-primary-900);
  margin-left: 5px;
  text-decoration: underline;
}
.product-calculation-part .product-btns p a.btn-link::after {
  display: none;
}
.product-calculation-part .product-btns p a.btn-link:hover {
  color: var(--bs-primary-900);
}
/*Without Calc*/
.product-calculation-part.without-calc .product-totals {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin: 0;
}
/*Product Jumppoints*/
.product-jumppoints {
  margin-top: 1.5rem;
}
.product-jumppoints .product-jp--ic {
  float: left;
  width: 24px;
  margin-right: 15px;
}
.product-jumppoints .product-jp--ic img {
  width: 100%;
  height: auto;
}
.product-jumppoints .product-jp--text {
  overflow: hidden;
  padding-top: 2px;
}
.product-jumppoints .product-jp--text h6 {
  font-size: 1rem;
  color: var(--bs-primary-900);
  font-weight: 600;
  margin: 0;
}
@media (min-width: 576px) {
  .product-jumppoints .product-jp--text h6 {
    font-size: 1.125rem;
  }
}
.product-jumppoints .product-jp--text h6 a {
  margin-left: 5px;
}
.product-jumppoints .product-jp--text h6 a .icon {
  width: 16px;
  height: 16px;
}
body .product-jumppoints .product-jp--text p {
  font-size: 0.875rem;
  color: var(--bs-neutral-800);
  font-weight: 500;
  margin: 0.5rem 0 0;
}
body .product-jumppoints .product-jp--text p span {
  color: var(--bs-neutral-500);
  font-weight: 400;
}
/*Product Image*/
.product-image-part {
  display: block;
}
.product-image-part:not(.enabledSlider) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-image-part:not(.enabledSlider) .swiper-wrapper .swiper-slide {
  overflow: hidden;
  padding: 0;
  position: relative;
  width: auto !important;
  aspect-ratio: 1;
}
.product-image-part .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image-part .swiper-wrapper .swiper-slide.has-video a .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  box-shadow: 0px 6px 12px rgba(16, 24, 40, 0.10);
  border-radius: 50%;
}
.product-image-part:not(.enabledSlider) .swiper-wrapper .swiper-slide:only-child {
  grid-area: 1 / 1 / 2 / 3;
}
.product-image-part .swiper-button-next, .product-image-part .swiper-button-prev {
  background-color: var(--bs-neutral-200);
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 9.21094L1 5.21094L5 1.21094' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  color: var(--bs-neutral-500);
  overflow: hidden;
  padding: 0;
  text-align: center;
  background-position: 50% 50%;
  background-size: 9px;
}
.product-image-part .swiper-button-next {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 9.21094L5 5.21094L1 1.21094' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.product-image-part .swiper-button-prev {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 9.21094L1 5.21094L5 1.21094' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.product-image-part .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 9.21094L5 5.21094L1 1.21094' stroke='%232D2C2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.product-image-part .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 9.21094L1 5.21094L5 1.21094' stroke='%232D2C2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.product-image-part .swiper-button-next::after, .product-image-part .swiper-button-prev::after {
  display: none;
}
.product-image-part .swiper-button-next:hover, .product-image-part .swiper-button-prev:hover {
  background-color: var(--bs-primary);
}
.product-image-part .swiper-pagination-fraction {
  background: var(--bs-neutral-50);
  border: 1px solid var(--bs-neutral-200);
  border-radius: 100px;
  position: absolute;
  top: 15px;
  bottom: auto;
  right: 15px;
  left: auto;
  width: auto;
  padding: 1px 10px;
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 50px;
  text-align: center;
}
/*Product Features*/
.product-features-part {
  display: block;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .product-features-part {
    margin-top: 2.5rem;
  }
}
.product-features-part ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.product-features-part ul li {
  width: 33.33%;
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  .product-features-part ul li {
    text-align: center;
    padding: 10px 5px;
  }
}
.product-features-part ul li span.icon {
  width: 45px;
  display: inline-block;
}
@media (min-width: 768px) {
  .product-features-part ul li span.icon {
    float: left;
  }
}
.product-features-part ul li span.icon img {
  width: 30px;
}
.product-features-part ul li span.content {
  overflow: hidden;
  display: block;
  padding-top: 3px;
  font-size: 0.875rem;
  color: var(--bs-primary-900);
  line-height: normal;
}
@media (min-width: 768px) {
  .product-features-part ul li span.content {
    font-size: 1rem;
  }
}
@media (min-width: 1630px) {
  .product-features-part ul li span.content {
    font-size: 1.125rem;
  }
}
/****************************** ****************************** 
                  Trust Icons Block
****************************** *****************************/
.zdcb-trust-icons-block {
  display: block;
  background: var(--bs-neutral-100);
}
@media (max-width: 1023.98px) {
  .zdcb-trust-icons-block .container {
    max-width: 100%;
    padding: 0;
  }
}
.zdcb-trust-icons-block ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.zdcb-trust-icons-block ul li {
  position: relative;
  font-size: 1rem;
  color: var(--bs-primary-900);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 20px;
  width: auto;
}
.zdcb-trust-icons-block ul li::after {
  content: "";
  position: absolute;
  background: var(--bs-neutral-400);
  width: 1px;
  height: 100%;
  right: 0;
}
.zdcb-trust-icons-block ul li:last-child::after {
  display: none;
}
.zdcb-trust-icons-block ul li i {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}
.zdcb-trust-icons-block ul li i img {
  width: 100%;
}
/****************************** ****************************** 
                   Team  Block
****************************** *****************************/
.zdcb-team-block > hr {
  display: none;
}
.zdcb-team-block.has-background > hr {
  display: block;
  position: absolute;
  z-index: -1;
  background: var(--bs-neutral-100);
  border: 0;
  margin: 0 auto;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
  opacity: 1;
}
.zdcb-team-block > .container {
  position: relative;
}
/****************************** ****************************** 
                   Content Block
****************************** *****************************/
.zdcb-content-form-block > hr {
  display: none;
}
.zdcb-content-form-block.has-background > hr {
  display: block;
  position: absolute;
  z-index: 0 !important;
  background: var(--bs-neutral-100) !important;
  border: 0;
  margin: 0 auto;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
  opacity: 1;
}
.zdcb-content-form-block > .container {
  position: relative;
  z-index: 1 !important;
}
/****************************** ****************************** 
                   Range Jump Points Block
****************************** *****************************/
.zdcb-range-jumppoint-block {
  display: block;
}
.zdcb-range-jumppoint-block ul {
  list-style: none;
  margin: 0 -8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.zdcb-range-jumppoint-block ul li {
  width: 50%;
  margin: 8px 0;
}
@media (min-width: 1024px) {
  .zdcb-range-jumppoint-block ul {
    margin: 0 -12px;
  }
  .zdcb-range-jumppoint-block ul li {
    width: 100%;
    margin: 12px 0;
  }
}
@media (min-width: 1024px) {
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 1) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 2) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 3) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 4) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 5) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 6) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 7) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-8 li:nth-child(8n + 8) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 1) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 2) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 3) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 4) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 5) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 6) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-7 li:nth-child(7n + 7) {
    width: 25%;
  }
  .zdcb-range-jumppoint-block ul.card-count-6 li:nth-child(6n + 1) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-6 li:nth-child(6n + 2) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-6 li:nth-child(6n + 3) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-6 li:nth-child(6n + 4) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-6 li:nth-child(6n + 5) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-6 li:nth-child(6n + 6) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-5 li:nth-child(5n + 1) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-5 li:nth-child(5n + 2) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-5 li:nth-child(5n + 3) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-5 li:nth-child(5n + 4) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-5 li:nth-child(5n + 5) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-4 li:nth-child(4n + 1) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-4 li:nth-child(4n + 2) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-4 li:nth-child(4n + 3) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-4 li:nth-child(4n + 4) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-3 li:nth-child(3n + 1) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-3 li:nth-child(3n + 2) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-3 li:nth-child(3n + 3) {
    width: 33.33%;
  }
  .zdcb-range-jumppoint-block ul.card-count-2 li:nth-child(2n + 1) {
    width: 50%;
  }
  .zdcb-range-jumppoint-block ul.card-count-2 li:nth-child(2n + 2) {
    width: 50%;
  }
}
.range-jumppoint-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  background: var(--bs-neutral-100);
  margin: 0 8px;
  height: 100%;
}
@media (min-width: 1024px) {
  .range-jumppoint-card {
    margin: 0 12px;
  }
}
.range-jumppoint-card--text {
  padding: 1.5rem 0.5rem 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .range-jumppoint-card--text {
    padding: 2rem 1rem 1rem;
  }
}
@media (min-width: 1200px) {
  .range-jumppoint-card--text {
    padding: 2.5rem 1rem 1rem;
  }
}
body .range-jumppoint-card--text h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
@media (min-width: 480px) {
  body .range-jumppoint-card--text h4 {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  body .range-jumppoint-card--text h4 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  body .range-jumppoint-card--text h4 {
    margin-bottom: 1.75rem;
    font-size: 1.7rem;
  }
}
@media (min-width: 1630px) {
  body .range-jumppoint-card--text h4 {
    font-size: 2rem;
  }
}
.range-jumppoint-card--text .btn {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 479.98px) {
  .range-jumppoint-card--text .btn {
    min-width: 120px;
  }
}
.range-jumppoint-card:hover {
  background: var(--bs-primary-100);
}
.range-jumppoint-card:hover .btn {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.range-jumppoint-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.range-jumppoint-card--img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.range-jumppoint-card--img img {
  object-fit: cover;
}
/****************************** ****************************** 
                   Jump Points Block
****************************** *****************************/
.zdcb-jumppoint-block {
  display: block;
  background: var(--bs-neutral-100);
}
.zdcb-jumppoint-block ul {
  list-style: none;
  margin: 0 -8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1024px) {
  .zdcb-jumppoint-block ul {
    margin: 0 -12px;
  }
}
.zdcb-jumppoint-block ul li {
  width: 50%;
  margin: 1rem 0;
}
@media (min-width: 1024px) {
  .zdcb-jumppoint-block ul li {
    width: 25%;
    margin: 1.5rem 0;
  }
}
.jumppoint-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 8px;
  height: 100%;
}
@media (min-width: 1024px) {
  .jumppoint-card {
    margin: 0 12px;
  }
}
.jumppoint-card--img {
  display: block;
  padding-top: 130%;
  position: relative;
}
.jumppoint-card--img img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.jumppoint-card--text {
  padding: 1rem 0 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .jumppoint-card--text {
    padding: 1.5rem 0 0;
  }
}
body .jumppoint-card--text h4 {
  font-size: 1.2rem;
  line-height: normal;
}
@media (min-width: 768px) {
  body .jumppoint-card--text h4 {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  body .jumppoint-card--text h4 {
    font-size: 1.4rem;
  }
}
.jumppoint-card--text .btn {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.75rem;
}
@media (min-width: 1024px) {
  .jumppoint-card--text .btn {
    margin-top: 1rem;
  }
}
/****************************** ****************************** 
            Product Slider Block + Tab Block
****************************** *****************************/
.zdcb-product-slider-block > hr {
  display: none;
}
.zdcb-product-slider-block.has-background > hr {
  display: block;
  position: absolute;
  z-index: 0;
  background: var(--bs-neutral-100);
  border: 0;
  margin: 0 auto;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
  opacity: 1;
}
.zdcb-product-slider-block > .container {
  position: relative;
  z-index: 1;
}
.zdcb-product-slider-block .section-heading-block {
  text-align: center;
}
@media(min-width:1024px) {
  .zdcb-product-slider-block .section-heading-block {
    text-align: left;
  }
}
@media (max-width: 1023.98px) {
  .product-slider-tabs {
    margin-top: 2rem;
  }
}
.product-slider-tabs .nav-tabs {
  justify-content: center;
  text-align: center;
  border: 1px solid var(--bs-primary);
  border-radius: 100px;
  margin-left: auto;
  padding: 8px;
}
@media (max-width: 1023.98px) {
  .product-slider-tabs .nav-tabs {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  .product-slider-tabs .nav-tabs {
    width: 100%;
    padding: 4px;
  }
}
.product-slider-tabs .nav-tabs .nav-item {
  display: flex;
  margin: 0 4px;
  width: calc(50% - 4px);
}
.product-slider-tabs .nav-tabs .nav-item:first-child {
  margin-left: 0;
}
.product-slider-tabs .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.product-slider-tabs .nav-tabs .nav-item:only-child {
  width: calc(100% - 4px);
}
.product-slider-tabs .nav-tabs .nav-link {
  font-family: var(--body-theme-font);
  font-weight: 500;
  border: none;
  border-radius: 100px;
  color: var(--bs-primary-800);
  padding: 1rem 0.5rem;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  min-width: 225px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .product-slider-tabs .nav-tabs .nav-link {
    min-width: 210px;
  }
}
@media (max-width: 479.98px) {
  .product-slider-tabs .nav-tabs .nav-link {
    padding: 0.6rem 0.5rem;
    font-size: 0.875rem;
    min-width: initial;
  }
}
@media (max-width: 359.98px) {
  .product-slider-tabs .nav-tabs .nav-link {
    font-size: 0.7rem;
  }
}
.product-slider-tabs .nav-tabs .nav-link svg, .product-slider-tabs .nav-tabs .nav-link img {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}
@media (max-width: 479.98px) {
  .product-slider-tabs .nav-tabs .nav-link svg, .product-slider-tabs .nav-tabs .nav-link img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 359.98px) {
  .product-slider-tabs .nav-tabs .nav-link svg, .product-slider-tabs .nav-tabs .nav-link img {
    margin-right: 3px;
    width: 14px;
    height: 14px;
  }
}
.product-slider-tabs .nav-tabs .nav-link.active {
  background-color: var(--bs-primary);
}
.zdcb-product-slider-block .product-slider-content .product-posts__slider.swiper .product-item-box {
  margin: 0;
}
.product-posts__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .product-posts__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 60px;
  height: 3px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .product-posts__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .product-posts__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 40px;
  }
}
/*.product-posts__slider .product-item-box .product-pic > a {
    padding-top: 314px;
}
.product-posts__slider .product-item-box .product-pic img {
    width: auto !important;
    height: auto !important;
}*/
.product-slider-content .loading {
  text-align: center;
  padding: 3rem 0;
}
.product-slider-content .loading img {
  width: 100px;
}
.product-posts__slider .swiper-container {
  --add-bottom: 4rem;
  padding-bottom: var(--add-bottom);
}
.product-posts__slider .swiper-container [class^="swiper-button-"] {
  top: calc(50% - var(--add-bottom) / 3);
}
.product-posts__slider .swiper-button-next, .product-posts__slider .swiper-button-prev, .zdcb-full-width-slider-block .swiper-button-next, .zdcb-full-width-slider-block .swiper-button-prev {
  background-color: var(--bs-neutral-200);
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 9.21094L1 5.21094L5 1.21094' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  color: var(--bs-neutral-500);
  overflow: hidden;
  padding: 0;
  text-align: center;
  background-size: 10px;
}
.product-posts__slider .swiper-button-next, .zdcb-full-width-slider-block .swiper-button-next {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 9.21094L5 5.21094L1 1.21094' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: 53% 50%;
}
.product-posts__slider .swiper-button-prev, .zdcb-full-width-slider-block .swiper-button-prev {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 9.21094L1 5.21094L5 1.21094' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: 47% 50%;
}
.product-posts__slider .swiper-button-next:hover, .zdcb-full-width-slider-block .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 9.21094L5 5.21094L1 1.21094' stroke='%232D2C2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.product-posts__slider .swiper-button-prev:hover, .zdcb-full-width-slider-block .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 9.21094L1 5.21094L5 1.21094' stroke='%232D2C2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.product-posts__slider .swiper-button-next::after, .product-posts__slider .swiper-button-prev::after, .zdcb-full-width-slider-block .swiper-button-next::after, .zdcb-full-width-slider-block .swiper-button-prev::after {
  display: none;
}
.product-posts__slider .swiper-button-next:hover, .product-posts__slider .swiper-button-prev:hover, .zdcb-full-width-slider-block .swiper-button-next:hover, .zdcb-full-width-slider-block .swiper-button-prev:hover {
  background-color: var(--bs-primary);
}
.product-posts__slider {
  height: 100%;
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
}
.product-posts__slider .swiper .swiper-container .swiper-wrapper .product-item-box {
  margin: 0;
}
.zdcb-product-slider-block .product-posts__slider .swiper[class="swiper"] .product-item-box {
  width: auto;
  margin-right: 24px;
}
.product-posts__slider .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 52px;
  height: 52px;
  display: none;
  transform: translateY(-50%);
  margin-top: -2rem;
}
@media(min-width:768px) {
  .product-posts__slider .swiper-button-next {
    right: -40px;
    display: block;
  }
}
@media(min-width:1024px) {
  .product-posts__slider .swiper-button-next {
    right: -50px;
  }
}
@media(min-width:1200px) {
  .product-posts__slider .swiper-button-next {
    right: -40px;
  }
}
@media(min-width:1400px) {
  .product-posts__slider .swiper-button-next {
    right: -130px;
  }
}
.product-posts__slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  display: none;
  margin-top: -2rem;
}
@media(min-width:768px) {
  .product-posts__slider .swiper-button-prev {
    left: -40px;
    display: block;
  }
}
@media(min-width:1024px) {
  .product-posts__slider .swiper-button-prev {
    left: -50px;
  }
}
@media(min-width:1200px) {
  .product-posts__slider .swiper-button-prev {
    left: -40px;
  }
}
@media(min-width:1400px) {
  .product-posts__slider .swiper-button-prev {
    left: -130px;
  }
}
.zdcb-product-slider-block .product-posts__slider .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset);
}
.zdcb-product-slider-block .product-posts__slider .swiper-button-prev + .swiper-button-next {
  right: var(--swiper-navigation-sides-offset);
}
/*@media only screen and (min-width: 1300px) {*/
/*  .zdcb-product-slider-block .product-posts__slider .swiper-button-prev {*/
/*    left: var(--swiper-navigation-sides-offset);*/
/*  }*/
/*}*/
/****************************** ****************************** 
                    Page Title Block
****************************** *****************************/
.zdcb-page-title-block {
  position: relative;
}
.zdcb-page-title-block > hr {
  display: none;
}
.zdcb-page-title-block.has-background > hr {
  display: block;
  position: absolute;
  z-index: 0;
  background-color: var(--bs-neutral-100);
  border: 0;
  margin: 0 auto;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100% !important;
  opacity: 1;
  overflow: inherit;
}
.zdcb-page-title-block.is-overlap > hr {
  height: calc(100% + 15rem) !important;
}
@media (max-width: 767.98px) {
  .zdcb-page-title-block.is-overlap > hr {
    height: calc(100% + 10rem) !important;
  }
}
@media (max-width: 479.98px) {
  .zdcb-page-title-block.is-overlap > hr {
    height: calc(100% + 7.5rem) !important;
  }
}
body .zdcb-page-title-block.is-overlap + section {
  padding-top: 0;
}
.zdcb-page-title-block > .container {
  position: relative;
  z-index: 1;
}
section.zdcb-page-title-block h1, section.zdcb-page-title-block h2, .zdcb-container-block .content h1.wp-block-heading {
  color: var(--bs-primary-900);
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 768px) {
  section.zdcb-page-title-block h1, section.zdcb-page-title-block h2, .zdcb-container-block .content h1.wp-block-heading {
    padding-bottom: 0.75rem;
  }
}
section.zdcb-page-title-block h1::before, section.zdcb-page-title-block h2::before, .zdcb-container-block .content h1.wp-block-heading::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  top: 0;
  left: calc(50% - 30px);
}
.zdcb-container-block .content h1.wp-block-heading::before, .zdcb-container-block .content h1.wp-block-heading.has-text-align-left {
  left: 0;
}
.zdcb-container-block .content h1.wp-block-heading.has-text-align-center::before {
  left: calc(50% - 30px);
}
.zdcb-container-block .content h1.wp-block-heading.has-text-align-right::before {
  left: auto;
  right: 0;
}
section.zdcb-page-title-block p {
  font-size: 0.875rem;
  color: var(--bs-neutral-500);
}
@media (min-width: 768px) {
  section.zdcb-page-title-block p {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  section.zdcb-page-title-block p {
    font-size: 1.125rem;
  }
}
section.zdcb-page-title-block p:last-child {
  margin-bottom: 0;
}
section.zdcb-page-title-block .btn {
  margin-top: 1.5rem;
}
.zdcb-page-title-block .wp-block-buttons .wp-block-button .wp-block-button__link {
  min-width: 200px;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .zdcb-page-title-block .wp-block-buttons .wp-block-button .wp-block-button__link {
    min-width: 100%;
  }
}
.zdcb-page-title-block .wp-block-buttons .wp-block-button + .wp-block-button {
  margin-left: 10px;
}
@media (max-width: 434.98px) {
  .zdcb-page-title-block .wp-block-buttons .wp-block-button + .wp-block-button {
    margin-left: 0;
  }
}
/*Title Filters*/
.zdcb-page-title-block .title-filters {
  display: block;
}
section.zdcb-page-title-block .title-filters h6 {
  color: var(--bs-primary-900);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  section.zdcb-page-title-block .title-filters h6 {
    font-size: 1.125rem;
  }
}
.zdcb-page-title-block .title-filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.zdcb-page-title-block .title-filters ul li {
  margin: 4px 4px;
}
.zdcb-page-title-block .title-filters ul li a:not([class]) {
  color: var(--bs-primary-900);
  background: var(--bs-neutral-50);
  border: 1px solid var(--bs-neutral-300);
  border-radius: 16px;
  padding: 4px 15px;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.4s ease;
}
.zdcb-page-title-block .title-filters ul li a:not([class]):hover, .zdcb-page-title-block .title-filters ul li.active a {
  color: var(--bs-primary-900);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  text-decoration: none;
}
/**/
.zdcb-page-title-block form {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .zdcb-page-title-block form {
    flex-direction: row;
  }
}
.zdcb-page-title-block form select.form-select {
  margin: 5px 5px;
  max-width: 300px;
  padding: 0.75rem 2.25rem 0.75rem 1.5rem;
}
/*Title Sort By*/
.zdcb-page-title-block .title-sortby {
  display: block;
}
/*Title Gallery Filters*/
.title-gallery-filters {
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.title-gallery-filters form {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .title-gallery-filters form {
    flex-direction: row;
  }
}
.title-gallery-filters form select.form-select {
  margin: 5px 5px;
  max-width: 300px;
  padding: 0.75rem 2.25rem 0.75rem 50px;
}
.title-gallery-filters form select.form-select.room_ic {
  background: url(../images/room-icon.svg) left 1.25rem center /17px 17px, var(--bs-form-select-bg-img) right .75rem center /16px 12px var(--bs-body-bg);
  background-repeat: no-repeat;
}
.title-gallery-filters form select.form-select.style_ic {
  background: url(../images/style-icon.svg) left 1.25rem center /17px 17px, var(--bs-form-select-bg-img) right .75rem center /16px 12px var(--bs-body-bg);
  background-repeat: no-repeat;
}
.title-gallery-filters form select.form-select.product_ic {
  background: url(../images/product-icon.svg) left 1.25rem center /17px 17px, var(--bs-form-select-bg-img) right .75rem center /16px 12px var(--bs-body-bg);
  background-repeat: no-repeat;
}
/****************************** ****************************** 
            Find Store Location Plugin Block
****************************** *****************************/
.store-listing-part {
  display: block;
  position: relative;
  background: var(--bs-neutral-50);
  padding: 1.25rem 1.25rem 0 1.25rem;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .store-listing-part {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
}
.zdcb-find-store-block #wpsl-wrap .wpsl-search {
  margin-bottom: 0.75rem;
  padding: 0;
  background: transparent;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap {
  position: relative;
  float: none;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-input, .zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-input input, .zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-input label, .zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-select-wrap {
  display: block;
}
.zdcb-find-store-block #wpsl-search-btn, .zdcb-find-store-block #wpsl-search-wrap div {
  margin-right: 0;
  margin: 0;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap div, .zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap div label {
  float: none;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-input input {
  background: #fff;
  border: 1px solid var(--bs-neutral-100);
  border-radius: 100px;
  font: normal 400 1rem/1.4 inter, sans-serif;
  color: var(--bs-neutral-900);
  padding: 0.8rem 55px 0.8rem 1.5em;
  height: 52px;
  outline: 0;
  width: 100%;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-input input:focus {
  color: var(--bs-neutral-900);
  border-color: var(--bs-primary);
  box-shadow: none;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-wrap .wpsl-search-btn-wrap {
  position: absolute;
  background: transparent;
  border: none;
  right: 0;
  top: 0;
  height: 100%;
  width: 55px;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-btn {
  float: none;
  background: transparent;
  border: none;
  height: 100%;
  width: 100%;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-search-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
/**/
.zdcb-find-store-block #wpsl-wrap #wpsl-stores {
  height: auto !important;
}
.zdcb-find-store-block #wpsl-wrap #wpsl-result-list {
  width: 100%;
  margin-right: 0;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul {
  max-height: 535px;
  overflow-y: auto;
  padding-right: .75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--bs-neutral-200) var(--bs-neutral-50);
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 10px;
  background-color: var(--bs-neutral-50);
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul::-webkit-scrollbar {
  width: 8px;
  background-color: var(--bs-neutral-50);
  ;
  -webkit-overflow-scrolling: auto
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: none;
  background-color: var(--bs-neutral-200)
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li {
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-100);
  padding: 1.5rem;
  border-radius: 8px;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--bs-dark-900);
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .wpsl-contact-details div {
  margin: 10px 0;
  font-size: 0.875rem;
  font-weight: 400;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .wpsl-contact-details div svg {
  width: 18px;
  height: 18px;
  float: left;
  color: var(--bs-primary-900);
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .wpsl-contact-details div span {
  overflow: hidden;
  display: block;
  padding-left: 22px;
  color: var(--bs-neutral-500);
  line-height: normal;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .wpsl-contact-details div span a {
  color: var(--bs-neutral-500);
  font-weight: 400;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .wpsl-contact-details div span a:hover {
  color: var(--bs-primary-900);
  text-decoration: underline;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .wpsl-contact-details div span a.wpsl-directions {
  color: var(--bs-primary-900);
  font-weight: 500;
  text-decoration: underline;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .btn.btn-link {
  color: var(--bs-primary-900);
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: baseline;
  padding: 0;
}
#wpsl-wrap .store-listing-part #wpsl-result-list ul li .btn.btn-link::after {
  border-color: var(--bs-primary-900);
}
/**/
.zdcb-find-store-block #wpsl-wrap #wpsl-gmap {
  float: none;
  width: auto;
  max-height: 360px;
  margin: 0;
}
@media (min-width: 1024px) {
  .zdcb-find-store-block #wpsl-wrap #wpsl-gmap {
    max-height: none;
  }
}
.zdcb-find-store-block .wpsl-no-results-msg {
  text-align: center;
}
.zdcb-find-store-block .wpsl-preloader {
  text-align: center;
}
.zdcb-find-store-block .wpsl-preloader img {
  margin-right: 15px;
}
/****************************** ****************************** 
                    Page 404 / Thank You Page
****************************** *****************************/
@media (min-width: 1024px) {
  .page-template-page-thank-you .wrap > .content .icon-wrapper, .error404 .wrap > .content .icon-wrapper {
    margin-top: 6rem;
    margin-bottom: 2rem;
  }
}
.page-template-page-thank-you .wrap > .content .icon-wrapper .icon__background, .error404 .wrap > .content .icon-wrapper .icon__background {
  color: var(--bs-primary-900);
  background: var(--bs-primary);
}
.page-template-page-thank-you .wrap > .content h1, .error404 .wrap > .content h1 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  margin: 0;
}
.page-template-page-thank-you .wrap > .content h1::before, .error404 .wrap > .content h1::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  top: 0;
  left: calc(50% - 30px);
}
@media (min-width: 1024px) {
  .page-template-page-thank-you .wrap > .content p, .error404 .wrap > .content p {
    font-size: 1.125rem;
  }
}
.page-template-page-thank-you .wrap > .content .socials ul li a:link, .page-template-page-thank-you .wrap > .content .socials ul li a:visited, .error404 .wrap > .content .socials ul li a:link, .error404 .wrap > .content .socials ul li a:visited, .page-checkout.woocommerce-checkout .woocommerce-order .content .socials ul li a:link, .page-checkout.woocommerce-checkout .woocommerce-order .content .socials ul li a:visited {
  border: 1px solid var(--bs-neutral-500);
  background: var(--bs-neutral-100);
  color: var(--bs-primary-900);
}
.page-template-page-thank-you .wrap > .content .socials ul li a:hover, .error404 .wrap > .content .socials ul li a:hover, .page-checkout.woocommerce-checkout .woocommerce-order .content .socials ul li a:hover {
  border: 1px solid var(--bs-primary);
  background: var(--bs-primary);
  color: var(--bs-primary-900);
}
.page-template-page-thank-you .wrap > .content .btn, .error404 .wrap > .content .btn, .page-checkout.woocommerce-checkout .woocommerce-order .content .btn {
  --bs-btn-padding-y: 0.9rem;
  min-width: 180px;
}
/****************************** ****************************** 
                    Blog Page
****************************** *****************************/
@media (min-width: 768px) {
  .blog-grid {
    grid-gap: 20px;
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }
}
body.blog div.meta__date-category, body.page-blog div.meta__date-category, body.archive div.meta__date-category {
  font-weight: 500;
  color: var(--bs-primary-900);
}
body.blog div.meta > div, body.page-blog div.meta > div, body.archive div.meta > div {
  margin: 1em 0 0.25rem;
}
.blog-grid .article__content .meta a {
  font-weight: 500;
  color: var(--bs-primary-900);
}
.blog-grid .article__content .meta a:hover {
  color: var(--bs-primary-900);
}
/****************************** ****************************** 
                    Blog Detail Page
****************************** *****************************/
@media (min-width: 1024px) {
  body.single-post .social-share {
    margin: 1.5rem 0em 0;
  }
  body.single-post p, body.single-post ol, body.single-post ul {
    font-size: 1.125rem;
  }
}
body.single-post ol li, body.single-post ul li {
  line-height: 1.5;
}
body.single-post ul {
  margin: 0;
}
body.single-post ol {
  padding-left: 1.5rem;
}
.zdcb-media-block figure figcaption {
  color: var(--bs-neutral-500) !important;
  margin-top: 0.5rem !important;
}
.zdcb-article-single-block {
  padding: 0;
}
@media (min-width: 575px) {
  .zdcb-article-single-block {
    padding: 0 2rem;
  }
}
@media (min-width: 1024px) {
  .zdcb-article-single-block {
    padding: 0 4rem;
  }
}
@media (min-width: 1200px) {
  .zdcb-article-single-block {
    padding: 0 5rem;
  }
}
body.single-post .social-share {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body.single-post .wrap div.meta__date-category {
  font: 500 1.25rem/1.125 var(--body-theme-font);
}
body.single-post .wrap div.meta__date-category {
  color: var(--bs-primary-900);
}
body.single-post .wrap div.meta__date-category a {
  color: var(--bs-primary-900);
}
body.single-post .wrap div.meta__date-category a:hover {
  color: var(--bs-primary-900);
  text-decoration: underline;
}
/*Related Articles CSS*/
@media (max-width: 767.98px) {
  body.single-post .related-articles__posts .posts__article {
    margin-right: 0;
  }
}
body.single-post .related-articles__posts .posts__article .article__image a:link, body.single-post .related-articles__posts .posts__article .article__image a:visited {
  width: 100%;
  height: auto;
}
body.single-post .related-articles__posts .posts__article .article__image a:link img, body.single-post .related-articles__posts .posts__article .article__image a:visited img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-width: 100%;
  max-height: 330px;
  transition: transform 25s ease-out;
  height: auto;
}
@media (min-width:1024px) {
  body.single-post .related-articles__posts .posts__article .article__image a:link, body.single-post .related-articles__posts .posts__article .article__image a:visited {
    width: 100%;
  }
}
@media (min-width:1200px) {
  body.single-post .related-articles__posts .posts__article .article__image a:link, body.single-post .related-articles__posts .posts__article .article__image a:visited {
    width: 100%;
  }
  body.single-post .related-articles__posts .posts__article .article__image a:link img, body.single-post .related-articles__posts .posts__article .article__image a:visited img {
    min-width: 100%;
  }
}
body.single-post .related-articles__posts div.meta > div {
  margin: 1em 0 0.25rem;
}
body.single-post .related-articles__posts div.meta__date-category {
  font: 500 .875rem/1.1 var(--body-theme-font);
}
body.single-post .related-articles__posts .posts__article .article__content date {
  color: var(--bs-primary-900);
  font: 500 .875rem/1.1 var(--body-theme-font);
}
body.single-post .related-articles__posts .posts__article .article__content header {
  margin-top: 0.5rem;
  padding: 0 !important;
}
body.single-post .related-articles__posts .posts__article .article__content header h2 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: normal;
  margin: 0 0 .5rem;
  text-align: left;
}
body.single-post .related-articles__posts .posts__article .article__content header h2 a {
  font-weight: 500;
  line-height: 1.25;
  color: var(--bs-primary-900);
  font-size: 1.4375rem;
}
body.single-post .related-articles__posts .posts__article .article__content header h2 a:hover {
  color: var(--bs-primary-900);
  text-decoration: underline;
}
body.single-post .related-articles__posts .posts__article .article__content header .entry-title a:hover {
  color: var(--bs-primary-900);
  text-decoration: underline;
}
body.single-post .related-articles__posts .posts__article .article__content .article__content-read-more a.btn {
  color: var(--bs-primary-900);
  min-width: 150px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: none;
}
body.single-post .related-articles__posts .posts__article .article__content .article__content-read-more a.btn:hover, body.single-post .related-articles__posts .posts__article .article__content .article__content-read-more a.btn:focus, body.single-post .related-articles__posts .posts__article .article__content .article__content-read-more a.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
/****************************** ****************************** 
                   Location Info + Form Block
****************************** *****************************/
.zdcb-location-info-block {
  position: relative;
}
.zdcb-location-info-block > hr {
  display: none;
}
.zdcb-location-info-block.has-background > hr {
  display: block;
  position: absolute;
  z-index: 0;
  background: var(--bs-neutral-100);
  border: 0;
  margin: 0 auto;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
  opacity: 1;
}
.zdcb-location-info-block > .container {
  position: relative;
  z-index: 1;
}
.zdcb-location-info-block h1 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 0.25rem;
  margin: 0;
}
.zdcb-location-info-block h1::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  top: 0;
  left: 0;
}
.zdcb-location-info-block .location-details {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}
.zdcb-location-info-block .location-details li {
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  align-items: center;
}
.zdcb-location-info-block .location-details li .loc-icon {
  display: flex;
  width: 20px;
  margin-right: 1.5rem;
  justify-content: center;
  align-self: flex-start;
  margin-top: 3px;
  color: var(--bs-primary-900);
}
.zdcb-location-info-block .location-details li .loc-icon svg {
  width: 20px;
  height: 20px;
}
.zdcb-location-info-block .loc-text {
  color: var(--bs-neutral-500);
  font-size: 1rem;
  font-weight: 400;
}
.zdcb-location-info-block .loc-text a:link, .zdcb-location-info-block .loc-text a:visited {
  color: var(--bs-neutral-500);
  font-weight: 400;
}
.zdcb-location-info-block .loc-text a:hover {
  color: var(--bs-neutral-500) !important;
}
.zdcb-location-info-block h5 {
  color: var(--bs-primary-900);
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}
.zdcb-location-info-block table.opening-hours {
  color: var(--bs-primary-900);
  margin-bottom: 1.5rem;
}
.zdcb-location-info-block table.opening-hours td {
  padding: .375rem 15px .375rem 0;
  color: var(--bs-neutral-500);
  font-size: 1rem;
}
.zdcb-location-info-block table.opening-hours td:first-child {
  padding-right: 50px;
  font-weight: 600;
  color: var(--bs-primary-900);
  font-size: 1rem;
}
body .zdcb-location-info-block .socials {
  margin-top: 3rem;
  justify-content: flex-start;
}
body .zdcb-location-info-block .socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0;
}
body .zdcb-location-info-block .socials ul li {
  margin: 0 8px;
}
body .zdcb-location-info-block .socials ul li:first-child {
  margin-left: 0;
}
body .zdcb-location-info-block .socials ul li a:link span.social__title, body .zdcb-location-info-block .socials ul li a:visited span.social__title {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important
}
body .zdcb-location-info-block .socials ul li a:link, body .zdcb-location-info-block .socials ul li a:visited {
  border: 1px solid var(--bs-primary-900);
  background: transparent;
  color: var(--bs-primary-900);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: color .25s ease-out;
  display: flex;
}
body .zdcb-location-info-block .socials ul li a::after {
  display: none !important;
}
body .zdcb-location-info-block .socials ul li a:link svg, body .zdcb-location-info-block .socials ul li a:visited svg {
  display: block
}
body .zdcb-location-info-block .socials ul li a:hover {
  border: 1px solid var(--bs-primary);
  background: var(--bs-primary);
  color: var(--bs-primary-900);
}
/**/
.zdcb-location-info-block .location-form {
  background: var(--bs-neutral-50);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .zdcb-location-info-block .location-form {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .zdcb-location-info-block .location-form {
    padding: 2.5rem;
  }
}
.zdcb-location-info-block .location-form h4 {
  font-weight: 500;
  margin-bottom: 0 !important;
}
.zdcb-location-info-block .location-form .gform_wrapper.gravity-theme .gform_footer, .zdcb-location-info-block .location-form .gform_wrapper.gravity-theme .gform_page_footer {
  padding: 16px 0 0;
}
.zdcb-location-info-block .location-form .gform_wrapper.gravity-theme .gform_footer button, .zdcb-location-info-block .location-form .gform_wrapper.gravity-theme .gform_page_footer {
  margin-bottom: 0;
  --bs-btn-padding-y: 0.7rem;
}
/****************************** ****************************** 
                   Gallery Grid Block
****************************** *****************************/
.zdcb-gallery-grid-block ul {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.zdcb-gallery-grid-block ul li {
  padding: 12px;
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 480px) {
  .zdcb-gallery-grid-block ul li:nth-child(5n + 1) {
    width: 50%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 2) {
    width: 50%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 3) {
    width: 50%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 4) {
    width: 50%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 5) {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .zdcb-gallery-grid-block ul li:nth-child(5n + 1) {
    width: 50%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 2) {
    width: 50%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 3) {
    width: 33.33%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 4) {
    width: 33.33%;
  }
  .zdcb-gallery-grid-block ul li:nth-child(5n + 5) {
    width: 33.33%;
  }
}
.zdcb-gallery-grid-block ul li a, .zdcb-gallery-grid-block ul li a:hover {
  text-decoration: none;
}
.zdcb-gallery-grid-block ul li .gallery-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: auto;
  height: 250px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
  .zdcb-gallery-grid-block ul li .gallery-item {
    height: 300px;
  }
}
@media (min-width: 1024px) {
  .zdcb-gallery-grid-block ul li .gallery-item {
    height: 375px;
  }
}
@media (min-width: 1200px) {
  .zdcb-gallery-grid-block ul li .gallery-item {
    height: 425px;
  }
}
.zdcb-gallery-grid-block ul li .gallery-item .image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bs-neutral-50);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.zdcb-gallery-grid-block ul li .gallery-item .image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  transition: all .8s cubic-bezier(.165, .84, .44, 1);
}
.zdcb-gallery-grid-block ul li .gallery-item:hover .image img {
  opacity: 1;
  transform: scale3d(1.15, 1.15, 1.15);
}
.zdcb-gallery-grid-block ul li .gallery-item .zoom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 56px;
  height: 56px;
  top: calc(50% - 28px);
  left: calc(50% - 28px);
  z-index: 2;
  background: var(--bs-shades-0);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: var(--bs-primary-900);
  cursor: pointer;
  box-shadow: 0px 8px 16px 0px rgba(16, 24, 40, 0.10);
}
.zdcb-gallery-grid-block ul li .gallery-item .zoom-icon i svg {
  width: 25px;
  height: 25px;
}
.zdcb-gallery-grid-block ul li .gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}
.zdcb-gallery-grid-block ul li .gallery-item.has-video .zoom-icon {
  opacity: 1;
  transform: scale(1);
}
/*Default Glightbox CSS*/
.custom-glightbox-pagination {
  font-family: var(--body-theme-font);
  position: absolute;
  left: 20px;
  top: 15px;
  color: var(--bs-shades-0);
  padding: 0px 3px;
}
@media (min-width: 768px) {
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 335px;
  }
}
@media (min-width: 768px) {
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    width: 100%;
  }
}
/*Glightbox Modal*/
.glightbox-heading {
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 18px;
}
.glightbox-clean .gslide-desc {
  font-family: var(--body-theme-font);
}
.glightbox-clean .gslide-desc .glightbox-heading h6 {
  color: var(--bs-primary-900);
  margin: 0;
}
.glightbox-clean .gslide-desc .glightbox-heading a {
  color: var(--bs-neutral-400);
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
}
.glightbox-clean .gslide-desc .glightbox-heading a:hover {
  color: var(--bs-neutral-900);
  text-decoration: underline;
}
.glightbox-clean .gslide-desc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.glightbox-clean .gslide-desc ul li {
  border-bottom: 1px solid #f1f1f1;
  padding: 1rem 0;
}
.glightbox-clean .gslide-desc ul li a {
  text-decoration: none;
}
.gproduct-card {
  display: flex;
}
.gproduct-card-img {
  float: left;
  width: 80px;
  margin-right: 15px;
  flex-shrink: 0;
}
.gproduct-card-img img {
  display: block;
  background: var(--bs-neutral-50);
  width: 100%;
}
.gproduct-card-body {
  overflow: hidden;
  width: 100%;
}
.gproduct-card-body .gproduct-card-title {
  font-size: 0.875rem;
  color: var(--bs-primary-900);
}
.gproduct-card-body .gproduct-card-title a {
  color: var(--bs-primary-900);
}
.gproduct-card-body .gproduct-card-title a:hover {
  text-decoration: underline;
}
.gproduct-card-body .gproduct-card-text {
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  display: flex;
  align-items: center;
  margin: 3px 0 5px;
  align-items: baseline;
  line-height: 1;
}
.gproduct-card-body .gproduct-card-text span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
  display: inline-block;
  margin: 0 5px 0 0;
}
.gproduct-card-body .gproduct-card-text .p_discount {
  color: var(--bs-primary-900);
  font-weight: 500;
  font-size: 0.875rem;
}
.gproduct-card-body .gproduct-card-text .p_original {
  color: var(--bs-neutral-400);
  text-decoration: line-through;
  font-size: 0.875rem;
}
.gproduct-card-body .btn {
  color: var(--bs-primary-900);
  padding-left: 0;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0;
}
.gproduct-card-body .btn.btn-link::after {
  border-color: var(--bs-primary-900);
  border-width: 1px 1px 0 0;
  width: 6px;
  height: 6px;
  margin-top: 2px;
}
.gproduct-card-body .btn:hover {
  color: var(--bs-primary);
}
.gproduct-card-body .btn.btn-link:hover::after {
  border-color: var(--bs-primary);
}
/****************************** ****************************** 
                        Woocommerce CSS
****************************** *****************************/
/****** Woocommerce Cart Page *******/
.woocommerce button[name="update_cart"], .woocommerce input[name="update_cart"] {
  display: none;
}
.woocommerce-cart table.cart img {
  width: 100%;
}
.woocommerce table.shop_table {
  border: 0;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-block;
  float: right;
  background-color: var(--bs-primary);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr td, .woocommerce .cart-collaterals .cart_totals tr td {
  text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce .cart-collaterals .cart_totals table th {
  width: 60%;
}
/******Woocommerce Cart Page CSS End*******/
/******Woocommerce Checkout Page CSS*******/
.woocommerce form.checkout .form-row {
  width: 100%;
}
.woocommerce .checkout-main-section table.shop_table.review-order-table td {
  padding: 1rem 0 0 1rem;
}
@media(min-width:768px) {
  .woocommerce .checkout-main-section table.shop_table.review-order-table td {
    padding: 1.5rem 0 0 1.75rem;
  }
}
.woocommerce .checkout-main-section .review-order-table td:first-child {
  width: 80px;
  vertical-align: top;
  padding: 1rem 0 !important;
}
@media(min-width:768px) {
  .woocommerce .checkout-main-section .review-order-table td:first-child {
    padding: 1.5rem 0 !important;
  }
}
.woocommerce table.shop_table tbody:first-child tr:first-child td, .woocommerce table.shop_table tbody:first-child tr:first-child th {
  border-top: 1px solid var(--bs-neutral-200) !important;
}
.wpmc-step-item #order_review_heading {
  display: none;
}
/******Woocommerce Cart Page CSS*******/
.page-cart .cart-row {
  padding: 3rem 0;
}
@media(min-width:1024px) {
  .page-cart .cart-row {
    padding: 6rem 0;
  }
}
.page-cart .cart-row .cart-header {
  border-bottom: 1px solid var(--bs-neutral-200);
}
.page-cart .cart-row .cart-header h4 {
  margin: 0;
}
.page-cart .cart-row .cart-header .btn.btn-secondary, .woocommerce-page .cart-header .btn.btn-secondary {
  border: 1px solid var(--bs-neutral-300);
  color: var(--bs-neutral-500);
  padding: 0.75rem 1.75rem !important;
  outline: none;
  font-size: 0.875rem;
  font-weight: 500;
}
@media(max-width:420px) {
  .page-cart .cart-row .cart-header .btn.btn-secondary, .woocommerce-page .cart-header .btn.btn-secondary {
    width: 100%;
  }
}
.page-cart .cart-row .cart-header .btn.btn-secondary:hover, .page-cart .cart-row .cart-header .btn.btn-secondary:active, .page-cart .cart-row .cart-header .btn.btn-secondary:focus, .woocommerce-page .cart-header .btn.btn-secondary:hover, .woocommerce-page .cart-header .btn.btn-secondary:active, .woocommerce-page .cart-header .btn.btn-secondary:focus {
  color: var(--bs-shades-0);
  background-color: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
  box-shadow: none;
}
.page-cart .cart .product-name a, .woocommerce .product-name span.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-primary-900);
  line-height: 1;
}
@media(min-width:768px) {
  .page-cart .cart .product-name a, .woocommerce .product-name span.product-title {
    font-size: 1.125rem;
  }
}
.page-cart .cart .product-name a:hover {
  color: var(--bs-primary-900);
}
.woocommerce .product-name .cart-item-qty {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bs-neutral-500);
  margin-top: 4px;
}
.page-cart .cart .product-name p, .woocommerce .product-name p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.3;
  margin-top: 0.3rem;
}
.page-cart .cart .product-name p.cart-sku, .woocommerce .product-name p.cart-sku {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
}
@media (min-width: 375px) {
  .page-cart .cart .product-name p.cart-sku, .woocommerce .product-name p.cart-sku {
    font-size: 0.875rem;
  }
}
@media (min-width: 500px) {
  .page-cart .cart .product-name p.cart-sku, .woocommerce .product-name p.cart-sku {
    font-size: 1rem;
  }
}
.page-cart .cart .product-name p.cart-sku b, .woocommerce .product-name p.cart-sku b {
  width: 70px;
  display: inline-block;
  color: var(--bs-primary-900);
  font-weight: 500;
}
@media (min-width: 360px) {
  .page-cart .cart .product-name p.cart-sku b, .woocommerce .product-name p.cart-sku b {
    width: 100px;
  }
}
@media (min-width: 768px) {
  .page-cart .cart .product-name p.cart-sku b, .woocommerce .product-name p.cart-sku b {
    width: 140px;
  }
}
.page-cart .cart .woocommerce-cart-form__cart-item.cart_item {
  display: flex;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--bs-neutral-200);
  flex-wrap: wrap;
}
@media(min-width:500px) {
  .page-cart .cart .woocommerce-cart-form__cart-item.cart_item {
    display: flex;
    flex-wrap: nowrap;
  }
}
.page-cart .cart .product-thumbnail {
  width: 90px;
  height: 90px;
}
@media(min-width:500px) {
  .page-cart .cart .product-thumbnail {
    width: 120px;
    height: 120px;
  }
}
.page-cart .cart img {
  width: 90px;
  height: auto;
}
@media(min-width:500px) {
  .page-cart .cart img {
    width: 120px;
    height: auto;
  }
}
.page-cart .cart .product-name {
  margin-left: 1rem;
  width: 60%;
  text-align: left;
}
@media(min-width:500px) {
  .page-cart .cart .product-name {
    width: 400px;
  }
}
@media(min-width:768px) {
  .page-cart .cart .product-name {
    margin-left: 2.5rem;
    width: 500px;
  }
}
.page-cart .cart .product-subtotal {
  width: 80px;
  text-align: center;
  padding-top: 0.7rem;
}
@media(min-width:500px) {
  .page-cart .cart .product-subtotal {
    width: 100px;
  }
}
.page-cart .cart .product-subtotal .woocommerce-Price-amount {
  color: var(--bs-primary-900) !important;
  font-weight: 500 !important;
  font-size: 1rem;
}
@media(min-width:768px) {
  .page-cart .cart .product-subtotal .woocommerce-Price-amount {
    font-size: 1.125rem;
  }
}
.page-cart .product-info dl.variation {
  margin-top: 0rem;
}
.page-cart .product-info dl.variation dt, .woocommerce .product-info dl.variation dt {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
}
.page-cart .product-info dl.variation dt span:first-child {
  font-weight: 500;
  width: 70px;
  text-align: left;
  color: var(--bs-primary-900);
  line-height: 1.5;
  font-size: 0.75rem;
}
@media(min-width:360px) {
  .page-cart .product-info dl.variation dt span:first-child {
    width: 100px;
  }
}
@media(min-width:375px) {
  .page-cart .product-info dl.variation dt span:first-child {
    font-size: 0.875rem;
  }
}
@media(min-width:500px) {
  .page-cart .product-info dl.variation dt span:first-child {
    font-size: 1rem;
  }
}
@media(min-width:768px) {
  .page-cart .product-info dl.variation dt span:first-child {
    width: 140px;
  }
}
.page-cart .product-info dl.variation dt span:last-child {
  font-weight: 400;
  color: var(--bs-neutral-500);
  font-size: 0.875rem;
}
@media(min-width:500px) {
  .page-cart .product-info dl.variation dt span:last-child {
    font-size: 1rem;
  }
}
.page-cart .cart .product-quantity {
  width: auto;
  text-align: center;
  margin-left: 6.25rem;
}
@media(min-width:500px) {
  .page-cart .cart .product-quantity {
    width: 100px;
    text-align: center;
    margin-left: 0;
  }
}
.page-cart .cart .product-quantity .quantity {
  background: var(--bs-neutral-50);
  border: 1px solid var(--bs-neutral-200);
  border-radius: 25px;
  height: 32px;
  position: relative;
}
.page-cart .cart .product-quantity .quantity input, .page-cart .cart .product-quantity .quantity select, .woocommerce .cart .product-quantity .quantity {
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  width: 65px;
  height: 40px;
  background: var(--bs-neutral-50);
  border: 1px solid var(--bs-neutral-200);
  border-radius: 25px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-align: center;
  font-weight: 500;
  outline: none;
  margin: 0 auto;
}
.page-cart .cart .product-remove a.remove {
  display: block;
  height: 28px;
  width: 28px;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  text-decoration: none;
  border: 1px solid var(--bs-neutral-200);
  background: var(--bs-neutral-50);
}
.page-cart .cart .product-remove {
  padding-top: 4px;
  width: 50px;
  display: flex;
  justify-content: flex-end;
}
@media(max-width:500.85px) {
  .page-cart .cart .product-remove {
    display: flex;
    align-items: center;
    padding-top: 0;
    width: auto;
  }
}
.page-cart .cart .product-remove a.remove:hover {
  color: var(--bs-shades-0) !important;
  border: 1px solid var(--bs-primary-900);
  background: var(--bs-primary-900);
}
.page-cart .cart .product-remove a.remove:hover svg path {
  stroke: #fff;
}
.page-cart .cart .cart-coupon-part, .page-cart .cart-coupon-part {
  padding: 2.25rem 1rem;
  background: var(--bs-shades-0);
}
@media(min-width:992px) {
  .page-cart .cart .cart-coupon-part, .page-cart .cart-coupon-part {
    padding: 2.25rem 0;
  }
}
.page-cart .cart .cart-coupon-part .actions, .page-cart .cart-coupon-part .actions {
  display: block;
}
@media(min-width:992px) {
  .page-cart .cart .cart-coupon-part .actions, .page-cart .cart-coupon-part .actions {
    display: flex;
    justify-content: space-between;
  }
}
.page-cart .cart .cart-coupon-part .actions .coupon, .page-cart .cart .cart-coupon-part .actions .shipping, .page-cart .cart-coupon-part .actions .coupon, .page-cart .cart-coupon-part .actions .shipping {
  width: 100%;
  margin-top: 0rem;
}
.page-cart .cart .cart-coupon-part .actions .form-input, .page-cart .cart-coupon-part .actions .form-input {
  height: 50px;
  position: relative;
  padding: 4px;
  border-radius: 25px;
  border: 1px solid var(--bs-neutral-200);
}
.page-cart .cart .cart-coupon-part .actions .form-input:focus, .page-cart .cart .cart-coupon-part .actions .form-input:focus-visible, .page-cart .cart-coupon-part .actions .form-input:focus, .page-cart .cart-coupon-part .actions .form-input:focus-visible {
  border: 1px solid var(--bs-primary);
}
.page-cart .cart .cart-coupon-part .actions .coupon label, .page-cart .cart .cart-coupon-part .actions .shipping label, .page-cart .cart-coupon-part .actions .coupon label, .page-cart .cart-coupon-part .actions .shipping label {
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  color: var(--bs-primary-900);
  margin-bottom: 1rem;
  font: var(--bs-primary-900-theme-font);
}
.page-cart .cart .cart-coupon-part .actions .coupon input.input-text, .page-cart .cart .cart-coupon-part .actions .shipping input.input-text, .page-cart .cart-coupon-part .actions .coupon input.input-text, .page-cart .cart-coupon-part .actions .shipping input.input-text {
  background-color: transparent;
  padding: 0 0.625rem 0 0.5rem;
  font-size: 0.875rem;
  color: var(--bs-primary-900);
  line-height: 40px;
  border: none;
  outline: none;
  width: 70%;
}
@media(min-width:400px) {
  .page-cart .cart .cart-coupon-part .actions .coupon input.input-text, .page-cart .cart .cart-coupon-part .actions .shipping input.input-text, .page-cart .cart-coupon-part .actions .coupon input.input-text, .page-cart .cart-coupon-part .actions .shipping input.input-text {
    padding: 0 0.625rem 0 1.5rem;
    width: 72%;
  }
}
.page-cart .cart .cart-coupon-part .actions .coupon input[type="text"], .page-cart .cart .cart-coupon-part .actions .shipping input[type="text"], .page-cart .cart-coupon-part .actions .coupon input[type="text"], .page-cart .cart-coupon-part .actions .shipping input[type="text"] {
  font-size: 1rem;
  color: var(--bs-neutral-500);
}
.page-cart .cart .cart-coupon-part .actions .coupon input::placeholder, .page-cart .cart .cart-coupon-part .actions .shipping input::placeholder, .page-cart .cart-coupon-part .actions .coupon input::placeholder, .page-cart .cart-coupon-part .actions .shipping input::placeholder {
  color: var(--bs-neutral-500);
  opacity: 1;
}
.page-cart .cart .cart-coupon-part .actions .coupon input:-ms-input-placeholder, .page-cart .cart .cart-coupon-part .actions .shipping input:-ms-input-placeholder, .page-cart .cart-coupon-part .actions .coupon input:-ms-input-placeholder, .page-cart .cart-coupon-part .actions .shipping input:-ms-input-placeholder {
  color: var(--bs-neutral-500);
}
.page-cart .cart .cart-coupon-part .actions .coupon input::-ms-input-placeholder, .page-cart .cart .cart-coupon-part .actions .shipping input::-ms-input-placeholder, .page-cart .cart-coupon-part .actions .coupon input::-ms-input-placeholder, .page-cart .cart-coupon-part .actions .shipping input::-ms-input-placeholder {
  color: var(--bs-neutral-500);
}
.page-cart .cart .cart-coupon-part .actions button.button, .page-cart .cart-coupon-part .actions button.button {
  background: transparent;
  color: var(--bs-primary-900);
  border-radius: 25px;
  height: 40px;
  border: 1px solid var(--bs-primary);
  font-size: 0.875rem;
  font-weight: 500;
  position: absolute;
  right: 4px;
  padding: 0.75rem 0.75rem;
}
@media(min-width:400px) {
  .page-cart .cart .cart-coupon-part .actions button.button, .page-cart .cart-coupon-part .actions button.button {
    padding: 0.75rem 1.75rem;
  }
}
.page-cart .cart .cart-coupon-part .actions button.button:hover, .page-cart .cart .cart-coupon-part .actions button.button:focus-visible, .page-cart .cart .cart-coupon-part .actions button.button:focus, .page-cart .cart-coupon-part .actions button.button:hover, .page-cart .cart-coupon-part .actions button.button:focus-visible, .page-cart .cart-coupon-part .actions button.button:focus {
  background: var(--bs-primary);
}
.page-cart.woocommerce-cart .wc-proceed-to-checkout {
  padding: 1.75rem 0;
}
.page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  color: var(--bs-primary-900);
  border: 1px solid var(--bs-primary-500);
  background: var(--bs-primary-500);
  border-radius: 3rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .25s ease-out;
  margin: 0;
  width: 100%;
  line-height: 1.2;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media(min-width:992px) {
  .page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: auto;
  }
}
.page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button svg {
  margin-left: 8px;
}
.page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus-visible {
  color: var(--bs-shades-0);
  background: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
}
.page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover svg path, .page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus svg path, .page-cart.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus-visible svg path {
  stroke: var(--bs-shades-0);
}
.page-cart .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
  padding: 1rem;
  background-color: var(--bs-neutral-100);
  border-radius: 8px;
}
@media(min-width:400px) {
  .page-cart .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    padding: 2rem;
  }
}
@media(min-width:1200px) {
  .page-cart .woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    padding: 2.5rem;
  }
}
.page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table th, .woocommerce .cart-collaterals .cart_totals table.shop_table th, .woocommerce-page .cart-collaterals .cart_totals table.shop_table th {
  padding: 0.75rem 0;
  color: var(--bs-neutral-500);
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid var(--bs-neutral-200);
}
.page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table td, .woocommerce .cart-collaterals .cart_totals table.shop_table td, .woocommerce-page .cart-collaterals .cart_totals table.shop_table td {
  padding: 0.75rem 0;
  color: var(--bs-neutral-500);
  font-size: 1rem;
  font-weight: 400;
  border-top: 1px solid var(--bs-neutral-200);
}
.page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.order-total th, .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.order-total td, .woocommerce .cart-collaterals .cart_totals table.shop_table tr.order-total th, .woocommerce .cart-collaterals .cart_totals table.shop_table tr.order-total td, .woocommerce-page .cart-collaterals .cart_totals table.shop_table tr.order-total th, .woocommerce-page .cart-collaterals .cart_totals table.shop_table tr.order-total td {
  font-size: 1.4375rem;
  color: var(--bs-primary-900);
  padding-bottom: 0 !important;
  border: none;
}
.page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.order-total td strong, .woocommerce .cart-collaterals .cart_totals table.shop_table tr.order-total td strong, .woocommerce-page .cart-collaterals .cart_totals table.shop_table tr.order-total td strong {
  font-weight: 600;
}
@media(max-width:768px) {
  .page-cart .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background: transparent;
  }
  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
    display: grid;
  }
}
/***/
.checkout-steps {
  height: 90px;
  background: var(--bs-neutral-100);
}
.wpmc-tabs-wrapper .wpmc-tabs-list {
  background: transparent;
  margin-top: 1rem;
}
.page-checkout.woocommerce-checkout .woocommerce-order .content h1 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  margin: 0;
}
.page-checkout.woocommerce-checkout .woocommerce-order .content h1::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  top: 0;
  left: calc(50% - 30px);
}
.page-checkout.woocommerce-checkout .checkout-main-section, .page-checkout .woocommerce .woocommerce-order {
  padding: 3rem 0;
}
@media(min-width:1024px) {
  .page-checkout.woocommerce-checkout .checkout-main-section, .page-checkout .woocommerce .woocommerce-order {
    padding: 6rem 0;
  }
}
.wpmc-tabs-wrapper .wpmc-tab-item:first-child:before {
  display: none;
}
.wpmc-tabs-wrapper .wpmc-tab-item:after {
  display: block;
  content: "";
  border-bottom: 2px solid var(--bs-neutral-300);
  height: 0;
  position: absolute;
  top: 9px;
  left: 50%;
  right: 0;
  -webkit-transition: border-color .3s;
  -o-transition: border-color .3s;
  transition: border-color .3s;
  z-index: 1;
}
.wpmc-tabs-wrapper .wpmc-tab-item.wpmc-billing.previous:after {
  border-bottom-color: var(--bs-primary);
}
.wpmc-tabs-wrapper .wpmc-tab-item.wpmc-billing.previous .wpmc-tab-number {
  background: var(--bs-primary);
}
.wpmc-tabs-wrapper .wpmc-tab-item:last-child:after {
  display: none;
}
.wpmc-tabs-wrapper .wpmc-tab-item.current::after {
  border-bottom-color: var(--bs-primary);
}
.wpmc-tabs-wrapper .wpmc-tab-item .wpmc-tab-number {
  display: inline-block;
  line-height: 20px;
  width: 20px;
  min-width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 0;
  background: #dadbdd;
  border: none;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  text-indent: -9999px;
}
.wpmc-tabs-wrapper .wpmc-tab-item.current .wpmc-tab-number, .wpmc-tabs-wrapper .wpmc-tab-item.active .wpmc-tab-number {
  color: #fff;
  background: var(--bs-primary);
  border: none;
}
.wpmc-tabs-wrapper .wpmc-tab-item.current .wpmc-tab-text, .wpmc-tabs-wrapper .wpmc-tab-item.active .wpmc-tab-text {
  color: var(--bs-primary-900);
}
.wpmc-tabs-wrapper .wpmc-tab-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs-neutral-300);
}
.wpmc-tabs-wrapper .wpmc-tab-item:before {
  display: block;
  content: "";
  border-bottom: 2px solid var(--bs-neutral-300);
  height: 0;
  position: absolute;
  top: 9px;
  left: 0;
  right: 50%;
  -webkit-transition: border-color .3s;
  -o-transition: border-color .3s;
  transition: border-color .3s;
}
.wpmc-tabs-list.wpmc-3-tabs .wpmc-tab-item {
  padding: 0;
}
body > .wrap, body > .wrapper {
  padding-top: var(--header-height--mobile);
}
@media(min-width:768px) {
  body > .wrap, body > .wrapper {
    padding-top: var(--header-height--tablet);
  }
}
@media(min-width:1024px) {
  body > .wrap, body > .wrapper {
    padding-top: var(--header-height--desktop);
  }
}
.page-checkout .woocommerce-billing-fields h3, .page-checkout .woocommerce-shipping-fields h3 {
  font-size: 1.4375rem;
}
@media(min-width:1024px) {
  .page-checkout .woocommerce-billing-fields h3, .page-checkout .woocommerce-shipping-fields h3 {
    font-size: 1.75rem;
  }
}
.page-checkout .woocommerce-shipping-fields p > label span.checkbox {
  font-size: 0.875rem;
}
.page-checkout .woocommerce-billing-fields h4, .page-checkout .woocommerce-shipping-fields h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bs-primary-900);
}
.page-checkout .woocommerce-billing-fields p, .page-checkout .woocommerce-shipping-fields p {
  font-size: 1rem;
  margin-top: 0;
  color: var(--bs-neutral-500);
}
.page-checkout .woocommerce-billing-fields__field-wrapper p, .page-checkout .woocommerce-shipping-fields__field-wrapper p {
  font-size: 0.875rem;
  color: var(--bs-neutral-500);
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container--default .select2-selection--single {
  border-radius: 4rem;
  border: 1px solid var(--bs-neutral-200);
  padding: 0.625rem 1rem;
  outline: none;
  height: 44px !important;
  background: transparent;
}
.woocommerce form .form-row input::placeholder, .woocommerce form .form-row textarea::placeholder, .woocommerce form .form-row select::placeholder, .select2-container--default .select2-selection--single::placeholder {
  color: var(--bs-neutral-500);
  font-size: 1rem;
}
.woocommerce form .form-row input:-ms-input-placeholder, .woocommerce form .form-row textarea:-ms-input-placeholder, .woocommerce form .form-row select:-ms-input-placeholder, .select2-container--default .select2-selection--single:-ms-input-placeholder {
  color: var(--bs-neutral-500);
}
.woocommerce form .form-row input::-ms-input-placeholder, .woocommerce form .form-row textarea::-ms-input-placeholder, .woocommerce form .form-row select::-ms-input-placeholder, .select2-container--default .select2-selection--single::-ms-input-placeholder {
  color: var(--bs-neutral-500);
}
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus, .woocommerce form .form-row select:focus, .select2-container--default .select2-selection--single:focus {
  border-color: var(--bs-primary);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--bs-neutral-500) !important;
  line-height: 1.3 !important;
  padding: 0 !important;
}
.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
  border-color: var(--bs-neutral-200);
}
.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select, .select2-container--focus {
  border-color: var(--bs-neutral-200);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  outline: none;
}
@media(max-width:767.85px) {
  .wpmc-nav-wrapper {
    display: block;
  }
}
.wpmc-nav-wrapper .button.btn.btn-secondary {
  border: 1px solid var(--bs-neutral-300);
  color: var(--bs-neutral-500);
  padding: 1rem 2.25rem;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4rem;
  background: var(--bs-neutral-100);
  width: 100%;
  margin-bottom: 1rem;
}
.wpmc-nav-wrapper .button.btn.btn-secondary:hover, .wpmc-nav-wrapper .button.btn.btn-secondary:active, .wpmc-nav-wrapper .button.btn.btn-secondary:focus {
  color: var(--bs-shades-0);
  background-color: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
  box-shadow: none;
}
@media (min-width: 768px) {
  .wpmc-nav-wrapper .button.btn.btn-secondary {
    width: auto;
    margin-bottom: 0;
  }
}
.wpmc-nav-wrapper .button.button-active.current.wpmc-nav-button {
  color: var(--bs-primary-900);
  border: 1px solid var(--bs-primary-500);
  background: var(--bs-primary-500);
  border-radius: 4rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .25s ease-out;
  margin: 0;
  width: 100%;
  min-width: 140px;
}
.wpmc-nav-wrapper button#wpmc-prev.current {
  display: none !important;
}
@media (min-width: 1024px) {
  .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    position: absolute;
    bottom: -72px;
    right: 0;
  }
}
.woocommerce-checkout-payment .form-row.place-order .button.alt {
  color: var(--bs-primary-900);
  border: 1px solid var(--bs-primary-500);
  background: var(--bs-primary-500);
  border-radius: 4rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .25s ease-out;
  margin: 0 !important;
  width: auto;
}
@media (min-width: 768px) {
  .wpmc-nav-wrapper .button.button-active.current.wpmc-nav-button {
    width: auto;
  }
}
.wpmc-nav-wrapper .button.button-active.current.wpmc-nav-button:hover, .wpmc-nav-wrapper .button.button-active.current.wpmc-nav-button:focus, .wpmc-nav-wrapper .button.button-active.current.wpmc-nav-button:focus-visible, .woocommerce-checkout-payment .form-row.place-order .button.alt:hover, .woocommerce-checkout-payment .form-row.place-order .button.alt:focus, .woocommerce-checkout-payment .form-row.place-order .button.alt:focus-visible {
  color: var(--bs-shades-0);
  background: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
}
.page-checkout .woocommerce-shipping-fields input[type="checkbox"], .page-checkout .woocommerce-account-fields input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.page-checkout .woocommerce-shipping-fields input.input-checkbox:before, .page-checkout .woocommerce-account-fields input.input-checkbox:before {
  transition-timing-function: cubic-bezier(.075, .820, .165, 1);
  border: 2px solid;
  border-radius: 0;
  background-color: white;
  border-color: transparent;
  box-sizing: border-box;
  color: var(--bs-primary-900);
  content: close-quote;
  display: inline-block;
  height: 14px;
  outline: 2px solid var(--bs-primary-900);
  transition-duration: .5s;
  transition-property: background-color, border-color;
  width: 14px;
}
.woocommerce table.shop_table {
  margin-bottom: 0 !important;
  border-bottom: 0px;
  border-radius: 0;
}
.woocommerce table.shop_table tr.order-total th, .woocommerce table.shop_table tr.order-total td {
  padding-bottom: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--bs-primary-900) !important;
}
.page-checkout .woocommerce-shipping-fields input.input-checkbox:checked:before, .page-checkout .woocommerce-account-fields input.input-checkbox:checked:before {
  background-color: var(--bs-primary-900);
  border-color: #fff;
}
.page-checkout .woocommerce .woocommerce-order .btn.btn-primary {
  width: auto;
  margin-top: 1.5rem;
  padding: 0.75rem 3rem;
}
@media(min-width:1024px) {
  .page-checkout .woocommerce .woocommerce-order .btn.btn-primary {
    margin-top: 2.5rem;
  }
}
.page-checkout .woocommerce .woocommerce-order {
  padding-bottom: 0 !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot th {
  border: none;
  display: block;
  width: 100%;
  font-size: 1.4375rem;
  color: var(--bs-primary-900);
  font-weight: 600;
  padding: 0;
}
@media(min-width:1024px) {
  .page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot th {
    font-size: 1.75rem;
  }
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td {
  display: block;
  border: none;
  padding: 1.rem 0;
}
@media(min-width:1024px) {
  .page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td {
    padding: 2.25rem 0;
  }
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li label span.woocommerce-Price-amount.amount {
  font-weight: 400 !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li label {
  color: var(--bs-primary-900);
  font-size: 1rem;
  font-weight: 400;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:checked, .page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:checked + label, .page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--bs-primary-900);
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:checked + label:before, .page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--bs-neutral-500);
  border-radius: 100%;
  background: #fff;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:checked + label:before {
  border: 1px solid var(--bs-primary-900);
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:checked + label:after, .page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--bs-primary-900);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot td ul.woocommerce-shipping-methods li input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.page-checkout.woocommerce-checkout .wpmc-step-item.current h3 {
  font-size: 1.4375rem;
  margin-top: 0;
}
@media(min-width:1024px) {
  .page-checkout.woocommerce-checkout .wpmc-step-item.current h3 {
    font-size: 1.75rem;
  }
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment {
  margin-top: 1.5rem;
  background: var(--bs-shades-0) !important;
}
@media(min-width:1024px) {
  .page-checkout.woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 2.25rem;
  }
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods {
  border-color: var(--bs-neutral-200) !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box, #add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  border-radius: 3rem;
  border: 1px solid var(--bs-neutral-200);
  background: var(--bs-neutral-100);
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box.payment_method_stripe {
  border-radius: 0 !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box.payment_method_stripe p a:after {
  display: none;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box::before, .woocommerce-cart .woocommerce-checkout-payment div.payment_box::before, .woocommerce-checkout .woocommerce-checkout-payment div.payment_box::before {
  display: none !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box p {
  margin: 0;
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox, .woocommerce-page form.checkout .woocommerce-checkout-payment .form-row label.checkbox {
  display: block;
  border: 1px solid var(--bs-neutral-200);
  padding: 1rem;
  border-radius: 3rem;
  width: 100%;
  position: relative;
  background: var(--bs-neutral-100);
  font-size: 0.875rem;
  line-height: 1.5;
}
/*****Reset Password*****/
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
  float: none;
  margin: 0 auto !important;
  width: 100%;
}
.woocommerce-page .woocommerce_checkout_coupon {
  background: var(--bs-neutral-100);
}
.woocommerce-page .woocommerce_checkout_coupon .woocommerce-info {
  margin-bottom: 0;
}
.page-checkout.woocommerce-page .woocommerce_checkout_coupon .woocommerce-info {
  margin-bottom: 2rem;
}
.woocommerce-page .woocommerce_checkout_coupon form.checkout_coupon.woocommerce-form-coupon {
  padding: 0 2rem 2rem;
  margin: 0;
}
.woocommerce form.checkout_coupon.woocommerce-form-coupon .form-row-first, .woocommerce-page form.checkout_coupon.woocommerce-form-coupon .form-row-first {
  position: relative;
}
.woocommerce form.checkout_coupon.woocommerce-form-coupon .form-row input.input-text {
  height: 50px !important;
  padding-right: 2rem;
  background: transparent;
}
@media(min-width:475px) {
  .woocommerce form.checkout_coupon.woocommerce-form-coupon .form-row input.input-text {
    padding-right: 9rem;
  }
}
.woocommerce-page .woocommerce_checkout_coupon button.button, .woocommerce_checkout_coupon button.button {
  position: relative;
  right: 0px;
  top: 10px;
}
@media(min-width:475px) {
  .woocommerce-page .woocommerce_checkout_coupon button.button, .woocommerce_checkout_coupon button.button {
    position: absolute;
    right: 7px;
    top: 7px;
  }
}
.woocommerce form .form-row-first, .woocommerce-page form .form-row-first label, .woocommerce form .form-row label, .woocommerce-page form .form-row label {
  text-align: left;
  font-size: 0.875rem;
  color: var(--bs-primary-900);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.woocommerce .reset-pass-container p, .woocommerce-page .reset-pass-container p, .page-sign-up .reset-pass-container p {
  font-size: 1rem;
  color: var(--bs-neutral-500);
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  margin-right: 0 !important;
}
.woocommerce .woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row.form-row .woocommerce-Button.button, .woocommerce .reset-pass-container p.form-row button.woocommerce-button.button, .woocommerce-page .reset-pass-container p.form-row button.woocommerce-button.button, .reset-pass-container p.form-row button.woocommerce-button.button, .woocommerce-page .woocommerce-Button.button {
  border-radius: 3rem;
  background: var(--bs-primary);
  color: var(--bs-primary-900);
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem 1rem;
  text-transform: capitalize;
  border: none;
}
.woocommerce .woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row.form-row .woocommerce-Button.button:hover, .woocommerce .woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row.form-row .woocommerce-Button.button:focus, .woocommerce .woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row.form-row .woocommerce-Button.button:focus-visible, .woocommerce .reset-pass-container p.form-row button.woocommerce-button.button:hover, .woocommerce .reset-pass-container p.form-row button.woocommerce-button.button:focus, .woocommerce .reset-pass-container p.form-row button.woocommerce-button.button:focus-visible, .reset-pass-container p.form-row button.woocommerce-button.button:hover, .reset-pass-container p.form-row button.woocommerce-button.button:focus, .reset-pass-container p.form-row button.woocommerce-button.button:focus-visible, .woocommerce-page .woocommerce-Button.button:hover, .woocommerce-page .woocommerce-Button.button:focus, .woocommerce-page .woocommerce-Button.button:focus-visible {
  background: var(--bs-primary-900);
  color: var(--bs-shades-0);
}
.woocommerce-error {
  padding: 1rem !important;
  margin: 0 !important;
  padding-left: 2rem !important;
  margin-bottom: 1rem !important;
}
.woocommerce-error li {
  margin-left: 10px !important;
}
.woocommerce-error::before {
  top: 1em;
  left: 0.5rem;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register, .woocommerce form.woocommerce-ResetPassword.lost_reset_password {
  border: none;
  padding: 0;
  margin: 2rem 0;
}
.mo-openid-app-icons a {
  border-color: var(--bs-neutral-300) !important;
  color: var(--bs-neutral-700) !important;
  margin-left: 8px !important;
  width: auto !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border-radius: 3rem !important;
}
.woocommerce .reset-pass-container p.form-row span.woocommerce-LostPassword.lost_password a, .woocommerce-page .reset-pass-container p.form-row span.woocommerce-LostPassword.lost_password a {
  float: right;
  font-size: 0.875rem;
  color: var(--bs-primary-600);
}
.woocommerce .have-account p, .woocommerce-page .have-account p, .reset-pass-container .have-account p {
  font-size: 0.875rem;
}
.woocommerce .have-account p a, .woocommerce-page .have-account p a, .reset-pass-container .have-account p a {
  font-size: 0.875rem;
  color: var(--bs-primary-600);
}
.woocommerce-password-strength.good {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  margin: 0.5rem 0;
  color: var(--bs-primary-900);
}
.reset-pass-container .woocommerce-form.woocommerce-form-register.register label {
  display: block;
  font-size: 0.875rem;
  color: var(--bs-primary-900);
  font-weight: 600;
  margin-bottom: 5px;
}
.reset-pass-container .woocommerce-form.woocommerce-form-register.register input {
  width: 100%;
  border-radius: 3rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--bs-neutral-200);
}
.reset-pass-container .woocommerce-form.woocommerce-form-register.register p {
  margin: 1.25rem 0;
}
.reset-pass-container p.woo-account-divider {
  position: relative;
}
.reset-pass-container p.woo-account-divider:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 45%;
  background: var(--bs-neutral-200);
  left: 10px;
  top: 12px;
}
.reset-pass-container p.woo-account-divider:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 45%;
  background: var(--bs-neutral-200);
  right: 10px;
  top: 12px;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
  border-bottom: 1px solid var(--bs-neutral-300);
  padding: 0;
  color: var(--bs-neutral-500);
  text-align: center;
  margin: 0;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link:last-child {
  border: none;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--bs-primary);
  color: var(--bs-primary-900);
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  text-transform: capitalize;
  padding: 1rem;
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 0;
  background: var(--bs-primary-900);
  border-radius: 10px;
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: var(--bs-primary);
  color: var(--bs-primary-900);
  text-decoration: none;
}
@media(max-width:767.85px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 3rem;
  }
  .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info {
    padding: 1em 2em 1em 3em;
  }
}
.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
.woocommerce-account .woocommerce-MyAccount-content p a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs-primary-900);
}
.woocommerce form .form-row-last, .woocommerce-page form .form-row-last {
  width: 100%;
}
.woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button, .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .button {
  text-align: center;
  width: auto;
  margin-top: 1.5rem;
  border-radius: 3rem;
  background: var(--bs-primary);
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem 1rem;
  text-transform: capitalize;
  border: none;
}
.woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button:hover, .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button:focus, .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button:focus-visible, .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .button:hover, .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .button:focus, .woocommerce-page .woocommerce-MyAccount-content .woocommerce-info .button:focus-visible {
  background: var(--bs-primary-900);
  color: var(--bs-shades-0);
}
/******* Mini Cart*******/
.cart-option:hover .woocommerce.headercart {
  display: block;
}
.woocommerce.headercart {
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-100);
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  color: var(--bs-primary-900);
  position: absolute;
  z-index: 999999;
  font-size: 0.875rem;
  width: 330px;
  top: 55px;
  padding: 1rem;
  display: none;
  right: 0;
}
@media (max-width: 419.95px) {
  .woocommerce.headercart {
    width: 310px;
    right: -55px;
  }
}
.woocommerce.headercart::after {
  content: "";
  height: 40px;
  left: 0;
  position: absolute;
  top: -30px;
  width: 100%;
  display: block;
}
.woocommerce.headercart.added-to-cart {
  display: block;
}
.woocommerce.headercart .cart-contents {
  padding: 0 0 1rem;
  display: block;
  border-bottom: 1px solid var(--bs-neutral-200);
  width: 100%;
}
.woocommerce.headercart .countcart span.minicartcount a {
  float: right;
  color: var(--bs-primary);
  font-weight: 500;
  font-size: 0.875rem !important;
}
.woocommerce.headercart .countcart span.minicartcount a:focus, .woocommerce.headercart .countcart span.minicartcount a:hover {
  color: var(--bs-primary-900);
}
.woocommerce.headercart .countcart, .woocommerce.headercart .countcart span.minicartcount {
  float: none;
  font-size: 1rem !important;
  color: var(--bs-primary-900) !important;
  font-weight: 500 !important;
  display: inline-block !important;
  margin: 0 !important;
  width: 100%;
}
.woocommerce.headercart ul.product_list_widget {
  float: none;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce ul.cart_list, .woocommerce ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}
.woocommerce.headercart ul.product_list_widget li {
  padding: 1rem 0;
  margin: 0;
  position: relative;
  border-bottom: 1px solid var(--bs-neutral-200);
}
.woocommerce.headercart ul.product_list_widget li a.remove {
  right: 0px;
  top: calc(20% - 10px);
  left: auto;
  width: 20px;
  height: 20px;
  line-height: 1.1;
  z-index: 100;
  border: 1px solid var(--bs-neutral-200);
  background: var(--bs-neutral-50);
  border-radius: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.woocommerce.headercart ul.product_list_widget li a.remove:hover {
  background: var(--bs-primary-900);
  color: var(--bs-shades-0) !important;
  border-color: var(--bs-primary-900);
}
.woocommerce.headercart ul.product_list_widget li a.remove:hover svg path {
  stroke: #fff;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}
.woocommerce.headercart ul.product_list_widget li a {
  margin: 0;
  display: block;
  padding: 0 !important;
}
.woocommerce.headercart ul.product_list_widget li a h5 {
  color: var(--bs-primary-900);
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
  width: 94%;
}
@media (max-width: 339.85px) {
  .woocommerce.headercart ul.product_list_widget li a h5 {
    font-size: 0.775rem;
  }
}
.woocommerce.headercart ul.product_list_widget li img {
  float: left;
  margin: 0 1rem 0 0;
  border: 0px;
  border-radius: 0px;
  width: 80px;
  overflow: hidden;
}
.woocommerce.headercart ul.product_list_widget li .product-price {
  color: var(--bs-neutral-500);
  font-size: 0.875rem;
  line-height: normal;
  margin-top: 5px;
  min-height: auto !important;
  display: inline-block;
}
.woocommerce.headercart ul.product_list_widget li .quantity {
  background: 0 0;
  border: 0;
  height: auto;
  color: var(--bs-neutral-900);
  font-size: 0.875rem;
  line-height: normal;
  margin-top: 10px;
}
.woocommerce.headercart .woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 1.25rem 0 0;
  font-size: 0.875rem;
  color: var(--bs-neutral-500);
}
.woocommerce.headercart .total strong {
  min-width: 140px;
  font-size: 1rem;
  font-weight: 600;
}
.woocommerce.headercart .total span.amount {
  float: right;
  color: var(--bs-primary-900);
  font-weight: 600;
  font-size: 1rem;
}
.woocommerce.headercart .woocommerce-mini-cart__buttons.buttons {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.woocommerce.headercart .woocommerce-mini-cart__buttons.buttons:before, .woocommerce.headercart .woocommerce-mini-cart__buttons.buttons:after {
  display: none;
}
.woocommerce a.button, .woocommerce.headercart .buttons a.button.checkout.wc-forward, .woocommerce-page .woocommerce-MyAccount-content .button, .woocommerce-page .woocommerce_checkout_coupon button.button, .woocommerce_checkout_coupon button.button {
  text-align: center;
  background: var(--bs-primary);
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 3rem;
  min-width: 135px;
  height: 35px;
  padding: 1.3rem;
  line-height: 0px;
  margin: 0px !important;
  width: auto;
}
.woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce a.button:focus-visible, .woocommerce-page .woocommerce-MyAccount-content .button:hover, .woocommerce-page .woocommerce-MyAccount-content .button:focus, .woocommerce-page .woocommerce-MyAccount-content .button:focus-visible, .woocommerce-page .woocommerce_checkout_coupon button.button:hover, .woocommerce-page .woocommerce_checkout_coupon button.button:focus, .woocommerce-page .woocommerce_checkout_coupon button.button:focus-visible, .woocommerce.headercart .buttons a.button.checkout.wc-forward:hover, .woocommerce.headercart .buttons a.button.checkout.wc-forward:focus, .woocommerce.headercart .buttons a.button.checkout.wc-forward:focus-visible {
  background: var(--bs-primary-900);
  color: var(--bs-shades-0);
  border-color: var(--bs-primary-900);
}
.woocommerce.headercart .buttons a.button.wc-forward {
  background: transparent;
  border: 1px solid var(--bs-primary);
  line-height: 0;
  font-weight: 500;
  font-size: 0.875rem;
}
.woocommerce.headercart .buttons a.button.wc-forward:hover, .woocommerce a.button, .woocommerce.headercart .buttons a.button.wc-forward:focus, .woocommerce a.button, .woocommerce.headercart .buttons a.button.wc-forward:focus-visible {
  background: var(--bs-primary);
  color: var(--bs-primary-900);
}
.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
  border: none;
  margin-top: 1rem;
  padding: 0;
}
.woocommerce table.shop_table td {
  border-color: var(--bs-neutral-200);
  opacity: 1;
}
.woocommerce table.shop_table td a {
  color: var(--bs-primary-900);
}
.woocommerce-account .woocommerce-MyAccount-content mark {
  background-color: transparent !important;
}
.woocommerce-info {
  border-top-color: var(--bs-primary);
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: var(--bs-neutral-100);
}
.content .woocommerce-error li:only-child {
  margin: 0;
}
.cart-option .qbadge {
  background: var(--bs-primary-900);
  min-width: 20px;
  min-height: 20px;
  display: block;
  border-radius: 20px;
  text-align: center;
  line-height: 18px;
  font-size: 10px;
  font-weight: 500;
  color: var(--bs-shades-0);
  position: absolute;
  top: -8px;
  right: 4px;
  padding: 0 4px;
}
.cart-option .qbadge span {
  color: var(--bs-shades-0) !important;
  top: 4px;
  position: relative;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  display: block !important;
  margin: 0 !important;
}
@media(max-width:767.95px) {
  .cart-option .qbadge span {
    top: 2px;
  }
}
.cart-option a:hover span {
  text-decoration: none !important;
}
.woocommerce.headercart ul.product_list_widget li .product-info {
  display: none;
}
/****/
.woocommerce.headercart ul.product_list_widget::-webkit-scrollbar {
  width: 10px;
}
.woocommerce.headercart ul.product_list_widget::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.woocommerce.headercart ul.product_list_widget::-webkit-scrollbar-thumb {
  background: var(--bs-neutral-200);
}
.woocommerce.headercart ul.product_list_widget::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary-900);
}
/**/
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item) {
  border-radius: 100px;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item .variable-item-span-color, .woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item .variable-item-span-color {
  border-radius: 100px;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item) {
  padding: 4px;
  box-shadow: var(--wvs-item-box-shadow, 0 0 0 2px #E5E5E5);
  margin-left: 6px;
  margin-right: 6px;
}
.woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item).selected, .woo-variation-swatches .wvs-style-squared.variable-items-wrapper.color-variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
  -webkit-box-shadow: var(--wvs-selected-item-box-shadow, 0 0 0 3px #B4D44D);
  box-shadow: var(--wvs-selected-item-box-shadow, 0 0 0 3px #B4D44D);
  color: var(--wvs-selected-item-text-color, #B4D44D);
}
/***Empty Cart Page***/
.woocommerce .empty-cart-page {
  padding: 3rem 0;
}
@media(min-width:1024px) {
  .woocommerce .empty-cart-page {
    padding: 6.5rem 0;
  }
}
.woocommerce .empty-cart-page p.return-to-shop {
  margin-bottom: 0 !important;
}
.woocommerce .empty-cart-page .return-to-shop a.button {
  height: 50px;
  line-height: 8px;
  font-size: 1rem;
}
.woocommerce-info::before {
  color: var(--bs-primary-900);
}
.single-product .woocommerce-notices-wrapper {
  display: none;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  padding-left: 3rem;
}
.single.single-product .product-btns a.button {
  height: auto !important;
  margin-top: 1rem !important;
}
.single.single-product .product-btns a.button.added::after, .single.single-product .product-btns .added_to_cart.wc-forward {
  display: none !important;
}
.woocommerce .woocommerce-remove-coupon {
  font-size: 10px;
  top: -0px;
  position: relative;
  color: red !important;
  font-weight: 500;
}
.page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.cart-subtotal th, .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.cart-subtotal td {
  padding-top: 1.5rem;
}
@media(min-width:1024px) {
  .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.cart-subtotal th, .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.cart-subtotal td {
    padding-top: 2.5rem;
  }
}
.page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.tax-total th, .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.tax-total td {
  padding-bottom: 1.5rem;
}
@media(min-width:1024px) {
  .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.tax-total th, .page-cart .woocommerce .cart-collaterals .cart_totals table.shop_table tr.tax-total td {
    padding-bottom: 2.5rem;
  }
}
.woocommerce ul#shipping_method {
  font-size: 0.875rem;
  text-align: left;
}
.cart-shipping-part ul {
  margin: 0;
  list-style: none;
}
.cart-shipping-part ul li {
  margin: 2rem 0;
}
.cart-shipping-part ul li:last-child {
  margin: 0;
}
@media(min-width:1024px) {
  .cart-shipping-part ul li {
    margin: 2.5rem 0;
  }
  .cart-shipping-part ul li:last-child {
    margin: 0;
  }
}
body .cart-shipping-part h4 {
  font-size: 1.125rem;
  color: var(--bs-primary-900);
  font-weight: 600;
  line-height: 2;
  margin: 0;
}
.cart-shipping-part ul li address {
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-neutral-500);
}
.cart-shipping-part ul li a {
  color: var(--bs-neutral-500) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1rem !important;
}
.cart-shipping-part ul li a:hover {
  color: var(--bs-primary-900) !important;
  text-decoration: underline !important;
}
/*Gravity Form CSS*/
.gform_wrapper.gravity-theme .gform_ajax_spinner {
  display: none !important;
}
.gform_wrapper.gravity-theme .gform_body .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"])::placeholder {
  color: var(--bs-neutral-500);
}
.gform_wrapper.gravity-theme .gform_body .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform_wrapper.gravity-theme .gform_body .gfield textarea {
  font: 400 normal 1rem var(--body-theme-font);
  border: 1px solid var(--bs-neutral-200);
  background: var(--bs-shades-0);
  color: var(--bs-neutral-500);
  border-radius: 100px;
  box-shadow: none;
  outline: none;
  height: 52px;
  padding: .8em 1em;
}
.gform_wrapper.gravity-theme .gform_body .gfield select {
  font: 400 normal 1rem var(--body-theme-font);
  padding: .6rem 1.1rem;
  height: 52px;
}
.gform_wrapper.gravity-theme .gform_body .gfield textarea {
  min-height: 125px;
  border-radius: 18px;
  resize: none;
}
@media (max-width: 1023.98px) {
  .gform_wrapper.gravity-theme .gfield.gfield--width-full.gfield--type-fileupload {
    margin-top: 1rem;
  }
}
.gform_wrapper.gravity-theme .gform_body .gfield_label, .gform_wrapper.gravity-theme .gform_body .gfield_description {
  font: 400 normal 1rem var(--body-theme-font);
  color: var(--bs-neutral-500);
}
.gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"], .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] {
  color: var(--bs-neutral-500);
}
@media (max-width: 1023.98px) {
  .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"], .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] {
    padding-left: 0
  }
}
.gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"] .gfield_required, .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] .gfield_required {
  color: var(--bs-neutral-500);
}
@media (min-width: 1024px) {
  .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"], .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] {
    color: var(--bs-neutral-500);
  }
  .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"] .gfield_required, .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] .gfield_required {
    color: var(--bs-neutral-500);
  }
}
@media (min-width: 1024px) {
  .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"].focussed, .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"].focussed {
    color: var(--bs-neutral-500);
    border-radius: 100px;
    padding: 0.25rem .5rem;
    transform: matrix(0.8, 0, 0, 0.8, 4, -12);
  }
}
.gform_wrapper.gravity-theme .gform_body fieldset > legend {
  padding: .5rem .25rem;
}
@media (max-width: 1023.98px) {
  .gform_wrapper.gravity-theme .gform_body fieldset > legend {
    padding-left: 0;
  }
}
.gform_wrapper.gravity-theme .gform_body fieldset > legend .gfield_required {
  color: var(--bs-neutral-500);
}
.gform_wrapper.gravity-theme .gform_body .gfield_checkbox .form-check-label::before {
  margin-top: 0;
}
.single-product .gform_wrapper.gravity-theme .gform_body .gfield.gfield--type-select label {
  display: block;
  position: relative;
  transform: none;
  left: 0;
}
.gform_wrapper.gravity-theme .gform_body fieldset {
  margin-top: 1rem;
}
.gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title, .gform_wrapper.gravity-theme .gfield_radio label.form-radio-label span.title {
  line-height: normal;
  color: var(--bs-neutral-500);
  font-size: 1rem;
  padding-left: 0;
  padding-right: 0;
}
.gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title a, .gform_wrapper.gravity-theme .gfield_radio label.form-radio-label span.title a {
  color: var(--bs-neutral-500);
  text-decoration: underline;
  font-weight: normal;
}
.gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title a:hover, .gform_wrapper.gravity-theme .gfield_radio label.form-radio-label span.title a:hover {
  color: var(--bs-primary);
}
.gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title a:after, .gform_wrapper.gravity-theme .gfield_radio label.form-radio-label span.title a:after {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_validation_errors {
  color: var(--bs-neutral-900);
  background: var(--bs-error-100);
  border: 1px solid var(--bs-error);
  border-radius: 12px;
  outline: none;
  position: relative;
  box-shadow: none;
}
body .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  color: var(--bs-error-600);
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  padding-left: 25px;
  margin: 0;
}
body .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: 1px solid var(--bs-error-500) !important;
  background: var(--bs-error-50) !important;
}
.gform_wrapper.gravity-theme .gform_footer button.btn.btn-primary {
  padding: 0.9rem 1rem;
  font-weight: 500;
  min-width: 180px;
}
/*File Upload*/
body .gform_wrapper.gravity-theme .gform_drop_area {
  color: var(--bs-neutral-100);
  background-color: var(--bs-primary-800);
  border: 1px solid var(--bs-primary-800);
  border-radius: 18px;
}
body .gform_wrapper.gravity-theme .gform_drop_area:hover {
  border-color: var(--bs-primary);
}
/*body .gform_wrapper.gravity-theme .gform_drop_instructions {*/
/*  display: none;*/
/*}*/
body .gform_wrapper.gravity-theme .gform_drop_instructions {
    display: inline;
}
body .gform_wrapper.gravity-theme .gform_drop_instructions .icon {
    display: block;
    margin: 0 auto 1rem;
    width: 2rem;
    height: 2rem;
}
body .gform_wrapper.gravity-theme .gfield--type-fileupload .file-upload-message {
  position: relative;
}
body .gform_wrapper.gravity-theme .gfield--type-fileupload .file-upload-message i.drag-drop-icon {
  background-image: url(../images/upload-icon.svg);
  background-color: transparent;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto 10px;
}
body .gform_wrapper.gravity-theme .gfield--type-fileupload .file-upload-message p {
  margin: 5px 0 0;
  color: var(--bs-neutral-50);
  font-weight: 400;
}
body .gform_wrapper.gravity-theme .gfield--type-fileupload .file-upload-message p u {
  text-decoration-thickness: 1px;
  font-weight: 400;
}
body .gform_wrapper.gravity-theme .gfield--type-fileupload .btn-link {
    display: inline;
    width: auto;
    top: -1px;
    --bs-btn-font-size: 1.125rem;
    --bs-btn-color: var(--bs-shades-0);
    --bs-btn-border-radius: 0;
    --bs-btn-padding-x: 0;
    --bs-btn-padding-y: 0;
    --bs-btn-hover-color: var(--bs-primary-500);
    --bs-btn-active-color: var(--bs-primary-700);
    text-decoration: underline;
}
body .gform_wrapper.gravity-theme .gfield--type-fileupload .btn-link::after {
    display: none;
}
/*
body .gform_wrapper.gravity-theme .gfield--type-fileupload button:not(.gform_delete_file) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}
*/
body .gform_wrapper.gravity-theme .gfield_description.gform_fileupload_rules {
  color: var(--bs-neutral-50);
  font-size: 0.775rem;
}
body .gform_wrapper.gravity-theme .ginput_preview {
  color: var(--bs-neutral-50);
  font-size: 0.775rem;
}
body .gform_wrapper.gravity-theme .gform_delete_file {
  color: var(--bs-neutral-50);
}
/*  */
.modal-body .modal-heading {
  margin-top: 0 !important;
}
.modal-body .gform_heading {
  display: none;
}
.modal-body .gform_wrapper.gravity-theme .gform_footer, .modal-body .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 0 0 0;
  padding: 25px 0 0;
}
.modal-body .gform_wrapper.gravity-theme .gform_footer button, .modal-body .gform_wrapper.gravity-theme .gform_footer input, .modal-body .gform_wrapper.gravity-theme .gform_page_footer button, .modal-body .gform_wrapper.gravity-theme .gform_page_footer input {
  margin-bottom: 0;
  --bs-btn-padding-y: 0.7rem;
}
/****************************** ****************************** 
                   CTA Block
****************************** *****************************/
.cta-section {
  background-color: var(--bs-primary-900);
  padding: 3rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
}
@media (min-width: 992px) {
  .cta-section {
    padding: 4.5rem 0;
  }
}
@media (min-width: 1200px) {
  .cta-section {
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .cta-section::before {
    background: url(../images/cta-bg.png) 100% 100% no-repeat;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
  }
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-content-part {
  position: relative;
}
@media (min-width: 1024px) {
  .cta-content-part {
    padding-right: 4rem;
  }
}
@media (min-width: 1630px) {
  .cta-content-part {
    padding-right: 9rem;
  }
}
body .cta-content-part h2 {
  color: var(--bs-neutral-50);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
body .cta-content-part p {
  color: var(--bs-neutral-50);
}
.cta-call {
  display: flex;
  padding-top: 1.5rem;
  align-items: center;
}
.cta-call svg.icon {
  flex-shrink: 0;
  margin-right: 15px;
  width: 28px;
  height: 28px;
  color: var(--bs-primary);
}
.cta-call span {
  font-size: 1.125rem;
  color: var(--bs-neutral-50);
  font-weight: 500;
}
@media (max-width: 479.98px) {
  .cta-call span {
    font-size: 1rem;
  }
}
body .cta-call span a {
  color: var(--bs-neutral-50);
  font-weight: 500;
  text-decoration: none;
}
body .cta-call span a:hover {
  color: var(--bs-primary);
}
.cta-section .cta-form .btn {
  width: 100%;
}
.cta-section .cta-form .btn-outline-primary {
  color: var(--bs-neutral-50);
}
.cta-section .cta-form .btn-outline-primary:hover {
  color: var(--bs-btn-hover-color);
}
.cta-section .cta-form .form-control {
  background: var(--bs-primary-800);
  color: var(--bs-neutral-100);
  border: var(--bs-border-width) solid var(--bs-primary-800);
}
.cta-section .cta-form .form-control:focus {
  color: var(--bs-neutral-100);
  border-color: var(--bs-primary);
}
.cta-section .cta-form .form-control::-moz-placeholder {
  color: var(--bs-neutral-300);
}
.cta-section .cta-form .form-control::placeholder {
  color: var(--bs-neutral-300);
}
main.content section.cta-section {
  margin: 0;
}
/*CTA Gravity Form Setting*/
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 0.5rem;
  padding-bottom: 0;
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_label, .cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_description {
  color: var(--bs-neutral-50)
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"] .gfield_required, .cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] .gfield_required {
  color: var(--bs-neutral-50)
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield_label[for^=choice_] {
  color: var(--bs-neutral-50)
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_body fieldset > legend .gfield_required {
  color: var(--bs-neutral-50);
}
.cta-form .gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) .custom-radio .gfield_radio .gchoice {
  background: transparent;
  box-shadow: none;
  margin-right: 0;
  padding: 0;
}
.cta-form .gform_wrapper.gravity-theme .gfield_radio label.form-radio-label span.title {
  color: var(--bs-neutral-50);
}
@media (min-width:1024px) {
  .cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-select .gfield_label {
    display: block;
    position: relative;
    transform: none !important;
    padding-top: 0;
    left: 0;
  }
}
@media (min-width: 1024px) {
  .cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"].focussed, .cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"].focussed {
    background-color: var(--bs-primary-800);
    color: var(--bs-shades-0);
  }
  .cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_label[for^="input_"] .gfield_required, .cta-section .cta-form .gform_wrapper.gravity-theme .gform_body .gfield_description[for^="input_"] .gfield_required {
    color: var(--bs-shades-0);
  }
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gfield_description, .cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-html {
  color: var(--bs-neutral-50)
}
body .cta-section .cta-form .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border: 1px solid var(--bs-error-500) !important;
  background: var(--bs-error-400) !important;
  color: var(--bs-shades-0) !important;
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice {
  min-height: 2rem;
  margin-top: 0;
  margin-bottom: .5rem;
  line-height: 1.3
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice:last-child {
  margin-bottom: 0
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label {
  display: block;
  font-size: 1.125rem;
  line-height: 1.3;
  pointer-events: fill
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label .label-group .title {
  display: block;
  margin-left: 2.5rem
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:after, .cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:before {
  width: 2rem;
  height: 2rem;
  border-radius: 25%
}
@media (min-width:1024px) {
  .cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:after, .cta-section .cta-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:before {
    top: -.3rem
  }
}
.cta-section .cta-form .form-radio-input + .form-radio-label::before {
  border: 2px solid var(--bs-neutral-400);
}
.cta-section .cta-form .form-radio-input:checked + .form-radio-label::after {
  background-color: var(--bs-shades-0) !important;
  box-shadow: 0 0 0px 2px var(--bs-shades-0) inset;
}
.cta-section .cta-form .form-radio-input:checked + .form-radio-label::before {
  border: 2px solid var(--bs-shades-0);
}
.cta-section .cta-form .gform_wrapper.gravity-theme input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):not([aria-invalid="true"]), .cta-section .cta-form .gform_wrapper.gravity-theme textarea, .cta-section .cta-form .gform_wrapper.gravity-theme select {
  color: var(--bs-neutral-100);
  background-color: var(--bs-primary-800);
  border: 1px solid var(--bs-primary-800);
}
.cta-section .cta-form .gform_wrapper.gravity-theme select.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23F5F5F5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.cta-section .cta-form .gform_wrapper.gravity-theme input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):not([aria-invalid="true"]):focus, .cta-section .cta-form .gform_wrapper.gravity-theme textarea:focus, .cta-section .cta-form .gform_wrapper.gravity-theme select:focus {
  border-color: var(--bs-primary);
}
.cta-section .cta-form .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([aria-invalid=true])::-webkit-input-placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme textarea::-webkit-input-placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme select::-webkit-input-placeholder {
  color: var(--bs-neutral-100)
}
.cta-section .cta-form .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([aria-invalid=true])::-moz-placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([aria-invalid=true])::-ms-placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):not([aria-invalid=true])::placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme textarea::-moz-placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme textarea::-ms-placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme textarea::placeholder, .cta-section .cta-form .gform_wrapper.gravity-theme select::placeholder {
  color: var(--bs-neutral-100)
}
.cta-section .cta-form .gform_wrapper.gravity-theme textarea {
  height: 125px !important;
  border-radius: 18px;
  resize: none;
}
@media (min-width:1024px) {
  .cta-section .cta-form .gform_wrapper.gravity-theme textarea {
    padding-top: 1rem
  }
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_footer button.btn-primary {
  margin-bottom: 0;
  background: transparent;
  color: var(--bs-neutral-50);
}
@media (min-width:768px) {
  .cta-section .cta-form .gform_wrapper.gravity-theme .gform_footer button.btn-primary {
    width: auto !important;
  }
}
.cta-section .cta-form .gform_wrapper.gravity-theme .gform_footer button.btn-primary:hover {
  background: var(--bs-primary);
  color: var(--bs-primary-900);
}
/*Gravity Form Custom Width*/
.mobile-align-left {
  padding: 0 2.25rem;
}
@media(max-width:767.98px) {
  .mobile-align-left {
    padding: 0rem;
  }
  .mobile-align-left h2, .mobile-align-left h3, .mobile-align-left h4, .mobile-align-left h5, .mobile-align-left h6, .mobile-align-left p {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .gform-custom-width .gform_wrapper.gravity-theme .gfield.gf_list_inline .custom-radio > .gfield_radio {
    display: flex;
  }
  .gform-custom-width .gform_wrapper.gravity-theme .gfield.gf_list_inline .custom-radio > .gfield_radio .gchoice {
    flex: auto;
    width: auto;
  }
  .gform-custom-width .gform_wrapper.gravity-theme .gfield.gf_list_inline .custom-radio > .gfield_radio .gchoice:last-child {
    margin-right: 0;
  }
}
.gform-custom-width .gform_wrapper.gravity-theme .gform_footer, .gform-custom-width .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 0;
  padding: 1.75rem 0 0 0;
}
.gform-custom-width .gform_wrapper.gravity-theme .gform_footer button {
  margin: 0;
}
.gform-custom-width .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield, .gform-custom-width .gform_wrapper.gravity-theme .gform_footer {
  width: auto;
  margin: 0;
}
.gform-custom-width .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 0.5rem;
  padding-bottom: 0;
}
.gform-custom-width .gform_wrapper.gravity-theme .gform_body .gfield p {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .gform-custom-width .gform_wrapper.gravity-theme .gform_body .gfield p {
    font-size: 1.125rem;
  }
}
.gform-custom-width .gform_wrapper.gravity-theme .gform_body .gfield_description {
  font: 400 normal 1.125rem var(--body-theme-font);
  color: var(--bs-neutral-500);
  font-weight: 500;
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield_label[for^=choice_] {
  color: var(--bs-neutral-500)
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gfield_description, .gform-custom-width .gform_wrapper.gravity-theme .gfield--type-html {
  color: var(--bs-neutral-500)
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice {
  min-height: 2rem;
  margin-top: 0;
  margin-bottom: .5rem;
  line-height: 1.3;
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice:last-child {
  margin-bottom: 0;
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label {
  display: block;
  font-size: 1.125rem;
  line-height: 1.3;
  pointer-events: fill;
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label .label-group .title {
  display: block;
  margin-left: 2.5rem;
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:after, .gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:before {
  width: 2rem;
  height: 2rem;
  border-radius: 25%;
}
@media (min-width:1024px) {
  .gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:after, .gform-custom-width .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice .custom-control-label:before {
    top: -.3rem;
  }
}
.gform-custom-width .gform_wrapper.gravity-theme textarea {
  height: 180px !important;
}
@media (min-width:1024px) {
  .gform-custom-width .gform_wrapper.gravity-theme textarea {
    padding-top: 1rem
  }
}
@media (min-width: 1024px) {
  .gform-custom-width .gform_wrapper.gravity-theme .gfield--type-select .gfield_label {
    display: block;
    position: relative;
    transform: none !important;
    padding-top: 0;
    left: 0;
  }
}
.gform-custom-width .gform_wrapper.gravity-theme .gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform-custom-width .gform_wrapper.gravity-theme .gfield_error textarea {
  border-color: var(--bs-error-200);
}
/**/
.page-id-2354 .gform-custom-width {
  width: 100%;
  max-width: 800px;
  background: transparent;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (min-width: 768px) {
  .page-id-2354 .gform-custom-width .gform_wrapper.gravity-theme .gform_footer button.btn-primary {
    width: auto !important;
  }
}
.page-id-2354 .acf-innerblocks-container .gform_wrapper.gravity-theme .gform_body .gfield.gfield--type-html {
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}
.page-id-2354 .gform-custom-width .gform_wrapper.gravity-theme .custom-radio {
  margin-top: 0;
}
.page-id-2354 .gform-custom-width .gform_wrapper.gravity-theme .gform_body .gfield p {
  margin-bottom: 0;
}
.page-id-2349 .gform-custom-width.zdcb-container-block.has-background.background-type--color.background-position--wide > hr {
  height: 200px;
}
.page-id-2349 .gform-custom-width .gform_wrapper {
  margin: 0 auto;
  padding: 2.25rem !important;
  max-width: 650px;
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-200);
}
.page-id-2164 .gform-custom-width .gform_wrapper {
  margin: 0 auto;
  padding: 2.25rem !important;
  max-width: 650px;
  background: var(--bs-neutral-50);
}
.page-id-2164 .gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) .custom-radio .gfield_radio .gchoice, .page-id-2164 .gform_wrapper.gravity-theme .gform_body .gfield.gf_list_inline .custom-radio .gfield_radio .gchoice, .page-id-2349 .gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) .custom-radio .gfield_radio .gchoice, .page-id-2349 .gform_wrapper.gravity-theme .gform_body .gfield.gf_list_inline .custom-radio .gfield_radio .gchoice, .single-product .gform_wrapper.gravity-theme .gform_body .gfield:not(.pc_image_choice) .custom-radio .gfield_radio .gchoice, .single-product .gform_wrapper.gravity-theme .gform_body .gfield.gf_list_inline .custom-radio .gfield_radio .gchoice {
  background: transparent;
  box-shadow: none;
  margin-right: 0;
  padding: 0;
}
/***********/
.woocommerce-checkout #payment div.form-row {
  padding: 0 !important;
  position: relative;
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox, .woocommerce-page form.checkout .woocommerce-checkout-payment .form-row label.checkbox {
  display: block;
  border: none;
  padding: 1rem 0;
  border-radius: 0;
  width: auto;
  position: relative;
  background: var(--bs-shades-0);
  font-size: 0.875rem;
  line-height: 1.5;
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox input.input-checkbox {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox input[type=checkbox] {
  position: relative;
  border: 2px solid var(--bs-neutral-400);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 .6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 16px;
  width: 16px;
  -webkit-appearance: none;
  opacity: 1;
  display: inline-block;
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox input[type=checkbox]:checked {
  background-color: var(--bs-primary);
  opacity: 1;
  border-color: var(--bs-primary);
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox input[type=checkbox]:before {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 1px 1px 0;
  margin: -1px -1px 0 -1px;
  transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.woocommerce form.checkout .woocommerce-checkout-payment .form-row label.checkbox input:checked:before {
  border: solid var(--bs-primary-900);
  border-width: 0 1px 1px 0;
}
.woocommerce .cart-collaterals ul#shipping_method li {
  text-align: right !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box, #add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  border-radius: 30px !important;
  border: 1px solid var(--bs-primary-500);
  background: var(--bs-neutral-100);
  padding: 0;
}
.wc-stripe-elements-field, .wc-stripe-iban-element-field {
  border: 1px solid var(--bs-neutral-200) !important;
  margin: 5px 0 !important;
  padding: 8px 12px !important;
  background-color: #fff !important;
  outline: 0 !important;
  border-radius: 4rem !important;
  height: 36px !important;
  line-height: 0 !important;
  font-size: 14px !important;
}
.wc-stripe-elements-field:focus, .wc-stripe-iban-element-field:focus, .wc-stripe-elements-field:active, .wc-stripe-iban-element-field:active {
  border: 1px solid var(--bs-primary) !important;
}
.woocommerce form .form-row label:before, .woocommerce form .form-row label:after {
  display: none !important;
}
.woocommerce form .form-row label {
  left: 0 !important;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box p {
  margin: 0;
  padding: 10px 20px;
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box p a {
  color: var(--bs-neutral-500);
}
.page-checkout.woocommerce-checkout .woocommerce-checkout-payment div.payment_box p a:hover {
  color: var(--bs-neutral-500);
}
#add_payment_method #payment div.payment_box .wc-credit-card-form, .woocommerce-cart #payment div.payment_box .wc-credit-card-form, .woocommerce-checkout #payment div.payment_box .wc-credit-card-form {
  background: #fff !important;
  border-top: 1px solid var(--bs-primary);
  border-radius: 0 0 2rem 2rem;
  padding: 1rem;
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method {
  padding: 5px 0;
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs-primary-900);
}
.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label {
  left: 0;
  padding-left: 30px;
}
#add_payment_method #payment ul.payment_methods li .stripe-credit-card-brand, .woocommerce-checkout #payment ul.payment_methods li .stripe-credit-card-brand {
  margin-top: -8px !important;
  width: 24px !important;
  height: 24px !important;
}
.woocommerce-checkout #payment div.form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p a:after {
  display: none;
}
.page-checkout .cart_totals .shop_table.shop_table_responsive .order-total .includes_tax, .page-cart .cart_totals .shop_table.shop_table_responsive .order-total .includes_tax {
  font-size: 11px;
  position: relative;
  bottom: 10px;
  display: block;
  line-height: normal;
  margin-top: 10px;
}
/**********/
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0 !important;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  display: none;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  cursor: pointer;
  position: relative;
  left: 1.8rem;
}
.woocommerce-checkout #payment ul.payment_methods li label::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid var(--bs-neutral-500);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: border-color 400ms ease;
}
.woocommerce-checkout #payment ul.payment_methods li label::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--bs-primary-900);
  border: 2px solid var(--bs-primary-900);
  border-radius: 50%;
  top: 50%;
  left: 2px;
  transform: translateY(-50%) scale(0);
  transition: transform 400ms ease;
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label::before {
  border-color: var(--bs-primary-900);
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label::after {
  transform: translateY(-50%) scale(0.5);
}
/****************************** ****************************** 
            Tiles Block
****************************** *****************************/
.zdcb-tiles-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.zdcb-tiles-block ul li {
  padding-right: 8px;
  padding-left: 8px;
  margin: 8px 0;
  max-width: 315px;
  width: 100%;
}
@media (min-width: 768px) {
  .zdcb-tiles-block ul li {
    padding-right: 12px;
    padding-left: 12px;
    margin: 12px 0;
  }
}
.zdcb-tiles-block .tile-item {
  background: var(--bs-shades-0);
  border: 1px solid var(--bs-neutral-100);
  box-shadow: 0px 1px 0px 0px var(--bs-shades-2);
  padding: 1.25rem;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .zdcb-tiles-block .tile-item {
    padding: 2rem 1.5rem;
  }
}
.zdcb-tiles-block .tile-item figure {
  width: 64px;
  height: 64px;
  margin: 0 0 1.5rem;
  background: var(--bs-primary-50);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .zdcb-tiles-block .tile-item figure {
    width: 100px;
    height: 100px;
    margin: 0 0 2.25rem;
  }
}
.zdcb-tiles-block .tile-item figure img {
  width: 32px;
  height: 32px;
}
.zdcb-tiles-block .tile-item header {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bs-primary-900);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .zdcb-tiles-block .tile-item header {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .zdcb-tiles-block .tile-item header {
    font-size: 1.5rem;
  }
}
@media (min-width: 1630px) {
  .zdcb-tiles-block .tile-item header {
    font-size: 1.75rem;
  }
}
.zdcb-tiles-block .tile-item p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}
.zdcb-tiles-block .tile-item .btn {
  margin-top: 1rem;
}
.zdcb-tiles-block .tile-item .btn.btn-link {
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.zdcb-tiles-block .tile-item .btn.btn-link::after {
  border-color: var(--bs-primary);
  margin-top: 3px;
}
.zdcb-tiles-block .tile-item .btn.btn-link:hover {
  color: var(--bs-primary);
}
/****************************** ****************************** 
            Algolia Search Plugin CSS
****************************** *****************************/
.ais-Hits.ais-Hits--empty {
  min-height: 300px;
}
.search__wrapper .search-title-part {
  text-align: center;
  position: relative;
  padding: 3.5rem 0;
}
.search__wrapper .search-title-part::after {
  position: absolute;
  z-index: 9;
  background-color: var(--bs-neutral-100);
  border: 0;
  margin: 0 auto;
  top: 0 !important;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100% + 15rem) !important;
  opacity: 1;
  content: "";
}
.search__wrapper #ais-wrapper #ais-header {
  z-index: 99;
  position: relative;
}
.search__wrapper #ais-wrapper #ais-header h1, .search__wrapper #ais-wrapper #ais-header h2, .search__wrapper #ais-wrapper #ais-header h3 {
  position: relative;
  padding-top: 1.5rem;
}
.search__wrapper #ais-wrapper #ais-header h1::before, .search__wrapper #ais-wrapper #ais-header h2::before, .search__wrapper #ais-wrapper #ais-header h3::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 4px;
  background: var(--bs-primary);
  top: 0;
  left: calc(50% - 30px);
}
.search__wrapper #ais-wrapper {
  margin: 0 auto;
  flex-flow: column;
  max-width: 1440px;
}
.search__wrapper .algolia-search-box-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
}
.search__wrapper #algolia-search-box {
  margin-bottom: 1rem;
}
.search__wrapper .ais-SearchBox-form {
  display: block;
  position: relative;
}
.search__wrapper #algolia-search-box input {
  border: 1px solid var(--bs-neutral-200);
  color: var(--bs-neutral-900);
  background: var(--bs-shades-0);
  width: 100%;
  font-size: 1rem;
  padding: 18px 50px 18px 70px;
  font-weight: 400;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  appearance: none;
  border-radius: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
.search__wrapper #algolia-search-box input:focus {
  border: 1px solid var(--bs-primary);
}
.search__wrapper .ais-SearchBox-submit[hidden], .search__wrapper .ais-SearchBox-reset[hidden], .search__wrapper .ais-SearchBox-loadingIndicator[hidden] {
  display: none;
}
.search__wrapper #ais-facets {
  margin: 0;
  display: flex;
  font-family: var(--body-theme-font);
  justify-content: center;
  align-items: center;
}
.search__wrapper #ais-facets label {
  font-size: 0.875rem;
  margin-right: 1em;
  font-weight: 600;
  color: var(--bs-primary-900);
  flex-shrink: 0;
  display: none;
}
.search__wrapper #ais-facets #facet-post-types .ais-Menu-list {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
  justify-content: center;
  align-items: center;
}
.search__wrapper #ais-facets #facet-post-types .ais-Menu-list li {
  margin: 5px 0;
}
.search__wrapper #ais-facets #facet-post-types .ais-Menu-list .ais-Menu-item .ais-Menu-link {
  display: inline-block;
  margin: 0 5px;
  font-size: 0.875rem;
  color: var(--bs-primary-900);
  font-weight: 500;
  border: 1px solid var(--bs-neutral-300);
  background: var(--bs-shades-0);
  border-radius: 3rem;
  padding: 6px 12px;
  text-decoration: none;
}
.search__wrapper #ais-facets #facet-post-types .ais-Menu-list .ais-Menu-item .ais-Menu-link:hover {
  background: var(--bs-primary-500);
  border: 1px solid var(--bs-primary-500);
}
.search__wrapper #ais-facets #facet-post-types .ais-Menu-list .ais-Menu-item.ais-Menu-item--selected .ais-Menu-link {
  background: var(--bs-primary-500);
  border: 1px solid var(--bs-primary-500);
}
.search__wrapper .ais-Menu-count, .search__wrapper .ais-HierarchicalMenu-count, .search__wrapper .ais-RefinementList-count {
  margin-left: 6px;
  top: -4px;
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: var(--bs-neutral-500);
}
.search__wrapper .ais-Menu-item.ais-Menu-item--selected .ais-Menu-count, .search__wrapper .ais-Menu-item.ais-Menu-item--selected .ais-HierarchicalMenu-count, .search__wrapper .ais-Menu-item.ais-Menu-item--selected .ais-RefinementList-count {
  color: var(--bs-primary-900);
}
.search__wrapper #ais-facets #facet-post-types .ais-Menu-list .ais-Menu-item .ais-Menu-link:hover .ais-Menu-label, .search__wrapper #ais-facets #facet-post-types .ais-Menu-list .ais-Menu-item .ais-Menu-link:hover .ais-Menu-count {
  color: var(--bs-primary-900);
}
.search__wrapper .algolia-search-box-wrapper .search-icon {
  position: absolute;
  left: 30px;
  top: 21px;
  color: var(--bs-neutral-500);
}
.search__wrapper .algolia-search-box-wrapper .ais-Stats .ais-Stats-text {
  color: var(--bs-primary-900);
  font-size: 1.125rem;
  font-weight: 400;
  margin: 2.5rem 0 0.75rem 0;
  display: block;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content h2 a mark {
  color: var(--bs-primary-900);
  font-weight: 400;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content .excerpt mark {
  color: var(--bs-neutral-500);
  font-weight: 400;
}
.search__wrapper .search-results__list mark, .search__wrapper .search-results__list .mark {
  background-color: var(--bs-primary-200);
  padding: 0;
}
.search__wrapper #algolia-search-box {
  margin-bottom: 0rem;
}
.search__wrapper .search-results__list .algolia-search-box-wrapper {
  display: none;
}
.search__wrapper .search-results__list {
  z-index: 999;
  position: relative;
  min-height: 300px;
}
.search__wrapper .search-results__list ol.ais-Hits-list {
  grid-gap: 20px;
  display: block;
  list-style: none;
  padding: 0;
}
@media(min-width:768px) {
  .search__wrapper .search-results__list ol.ais-Hits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
  }
}
@media(min-width:1200px) {
  .search__wrapper .search-results__list ol.ais-Hits-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.search__wrapper .search-results__list ol.ais-Hits-list .ais-Hits-item {
  margin-bottom: 1.25rem;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--thumbnail, .search__wrapper .search-results__list ol.ais-Hits-list article > img {
  margin-bottom: 2rem;
  height: 250px;
  overflow: hidden;
}
@media(min-width:768px) {
  .search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--thumbnail, .search__wrapper .search-results__list ol.ais-Hits-list article > img {
    height: 280px;
  }
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--thumbnail a {
  overflow: hidden;
  display: block;
  height: 100%;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--thumbnail img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-width: 100%;
  transition: transform 25s ease-out;
  height: 100%;
  border: 1px solid var(--bs-neutral-100);
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content h2 a, .search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content h2 {
  color: var(--bs-primary-900);
  font-size: 1.4375rem;
  font-weight: 400;
  text-decoration: none;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content .excerpt, .search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content .excerpt p {
  font: 400 1rem/1.25 var(--body-theme-font);
  color: var(--bs-neutral-500);
  margin: 0;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content .btn.btn-outline-primary {
  margin-top: 1.75rem;
  min-width: 150px;
  font-size: 0.875rem;
  font-weight: 500;
}
.search__wrapper .search-results__list ol.ais-Hits-list article {
  position: relative;
}
.search__wrapper .search-results__list ol.ais-Hits-list article .ais-hits--content > span {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.875rem;
  color: var(--bs-primary-900);
  background: var(--bs-primary-500);
  padding: 4px 8px;
  border-radius: 3rem;
  text-transform: capitalize;
}
.search__wrapper .ais-Pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2.5rem 0;
  list-style: none;
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--previousPage, .search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--nextPage {
  width: auto
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item {
  font: normal 500 0.875rem/1.125 var(--body-theme-font);
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  border-radius: 3rem;
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item a {
  text-decoration: none;
  color: var(--bs-neutral-500);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item a:hover {
  color: var(--bs-primary-900);
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected {
  background: var(--bs-primary);
  color: var(--bs-primary-900);
  text-decoration: none;
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a {
  color: var(--bs-primary-900);
}
.search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--firstPage, .search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--lastPage, .search__wrapper .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--disabled {
  display: none;
}
/****************************** ****************************** 
                  Map Info Window CSS
****************************** *****************************/
.map .gm-style-iw {
  padding: .75rem;
  max-width: 425px !important;
  width: 100%;
  border-radius: 0;
}
@media (max-width: 479.98px) {
  .map .gm-style-iw {
    max-width: 250px !important;
  }
}
.map .gm-style-iw-d > div {
  display: flex;
  align-items: center;
  background: var(--bs-neutral-50);
}
#wpsl-gmap.map .wpsl-info-window.location-details {
  max-width: 100% !important;
  display: flex;
  align-items: center;
  width: 100%;
}
.map .map_info_img {
  padding-right: 1.25rem;
}
.map .map_info_img > img {
  width: 136px;
  height: 136px;
  object-fit: cover;
}
@media (max-width: 479.98px) {
  .map .map_info_img > img {
    width: 100px;
    height: 100px;
  }
}
.map .map_info_detail {
  padding: 0;
  flex: auto;
}
.map .map_info_detail header {
  font-size: 1.125rem;
  color: var(--bs-primary-800);
  font-weight: 600;
}
.map .map_info_detail ul.details {
  list-style: none;
  margin: 0;
}
.map .map_info_detail ul.details li {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--bs-neutral-500);
}
.map .map_info_detail a.btn.btn-link, .map .map_info_detail .wpsl-directions {
  padding: 0 !important;
  color: var(--bs-primary-800);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.map .map_info_detail .wpsl-directions::after {
  background-image: url("data:image/svg+xml,<svg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 12.6641L10 8.66406L6 4.66406' stroke='%23424143' stroke-width='1.125' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  position: absolute !important;
  content: "" !important;
  width: 16px !important;
  height: 17px !important;
  background-size: cover;
  transition: transform .25s ease-out;
}
.map .map_info_detail .wpsl-directions:hover::after {
  transform: translate(5px);
}
.map .map_info_detail a.btn.btn-link .icon {
  position: relative;
  top: 2px;
}
.map .gm-style .gm-style-iw-a .gm-style-iw-t .gm-style-iw-c .gm-style-iw-d {
  height: auto;
}
/**/
.cart-collaterals {
  position: relative;
}
.cart-collaterals.ajax-data-loading::before {
  background: rgba(0, 0, 0, 0.5) url(../images/loader.svg) 50% 50% no-repeat;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/** SINGLE PRODUCT PAGE **/
.single-product .related-products-slider .products .product:last-child {
  margin-right: 0;
}
.single-product .related-products-slider {
  margin-top: 4rem;
}
.single-product .related-products-slider span.border-line {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body.single.single-product #enquireModal .gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title {
  color: var(--bs-neutral-900);
  font-size: 0.875rem;
}
body.single.single-product #enquireModal .gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title a {
  color: var(--bs-neutral-900);
}
body.single.single-product #enquireModal .gform_wrapper.gravity-theme .gfield_checkbox label.form-check-label span.title a:hover {
  color: var(--bs-neutral-900);
}
/****************************** ****************************** 
                   Product Specifications Block
****************************** *****************************/
.single-product .product-information .accordion-item {
  border: none;
  margin: 12px 0;
}
.single-product .product-information .accordion-item .icon {
  width: 22px;
  height: 22px;
  margin-right: 15px;
  color: var(--bs-primary-900);
}
.single-product .product-information .accordion-button {
  background-color: var(--bs-neutral-50);
  padding: 1.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--bs-primary-900);
}
@media (min-width: 768px) {
  .single-product .product-information .accordion-button {
    font-size: 1.125rem;
  }
}
.single-product .product-information .accordion-button:focus {
  box-shadow: none;
}
.single-product .product-information .accordion-button:not(.collapsed) {
  color: var(--bs-primary-900);
  background-color: var(--bs-neutral-50);
  box-shadow: none;
}
.single-product .product-information .accordion-body {
  background-color: var(--bs-neutral-50);
  padding: 1rem 1.5rem;
}
.single-product .product-information .accordion-body p {
  color: var(--bs-neutral-500);
  margin: 1.5rem 0;
}
.single-product .product-information .accordion-body p:first-child {
  margin-top: 0;
}
/*
single-product .product-information .accordion-body p:last-child {
  margin-bottom: 0;
}

*/
.single-product .product-information .table {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--bs-neutral-700);
  margin: 0;
}
@media (min-width: 768px) {
  .single-product .product-information .table {
    font-size: 1rem;
  }
}
.single-product .product-information .table > :not(caption) > * > * {
  padding: 0.8rem 0;
  font-weight: 400;
  background-color: var(--bs-neutral-50);
  border-bottom: 1px solid var(--bs-neutral-200);
}
.single-product .product-information .table-striped > tbody > tr > th {
  color: var(--bs-neutral-700);
  box-shadow: none;
  font-weight: 600;
  width: 120px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .single-product .product-information .table-striped > tbody > tr > th {
    width: 150px;
  }
}
@media (min-width: 1200px) {
  .single-product .product-information .table-striped > tbody > tr > th {
    width: 200px;
  }
}
.single-product .product-information .table-striped > tbody > tr > td {
  color: var(--bs-neutral-500);
  box-shadow: none;
  font-weight: 400;
}
/** Related Products */
.single-product ul.products li.product {
  width: 48%;
}
.single-product ul.products li.product:nth-child(even) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .single-product ul.products li.product {
    width: 22.05%;
  }
  .single-product ul.products li.product:nth-child(even) {
    margin-right: 3.8%;
  }
}
/*.single-product .product-item-box .product-pic img {
  position: static;
}*/
.single-product .product-item-box:hover .product-pic img {
  transform: scale3d(1.15, 1.15, 1.15);
}
.single-product .product-item-box:hover .product-btn {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.single-product .product-item-box .product-pic span.new-label, .single-product .product-item-box .product-pic span.sale-label {
  border-radius: 25px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bs-primary-900);
  width: 50px;
  position: absolute;
  top: 12px;
  z-index: 2;
  text-align: center;
  padding: 2px 0;
}
@media (min-width: 768px) {
  .single-product .product-item-box .product-pic span.new-label, .single-product .product-item-box .product-pic span.sale-label {
    width: 55px;
    padding: 4px 0;
  }
}
.single-product .product-item-box .product-pic span.new-label {
  background: var(--bs-primary);
  left: 12px;
}
.single-product .product-item-box .product-pic span.sale-label {
  background: var(--bs-secondary);
  right: 12px;
}
.single-product .product .product-content {
  display: flex;
  padding: 0.5rem 0 0;
  flex-direction: column;
}
@media (min-width: 576px) {
  .single-product .product .product-content {
    padding: 0.75rem 0 0;
  }
}
@media (min-width: 768px) {
  .single-product .product .product-content {
    padding: 1rem 0 0;
  }
}
@media (min-width: 1024px) {
  .single-product .product .product-content {
    padding: 1.25rem 0 0;
  }
}
.single-product .product .product-content .product-cat {
  color: var(--bs-neutral-700);
  margin-bottom: 5px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .single-product .product .product-content .product-cat {
    margin-bottom: 8px;
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .single-product .product .product-content .product-cat {
    font-size: 1rem;
  }
}
.single-product .product .product-content .product-name {
  display: block;
  text-align: left;
  min-height: 38px;
}
.single-product .product .product-content .product-name__header {
  font-size: 1rem;
  line-height: normal;
  color: var(--bs-primary-900);
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
@media (min-width: 768px) {
  .single-product .product .product-content .product-name {
    min-height: 42px;
  }
  .single-product .product .product-content .product-name__header {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .single-product .product .product-content .product-name {
    min-height: 48px;
  }
  .single-product .product .product-content .product-name__header {
    font-size: 1.25rem;
  }
}
.single-product .product .product-content .product-name__header {
  color: var(--bs-primary-900);
  display: block;
  text-decoration: none;
}
.single-product .product .product-content .product-price {
  display: block;
  margin-top: 5px;
  min-height: 24px;
}
@media (min-width: 768px) {
  .single-product .product .product-content .product-price {
    margin-top: 8px;
    min-height: 27px;
  }
}
@media (min-width: 1024px) {
  .single-product .product .product-content .product-price {
    margin-top: 10px;
    min-height: 30px;
  }
}
/*
.product-value {
  color: var(--bs-primary-900);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .product-value {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .product-value {
    font-size: 1.125rem;
  }
}
.product-value span:not(.woocommerce-Price-amount):not(.woocommerce-Price-currencySymbol) {
  display: inline-block;
  margin: 0 3px 0 0;
}
.product-value .p_discount {
  color: var(--bs-primary-900);
}
.product-value .p_original {
  color: var(--bs-neutral-500);
  text-decoration: line-through;
}
*/
.single-product .product .product-content .product-btn {
  display: block;
  margin-top: 10px;
}
.single-product .product .product-content .product-btn {
  width: 100%;
  font-size: 0.875rem;
}
.wccsq-quote-description.wccsq-quote-requested .wccsq-contact-link, .wccsq-quote-available .wccsq-contact-link {
  display: none;
}
.woocommerce table.shop_table td .wccsq-quote-description .wccsq-contact-link, .woocommerce table.shop_table td .wccsq-quote-description .wccsq-refresh-link.show-if-requested {
  font-size: 0.84rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--bs-neutral-500);
  border-bottom: 1px solid var(--bs-neutral-500);
  transition: all 0.25s ease;
}
.woocommerce table.shop_table td .wccsq-quote-description .wccsq-contact-link:hover, .woocommerce table.shop_table td .wccsq-quote-description .wccsq-refresh-link.show-if-requested:hover {
  color: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
}
@media (min-width: 768px) {
  .single-product .product .product-content .product-btn {
    margin-top: 15px;
  }
  .single-product .product .product-content .product-btn {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .single-product .product .product-content .product-btn {
    margin-top: 20px;
  }
  .single-product .product .product-content .product-btn {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .single-product .product .product-content .product-btn {
    margin-top: 25px;
  }
}
/*Filter Disable*/
.product-filter--left .dropdown .dropdown-menu .dropdown-body li.disabled, .filter-modal .accordion-body .dropdown-body li.disabled {
  pointer-events: none;
  opacity: 0.2;
}
.wccsq-popup-wrap .wccsq-popup {
  top: 50%;
  padding: 40px;
  max-width: 500;
}
.wccsq-popup-wrap .wccsq-popup .wccsq-body h1 {
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--bs-primary-900);
}
.wccsq-popup-wrap .wccsq-popup .wccsq-body p {
  margin-bottom: 0;
}
/* WooCommerce Custom Product Category Header */
.tax-product_cat .zdcb-container-block .wp-block-heading {
  text-transform: capitalize;
}
.tax-product_cat .zdcb-container-block.has-background.background-type--color.background-position--full > hr {
  height: 100% !important;
}
.tax-product_cat .zdcb-container-block.has-background.background-type--color > hr {
  top: 0 !important;
}
.tax-product_cat .zdcb-container-block.has-background.background-type--color > hr {
  z-index: -2;
  background: 0 0;
  background-color: var(--bs-neutral-100);
  border: 0;
  height: 100%;
  margin: 0 auto;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 1;
}
.wrap a:not(.no-ext-icon)[rel*=external]:after {
  background-image: url("../images/external-link.svg");
}
/* WooCommerce NAB Payment Page CSS */
.page-checkout.woocommerce-checkout .nab_payment_form #nab_card_details p.form-row {
  margin-bottom: 1rem !important;
}
.page-checkout.woocommerce-checkout .nab_payment_form #nab_card_details p.form-row #cc-expire-month {
  margin-bottom: 1rem;
}
.page-checkout.woocommerce-checkout #jsPayButton.submit.buy.button {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary-900);
  font-family: var(--primary-theme-font);
  font-size: 1rem;
  font-weight: 500;
  padding: 1.2rem 1rem;
  min-width: 200px;
  transition: all .25s ease-out;
  text-align: center;
  border-radius: 50rem;
  margin-bottom: 2rem;
}
.page-checkout.woocommerce-checkout #jsPayButton.submit.buy.button:hover {
  color: var(--bs-shades-0);
  background-color: var(--bs-primary-900);
  border-color: var(--bs-primary-900);
}