@charset "UTF-8";

/*
Theme Name: Webwork
Description: WooCommerce styles
*/


/* ==========================================================================
   Table of contents:
   ==========================================================================


# Shop Page
# Product Page
# Cart Page
# Checkout Page
# My Account
# Widgets
# Misc


========================================================================== */





/* ==========================================================================
   # Shop Page
   ========================================================================== */
.woocommerce .shop-wrapper,
.woocommerce-page .shop-wrapper {
  margin: 3rem 0 4.25rem;
}


/* # Active Filters --------------------------------------------------------- */
.woocommerce .widget_layered_nav_filters ul li {
  display: inline-flex;
  margin-bottom: 0;
}

.woocommerce .widget_layered_nav_filters ul li a {
  display: inline-block;
  font-size: var(--font-size-12);
  border-radius: .25rem;
  padding: .4rem .6rem;
  background-color: var(--dark-gray);
}

.woocommerce .widget_layered_nav_filters ul li a::after {
  content: "\2716";
  font-family: "Line Awesome Free";
  font-size: var(--font-size-10);
  margin-left: .5rem;
}


/* # Sorting ---------------------------------------------------------------- */
.woocommerce .sorting-wrapper,
.woocommerce-page .sorting-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .woocommerce .sorting-wrapper,
  .woocommerce-page .sorting-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.woocommerce .woocommerce-result-count {
  font-size: var(--font-size-14);
}

.woocommerce .woocommerce-ordering select {
  padding: 0 1rem;
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-result-count,
  .woocommerce-page .woocommerce-ordering {
    text-align: center;
  }
}


/* # Products List ---------------------------------------------------------- */
.woocommerce ul.products,
.woocommerce-page ul.products {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding: 0 15px;
  margin: 0 0 2rem;
}

.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
  position: relative;
  transition: all 0.3s ease;
}

.woocommerce .columns-grid-2 ul.products li.product,
.woocommerce-page .columns-grid-2 ul.products li.product {
  width: 50%;
}

.woocommerce .columns-grid-3 ul.products li.product,
.woocommerce-page .columns-grid-3 ul.products li.product {
  width: 33.333%;
}

.woocommerce .columns-grid-4 ul.products li.product,
.woocommerce-page .columns-grid-4 ul.products li.product {
  width: 25%;
}
@media (max-width: 767.98px) {
  .woocommerce .columns-grid-2 ul.products li.product,
  .woocommerce .columns-grid-3 ul.products li.product,
  .woocommerce .columns-grid-4 ul.products li.product,
  .woocommerce-page .columns-grid-2 ul.products li.product,
  .woocommerce-page .columns-grid-3 ul.products li.product,
  .woocommerce-page .columns-grid-4 ul.products li.product {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .woocommerce .columns-grid-2 ul.products li.product,
  .woocommerce .columns-grid-3 ul.products li.product,
  .woocommerce .columns-grid-4 ul.products li.product,
  .woocommerce-page .columns-grid-2 ul.products li.product,
  .woocommerce-page .columns-grid-3 ul.products li.product,
  .woocommerce-page .columns-grid-4 ul.products li.product {
    width: 100%;
  }
}


/* # Sales Badge ------------------------------------------------------------ */
.woocommerce span.onsale,
.woocommerce-page span.onsale {
  font-size: var(--font-size-12);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  line-height: normal;
  width: 50px;
  height: 50px;
  top: 5% !important;
  left: 8% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}

.single-product span.onsale {
  top: 1% !important;
  left: 1.5% !important;
}


/* # Product Image ---------------------------------------------------------- */
.woocommerce ul.products li.product a img:nth-child(1){
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease-in-out 0s;
}

.woocommerce ul.products li.product a:hover img:nth-child(1) {
  visibility: visible;
  opacity: 1;
}

.woocommerce ul.products li.product a:hover img:nth-child(2) {
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease-in-out 0s;
}


/* # Product Title ---------------------------------------------------------- */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-weight: var(--font-normal);
  letter-spacing: 0;
  padding-top: 0;
}

.woocommerce ul.products li.product .star-rating {
    display: none;
}


/* # Product Price ---------------------------------------------------------- */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: var(--dark);
}

.woocommerce ins,
.woocommerce mark,
.woocommerce-page ins,
.woocommerce-page mark {
  color: var(--black);
  text-decoration: none;
}

.woocommerce ul.products li.product .price small.woocommerce-price-suffix,
.woocommerce-page ul.products li.product .price small.woocommerce-price-suffix {
  display: none;
}


/* # Add To Cart ------------------------------------------------------------ */
.woocommerce ul.products li.product .button {
  position: absolute;
  top: 5%;
  right: 10%;
  z-index: 99;
  margin-top: 0;
  padding: 0.75rem;
  border-radius: 100%;
  background-color: var(--white);
  transition: all .3s ease;
}
@media (min-width: 992px) {
  .woocommerce ul.products li.product .button {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(10px,0,0);
  }
  .woocommerce ul.products li.product:hover .button {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
  }
}

.woocommerce ul.products li.product .button::before {
  content: "\f290";
  font-family: var(--icon-family);
  color: var(--black);
}

.woocommerce ul.products li.product .button:hover {
  background-color: var(--black);
}

