/*
Theme Name: Dewploy Start

WooCommerce styles override
*/
/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}
table.shop_table_responsive tbody th {
  display: none;
}
table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}
table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  float: left;
}
table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}
table.shop_table_responsive tr td.product-remove::before {
  display: none;
}
table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none;
}
table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
}
/**
 * Products
 */
ul.products {
  margin: 0;
  padding: 0;
}
ul.products li.product {
  list-style: none;
  position: relative;
  margin-bottom: 2em;
}
ul.products li.product img {
  display: block;
}
ul.products li.product .button {
  display: block;
}

.--white {
  background-color: #fff;
}

/*
 * Shop Page
 */
.product-categories {
  margin-top: 150px !important;
}
.product-categories .product-categories__desc {
  margin-bottom: 35px !important;
}
.product-categories .elementor-element-product-category .elementor-widget-container .product-category-widget-card a {
  text-decoration: none;
}
.product-categories .elementor-element-product-category .elementor-widget-container .product-category-widget-card a p.product-category-widget-card__title {
  font-size: 25px;
}

/**
 * Product Category
 */
.category-products {
  margin-bottom: 150px;
}
.category-products h2.single__category--title {
  margin-top: 50px;
}
.category-products h2.single__category--title .single__category--title-color {
  color: #F39200;
}
.category-products .single__category--product {
  margin-top: 40px;
}
.category-products .single__category--product li {
  list-style-type: none;
  position: relative;
}
.category-products .single__category--product li a {
  text-decoration: none;
}
.category-products .single__category--product li a .onsale {
  position: absolute;
  z-index: 9999;
  left: 10px;
  top: 10px;
  background-color: #f00;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
}
.category-products .single__category--product li a img {
  width: 100%;
}
.category-products .single__category--product li a h2.woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0 0;
  line-height: normal;
}
.category-products .single__category--product li a .star-rating {
  display: none;
}
.category-products .single__category--product li a span.price {
  color: #F39200;
  font-size: 18px;
}
.category-products .single__category--product li a del {
  font-size: 20px;
  color: #F39200;
}
.category-products .single__category--product li a ins {
  background-color: #F39200;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 25px;
}
.category-products .single__category--product li a.product_type_simple {
  display: none;
}

.shop-hero {
  background-color: #ffffff;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 100px;
}

.shop-content {
  margin-top: 0;
}

@media screen and (min-width: 48em) {
  ul.products li.product {
    width: 33.33%;
    margin-right: 3.8%;
  }
  ul.products li.product.first {
    clear: both;
  }
  ul.products li.product.last {
    margin-right: 0;
  }
  ul.products.columns-1 li.product {
    float: none;
    width: 100%;
  }
  ul.products.columns-2 li.product {
    width: 50%;
  }
  ul.products.columns-3 li.product {
    width: 33.33%;
  }
  ul.products.columns-4 li.product {
    width: 25%;
  }
  ul.products.columns-5 li.product {
    width: 20%;
  }
  ul.products.columns-6 li.product {
    width: 16.66%;
  }
}
.product_image_wrapper {
  border-radius: 20px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  transition: all 1s ease;
  box-shadow: 0px 0px 31px -6px rgba(0, 0, 0, 0.69);
  position: relative;
}
.product_image_wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(1);
  mix-blend-mode: multiply;
  transition: all 1s ease;
}
.product_image_wrapper .product-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  transition: all 1s ease;
  opacity: 0;
}
.product_image_wrapper:hover {
  background-color: rgb(255, 179, 64);
}
.product_image_wrapper:hover img {
  filter: brightness(1.1);
}
.product_image_wrapper:hover .product-overlay {
  opacity: 1;
}

/**
 * Single product
 */
