@charset "UTF-8";
/*
Theme Name: Mona

WooCommerce styles override
*/
/* 
 * BACKGROUND COLORS 
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,500;1,700&family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/**
 * 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.columns-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  padding: 4rem 1.5rem;
  /*li.product {
      flex: 100% 0 0;
      padding-bottom: 60px;
      @media all and (min-width: 1024px) {
          flex: 44% 0 0;
      }
      @media all and (min-width:1200px) {
          flex: 30% 0 0;
      }
      @media all and (min-width:1500px) {
          flex: 22.15% 0 0;
      }
  }*/
}
@media all and (min-width: 1024px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1200px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 1500px) {
  ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
ul.products li.product {
  list-style: none;
  position: relative;
  margin-bottom: 6em;
  padding: 0 15px 15px;
  height: auto;
}
ul.products li.product a {
  text-decoration: none !important;
  display: block;
  height: 100%;
}
ul.products li.product a .mona-img-wrapper {
  background-color: white;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 25px;
  overflow: hidden;
}
ul.products li.product a .price {
  display: block;
  text-align: center;
}
ul.products li.product a .price mark,
ul.products li.product a .price ins {
  background: #f9e4e8;
}
ul.products li.product a .title-group {
  display: block;
  padding-top: 20px;
}
ul.products li.product a .title-group h3 {
  margin: 5px 0;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  color: #B83766;
}
ul.products li.product a .title-group h2 {
  margin: 5px 0;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  color: #523146;
}
ul.products li.product .button-group {
  position: absolute;
  display: block;
  width: 100%;
}
ul.products li.product .button-group .rel-wrapper {
  position: relative;
}
ul.products li.product .button-group a.button-add {
  display: block;
  margin: 5px auto;
  border: 1px solid;
  border-color: #B83766 !important;
  border-radius: 0 25px !important;
  background: #B83766 !important;
  color: white !important;
  line-height: 1;
  text-decoration: none !important;
  padding: 0.7rem 1rem 0.7rem !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  transition: all 0.8s ease-in-out !important;
  font-size: 1rem;
  text-align: center;
}
@media all and (min-width: 992px) {
  ul.products li.product .button-group a.button-add {
    font-size: 0.9em;
    padding: 0.7em 1em 0.7em !important;
  }
}
ul.products li.product .button-group a.button-add:hover {
  background-color: #523146 !important;
  border-color: #523146 !important;
}
ul.products li.product .button-group a.button-add.dark {
  background-color: #523146 !important;
  border-color: #523146 !important;
}
ul.products li.product .button-group a.button-add.dark:hover {
  background-color: #67425a !important;
  border-color: #67425a !important;
}
ul.products li.product .button-group a.button {
  display: table;
  margin: 10px auto;
  font-size: 0.8em !important;
  background-color: transparent !important;
  color: #B83766 !important;
  padding: 8px 36px 8px 0 !important;
  transition: all 0.8s ease-in-out;
  border: none !important;
  white-space: nowrap;
}
ul.products li.product .button-group a.button:after {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
  content: " ";
  height: 10px;
  width: 22px;
  background-image: url(/wp-content/themes/mona/img/extra/button-arrow-pink.svg);
  background-size: contain;
  transition: all 0.4s ease-in-out;
}
ul.products li.product .button-group a.button:hover {
  background-color: transparent !important;
  border-color: transparent !important;
}
ul.products li.product .button-group a.button:hover:after {
  right: 22%;
}

.mona-product-image {
  display: block;
  margin: 30px 17.5% 30px 0;
  background-color: white;
  border-radius: 0 25px;
  overflow: hidden;
}
.mona-product-image img {
  margin: 0 auto;
}

.related {
  padding: 60px 0;
}
.related h2 {
  text-align: center;
}

.mona-filter-wrapper {
  background-color: white;
  margin: 0;
  padding: 20px 10px;
  border-radius: 0 18px;
}
@media (min-width: 1024px) {
  .mona-filter-wrapper {
    margin: 0 15px;
    padding: 30px 15px;
  }
}
.mona-filter-wrapper h4 {
  position: relative;
  margin: 0;
  font-size: 0.9em;
  font-weight: 500;
  color: #523146;
  width: 100%;
}
.mona-filter-wrapper h4 span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (min-width: 768px) {
  .mona-filter-wrapper h4 span {
    display: none;
  }
}
.mona-filter-wrapper .mona-filter-content {
  height: 1px;
  width: 100%;
  transition: all 0.4s linear;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .mona-filter-wrapper .mona-filter-content {
    margin-top: 30px;
    height: auto;
  }
}
.mona-filter-wrapper .mona-filter-content.is_active {
  margin-top: 30px;
  height: auto;
}
.mona-filter-wrapper h3 {
  color: #B83766;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 300;
}
.mona-filter-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mona-filter-wrapper ul li input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 5px;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  padding: 2px;
  background: white;
  position: relative;
}
.mona-filter-wrapper ul li input[type=checkbox]:checked {
  background: #B83766;
}

