.slider_categories_card {
  position: relative;
  height: 400px;
  border-radius: 40px;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: .25s;
}

.slider_categories_card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 5;
  transition: .25s;
}

.slider_categories_card h4 {
  position: absolute;
  z-index: 10;
  font-size: 26px;
  left: 16px;
  bottom: 70px;
  color: #fff;
  font-family: "Inter", sans-serif;
  max-width: 100%;
  transition: .25s;
  height: 95px;
}

.slider_categories_card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.75);
  z-index: 6;
  transition: .25s;
}

.slider_categories_card:hover::before {
  background: rgba(0,0,0,.55);
}

.slider_categories_card:hover img {
  transform: scale(1.25)
}

button.splide__arrow {
  opacity: 1;
  background: #ffab34;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0!important;
}

button.splide__arrow svg {
  fill: #fff;
}

/* button.splide__arrow:hover,
button.splide__arrow:active,
button.splide__arrow:focus {
  background: #402e32;
  border: none !important;
} */

.content_slider_prodcuts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.categories_slider_products ul {
  width: 100%;
  overflow-x: auto;
  display: flex !important;
  gap: 1.25rem;
  padding: 0;
  padding-bottom: 10px;
}

.categories_slider_products ul li {
  list-style: none;
}

.categories_slider_products ul li {
  padding: 5px 20px;
  border: 2px solid #402e32;
  border-radius: 15px;
  cursor: pointer;
  color: #402e32;
  transition: .25s;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
}

.categories_slider_products ul li:hover,
.categories_slider_products ul li.active {
  background: #402e32;
  color: #fff;
}

.container_slider_products {
  font-family: "Inter", sans-serif;
}

.categories_slider_products ul::-webkit-scrollbar {
  height: 10px;
}

.categories_slider_products ul::-webkit-scrollbar-thumb {
  height: 10px;
  transition: .25s;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}

.categories_slider_products ul:hover::-webkit-scrollbar-thumb {
background: #bfbfbf;
}


.body_slider_products {
  position: relative;
}

.card_slider_product {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem .75rem;
  transition: .25s;
  border-radius: 40px;
  background: #fff;
  margin: 1rem 0;
  box-shadow: 0px 5px 10px rgba(0,0,0,.125);
}


.head_card_slider_product {
  position: relative;
  height: 275px;
}

.head_card_slider_product a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.head_card_slider_product a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 252px;
}

.body_card_slider_product {display: flex;justify-content: center;align-items: center;flex-direction: column;gap: .75rem;position: relative;}

.body_card_slider_product h6 {font-size: 18px;display: flex;align-items: center;justify-content: center;flex-wrap: wrap;gap: .5rem;}

.body_card_slider_product * {
  margin: 0;
}

.head_card_slider_product a::before {
  content: '';
  transition: .25s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(
0deg,
hsl(0deg 95% 45%) 0%,
hsl(15deg 100% 46%) 11%,
hsl(21deg 100% 47%) 22%,
hsl(27deg 100% 48%) 33%,
hsl(31deg 100% 49%) 44%,
hsl(36deg 100% 50%) 56%,
hsl(41deg 100% 50%) 67%,
hsl(46deg 100% 50%) 78%,
hsl(50deg 100% 50%) 89%,
hsl(55deg 100% 50%) 100%
);
}

