/*
    Theme Name: Panuts Website
    Theme URI: https://test.panuts.com/
    Description: Panuts wordpress & woocommerce theme
    Version: 1.0.0
    Author: José Carlos Quichiz Santome <josec.quichiz@gmail.com>
    Author URI: https://twitter.com/pedepepe
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
}

body.page-template-default:not(.home) main {
  margin: 3em auto;
}

h1 {
  max-width: 1140px;
  margin: auto;
  color: #444;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 5px;
}

#tab-description > h2:first-child {
  display: none;
}


a {
  text-decoration: none;
  color: #9e2126;
}

p,
ul,
ol {
  color: #444;
  line-height: 1.3em;
  font-size: 15px;
}

::selection {
  background: #9e2126;
  color: #fff;
}

::-moz-selection {
  background: #9e2126;
  color: #fff;
}

.elementor-image a,
.elementor-image a img {
  width: 100%;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-prev::before,
.slick-next::before {
  font-family: FontAwesome;
  font-size: 45px;
  line-height: 1;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-next::before {
  content: "\f105";
}

.slick-prev::before {
  content: "\f104";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 1;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 40px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
  filter: alpha(opacity=25);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  color: #fff;
}

.preloader {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: fixed;
  width: 100vw;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}

.preloader svg {
  display: block;
  width: 86px;
  height: auto;
}

.preloader svg path {
  stroke-dasharray: 138;
  -webkit-animation: preloader 3.2s ease-in-out infinite;
  -moz-animation: preloader 3.2s ease-in-out infinite;
  -o-animation: preloader 3.2s ease-in-out infinite;
  -ms-animation: preloader 3.2s ease-in-out infinite;
  animation: preloader 3.2s ease-in-out infinite;
}

@-moz-keyframes preloader {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: -138;
  }

  10% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  40% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 0;
  }

  80% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  90% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }

  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }
}

@-webkit-keyframes preloader {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: -138;
  }

  10% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  40% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 0;
  }

  80% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  90% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }

  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }
}

@-o-keyframes preloader {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: -138;
  }

  10% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  40% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 0;
  }

  80% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  90% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }

  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }
}

@keyframes preloader {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: -138;
  }

  10% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  40% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 0;
  }

  80% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }

  90% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }

  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    stroke-dashoffset: 138;
  }
}

#home-carousel.elementor-hero-carousel .sizer {
  padding-bottom: 59.1787439614%;
}

#home-carousel.elementor-hero-carousel [data-elementorplugin="hero-carousel"] {
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#home-carousel.elementor-hero-carousel
  [data-elementorplugin="hero-carousel"]
  div {
  display: block;
  width: 100%;
  height: 100%;
}

#home-carousel.elementor-hero-carousel
  [data-elementorplugin="hero-carousel"]
  img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-title h2 {
  font-family: "Oswald", sans-serif;
  position: relative;
  color: #080705;
}

.main-title h2 span {
  position: relative;
  display: inline-block;
  z-index: 2;
  padding: 0 1em;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  #home-carousel.elementor-hero-carousel .sizer {
    padding-bottom: 31.25%;
  }
}

.woocommerce-loop-product__title {
  display: block;
  line-height: 1.22em;
  height: 4.2em;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #444;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 490px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.9em !important;
  }

  .woocommerce-loop-product__title {
    line-height: 1em;
    height: 4.6em;
  }
}

.product .attachment-woocommerce_thumbnail {
  object-fit: contain !important;
  height: 215px !important;
}

.woocommerce ul.products li.product .price {
  font-size: 1em;
  color: #444;
}

.woocommerce ul.products li.product .price ins .amount:before {
  content: "\00a0 ";
}

.woocommerce-Price-amount {
  color: #000;
  font-size: 1em;
}

@media screen and (max-width: 400px) {
  .woocommerce-Price-amount {
    font-size: 0.85em;
  }
}

.woocommerce div.product p.price ins {
  font-weight: 500;
  font-size: 1.3em !important;
}

.woocommerce div.product .product_title {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  text-align: center;
}

.lista-productos nav.woocommerce-pagination {
  display: none;
}

.add_to_cart_button,
.button.product_type_simple,
.button.product_type_variable {
  border: 1px #9e2126 solid !important;
  background-color: #9e2126;
  font-weight: 500 !important;
  color: #fff;
  border-radius: 0 !important;
  font-family: "Roboto", sans-serif;
  -webkit-transition: background-color 0.2s, color 0.2s, -webkit-transform 0.2s;
  -moz-transition: background-color 0.2s, color 0.2s, -moz-transform 0.2s;
  -o-transition: background-color 0.2s, color 0.2s, -o-transform 0.2s;
  -ms-transition: background-color 0.2s, color 0.2s, -ms-transform 0.2s;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  margin-top: 5px !important;
}

.add_to_cart_button:hover,
.button.product_type_simple:hover,
.button.product_type_variable:hover {
  background-color: #fff !important;
  color: #9e2126 !important;
}

.add_to_cart_button:active,
.button.product_type_simple:active,
.button.product_type_variable:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.woocommerce span.price ins {
  text-decoration: none;
}

.product.outofstock
  img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}

.sold-out-overlay {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.88);
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -ms-transition: background 0.3s;
  transition: background 0.3s;
  text-align: center;
  left: 1em;
  right: 1em;
  padding: 0.5em 0 0.7em;
  bottom: 50%;
  text-transform: uppercase;
  font-weight: 700;
}

.product.instock img.country,
.product.instock img.attachment-woocommerce_thumbnail,
.product.instock .woocommerce-loop-product__title,
.product.instock .star-rating,
.product.instock .price,
.product.instock a.button {
  opacity: 1 !important;
  -ms-filter: none !important;
  filter: none !important;
}

.product.outofstock img.country,
.product.outofstock .woocommerce-loop-product__title,
.product.outofstock .star-rating,
.product.outofstock .price,
.product.outofstock a.button {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}

.outofstock img.country,
.outofstock .wp-post-image,
.outofstock .product_title,
.outofstock .woocommerce-product-attributes,
.outofstock .product_meta,
.outofstock .price {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}

.woocommerce span.onsale {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 0.8em;
  text-align: center;
  line-height: 25px;
  background-color: #9e2126;
  color: #fff;
  text-transform: uppercase;
  z-index: 8;
  min-height: 0;
  min-width: 0;
  padding: 0 5px !important;
  border-radius: 0;
  left: 455px;
  top: 7px;
}

.woocommerce ul.products li.product .onsale {
  margin: 0;
  border-radius: 0;
}

.prod-image span.onsale {
  top: 0;
  right: 20px;
  left: unset;
  line-height: 35px;
  padding: 0 10px !important;
}

img.country {
  position: absolute;
  width: 1.8em !important;
  bottom: 55px;
  left: 6px;
  top: 0px !important;
  z-index: 8;
  right: 515px !important;
}

.woocommerce-info,
.woocommerce-message {
  border-top-color: #9e2126;
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: #9e2126;
}

.woocommerce-breadcrumb a {
  position: relative;
  color: #888;
  display: inline-block;
  line-height: 1.8em;
  padding: 0 0.4em;
  margin-left: 0.1em;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 400;
}

.woocommerce-breadcrumb a:before {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  left: -3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: skew(-5deg);
  -moz-transform: skew(-5deg);
  -o-transform: skew(-5deg);
  -ms-transform: skew(-5deg);
  transform: skew(-5deg);
}

.woocommerce-breadcrumb a:first-child::before {
  content: "";
}

.woocommerce-breadcrumb span {
  position: relative;
  color: #888;
  display: inline-block;
  line-height: 1.8em;
  padding: 0 0.4em;
  margin-left: 0.1em;
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 400;
  display: none;
}

.woocommerce-breadcrumb span:before {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  left: -3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: skew(-5deg);
  -moz-transform: skew(-5deg);
  -o-transform: skew(-5deg);
  -ms-transform: skew(-5deg);
  transform: skew(-5deg);
}

@media screen and (max-width: 400px) {
  .woocommerce-breadcrumb a {
    line-height: 1em;
    font-size: 0.75rem;
  }

  .woocommerce-breadcrumb span {
    line-height: 1em;
    font-size: 0.75rem;
  }
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

.woocommerce-page #primary {
  max-width: 1140px;
  margin: 3em auto;
  padding: 10px;
}

article .woocommerce {
  max-width: 1140px;
  margin: auto;
  padding: 10px;
}

.woocommerce-form h2 {
  margin-top: 0;
}

.woocommerce p.stars a {
  color: #9e2126;
}

.woocommerce .star-rating::before {
  color: #9e2126;
}

.woocommerce form .form-row textarea,
.woocommerce input[type="email"],
.woocommerce input[type="number"],
.woocommerce input[type="password"],
.woocommerce input[type="reset"],
.woocommerce input[type="tel"],
.woocommerce input[type="text"],
.woocommerce input[type="url"],
.woocommerce textarea,
.woocommerce-page form .form-row textarea,
.woocommerce-page input[type="email"],
.woocommerce-page input[type="number"],
.woocommerce-page input[type="password"],
.woocommerce-page input[type="reset"],
.woocommerce-page input[type="date"],
.woocommerce-page input[type="tel"],
.woocommerce-page input[type="text"],
.woocommerce-page input[type="url"],
.woocommerce-page textarea {
  border-color: #ddd;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
  color: #666;
  padding: 0.75em;
  height: auto;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#billing_postcode {
  border-width: 0;
  padding: 0.75em 0;
}

.woocommerce-page input[type="date"] {
  padding: 0.61em;
}

.woocommerce form .form-row label {
  font-weight: 600;
  font-size: 14px;
}

.woocommerce form .form-row select {
  padding: 0.75em;
}

.woocommerce .select2-container .select2-selection--single,
.woocommerce select,
.woocommerce-page .select2-container .select2-selection--single,
.woocommerce-page select {
  padding: 0.75em;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.woocommerce
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 50%;
  width: 1.7em;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0;
}

.woocommerce table.shop_attributes td {
  font-style: normal;
  text-align: left;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #fff !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 0;
  left: 0;
  border-radius: 0;
  background: #9e2126;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  border-bottom: 1px solid #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0 !important;
  background-color: #ededed !important;
  margin-right: 10px;
}

.woocommerce-tabs h2 {
  
}

.woocommerce-checkout #payment {
  background-color: transparent;
}

.woocommerce table.shop_table td {
  font-size: 15px;
}

.order-total .woocommerce-Price-amount {
  font-weight: bold;
}

#argmc-skip-login {
  display: none !important;
}

body.woocommerce-order-received .breadcrumb {
  display: none;
}

.wc-bacs-bank-details strong {
  font-weight: 400;
}

.woocommerce form .form-row.woocommerce-validated input.input-text {
  border-color: #444;
}

.woocommerce form .form-row.woocommerce-validated select {
  border-color: #444;
}

.woocommerce-order {
  max-width: 900px;
  margin: auto;
  padding: 10px;
  font-size: 0.9rem;
}

.woocommerce-order ul {
  padding-left: 10px;
}

.woocommerce ul.order_details {
  margin: 0 0 1.3em;
}

.woocommerce ul.order_details li {
  padding-bottom: 10px;
}

.woocommerce ul.order_details li strong {
  font-size: 15px;
}

.swal-button {
  background-color: #9e2126;
}

.swal-button:hover {
  background-color: #080705 !important;
}

.swal-footer {
  text-align: center;
}

.swal-text {
  text-align: justify;
}

.greeting {
  color: #fff;
  font-size: 16px;
  line-height: 1em;
  padding: 0px 10px;
}

a.woocommerce-button.button.pay {
  display: none;
}

.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation-link {
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 0.5em 1em;
  color: #9e2126;
  text-decoration: none;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  background-color: #fbfbfb;
  color: #3a3a3a;
}

.woocommerce-Address address {
  font-style: normal;
  font-size: 15px;
  color: #444;
  padding-left: 10px;
}

.woocommerce button.button,
.woocommerce table.my_account_orders .button,
.woocommerce a.button {
  background-color: #9e2126;
  color: #fff;
  border-radius: 2px;
  padding: 10px 20px;
  -webkit-transition: background-color 0.2s, color 0.2s, -webkit-transform 0.2s;
  -moz-transition: background-color 0.2s, color 0.2s, -moz-transform 0.2s;
  -o-transition: background-color 0.2s, color 0.2s, -o-transform 0.2s;
  -ms-transition: background-color 0.2s, color 0.2s, -ms-transform 0.2s;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.woocommerce button.button:hover,
.woocommerce table.my_account_orders .button:hover,
.woocommerce a.button:hover {
  background-color: #333;
  color: #fff;
}

.woocommerce table.my_account_orders .woocommerce-Price-amount {
  font-size: 1.05em;
  font-weight: 700;
}

.woocommerce-EditAccountForm fieldset {
  margin: 16px 0;
}

.woocommerce-EditAccountForm fieldset legend {
  color: #444;
  font-size: 14px;
  font-weight: 600;
}

.cart-quarantine {
  font-size: 1em;
  font-weight: 600;
  text-align: justify;
  color: #444;
  padding: 0 30px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background-color: #9e2126;
  font-size: 16px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #333;
}

.woocommerce a.remove {
  border: 0;
  font-weight: 400;
  font-size: 18px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 21px;
  border-radius: 100%;
  color: #ccc !important;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.woocommerce a.remove:hover {
  text-decoration: none;
  background-color: transparent;
  color: #9e2126 !important;
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  color: #fff;
}

.woocommerce table.cart td.actions .button,
.woocommerce-page #content table.cart td.actions .button,
.woocommerce-page table.cart td.actions .button {
  margin-left: 0;
}

#boton-emptycart {
  margin-right: 5px !important;
  font-size: 1.2em;
}

.woocommerce-cart-form__contents .woocommerce-Price-amount,
.woocommerce-cart-form__contents a {
  font-size: 15px;
  font-weight: 700;
}

.woocommerce-cart-form__contents .woocommerce-Price-amount {
  color: #444;
}

.cart-subtotal .woocommerce-Price-amount {
  font-size: 1.02em;
  font-weight: 700;
}

.jet-remove-all-filters__button {
  display: none;
}

.elementor-widget-container h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

.elementor-column-wrap ul {
  color: #444;
}

header#main-header {
  background-color: #9e2126;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -o-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  padding: 0.6em 0.7em;
  -webkit-box-shadow: 0 2px 10px -3px rgba(8, 7, 5, 0.3);
  box-shadow: 0 2px 10px -3px rgba(8, 7, 5, 0.3);
  margin-bottom: 2px;
  position: relative;
  z-index: 9999;
}

header#main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
}

header#main-header button[data-trigger] {
  color: #fff;
  font-size: 1.4em;
  background: none;
  border: none;
}

header#main-header img.logo-img {
  height: 45px;
  width: auto;
  max-width: 110px !important;
}

header#main-header img.icon-img {
  height: 35px;
  width: auto;
  padding-left: 0px;
}

header#main-header img.icon-img-mobile {
  height: 35px;
  width: auto;
  margin: 8px 8px 0 0;
}

header#main-header img.icon-header-img {
  height: 45px;
  width: auto;
}

header#main-header .gap1,
header#main-header .gap2 {
  display: none;
}

header#main-header nav.nav {
  position: fixed;
  display: block;
  top: 0;
  height: 100%;
  width: 80%;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.6s;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -ms-transition: -ms-transform 0.6s;
  transition: transform 0.6s;
  background-color: #9e2126;
  padding: 1em;
  overflow: auto;
}

header#main-header nav.nav.website {
  display: none;
  left: 0;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -o-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

header#main-header nav.nav.website a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 7px 0;
}

header#main-header nav.nav.products {
  left: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

header#main-header nav.nav.products li.logo {
  display: none;
}

header#main-header nav.nav.products li.icon {
  display: none;
}

header#main-header nav.nav.products ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

header#main-header nav.nav.products a {
  display: block;
  font-size: 1em;
  padding: 0.8em 1.1em;
  border-radius: 0.3em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5em;
  font-weight: 400;
  width: 100%;
  font-size: 1em;
  -webkit-transition: background-color 0.2s, -webkit-transform 0.2s;
  -moz-transition: background-color 0.2s, -moz-transform 0.2s;
  -o-transition: background-color 0.2s, -o-transform 0.2s;
  -ms-transition: background-color 0.2s, -ms-transform 0.2s;
  transition: background-color 0.2s, transform 0.2s;
}

header#main-header nav.nav.products a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

header#main-header nav.nav.products a:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

header#main-header nav.nav.products .menu-mobile a {
  text-align: left;
  position: relative;
}

header#main-header nav.nav.products .menu-mobile li {
  position: relative;
}

header#main-header
  nav.nav.products
  .menu-mobile
  li
  span[data-toggle="dropdown"] {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  width: 50px;
  text-align: center;
  line-height: 3;
  background-color: #fff;
  border-top-right-radius: 4.5px;
  border-bottom-right-radius: 4.5px;
  display: block;
  cursor: pointer;
}

header#main-header
  nav.nav.products
  .menu-mobile
  li
  span[data-toggle="dropdown"]
  i {
  display: block;
  line-height: 3.5;
  height: 100%;
}

header#main-header
  nav.nav.products
  .menu-mobile
  li
  span[data-toggle="dropdown"]:hover {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

header#main-header nav.nav.products .menu-mobile .btngroup {
  position: relative;
  color: #333;
}

header#main-header nav.nav.products .submenu {
  display: none;
}

header#main-header nav.nav.products li i.fas {
  display: none;
}

header#main-header nav.nav p.title {
  font-size: 1.4em;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  text-align: center;
  font-family: "Oswald", sans-serif;
  margin: 0 0 1em 0;
}

header#main-header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0);
  width: 0%;
  height: 0%;
  -webkit-transition: background-color 0.6s;
  -moz-transition: background-color 0.6s;
  -o-transition: background-color 0.6s;
  -ms-transition: background-color 0.6s;
  transition: background-color 0.6s;
}

header#main-header.open-nav-website .overlay,
header#main-header.open-nav-products .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}

header#main-header.closing-nav-website .overlay,
header#main-header.closing-nav-products .overlay {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
}

header#main-header.open-nav-website nav.nav.website {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

header#main-header.open-nav-products nav.nav.products {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.dropdown .submenu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  display: block !important;
}

.dropdown .show {
  display: block !important;
  max-height: 9999px;
  -webkit-transition: max-height 1s ease-in-out;
  -moz-transition: max-height 1s ease-in-out;
  -o-transition: max-height 1s ease-in-out;
  -ms-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
  height: auto;
}

.dropdown .hide {
  max-height: 0;
  -webkit-transition: max-height 0.6s ease-out;
  -moz-transition: max-height 0.6s ease-out;
  -o-transition: max-height 0.6s ease-out;
  -ms-transition: max-height 0.6s ease-out;
  transition: max-height 0.6s ease-out;
  height: 0;
}

.menu-mobile .submenu .categories {
  padding-left: 2rem;
}

.dropdown i.open::before {
  content: "\f077";
}

.dropdown i.close::before {
  content: "\f078";
}

.break {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  height: 0;
}

@media (min-width: 567px) {
  .vblock {
    display: block !important;
  }
}

.dark-backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background-color: #212121;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  display: none;
}

.mostrar {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  width: 100%;
  height: auto;
}

.tab {
  float: left;
  background-color: #333;
  width: 20%;
}

.tab li {
  border-right: 1px solid #444;
  float: left;
  list-style: none outside none;
  padding-left: 5px;
  padding-right: 5px;
  width: auto;
}

.tab button {
  display: block;
  background-color: inherit;
  color: #fff;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
}

.tab-atributo {
  padding-right: 0;
  -webkit-flex-basis: 20%;
  flex-basis: 20%;
}

.tab-atributo h3 {
  margin: 5px 0 5px 50px;
}

.tab-atributo ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block !important;
}

.tab-atributo li {
  font-size: 15px;
}

.tab button:hover {
  background-color: #9e2126;
}

.tab button.active {
  background-color: #9e2126;
}

.tab-categoria {
  float: left;
  padding: 10px 50px;
  width: 80%;
  border-left: none;
  height: 500px;
  display: none;
}

.tab-categoria:nth-child(2) {
  display: block;
}

.cat-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
}

.tab-categoria h2,
.tab-categoria h3 {
  font-family: "Oswald", sans-serif;
  color: #9e2126;
  font-weight: 400;
}

.tab-categoria h2 {
  margin-left: -5px !important;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

nav.breadcrumb {
  max-width: 1140px;
  margin: auto;
  padding: 10px 5px 35px;
  color: #888;
  font-size: 0.9rem;
}

nav.breadcrumb a {
  color: #888;
}

.dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
  background-color: #fff !important;
  border-radius: 25px !important;
  z-index: 0;
}

@media screen and (max-width: 836px) {
  .logo-wrapper{
    padding: 0 0 0 40px;
  }

  .menu-desktop {
    display: none;
  }
  #promobar{
    display: none !important;
  }
  #promobar_sr{
    display: none !important;
  }
  .banner-home-delivery{
    display: none;
  }
  .solo_por_hoy{
    transform: translateX(-25em) !important;
  }
  .single-product .onsale {
    left: 290px !important;
}
.single-product .wt-related-products .onsale {
  left: 81px !important;
}
  .responsive_tab{
    width: 190%;
    transform: translateX(-80%);
   }
   .tablet-badge{
    left: -355px !important;

  }
  img.country{
    right: 355px !important;
  }
}

@media screen and (min-width: 836px) {

  .buttongroup{
    display: none !important;
  }
  
  .countdown-wrap1{
    display: none !important;
  }
 

  #promobar1{
    display: none !important;
  }

  .banner-responsive-delivery{
    display: none;
  }

  header#main-header {
    display: grid;
    grid-template-columns: calc(50vw - 570px) 220px 1fr calc(50vw - 570px);
    grid-template-rows: auto auto;
    grid-template-areas: "gap1 logo menu gap2" "products products products products";
    padding: 0;
  }

  header#main-header img.icon-img-mobile {
    display: none;
  }

  header#main-header button[data-trigger] {
    display: none;
  }

  header#main-header nav.nav {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative !important;
    top: initial !important;
    left: initial !important;
    right: initial !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    width: 100% !important;
    max-width: initial !important;
    height: auto !important;
  }

  header#main-header nav.nav ul.menu-mobile {
    display: none !important;
  }

  header#main-header nav.nav p.title {
    display: none;
  }

  header#main-header nav.nav li i.fas {
    display: inline !important;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    color: #9e2126;
  }

  header#main-header nav.nav .search__wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 5px 1em 0;
  }

  header#main-header nav.nav .search__wrapper label {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    width: 100%;
    padding: 0.55em;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    position: relative;
    border-radius: 56789px;
  }

  header#main-header nav.nav .search__wrapper input {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-family: "Roboto", sans-serif;
  }

  header#main-header nav.nav .search__wrapper i.fas {
    font-size: 1.2em;
    margin: 0 0.8em;
  }

  header#main-header .gap1 {
    display: block;
    grid-area: gap1;
  }

  header#main-header .gap2 {
    display: block;
    grid-area: gap2;
  }

  header#main-header .logo-wrapper {
    grid-area: logo;
    padding: 1em;
  }

  header#main-header nav.nav.website {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    grid-area: menu;
    background-color: transparent;
  }

  header#main-header nav.nav.products {
    grid-area: products;
    background-color: #fff;
    width: 100% !important;
    padding: 1em 0;
    overflow: visible;
  }

  header#main-header nav.nav.products ul {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 1140px;
    width: 100%;
    margin: auto;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
  }

  header#main-header nav.nav.products ul li .submenu {
    display: block !important;
    position: absolute;
    top: calc(100% + 1em);
    left: 0;
    width: 0;
    height: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-1em);
    -moz-transform: translateY(-1em);
    -o-transform: translateY(-1em);
    -ms-transform: translateY(-1em);
    transform: translateY(-1em);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -o-transition: -o-transform 0.2s, opacity 0.2s;
    -ms-transition: -ms-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
  }

  header#main-header nav.nav.products ul li .submenu:before {
    content: "";
    display: block;
    bottom: 100%;
    width: 100%;
    left: 0;
    height: 1em;
    background-color: transparent;
    position: absolute;
  }

  header#main-header nav.nav.products ul li .submenu h2 {
    text-transform: uppercase;
    margin: 12px 0;
    font-size: 1.5em;
    position: relative;
    text-align: left;
  }

  header#main-header nav.nav.products ul li .submenu .tab-atributo a.atributo {
    color: #444;
    text-transform: capitalize;
    font-weight: 400;
    background-color: transparent;
    text-align: left;
    font-size: 1em;
    margin: 2px 14px;
    position: relative;
    padding: 4px 39px;
  }

  header#main-header
    nav.nav.products
    ul
    li
    .submenu
    .tab-atributo
    a.atributo:hover {
    color: #9e2126;
  }

  header#main-header
    nav.nav.products
    ul
    li
    .submenu
    .tab-atributo
    a.atributo:active {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }

  header#main-header nav.nav.products ul li .submenu .categories {
    display: block;
    margin-top: 1.2em;
    text-align: center;
  }

  header#main-header
    nav.nav.products
    ul
    li
    .submenu
    .categories
    .subcat-wrapper {
    display: inline-block;
    margin-right: 0.5em;
  }

  header#main-header nav.nav.products ul li .submenu .categories a.subcat {
    display: block;
    border-radius: 4px;
    background-color: #9e2126;
    color: #fff;
    font-size: 0.8em;
    padding-right: 1em;
  }

  header#main-header
    nav.nav.products
    ul
    li
    .submenu
    .categories
    a.subcat:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 0.3em;
    height: 0.3em;
    background-color: #fff;
    border-radius: 0.3em;
    margin: 0 0.6em 0 0.4em;
  }

  header#main-header nav.nav.products ul li:hover .submenu,
  header#main-header nav.nav.products ul li.debug .submenu {
    -webkit-box-shadow: 0 2px 10px -3px #080705;
    box-shadow: 0 2px 10px -3px #080705;
    width: 100%;
    height: auto;
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    overflow: visible;
  }

  header#main-header nav.nav.products ul a {
    background-color: rgba(8, 7, 5, 0);
    color: #444;
    font-size: 14px;
    font-weight: 500;
    margin: -17px 2px;
    position: relative;
    z-index: 4;
    padding: 0.6em 0.4em;
    text-transform: capitalize;
  }

  header#main-header nav.nav.products ul a:hover {
    background-color: rgba(8, 7, 5, 0.05);
  }

  header#main-header nav.nav.products ul a:active {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }

  header#main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 10;
  }

  header#main-header.sticky li.logo {
    display: block !important;
  }

  header#main-header.sticky li.logo a {
    padding: 0 1em !important;
    background: none !important;
  }

  header#main-header.sticky li.logo img {
    margin-top: 0.3em;
    width: auto;
    height: 2em;
  }

  header#main-header.sticky li.icon {
    display: block !important;
  }

  header#main-header.sticky li.icon a {
    padding: 0 1em !important;
    background: none !important;
  }

  header#main-header.sticky li.icon img {
    margin-top: 0.41em;
    width: auto;
    height: 35px;
  }

  header#main-header.sticky .logo-wrapper,
  header#main-header.sticky .website.nav {
    display: none;
  }

  .smob {
    display: none;
  }

  .icons__wrapper {
    padding-left: 90px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 1.5em;
  }

  .icons__wrapper i {
    padding-left: 20px;
  }
}

nav.products ul.menu-desktop::before {
  display: none;
}

@media screen and (max-width: 735px) {
  .responsive_tab{
    transform: translateX(0);
  }
  header#main-header {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0 !important;
  }

  nav.nav ul.menu-desktop {
    display: none !important;
  }

  .smob {
    padding: 5px 1.1em 0;
    width: 100% !important;
    clear: both;
  }

  .smob label {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    width: 100%;
    padding: 0.55em;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #fff;
    position: relative;
    border-radius: 56789px;
  }

  .smob input {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-family: "Roboto", sans-serif;
  }

  .smob i.fas {
    font-size: 1.2em;
    margin: 0 0.8em;
  }
}

footer {
  margin-top: 24px;
  padding-top: 24px;
  background-color: #201f1d;
}

footer h3,
footer h4 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #fff;
  text-decoration: underline;
  margin: 8px 0;
  font-size: 1.3em;
}

footer p {
  color: #fff;
  line-height: 1.8em;
}

footer .container {
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  width: 100%;
  max-width: 1140px;
  margin: auto;
}

footer .column {
  padding: 24px;
}

footer .copyright {
  color: #fff;
  text-align: center;
  border-top: 1px solid #404040;
}

footer .beverages-law {
  font-weight: 500;
  font-size: 1.1em;
  line-height: 1.8em;
  text-transform: uppercase;
  margin: 1em 0;
}

footer img {
  display: block;
  width: 100%;
  max-width: 88px !important;
  margin-bottom: 12px;
}

footer ul {
  margin: 12px 0 0 0;
  list-style: none;
  padding: 0;
}

footer ul li {
  color: #fff;
  font-size: 0.95em;
  margin-bottom: 8px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer ul li a:hover {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

footer ul.social li {
  display: inline-block;
  font-weight: 300;
}

footer ul.social li a {
  display: block;
  font-size: 1.2em;
  margin-right: 8px;
  line-height: 1em;
}

footer ul#cards li {
  display: inline-block;
  margin-right: 3px;
}

footer ul#cards li img {
  display: block;
  max-width: 52px !important;
  height: auto;
  width: auto;
}

@media screen and (min-width: 736px) {
  
  footer .beverages-law {
    font-size: 1.4em;
  }

  footer > .container {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-justify-content: space-between;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.woo_amc_open {
  z-index: 10000;
  cursor: pointer;
}

.woo_amc_open.right-sticky {
  position: sticky;
  right: 30px;
  top: 30px;
}

.woo_amc_open.right-top {
  position: absolute;
  right: 30px;
  top: 30px;
}

.woo_amc_open.left-top {
  position: absolute;
  left: 30px;
  top: 30px;
}

.woo_amc_open.right-top-fixed {
  position: fixed;
  right: 30px;
  top: 30px;
}

.woo_amc_open.left-top-fixed {
  position: fixed;
  left: 30px;
  top: 30px;
}

.woo_amc_open.right-bottom-fixed {
  position: fixed;
  right: 30px;
  bottom: 30px;
}

.woo_amc_open.left-bottom-fixed {
  position: fixed;
  left: 30px;
  bottom: 30px;
}

.woo_amc_open_count {
  width: 30px;
  height: 30px;
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 20px;
  line-height: 30px;
  text-align: center;
  font-size: 17px;
  overflow: hidden;
  background-color: black;
}

.woo_amc_open_active .woo_amc_open_count {
  display: block;
}

.woo_amc_open_image {
  display: flex;
  /* width: 60px;
    height: 60px; */
  align-items: center;
  justify-content: center;
}

