/*
Theme Name: talassa

WooCommerce styles override
*/
/**
 * 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
 */
ul.products {
  margin: 0;
  padding: 0;
}
ul.products li.product {
  list-style: none;
  position: relative;
  margin-bottom: 2em;
}
ul.products li.product img {
  display: block;
}
ul.products li.product .button {
  display: block;
}

.product-summary {
  background-color: var(--color-shade);
  padding-block: var(--dimens-margin-lg);
  margin-bottom: var(--dimens-margin-lg);
}
.product-summary h4 {
  font-weight: 300;
  color: var(--color-text-lighter);
}

.product-price-table {
  margin-top: var(--dimens-margin-lg);
}
.product-price-table table {
  border-collapse: collapse;
  margin-top: 12px;
  width: 100%;
  border-top: 1px solid;
}
.product-price-table thead {
  border-bottom: 2px solid;
}
.product-price-table thead td {
  line-height: 1.2;
  padding-block: 6px;
}

.product-price-range {
  font-size: var(--font-size-small);
  color: var(--color-text-light);
}

li.ph-calendar-date.mouse_hover,
li.ph-calendar-date:hover {
  color: #fff !important;
}

.product-map {
  background-color: #edeae2;
  margin-bottom: var(--dimens-margin-lg);
}
.product-map img {
  width: 100%;
}

/**
 * Single product
 */
.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;
}

.stock:empty::before {
  display: none;
}

.wc-bookings-booking-form {
  border: none;
  padding: 0;
}
.wc-bookings-booking-form .form-field:not(label) {
  color: var(--color-text-light);
  font-size: 14px;
}

.wc-bookings-date-picker {
  border: 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 0;
}

.wc-bookings-date-picker .ui-widget-content {
  box-shadow: none;
}

.wc-bookings-date-picker .ui-datepicker-header {
  background-image: none;
  border-radius: 0;
}

.wc-bookings-booking-form fieldset .picker.hasDatepicker {
  margin-bottom: 0;
}

.form-field input,
.form-field select {
  border: 2px solid;
  padding: 12px 16px;
  font-family: var(--font-body);
  line-height: 1;
}
.form-field label {
  color: var(--color-text-lighter);
}

.wc-bookings-booking-form .form-field input[type=number] {
  width: 100%;
}

.product-type-accommodation-booking .wc-bookings-date-picker:after {
  margin: 0;
}

.wc-bookings-booking-form .wc-bookings-booking-cost {
  margin: 0;
  padding: 12px var(--dimens-padding);
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-top: 1px solid;
  border-bottom: 2px solid;
  color: var(--color-text-lighter);
}

.wc-bookings-booking-form-button {
  width: 100%;
}

.subproduct-form {
  margin-top: 4px;
  margin-bottom: var(--dimens-margin-md);
}

.subproduct-form select {
  width: 100%;
}

.subproduct-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: var(--dimens-margin-md);
  margin-top: 12px;
}

.subproduct-card {
  display: block;
  text-decoration: none;
  color: var(--color-text-main);
  border: 2px solid transparent;
  transition: all 150ms ease-out;
  background-color: #fff;
  display: flex;
}
.subproduct-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.subproduct-card:hover {
  border-color: var(--color-primary);
}
.subproduct-card:hover img {
  filter: grayscale(1);
}
.subproduct-card--selected {
  position: relative;
  border-color: var(--color-primary);
  background-color: #fff;
  color: var(--color-primary);
  grid-column: span 2;
}
.subproduct-card--selected:hover {
  border-color: var(--color-primary);
}
.subproduct-card--selected:hover img {
  filter: none;
}

.subproduct-card__info {
  padding: 12px;
  flex: 1;
}

