/* Lumond Product Filter */
.catalog-wrapper {
  width: 100%;
  padding: 0px 16px;
  display: flex;
  gap: 16px;
  min-height: 400px;
}
@media (max-width: 1024px) {
  .catalog-wrapper {
    padding: 0px;
  }
}
.catalog-wrapper .filter-container {
  width: 12%;
  min-width: 176px;
  display: flex;
  flex-direction: column;
}
.catalog-wrapper .filter-container.hide {
  display: none !important;
}
.catalog-wrapper .filter-container .sticky-filter {
  position: sticky;
  top: 110px;
}
.catalog-wrapper .filter-container .filter-title {
  font-family: "Gill Sans Medium";
  text-transform: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-align: left;
  margin-bottom: 16px;
}
.catalog-wrapper .filter-container div.filter-item:nth-child(1) {
  border: 1px solid #e7e7e7;
}
.catalog-wrapper .filter-container div.filter-item {
  padding: 16px;
}
.catalog-wrapper .filter-container div.filter-item:nth-child(n+2) {
  border-right: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list {
  list-style-type: none !important;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item {
  font-family: "Gill Sans Medium";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: none !important;
  color: #666;
  display: flex;
  padding: 6px 0px;
  column-gap: 8px;
  cursor: pointer;
  align-items: center;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item.checked div.filter-checkbox {
  background-color: black !important;
  border: 1px solid black !important;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item.checked div.filter-checkbox svg {
  display: block;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item.checked label {
  color: black !important;
  font-weight: 600;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item div.filter-checkbox {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  padding: 2px 1px;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item div.filter-checkbox svg {
  display: none;
}
.catalog-wrapper .filter-container div.filter-item ul.options-list li.option-item label {
  color: #666;
}
.catalog-wrapper div.filter-results-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.catalog-wrapper div.filter-results-wrapper div.md-filter-header {
  margin: 0px -16px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.catalog-wrapper div.filter-results-wrapper div.md-filter-header div.field-filter {
  display: flex;
  align-items: center;
  gap: 4px;
}
.catalog-wrapper div.filter-results-wrapper div.md-filter-header div.field-filter span.field-icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.catalog-wrapper div.filter-results-wrapper div.md-filter-header div.field-filter span.field-icon svg {
  position: absolute;
  top: -1px;
}
.catalog-wrapper div.filter-results-wrapper div.md-filter-header div.field-filter span.icon-label {
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
  line-height: 16px;
  color: black !important;
  opacity: 100%;
  font-weight: 600;
  font-family: "Gill Sans Medium";
}
.catalog-wrapper div.filter-results-wrapper div.md-filter-header div.field-sortby {
  font-size: 13px;
  text-transform: uppercase;
  line-height: 16px;
  letter-spacing: 0.04em;
  color: black !important;
  opacity: 100%;
  font-weight: 600;
  font-family: "Gill Sans Medium";
}
.catalog-wrapper div.filter-results-wrapper div.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper div.filter-header {
    padding: 8px;
    justify-content: center;
  }
}
.catalog-wrapper div.filter-results-wrapper div.filter-header .results-count {
  text-transform: uppercase;
  font-family: "Gill Sans Medium";
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.04em;
}
.catalog-wrapper div.filter-results-wrapper div.filter-header div.selection-dropdown {
  display: flex;
  gap: 8px;
}
.catalog-wrapper div.filter-results-wrapper div.filter-header div.selection-dropdown label {
  text-transform: uppercase;
  font-family: "Gill Sans Medium";
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.04em;
}
.catalog-wrapper div.filter-results-wrapper div.filter-header div.selection-dropdown select {
  display: none;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list {
  margin: 0px 0px 150px 0px !important;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 24px;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper ul.product-list {
    margin: 0px 0px 100px 0px !important;
  }
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 33%;
  width: 33%;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item {
    max-width: 49%;
    width: 49%;
  }
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item a.product_link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
  width: 100%;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-img-container img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-img-container div.badge {
  font-family: "Gill Sans Medium";
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 16px;
  z-index: 2;
  display: none;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-img-container div.badge {
    font-size: 12px;
    line-height: 16px;
    top: 8px;
    left: 8px;
  }
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.out-of-stock div:not(.product-img-container),
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.out-of-stock div:not(.product-details) span,
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.out-of-stock img {
  opacity: 40%;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.out-of-stock div.product-details {
  opacity: 60% !important;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.out-of-stock div.product-img-container div.badge {
  display: block;
  background: #aeaeae;
  color: black;
  opacity: 100% !important;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.sale div.product-img-container div.badge {
  display: block;
  background: black;
  color: white;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item.new div.product-img-container div.badge {
  display: block !important;
  background: white;
  color: black;
  display: none;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details .product-title {
  font-family: "Gill Sans Medium";
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  margin: 0px;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details .product-title {
    font-size: 12px;
  }
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details div.product-price-container {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details div.product-price-container.sale span.regular-price {
  text-decoration: line-through !important;
  color: #666 !important;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details div.product-price-container.sale span.sale-price {
  display: block;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details div.product-price-container {
    font-size: 12px;
  }
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details div.product-price-container span.regular-price {
  color: black !important;
  text-decoration: none !important;
}
.catalog-wrapper div.filter-results-wrapper ul.product-list li.product-item div.product-details div.product-price-container span.sale-price {
  color: black;
  display: none;
}
.catalog-wrapper div.filter-results-wrapper .filter-footer {
  width: 100%;
  text-align: center;
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper .filter-footer {
    padding: 16px 0px 0px 0px;
  }
}
.catalog-wrapper div.filter-results-wrapper .filter-footer button.load-more-btn {
  background-color: white !important;
  border: 1px solid black;
  font-family: "Gill Sans Medium";
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: black;
  padding: 16px 48px;
  text-decoration: uppercase !important;
}
@media (max-width: 1024px) {
  .catalog-wrapper div.filter-results-wrapper .filter-footer button.load-more-btn {
    width: 100%;
  }
}

.custom-select.init {
  position: relative;
}
.custom-select .select-toggle {
  padding: 0px;
  display: flex;
  gap: 4px;
}
.custom-select .select-toggle span.select-selection {
  font-family: "Gill Sans Medium";
  font-size: 13px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #535353 !important;
  cursor: pointer;
  user-select: none;
}
.custom-select .select-toggle span.dropdown-arrow {
  display: flex;
  align-items: center;
  width: 10px;
  position: relative;
}
.custom-select .select-toggle span.dropdown-arrow svg {
  width: 10px;
  height: 10px;
  top: 2px;
  position: absolute;
}
.custom-select ul.select-options {
  user-select: none;
  min-width: 160px !important;
  transition: display 0.5s ease-in-out;
  display: none;
  position: absolute;
  z-index: 999;
  margin: 0px;
  list-style-type: none;
  background: white;
  gap: 16px;
  flex-direction: column;
  gap: 16px;
  min-width: max-content;
  border: 1px solid #e7e7e7;
  padding: 16px;
  text-transform: uppercase;
  right: 0px;
  top: 24px;
  align-items: flex-start;
  text-align: left;
}
.custom-select ul.select-options.visible {
  display: flex !important;
}
.custom-select ul.select-options li.select-option {
  transition: color 0.3s ease-in-out;
  cursor: pointer;
  font-family: "Gill Sans Medium";
  font-size: 13px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #999;
}
.custom-select ul.select-options li.select-option:hover {
  color: black;
}
.custom-select ul.select-options li.select-option.selected {
  color: black !important;
}

#custom-select-1-mb span.select-selection {
  color: black !important;
}
#custom-select-1-mb ul.select-options {
  top: 30px !important;
  right: -16px !important;
}

/**Sizing**/
@media (max-width: 1024px) {
  .lte-md-none {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .gt-md-none {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .lte-md-flex {
    display: flex !important;
  }
}

/**End Sizing*/
/**Loader*/
ul.product-list li.product-item.custom_loader div:not(.product-img-container) {
  opacity: 100% !important;
}

li.product-item.custom_loader div:not(.product-details) span, li.product-item.custom_loader img, li.product-item.custom_loader div.product-details {
  opacity: 100% !important;
}

.product-item.custom_loader .product-img-container {
  background: url("https://lumond.co/wp-content/uploads/2024/06/skeleton_logo.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #d5d8dc !important;
}
.product-item.custom_loader .product-img-container .badge {
  display: none !important;
}
.product-item.custom_loader .product-img-container img {
  visibility: hidden;
}
.product-item.custom_loader .product-title {
  font-size: 0px !important;
  background-color: #d5d8dc;
}
.product-item.custom_loader .product-price-container {
  font-size: 0px !important;
  background-color: #d5d8dc;
  width: 50%;
  margin: auto;
}

/*End Loader */
li.no-products-found {
  width: 100%;
  text-align: center;
  font-family: "Gill Sans Medium";
  font-size: 16px;
  list-style-type: none;
  padding-top: 20px;
}

/*Mobile Popup*/
.filter-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999;
  overflow: hidden;
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
.filter-popup.visible {
  display: flex !important;
}
.filter-popup .filter-popup-content {
  height: 100%;
  width: 100%;
  padding: 16px;
}
.filter-popup .filter-popup-content .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
}
.filter-popup .filter-popup-content .filter-header .filter-heading {
  display: flex;
  align-items: center;
  gap: 4px;
}
.filter-popup .filter-popup-content .filter-header .filter-heading button.exit-filter-modal-btn {
  background: white;
  padding: 0px;
}
.filter-popup .filter-popup-content .filter-header .filter-heading span.heading-label {
  font-family: "Gill Sans Heavy";
  font-size: 19px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.05em;
  text-align: left;
}
.filter-popup .filter-popup-content .filter-header .clear-all-filter {
  font-family: "Gill Sans Medium";
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.09em;
  text-align: right;
  color: #b3b3b3;
  text-transform: uppercase;
}
.filter-popup .filter-popup-content .filter-container {
  height: 100%;
  border: 1px solid #e7e7e7;
  display: flex;
  background: white;
  overflow-y: scroll;
  overflow-x: hidden;
  flex-direction: column;
  position: fixed;
  max-height: calc(100% - 224px);
  width: calc(100% - 32px);
}
.filter-popup .filter-popup-content .filter-container .filter-title {
  font-family: "Gill Sans Medium";
  text-transform: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-align: left;
  margin-bottom: 16px;
}
.filter-popup .filter-popup-content .filter-container div.filter-item {
  border-bottom: 1px solid #e7e7e7;
  padding: 16px;
}
.filter-popup .filter-popup-content .filter-container ul.options-list {
  list-style-type: none !important;
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item {
  font-family: "Gill Sans Medium";
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: none !important;
  color: #666;
  display: flex;
  padding: 6px 0px;
  column-gap: 8px;
  cursor: pointer;
  align-items: center;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item.checked div.filter-checkbox {
  background-color: black !important;
  border: 1px solid black !important;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item.checked div.filter-checkbox svg {
  display: block;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item.checked label {
  color: black !important;
  font-weight: 600;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item div.filter-checkbox {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  padding: 2px 1px;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item div.filter-checkbox svg {
  display: none;
}
.filter-popup .filter-popup-content .filter-container ul.options-list li.option-item label {
  color: #666;
}
.filter-popup .filter-popup-content .filter-footer {
  background-color: white;
  position: fixed;
  bottom: 0px;
  width: calc(100% - 32px);
  text-transform: uppercase;
  padding: 16px 0px;
  z-index: 9999;
}
.filter-popup .filter-popup-content .filter-footer button.filter-apply-btn {
  padding: 16px;
  width: 100%;
  font-family: "Gill Sans Medium";
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 8px;
  letter-spacing: 0.04em;
}

body.overflow-hidden {
  overflow: hidden !important;
}

/* End Mobile Filter Popup*/
.customer-reviews-carousel .customer-reviews-carousel-item {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  width: 100%;
  column-gap: 14px;
  background: #F9F9F9;
}
.customer-reviews-carousel .customer-reviews-carousel-item .rating-container {
  width: 100%;
}
.customer-reviews-carousel .customer-reviews-carousel-item .review-container {
  width: 100%;
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
.customer-reviews-carousel .customer-reviews-carousel-item .customer-name {
  width: 100%;
  font-family: "Gill Sans Heavy";
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
}

/**Lumond Products Carousel**/
.lumond-products-carousel a.lumond-products-carousel-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lumond-products-carousel a.lumond-products-carousel-item img {
  object-fit: cover;
  aspect-ratio: 1/1;
}
.lumond-products-carousel div.product-title {
  font-family: "Gill Sans Medium";
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.17em;
  text-align: left;
}
.lumond-products-carousel div.product-pricing-wrapper span.regular-price {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: line-through !important;
}
.lumond-products-carousel div.product-pricing-wrapper span.sale-price {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  color: black;
}
.faq-section-container {
  max-width: 928px !important;
}
.faq-section-container .elementor-accordion {
  display: flex;
  gap: 16px;
  flex-direction: column;
  border: 0px;
}
.faq-section-container .elementor-accordion > .elementor-accordion-item:nth-child(1) div.elementor-tab-title {
  border-top: 0px !important;
}
.faq-section-container .elementor-accordion > .elementor-accordion-item:nth-child(n+1) {
  border-top: 1px solid #e7e7e7;
}
.faq-section-container .elementor-accordion .elementor-accordion-item {
  background-color: white !important;
  padding: 32px !important;
}
.faq-section-container .elementor-accordion div.elementor-tab-title {
  padding: 0px !important;
  position: relative;
  border-top: 0px solid #e7e7e7;
  transition: padding 0.5s ease-in-out;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.faq-section-container .elementor-accordion div.elementor-tab-title span.elementor-accordion-icon-closed {
  display: block !important;
}
.faq-section-container .elementor-accordion div.elementor-tab-title span.elementor-accordion-icon-closed svg {
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 1024px) {
  .faq-section-container .elementor-accordion div.elementor-tab-title span.elementor-accordion-icon-closed {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .faq-section-container .elementor-accordion div.elementor-tab-title.elementor-active span.elementor-accordion-icon-opened {
    display: none;
  }
}
.faq-section-container .elementor-accordion div.elementor-tab-title.elementor-active span.elementor-accordion-icon-closed {
  display: block !important;
}
.faq-section-container .elementor-accordion div.elementor-tab-title.elementor-active span.elementor-accordion-icon-closed svg {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .faq-section-container .elementor-accordion div.elementor-tab-title.elementor-active span.elementor-accordion-icon-closed {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.faq-section-container .elementor-accordion div.elementor-tab-title svg {
  position: absolute;
  right: 0px;
  width: 33px !important;
  height: 24px !important;
}
.faq-section-container .elementor-accordion div.elementor-tab-title.elementor-active {
  padding-bottom: 0px !important;
}
@media (max-width: 1024px) {
  .faq-section-container .elementor-accordion div.elementor-tab-title.elementor-active span.elementor-accordion-icon-closed {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.faq-section-container .elementor-accordion .elementor-tab-content {
  border-top: 0px !important;
  padding-top: 8px !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
  padding-bottom: 0px !important;
}
.faq-section-container .elementor-accordion .elementor-tab-content p {
  margin: 0px !important;
}
.faq-section-container .elementor-accordion a.elementor-accordion-title {
  font-size: 15px !important;
  line-height: 24px !important;
  font-family: "Gill Sans Heavy";
  outline: 0px !important;
}
@media (max-width: 1024px) {
  .faq-section-container .elementor-accordion a.elementor-accordion-title {
    font-size: 13px !important;
  }
}
@media (max-width: 1024px) {
  .faq-section-container .elementor-accordion a.elementor-accordion-title {
    font-size: 13px !important;
    max-width: calc(100% - 32px);
    display: block;
    font-weight: 700;
  }
}
.faq-section-container .elementor-accordion div.elementor-tab-content {
  font-size: 17px !important;
  line-height: 24px !important;
  font-family: "Gill Sans Medium";
}

.lumond-subscribe-form form .elementor-form-fields-wrapper {
  border-bottom: 2px solid #5f5f5f !important;
  display: flex;
  flex-wrap: nowrap;
}
.lumond-subscribe-form form .elementor-form-fields-wrapper input[type=email] {
  color: #fff !important;
  background: transparent !important;
  border: 0px !important;
  padding: 0px 16px 0px 0px !important;
}
.lumond-subscribe-form form .elementor-form-fields-wrapper input[type=email]::placeholder {
  color: #5f5f5f !important;
}
.lumond-subscribe-form form div.elementor-field-type-submit {
  max-width: 30%;
}
.lumond-subscribe-form form div.elementor-field-type-submit button.elementor-button {
  padding: 16px !important;
}

.lumond-products-gallery-carousel {
  min-height: auto;
  height: auto;
  aspect-ratio: 1/1;
}
@media (min-width: 500px) and (max-width: 1024px) {
  .lumond-products-gallery-carousel {
    aspect-ratio: auto !important;
  }
}
.lumond-products-gallery-carousel div.elementor-image-gallery {
  display: flex;
  flex-wrap: wrap;
}
.lumond-products-gallery-carousel div.elementor-image-gallery div.gallery {
  display: flex;
  flex-wrap: wrap;
}
.lumond-products-gallery-carousel div.elementor-image-gallery div.gallery figure {
  width: 100%;
}
.lumond-products-gallery-carousel div.elementor-image-gallery div.gallery figure div.gallery-icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: zoom-in !important;
}
.lumond-products-gallery-carousel div.elementor-image-gallery div.gallery figure div.gallery-icon .zoomed {
  cursor: zoom-out !important;
}
.lumond-products-gallery-carousel div.elementor-image-gallery div.gallery figure div.gallery-icon img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease, left 0.3s ease, top 0.3s ease;
  position: relative;
}
.lumond-products-gallery-carousel div.splide__arrows {
  position: relative;
  bottom: 28px;
  padding-top: 0px !important;
}

.splide-product-img-container {
  background-size: cover;
}

/**Lumond Horizontal Tabs */
.lumond-horizontal-tabs {
  min-width: 761px;
}
.lumond-horizontal-tabs .elementor-tabs {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 64px !important;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-wrapper {
  display: flex;
  column-gap: 45px;
  justify-content: space-between;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
  padding: 0px !important;
  border: 0px !important;
  font-family: "Gill Sans Medium";
  color: rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: center;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title:after, .lumond-horizontal-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title:before {
  border: 0px !important;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active {
  color: rgb(0, 0, 0) !important;
  border-bottom: 2px solid black !important;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content {
  border: 0px !important;
  padding: 0px !important;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content div.lumond-horizontal-tab-content {
  display: flex;
  gap: 0px;
  align-items: center;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content div.lumond-horizontal-tab-content .column-1 {
  width: 44%;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content div.lumond-horizontal-tab-content .column-1 img {
  width: 100%;
  height: 100%;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content div.lumond-horizontal-tab-content .column-2 {
  width: 66%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  padding-left: 56px !important;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content div.lumond-horizontal-tab-content .column-2 .content-title {
  width: 100%;
  font-family: "Gill Sans Medium";
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.05em;
}
.lumond-horizontal-tabs .elementor-tabs .elementor-tabs-content-wrapper .elementor-tab-content div.lumond-horizontal-tab-content .column-2 .content-desc {
  width: 100%;
  font-family: "Gill Sans Medium";
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
}

/**Lumond Vertical Tabs**/
.lumond-vertical-tabs {
  min-width: 1024px;
  max-width: 74%;
}
.lumond-vertical-tabs .elementor-tabs {
  display: flex;
  gap: 10px !important;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: max-content !important;
  flex-basis: 24%;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title {
  padding: 0px;
  border: 0px !important;
  display: flex;
  flex-direction: row;
  column-gap: 8px;
  align-items: center;
  color: rgba(0, 0, 0, 0.3);
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title:before, .lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title:after {
  border: 0px !important;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title svg {
  display: none;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active {
  color: black;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-wrapper .elementor-tab-title.elementor-active svg {
  display: block;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper {
  border: 0px !important;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content {
  border: 0px !important;
  padding: 0px !important;
  font-family: "Gill Sans Medium";
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content.elementor-active {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content .product-sku-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content .product-sku-container .sku-label {
  font-family: "Gill Sans Medium";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: black;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content .product-sku-container .sku-val {
  font-family: "Gill Sans Medium";
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content .content-heading {
  font-family: "Gill Sans Medium";
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
}
.lumond-vertical-tabs .elementor-tabs .elementor-tabs-content-wrapper div.elementor-tab-content .content-desc {
  font-family: "Gill Sans Medium";
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

/**Lumond Vertical Tabs Accordion**/
.lumond-vertical-tabs-accordion {
  font-family: "Gill Sans Medium";
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.lumond-vertical-tabs-accordion .elementor-accordion-item {
  border-right: 0px !important;
  border-left: 0px !important;
}
.lumond-vertical-tabs-accordion .product-sku-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.lumond-vertical-tabs-accordion .product-sku-container .sku-label {
  font-family: "Gill Sans Medium";
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: black;
}
.lumond-vertical-tabs-accordion .product-sku-container .sku-val {
  font-family: "Gill Sans Medium";
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
}
.lumond-vertical-tabs-accordion .content-heading {
  font-family: "Gill Sans Medium";
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
}
.lumond-vertical-tabs-accordion .content-desc {
  font-family: "Gill Sans Medium";
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-align: left;
}
.lumond-vertical-tabs-accordion .elementor-tab-title a.elementor-accordion-title {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.lumond-vertical-tabs-accordion .elementor-tab-title a.elementor-accordion-title svg {
  transition: transform 0.5s ease-in-out;
}
.lumond-vertical-tabs-accordion .elementor-tab-title.elementor-active a.elementor-accordion-title svg {
  transform: rotate(180deg);
}
.lumond-vertical-tabs-accordion .elementor-tab-content {
  border-top: 0px !important;
}
.lumond-vertical-tabs-accordion .elementor-tab-content.elementor-active {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

/**Carousel**/
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows {
  display: flex;
  justify-content: center;
  opacity: 1 !important;
  padding-top: 32px;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows.hide {
  display: none !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows button.splide__arrow {
  display: block !important;
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  opacity: 1 !important;
  background-color: transparent !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows button.splide__arrow svg {
  cursor: pointer !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows button.splide__arrow svg {
  width: 24px !important;
  height: 24px !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows button.splide__arrow--prev {
  transform: rotate(180deg);
  opacity: 1 !important;
  color: black;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows button.splide__arrow.splide__arrow--next {
  top: 14px !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows ul.splide__pagination {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  opacity: 1 !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows ul.splide__pagination li button.splide__pagination__page {
  background-color: #D9D9D9 !important;
}
div.lumond-carousel:not(.custom-arrows):not(.type-2) div.splide__arrows ul.splide__pagination li button.splide__pagination__page.is-active {
  transform: scale(1) !important;
  background-color: black !important;
}

div.lumond-carousel.custom-arrows:not(.type-2) div.splide__arrows {
  position: absolute;
  top: 47%;
  width: 100%;
  bottom: auto !important;
  justify-content: space-between;
}
div.lumond-carousel.custom-arrows:not(.type-2) div.splide__arrows button {
  background: transparent !important;
  font-size: 20px !important;
}
div.lumond-carousel.custom-arrows:not(.type-2) div.splide__arrows button.splide__arrow--prev {
  left: 0px !important;
}
div.lumond-carousel.custom-arrows:not(.type-2) div.splide__arrows button.splide__arrow--prev svg {
  transform: rotate(0deg) !important;
}
div.lumond-carousel.custom-arrows:not(.type-2) div.splide__arrows button.splide__arrow--next {
  right: 0px !important;
}
div.lumond-carousel.custom-arrows:not(.type-2) ul.splide__pagination {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: 30px !important;
  opacity: 1 !important;
}
div.lumond-carousel.custom-arrows:not(.type-2) ul.splide__pagination li button.splide__pagination__page {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
div.lumond-carousel.custom-arrows:not(.type-2) ul.splide__pagination li button.splide__pagination__page.is-active {
  transform: scale(1) !important;
  background-color: black !important;
}

div.lumond-carousel.type-2 div.splide__arrows {
  position: absolute;
  top: 40%;
  width: 100%;
  bottom: auto !important;
}
div.lumond-carousel.type-2 div.splide__arrows button {
  background: transparent !important;
  font-size: 20px !important;
  right: -60px;
  box-shadow: 0 2px 10px rgba(54, 54, 54, 0.1490196078);
  line-height: 0;
  transform: scale(1.001);
  transition: background 0.15s ease-in-out, opacity 0.15s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out;
  overflow: hidden;
  border: 0px;
  font-weight: 600;
  display: block;
}
div.lumond-carousel.type-2 div.splide__arrows button.splide__arrow--prev {
  left: -60px !important;
}
div.lumond-carousel.type-2 div.splide__arrows button.splide__arrow--prev svg {
  transform: rotate(0deg) !important;
}
div.lumond-carousel.type-2 div.splide__arrows button.splide__arrow--next {
  right: -60px !important;
}
div.lumond-carousel.type-2 ul.splide__pagination {
  display: none;
}

.lumond-contact-us-form input, .lumond-contact-us-form textarea {
  border: 1px solid #d8d8d8 !important;
  padding: 8px 16px;
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.lumond-contact-us-form input::placeholder, .lumond-contact-us-form textarea::placeholder {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

body.woocommerce-checkout div.wc-block-components-express-payment__content {
  border: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container {
  max-width: 80% !important;
  padding: 0px !important;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout div#content > div.ast-container {
    max-width: calc(100% - 32px) !important;
  }
}
body.woocommerce-checkout div#content > div.ast-container p {
  margin: 0px !important;
  display: none !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: "Gill Sans Medium";
}
@media (max-width: 1024px) {
  body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout {
    padding-top: 16px;
  }
}
@media (max-width: 1024px) {
  body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout {
    flex-direction: column;
  }
}
@media (max-width: 732px) {
  body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout {
    flex-direction: column-reverse;
  }
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-express-payment-continue-rule.wc-block-components-express-payment-continue-rule--checkout {
  padding: 0px;
  margin-bottom: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout input.wc-block-components-radio-control__input {
  min-width: 16px !important;
  min-height: 16px !important;
  height: 16px !important;
  width: 16px !important;
  background: white !important;
  border-radius: 50% !important;
  cursor: pointer;
  outline: 0px !important;
  margin: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout input.wc-block-components-radio-control__input:before {
  min-width: 8px !important;
  min-height: 8px !important;
  height: 8px !important;
  width: 8px !important;
  border-radius: 50% !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout button.components-button.wc-block-components-button.wc-block-components-checkout-place-order-button {
  width: 100% !important;
  border-radius: 3px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout button.components-button.wc-block-components-button.wc-block-components-checkout-place-order-button span.wc-block-components-button__text {
  text-transform: uppercase;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-text-input:not(.is-active) input {
  padding: 16px 0px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-text-input:not(.is-active) label {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-text-input.is-active input {
  padding: 16px 10px;
  border: 0.5px solid #737373;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-text-input.is-active label {
  display: none;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-text-input {
  margin-top: 16px;
  padding-bottom: 0px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-main.wc-block-checkout__main.wp-block-woocommerce-checkout-fields-block {
  width: 58%;
  padding: 0px;
  max-width: calc(58% - 24px);
}
@media (max-width: 1024px) {
  body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-main.wc-block-checkout__main.wp-block-woocommerce-checkout-fields-block {
    width: 100%;
    max-width: 100%;
  }
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block {
  width: 42%;
  max-width: calc(42% - 24px);
  padding: 0px;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-sidebar-layout.wc-block-checkout div.wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block {
    width: 100%;
    max-width: 100%;
  }
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item__quantity {
  width: 24px;
  height: 24px;
  background: black;
  color: white;
  border-color: black !important;
  box-shadow: none !important;
}
body.woocommerce-checkout div#content > div.ast-container input {
  font-family: "Gill Sans Medium" !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset input {
  font-family: "Gill Sans Medium" !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__shipping-fields div.wc-block-components-checkout-step__heading {
  margin-bottom: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset:nth-child(n+2) div.wc-block-components-checkout-step__heading {
  margin-bottom: 16px;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method p {
  display: block !important;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method span#radio-control-wc-payment-method-options-paypal__label {
  display: flex;
  justify-content: space-between;
  padding-right: 8px;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method div.wc-block-components-radio-control-accordion-option label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked {
  background: #f7f7f7;
  border: 0.5px solid black !important;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method div.wc-block-components-radio-control-accordion-option label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked + div.wc-block-components-radio-control-accordion-content {
  padding-top: 16px;
  padding-bottom: 16px;
  background: #f7f7f7;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method div.wc-block-components-radio-control-accordion-option label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked + div.wc-block-components-radio-control-accordion-content div.wc-stripe-blocks-payment-method-content {
  margin: 0px;
}
body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method div.wc-block-components-radio-control-accordion-option label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked + div.wc-block-components-radio-control-accordion-content input, body.woocommerce-checkout div#content > div.ast-container form.wc-block-components-form.wc-block-checkout__form fieldset.wc-block-checkout__payment-method div.wc-block-components-radio-control-accordion-option label.wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked + div.wc-block-components-radio-control-accordion-content div.wc-stripe-card-container {
  background-color: white !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout div.wc-block-components-express-payment__title-container {
  position: inherit;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout div.wc-block-components-express-payment__title-container:before, body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout div.wc-block-components-express-payment__title-container:after {
  border: 0px !important;
  display: none;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout div.wc-block-components-express-payment__title-container h2.wc-block-components-title.wc-block-components-express-payment__title {
  font-family: "Gill Sans Medium";
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  transform: none;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout div.wc-block-components-express-payment__content {
  padding: 0px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment.wc-block-components-express-payment--checkout div.wc-block-components-express-payment__content:after {
  border: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-express-payment-continue-rule.wc-block-components-express-payment-continue-rule--checkout {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-checkout-step__container:after {
  display: none !important;
}
body.woocommerce-checkout div#content > div.ast-container fieldset.wc-block-components-checkout-step.wc-block-components-checkout-step--with-step-number {
  padding: 0px;
  border: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container fieldset.wc-block-components-checkout-step.wc-block-components-checkout-step--with-step-number div.wc-block-components-checkout-step__content div.wc-block-components-text-input label {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.4);
}
body.woocommerce-checkout div#content > div.ast-container h2.wc-block-components-title.wc-block-components-checkout-step__title {
  font-family: "Gill Sans Medium";
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
body.woocommerce-checkout div#content > div.ast-container h2.wc-block-components-title.wc-block-components-checkout-step__title:before {
  display: none !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item {
  font-family: "Gill Sans Medium";
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  padding-top: 6px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item:after {
  border: 0px !important;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 96px);
  gap: 8px;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__description span.wc-block-components-product-price__value, body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__description ins.wc-block-components-product-price__value {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__description span.wc-block-components-product-price__regular, body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__description del.wc-block-components-product-price__regular {
  font-family: Gill Sans;
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  color: #9f9f9f;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__description span.wc-block-components-product-name {
  font-family: "Gill Sans Medium";
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  display: contents;
}
body.woocommerce-checkout div#content > div.ast-container div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__total-price {
  width: 0px !important;
  display: none !important;
}
body.woocommerce-checkout div.wc-block-components-order-summary button.wc-block-components-panel__button[aria-expanded=true] {
  display: none;
}
body.woocommerce-checkout div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__image {
  width: 96px;
}
body.woocommerce-checkout div.wc-block-components-order-summary-item div.wc-block-components-order-summary-item__image img {
  width: 96px;
  height: 96px;
  margin: 0px;
  object-fit: cover;
  max-width: max-content !important;
}
body.woocommerce-checkout div.wc-block-components-shipping-rates-control__package input.wc-block-components-radio-control__input {
  margin-left: 16px;
}
body.woocommerce-checkout div.wc-block-components-shipping-rates-control__package label {
  padding-left: 50px;
}
body.woocommerce-checkout div.wc-block-components-checkbox.wc-block-checkout__use-address-for-billing, body.woocommerce-checkout div.wc-block-checkout__add-note {
  padding: 13px;
  border: 0.5px solid #50575e;
}
body.woocommerce-checkout div.wc-block-components-checkbox.wc-block-checkout__use-address-for-billing label, body.woocommerce-checkout div.wc-block-checkout__add-note label {
  display: flex;
  align-items: center;
}
body.woocommerce-checkout div.wc-block-components-checkbox.wc-block-checkout__use-address-for-billing div.wc-block-components-checkbox, body.woocommerce-checkout div.wc-block-checkout__add-note div.wc-block-components-checkbox {
  margin: 0px;
}
body.woocommerce-checkout input {
  border-radius: 0px !important;
}
body.woocommerce-checkout div.wc-block-components-checkout-step__heading {
  margin-top: 32px;
  margin-bottom: 0px;
}
body.woocommerce-checkout div.wc-block-components-checkout-step__heading span.wc-block-components-checkout-step__heading-content {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
body.woocommerce-checkout div.wc-stripe-inline-form * {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-cart-items-block.wc-block-components-totals-wrapper:after {
  border-top: 0px !important;
}
body.woocommerce-checkout div.wc-block-components-order-summary.wc-block-components-panel > h2 {
  display: none;
}
body.woocommerce-checkout div.wc-block-components-order-summary__button-text {
  display: none !important;
}
body.woocommerce-checkout h2.wc-block-components-order-summary.wc-block-components-panel {
  display: none;
}
body.woocommerce-checkout div.wc-block-components-country-input {
  margin-top: 16px;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-block > div.wc-block-components-totals-wrapper {
  border: 0px;
  padding: 4px 0px !important;
  font-size: 16px;
  line-height: 18px;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-block > div.wc-block-components-totals-wrapper:after {
  border: 0px;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-block > div.wc-block-components-totals-wrapper div.wc-block-formatted-money-amount {
  font-size: 18px;
  line-height: 18px;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-block > div.wc-block-components-totals-wrapper:last-child span {
  font-size: 22px !important;
  line-height: 24px !important;
}
body.woocommerce-checkout div.wc-block-components-totals-coupon__content form.wc-block-components-totals-coupon__form {
  align-items: center;
}
body.woocommerce-checkout div.wc-block-components-totals-coupon__content form.wc-block-components-totals-coupon__form div.wc-block-components-text-input {
  margin: 0px !important;
}
body.woocommerce-checkout div.wc-block-components-totals-coupon__content button[type=submit] {
  padding: 19px 24px 19px 24px;
  gap: 8px;
  border: 0.5px 0px 0px 0px;
  opacity: 0px;
  border: 0.5px solid #e0e0e0 !important;
  background-color: #f7f7f7 !important;
  color: #9b9b9b !important;
  font-weight: 600;
}
@media (max-width: 1023px) {
  body.woocommerce-checkout div.wc-block-components-order-summary__content {
    padding-top: 32px;
  }
}
body.woocommerce-checkout div.wc-block-components-country-input {
  width: calc(100% - 12px) !important;
}
@media (max-width: 1024px) {
  body.woocommerce-checkout div.wc-block-components-country-input {
    width: 100% !important;
  }
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  padding: 16px 0px !important;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-fee-block:empty {
  display: none;
}
body.woocommerce-checkout div.wp-block-woocommerce-checkout-order-summary-discount-block:empty {
  display: none;
}
body.woocommerce-checkout div#billing-country label.components-base-control__label, body.woocommerce-checkout div#shipping-country label.components-base-control__label {
  display: none;
}
body.woocommerce-checkout div#billing-country input, body.woocommerce-checkout div#shipping-country input {
  padding: 16px 8px !important;
}
body.woocommerce-checkout span[id^=radio-control] {
  font-family: "Gill Sans Medium";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: black;
}
body.woocommerce-checkout div.wc-block-components-checkout-step__content div.wc-block-checkout__add-note {
  border: 1px solid #d6d4d4;
}
body.woocommerce-checkout input[id^=wc-block-components-totals-coupon__input] {
  border: 0.5px solid #d6d4d4;
}

.lumond-about-us-heading {
  position: relative;
  top: -96px;
  height: 64px;
}
@media (max-width: 1024px) {
  .lumond-about-us-heading {
    top: 0px;
    height: auto;
  }
}

body {
  -webkit-tap-highlight-color: transparent !important;
}

/*# sourceMappingURL=lumond-customizations-public.css.map */