.woo_amc_open_image svg {
  width: 50px;
  max-height: 100%;
}

.woo_amc_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.woo_amc_bg.woo_amc_show {
  visibility: visible;
  opacity: 1;
}

.woo_amc_bg.woo_amc_show:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.woo_amc_head_title {
  font-family: "Oswald", sans-serif;
}

.woo_amc_container_side .woo_amc_center {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}

.woo_amc_head {
  position: relative;
  display: flex;
  align-items: center;
  height: 55px;
}

.woo_amc_close {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -6px;
  cursor: pointer;
  width: 15px;
  height: 15px;
}

.woo_amc_close:hover {
  opacity: 0.7;
}

.woo_amc_close svg {
  display: block;
}

.woo_amc_footer {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.woo_amc_footer:hover {
  opacity: 0.8;
}

.woo_amc_flex {
  display: flex;
  align-items: center;
}

.woo_amc_footer_w50 {
  width: 50%;
}

.woo_amc_footer .woo_amc_flex {
  height: 90px;
}

.woo_amc_footer_lines {
  padding-left: 15px;
}

.woo_amc_footer_link {
  padding-right: 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: right;
}

.woo_amc_footer_lines .woo_amc_label,
.woo_amc_footer_lines .woo_amc_value {
  display: inline-block;
}

.woo_amc_value .woocommerce-Price-amount {
  color: #ffffff;
}

.woo_amc_footer_lines .woo_amc_value {
  margin-left: 15px;
}

.woo_amc_container_wrap_center {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  display: none;
  z-index: 999999;
}

.woo_amc_container_wrap_center .woo_amc_bg {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  position: absolute;
}

.woo_amc_container_center {
  margin: 0 auto;
  max-width: 647px;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.woo_amc_container_center .woo_amc_container {
  position: relative;
}

.woo_amc_container_center .woo_amc_items_wrap {
  padding-bottom: 110px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.woo_amc_container_center .woo_amc_center {
  margin: 0 auto;
}

.woo_amc_container_wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 999999;
}

.woo_amc_container_wrap_right {
  right: 0;
}

.woo_amc_container_wrap_left {
  left: 0;
}

.woo_amc_container_wrap.woo_amc_show {
  width: 380px;
}

.woo_amc_container_side {
  width: 380px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.woo_amc_items_scroll {
  position: absolute;
  left: 0;
  right: 0;
  top: 75px;
  bottom: 110px;
}

.woo_amc_container_wrap_right .ps__rail-y {
  left: 0;
}

.woo_amc_items_wrap {
  position: relative;
}

.woo_amc_item_wrap {
  position: relative;
  -webkit-transition: 0;
  -moz-transition: 0;
  -ms-transition: 0;
  -o-transition: 0;
  transition: 0;
}

.woo_amc_item_wrap + .woo_amc_item_wrap {
  margin-top: 20px;
}

.woo_amc_items_wrap_loading .woo_amc_item_wrap {
  opacity: 0.5;
}

.woo_amc_item {
  position: relative;
}

.woo_amc_item_img {
  float: left;
  width: 70px;
  display: block;
  transition: 0.3s;
}

.woo_amc_item_img:hover {
  opacity: 0.8;
}

.woo_amc_item_img img {
  max-width: 100%;
  height: auto !important;
}

.woo_amc_item_content {
  margin-left: 85px;
}

.woo_amc_item_title {
  line-height: 150%;
  padding-right: 30px !important;
}

.woo_amc_item_title a {
  text-decoration: none;
}

.woo_amc_item_title a:hover {
  opacity: 0.7;
}

.woo_amc_item_price_wrap,
.woo_amc_item_dop {
  margin-top: 5px;
}

.woo_amc_item_price_label {
  display: inline-block;
}

.woo_amc_item_delete {
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.woo_amc_item_delete:hover {
  opacity: 0.7;
}

.woo_amc_item_delete svg {
  display: block;
  width: 15px;
  height: 15px;
}

.woo_amc_item_quanity_wrap {
  margin-top: 10px !important;
  font-size: 0 !important;
}

.woo_amc_item_quanity_minus,
.woo_amc_item_quanity_plus {
  display: inline-block !important;
  width: 15px !important;
  height: 15px !important;
  vertical-align: top !important;
  cursor: pointer !important;
  padding-top: 2px !important;
}

.woo_amc_item_quanity_minus:hover,
.woo_amc_item_quanity_plus:hover {
  opacity: 0.7 !important;
}

.woo_amc_item_quanity_minus svg,
.woo_amc_item_quanity_plus svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
}

input.woo_amc_item_quanity {
  margin: 0 !important;
  padding: 0 !important;
  width: 30px !important;
  height: 20px !important;
  margin-left: 10px !important;
  margin-right: 10px !important;
  border: none !important;
  background: 0 0 !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  vertical-align: top !important;
  outline: 0 !important;
  border: 0 !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  text-align: center !important;
}

.woo_amc_item_quanity_plus {
}

.woo_amc_item_total_price {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 100%;
}

.woo_amc_item_total_price .woocommerce-Price-amount {
  color: #333333;
  font-weight: 500;
}

.woo_amc_item_price_wrap {
  text-align: right;
}

.woo_amc_item_price_wrap del,
.woo_amc_item_price_wrap ins {
  display: inline-block;
  margin-left: 3px;
}

.woo_amc_clear {
  clear: both;
}

.woo_amc_items_loading {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  min-height: 64px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  visibility: hidden;
}

.woo_amc_items_wrap_loading .woo_amc_items_loading {
  visibility: visible;
}

.woo_amc_items_wrap_loading .lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.woo_amc_items_wrap_loading .lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}

.woo_amc_items_wrap_loading .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.woo_amc_items_wrap_loading .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

.woo_amc_open_count {
  width: 20px;
  height: 20px;
  right: -7px;
  top: -10px;
  line-height: 20px;
  font-size: 12px;
  color: #fafafa;
}

.woo_amc_container_side .woo_amc_center {
  max-width: 90% !important;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .woo_amc_container_center {
    padding-top: 0;
    padding-bottom: 0;
  }
  .onsale.perc {
    text-indent: -45px;
    left: 330px ;
  }

  .woocommerce span.onsale {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    text-align: center;
    line-height: 25px;
    background-color: #9e2126;
    color: #fff;
    text-transform: uppercase;
    z-index: 8;
    min-height: 0;
    min-width: 0;
    padding: 0 5px !important;
    border-radius: 0;
    left: 350px;
    top: 7px;
  }
}

@media (max-width: 380px) {
  .woo_amc_container_wrap.woo_amc_show,
  .woo_amc_container_side {
    width: 100%;
  }

  .woo_amc_container_center .woo_amc_items_wrap {
    padding-right: 15px;
    padding-left: 15px;
  }

  .woocommerce span.onsale {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    text-align: center;
    line-height: 25px;
    background-color: #9e2126;
    color: #fff;
    text-transform: uppercase;
    z-index: 8;
    min-height: 0;
    min-width: 0;
    padding: 0 5px !important;
    border-radius: 0;
    left: 310px;
    top: 7px;
  }
}

@media (max-width: 360px) {
  .woocommerce span.onsale {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    text-align: center;
    line-height: 25px;
    background-color: #9e2126;
    color: #fff;
    text-transform: uppercase;
    z-index: 8;
    min-height: 0;
    min-width: 0;
    padding: 0 5px !important;
    border-radius: 0;
    left: 295px;
    top: 7px;
  }
}
.tablet{
  margin: 7px;
}

@media (min-width: 736px) {
  .buttongroup {
    transform: translateX(30em);
    display: flex;
    width: -webkit-fill-available;
  }

  .icons__wrapper {
    align-items: center;
  }
}

@media (max-width: 736px) {

  header#main-header img.icon-img {
    padding-left: 0px;
  }
}

@media (max-width: 751px) {
  .elementor-55
    .elementor-element.elementor-element-28eb8ae
    > .elementor-container {
    min-height: 0px !important;
  }
}

.woo_amc_footer:hover {
  opacity: 1 !important;
  background: #201f1d;
}

.header {
  z-index: 10 !important;
}

#ajaxsearchliteres1 {
  z-index: 20 !important;
}