.body_card_slider_product h4 {
  flex: 1 0 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.body_card_slider_product h4 a {
  font-size: 16px;
  width: 100%;
  position: relative;
  text-align: center;
}

.body_card_slider_product > a {background: #ffab34;border: 2px solid #ffab34;border-radius: 15px;color: #402e32;padding: 10px 30px;transition: .25s;font-weight: 500;}

.body_card_slider_product a:hover {
  background: #fff;
  color: #402e32;
}

/* -- loader -- */
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader_slider_categories_products_woocommerce {
  background: rgba(0,0,0,.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
/* -- loader -- */

.emtpy_slider_products_for_woocommerce h4 {
font-size: 22px;
}

.emtpy_slider_products_for_woocommerce {
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.body_card_slider_product h6 p.no_incl {
  flex: 1 0 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.body_card_slider_product h6 span, .body_card_slider_product h6 span * {
  font-size: 16px;
}
.body_card_slider_product a.add_to_cart {
  margin-top: 8px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  color: #fff;
  position: relative;
}
button.splide__arrow.splide__arrow--prev {
  margin-left: -50px;
}
button.splide__arrow.splide__arrow--next {
  margin-right: -50px;
}
.icon_scroll_carousel_woo {
  display: none;
}
.icon_scroll_carousel_products_woo {
  display: none;
}
.body_card_slider_product h6 p.no_incl {
  font-weight: 600;
}
.body_card_slider_product h6 .woocommerce-Price-amount.amount {
  font-weight: 600;
  /* text-decoration: underline; */
}
.body_card_slider_product h6 span.regular_price_osteleria {
  color: #9f9698;
}
.slider_categories_card .view_more_categories {

  background-image: linear-gradient(90deg, var(--e-global-color-primary) 0%, var(--e-global-color-secondary) 100%);
  border-radius: 32px 32px 32px 32px;
  padding: 12px 36px 12px 36px;

  
  position: absolute;
  z-index: 10;
  bottom: 1.5rem;
  left: 1rem;
  font-size: 20px;
  font-weight: 600;
  color: #fff !important;
  transition: .25s;
}
.slider_categories_card .view_more_categories:hover {
  transform: scale(1.05);
  filter: hue-rotate(30deg) contrast(1.4);
}

.body_card_slider_product .add_to_cart.mbl {
  display: none;
}
.body_card_slider_product h6 > span:first-child * {
  font-size: 14px;
}
.body_card_slider_product h6 > span.woocommerce-Price-amount:not(regular_price_osteleria) * {
  font-size: 18px;
  font-weight: bold;
}
.lds-dual-ring {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.body_card_slider_product a.add_to_cart .min_loader_add_to_cart_button {
  position: absolute;
  background: #ffab34;
  width: calc(100% + 1.5px);
  height: calc(100% + 1.5px);
  left: 0;
  top: 0;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ------------ Responsive ------------------- */

@media(max-width: 1200px) and (min-width: 1025px){
  button.splide__arrow.splide__arrow--prev {
    margin-left: -30px;
  }
  
  button.splide__arrow.splide__arrow--next {
    margin-right: -30px;
  }
}
@media(max-width: 1024px){
  .body_card_slider_product a.add_to_cart {
    font-size: 15px;
  }
  .slider_categories_card h4 {
      font-size: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .slider_categories_card {
      height: 350px;
  }

  .emtpy_slider_products_for_woocommerce h4 {
    font-size: 18px;
  }

  .emtpy_slider_products_for_woocommerce {
    height: 80px;
  }

  .body_card_slider_product h6 {
    font-size: 16px;
  }
  .head_card_slider_product {
    height: 225px;
  }
  .body_card_slider_product h4 a {
      font-size: 16px;
  }
  .body_card_slider_product h4 {
    flex: 1 0 80px;
  }
  .head_card_slider_product a img {
      object-fit: contain;
  }
  .body_card_slider_product a.add_to_cart {
    margin-top: 8px;
    padding: 10px 20px;
  }
  button.splide__arrow.splide__arrow--prev {
    margin-left: -20px;
  }
  
  button.splide__arrow.splide__arrow--next {
    margin-right: -20px;
  }
}
@media(max-width: 767px){
  .body_card_slider_product .add_to_cart:not(.mbl) {
    display: none;
  }
  .body_card_slider_product .add_to_cart.mbl {
    display: flex;
    padding: 5px 20px;
  }
  .slider_categories_card .view_more_categories {
    font-size: 12px;
    padding: 7px 16px;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
  }
  .slider_categories_card h4 {
      font-size: 22px;
  }

  .slider_categories_card {height: 250px;}

  .emtpy_slider_products_for_woocommerce h4 {
    font-size: 16px;
  }

  .emtpy_slider_products_for_woocommerce {
    height: 60px;
  }

  .body_card_slider_product h6 {
    font-size: 14px;
  }

  .head_card_slider_product {
    height: 120px;
  }
  
  .card_slider_product {
    margin-top: 0;
  }

  .categories_slider_products ul li {
    font-size: 14px;
  }

  .categories_slider_products ul {
    padding-bottom: 0px;
  }
  
  .body_card_slider_product a {
    padding: 7px 15px;
  }

  .slider_categories_card h4{font-size: 18px;height: 70px;top: 50%;left: 50%;text-align: center;transform: translate(-50%, -50%);}
  .head_card_slider_product a img {
    max-height: 120px;
  }
  .body_card_slider_product h4 a {
      font-size: 14px;
  }
  .body_card_slider_product h6 {
      font-size: 12px;
      text-align: center;
      flex-direction: column;
  }
  .body_card_slider_product a {
      font-size: 12px;
      padding: .25rem .75rem;
  }
  .content_slider_prodcuts {
    gap: 1rem;
  }
  .body_card_slider_product h6 p.no_incl {
    font-size: 12px;
}
.body_card_slider_product h6 span, .body_card_slider_product h6 span * {
    font-size: 13px;
}

.body_card_slider_product h4 a {
    font-size: 13px;
}
.body_card_slider_product h4 {
  flex: 1 0 100px;
}
.body_card_slider_product {
    gap: .25rem;
}
.categories_slider_products ul li {
  font-size: 12px;
}
.categories_slider_products ul {
  gap: .75rem;
}
.body_card_slider_product a.add_to_cart i {
  margin-left: .5rem;
}
.body_card_slider_product a.add_to_cart {
  padding: .25rem .5rem;
}
.body_card_slider_product a.add_to_cart i {
  margin-left: .1rem;
  font-size: 12px;
}
.icon_scroll_carousel_woo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.icon_scroll_carousel_woo i {
  font-size: 2rem;
  color: #402e32;
}
.icon_scroll_carousel_products_woo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.icon_scroll_carousel_products_woo i {
  font-size: 2rem;
  color: #402e32;
}
.body_card_slider_product a.add_to_cart {
  font-size: 12px;
  gap: 8px;
}
.lds-dual-ring:after {
  margin: auto;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
}
}
@media(min-width: 1440px) {
  button.splide__arrow.splide__arrow--prev {
    margin-left: -100px;
  }
  
  button.splide__arrow.splide__arrow--next {
    margin-right: -100px;
  }
}
@media(max-width: 767px) and (min-width: 512px){
  .slider_categories_card h4 {
    font-size: 22px;
  }
}

















/* LISTADO DE ETIQUETAS */

.lista_etiquetas{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding-inline-start: 0px;
}

.lista_etiquetas li{
  display: block;
  flex: auto;
  border-radius: 40px;
  box-shadow: 0px 10px 30px 0px #2264DC44;
}

.lista_etiquetas li a{
  width: 100%;
} 

.lista_etiquetas .color-boton{
  filter: hue-rotate(60deg) contrast(1.4);
}



.lista_categorias{
  display: flex;
  flex-direction: column;
  gap: 10px 12px;
  padding-inline-start: 0px;
}

.lista_categorias li{
  display: block;
  flex: auto;
  border-radius: 40px;
  box-shadow: 0px 10px 30px 0px #2264DC44;
}

.lista_categorias li a{
  width: 100%;
} 

.lista_categorias .color-boton{
  filter: hue-rotate(60deg) contrast(1.4);
}