.subproduct-card__name {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

.subproduct-card__price {
  font-size: 14px;
  color: var(--color-primary);
  margin-top: 4px;
}

.subproduct-card__remove {
  position: relative;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.related-products {
  margin-block: var(--dimens-margin-lg);
}
.related-products h3 {
  margin-bottom: var(--dimens-gap);
}

.single_add_to_cart_button {
  width: 100%;
}

.upsell-products .package a {
  display: flex;
  height: 100%;
}
.upsell-products .package a img {
  height: 100%;
  flex: 2;
}
.upsell-products .package a:hover .package-text {
  border-color: #115eb9;
  background-color: #115eb9;
  color: #fff;
}
.upsell-products .package a:hover .package-tagline,
.upsell-products .package a:hover .package-title,
.upsell-products .package a:hover .package-price {
  color: #fff;
}
.upsell-products .package-text {
  margin-top: 0;
  padding-top: 38px;
  padding-inline: 28px;
  border: 2px solid;
  background-color: #fff;
  color: #115eb9;
  flex: 1;
  text-align: left;
}

.uppsell-cta {
  color: #fff;
  padding: 32px;
  text-align: center;
  background-color: var(--color-primary);
  font-size: 2rem;
  font-family: var(--font-heading);
  font-style: italic;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .upsell-products .package {
    grid-column: 1/span 2;
  }
}
/**
 * Checkout
 */
.checkout-side h3,
.woocommerce-billing-fields h3 {
  margin-top: 4px;
  margin-bottom: 8px;
}

.checkout-content {
  display: flex;
  flex-direction: column;
  gap: var(--dimens-gap);
}
.checkout-content select {
  text-transform: none;
  width: 100%;
}

.woocommerce-checkout-review-order table {
  border-collapse: collapse;
}
.woocommerce-checkout-review-order tr {
  text-align: left;
  font-weight: 400;
  line-height: 1.3;
}
.woocommerce-checkout-review-order tr:last-child {
  padding-bottom: 8px;
}
.woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout-review-order .order-total td,
.woocommerce-checkout-review-order .cart-subtotal th,
.woocommerce-checkout-review-order .cart-subtotal td {
  border-top: 1px solid var(--color-text-lighter);
}

ul.woocommerce-shipping-methods {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.woocommerce-shipping-fields h3 {
  font-weight: 400;
  font-size: 16px;
}

.woocommerce-privacy-policy-text a {
  color: var(--color-primary);
  text-underline-offset: 3px;
  transition: all 300ms;
}
.woocommerce-privacy-policy-text a:hover {
  color: var(--color-text-main);
}

.checkout-inline-error-message {
  color: var(--color-danger-01);
  font-size: var(--font-size-small);
  margin-top: 4px;
}

.wc_payment_methods {
  background-color: #fff;
  padding: var(--dimens-padding);
  list-style: none;
  margin: 0;
}
.wc_payment_methods .payment_box {
  font-size: var(--font-size-small);
  color: var(--color-text-lighter);
}
.wc_payment_methods .payment_box p {
  margin-top: 0;
}

.wc-empty-cart-message {
  min-height: 400px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  background-color: #fff;
  padding: var(--dimens-padding);
}
.woocommerce-checkout-review-order-table th {
  vertical-align: top;
}

.place-order {
  font-size: var(--font-size-small);
  color: var(--color-text-lighter);
}
.place-order p {
  font-size: var(--font-size-small);
}

.woocommerce-NoticeGroup {
  grid-column: 1/3;
}

.product-cart:has(.woocommerce-notices-wrapper) {
  margin-bottom: 0;
}
.product-cart:has(.woocommerce-notices-wrapper) .product-cart-header {
  margin-bottom: 0;
}

.product-cart .woocommerce-notices-wrapper {
  margin-bottom: var(--dimens-margin-md);
}

.product-car-content {
  margin-block: var(--dimens-margin-xl);
}

.product-cart-header {
  height: 200px;
  background-color: var(--color-shade);
  margin-bottom: var(--dimens-margin-xl);
  padding-block: var(--dimens-margin-md);
}
.product-cart-header .container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: end;
}
.product-cart-header .container::after {
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  background-image: url("images/cetacean4.webp");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
  right: 0;
  bottom: -80px;
  width: 300px;
  height: 300px;
}

.cart-sidebar-content {
  padding: var(--dimens-padding);
  margin-bottom: var(--dimens-gap);
  background-color: #fff;
}
.cart-sidebar-content h2 {
  margin-bottom: var(--dimens-gap);
}
.cart-sidebar-content .shop_table {
  border-collapse: collapse;
  width: 100%;
}
.cart-sidebar-content .shop_table a {
  color: var(--color-primary);
  text-underline-offset: 3px;
  transition: all 300ms;
}
.cart-sidebar-content .shop_table a:hover {
  color: var(--color-text-main);
}
.cart-sidebar-content .shop_table p {
  margin: 0 0 8px;
}
.cart-sidebar-content .shop_table th {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-light);
  vertical-align: top;
}
.cart-sidebar-content .shop_table td {
  padding-left: var(--dimens-margin);
}
.cart-sidebar-content .shop_table .woocommerce-shipping-calculator {
  margin-bottom: var(--dimens-gap);
}
.cart-sidebar-content .shop_table .woocommerce-shipping-calculator a {
  text-decoration: none;
}
.cart-sidebar-content .order-total {
  border-top: 1px solid;
}
.cart-sidebar-content .order-total td {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cart-sidebar-content .shop_table td {
    padding-left: 0;
  }
}

.wc-proceed-to-checkout a {
  width: 100%;
}

.woocommerce-cart-form {
  display: flex;
  flex-direction: column;
  gap: var(--dimens-gap);
}
.woocommerce-cart-form a {
  color: var(--color-primary);
  text-decoration: none;
}

.woocommerce-cart-form__cart-item {
  position: relative;
  padding: var(--dimens-gap);
  background-color: #fff;
}
.woocommerce-cart-form__cart-item .product-cart-content {
  flex: 1;
}
.woocommerce-cart-form__cart-item .product-cart-content a {
  font-size: 20px;
  font-weight: 300;
  color: var(--color-text-main);
  line-height: 1.2;
}
.woocommerce-cart-form__cart-item .product-cart-content a:hover {
  color: var(--color-primary);
}
.woocommerce-cart-form__cart-item .product-subtotal {
  font-size: 20px;
  font-weight: 500;
}
.woocommerce-cart-form__cart-item .product-remove a {
  color: var(--color-danger-01);
  font-size: 12px;
  line-height: 0.8;
}
.woocommerce-cart-form__cart-item .product-remove a:hover {
  opacity: 0.7;
}
.woocommerce-cart-form__cart-item .product-thumbnail {
  width: 100%;
  margin-bottom: var(--dimens-margin);
}
.woocommerce-cart-form__cart-item .product-thumbnail img {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .woocommerce-cart-form__cart-item .product-thumbnail {
    max-width: 200px;
    margin-bottom: 0;
  }
}

.variation {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 6px;
  font-size: 14px;
  color: var(--color-text-light);
}
.variation p,
.variation dt,
.variation dd {
  margin: 0;
  line-height: 1.3;
}
.variation dd {
  color: var(--color-text-main);
}

.woocommerce-checkout-review-order {
  display: flex;
  flex-direction: column;
  gap: var(--dimens-gap);
}
.woocommerce-checkout-review-order .button {
  width: 100%;
}
.woocommerce-checkout-review-order .cart_item {
  border-bottom: 1px dashed var(--color-text-light);
}
.woocommerce-checkout-review-order .product-name {
  padding-top: 12px;
}
.woocommerce-checkout-review-order .variation {
  row-gap: 4px;
  font-size: var(--font-size-small);
}
.woocommerce-checkout-review-order .product-total {
  vertical-align: top;
  padding-top: 12px;
}
.woocommerce-checkout-review-order th {
  font-weight: 500;
}
.woocommerce-checkout-review-order .cart-subtotal,
.woocommerce-checkout-review-order .order-total {
  line-height: 1.8;
}

.woocommerce-order {
  display: flex;
  flex-direction: column;
  gap: var(--dimens-gap);
}
.woocommerce-order .woocommerce-order-overview {
  list-style: none;
  padding: 0;
  text-align: center;
}

.woocommerce-order-received-success {
  margin-top: var(--dimens-margin-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.woocommerce-thankyou-order-received {
  margin-top: 0.5rem;
  color: var(--color-primary);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  max-width: 350px;
}

.woocommerce-thankyou-order-details {
  display: flex;
  flex-direction: column;
  gap: var(--dimens-gap);
}
.woocommerce-thankyou-order-details li {
  display: flex;
  flex-direction: column;
  color: var(--color-text-light);
}
.woocommerce-thankyou-order-details li strong {
  font-weight: 500;
  color: var(--color-text-main);
}

.entry-content .woocommerce-table--order-details {
  width: 100%;
  margin-top: var(--dimens-margin);
  margin-bottom: var(--dimens-margin-xl);
}
.entry-content .woocommerce-table--order-details thead th {
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.entry-content .woocommerce-table--order-details tfoot {
  text-align: left;
}
.entry-content .woocommerce-table--order-details tfoot th,
.entry-content .woocommerce-table--order-details tfoot td {
  padding-top: 4px;
}
.entry-content .woocommerce-table--order-details .wc-item-meta {
  font-size: 14px;
  color: var(--color-text-light);
  padding-left: 0;
}
.entry-content .woocommerce-table--order-details .wc-item-meta li {
  display: flex;
}
.entry-content .woocommerce-table--order-details .wc-item-meta strong {
  font-weight: 400;
}
.entry-content .woocommerce-table--order-details .wc-item-meta p {
  margin: 0;
  color: var(--color-text-main);
}
.entry-content .woocommerce-table--order-details .order-actions-button.cancel {
  color: var(--color-danger-01);
  background-color: transparent;
  padding: 0;
}
.entry-content .woocommerce-table--order-details .order-actions-button.cancel:hover {
  text-decoration: underline;
}

.woocommerce-table__line-item td {
  padding-top: 4px;
  border-bottom: 1px dashed var(--color-text-light);
  vertical-align: baseline;
}

.woocommerce-customer-details {
  border-top: 1px solid var(--color-border);
  padding-top: var(--dimens-margin);
}

@media screen and (min-width: 768px) {
  .woocommerce-cart-form__cart-item {
    display: flex;
  }
  .product-cart-content {
    padding-left: var(--dimens-gap);
  }
  .product-cart .grid-2-1 {
    gap: var(--dimens-margin-lg);
  }
  .product-cart-header .container::after {
    width: 400px;
  }
  .product-thumbnail {
    margin-bottom: 0;
  }
  .col2-set .form-row-first {
    float: left;
  }
  .col2-set .form-row-last {
    float: right;
    margin-right: 0;
  }
  .col2-set .form-row-first,
  .col2-set .form-row-last {
    width: calc(50% - var(--dimens-gap) / 2);
  }
}
.woocommerce-MyAccount-navigation a {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-main);
  text-decoration: none;
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li:hover a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  gap: var(--dimens-gap);
  padding: 0;
}
.woocommerce-MyAccount-navigation li {
  list-style: none;
}

.woocommerce-MyAccount-content {
  background-color: #fff;
  padding: var(--dimens-padding);
}
.woocommerce-MyAccount-content .woocommerce-info {
  background-color: var(--color-primary);
  color: #fff;
}
.woocommerce-MyAccount-content .woocommerce-button {
  background-color: transparent;
  padding: 0;
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a {
  margin-right: var(--dimens-gap);
}
.woocommerce-MyAccount-content .woocommerce-orders-table__cell {
  padding-right: var(--dimens-gap);
}

/**
 * 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;
}

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";
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  opacity: 1;
}

/**
 * Tabs
 */
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.woocommerce-tabs ul.tabs li {
  display: block;
  margin: 0;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  display: block;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}

/**
 * Forms
 */
.form-row.woocommerce-validated input.input-text {
  box-shadow: inset 2px 0 0 green;
}
.form-row.woocommerce-invalid input.input-text {
  box-shadow: inset 2px 0 0 black;
}
.form-row label {
  display: block;
  font-size: 14px;
  color: var(--color-text-lighter);
}

.input-text {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid;
  border-radius: 0;
}
.input-text:hover, .input-text:focus {
  border-color: var(--color-primary);
}

.required {
  color: var(--color-danger-01);
}

.select2-container--default .select2-selection--single {
  border-radius: 0;
  border-color: var(--color-text-main);
}

/**
 * Notices
 */
.woocommerce-notices-wrapper:not(:empty) a {
  color: #fff;
  text-decoration: none;
  text-wrap: nowrap;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
  padding: var(--dimens-padding);
  list-style: none;
  clear: both;
}

.woocommerce-message {
  background-color: var(--color-primary);
  color: #fff;
}
.woocommerce-message a {
  border: 1px solid;
  padding: 6px 18px;
}
.woocommerce-message .container {
  display: flex;
  gap: var(--dimens-gap);
  justify-content: space-between;
  align-items: center;
}

.woocommerce-notice-content {
  display: flex;
  gap: var(--dimens-gap);
  align-items: center;
}

.woocommerce-error {
  background-color: var(--color-danger-01);
  color: #fff;
}
.woocommerce-error a {
  color: #fff;
}

@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: var(--color-primary);
  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: var(--color-primary);
}
.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 */