.smob {
  z-index: 0;
}

.underlined {
  position: relative;
}

.underlined:before {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(0rem) translateX(-50%);
}

.v-line {
  border-left: solid #f1f1f0;
  height: 43px;
  left: 50%;
}

.space {
  transform: translateX(-8px);
}

.v-line-desktop {
  border-right: solid #f1f1f0;
}

.menu-desktop li.onback:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background: transparent;
  position: absolute;
}

/* New badge in archive page */
.ct-woo-card-extra.new-badge {
  position: absolute;
  background: #9e2126;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 10px;
  padding: 5px;
  right: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  top: 35px;
}

/*Solo por hoy badge*/
.ct-woo-card-extra.new-badge-hoy  {
  position: absolute;
  background: #9e2126;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 58%;
  font-size: 11px;
  padding: 7px;
  right: 18px;
  z-index: 2;
  display: inline-table;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  top: 57px;
  line-height: 10px;
}

/* New badge in single product page page */
.itsnew {
  background: #9e2126;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  margin-top: -30px;
  float: right;
  top: 15px;
  transform: translateX(-40.5em);
}
/* Solo POR HOY badge pagina de producto*/
.solo_por_hoy {
  background: #9e2126;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  margin-top: -30px;
  float: right;
  top: 15px;
  transform: translateX(-38em);
}

