/*
Theme Name: Inspire Foundation

WooCommerce styles override
*/
:root {
  --header-height: 6rem;
}
@media screen and (max-width: 920px) {
  :root {
    --header-height: 5rem;
  }
}
/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}
table.shop_table_responsive tbody th {
  display: none;
}
table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}
table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  float: left;
}
table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}
table.shop_table_responsive tr td.product-remove::before {
  display: none;
}
table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none;
}
table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
}
/**
 * Products
 */
.woocommerce-shop .page-intro {
  margin-bottom: 4em;
}

.shop-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1em;
  row-gap: 1em;
  margin: 2em 0 2em 0;
}
.shop-bar .woocommerce-result-count {
  margin: 0;
}
@media screen and (max-width: 920px) {
  .shop-bar {
    flex-direction: column;
    margin-top: 0;
  }
}

ul.products {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 640px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 320px) {
  ul.products {
    grid-template-columns: 1fr;
  }
}
ul.products li.product {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #458ceb;
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  text-align: center;
}
ul.products li.product .woocommerce-loop-product__title {
  font-size: 1em;
  font-weight: 400;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1.5em;
  margin-top: 0;
}
@media screen and (max-width: 460px) {
  ul.products li.product .woocommerce-loop-product__title {
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 1em;
  }
}
ul.products li.product .price {
  font-weight: 600;
  display: block;
  margin-bottom: 0.3em;
  font-size: 1.2em;
  line-height: 1;
}
ul.products li.product .woocommerce-loop-product__link {
  text-decoration: none;
}
ul.products li.product .woocommerce-loop-product__link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  vertical-align: middle;
}
ul.products li.product .button {
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
  margin: 1em 1em 2em 1em;
  width: auto;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  ul.products li.product .button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  ul.products li.product .button {
    font-size: 0.8rem;
  }
}
ul.products li.product .button:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
@media screen and (max-width: 460px) {
  ul.products li.product .button {
    margin-bottom: 1em;
  }
}

.woocommerce-pagination ul.page-numbers {
  list-style: none;
  margin: 2em 0 1em 0;
  padding: 0;
  display: flex;
  justify-content: center;
  column-gap: 0.5em;
  align-items: center;
  font-size: 1rem;
}
.woocommerce-pagination ul.page-numbers li {
  text-align: center;
}
.woocommerce-pagination ul.page-numbers li a {
  display: grid;
  place-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  background-color: #ffffff;
  color: #458ceb;
  border-radius: 50%;
  text-decoration: none;
  line-height: 1;
  vertical-align: middle;
  transition-property: color, background-color;
  transition-duration: 0.1s;
}
.woocommerce-pagination ul.page-numbers li a:hover {
  background-color: #f28f1f;
  color: #ffffff;
}
.woocommerce-pagination ul.page-numbers li .current {
  display: grid;
  place-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  background-color: #458ceb;
  color: #ffffff;
  border-radius: 50%;
  line-height: 1;
  vertical-align: middle;
}

