.site-header-inner-wrap {
  background: var(--global-palette6);
}

#masthead {
  background: unset !important;
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.header-contact p {
  color: white;
  margin: 0;
}
.header-contact p a {
  font-size: 24px;
  color: #9FC3FF;
  text-decoration: none !important;
}
.header-contact p a:hover {
  color: #B60903;
}

.woocommerce-page .entry-hero-container-inner {
  background-image: url("/wp-content/uploads/2024/12/about-us.png");
}
.woocommerce-page .entry-hero-container-inner h1 {
  font-size: 60px;
  color: white;
}
.woocommerce-page .woocommerce-button {
  background: var(--global-palette2);
}
.woocommerce-page .woocommerce-button:hover {
  background: var(--global-palette2-hover);
}

.woocommerce-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.woocommerce-message .button {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  text-align: center;
}

/*:not(.woocommerce-page) .entry-hero{
	display: none;
}*/
.search-toggle-open {
  border-radius: 5rem;
}

.site-bottom-header-wrap {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.product-categories__filters {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  background: #F5F5F5;
  padding: 1rem;
  margin-block: 2rem;
}
.product-categories__filters__dropdown {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: bold;
}
.product-categories__filters__dropdown img {
  width: 1.25rem;
  transition: all 0.3s;
}
.product-categories__filters__dropdown img.rotate {
  transform: rotateX(180deg);
}
.product-categories__filters__content {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .product-categories__filters__content {
    display: flex !important;
  }
}
.product-categories__filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  flex-grow: 1;
}
.product-categories__filters__list__filter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 calc(33.333% - 0.667rem);
  min-width: 10rem;
}
.product-categories__filters__list__filter label {
  font-weight: bold;
}
.product-categories__filters__buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-categories__filters__buttons button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-categories__filters__buttons button p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .product-categories__filters {
    flex-direction: column;
    align-items: center;
  }
  .product-categories__filters__dropdown {
    display: flex;
  }
  .product-categories__filters__content {
    display: none;
    flex-direction: column;
  }
  .product-categories__filters__list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
  }
  .product-categories__filters__list__filter {
    flex: 0 0 100%;
    width: 100%;
  }
}
.product-categories__list {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.5rem;
  padding-left: 0 !important;
  margin: 1rem 0 !important;
}
.product-categories__list.--products {
  grid-template-columns: repeat(4, 1fr);
}
.product-categories__list__category {
  grid-column: span 2;
}
.product-categories__list__category.--small {
  grid-column: span 2;
}
.product-categories__list__category.--medium {
  grid-column: span 3;
}
@media screen and (max-width: 768px) {
  .product-categories__list__category.--medium {
    grid-column: span 2;
  }
}
.product-categories__list__category.--large {
  grid-column: span 6;
}
@media screen and (max-width: 768px) {
  .product-categories__list__category.--large {
    grid-column: span 2;
  }
}
.product-categories__list__category.--full {
  grid-column: span 12;
}
@media screen and (max-width: 768px) {
  .product-categories__list__category.--full {
    grid-column: span 2;
  }
}
.product-categories__list__category a {
  background: var(--global-palette1);
  color: var(--global-palette9);
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 600;
}
.product-categories__list__category a img {
  max-width: 10rem;
  max-height: 6rem;
}
.product-categories__list__category a p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-categories__list__category a p img {
  width: 1.5rem;
  transform: rotateZ(-90deg);
  filter: invert(1);
}
.product-categories__list__category a:hover, .product-categories__list__category a:focus {
  background: var(--global-palette6);
  color: var(--global-palette9);
}
.product-categories__list__category a:not(:has(.product-categories__list__category__image)) p {
  width: 100%;
  justify-content: space-between;
}
.product-categories__list__product {
  background: var(--global-palette9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.product-categories__list__product > a:nth-child(1) {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 1rem;
  height: 100%;
}
.product-categories__list__product > a:nth-child(1) img {
  width: 100%;
  margin: auto;
  object-fit: contain;
  aspect-ratio: 1;
}
.product-categories__list__product__info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-categories__list__product__info__sku {
  font-size: 0.75rem;
  color: #6C6C6C;
}
.product-categories__list__product__info__name {
  color: black;
  flex-grow: 1;
}
.product-categories__list__product__info__price {
  color: var(--global-palette1);
}
.product-categories__list__product .add-to-cart {
  background: var(--global-palette1) !important;
  color: var(--global-palette9) !important;
  width: 100%;
  font-weight: 700;
}
.product-categories__list__product .add-to-cart:hover {
  background: var(--global-palette6) !important;
}
.product-categories__list__product .contractor-price-notice {
  order: 5;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 1rem;
}
.product-categories__list__product .contractor-price-notice img {
  width: 1.25rem;
  margin: 0;
}
.product-categories__list__product:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.product-categories__list__product .read-more {
  color: white;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .product-categories__list__product {
    grid-column: span 2;
  }
  .product-categories__list__product a img {
    max-width: 8rem;
  }
}
@media (max-width: 768px) {
  .product-categories__list {
    grid-template-columns: 1fr 1fr;
  }
}

.product.entry .sku_wrapper, .product.entry .product-number, .product.entry .--separator {
  color: #414141 !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}

.related.products ul {
  gap: 1rem;
}
.related.products ul li {
  padding: 1rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) !important;
  border-radius: 0.5rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.related.products ul li .product-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0) !important;
}
.related.products ul li .product-details .product-sku {
  order: 1;
  font-size: 0.75rem;
  color: #6C6C6C;
}
.related.products ul li .product-details .woocommerce-loop-product__title {
  order: 2;
  color: black;
  height: fill-available;
  height: -moz-available;
  height: -webkit-fill-available;
}
.related.products ul li .product-details .woocommerce-loop-product__title a {
  font-size: 1rem;
}
.related.products ul li .product-details .price {
  order: 3;
  color: var(--global-palette1) !important;
  margin-bottom: 0.5rem;
}
.related.products ul li .product-details .product-action-wrap {
  position: relative !important;
  order: 4;
  opacity: 1 !important;
  bottom: 0 !important;
  padding: 0 !important;
}
.related.products ul li .product-details .product-action-wrap .button {
  background: var(--global-palette-btn-bg) !important;
  color: white !important;
  transition: all 0.3s !important;
  padding: 0.5rem !important;
  display: block !important;
  width: 100%;
  text-align: center;
  text-transform: capitalize !important;
}
.related.products ul li .product-details .product-action-wrap .button .kadence-svg-iconset {
  display: none !important;
}
.related.products ul li .product-details .product-action-wrap .button:hover {
  background: var(--global-palette-btn-bg-hover) !important;
}
.related.products ul li .product-details .contractor-price-notice {
  order: 5;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 1rem;
}
.related.products ul li .product-details .contractor-price-notice img {
  width: 1.25rem;
}
.related.products ul li:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2) !important;
}