/*Zuccardi badge in archive page*/
#badge-shop-title {
  height: 42px;
  width: 72px;
  top: 23px;
  position: absolute;
  left: 60px;
  margin: -20px;
}

/*Zuccardi badge in single product page*/
#badge-single-product-page {
  height: 41px;
  width: 150px;
  top: 24px;
  position: relative;
  left: -521px;
  margin: -20px;
}

/*Porcentaje de descuento*/

.onsale.perc {
  top: 16px;
  left: 0px;
}

#boton-landing a {
  background-color: #9e2126;
}

/*Titulo de Resultado de busqueda:""*/

.woocommerce-products-header__title {
  /* display: none; */
}

/*sweet alert stykle para btn panuts*/
.swal2-styled.swal2-confirm {
  background-color: #9e2126 !important;
}

.btn-success {
  color: #fff;
  background-color: #9e2126 !important;
  border-color: #9e2126 !important;
}

.btn-sweet {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  margin: 0 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
  border-color: #9e2126 !important;
}

/*cupones descuento*/

.woocommerce table.shop_table .product-subtotal s,
.woocommerce table.shop_table .product-total > s {
  font-size: 0.95em;
  font-weight: normal;
  margin: 0px !important;
  opacity: 0.7;
}
.woocommerce table.shop_table .product-subtotal s,
.woocommerce table.shop_table .product-subtotal > span,
.woocommerce table.shop_table .product-total s,
.woocommerce table.shop_table .product-total > span {
  line-height: 1.4;
  margin: 5px;
}
.woocommerce table.shop_table .product-subtotal > span,
.woocommerce table.shop_table .product-total > span {
  font-weight: bold;
}
.discount {
  position: relative;
  display: block;
}
.discount > * {
  display: inline-block;
}
.coupon-code {
  padding: 1px 4px 0px;
  border: 1px solid #ddd;
  line-height: 1.5;
  background: #fbf2e5;
  margin-right: 4px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: bold !important;
  border-radius: 4px;
  opacity: 0.8;
}
@media screen and (max-width: 1694px){
  #promobar_legacy{
		
		padding: 10px 18% 5px !important ;
		width: 100% !important;
	}
}