.single-product .product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 920px) {
  .single-product .product {
    gap: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .single-product .product {
    grid-template-columns: 1fr;
  }
}
.single-product .product .woocommerce-product-gallery__trigger {
  display: none !important;
}
.single-product .product .reset_variations {
  margin-left: 1rem;
}
.single-product .product .woocommerce-product-gallery {
  border-radius: 1rem;
  overflow: hidden;
}
.single-product .product .single_add_to_cart_button {
  padding-left: 2em;
  padding-right: 2em;
  min-height: 2em;
}
.single-product .product .stock.in-stock {
  color: #87c240;
}
.single-product .product .entry-summary .product_title {
  margin-top: 0;
  font-size: 2em;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .single-product .product .entry-summary .product_title {
    margin-top: 2em;
  }
}
.single-product .product .entry-summary .price {
  font-size: 1.5em;
  font-weight: 600;
}
.single-product .product .entry-summary .variations th {
  text-align: left;
  padding-right: 1em;
}
.single-product .product .entry-summary .variations th, .single-product .product .entry-summary .variations td {
  vertical-align: middle;
}
@media screen and (max-width: 920px) {
  .single-product .product .entry-summary .variations {
    display: block;
  }
  .single-product .product .entry-summary .variations tbody {
    display: block;
  }
  .single-product .product .entry-summary .variations tbody tr {
    display: block;
    margin-bottom: 1em;
  }
  .single-product .product .entry-summary .variations tbody tr td, .single-product .product .entry-summary .variations tbody tr th {
    display: block;
  }
  .single-product .product .entry-summary .variations tbody tr td select, .single-product .product .entry-summary .variations tbody tr th select {
    width: 100%;
  }
  .single-product .product .entry-summary .variations tbody tr th {
    padding-right: 0;
    margin-bottom: 0.3em;
  }
}
.single-product .product .entry-summary .woocommerce-variation-add-to-cart {
  display: flex;
  min-height: 2em;
}
.single-product .product .entry-summary .woocommerce-variation-add-to-cart .quantity input {
  width: 100px;
  text-align: center;
}
.single-product .product .product_meta {
  margin-top: 2em;
}
.single-product .product .woocommerce-tabs {
  grid-column: 1/3;
}
@media screen and (max-width: 640px) {
  .single-product .product .woocommerce-tabs {
    grid-column: 1/2;
  }
}
.single-product .product .related.products {
  grid-column: 1/3;
}
.single-product .product .related.products .single_add_to_cart_button,
.single-product .product .related.products .woocommerce-variation-add-to-cart {
  height: auto;
}
.single-product .product .related.products li.product {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 640px) {
  .single-product .product .related.products {
    grid-column: 1/2;
  }
}

/**
 * Single product
 */
.single-product .cart {
  display: flex;
  flex-direction: column;
  column-gap: 1em;
  row-gap: 1em;
}
.single-product .variations {
  margin-bottom: 0;
  width: auto;
}
.single-product div.product {
  position: relative;
}
.single-product div.product .woocommerce-product-gallery {
  position: relative;
  float: left;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 2em;
  right: 1em;
  display: block;
  z-index: 99;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1em;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  padding: 0;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
  list-style: none;
  cursor: pointer;
  float: left;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 0.5;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img {
  opacity: 1;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
  width: 48.1%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
  width: 30.7966666667%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  width: 22.15%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: both;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
  width: 16.96%;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n) {
  margin-right: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: both;
}

.stock:empty::before {
  display: none;
}
.stock.in-stock {
  color: #0f834d;
}
.stock.out-of-stock {
  color: #e2401c;
}

/**
 * Checkout
 */
@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }
  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: 48.1%;
  }
}
/**
 * General WooCommerce components
 */
/**
 * Header cart
 */
.site-header-cart {
  position: relative;
  margin: 0;
  padding: 0;
}
.site-header-cart .cart-contents {
  text-decoration: none;
}
.site-header-cart .widget_shopping_cart {
  display: none;
}
.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0;
}

/**
 * Star rating
 */
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
}
.star-rating::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: inherit;
}

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400;
}
p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "S";
  color: #458ceb;
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  color: #458ceb;
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  color: inherit;
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  color: inherit;
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  color: #458ceb;
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  color: inherit;
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs {
  font-size: 1rem;
}
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  gap: 0.5em;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 0.5em 1em 0.4em 1em;
  text-decoration: none;
  border: 0;
  border-radius: 0.75em;
  background-color: #cf1459;
  font-weight: 600;
  text-align: center;
  color: #ffffff !important;
  line-height: 1.1;
  transition: 0.1s background-color ease;
  border: 1px solid #458ceb;
  background-color: transparent;
  color: #458ceb !important;
  font-size: 1rem;
  font-size: 1rem;
  padding-left: 1em;
  padding-right: 1em;
}
.woocommerce-tabs ul.tabs li a:hover {
  background-color: #f28f1f;
}
@media screen and (max-width: 1200px) {
  .woocommerce-tabs ul.tabs li a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 920px) {
  .woocommerce-tabs ul.tabs li a {
    font-size: 0.8rem;
  }
}
.woocommerce-tabs ul.tabs li a:hover {
  background-color: #458ceb;
  color: #ffffff !important;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #0f834d;
}
.woocommerce-password-strength.short {
  color: #e2401c;
}
.woocommerce-password-strength.bad {
  color: #e2401c;
}
.woocommerce-password-strength.good {
  color: #3d9cd2;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 #0f834d;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 #e2401c;
}