.woocommerce ul.products li.product .button:hover::before {
  color: var(--white);
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,
.woocommerce a.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,
.woocommerce.adding::before {
  content: none;
}


/* # View Cart -------------------------------------------------------------- */
.woocommerce a.added_to_cart,
.woocommerce-page a.added_to_cart {
  display: none;
}


/* # Pagination ------------------------------------------------------------- */
.woocommerce .woocommerce-pagination ul.page-numbers,
.woocommerce-page .woocommerce-pagination ul.page-numbers {
  display: block;
  margin: 30px 0 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  border-right: 0;
  display: inline-block;
  float: none;
}

.woocommerce .woocommerce-pagination a.page-numbers,
.woocommerce .woocommerce-pagination span.page-numbers,
.woocommerce-page .woocommerce-pagination a.page-numbers,
.woocommerce-page .woocommerce-pagination span.page-numbers {
  padding: 0 5px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.woocommerce .woocommerce-pagination a.page-numbers:hover,
.woocommerce .woocommerce-pagination a.page-numbers.current,
.woocommerce .woocommerce-pagination span.page-numbers:hover,
.woocommerce .woocommerce-pagination span.page-numbers.current,
.woocommerce-page .woocommerce-pagination a.page-numbers:hover,
.woocommerce-page .woocommerce-pagination a.page-numbers.current,
.woocommerce-page .woocommerce-pagination span.page-numbers:hover,
.woocommerce-page .woocommerce-pagination span.page-numbers.current {
  color: var(--color);
}

.woocommerce .woocommerce-pagination a.page-numbers:hover,
.woocommerce .woocommerce-pagination a.page-numbers.current,
.woocommerce .woocommerce-pagination span.page-numbers:hover,
.woocommerce .woocommerce-pagination span.page-numbers.current,
.woocommerce-page .woocommerce-pagination a.page-numbers:hover,
.woocommerce-page .woocommerce-pagination a.page-numbers.current,
.woocommerce-page .woocommerce-pagination span.page-numbers:hover,
.woocommerce-page .woocommerce-pagination span.page-numbers.current {
  background: transparent;
}

.woocommerce .create-account .input-checkbox,
.woocommerce-page .create-account .input-checkbox {
  position: relative;
}





/* ==========================================================================
   # Product Page
   ========================================================================== */


/* # Product Gallery -------------------------------------------------------- */
.flex-direction-nav {
  position: absolute;
  top: 40%;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.flex-nav-prev {
  position: absolute;
  left: 1.5rem;
}

.flex-nav-next {
  position: absolute;
  right: 1.5rem;
}

.flex-prev,
.flex-next {
  opacity: 0;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}

.woocommerce-product-gallery:hover .flex-prev,
.woocommerce-product-gallery:hover .flex-next {
  opacity: 1;
  visibility: visible;
}

.flex-prev::before {
  content: "\f104";
  font-size: var(--font-size-24);
  font-family: var(--icon-family);
  font-weight: var(--font-extrabold);
}

.flex-next::after {
  content: "\f105";
  font-size: var(--font-size-24);
  font-family: var(--icon-family);
  font-weight: var(--font-extrabold);
}

.flex-prev.flex-disabled,
.flex-next.flex-disabled {
  color: var(--dark);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover {
  background: var(--black);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover::before {
  border: 1.5px solid var(--white);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:hover::after {
  background: var(--white);
}

.pswp__bg {
  background: rgba(0,0,0,.7);
}

button.pswp__button.pswp__button--close,
button.pswp__button.pswp__button--fs,
button.pswp__button.pswp__button--zoom {
  min-width: unset !important;
}

.pswp__caption {
  display: none;
}

button.pswp__button--arrow--left,
button.pswp__button--arrow--right {
  position: absolute !important;
  min-width: unset !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
  border: 1.5px solid var(--black);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
  width: 1px;
  background: var(--black);
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  width: 45%;
  margin-bottom: 3rem;
}

.woocommerce #content div.product div.thumbnails,
.woocommerce div.product div.images div.thumbnails,
.woocommerce-page #content div.product div.thumbnails,
.woocommerce-page div.product div.images div.thumbnails {
  text-align: center;
}

.woocommerce #content div.product div.thumbnails a,
.woocommerce div.product div.images div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a,
.woocommerce-page div.product div.images div.thumbnails a {
  float: none;
  display: inline-block;
  width: 12.5%;
  margin: 0;
  padding: 5px;
  vertical-align: top;
}

.woocommerce div.product div.images .flex-control-thumbs,
.woocommerce-page div.product div.images .flex-control-thumbs {
  margin-top: 10px;
  text-align: center;
}

.woocommerce div.product div.images .flex-control-thumbs li,
.woocommerce-page div.product div.images .flex-control-thumbs li {
  float: none;
  display: inline-block;
  width: 25%;
  margin: 0;
  padding: 5px;
  vertical-align: top;
}


/* # Product Summary -------------------------------------------------------- */
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  width: 50%;
}


/* # Product Title ---------------------------------------------------------- */
.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title {
  font-size: var(--font-size-h2);
}


/* # Product Raiting -------------------------------------------------------- */
.woocommerce div.product .woocommerce-product-rating,
.woocommerce-page div.product .woocommerce-product-rating {
  margin-bottom: .5rem;
}

.woocommerce .woocommerce-review-link,
.woocommerce-page .woocommerce-review-link {
  font-size: var(--font-size-12);
  color: var(--dark);
  text-decoration: none;
}

.woocommerce .woocommerce-review-link:hover,
.woocommerce-page .woocommerce-review-link:hover {
  color: var(--color);
}


/* # Product Price ---------------------------------------------------------- */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price {
  color: var(--black);
  font-size: var(--font-size-22);
  margin: 0 0 1rem;
}

.woocommerce div.product p.price small.woocommerce-price-suffix,
.woocommerce div.product span.price small.woocommerce-price-suffix,
.woocommerce-page div.product p.price small.woocommerce-price-suffix,
.woocommerce-page div.product span.price small.woocommerce-price-suffix {
  color: var(--dark);
  font-size: var(--font-size-10);
}


/* # Product Short Description ---------------------------------------------- */
.woocommerce .woocommerce-product-details__short-description p,
.woocommerce-page .woocommerce-product-details__short-description p {
  margin: 0 0 1.25rem;
}


/* # Product Variations ----------------------------------------------------- */
@media (min-width: 992px) {
  .woocommerce div.product form.cart .variations {
    width: 75%;
  }
}

.woocommerce div.product form.cart .variations th {
  font-size: var(--font-size-14);
  text-align: left;
  padding: 0;
  vertical-align: middle;
}

.woocommerce #content div.product form.cart .variations .value,
.woocommerce-page #content div.product form.cart .variations .value {
  position: relative;
  padding-right: 2rem;
}

.woocommerce div.product form.cart .variations select,
.woocommerce-page div.product form.cart .variations select {
  width: 100%;
  padding-left: 1rem;
}

.woocommerce div.product form.cart .woocommerce-variation-price,
.woocommerce-page div.product form.cart .woocommerce-variation-price {
  margin-bottom: 1rem;
}

.woocommerce div.product form.cart .reset_variations,
.woocommerce-page div.product form.cart .reset_variations {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0%;
  color: transparent;
}

.woocommerce div.product form.cart .reset_variations:after,
.woocommerce-page div.product form.cart .reset_variations:after {
  content: "\f00d";
  display: inline-block;
  position: absolute;
  left: 2px;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--black);
  font-family: var(--icon-family);
  font-weight: var(--font-bold);
  text-align: center;
  line-height: 1.25rem;
  border-radius: 100%;
  background-color: var(--dark-gray);
  transition: all 0.3s ease;
}

.woocommerce div.product form.cart .reset_variations:hover:after,
.woocommerce-page div.product form.cart .reset_variations:hover:after {
  color: var(--red);
}


/* # Product Stock ---------------------------------------------------------- */
.woocommerce div.product p.stock,
.woocommerce-page div.product p.stock {
  color: var(--dark);
  margin: 0 0 0.625rem;
}


/* # Product Cart ----------------------------------------------------------- */
.woocommerce div.product form.cart,
.woocommerce div.product p.cart,
.woocommerce-page div.product form.cart,
.woocommerce-page div.product p.cart {
  margin-bottom: 1rem;
}

.woocommerce div.product form.cart div.quantity,
.woocommerce-page div.product form.cart div.quantity {
  margin: 0 .5rem 0 0;
  padding: 0 1rem;
  border: 1px solid var(--border-color);
}

.woocommerce div.product form.cart .button,
.woocommerce-page div.product form.cart .button {
  letter-spacing: -0.03em;
  padding: 1rem 1.5rem;
  border-radius: 10rem;
  background-color: var(--black);
  transition: all 0.3s ease-in-out;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce-page div.product form.cart .button:hover {
  background-color: var(--color);
}


/* # Product Meta ----------------------------------------------------------- */
.woocommerce div.product .product_meta,
.woocommerce-page div.product .product_meta {
  color: var(--dark);
  font-size: var(--font-size-14);
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.woocommerce div.product .product_meta span.sku_wrapper span.sku,
.woocommerce-page div.product .product_meta span.sku_wrapper span.sku {
  color: var(--black);
}

.woocommerce div.product .product_meta a,
.woocommerce-page div.product .product_meta a {
  text-decoration: none;
}

.woocommerce div.product .product_meta .sku_wrapper,
.woocommerce-page div.product .product_meta .sku_wrapper,
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .product_meta .tagged_as,
.woocommerce-page div.product .product_meta .posted_in,
.woocommerce-page div.product .product_meta .tagged_as {
  display: block;
  margin-bottom: .35rem;
}

.woocommerce div.product .product_meta a:hover,
.woocommerce-page div.product .product_meta a:hover,
.woocommerce div.product .product_meta .posted_in a:hover,
.woocommerce div.product .product_meta .tagged_as a:hover,
.woocommerce-page div.product .product_meta .posted_in a:hover,
.woocommerce-page div.product .product_meta .tagged_as a:hover {
  color: var(--color);
}


/* # Product Tabs ----------------------------------------------------------- */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  border: none;
  background-color: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--black);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
  font-size: var(--font-size-12);
  text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel--description h2:first-child,
.woocommerce-page div.product .woocommerce-tabs .woocommerce-Tabs-panel--description h2:first-child {
  display: none;
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce-page div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .woocommerce-tabs .panel h3,
.woocommerce-page div.product .woocommerce-tabs .panel h3 {
  font-size: var(--font-size-20);
}

.woocommerce div.product .woocommerce-tabs .panel h2:first-child,
.woocommerce-page div.product .woocommerce-tabs .panel h2:first-child {
  font-size: var(--font-size-16);
  margin-top: 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2:nth-child(2),
.woocommerce-page div.product .woocommerce-tabs .panel h2:nth-child(2),
.woocommerce div.product .woocommerce-tabs .panel h3:first-child,
.woocommerce-page div.product .woocommerce-tabs .panel h3:first-child {
  margin-top: 0;
}

.woocommerce #reviews #comments ol.commentlist,
.woocommerce-page #reviews #comments ol.commentlist {
  margin-top: 30px;
  padding: 0;
}

.woocommerce .woocommerce-tabs,
.woocommerce-page .woocommerce-tabs {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}


/* # Product Reviews -------------------------------------------------------- */
@media (min-width: 992px) {
  .woocommerce #reviews #comments,
  .woocommerce-page #reviews #comments {
    float: left;
    width: 48%;
  }
  .woocommerce #reviews #review_form_wrapper,
  .woocommerce-page #reviews #review_form_wrapper {
    float: right;
    width: 48%;
  }
}

.woocommerce .woocommerce-tabs #comments .woocommerce-noreviews,
.woocommerce-page .woocommerce-tabs #comments .woocommerce-noreviews {
  margin-top: 0;
  font-size: var(--font-size-14);
}

.woocommerce #reviews .comment-form-rating,
.woocommerce-page #reviews .comment-form-rating {
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
}

.woocommerce #reviews .comment-form-rating label,
.woocommerce-page #reviews .comment-form-rating label {
  font-size: var(--font-size-14);
  margin-right: 1rem;
}