@media screen and (max-width: 1545px){
  #promobar_legacy{
		
		padding: 10px 16% 5px !important;
		
	}
}

@media screen and (max-width: 1380px){
  #promobar_legacy{
		
		padding: 10px 10.5% 5px !important;
		
	}
}

@media screen and (max-width: 1330px){
  #promobar_legacy{
		padding: 10px 9% 5px !important;
	}
}

@media screen and (max-width: 1280px){
  #promobar_legacy{
		padding: 10px 9% 5px !important;
	}
}

@media screen and (max-width: 751px){
  #argmc-next{
    top: -46px;
  }
  #argmc-prev{
    top: 46px;
  }
}

@media screen and (max-width: 480px) {
  .coupon-code {
    display: none;
  }
  #promobar1{
    display:flex;
    margin: -2px;
    padding: 14px 0% 7px;
    color: #9e2126;
    border-top: 2px #9e2126 solid;
    text-align: center;
    align-items: center;
    font-size: 12px;
    margin-left: 15px;
    }
    #promobar-product{
      width: 125% !important;
     }
}
@media screen and (max-width: 428px) {  /*iphone 13 pro max*/
  #badge-single-product-page{
    top: -420px;
    left: 65px !important;

  }
  img.country{
    right: 375px !important;
  }
}