.required {
  color: #f00;
}

/**
 * Notices
 */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  list-style: none;
  margin-left: 0;
  background-color: #87c240;
  color: #ffffff;
  font-size: 1rem;
  padding: 1em 2em;
  border-radius: 1rem;
  clear: both;
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-noreviews .button,
p.no-comments .button {
  order: 2;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #458ceb !important;
  margin-left: 1em;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: #458ceb;
}

.woocommerce-error {
  background-color: #cf1459;
}

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #458ceb;
  z-index: 9999;
}

.woocommerce-product-attributes th {
  text-align: left;
}

.wc-block-components-product-name {
  font-weight: 600;
  text-decoration: none;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  vertical-align: middle;
  border-radius: 1rem;
}

.is-large.wc-block-cart .wc-block-cart-items td {
  padding: 1rem 0 1rem 0 !important;
}

.is-large.wc-block-cart .wc-block-cart-items td.wc-block-cart-item__product {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.is-large .wc-block-components-sidebar .wc-block-components-panel,
.is-large .wc-block-components-sidebar .wc-block-components-totals-coupon,
.is-large .wc-block-components-sidebar .wc-block-components-totals-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body .wc-block-components-form .wc-block-components-text-input input[type=email],
body .wc-block-components-form .wc-block-components-text-input input[type=number],
body .wc-block-components-form .wc-block-components-text-input input[type=tel],
body .wc-block-components-form .wc-block-components-text-input input[type=text],
body .wc-block-components-form .wc-block-components-text-input input[type=url],
body .wc-block-components-text-input input[type=email],
body .wc-block-components-text-input input[type=number],
body .wc-block-components-text-input input[type=tel],
body .wc-block-components-text-input input[type=text],
body .wc-block-components-text-input input[type=url] {
  border-color: #458ceb;
  color: #458ceb;
}
body .wc-block-components-form .wc-block-components-text-input label,
body .wc-block-components-text-input label {
  color: #458ceb;
}
body .wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  border-radius: 0.8rem;
}
body .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  box-shadow: none;
  background-color: #f28f1f;
  border: 0;
  color: #ffffff;
  font-size: 0.8em;
}
body .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, body .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  color: #458ceb;
  border-color: #458ceb;
}
body .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list, body .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control .components-form-token-field__suggestions-list {
  border-color: #458ceb;
}
body .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label, body .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
  color: #458ceb;
  opacity: 0.5;
}
body .wc-block-components-form .wc-block-components-text-input.has-error label, body .wc-block-components-text-input.has-error label {
  color: #cf1459;
}
body .wc-block-components-form .wc-block-components-text-input.has-error input, body .wc-block-components-form .wc-block-components-text-input.has-error input:active, body .wc-block-components-form .wc-block-components-text-input.has-error input:focus, body .wc-block-components-form .wc-block-components-text-input.has-error input:hover, body .wc-block-components-text-input.has-error input, body .wc-block-components-text-input.has-error input:active, body .wc-block-components-text-input.has-error input:focus, body .wc-block-components-text-input.has-error input:hover {
  border-color: #cf1459;
}
body .wc-block-components-validation-error {
  color: #cf1459;
}
body .wc-block-components-textarea {
  border-color: #458ceb;
  color: #458ceb;
}
body .wc-block-components-textarea::placeholder {
  color: #458ceb;
}
body .wc-block-components-textarea:focus {
  color: #458ceb;
}

@media screen and (min-width: 48em) {
  /**
   * Header cart
   */
  .site-header-cart .widget_shopping_cart {
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 999999;
    left: -999em;
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
  .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
    left: 0;
    display: block;
  }
}
/**
 * WooCommerce widgets
 */
/**
 * WooCommerce Price Filter
 */
.widget_price_filter .price_slider {
  margin-bottom: 1.5em;
}
.widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
}
.widget_price_filter .price_slider_amount .button {
  float: left;
}
.widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: ew-resize;
  outline: none;
  background: inherit;
  box-sizing: border-box;
  margin-top: -0.25em;
  opacity: 1;
}
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em;
}
.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: inherit;
}
.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.1);
}
.widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}
.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  height: 100%;
}

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