/**
 * Single product
 */
.single-product div.product {
  position: relative;
}
.single-product div.product .woocommerce-product-gallery {
  position: relative;
  float: none;
  height: auto !important;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .single-product div.product .woocommerce-product-gallery {
    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: 6px;
  height: auto !important;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 30px 5px 0;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0 25px;
  justify-content: center;
  margin: 0;
  opacity: 1;
  transition: all 0.6s ease-in-out;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
  display: block;
  max-height: 400px;
  padding: 2em;
  height: 100% !important;
  margin: 0 auto;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--with-images .flex-viewport .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  opacity: 0;
}
.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--with-images .flex-viewport .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.flex-active-slide {
  opacity: 1;
}
.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;
  margin: 3px;
}
.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%;
  display: flex;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0 16px;
  justify-content: center;
}
.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%;
  display: flex;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0 16px;
  justify-content: center;
}
.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%;
  display: flex;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0 16px;
  justify-content: center;
}
.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%;
  display: flex;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 0 16px;
  justify-content: center;
}
.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;
}
.single-product .mona-product-summary {
  padding: 0;
}
@media all and (min-width: 1024px) {
  .single-product .mona-product-summary {
    padding: 0 40px;
  }
}
.single-product .mona-product-summary h1 {
  color: #B83766;
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 300;
}
@media all and (min-width: 768px) {
  .single-product .mona-product-summary h1 {
    font-size: 2.2em;
  }
}
.single-product .mona-product-summary p,
.single-product .mona-product-summary h2,
.single-product .mona-product-summary h3,
.single-product .mona-product-summary h4,
.single-product .mona-product-summary h5,
.single-product .mona-product-summary h6,
.single-product .mona-product-summary ul,
.single-product .mona-product-summary li,
.single-product .mona-product-summary strong {
  color: #523146;
}
.single-product .mona-product-summary select {
  padding: 0.5em 2.5em 0.5em 0.5em;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
  background-position: 100%;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}
.single-product .mona-product-summary .price {
  font-weight: 600;
  color: #523146;
}
.single-product .mona-product-summary .woocommerce-product-details__short-description ul {
  list-style: none;
  margin-left: 0;
}
.single-product .mona-product-summary .woocommerce-product-details__short-description ul li {
  margin-bottom: 15px;
  font-size: 1em;
}
.single-product .mona-product-summary .woocommerce-product-details__short-description ul li:before {
  content: "•";
  color: #B83766;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.single-product .quantity {
  float: left;
  margin-right: 20px;
}
.single-product .quantity .input-text.qty {
  max-width: 40px;
  text-align: center;
}
.single-product .product_meta {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
}
.single-product .product_meta span {
  white-space: nowrap;
  font-size: 0.7em;
  padding: 5px 10px;
  background-color: #EF90A1;
  color: white;
  text-transform: uppercase;
  margin: 4px;
  border-radius: 0 12px 0 12px;
}

.button {
  cursor: pointer !important;
}

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

.related.products {
  display: block;
  max-width: 1300px;
  margin: 0 auto;
}
.related.products ul.products.columns-3 {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: center;
}
.related.products ul.products.columns-3 li.product {
  height: 100%;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .related.products ul.products.columns-3 li.product {
    flex: 50% 0 0;
  }
}
@media all and (min-width: 1200px) {
  .related.products ul.products.columns-3 li.product {
    flex: 0 0 300px;
  }
}

/**
 * Checkout
 */
#customer_details.col2-set {
  display: block;
}
@media screen and (min-width: 768px) {
  #customer_details.col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    /*
    .form-row-first {
        float: left;
        margin-right: $columns__margin;
    }
    .form-row-last {
        float: right;
        margin-right: 0;
    }
    .form-row-first,
    .form-row-last {
        @include column-width(2);
    }*/
  }
}