@media screen and (max-width: 415px) {
  img.country{
    right: 360px !important;
  }
  #badge-single-product-page{
    top: -395px;
    left: 70px !important;

  }
  #promobar1{
    display:flex;
    margin: -2px;
    padding: 14px 0% 7px;
    color: #9e2126;
    border-top: 2px #9e2126 solid;
    text-align: center;
    align-items: center;
    font-size: 12px;
    margin-left: 15px;
    }
    .solo_por_hoy{
      transform: translateX(-23.6em) !important;
    }
    img.country {
      right: 345px;
    }
    #promobar-product{
      width: 145% !important;
     }
}

@media screen and (max-width: 395px) {
  img.country{
    right: 340px !important;
  }

  #promobar1{
    display:flex;
    margin: -2px;
    padding: 14px 0% 7px;
    color: #9e2126;
    border-top: 2px #9e2126 solid;
    text-align: center;
    align-items: center;
    font-size: 11px;
    margin-left: 15px;
    }

    #promobar0{
      line-height: 1.5em !important;
    }
  .onsale {
    left: 330px;
  }
}
@media screen and (max-width: 376px) { /*iphone 11 pro*/
  #badge-single-product-page{
    top: -375px;
    left: 50px !important;

  }
  img.country{
    right: 330px !important;
  }
}