.tribe-common-c-btn {
  background: var(--global-palette-btn-bg) !important;
  color: white;
  padding: 0.5rem;
  display: block;
  width: 100%;
  text-align: center;
  text-transform: capitalize;
}
.tribe-common-c-btn:hover {
  background: var(--global-palette-btn-bg-hover);
}

.contact-link a {
  color: black;
}

@media screen and (max-width: 768px) {
  .mobile-reverse > .kt-row-column-wrap > div:first-child {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .mobile-reverse > .kt-row-column-wrap > div:last-child {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .mobile-hide {
    display: none;
  }
}

#gform_fields_1 {
  row-gap: 1rem;
}

#gform_submit_button_1 {
  padding: 1rem 2rem;
  background: var(--global-palette-btn-bg);
  font-weight: 700;
  transition: all 0.3s;
}
#gform_submit_button_1:hover {
  background: var(--global-palette-btn-bg-hover);
}

.why-choose figure {
  max-height: 60px;
}
.why-choose figure img {
  width: unset;
  max-width: 100%;
  height: 60px;
}

.kt-accordion-header-wrap:not(:has(.kt-accordion-panel-active)) {
  height: 100%;
}
.kt-accordion-header-wrap:not(:has(.kt-accordion-panel-active)) .kt-acccordion-button-label-show {
  height: 100%;
}

#menu-item-1454 a, #menu-item-1467 a {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.custom-registration-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.custom-registration-form p {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.custom-registration-form select {
  padding: 0.4em 0.5em;
}
.custom-registration-form input[type=checkbox] {
  width: fit-content;
}
.custom-registration-form .--full {
  grid-column: span 2;
}
.custom-registration-form input, .custom-registration-form select, .custom-registration-form textarea {
  scroll-margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .custom-registration-form {
    grid-template-columns: 1fr;
  }
  .custom-registration-form .--full {
    grid-column: span 1;
  }
}

.contractor-price-notice {
  order: 5;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 1rem;
}
.contractor-price-notice img {
  width: 1.25rem !important;
  margin: 0;
}

li:has(.freight-shipping-quote-status) {
  flex-direction: column;
  align-items: flex-start !important;
}

.product-pdf-link {
  margin-bottom: 1rem;
}

.woocommerce .quantity .qty {
  width: 4rem !important;
}

.site-footer .navigation {
  color: white;
  font-size: 14px;
}
.site-footer .navigation .kb-nav-link-content {
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .site-footer .navigation .kb-nav-link-content {
    justify-content: left;
  }
}
.site-footer #footer-logo {
  width: 100%;
  max-width: 15rem;
}
@media screen and (max-width: 768px) {
  .site-footer #footer-logo {
    max-width: unset;
    display: flex;
    justify-content: center;
  }
  .site-footer #footer-logo img {
    max-width: 15rem;
  }
}
.site-footer .gform_button {
  background-color: var(--global-palette-btn-bg) !important;
  padding-top: 7.2px !important;
  padding-bottom: 7.2px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  font-size: 18px !important;
}
.site-footer .gform_button:hover {
  background-color: var(--global-palette-btn-bg-hover) !important;
  transition: all 0.3s;
}

.site-middle-footer-wrap .site-footer-row.site-footer-row-columns-1 .site-footer-section {
  gap: 2rem;
  display: grid;
  grid-template-columns: 2fr 3fr 3fr;
}
@media screen and (max-width: 768px) {
  .site-middle-footer-wrap .site-footer-row.site-footer-row-columns-1 .site-footer-section {
    grid-template-columns: 1fr;
  }
}

.gform_confirmation_message {
  color: var(--global-palette7) !important;
  font-weight: 600 !important;
}

/*# sourceMappingURL=style.css.map */