.woocommerce p.stars a::before,
.woocommerce-page p.stars a::before,
.woocommerce p.stars a:hover ~ a::before,
.woocommerce-page p.stars a:hover ~ a::before,
.woocommerce p.stars.selected a.active ~ a::before,
.woocommerce-page p.stars.selected a.active ~ a::befor  {
  color: var(--dark);
}

.woocommerce p.stars:hover a::before,
.woocommerce-page p.stars:hover a::before,
.woocommerce p.stars.selected a.active::before,
.woocommerce-page p.stars.selected a.active::before,
.woocommerce p.stars.selected a:not(.active)::before,
.woocommerce-page p.stars.selected a:not(.active)::before {
  color: var(--gold);
}

.woocommerce #reviews .comment-form-rating .stars,
.woocommerce #reviews .comment-form-rating .stars {
  font-size: var(--font-size-14);
  line-height: 1;
  margin-bottom: 0 !important;
}

.woocommerce .star-rating {
  font-size: var(--font-size-14);
  width: 6.45em;
  margin-top: 0.5rem;
}

.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
  letter-spacing: 4px;
}

.woocommerce .star-rating span::before {
  color: var(--gold);
}

.woocommerce #review_form .comment-form,
.woocommerce-page #review_form .comment-form {
  margin-left: 0;
  margin-right: 0;
}

.woocommerce #review_form .comment-form p,
.woocommerce-page #review_form .comment-form p {
  padding-left: 0;
  padding-right: 0;
}

.woocommerce #review_form #respond .form-submit input {
  color: var(--white);
  border-radius: 10rem;
  min-width: 4.5rem;
  background-color: var(--black);
}

.woocommerce #review_form #respond .form-submit input:hover {
    background-color: var(--color);
}

.woocommerce #reviews #comments ol.commentlist li,
.woocommerce-page #reviews #comments ol.commentlist li {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.woocommerce #reviews #comments ol.commentlist li img.avatar,
.woocommerce-page #reviews #comments ol.commentlist li img.avatar {
  position: relative;
  top: auto;
  left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  width: auto;
  border-radius: 50%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
  border: 0;
  margin-left: 80px;
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta {
  margin-bottom: 0;
  font-size: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong,
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__author,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta strong,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__author {
  color: var(--black);
  font-size: var(--font-size-12) !important;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .woocommerce-review__dash,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text .woocommerce-review__dash {
  display: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .description,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text .description {
  font-size: var(--font-size-14);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text time,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text time {
  display: block;
  font-size: var(--font-size-10);
}

.woocommerce #review_form .comment-form .comment-form-author,
.woocommerce #review_form .comment-form .comment-form-email,
.woocommerce #review_form .comment-form .comment-form-url,
.woocommerce-page #review_form .comment-form .comment-form-author,
.woocommerce-page #review_form .comment-form .comment-form-email,
.woocommerce-page #review_form .comment-form .comment-form-url {
  width: 48%;
}

.woocommerce #review_form .comment-form .comment-form-email,
.woocommerce-page #review_form .comment-form .comment-form-email {
  margin-left: 4% !important;
}

@media (max-width: 575.98px) {
  .woocommerce #review_form .comment-form .comment-form-author,
  .woocommerce #review_form .comment-form .comment-form-email,
  .woocommerce #review_form .comment-form .comment-form-url,
  .woocommerce-page #review_form .comment-form .comment-form-author,
  .woocommerce-page #review_form .comment-form .comment-form-email,
  .woocommerce-page #review_form .comment-form .comment-form-url {
    width: 100%;
  }
  .woocommerce #review_form .comment-form .comment-form-email,
  .woocommerce-page #review_form .comment-form .comment-form-email {
    margin-left: 0% !important;
  }
  .woocommerce #reviews #comments ol.commentlist li img.avatar,
  .woocommerce-page #reviews #comments ol.commentlist li img.avatar {
    display: none;
  }
  .woocommerce #reviews #comments ol.commentlist li .comment-text,
  .woocommerce-page #reviews #comments ol.commentlist li .comment-text {
    margin-left: 0;
  }
}


/* # Related Products ------------------------------------------------------- */
.woocommerce .related > h2, .woocommerce-page .related > h2 {
  font-size: var(--font-size-24);
  text-align: center;
  margin-bottom: 2rem;
}

.woocommerce .up-sells ul.products li.product,
.woocommerce .related ul.products li.product,
.woocommerce-page .up-sells ul.products li.product,
.woocommerce-page .related ul.products li.product {
  width: 25%;
}
@media (max-width: 575.98px) {
  .woocommerce .up-sells ul.products li.product,
  .woocommerce .related ul.products li.product,
  .woocommerce .cross-sells ul.products li.product,
  .woocommerce-page .up-sells ul.products li.product,
  .woocommerce-page .related ul.products li.product,
  .woocommerce-page .cross-sells ul.products li.product {
    width: 100%;
  }
}





/* ==========================================================================
   # Cart Page
   ========================================================================== */
.woocommerce-cart section:first-of-type {
  margin-top: 50px !important;
}


/* # Cart Table ------------------------------------------------------------- */
@media (min-width: 991.98px) {
  .woocommerce form.woocommerce-cart-form {
    float: left;
    width: 63%;
  }
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  border: none;
  border-radius: 0;
}