@media screen and (max-width: 360px){   /*Resolution z-flip3*/
  #badge-single-product-page{
    top: -355px;
    left: 50px !important;
    
  }
  img.country{
    right: 315px !important;
  }
  #promobar1{
    display:flex;
    margin: -2px;
    padding: 14px 0% 7px;
    color: #9e2126;
    border-top: 2px #9e2126 solid;
    text-align: center;
    align-items: center;
    font-size: 10px;
    margin-left: 15px;
    }
    img.country {
      right: 300px;
    }
    .onsale.perc {
      left: 300px ;
    }
    #promobar-product{
      width: 160% !important;
     }
}

/*stylos para la pagina de bienvenisa en web, post registro de nuevo usuario*/

.texto_bienvenida {
  text-align: center;
  width: 90%;
  padding-left: 131px;
  font-size: 20px;
}

.titulo_bienvenida {
  text-align: center;
  font-size: 40px;
}

/*estilos para countdown*/
#countdown{
  overflow-y: hidden;
}
#promobar1{
	display:flex;
	margin: -2px;
	padding: 14px 0% 7px;
	color: #9e2126 !important;
	border-top: 2px #9e2126 solid;
	text-align: center;
	align-items: center;
	font-size: 15px;
	margin-left: 0px;
    width: 100%;
}
  div#clockdiv1 {
    text-align: center;
    font-family: Roboto;
    color: white;
    font-size: 17px;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 199px;
    margin-left: auto;
    margin-right: auto;
    text-align:center;
	border-radius:20px;
	background-color: #9e2126;
	line-height: 9px;
	height: 36px;
}



div#clockdiv1:before {
    width: 100%;
    margin-bottom: 21px;
}

.countdown-wrap1 {
    width: 100%;
    margin: 0px 0px 10px;
}

div#clockdiv1 &gt; div {
    font-size: 80px;
    width: 25%;
    color: red;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.days1, .hours1, .minutes1, .seconds1 {
	margin-bottom:20px;
	font-weight: 900;
	color: white;
}

span.time-label1 {
    font-size: 8px;
    color: white;
}

/*COntador en pagina de prodducto*/

#promobar-product{
  display: flex;
  margin: -2px auto;
  padding: 10px 2px 10px;
  color: #9e2126;
  border-top: 2px #9e2126 solid;
  text-align: center;
  align-items: center;
  justify-content: center; flex-direction: row;
  /*margin-left: 0px;*/
  width: 100%;
  
}

div#clockdiv-product {
  text-align: center;
  font-family: Roboto;
  color: white;
  font-size: 18px;
  letter-spacing: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  max-width: 60%;
  margin-left: -43%;
  
  text-align:center;
border-style:solid;
border-width:0px;
border-radius:20px;
background-color: #9e2126;
padding:10px 18px;
line-height: 11px;
}
	/*fin de contador pagina de producto*/

	
	#promobar{
		display: flex;
		margin: -2px auto;
		padding: 10px 2px 10px;
		color: #9e2126;
		border-top: 2px #9e2126 solid;
		text-align: center;
		align-items: center;
		justify-content: center; flex-direction: row;
    /*margin-left: 0px;*/
    width: 100%;
		
	}

  #promobar_sr{
		display: flex;
		margin: -2px auto;
		padding: 10px 5% 10px;
		color: #9e2126;
		border-top: 2px #9e2126 solid;
		text-align: center;
		align-items: center;
    justify-content: center; flex-direction: row;
    /*margin-left: 0px;*/
    width: 100%;
		
	}
	