.single-product div.product {
  position: relative;
}
.single-product div.product .onsale {
  position: absolute;
  z-index: 999;
  top: 32px;
  left: 10px;
  background-color: rgb(255, 0, 0);
  padding: 7px 25px;
  color: #fff;
  border-radius: 20px;
}
.single-product div.product .woocommerce-product-gallery {
  position: relative;
  float: left;
  height: 100%;
  width: 100%;
  margin-bottom: 50px;
  /* Replace the default WooCommerce magnifier glass icon with a FontAwesome 4 icon */
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  font-size: 0; /* Hide the text content */
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
  content: "\f002"; /* FontAwesome 4 search icon Unicode */
  font-family: "FontAwesome"; /* FontAwesome 4 font family */
  font-size: 20px; /* Adjust font size as needed */
  position: absolute;
  top: 60px;
  right: 1em;
  display: block;
  z-index: 99;
  text-decoration: none;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  height: 100%;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  height: 577px;
  border-radius: 20px;
}
.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image .wp-post-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport {
  margin-bottom: 1em;
  height: 577px;
  border-radius: 20px;
}
.single-product div.product .woocommerce-product-gallery .flex-viewport img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.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-bottom: 10px;
}
.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: 50%;
}
.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: 33.33%;
}
.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: 25%;
}
.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: 20%;
}
.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 div.product .summary {
  margin-bottom: 50px;
  margin-left: 20px;
}
.single-product div.product .summary .product_title {
  margin-bottom: 0;
  font-size: 35px;
}
.single-product div.product .summary .woocommerce-product-rating .star-rating span::before {
  color: #F39200;
}
.single-product div.product .summary .woocommerce-product-rating .woocommerce-review-link {
  display: none;
}
.single-product div.product .summary .price {
  font-size: 30px;
}
.single-product div.product .summary .price del {
  font-size: 25px;
}
.single-product div.product .summary .price ins {
  font-size: 30px;
}
.single-product div.product .summary .woocommerce-product-details__short-description p {
  font-size: 20px;
  margin-bottom: 40px;
}
.single-product div.product .summary .cart {
  margin-bottom: 100px;
  gap: 10px;
}
.single-product div.product .summary .cart .quantity .input-text {
  height: 100%;
  width: 80px;
  background-color: #d7dadb;
  text-align: center;
}
.single-product div.product .summary .cart .single_add_to_cart_button {
  background-color: #F39200;
  color: #fff;
  padding: 15px 30px;
}
.single-product div.product .summary .product_meta {
  display: inline-grid;
  margin-top: 40px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 20px;
}
.single-product div.product .related ul li {
  width: 100%;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link {
  text-decoration: none;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link .onsale {
  top: 13px !important;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link .star-rating {
  display: none;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link .woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0 0;
  line-height: normal;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link .price {
  font-size: 20px;
  color: #F39200;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link .price del {
  font-size: 20px;
}
.single-product div.product .related ul li a.woocommerce-loop-product__link .price ins {
  font-size: 25px;
}
.single-product div.product .related ul li a.product_type_simple {
  display: none;
}
.single-product div.product .summary .price,
.single-product div.product .related .price {
  margin: 40px 0;
  color: #F39200;
}
.single-product div.product .summary .price ins,
.single-product div.product .related .price ins {
  background-color: #F39200;
  color: #fff;
  border-radius: 20px;
  padding: 5px 20px;
}

.stock:empty::before {
  display: none;
}
.stock.in-stock {
  color: #3bb905;
}
.stock.out-of-stock {
  color: #EA5B43;
}

@media screen and (max-width: 1024px) {
  .single-product div.product .summary {
    margin-left: 0;
  }
}
/**
 * Checkout
 */
.woocommerce-checkout .woocommerce {
  margin-bottom: 50px;
}
.woocommerce-checkout h3 {
  font-size: 1.6rem !important;
}
.woocommerce-checkout label {
  font-size: 20px !important;
  line-height: 2.3em !important;
  width: 100%;
}
.woocommerce-checkout input[type=text], .woocommerce-checkout input[type=email], .woocommerce-checkout input[type=tel], .woocommerce-checkout textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid grey;
  padding: 5px 10px;
}
.woocommerce-checkout #order_comments {
  height: 300px;
}
.woocommerce-checkout .select2-selection {
  height: 45px;
  display: flex;
  align-items: center;
  border-color: #d7cfcf !important;
}
.woocommerce-checkout .select2-selection__arrow {
  height: 45px !important;
}
.woocommerce-checkout .checkout_coupon {
  margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table {
  font-size: 1.2rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table th {
  font-size: 1.3rem;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
  padding-bottom: 20px;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td {
  padding: 5px 0 5px 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td a {
  text-decoration: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td img {
  border-radius: 20px;
}
.woocommerce-checkout .cart-subtotal {
  border-bottom: 1px solid black;
}
.woocommerce-checkout .cart-subtotal th {
  padding-top: 20px;
}
.woocommerce-checkout .order-total {
  color: #F39200;
  font-size: 1.35rem !important;
}
.woocommerce-checkout .order-total th {
  font-size: 1.35rem !important;
}
@media screen and (max-width: 425px) {
  .woocommerce-checkout .prod-name {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-checkout input[type=text], .woocommerce-checkout input[type=email], .woocommerce-checkout input[type=tel] {
    width: 85% !important;
  }
  .woocommerce-checkout .select2-container {
    width: 85% !important;
  }
  .woocommerce-checkout #coupon_code {
    width: 250px !important;
  }
}

.payment_methods {
  list-style-type: none;
  margin-bottom: 50px;
}
.payment_methods li {
  padding: 25px 0;
}
.payment_methods li:hover {
  cursor: pointer;
}
.payment_methods li img {
  height: 30px;
  margin-left: 10px;
}
.payment_methods li > label {
  width: auto;
}

#card_holder {
  max-width: 300px;
  padding: 5px 10px !important;
}

#cardtype {
  max-width: 300px;
  width: 100%;
  padding: 5px 10px !important;
  border-radius: 3px;
}

/**
 * Cart
 */
@media (max-width: 1400px) {
  .woocommerce-cart .actions .coupon {
    margin-bottom: 30px;
    text-align: left;
  }
  .woocommerce-cart .cart_item {
    padding-bottom: 50px;
  }
  .woocommerce-cart .product-subtotal {
    margin-bottom: 50px;
  }
  .woocommerce {
    margin-bottom: 100px;
  }
  .product-thumbnail {
    padding: 0 !important;
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .woocommerce-cart .woocommerce-notices-wrapper {
    flex-basis: 100%;
  }
  .woocommerce-cart .woocommerce-cart-form {
    flex: 1 0 calc(70% - 30px);
    background-color: #fff;
    margin-bottom: 50px;
  }
  .woocommerce-cart .cart-collaterals {
    flex: 1 0 calc(30% - 30px);
  }
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    padding: 30px 20px 50px;
    background-color: #f2f2f2;
  }
  .woocommerce-cart .actions .coupon {
    margin-bottom: 30px;
    text-align: left !important;
  }
  .woocommerce-cart button[name=update_cart],
  .woocommerce-cart button[name=apply_coupon],
  .woocommerce-cart input[type=text] {
    margin-top: 0 !important;
    width: auto !important;
  }
  .woocommerce-cart td.product-name {
    width: 250px;
  }
}
.woocommerce-cart label {
  font-size: 18px !important;
  line-height: 2.3em !important;
  text-align: left;
}
.woocommerce-cart input[type=text], .woocommerce-cart input[type=number] {
  padding: 10px;
  font-size: 18px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid grey;
}
.woocommerce-cart input[type=number] {
  width: 70px;
}
.woocommerce-cart button[name=apply_coupon],
.woocommerce-cart .checkout-button {
  color: white;
  width: 100%;
  margin-top: 1.6rem;
  font-size: 18px;
}
.woocommerce-cart button[name=update_cart]:disabled {
  background: #f2f2f2;
  padding: 17px 45px 15px 45px;
  border-radius: 5px;
  color: black;
  font-weight: 700;
  font-size: 18px;
}
.woocommerce-cart button[name=update_cart] {
  margin-top: 1.6rem;
  width: 100%;
  font-size: 18px;
}
.woocommerce-cart .actions {
  padding-top: 1.5rem;
}
.woocommerce-cart tr.cart_item {
  border-bottom: 1px solid #f2f2f2;
}
.woocommerce-cart thead {
  border-bottom: 1px solid #f2f2f2;
}
.woocommerce-cart td.product-thumbnail {
  width: 150px;
  padding: 20px;
}
.woocommerce-cart td.product-thumbnail img {
  border-radius: 20px;
}
.woocommerce-cart td.product-thumbnail::before {
  content: "" !important;
}
.woocommerce-cart td.product-name a {
  text-decoration: none;
}
.woocommerce-cart td.product-remove a {
  text-decoration: none;
  color: #F39200;
}
.woocommerce-cart .cart_totals h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.woocommerce-cart .cart_totals .cart-subtotal {
  border-bottom: 1px solid #bbb;
}
.woocommerce-cart .cart_totals tr th {
  background-color: #f2f2f2;
  padding: 13px 10px;
}
.woocommerce-cart .cart_totals a.checkout-button.button {
  display: inline-block;
  text-align: center;
  margin: 0;
  font-size: 18px;
}

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

/**
* Shop homepage
*/
.features.--orange {
  background-color: #F39200;
}

.intermezzo {
  min-height: 300px;
  background-size: cover;
  background-attachment: fixed;
  margin-bottom: 100px;
  background-position: center;
}
@media (min-width: 992px) {
  .intermezzo {
    min-height: 400px;
  }
}

.google-reviews {
  margin-bottom: 100px;
}

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

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

/**
 * Tabs
 */
.woocommerce-tabs {
  padding: 50px 16.5px;
}
.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0 50px 0 0;
  padding: 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.425);
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .woocommerce-tabs ul.tabs {
    flex-direction: row;
    margin-bottom: 50px;
  }
}
.woocommerce-tabs ul.tabs li {
  margin: 0;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .woocommerce-tabs ul.tabs li {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid #F39200;
  }
}
.woocommerce-tabs ul.tabs li a {
  padding: 1em 0;
  text-decoration: none;
}
.woocommerce-tabs .panel {
  margin: 0;
}
.woocommerce-tabs .panel h2 {
  font-size: 40px;
}
.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em;
}
.woocommerce-tabs .panel p {
  font-size: 20px;
}
.woocommerce-tabs .panel table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.woocommerce-tabs .panel table tr:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.woocommerce-tabs .panel table tr th {
  padding: 20px 0;
}
.woocommerce-tabs .panel table tr td {
  padding: 20px 0;
}
.woocommerce-tabs .panel table tr td p {
  margin: 0;
}
.woocommerce-tabs .panel .woocommerce-Reviews .woocommerce-noreviews {
  background-color: #F39200;
  color: #fff;
  border-radius: 20px;
  padding: 5px 15px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .commentlist li.review .comment_container img.avatar {
  width: 100px;
  margin-bottom: 15px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .commentlist li.review .comment_container .comment-text .star-rating span::before {
  color: #F39200;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-rating .rating {
  margin-bottom: 20px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-rating p.stars.selected a.active::before,
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-rating p.stars.selected a:not(.active)::before {
  color: #F39200;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-comment #comment {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-author #author {
  background-color: #f2f2f2;
  margin-left: 20px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-email #email {
  width: auto !important;
  background-color: #f2f2f2;
  margin-left: 20px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  width: 30px;
  height: 30px;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .comment-form-cookies-consent input[type=checkbox] {
  background-color: #F39200;
}
.woocommerce-tabs .panel .woocommerce-Reviews .comment-respond .comment-form .form-submit .submit {
  background-color: #F39200;
  color: #fff;
  padding: 15px 30px;
}

/**
 * Password strength meter
 */
.woocommerce-password-strength {
  text-align: right;
}
.woocommerce-password-strength.strong {
  color: #3bb905;
}
.woocommerce-password-strength.short {
  color: #EA5B43;
}
.woocommerce-password-strength.bad {
  color: #EA5B43;
}
.woocommerce-password-strength.good {
  color: #22A8E1;
}

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

.required {
  color: #f00;
}

/**
 * Notices
 */
/* MESSAGE CONTAINER */
.woocommerce-notices-wrapper {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* GENERAL MESSAGES */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  list-style: none;
  margin: 0 0 50px 0;
  width: 100%;
  padding: 20px 30px 20px 90px;
  overflow: hidden;
  border: 0;
  background-color: #d7d7d7;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  font-family: "FontAwesome";
  font-weight: 900;
  color: #fff;
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  width: 70px;
  height: calc(100% + 2px);
  line-height: 1;
  margin: 0 20px 0 0;
  text-align: center;
}

/* INFO MESSAGES */
.woocommerce-info::before {
  content: "\f05a";
  background-color: #22A8E1;
}

/* SUCCESS MESSAGES */
.woocommerce-message::before {
  content: "\f058";
  background-color: #3bb905;
}

/* ERROR MESSAGES */
.woocommerce-error::before {
  content: "\f071";
  background-color: #EA5B43;
}

/*--! END OF WOOCOMMERCE MESSAGES !--*/
.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #22A8E1;
  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;
  }
}
@media screen and (max-width: 48em) {
  /**
   * Tabs
   */
  .woocommerce-tabs .panel {
    padding: 50px 0;
  }
}
.woocommerce-product-details__short-description {
  margin-bottom: 50px;
}
.woocommerce-product-details__short-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-product-details__short-description ul li {
  position: relative;
  padding-left: 30px;
}
.woocommerce-product-details__short-description ul li:before {
  content: "\f00c";
  color: green;
  display: block;
  margin-right: 15px;
  position: absolute;
  left: 0;
  font-family: "FontAwesome";
}

.wooheader {
  background-color: #F39200;
  padding: 20px 0;
  color: white;
  font-size: 0.9rem;
}
.wooheader *::-moz-selection {
  background: gray;
}
.wooheader *::selection {
  background: gray;
}
.wooheader a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.wooheader a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .wooheader {
    display: none;
  }
}
.wooheader i {
  margin-right: 5px;
  font-size: 1rem;
}

.cart-slide {
  background: #efefef;
  height: 100vh;
  width: 400px;
  position: fixed;
  z-index: 10;
  right: -400px;
  transition: all 0.3s ease;
  box-shadow: -7px 0px 28px 0px rgba(0, 0, 0, 0);
}
.cart-slide.--open {
  right: 0;
  box-shadow: -7px 0px 28px 0px rgba(0, 0, 0, 0.5);
}

.cart-slide {
  overflow-y: auto;
}
.cart-slide .mini-cart-header {
  padding: 15px;
  background-color: #bbbbbb;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cart-slide .mini-cart-header:hover {
  background-color: #aaaaaa;
}
.cart-slide .mini-cart-header:hover .close-cart-button .--arrow {
  padding-right: 10px;
}
.cart-slide .close-cart-button .--arrow {
  transition: all 0.15s ease;
}
.cart-slide .cart-slide-content {
  padding: 15px;
  font-size: 0.8rem;
}
.cart-slide .remove {
  width: 20px;
  height: 20px;
  text-decoration: none;
  background-color: transparent;
  color: orange;
  border-radius: 50px;
  display: inline-block !important;
  vertical-align: middle;
  line-height: 1;
  padding-left: 5px;
  margin-left: -50px;
  position: absolute;
  right: 30px;
}
@media (min-width: 992px) {
  .cart-slide .remove {
    opacity: 0;
  }
}
.cart-slide .remove:hover {
  color: red;
}
.cart-slide .cart_list {
  margin: 15px 0 50px;
  padding: 0;
  list-style-type: none;
}
.cart-slide .cart_list li {
  margin: 30px 0;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.cart-slide .cart_list li a {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  text-decoration: none;
}
.cart-slide .cart_list li img {
  max-width: 80px;
  border-radius: 5px;
  display: block;
  margin-bottom: 10px;
  border: 1px solid gray;
}
.cart-slide .cart_list li:hover .remove {
  opacity: 1;
}
.cart-slide .cart_list .quantity {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  color: #F39200;
}
.cart-slide .total {
  text-align: center;
}
.cart-slide .total .amount {
  color: #F39200;
  font-weight: bold;
}
.cart-slide .buttons {
  display: flex;
  flex-flow: column;
  row-gap: 15px;
}
.cart-slide .button {
  width: 100%;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  background: lightgray;
  border-radius: 5px;
  font-weight: bold;
}
.cart-slide .button.checkout {
  background-color: #F39200;
  color: #ffffff;
}
.cart-slide .button:hover {
  opacity: 0.7;
  color: #222222;
}

/**
 * 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: #222222;
  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: #222222;
}
.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%;
}

.woocommerce {
  background-color: #f2f2f2;
}

.woocommerce-cart .woocommerce, .woocommerce-checkout .woocommerce {
  background-color: #ffffff;
}/*# sourceMappingURL=woocommerce.css.map */