.woocommerce table.shop_table thead,
.woocommerce table.shop_table tfoot,
.woocommerce-page table.shop_table thead,
.woocommerce-page table.shop_table tfoot {
  color: var(--black);
  background-color: transparent;
}

.woocommerce table.shop_table thead,
.woocommerce-page table.shop_table thead {
  color: var(--black);
  font-size: var(--font-size-14);
}

.woocommerce-cart table.shop_table thead:first-child > tr:first-child > th {
  padding-top: 0;
}

.woocommerce table.shop_table td {
  font-size: var(--font-size-14);
}

@media (min-width: 991.98px) {
  .woocommerce-cart table.shop_table td.product-name {
    max-width: 175px;
  }
}

.woocommerce table.shop_table td a {
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .woocommerce table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tr:not(:last-child):not(:nth-last-child(2)),
  .woocommerce-page table.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents tr:not(:last-child):not(:nth-last-child(2)) {
    margin-bottom: 2rem;
  }

  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: transparent;
  }

  .woocommerce #content table.cart .product-thumbnail,
  .woocommerce table.cart .product-thumbnail,
  .woocommerce-page #content table.cart .product-thumbnail,
  .woocommerce-page table.cart .product-thumbnail {
    border-top: none;
    display: block;
  }

  .woocommerce table.shop_table_responsive tr td.product-thumbnail::before,
  .woocommerce-page table.shop_table_responsive tr td.product-thumbnail::before {
    content: none;
  }

  .woocommerce table.shop_table_responsive tr td.product-thumbnail a img,
  .woocommerce-page table.shop_table_responsive tr td.product-thumbnail a img {
    width: 100%;
  }

  .woocommerce table.shop_table_responsive tr td.product-remove,
  .woocommerce-page table.shop_table_responsive tr td.product-remove {
    position: absolute;
    right: 5%;
    border-top: none;
    padding: 0.5rem;
    border-radius: 10rem;
    background-color: var(--dark-gray);
  }
}

.woocommerce-cart table.cart img {
  width: 100px;
  border-radius: 100%;
}


/* # Remove Product --------------------------------------------------------- */
.woocommerce a.remove,
.woocommerce-page a.remove {
  width: 20px;
  height: 20px;
  overflow: hidden;
  font-size: 0;
}

.woocommerce a.remove:hover,
.woocommerce-page a.remove:hover {
  background-color: transparent !important;
}

.woocommerce a.remove:before,
.woocommerce-page a.remove:before {
  content: "\f00d";
  display: inline-block;
  font-family: var(--icon-family);
  font-size: var(--font-size-10);
  line-height: 20px;
  color: var(--black);
  transition: all 0.3s ease;
}

.woocommerce a.remove:hover:before,
.woocommerce-page a.remove:hover:before {
  color: var(--red);
}


/* # Quantity --------------------------------------------------------------- */
.woocommerce form .quantity,
.woocommerce-page form .quantity {
  display: inline-block;
  padding: 0 .75rem;
  border-radius: 10rem;
  border: 1px solid var(--border-color);
}

.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty {
  border: 0;
  background-color: transparent;
}

.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce-page .quantity input.qty::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
}

.woocommerce .quantity button.minus,
.woocommerce-page .quantity button.plus {
  font-size: var(--font-size-16);
  border: none;
  cursor: pointer;
  background-color: transparent;
  transition: all .3s ease-in-out;
}

.woocommerce .quantity button.minus:hover,
.woocommerce-page .quantity button.plus:hover {
  border-radius: 10rem;
  background-color: var(--gray);
}


/* # Actions - coupon & refresh --------------------------------------------- */
.woocommerce table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page table.cart td.actions {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
  color: var(--white);
  background-color: var(--black);
  border-radius: 10rem;
  padding: 1rem 1.5rem;
  transition: all 0.5s ease;
}

.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover {
  color: var(--white);
  background-color: var(--color);
}

.woocommerce table.cart td.actions #coupon_code,
.woocommerce-page table.cart td.actions #coupon_code {
  border-radius: 10rem;
  padding-left: 1rem;
  margin: 0 .5rem 0 0;
}
@media (max-width: 767.98px) {
  .woocommerce table.cart td.actions .coupon,
  .woocommerce-page #content table.cart td.actions .coupon,
  .woocommerce-page table.cart td.actions .coupon {
    padding-bottom: 0;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .woocommerce table.cart td.actions #coupon_code,
  .woocommerce-page table.cart td.actions #coupon_code {
    width: 200px !important;
  }
}

.woocommerce button.button:disabled[disabled],
.woocommerce-page button.button:disabled[disabled] {
  color: var(--dark-gray);
  background-color: var(--dark);
  padding: 1rem 1.5rem;
}

.woocommerce .cart-discount a.woocommerce-remove-coupon,
.woocommerce-page .cart-discount a.woocommerce-remove-coupon {
  color: var(--red);
  font-size: 0;
  line-height: 1;
  margin-left: 5px;
}

.woocommerce .cart-discount a.woocommerce-remove-coupon:before,
.woocommerce-page .cart-discount a.woocommerce-remove-coupon:before {
  content: "\f00d";
  display: inline-block;
  font-family: var(--icon-family);
  font-size: var(--font-size-14);
  font-weight: var(--font-bold);
  line-height: 1.2rem;
  text-align: center;
  border: 1px solid var(--red);
  border-radius: 100%;
  width: 1.25rem;
  height: 1.25rem;
  opacity: .3;
  transition: all 0.3s ease;
}

.woocommerce .cart-discount a.woocommerce-remove-coupon:hover:before,
.woocommerce-page .cart-discount a.woocommerce-remove-coupon:hover:before {
  opacity: 1;
}


/* # Cart Collaterals ------------------------------------------------------- */
@media (min-width: 991.98px) {
  .woocommerce .cart-collaterals,
  .woocommerce-page .cart-collaterals {
    float: right;
    width: 33%;
  }
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
}

.woocommerce-cart .cart-collaterals .cart_totals h2::before {
  content: "\f290";
  font-family: var(--icon-family);
  margin-right: .5rem;
}

.woocommerce .up-sells > h2,
.woocommerce .cross-sells > h2,
.woocommerce .cart_totals > h2,
.woocommerce .checkout h3,
.woocommerce .woocommerce-order h2,
.woocommerce .woocommerce-Address-title > h3,
.woocommerce .woocommerce-MyAccount-content h2,
.woocommerce.woocommerce-account .woocommerce h2,
.woocommerce.woocommerce-order-received .woocommerce h2,
.woocommerce-page .up-sells > h2,
.woocommerce-page .cross-sells > h2,
.woocommerce-page .cart_totals > h2,
.woocommerce-page .checkout h3,
.woocommerce-page .woocommerce-order h2,
.woocommerce-page .woocommerce-Address-title > h3,
.woocommerce-page .woocommerce-MyAccount-content h2,
.woocommerce-page.woocommerce-order-received .woocommerce h2 {
  /* font-size: var(--font-size-24);
  padding-bottom: 1rem;
  margin-top: 1rem !important;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-color); */
  font-size: var(--font-size-24);
  margin-top: 1rem !important;
}

@media (max-width: 767.98px) {
  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 768px) {
  .woocommerce .cart-collaterals .cart_totals tr th,
  .woocommerce-page .cart-collaterals .cart_totals tr td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
  width: 30%;
}

.woocommerce .cart-collaterals .cart_totals tr th {
  color: var(--black);
  font-size: var(--font-size-14);
}
@media (max-width: 767.98px) {
  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    color: var(--black);
    font-size: var(--font-size-14);
  }
}