div#clockdiv {
    text-align: center;
    font-family: Roboto;
    color: white;
    font-size: 18px;
    letter-spacing: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    max-width: 30%;
    margin-left: 16px;
    
    text-align:center;
	border-style:solid;
	border-width:0px;
	border-radius:20px;
	background-color: #9e2126;
	padding:10px 18px;
	line-height: 11px;
}

div#clockdiv:before {
    width: 100%;
    margin-bottom: 21px;
}

.countdown-wrap {
    width: 100%;
    white-space: nowrap;
}

div#clockdiv &gt; div {
    font-size: 80px;
    width: 25%;
    color: red;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.days, .hours, .minutes, .seconds {
	margin-bottom:20px;
	font-weight: 900;
	
}

span.time-label {
    font-size: 10px;
    color: white;
}

/*animación del counterdown timer*/

.marquee {
  width: 100%;
  height: 75px;
  overflow: hidden;
}

.marquee li {
  font-size: 16px;
}

.marquee__content {
  display: flex;
  list-style: none;
  animation: scrolling 24s linear infinite;
}

.marquee__item strong{
  color: #9e2126 !important;
}

.marquee__item {
  flex-shrink: 0;
}

.marquee__content strong{
  color: #9e2126 !important;
}



@keyframes scrolling {
  0% { transform: translateX(0%) }
  
  100% { transform: translateX(-100%) }
}

/* Fin de animación */

.cart-discount.coupon-citadelle10 tr {
  font-size: 0px!important;
}
.cart-discount.coupon-citadelle10 tr a {
  font-size: 1rem!important;
}

/*Pagination Css Blog */

.pagination{
  display: flex;
  text-align: center;
  padding: 0px 50%;
  margin: 0px;
}
.page-numbers  {
  display: inline-block;
  white-space: nowrap;
  padding: 0.4em;
  clear: both;
  border: 1px solid #d3ced2;
  border-right: 0;
  margin: 1px;
}
.next {
  border: 1px solid #d3ced2;
}

.menu-blog{
  box-sizing:border-box;
  margin:0;
  padding:0;
  }
                
.menu-blog li{
  list-style-type:none;
  position:relative;
  width:120px;
  }
              
.menu-blog li a{
  text-decoration:none;
  display:inline-block;
  padding:5px 10px;
  width:120px;
  height:30px;
  border:1px solid #f1f1f0;
  color:#000;
  background: color #f1f1f0;
  }
          
.menu-blog li a:hover{
  color:#000;
  background-color:#f1f1f0;
              
}
  
  .menu-blog  li ul{
    display:none !important;
    position:absolute;
    top:0px;
    left:120px;
 }
        
.menu-blog li:hover ul{display:block !important;}

/*css para ruc-footer*/

#ruc-footer{
  border-top: white solid 1px;
}

/*Animación del regalo*/

@keyframes resaltar-item-menu-animation {
  0% {
    transform: translatex(-15px) scale(1);
  }
  10% {
    transform:translatex(-15px) scale(1.2);
  }
  20% {
    transform: translatex(-15px) scale(1);
  }
  25% {
    transform: translatex(-15px) scale(1.05);
  }
  30% {
    transform: translatex(-15px) scale(1);
  }
  100% {
    transform: translatex(-15px) scale(1);
  }
}

.resaltar-item-menu {
 
  animation: resaltar-item-menu-animation 2s linear infinite;
}

/*Syle temporal*/

header#main-header nav.nav.products ul a {
  text-transform: none!important;
}
@media screen and (min-width: 736px) header nav.nav.products ul a .nav-highlight {
  /*background-color: rgba(8,7,5,.05)!important;*/
}
.woocommerce .star-rating span {
  color: #9E2126;
}


/* cintillo para navidad (banner superior en el home)*/
#promobar0 {
  display: block;
  color: #9e2126;
  margin: 0;
  padding: 0.4rem 0.8rem;
  border-top: 2px #9e2126 solid;
  text-align: center;
  line-height: 2.3em;
  display: block;
  text-decoration: none;
}

#promobar0:hover .xmas_coupon {
  color: #9e2126;
}

.tab-categoria {
  overflow: auto!important;
}

.tab button{
  padding: 8px 16px!important;
}


/*camapña de visanet*/

tr.cart-discount.coupon-visaexclusive td {
  font-size: 0px!important;
}
tr.cart-discount.coupon-visaexclusive td a {
  font-size: 1rem!important;
}

/*barra de condiciones en el footer*/

#condition{
    color: #222;
    background-color: #fff;
    padding: 0 0.4rem;
    line-height: 1.7rem;
    display: inline-block;
    border-radius: 0.2rem;
    text-decoration: none;
}

#button-condition{
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 0.4rem;
  padding: 0;
  line-height: 1em;
  border: none;
  background: none;
}

/*Modificaciones de estilos para la hamburguesa*/

.tab button{
  padding: 12px 16px!important;
}

#wpnb-bar{
  z-index: 8!important;
}

/* Ocultar boton de impresión en la web*/
input.button-shop-product[value="Imprimir"] {
  display: none;
}

.insignia-imagen{
  height: 17px !important;
  width: 17px !important;
  transform: translateY(3px);
}


.postid-2775 .single_add_to_cart_button,
.postid-2775 .quantity {
    display: none !important;
}

/* css para botón barril damm*/
.more_information{
background-color: #9E2126!important;
line-height: 1.5em;
border-radius: 2px;
padding: 10px 20px;
border: none;
font-weight: bold;
}

.more_information_shop_page{
  background-color: #9E2126!important;
  line-height: 1.5em;
  border-radius: 2px;
  padding: 7px 60px;
  border: none;
  transform: translateY(5px);
  }


  /* Ocultar la clase en la página de checkout */
body.woocommerce-checkout .wc-block-components-notice-banner {
  /*display: none !important;*/
}
.woocommerce-form-coupon-toggle{
  display: none;
}

 /*Notificación en el carrito*/ 
.wc-block-components-notice-banner.is-info{background-color:#f1f1f0 !important;border-color:#9e2126 !important}
.wc-block-components-notice-banner.is-info>svg{background-color: #9e2126 !important;} 

/*
.tagged_as {
  display: none;
}
*/

/*Style para blog*/
.panuts-blog-index .post-row {
  flex-direction: column !important;
}

/*style para terminos legales de campaña*/
.elementor-96 .elementor-element.elementor-element-f199585 > .elementor-element-populated {
  padding: 20px !important;
}

/*estilos para insignia de agotado en la página de producto*/

.agotado-badge {
  	position: absolute;
 		left: 0;
 		width: 100%;    
		top: 50%;
 		background-color: #ffffff;
 		color: #9e2126;
 		font-weight: 1000;
 		font-size: 26px;
 		text-align: center;     
 		padding: 11px 0;         
 		border-radius: 0;          
}

	.stock.out-of-stock{
			font-size: 120% !important;
			font-weight: bold;
			text-transform: uppercase;
	}