.shop-msgs {
  text-align: center;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0 0 60px;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
  display: inline-block;
}
.woocommerce-MyAccount-navigation ul li a {
  border: 1px solid;
  border-radius: 0 16px 0 16px !important;
  background-color: #523146 !important;
  border-color: #523146 !important;
  color: white !important;
  line-height: 1;
  text-decoration: none !important;
  padding: 0.4em 1em 0.4em !important;
  font-size: 0.8em;
  font-weight: 400 !important;
  text-transform: uppercase;
  transition: all 0.8s ease-in-out !important;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #67425a !important;
  border-color: #67425a !important;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #B83766 !important;
  border-color: #B83766 !important;
}
.woocommerce-MyAccount-navigation ul li.is-active a:hover {
  background-color: #523146 !important;
  border-color: #523146 !important;
}

.woocommerce-message,
.woocommerce-Message {
  padding: 30px 40px;
  background: #F7F3EF !important;
  border: none;
  margin: 15px 0;
}

tr.woocommerce-cart-form__cart-item .product-remove a {
  text-decoration: none;
  font-size: 2em;
}
tr.woocommerce-cart-form__cart-item .product-thumbnail a {
  display: table;
  background-color: white;
  overflow: hidden;
  border-radius: 0 25px;
  margin-bottom: 15px;
}
tr.woocommerce-cart-form__cart-item .product-name a {
  text-decoration: none;
  font-weight: 400;
  font-size: 1.1em;
}
tr.woocommerce-cart-form__cart-item .product-price ul {
  margin-left: 0;
  padding-left: 5px;
}
tr.woocommerce-cart-form__cart-item .product-quantity input {
  width: 80px;
  margin: 0 auto;
  padding: 4px 10px;
}

.u-columns.col2-set {
  display: flex;
  flex-wrap: wrap;
}
.u-columns.col2-set .col-1,
.u-columns.col2-set .col-2 {
  width: 50%;
  padding: 20px 5%;
}
.u-columns.col2-set .col-1 label,
.u-columns.col2-set .col-2 label {
  display: block;
}
.u-columns.col2-set .col-1 input[type=text],
.u-columns.col2-set .col-1 input[type=email],
.u-columns.col2-set .col-1 input[type=password],
.u-columns.col2-set .col-2 input[type=text],
.u-columns.col2-set .col-2 input[type=email],
.u-columns.col2-set .col-2 input[type=password] {
  display: block;
  width: 100%;
}
.u-columns.col2-set .col-1 .woocommerce-form-login__submit,
.u-columns.col2-set .col-2 .woocommerce-form-login__submit {
  margin-top: 30px;
}

#customer_login {
  margin-bottom: 90px;
}

.woocommerce-info {
  background-color: transparent !important;
  color: #523146;
  font-weight: 500;
}

.cart-contents .cart-contents-count {
  position: relative;
  top: -3px;
  display: inline-block;
  font-size: 0.8em;
  color: white;
}

.mona-payment {
  margin-top: 100px;
}

.woocommerce-checkout-review-order-table th {
  text-align: left;
}

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

.wrapper.checkout-column {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto 20px;
}
.wrapper.checkout-column .actions .coupon {
  display: flex;
  gap: 10px;
}
.wrapper.checkout-column button[name=update_cart] {
  margin-top: 20px;
}
.wrapper.checkout-column button[name=update_cart]:disabled {
  opacity: 0.4;
}
.wrapper.checkout-column .cart-collaterals {
  display: flex;
}
.wrapper.checkout-column .cart-collaterals .cart_totals {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .wrapper.checkout-column .cart-collaterals .cart_totals {
    max-width: 50%;
  }
}
.wrapper.checkout-column .wcsatt-add-cart-to-subscription-action-label {
  font-size: 0.8em;
  padding-left: 1.25em;
}
.wrapper.checkout-column .wcsatt-add-cart-to-subscription-action-label .wcsatt-add-cart-to-subscription-action-input {
  right: unset;
  left: 0;
  height: 1em;
  width: 1em;
}

/**
 * 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: #4169e1;
}

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: #404040;
  text-indent: 0;
  opacity: 0.25;
}
p.stars a:hover ~ a::before {
  content: "S";
  color: #404040;
  opacity: 0.25;
}
p.stars:hover a::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}
p.stars.selected a.active::before {
  content: "S";
  color: #4169e1;
  opacity: 1;
}
p.stars.selected a.active ~ a::before {
  content: "S";
  color: #404040;
  opacity: 0.25;
}
p.stars.selected a:not(.active)::before {
  content: "S";
  color: #4169e1;
  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;
}
.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 {
  background-color: #0f834d;
  clear: both;
}

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

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

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

@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: #4169e1;
  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: #4169e1;
}
.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%;
}