.woocommerce-page .cart-collaterals .cart_totals tr:first-child td,
.woocommerce-page .cart-collaterals .cart_totals tr:last-child td {
  text-align: right;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination {
  display: none;
}

#add_payment_method .cart-collaterals .cart_totals table small,
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small {
  display: block;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-size: var(--font-size-18);
  margin-bottom: 0;
  padding: 1.15rem 1.75rem 1.25rem;
  border-radius: 0 ;
  background-color: var(--black);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: var(--color);
}


/* # Empty Cart ------------------------------------------------------------- */
.woocommerce p.cart-empty,
.woocommerce p.return-to-shop,
.woocommerce-page p.cart-empty,
.woocommerce-page p.return-to-shop {
  text-align: center;
}

.woocommerce p.cart-empty, .woocommerce-page p.cart-empty {
  color: var(--black);
  font-size: var(--font-size-24);
  font-weight: var(--font-extrabold);
  border: none;
  border-radius: 0;
  width: auto;
  box-shadow: none;
  background-color: transparent !important;
  padding: 0;
  margin-bottom: 2rem;
}

.woocommerce p.cart-empty::before, .woocommerce-page p.cart-empty::before {
  content: "\f290";
  color: var(--black);
  font-family: var(--icon-family);
  font-size: 6rem;
  line-height: 1.25;
  position: relative;
  display: block;
  top: 0;
  left: 0;
}





/* ==========================================================================
   # Checkout Page
   ========================================================================== */
.woocommerce-checkout section:first-of-type {
  margin-top: 50px !important;
}

.woocommerce form .form-row,
.woocommerce-page form .form-row {
  padding: 0;
  margin: 0 0 1.25rem;
}

.woocommerce form.checkout_coupon {
  border: none;
  padding: 0;
}

.woocommerce form.checkout_coupon p.form-row {
  margin-bottom: 0;
}

.woocommerce form.checkout_coupon input#coupon_code {
  border: none;
  padding-left: 2rem;
  border-radius: 10rem;
  background-color: var(--gray);
}

.woocommerce .checkout ul.woocommerce-error {
  border-radius: .5rem;
}

.woocommerce-checkout #payment ul.payment_methods li.woocommerce-notice.woocommerce-notice--info.woocommerce-info {
  border-radius: 1rem;
}

.woocommerce form .form-row .select2-container,
.woocommerce-page form .form-row .select2-container {
  width: 100%;
  line-height: 2Rem;
}

.woocommerce form .form-row .select2-container .select2-selection--single,
.woocommerce-page form .form-row .select2-container .select2-selection--single {
  outline: 0;
  padding: 7px 6px;
  height: auto;
  border-radius: 0;
  border: 1px solid var(--border-color);
}

.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__arrow,
.woocommerce-page form .form-row .select2-container .select2-selection--single .select2-selection__arrow {
  height: 42px;
  right: 5px;
}

.woocommerce .select2-dropdown,
.woocommerce .select2-container--default .select2-search--dropdown .select2-search__field,
.woocommerce-page .select2-dropdown,
.woocommerce-page .select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--border-color);
}

.woocommerce .select2-dropdown,
.woocommerce-page .select2-dropdown {
  z-index: 998;
}


/* # Checkout Layout -------------------------------------------------------- */
.woocommerce.woocommerce-checkout .col2-set,
.woocommerce-page.woocommerce-checkout .col2-set {
  float: left;
  width: 63%;
}
.woocommerce.woocommerce-checkout .col2-set .col-1,
.woocommerce.woocommerce-checkout .col2-set .col-2,
.woocommerce-page.woocommerce-checkout .col2-set .col-1,
.woocommerce-page.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.woocommerce #order_review_heading,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce-page #order_review_heading,
.woocommerce-page .woocommerce-checkout-review-order {
  float: right;
  width: 33%;
  clear: initial;
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100%;
  }
  .woocommerce .up-sells ul.products li.product,
  .woocommerce .related ul.products li.product,
  .woocommerce-page .up-sells ul.products li.product,
  .woocommerce-page .related ul.products li.product {
    width: 50%;
  }
  .woocommerce.woocommerce-checkout .col2-set,
  .woocommerce #order_review_heading,
  .woocommerce .woocommerce-checkout-review-order,
  .woocommerce-page.woocommerce-checkout .col2-set,
  .woocommerce-page #order_review_heading,
  .woocommerce-page .woocommerce-checkout-review-order {
    float: none;
    width: 100%;
  }
}

.woocommerce-checkout #order_review_heading::before {
  content: "\f290";
  font-family: var(--icon-family);
  margin-right: .5rem;
  margin-left: -0.15rem;
}

.woocommerce-checkout table.shop_table .cart_item {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.woocommerce-checkout table.shop_table .cart-subtotal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.woocommerce-checkout table.shop_table .woocommerce-shipping-totals.shipping {
  display: grid;
  grid-template-columns: 1fr;
}

.woocommerce-checkout table.shop_table .order-total {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}


/* # Billing Fields --------------------------------------------------------- */
.woocommerce .woocommerce-billing-fields__field-wrapper,
.woocommerce-page .woocommerce-billing-fields__field-wrapper {
  margin-top: 1.25rem;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label{
  font-size: var(--font-size-14);
}

.woocommerce-checkout .woocommerce form.checkout #billing_country_field .woocommerce-input-wrapper {
  font-size: var(--font-size-14);
}

.woocommerce-checkout .woocommerce form.checkout #billing_country_field,
.woocommerce-checkout .woocommerce form.checkout #shipping_country_field,
.woocommerce-checkout .woocommerce form.checkout #billing_state_field,
.woocommerce-checkout .woocommerce form.checkout #shipping_state_field {
  display: none !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3::before {
  content: "\f570";
  font-family: var(--icon-family);
  margin-right: .5rem;
  margin-left: -0.15rem;
}


/* # Shipping Fields -------------------------------------------------------- */
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  float: none;
}

.woocommerce .woocommerce-shipping-fields__field-wrapper,
.woocommerce-page .woocommerce-shipping-fields__field-wrapper {
  margin-top: 1.25rem;
}

.woocommerce form .woocommerce-additional-fields,
.woocommerce-page form .woocommerce-additional-fields {
  margin-top: 1.25rem;
}

.woocommerce #ship-to-different-address,
.woocommerce-page #ship-to-different-address {
  font-size: var(--font-size-16);
}

.woocommerce form .form-row #order_comments {
  height: 7.15rem;
  padding: 1rem;
}

.woocommerce-checkout .woocommerce-shipping-totals.shipping th::before {
  content: "\f0d1";
  font-family: var(--icon-family);
  margin-right: .5rem;
  margin-left: -0.15rem;
}

.woocommerce-checkout .woocommerce-shipping-totals.shipping th {
  font-size: var(--font-size-24) !important;
  padding-top: 2rem !important;
  padding-bottom: 1rem !important;
  border-top: 0 !important;
}

.woocommerce-checkout table.shop_table .order-total td {
  text-align: right;
}

.woocommerce-checkout table.shop_table td small {
  display: block;
}


/* # Order Review Fields ---------------------------------------------------- */
.woocommerce table.woocommerce-checkout-review-order-table th,
.woocommerce-page table.woocommerce-checkout-review-order-table th,
.woocommerce table.woocommerce-checkout-review-order-table td,
.woocommerce-page table.woocommerce-checkout-review-order-table td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce-page table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th,
.woocommerce-page table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th,
.woocommerce table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce-page table.woocommerce-checkout-review-order-table tfoot tr.order-total th {
  color: var(--black);
  font-size: var(--font-size-14);
}

.woocommerce-checkout #order_review table.shop_table thead {
  display: none;
}

.woocommerce-checkout table.shop_table .cart_item td {
  padding-bottom: .5rem !important;
}

.woocommerce-checkout table.shop_table .cart_item .product-name .order-review-thumbnail {
  float: left;
  margin-right: 1rem;
  margin-top: -.75rem;
  border-radius: 100%;
}

.woocommerce-checkout table.shop_table .cart_item .product-total,
.woocommerce-checkout table.shop_table .cart-subtotal td {
  text-align: right;
}


/* # Payment Fields --------------------------------------------------------- */
.woocommerce #add_payment_method #payment,
.woocommerce .woocommerce-cart #payment,
.woocommerce .woocommerce-checkout #payment,
.woocommerce-page #add_payment_method #payment,
.woocommerce-page .woocommerce-cart #payment,
.woocommerce-page .woocommerce-checkout #payment {
  border-radius: 0;
  border-bottom: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  padding: 1rem;
  background: transparent;
}

.woocommerce-checkout .woocommerce-checkout-payment-title {
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  margin-bottom: 0;
  padding: 2rem 1rem 0;
}

.woocommerce-checkout .woocommerce-checkout-payment-title::before {
  content: "\f555";
  font-family: var(--icon-family);
  margin-right: .5rem;
  margin-left: -0.15rem;
}

.woocommerce #add_payment_method #payment ul.payment_methods,
.woocommerce .woocommerce-cart #payment ul.payment_methods,
.woocommerce .woocommerce-checkout #payment ul.payment_methods,
.woocommerce-page #add_payment_method #payment ul.payment_methods,
.woocommerce-page .woocommerce-cart #payment ul.payment_methods,
.woocommerce-page .woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--border-color);
}

.woocommerce-checkout #payment ul.payment_methods li label {
  color: var(--black);
  font-weight: var(--font-bold);
}

.woocommerce .woocommerce-checkout #payment div.payment_box,
.woocommerce-page .woocommerce-checkout #payment div.payment_box {
  margin-top: 0;
  padding: 0 2rem;
  font-size: var(--font-size-12);
  background: transparent;
}

.woocommerce .woocommerce-checkout #payment div.payment_box::before,
.woocommerce-page .woocommerce-checkout #payment div.payment_box::before {
  content: none;
}

.woocommerce-checkout #payment div.payment_box p:last-child {
  margin-top: 0;
}

.woocommerce-checkout #payment div.form-row.place-order .woocommerce-privacy-policy-text p {
  font-size: var(--font-size-10);
  margin: 0 0 1rem;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a {
  text-decoration: none;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a:hover {
  color: var(--color);
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  width: 100%;
  border-radius: 0;
  padding: 1.15rem 1.75rem 1.25rem;
  font-size: var(--font-size-18);
  background-color: var(--black);
  transition: all 0.5s ease;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
  background-color: var(--color);
}


/* # Order details ---------------------------------------------------------- */
.woocommerce-order-received .site-hero {
  display: none;
}

.woocommerce .woocommerce-order .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  color: var(--black);
  font-size: var(--font-size-h2);
  font-weight: var(--font-extrabold);
  letter-spacing: -0.04em;
}

.woocommerce .woocommerce-order .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received::before {
  content: "\f058";
  color: var(--color);
  font-family: var(--icon-family);
  font-size: var(--font-size-h1);
  margin-right: 0.5rem;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.woocommerce ul.order_details,
.woocommerce-page ul.order_details {
  list-style: none;
  padding: 0;
  position: relative;
  margin: 3rem 0;
}

.woocommerce ul.order_details li,
.woocommerce-page ul.order_details li {
  padding: 1rem 0;
  float: none;
  border-right: 0;
  border-bottom: 1px solid var(--border-color);
  margin-right: 0;
}
@media (min-width: 992px) {
  .woocommerce ul.order_details li,
  .woocommerce-page ul.order_details li {
    display: inline-block;
    padding: 1rem 2rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 0;
  }
  .woocommerce ul.order_details li:first-child,
  .woocommerce-page ul.order_details li:first-child {
    padding-left: 0;
  }
}

.woocommerce ul.order_details li strong,
.woocommerce-page ul.order_details li strong {
  color: var(--black);
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .woocommerce .woocommerce-order section.woocommerce-order-details,
  .woocommerce-page  .woocommerce-order section.woocommerce-order-details {
    width: 48%;
    float: right;
    margin-top: 0 !important;
  }
  .woocommerce .woocommerce-order section.woocommerce-customer-details,
  .woocommerce-page  .woocommerce-order section.woocommerce-customer-details {
    width: 48%;
    float: left;
  }
}

.woocommerce .woocommerce-customer-details address {
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 1rem;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  margin-top: 0.5rem;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  font-family: var(--icon-family);
  font-weight: var(--font-bold);
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  content: "\f095";
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  content: "\f0e0";
}

.woocommerce-order-received table.shop_table th {
  font-size: var(--font-size-12);
  text-transform: uppercase;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.woocommerce-order-received .woocommerce-table__line-item.order_item .woocommerce-table__product-name.product-name,
.woocommerce-order-received .woocommerce-table__line-item.order_item .woocommerce-table__product-total.product-total {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}





/* ==========================================================================
   # My Account
   ========================================================================== */
.woocommerce-account section:first-of-type {
  margin-top: 50px !important;
}

.woocommerce .u-columns.col2-set .col-1,
.woocommerce-page .u-columns.col2-set .col-1,
.woocommerce .u-columns.col2-set .col-2,
.woocommerce-page  .u-columns.col2-set .col-2 {
  max-width: 100%;
  padding: 0;
}

.woocommerce #customer_login h2,
.woocommerce-page #customer_login h2,
.woocommerce-page.woocommerce-account .woocommerce h2 {
  font-size: var(--font-size-24);
}

.woocommerce form.checkout_coupon,
.woocommerce form.login, .woocommerce .woocommerce form.register,
.woocommerce-page form.checkout_coupon,
.woocommerce-page form.login,
.woocommerce-page .woocommerce form.register {
  border: 1px solid var(--border-color);
  border-radius: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme,
.woocommerce-page .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  margin-bottom: 1rem;
}

.woocommerce .woocommerce-form-login .woocommerce-LostPassword.lost_password,
.woocommerce-page .woocommerce-form-login .woocommerce-LostPassword.lost_password {
  font-size: var(--font-size-14);
  position: absolute;
  bottom: 29%;
  right: 5%;
}
@media (max-width: 575.98px) {
  .woocommerce .woocommerce-form-login .woocommerce-LostPassword.lost_password,
  .woocommerce-page .woocommerce-form-login .woocommerce-LostPassword.lost_password {
    bottom: 25%;
  }
}

.woocommerce .woocommerce-form-login .woocommerce-LostPassword.lost_password a,
.woocommerce-page .woocommerce-form-login .woocommerce-LostPassword.lost_password a,
.woocommerce .woocommerce form.register .woocommerce-privacy-policy-text a,
.woocommerce-page .woocommerce form.register .woocommerce-privacy-policy-text a {
  text-decoration: none;
}

.woocommerce .woocommerce-form-login .woocommerce-LostPassword.lost_password a:hover,
.woocommerce-page .woocommerce-form-login .woocommerce-LostPassword.lost_password a:hover,
.woocommerce .woocommerce form.register .woocommerce-privacy-policy-text a:hover,
.woocommerce-page .woocommerce form.register .woocommerce-privacy-policy-text a:hover {
  color: var(--color);
}

.woocommerce .woocommerce form.register .woocommerce-privacy-policy-text,
.woocommerce-page .woocommerce form.register .woocommerce-privacy-policy-text {
  font-size: var(--font-size-10);
  margin-bottom: 1rem;
}

.woocommerce .woocommerce-MyAccount-content h3,
.woocommerce .woocommerce-order h3,
.woocommerce.woocommerce-order-received .woocommerce h3,
.woocommerce-page .woocommerce-MyAccount-content h3,
.woocommerce-page .woocommerce-order h3,
.woocommerce-page.woocommerce-order-received .woocommerce h3 {
  font-size: var(--font-size-18);
  width: 90%;
  margin-bottom: 1rem;
}

.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce-page .woocommerce-MyAccount-navigation {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .woocommerce .woocommerce-MyAccount-navigation,
  .woocommerce-page .woocommerce-MyAccount-navigation {
    padding-right: 2rem;
  }
}

.woocommerce .woocommerce-MyAccount-navigation ul,
.woocommerce-page .woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
}

.woocommerce .woocommerce-MyAccount-navigation ul li,
.woocommerce-page .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  position: relative;
  border-top: 1px solid var(--border-color);
}

.woocommerce .woocommerce-MyAccount-navigation ul li:first-child,
.woocommerce-page .woocommerce-MyAccount-navigation ul li:first-child {
  border-top: 0;
}

.woocommerce .woocommerce-MyAccount-navigation ul li a,
.woocommerce-page .woocommerce-MyAccount-navigation ul li a {
  color: var(--black);
  display: block;
  padding: .875rem;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-page .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: var(--gray);
}

.woocommerce .woocommerce-MyAccount-navigation ul li a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li a:before {
  font-family: var(--icon-family);
  font-size: var(--font-size-18);
  font-weight: var(--font-bold);
  margin-right: 0.5rem;
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f3fd";
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f07a";
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
  content: "\f381";
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f279";
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f007";
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f2f5";
}

.woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before,
.woocommerce-page .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before {
  content: "\f09d";
}

.woocommerce .woocommerce-MyAccount-content a:not(.button),
.woocommerce-page .woocommerce-MyAccount-content a:not(.button) {
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce .woocommerce-MyAccount-content a:not(.button):hover,
.woocommerce-page .woocommerce-MyAccount-content a:not(.button):hover {
  color: var(--color);
}

.woocommerce-account .woocommerce-MyAccount-content .addresses address {
  font-style: normal;
  font-size: var(--font-size-14);
}

.woocommerce .addresses header.title a,
.woocommerce-page .addresses header.title a {
  text-indent: -9999px;
  position: relative;
  padding: 0.875rem 0.875rem 0;
  margin-top: 0.5rem;
}

.woocommerce .addresses header.title a:before,
.woocommerce-page .addresses header.title a:before {
  content: "\f044";
  display: inline-block;
  font-family: var(--icon-family);
  font-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  text-indent: 0;
}

.woocommerce-account .woocommerce-MyAccount-content form.edit-account .woocommerce-form-row span em {
  font-style: normal;
  font-size: var(--font-size-12);
}

.woocommerce-account .woocommerce-MyAccount-content form.edit-account fieldset {
  margin-top: 2rem;
  border: 1px solid var(--border-color);
}

.woocommerce-account .woocommerce-MyAccount-content form.edit-account fieldset legend {
  font-weight: var(--font-black);
  margin-bottom: 0.5rem;
}





/* ==========================================================================
   # Widgets
   ========================================================================== */


/* # Filter by Rating Widget ------------------------------------------------ */
.woocommerce .widget_rating_filter ul li,
.woocommerce-page .widget_rating_filter ul li {
  margin-bottom: 1rem;
}

.woocommerce .widget_rating_filter ul li:last-child,
.woocommerce-page .widget_rating_filter ul li:last-child {
  margin-bottom: 0;
}

.woocommerce .widget_rating_filter ul li a,
.woocommerce-page .widget_rating_filter ul li a {
  display: block;
  font-size: var(--font-size-14);
  text-align: right;
  line-height: 1;
}

.woocommerce .widget_rating_filter ul li .star-rating,
.woocommerce-page .widget_rating_filter ul li .star-rating {
  float: left;
  margin-top: 0;
}


/* # Filter by Attribute Widget --------------------------------------------- */
.woocommerce .widget_layered_nav select,
.woocommerce .widget_layered_nav_filters select,
.woocommerce-page .widget_layered_nav select,
.woocommerce-page .widget_layered_nav_filters select {
  width: 100%;
}

.woocommerce .widget_layered_nav ul li,
.woocommerce .widget_layered_nav_filters ul li,
.woocommerce-page .widget_layered_nav ul li,
.woocommerce-page .widget_layered_nav_filters ul li {
  font-size: var(--font-size-14);
  margin-bottom: .625rem;
}

.woocommerce .widget_layered_nav ul li span.count,
.woocommerce .widget_layered_nav_filters ul li span.count,
.woocommerce-page .widget_layered_nav ul li span.count,
.woocommerce-page .widget_layered_nav_filters ul li span.count {
  float: right;
}

.woocommerce .widget_layered_nav ul li:last-child,
.woocommerce .widget_layered_nav_filters ul li:last-child,
.woocommerce-page .widget_layered_nav ul li:last-child,
.woocommerce-page .widget_layered_nav_filters ul li:last-child {
  margin-bottom: 0;
}


/* # Price Filter Widget ---------------------------------------------------- */
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce-page .widget_price_filter .ui-slider .ui-slider-range {
  top: 0.5px;
  height: 4px;
  background-color: var(--black);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: var(--black);
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content,
.woocommerce-page .widget_price_filter .price_slider_wrapper .ui-widget-content {
  margin-top: 1.85rem;
  margin-bottom: 1.85rem;
  height: 4px;
  background-color: var(--border-color);
}

.woocommerce .widget_price_filter .price_slider_amount,
.woocommerce-page .widget_price_filter .price_slider_amount {
  font-size: var(--font-size-10);
  text-align: left;
  line-height: 1;
}

.woocommerce .widget_price_filter .price_slider_amount .price_label,
.woocommerce-page .widget_price_filter .price_slider_amount .price_label {
  color: var(--black);
  font-weight: var(--font-bold);
}

.woocommerce .widget_price_filter .price_slider_amount .button,
.woocommerce-page .widget_price_filter .price_slider_amount .button {
  float: right;
  color: var(--black);
  text-transform: capitalize;
  padding: 0 !important;
  min-width: unset;
  background-color: transparent;
}


/* # Cart Widget ------------------------------------------------------------ */
.woocommerce .widget_shopping_cart ul.cart_list li,
.woocommerce .widget_shopping_cart ul.product_list_widget li,
.woocommerce-page .widget_shopping_cart ul.cart_list li,
.woocommerce-page .widget_shopping_cart ul.product_list_widget li {
  font-size: var(--font-size-14);
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.woocommerce .widget_shopping_cart .cart_list li.empty,
.woocommerce-page .widget_shopping_cart .cart_list li.empty {
  text-align: center;
  padding-left: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce-page .widget_shopping_cart .total {
  border-top: 0;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  border-radius: 10rem;
  width: 50px;
}

.woocommerce aside.widget-area .widget_shopping_cart .total strong,
.woocommerce aside.widget-area.widget_shopping_cart .total strong {
  text-transform: uppercase;
  font-size: var(--font-size-12);
}

.woocommerce aside.widget-area .widget_shopping_cart .total .woocommerce-Price-amount.amount,
.woocommerce aside.widget-area.widget_shopping_cart .total .woocommerce-Price-amount.amount {
  font-size: var(--font-size-14);
  float: right;
}

.woocommerce aside.widget-area .widget_shopping_cart .woocommerce-mini-cart__buttons a.button,
.woocommerce aside.widget-area.widget_shopping_cart .woocommerce-mini-cart__buttons a.button {
  display: block !important;
  border-radius: 0 !important;
}

.woocommerce aside.widget-area .widget_shopping_cart .woocommerce-mini-cart__buttons a.button.wc-forward.wp-element-button,
.woocommerce aside.widget-area.widget_shopping_cart .woocommerce-mini-cart__buttons a.button.wc-forward.wp-element-button {
  margin-bottom: .75rem;
  color: var(--black) !important;
  background-color: var(--dark-gray) !important;
}

.woocommerce aside.widget-area .widget_shopping_cart .woocommerce-mini-cart__buttons a.button.wc-forward.wp-element-button:hover,
.woocommerce aside.widget-area.widget_shopping_cart .woocommerce-mini-cart__buttons a.button.wc-forward.wp-element-button:hover {
  color: var(--white) !important;
  background-color: var(--color) !important;
}

.woocommerce aside.widget-area .widget_shopping_cart .woocommerce-mini-cart__buttons a.button.checkout.wc-forward.wp-element-button,
.woocommerce aside.widget-area.widget_shopping_cart .woocommerce-mini-cart__buttons a.button.checkout.wc-forward.wp-element-button {
  margin-bottom: .75rem;
  color: var(--white) !important;
  background-color: var(--color) !important;
}

.woocommerce aside.widget-area .widget_shopping_cart .woocommerce-mini-cart__buttons a.button.checkout.wc-forward.wp-element-button:hover,
.woocommerce aside.widget-area.widget_shopping_cart .woocommerce-mini-cart__buttons a.button.checkout.wc-forward.wp-element-button:hover {
  opacity: .8;
}


/* # Filter by Categories Widget -------------------------------------------- */
.woocommerce .widget_product_categories select,
.woocommerce-page .widget_product_categories select {
  width: 100%;
}

.woocommerce .widget_product_categories ul li,
.woocommerce-page .widget_product_categories ul li {
  font-size: var(--font-size-14);
  margin-bottom: .625rem;
}

.woocommerce .widget_product_categories ul li span.count,
.woocommerce-page .widget_product_categories ul li span.count {
  float: right;
}

.woocommerce .widget_product_categories ul li:last-child,
.woocommerce-page .widget_product_categories ul li:last-child {
  margin-bottom: 0;
}

.woocommerce .widget_product_categories ul.children,
.woocommerce .widget_product_categories ul.sub-menu,
.woocommerce-page .widget_product_categories ul.children,
.woocommerce-page .widget_product_categories ul.sub-menu {
  padding-left: .625rem;
}


/* # Product Search Widget -------------------------------------------------- */
.woocommerce aside.widget-area .widget_product_search form.woocommerce-product-search button[type="submit"] {
  padding: 0 !important;
  min-width: unset;
  color: transparent;
  background-color: transparent;
  visibility: hidden;
  position: absolute;
  right: 14%;
  top: 3.2%;
}

.woocommerce aside.widget-area .widget_product_search form.woocommerce-product-search button[type="submit"]::before {
  content: "\f002";
  color: var(--black);
  font-family: var(--icon-family);
  font-size: var(--font-size-18);
  font-weight: var(--font-bold);
  position: absolute;
  visibility: visible;
  transform: scaleX(-1);
}

.woocommerce aside.widget-area .widget_product_search form.woocommerce-product-search input[type="search"]::-webkit-search-cancel-button {
  display: none;
}


/* # Tag Cloud Widget ------------------------------------------------------- */
.woocommerce .widget_product_tag_cloud a,
.woocommerce-page .widget_product_tag_cloud a {
  font-size: var(--font-size-14) !important;
  font-weight: var(--font-bold);
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.woocommerce .widget_product_tag_cloud a::before ,
.woocommerce-page .widget_product_tag_cloud a::before  {
  content: "\0023";
  margin-right: 0.1rem;
}

.woocommerce .widget_product_tag_cloud a:hover,
.woocommerce-page .widget_product_tag_cloud a:hover {
  color: var(--color);
}


/* # Products & Recently Viewed & Top Rated Widget -------------------------- */
.woocommerce .widget_products ul li,
.woocommerce .widget_recently_viewed_products ul li,
.woocommerce .widget_top_rated_products ul li,
.woocommerce-page .widget_products ul li,
.woocommerce-page .widget_recently_viewed_products ul li,
.woocommerce-page .widget_top_rated_products ul li {
  font-size: var(--font-size-14);
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.woocommerce .widget_products ul li .star-rating,
.woocommerce .widget_recently_viewed_products ul li .star-rating,
.woocommerce .widget_top_rated_products ul li .star-rating,
.woocommerce-page .widget_products ul li .star-rating,
.woocommerce-page .widget_recently_viewed_products ul li .star-rating,
.woocommerce-page .widget_top_rated_products ul li .star-rating {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.woocommerce .widget_products ul li .woocommerce-price-suffix,
.woocommerce .widget_recently_viewed_products ul li .woocommerce-price-suffix,
.woocommerce .widget_top_rated_products ul li .woocommerce-price-suffix,
.woocommerce-page .widget_products ul li .woocommerce-price-suffix,
.woocommerce-page .widget_recently_viewed_products ul li .woocommerce-price-suffix,
.woocommerce-page .widget_top_rated_products ul li .woocommerce-price-suffix {
  display: none;
}

.woocommerce .widget_products ul li:last-child,
.woocommerce .widget_recently_viewed_products ul li:last-child,
.woocommerce .widget_top_rated_products ul li:last-child,
.woocommerce-page .widget_products ul li:last-child,
.woocommerce-page .widget_recently_viewed_products ul li:last-child,
.woocommerce-page .widget_top_rated_products ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}





/* ==========================================================================
   # Misc
   ========================================================================== */


/* # Messages --------------------------------------------------------------- */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  color: var(--white);
  font-size: var(--font-size-14);
  border: none;
  border-radius: 10rem;
  background-color: var(--black) !important;
  width: fit-content;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-info a:focus {
  color: var(--color);
}

.woocommerce-info::before {
  content: "\f05a";
  font-family: var(--icon-family);
  font-weight: var(--font-bold);
  font-size: var(--font-size-16);
  line-height: 1.25;
}

.woocommerce-message a,
.woocommerce-info a {
  color: var(--color);
  text-decoration: none;
  margin-left: 0.5rem;
}

.woocommerce-message a:hover,
.woocommerce-info a:hover {
  color: var(--white);
}

.woocommerce-error::before {
  color: var(--red);
}

.woocommerce-message a.button,
.woocommerce-error li a.button {
  display: none !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  position: relative;
  color: var(--white);
  font-weight: var(--font-normal);
  line-height: inherit;
  padding: 0;
  margin-left: 0.5rem;
  background-color: transparent;
}

.woocommerce-info a.button:hover {
  color: var(--color) !important;
  background-color: transparent !important;
}

.woocommerce-info a.button::after {
  content: "\f061";
  font-family: var(--icon-family);
  font-weight: var(--font-bold);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -10%;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.woocommerce-info a.button:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}





/* # Custom CSS ------------------------------------------------------------- */
