* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  border: none;
}
body,
html {
  height: 100%;
  font-family: "Roboto Flex", sans-serif;
  color: #000000;
  font-size: 10px;
  font-weight: 400;
}

main {
  min-height: 600px;
}

*:focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) !important;
  outline: 0px !important;
  border-color: transparent;
}

:root {
  --naranja: #fe9115;
  --rojo: #d1151f;
  --rojo-20: #f6d0d2;
  --gris-claro: #f8f8f8;
  --gris-medio: #e9e9e9;
  --gris-oscuro: #a6a6a6;
  --negro: #000000;
  --blanco: #ffffff;
  --verde: #52c45b;
  --azul: #004aad;
  --azul-light: #7fa4d6;
  --azul-dark: #034091;
  --rojo-label: #e5210b;
  --azul-label: #0620e5;
  --rosa-label: #ee7568;
  --verde-label: #23e16c;
  --gris-label: #726e6e;
  --amarillo-label: #f2b407;
  --wiwaMain: #5e17eb;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100% !important;
  max-width: 1470px;
}

a:hover {
  color: inherit;
  cursor: pointer;
}
a.underline {
  text-decoration: underline;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

strong {
  color: inherit;
  font-size: inherit;
}
span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

p,
p *,
ul,
a,
table,
.form-group label,
.form-group input,
.form-group select,
.form-check label {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0px;
  line-height: normal;
}
.form-check label {
  margin-bottom: 5px;
}
.form-check-input {
  position: relative;
}
strong {
  font-weight: 700 !important;
}

.bg-gris-claro {
  background-color: var(--gris-claro);
}

.success,
.success-sel {
  background-color: #f3ffee;
}
.error,
.error-sel {
  background-color: #ffeff0;
}

.missat,
.missatgi {
  color: var(--rojo);
  font-size: 1.3rem !important;
}

.mb-6 {
  margin-bottom: 6rem;
}
.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.pb-9 {
  padding-bottom: 9rem;
}

.rojo {
  color: var(--rojo);
}
.rojo:hover {
  color: var(--rojo);
}
.gris-oscuro {
  color: var(--gris-oscuro);
}

.btn-3m {
  border: 1px solid var(--wiwaMain);
  border-radius: 5px;
  color: var(--wiwaMain);
  text-align: center;
  padding: 15px;
}
.btn-3m:hover {
  background-color: var(--wiwaMain);
  color: var(--blanco);
  text-decoration: none;
}

/* btn wiwa */
.btn-wiwa {
  display: inline-block;
  border-radius: 5px;
  color: var(--blanco);
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem 2rem;
  border: 1px solid var(--azul);
  background-color: var(--azul);
  transition: all 0.2s ease-in-out;
}
.btn-wiwa:hover {
  color: var(--azul);
  text-decoration: none;
  background-color: var(--gris-claro);
}
.btn-wiwa img {
  width: 13px;
  margin-top: -2px;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
}
.btn-wiwa:hover img {
  filter: brightness(0) invert(1);
}

/* btn wiwa secondary */
.btn-wiwa-sec {
  display: inline-block;
  border-radius: 5px;
  color: var(--blanco);
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem 2rem;
  border: 1px solid var(--azul-light);
  background-color: var(--azul-light);
  transition: all 0.2s ease-in-out;
}
.btn-wiwa-sec:hover {
  color: var(--azul);
  text-decoration: none;
  background-color: var(--gris-claro);
}
.btn-wiwa-sec img {
  width: 13px;
  margin-top: -2px;
  margin-right: 10px;
  transition: all 0.2s ease-in-out;
}
.btn-wiwa-sec:hover img {
  filter: brightness(0) invert(1);
}

/* btn add to cart */
.btn-addToCart {
  display: flex;
  gap: 1rem;
  width: 100%;
  color: var(--blanco);
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 5px;
  border: 1px solid var(--azul);
  background-color: var(--azul);
  transition: all 0.2s ease-in-out;
}
.btn-addToCart:hover,
.btn-addToCart:active,
.btn-addToCart:focus {
  color: var(--azul);
  text-decoration: none;
  background-color: var(--gris-claro);
}
.btn-addToCart::before {
  content: "";
  width: 3.5rem;
  background-image: url(../img/content/ico-cart-add.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn-addToCart:hover:before {
  filter: brightness(0) saturate(100%) invert(17%) sepia(92%) saturate(2313%) hue-rotate(203deg) brightness(98%) contrast(106%);
}

.divider {
  display: block;
  width: 12rem;
  height: 6px;
  background-color: var(--negro);
  margin: 1rem auto;
}
.alignLeft .divider {
  margin: 1rem 0;
}

.scrollup {
  width: 40px;
  height: 40px;
  opacity: 0.3;
  position: fixed;
  bottom: 50px;
  right: 160px;
  display: none;
  text-indent: -9999px;
  background: url(../img/content/icon_top.png) no-repeat;
  background-size: 40px 40px;
}

section {
  margin-bottom: 6rem;
}
.pb-6 {
  padding-bottom: 6rem;
}

.formWrapper {
  background-color: var(--blanco);
  border: 1px solid var(--gris-oscuro);
  border-radius: 15px;
  padding: 4rem 13rem;
  text-align: center;
}
.formWrapper form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.formWrapper form .form-group {
  width: 100%;
}
.formWrapper form .btn-3m {
  border: 0;
  padding: 10px 50px;
  background-color: var(--azul);
}
.formWrapper form .btn-3m:hover {
  background-color: var(--azul-dark);
}

/* check rounded */
.check-round {
  position: relative;
}
.check-round p {
  font-weight: 700;
}
.check-round label {
  background-color: var(--blanco);
  border: 1px solid var(--gris-oscuro);
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}
.check-round label.errorcheck {
  border: 1px solid var(--rojo);
  background-color: var(--blanco);
  -webkit-box-shadow: inset 0px 0px 0px 1px var(--rojo);
  -moz-box-shadow: inset 0px 0px 0px 1px var(--rojo);
  box-shadow: inset 0px 0px 0px 1px var(--rojo);
}
.check-round label:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rojo);
}
.check-round.square label,
.check-round.square label:after {
  border-radius: 0;
}
.check-round.square input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin-top: -9px;
  visibility: visible;
  vertical-align: middle;
  opacity: 0.7;
}
.check-round.square p {
  margin-bottom: 0;
  margin-top: 0 !important;
  margin-left: 10px !important;
}
.check-round input[type="radio"] {
  visibility: hidden;
}
.check-round input[type="checkbox"]:checked,
.check-round input[type="checkbox"]:checked + label:after,
.check-round input[type="radio"]:checked + label:after {
  opacity: 1;
}
.check-round input[type="checkbox"] {
  visibility: hidden;
}
.check-round p {
  font-size: 1.5rem;
  display: inline-block;
  margin-left: 21px !important;
  margin-top: 4px !important;
}

/* menu header */
header {
  border-bottom: 1px solid var(--gris-oscuro);
}
header .superior {
  display: none;
  color: var(--negro);
  padding: 1rem;
  position: fixed;
  width: 100%;
  z-index: 2;
  background-color: var(--blanco);
}
header .superior .col-12 {
  display: flex;
  justify-content: flex-end;
}
header .superior .superiorWrapper {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}
header .superior a {
  font-size: 1.6rem;
  color: var(--negro);
  text-decoration: none;
}
header a.boldLink {
  font-weight: 500;
}
header .superior a.lightLink:nth-of-type(2) {
  margin-right: 3rem;
}
header .superior a img {
  display: inline;
  width: 2.3rem;
  margin-right: 0.5rem;
}
header .superior a span {
  margin-right: 1rem;
}
header .idioma button {
  color: var(--negro);
  font-size: 1.6rem;
  padding: 0;
}
header .idioma .dropdown-menu {
  width: fit-content;
  min-width: fit-content;
  padding: 1rem;
  right: 0;
  text-align: center;
}
header .idioma .dropdown-menu a {
  color: var(--negro);
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  header .superior {
    display: initial;
  }
  header .superior + .container-fluid {
    padding-top: 45px;
    padding-left: 0;
    padding-right: 0;
  }
  header .superior .idioma button {
    margin-left: 3rem;
  }
}

/* ruta *******/
#div_ruta {
  padding-top: 1rem;
  margin-bottom: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #8a8a8a;
}
#div_ruta ul {
  list-style: none;
  padding-inline-start: 0px;
}
#div_ruta ul li:not(:first-child) a::before {
  content: "/";
  display: inline-block;
  margin: 0 5px 0 0;
}
#div_ruta ul li,
#div_ruta ul li a {
  font-size: 1.3rem;
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
}
#div_ruta ul li.actual a {
  color: #8a8a8a;
}

/* paginador **/
.pagination {
  margin-top: 2rem;
}
.pagination .prev-page img {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 1.5rem;
  border: 0;
  margin-bottom: 0;
}
.pagination .next-page img {
  width: 1.5rem;
  border: 0;
  margin-bottom: 0;
}
.pagination .prev-page.off,
.pagination .next-page.off {
  background-color: #f2f2f2;
  filter: opacity(0.3);
}
.pagination .prev-page {
  border-radius: 7px 0 0 7px;
  padding-left: 7px;
  padding-right: 10px;
}
.pagination .next-page {
  border-radius: 0 7px 7px 0;
  padding-left: 10px;
  padding-right: 7px;
}
.pagination .page-link {
  color: #000000;
  font-size: 1.6rem;
  border: 0;
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
  width: initial !important;
}
.pagination .page-item .page-link,
.pagination .prev-page,
.pagination .next-page {
  border: 1px solid #dddddd;
}
.pagination .page-item.active .page-link,
.pagination .page-item:hover .page-link {
  background: var(--wiwaMain);
  color: var(--blanco);
  border: 1px solid #dddddd;
}

.mt-5r {
  margin-top: 5rem;
}
.titulos {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 4rem;
  font-weight: 600;
}
.titulos h1 {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 600;
}
.titulos.alignLeft {
  text-align: left;
}
.table {
  border: 1px solid var(--gris-medio);
  text-align: center;
}
.table td {
  border-color: var(--gris-medio) !important;
  padding: 1.25rem 0.75rem;
}
.table thead {
  background-color: var(--wiwaMain);
  color: var(--blanco);
  bottom: 0;
}
.table thead th {
  border-bottom: 0;
  font-weight: 400;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--gris-claro);
}
.table-striped tr th:first-of-type,
.table-striped tr td:first-of-type {
  padding-left: 15rem;
}
.table-striped tr th:last-of-type,
.table-striped tr td:last-of-type {
  padding-right: 15rem;
}
.table img {
  height: 2rem;
  filter: brightness(0) opacity(0.3);
}
.table img:hover {
  filter: brightness(1) opacity(1);
}
.table .gris {
  color: #a0a0a0;
}

/* AJAX BASKET *************************************************************************/
.background-overlay {
  width: 100%;
  height: 100%;
  z-index: 3000;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}
#carrito-header {
  z-index: 10000;
  padding: 35px 25px;
  top: 142px !important;
  display: none;
  max-width: 550px;
}
#carrito-header.show {
  position: absolute;
  display: block;
  background: var(--blanco);
  right: 10px;
}
#carrito-header .noProds {
  text-align: center;
}
#carrito-header .modulo-precio {
  max-height: 32rem;
  overflow-y: scroll;
}
#carrito-header .modulo-precio > ul {
  width: calc(100% - 2rem);
}
#carrito-header .modulo-precio::-webkit-scrollbar {
  width: 7px;
}
#carrito-header .modulo-precio::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--gris-claro);
  border-radius: 10px;
}
#carrito-header .modulo-precio::-webkit-scrollbar-thumb {
  background: var(--gris-medio);
  border-radius: 10px;
}
#carrito-header .modulo-precio::-webkit-scrollbar-thumb:hover {
  background: var(--gris-oscuro);
}
#carrito-header .modulo-precio ul form:last-of-type {
  margin-bottom: 3rem;
}
#carrito-header .modulo-precio ul form li {
  border-bottom: 1px solid var(--gris-oscuro);
  padding-bottom: 2rem;
  padding-top: 2rem;
}
#carrito-header .modulo-precio img {
  height: 90px;
  margin-right: 20px;
}
#carrito-header .modulo-precio .detalle-ecommerce {
  width: 100% !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
#carrito-header .modulo-precio .basket-img-container {
  width: 40%;
  overflow: hidden;
  margin-right: 2rem;
  text-align: center;
}
#carrito-header .modulo-precio .detalle-ecommerce a p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
#carrito-header .modulo-precio .detalle-ecommerce .eliminar,
#carrito-header .modulo-precio .detalle-ecommerce .unidades {
  vertical-align: initial;
  font-size: 1.3rem;
}
#carrito-header .totales-flex {
  display: flex;
  justify-content: space-between;
}
#carrito-header .totales-flex:last-of-type {
  margin-bottom: 2rem;
}
#carrito-header .total-listado {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#carrito-header .total-listado.total:first-of-type {
  font-size: 2rem;
}
#carrito-header .total-listado.total:last-of-type {
  font-size: 2rem;
  font-weight: 700;
}
#carrito-header .btn-3m {
  clear: both;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0 !important;
  margin-top: auto !important;
}
#carrito-header .closebtn-ajax-basket {
  text-align: right;
  display: block;
  margin-top: -27px;
  margin-right: -11px;
}
#carrito-header .closebtn-ajax-basket img {
  height: 13px;
}

/* HOME */
.img-home {
  height: 40.2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-home img {
  width: 100%;
  height: auto;
}
/* #home-slider .carousel-inner {
    max-height: 40.2rem;
} */
#home-slider .carousel-item.has-text {
  background-color: black;
}
#home-slider .carousel-item img {
  width: 100%;
}
#home-slider .carousel-item.has-text img {
  /*opacity: 0.6;*/
}
#home-slider .carousel-caption {
  top: 18%;
  bottom: unset;
  text-align: left;
}
#home-slider .carousel-caption .slider-home-titular {
  font-size: 2.7rem;
  text-align: left;
  margin-bottom: 2.5rem;
  line-height: 4rem;
}
#home-slider .carousel-caption .slider-home-text {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
  line-height: 4rem;
}
#home-slider .carousel-caption .btn-3m {
  border: 1px solid var(--wiwaMain);
  color: var(--blanco);
  background-color: var(--wiwaMain);
  font-size: 1.6rem;
  padding: 0.5rem 2.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: inline-block;
}
#home-slider .carousel-caption .btn-3m:hover {
  color: var(--negro);
  background-color: var(--blanco);
  border: 1px solid var(--blanco);
  cursor: initial;
}
#home-slider .carousel-control-prev-icon {
  filter: brightness(0) invert(1) opacity(1);
}
#home-slider .carousel-control-next-icon {
  filter: brightness(0) invert(1) opacity(1);
}
.prods-home {
  background-color: var(--gris-claro);
  padding-top: 7rem;
  padding-bottom: 7rem;
  -webkit-box-shadow: 0px 11px 20px 0px rgb(223, 223, 223);
  -moz-box-shadow: 0px 11px 20px 0px rgb(223, 223, 223);
  box-shadow: 0px 11px 20px 0px rgb(223, 223, 223);
}
.prods-home .prods-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.prods-home .prods {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  min-height: 8rem;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--negro);
  background-color: var(--blanco);
  gap: 1rem;
}
.prods-home .prods:hover {
  text-decoration: none;
  box-shadow: 0 0 0 2px var(--negro);
}
.prods-home .prods img {
  width: 55%;
}
.list-recomendados .carousel-item {
  text-align: left;
}
.list-recomendados .carousel-item .product-item .btn-3m,
.list-recomendados .carousel-item .product-item .btn-3m:hover {
  margin-top: auto;
  background-color: var(--azul);
  color: var(--blanco);
}
@media screen and (min-width: 992px) {
  .prods-home .prods {
    font-size: 1.6rem;
    aspect-ratio: 1/1;
  }
}

/* slider 4 pics */
#slider-home-prods .carousel-inner {
  width: 90%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
}
#slider-home-prods .carousel-inner:hover * {
  text-decoration: none;
}
#slider-home-prods .carousel-inner .product-item {
  font-weight: 400;
  background-color: var(--blanco);
  border-right: 1px solid var(--gris-medio);
}
#slider-home-prods .carousel-inner .square {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
#slider-home-prods .carousel-inner img {
  margin-bottom: 1rem;
}
#slider-home-prods .carousel-inner .prod-code {
  font-size: 1.3rem;
  color: var(--negro);
}
#slider-home-prods .carousel-inner .prod-unit {
  font-size: 2.3rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
#slider-home-prods .carousel-inner .btn-addToCart {
  width: fit-content;
}
#slider-home-prods .carousel-inner .carousel-item.active,
#slider-home-prods .carousel-inner .carousel-item-next,
#slider-home-prods .carousel-inner .carousel-item-prev {
  display: flex;
}
.carousel-item {
  text-align: center;
}
.carousel-control-prev-icon {
  background-image: url(../img/content/ico-arrow-right.svg);
  transform: rotate(90deg);
  width: 3rem;
  filter: brightness(0) opacity(0.4);
}
.carousel-control-next-icon {
  background-image: url(../img/content/ico-arrow-right.svg);
  transform: rotate(-90deg);
  width: 3rem;
  filter: brightness(0) opacity(0.4);
}

@media (max-width: 767.98px) {
  #slider-home-prods .carousel-inner {
    width: auto;
  }
  #slider-home-prods .carousel-inner .carousel-item > div {
    display: none;
  }
  #slider-home-prods .carousel-inner .carousel-item > div:first-child {
    display: block;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  /* slider 4 pics: muestra 4, avanza de a 1  */
  #slider-home-prods .carousel-inner .carousel-item-right.active,
  #slider-home-prods .carousel-inner .carousel-item-next {
    transform: translateX(50%);
  }
  #slider-home-prods .carousel-inner .carousel-item-left.active,
  #slider-home-prods .carousel-inner .carousel-item-prev {
    transform: translateX(-50%);
  }
  #slider-home-prods .carousel-inner .carousel-item-right,
  #slider-home-prods .carousel-inner .carousel-item-left {
    transform: translateX(0);
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 1.2rem !important;
  }
}
@media (min-width: 991px) {
  /* slider 2 pics: muestra 2, avanza de a 1  */
  #slider-home-prods .carousel-inner .carousel-item-right.active,
  #slider-home-prods .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }
  #slider-home-prods .carousel-inner .carousel-item-left.active,
  #slider-home-prods .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
  #slider-home-prods .carousel-inner .carousel-item-right,
  #slider-home-prods .carousel-inner .carousel-item-left {
    transform: translateX(0);
  }
}

/* INTERNAS */
.prod-title {
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}
.prod-title h1 {
  color: var(--negro);
  margin-bottom: 0;
  font-weight: 600;
  font-size: 3.5rem;
}
.prod-title .divider {
  margin: 1rem 0;
}
form .form-group {
  margin-bottom: 1.7rem;
}
form .btn-3m {
  border: 1px solid var(--azul);
  color: var(--blanco);
  background-color: var(--azul);
  font-size: 1.6rem;
  padding: 0.5rem 2.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: inline-block;
  transition: all .3s ease-in-out;
}
form .btn-3m:hover {
  border: 1px solid var(--azul-dark);
  background-color: var(--azul-dark);
}
form .form-control,
form textarea.form-control
form textarea.form-control {
  padding: 10px;
  outline: none;
  font-size: 1.6rem;
  border: 1px solid var(--gris-oscuro);
  min-height: 4rem;
}
form .form-check label,
form .form-check label * {
  font-size: 1.4rem;
}
form .form-check label {
  padding-left: 1rem;
  margin-bottom: 2rem;
}

/* T-PRODUCTS */
.prods-filtros {
  width: 23%;
  padding-right: 2%;
  padding-left: 15px;
  margin-right: 2%;
}
.prods-filtros .collapse > div,
.prods-filtros .collapsing > div {
  padding-top: 1.5rem;
  padding-bottom: 0.1rem;
}
.prods-filtros .outlineWrapper {
  border: 1px solid var(--negro);
  padding: 0.5rem 1rem;
}
.prods-h2 {
  font-weight: 700;
  font-size: 2rem;
}
.desplegable-filtros {
  text-align: left;
  font-weight: 700;
  font-size: 1.6rem;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.desplegable-filtros::after {
  content: url(../img/content/ico-arrow-right.svg);
  width: 1.7rem;
  filter: brightness(0);
  display: inline-block;
  transform: rotate(180deg);
}
.desplegable-filtros.collapsed::after {
  transform: rotate(0deg);
}
.prods-list {
  width: 75%;
  padding-right: 15px;
}
h1.search {
  text-align: center;
}
.search.prods-list {
  width: 100%;
  padding-right: 0;
}
.custom-checkbox {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}
.custom-checkbox input {
  -webkit-appearance: none;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid var(--negro);
  border-radius: 0;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
.custom-checkbox input::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  transform: scale(0);
  transform-origin: center;
  transition: 120ms transform ease-in-out;
  background-color: var(--negro);
}
.custom-checkbox input:checked::before {
  transform: scale(1);
}
.custom-checkbox span,
.custom-checkbox label {
  margin-left: 1rem;
}
.selecciones {
  display: flex;
  align-items: center;
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--negro);
}
.selecciones * {
  margin-bottom: 0 !important;
  margin-right: 2rem;
}
.selecciones .etiquetas {
  background-color: #f2f3f7;
  border-radius: 5px;
  padding: 6px 15px;
  font-size: 1.4rem;
  color: #5a5a5a;
  margin-right: 10px;
  display: inline-block;
  border: 0;
  margin-bottom: 10px;
  width: auto;
  display: flex;
  align-items: center;
}
.selecciones .etiquetas::before {
  content: url(../img/content/ico-close.svg);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  margin-right: 1.3rem;
}
.list-products {
  margin-top: 2.5rem;
  text-decoration: none;
}
.product-item {
  flex-direction: column;
  display: flex;
  margin-bottom: 6.5rem;
  gap: 1rem;
}
.stock-container {
  display: -ms-flexbox !important;
  display: flex !important;
  align-items: center;
  gap: 0.7rem;
}
.list-products .prod-name,
.list-recomendados .prod-name {
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 0.5rem;
}
.list-products .square,
.list-recomendados .square {
  position: relative;
  margin-bottom: 1rem;
}
.list-products .square:after,
.list-recomendados .square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.list-products .square .content,
.list-recomendados .square .content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-products .square .content img,
.list-recomendados .square .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-products .prod-code {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.prod-stock {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--blanco);
  width: fit-content;
  padding: 0 1.5rem;
  border-radius: 5px;
  background-color: var(--verde);
}
.prod-stock.ultimasUds {
  background-color: var(--naranja);
}
.prod-stock.sinStock {
  background-color: var(--rojo);
}
.etiqueta-descatalogado {
  background-color: var(--blanco);
  color: var(--rojo-label);
}
.etiqueta-disponibleBajoPedido {
  background-color: var(--azul-label);
}
.etiqueta-novedad {
  background-color: var(--rosa-label);
}
.etiqueta-proximamente {
  background-color: var(--verde-label);
}
.etiqueta-discontinuado {
  background-color: var(--gris-label);
}
.etiqueta-oferta {
  padding: 0 1.5rem;
  color: var(--blanco);
  font-size: 1.4rem;
  border-radius: 5px;
  /*background-color: var(--amarillo-label);*/
}
.list-products .prod-price span {
  font-weight: 700;
}
.list-products .prod-unit,
.list-products p:last-child {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.list-products a:not(.btn-addToCart) {
  font-weight: 700;
}
.list-products a:not(.btn-addToCart):hover {
  text-decoration: none;
}
.list-products a.btn-addToCart {
  margin-top: auto;
}

/* T-PRODUCT */
.product-h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.product-data-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-ruta-categoria {
  display: flex;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gris-oscuro);
  margin-bottom: 1rem;
}
.product-ruta-categoria li::before {
  content: "|";
  padding-left: 1rem;
  padding-right: 1rem;
}
.product-ruta-categoria li:first-child:before {
  content: none;
}
#slider-product .carousel-indicators {
  position: relative;
  margin-bottom: 0;
}
#slider-product .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gris-oscuro);
  opacity: 0.3;
}
#slider-product .carousel-indicators li.active {
  opacity: 1;
}
#slider-product .carousel-item img {
  max-height: 30rem;
  margin: 0 auto;
}
.product-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  padding: 3.5rem;
  border: 1px solid var(--gris-medio);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.product-description .prod-stock {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
.product-description .prod-price {
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.product-description .prod-price span {
  font-weight: 700;
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.product-description .prod-unit {
  font-size: 1.6rem;
  margin-bottom: 0;
}
.quantity-prod {
  height: 5.3rem;
}
.quantity-prod .input-group {
  width: 100%;
}
.quantity-prod.light {
  height: unset !important;
  width: unset !important;
}
.quantity-prod.light > p {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.quantity-prod.light .input-group {
  width: unset !important;
  border: 1px solid var(--gris-oscuro);
}
.quantity-prod input.form-control {
  text-align: center;
  background-color: transparent !important;
  border: 0;
  font-size: 1.6rem;
  min-width: calc(100% - 80px);
  height: 100%;
  flex: 0;
  padding: 1rem;
  -moz-appearance: textfield;
}
.quantity-prod.light input.form-control {
  background-color: var(--blanco) !important;
  max-width: 10rem;
  height: 4.5rem;
}
.quantity-prod input.form-control::-webkit-outer-spin-button,
.quantity-prod input.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-prod button {
  text-align: center;
  background-color: var(--negro) !important;
  font-size: 2rem;
  width: 4rem;
  color: var(--blanco);
  padding: 7px;
  height: 100%;
}
.quantity-prod.light button {
  background-color: var(--blanco) !important;
  font-size: 2.4rem;
  font-weight: 400;
  border: 0;
  color: var(--negro);
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quantity-prod.light button:hover {
  font-weight: 600;
}
.product-description a {
  display: flex;
  justify-content: center;
  font-weight: 700;
  width: 100%;
}
a.no-disponible,
a.no-disponible:hover {
  color: var(--blanco);
  cursor: initial;
  border: 0;
  background-color: var(--gris-oscuro);
}
.product-description .btn-signUp {
  border: 1px solid var(--wiwaMain);
  border-radius: 5px;
  font-size: 1.6rem;
  text-align: center;
  padding: 2rem;
}
.product-description .btn-signUp a {
  display: inline;
  text-decoration: underline;
}
.product-description .btn-signUp a:hover {
  color: var(--wiwaMain);
}
.product-description form {
  display: flex;
  gap: 1.5rem;
}
.product-description form select.form-control,
.product-description form select.form-control:focus {
  width: 10rem;
  height: 5.3rem;
  border: 1px solid var(--gris-oscuro);
  border-radius: 0;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-right: 2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url(../img/content/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-position-x: 79%;
  background-position-y: 21px;
  background-size: 1.9rem;
  filter: brightness(0);
  text-align: left;
  padding: 0.7rem 1rem 0.7rem 3rem;
}
.especificaciones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4rem 6rem;
  font-size: 1.6rem;
  background-color: #F8F8F8;
}
.especificaciones h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.especificaciones ul {
  padding-left: 1.2rem;
}
.especificaciones ul:not(.documents),
.especificaciones ul:not(.documents) li {
  list-style: initial;
}
.especificaciones ul li {
  margin-bottom: 1rem;
  padding: initial;
}
.especificaciones li span {
  font-weight: 700;
}
.especificaciones .descargar-documento {
  display: flex;
}
.especificaciones .descargar-documento::before {
  content: url(../img/content/ico-download.svg);
  min-width: 2rem;
  display: inline-block;
  margin-right: 1.5rem;
}
.textos-dinamicos {
  font-size: 1.6rem;
}
.textos-dinamicos * {
  margin-bottom: 1rem;
}
@media screen and (min-width: 800px) {
  .productGrid {
    width: 70%;
    margin: 0 auto;
  }
  .productGrid #div_ruta {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .productGrid {
    display: grid;
    grid-template-columns: 1fr 1fr .5fr 1fr;
    grid-template-areas:
      "breadcrumb breadcrumb breadcrumb buy"
      "image details details buy";
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
  }
  .productGrid #div_ruta {
    grid-area: breadcrumb;
    display: flex !important;
  }
  .productGrid #div_ruta ul li a {
    max-width: 30ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .productGrid #slider-product {
    grid-area: image;
  }
  .productGrid .product-data-wrapper {
    grid-area: details;
  }
  .productGrid .product-ruta-categoria li {
    max-width: 30ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .productGrid .product-description {
    grid-area: buy;
  }
  .productGrid .product-description.justifyItems {
    justify-content: space-between;
  }

  .especificaciones {
    flex-direction: row;
    justify-content: space-between;
  }
   .especificaciones__col {
    flex: 1;
    padding: 0 3rem;
    margin-bottom: 0;
  }
  .especificaciones__col + .especificaciones__col {
    border-left: 2px solid var(--negro);
  }
}

/* T-LOGIN */
.error-login {
  color: var(--rojo);
  margin-bottom: 3rem;
}

.login-OK h1 {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.login-OK .btn-3m {
  display: inline-block;
}

/* MODALES */
.modal-header,
.modal-body {
  padding: 2rem;
}
.modal-header img {
  width: 15px;
}
.modal-header .close {
  padding: 0 1rem;
}
.modal h4 {
  font-size: 1.7rem;
  color: var(--negro);
}
.start.btn-3m,
.btn-modal {
  border: 1px solid var(--azul);
  background-color: var(--azul);
  color: var(--blanco);
  font-size: 1.6rem;
  padding: 0.5rem 2.5rem;
  margin-top: 2rem;
  display: inline-block;
}
.start.btn-3m:hover,
.btn-modal:hover {
  border: 1px solid var(--azul-dark);
  background-color: var(--azul-dark);
  color: var(--blanco);
  text-decoration: none;
}
.btn-modal.btn-cerrar {
  background-color: var(--gris-medio);
  border-color: var(--gris-medio);
  color: var(--gris-textos);
}
.btn-modal.btn-cerrar:hover {
  background-color: var(--gris-oscuro);
}
.modal .form-group label {
  font-size: 1.5rem;
}

/* Perfil usuario */
#user-side .user-side-menu {
  background-color: var(--gris-claro);
}
#user-side .user-side-menu li {
  padding: 10px 25px;
  border-bottom: 1px solid var(--gris-medio);
  font-size: 1.6rem;
  font-weight: 700;
}
#user-side .user-side-menu li:last-child {
  border-bottom: 0;
}
#user-side .user-side-menu li:hover a,
#user-side .user-side-menu li.active a {
  text-decoration: none;
  color: var(--wiwaMain);
}
#user-side .dataWrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5rem;
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid var(--gris-oscuro);
  background: var(--blanco);
}
#user-side .dataWrapper.delivery {
  padding: 3rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #user-side .dataWrapper:not(.delivery) {
    flex-direction: row;
    gap: 10rem;
    padding: 6rem 8rem;
  }
}
#user-side .dataWrapper .text-center p {
  font-weight: 500;
  font-size: 2rem;
}
#user-side .dataWrapper .btn-3m {
  margin-bottom: 0;
}
#user-side .dataWrapper .userData,
#user-side .dataWrapper .passwordData {
  flex: 1;
}
#user-side .change_pass .col-md-5 {
  margin: 0 auto;
  text-align: center;
}
#user-side .change_pass .col-md-5 form .btn-3m {
  width: 100%;
  text-align: center;
}
/* hisotrial pedidos */
#user-side .estilo_1 {
  font-weight: 700;
  color: #f93434;
}
#user-side .estilo_2 {
  font-weight: 700;
  color: #ff8000;
}
#user-side .estilo_3 {
  font-weight: 700;
  color: #955f20;
}
#user-side .estilo_4 {
  font-weight: 700;
  color: #008fc8;
}
#user-side .estilo_5 {
  font-weight: 700;
  color: #00b518;
}
#user-side .pendent {
  font-weight: 700;
  color: #ff0000;
}
#user-side .preparacio {
  font-weight: 700;
  color: #ea8a00;
}
#user-side .entregat,
#user-side .preparat {
  font-weight: 700;
  color: #00be28;
}
#user-side .anulat {
  font-weight: 700;
  color: #909090;
}
#user-side .comandes {
  width: 100%;
}
#user-side .comandes-titular {
  font-weight: 700;
  padding: 20px;
}
#user-side .comandes-titular * {
  font-size: 2rem;
}
#list-comandes .collapseWrapper {
  width: 100%;
  padding: 23px 15px;
  border-top: 1px solid var(--gris-oscuro);
}
#list-comandes .collapseWrapper .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#list-comandes .collapseWrapper .collapsePedido {
  display: flex;
  align-items: center;
  gap: 3rem;
}
#list-comandes .collapseWrapper .collapsePedido .img-descarga {
  height: 2.6rem;
}
#list-comandes .collapseWrapper button {
  background: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
#list-comandes .collapseWrapper button::after {
  content: url(../img/content/ico-arrow-right.svg);
  width: 14px;
  filter: brightness(0);
  transform: rotate(180deg);
  display: inline-block;
}
#list-comandes .collapseWrapper button.collapsed::after {
  transform: rotate(0deg);
}
#list-comandes .table-responsive {
  padding: 0 25px;
}
#list-comandes .table {
  min-width: 670px;
  border: 0.5px solid var(--gris-medio);
}
#list-comandes .table * {
  font-size: 1.4rem;
  margin-left: 0;
}
#list-comandes .table img {
  width: 20px;
}
#list-comandes .table thead {
  background-color: var(--gris-oscuro);
  color: var(--blanco);
}
#list-comandes .table thead th {
  border: 0;
}
#list-comandes .table thead tr th:first-of-type,
#list-comandes .table tbody tr td:first-of-type {
  width: 22%;
  padding-left: 20px;
}
#list-comandes .table thead tr th:nth-child(2),
#list-comandes .table tbody tr td:nth-child(2) {
  width: 22%;
}
#list-comandes .table thead tr th:nth-child(3),
#list-comandes .table tbody tr td:nth-child(3) {
  width: 9%;
  text-align: center;
}
#list-comandes .table thead tr th:nth-child(4),
#list-comandes .table tbody tr td:nth-child(4) {
  width: 10%;
  text-align: center;
}
#list-comandes .table thead tr th:nth-child(5),
#list-comandes .table tbody tr td:nth-child(5) {
  width: 13%;
  text-align: center;
}
#list-comandes .table thead tr th:nth-child(6),
#list-comandes .table tbody tr td:nth-child(6) {
  width: 9%;
  text-align: center;
}
#list-comandes .table thead tr th:nth-child(7),
#list-comandes .table tbody tr td:nth-child(7) {
  width: 15%;
  text-align: center;
}
#list-comandes .table tr.desc-factures {
  font-weight: 700;
}
#list-comandes .table tr.desc-factures td {
  padding-bottom: 12px;
  padding-top: 10px;
}
#list-comandes .table tr.desc-factures td a {
  display: -ms-flexbox;
  display: flex;
}
#list-comandes .table tr.desc-factures td a img {
  width: 20px;
  margin-right: 10px;
  filter: brightness(0);
}
#list-comandes .table .albaran {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
#list-comandes .table .albaran p {
  font-size: 1.2rem;
}
#list-comandes .table .albaran img {
  height: 1.3rem;
  filter: brightness(0);
}
@media screen and (max-width: 575px) {
  #list-comandes .collapseWrapper .collapsePedido {
    align-items: flex-start;
    gap: 1.5rem;
  }
  #list-comandes .collapseWrapper .detalls p {
    display: none;
  }
  #list-comandes button.collapsed::after {
    transform: rotate(180deg);
  }
  #list-comandes button .row {
    width: calc(100% - 40px);
  }
  #list-comandes .table .albaran img {
    margin-right: 0.4rem;
  }
}
#modal-factures h4 {
  color: var(--negro);
  font-weight: 600;
}
#modal-factures .desc-factura {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
  border-bottom: 1px solid #bababa;
  padding-top: 16px;
  padding-bottom: 3px;
}
#modal-factures .desc-factura p {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0;
}
#modal-factures .desc-factura img {
  height: 20px;
  filter: brightness(0);
}
#modal-factures .desc-factura:hover,
#modal-factures .desc-factura:hover p {
  text-decoration: none !important;
}
#modal-factures .desc-factura:hover img {
  filter: none;
}
/* Direcciones de entrega */
.direccions-user p,
.direccions-user p span {
  font-size: 1.7rem;
  line-height: 2.5rem;
}
#user-side .direccions-entrega > .btn-3m {
  margin-bottom: 2rem;
}
#user-side .direccions-entrega p {
  margin-bottom: 1rem;
}
#user-side .direccions-entrega .bold {
  font-weight: 700;
}
#user-side .direccions-entrega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#user-side .direccions-entrega .direccions-user {
  padding: 2rem;
  border: 1px solid var(--gris-oscuro);
  border-radius: 15px;
  background-color: var(--blanco);
}
@media screen and (max-width: 448px) {
  #user-side .direccions-entrega {
    grid-template-columns: 1fr;
  }
}
.direccions-user .btn-3m.edit-address {
  font-size: 1.6rem;
  border: 1px solid var(--azul-light);
  background-color: var(--azul-light);
  color: var(--negro);
  margin-right: 1rem;
  padding: 0.5rem 2.5rem;
}
.direccions-user .btn-3m.edit-address:hover {
  background-color: var(--gris-claro);
  color: var(--azul);
  transition: all 0.2s ease-in-out;
}
.direccions-user .btn-3m.edit-address img {
  width: 13px;
  margin-top: -2px;
  margin-right: 10px;
}
.direccions-user .btn-3m.edit-address:hover img {
  filter: brightness(0) invert(1);
  transition: all 0.2s ease-in-out;
}

/* T-INVOICE */
.comandesSearch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 1.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--gris-claro);
  border-top: 1px solid var(--gris-oscuro);
  border-bottom: 1px solid var(--gris-oscuro);
}
.comandesSearch .inputWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 1rem;
}
.comandesSearch .form-group {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0;
  width: 100%;
}
.comandesSearch .form-group input,
.comandesSearch .form-group select {
  border-color: var(--gris-oscuro);
  width: 100%;
  font-size: 1.4rem;
  padding: 0.4rem;
  margin-bottom: 0;
  min-height: unset;
}
.comandesSearch .form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/content/ico-arrow-grey.svg);
  background-repeat: no-repeat;
  background-position-x: 97%;
  background-position-y: 9px;
  background-size: 2rem;
}
.comandesSearch .form-group input[type="date"] {
  min-width: fit-content;
  text-align: center;
}
.comandesSearch .form-group input[type="date"]::-webkit-inner-spin-button,
.comandesSearch
  .form-group
  input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
.comandesSearch .form-group img {
  width: 2rem;
  filter: brightness(0) opacity(0.3);
}
.comandesSearch .custom-checkbox {
  margin-bottom: 0.4rem;
}
.comandesSearch .custom-checkbox input {
  background-color: var(--blanco);
}
.comandesSearch .form-group .form-control.search {
  background-image: url(../img/content/ico-search.svg);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: 97% center;
}
.datepicker thead {
  text-align: center;
}
.datepicker td {
  padding: 0.7rem;
  text-align: center;
}
.datepicker td:hover {
  cursor: pointer;
}

/* T-ECOMMERCE */
.ecommerce .noProds {
  min-height: 30rem;
}
.ecommerce .noProds p {
  font-size: 2.3rem;
}
.ecommerce .ecommerce-header-nav {
  display: flex;
  gap: 5%;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gris-oscuro);
}
.ecommerce .ecommerce-header-nav .item {
  display: flex;
  flex-basis: 33.4%;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  cursor: initial;
}
.ecommerce .ecommerce-header-nav .item:hover {
  text-decoration: none;
}
.ecommerce .ecommerce-header-nav .item.active {
  cursor: pointer;
}
.ecommerce .ecommerce-header-nav .item p {
  font-size: 2rem;
  font-weight: 500;
}
.ecommerce .ecommerce-header-nav .item.active p {
  color: var(--azul);
}
.ecommerce .ecommerce-header-nav .item .numero {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--gris-label);
  border-radius: 50%;
  border: 1px solid var(--gris-label);
  aspect-ratio: 1/1;
  height: 5rem;
}
.ecommerce .ecommerce-header-nav .item.active .numero {
  border: 1px solid var(--azul);
  background-color: var(--azul);
  color: var(--blanco);
}
.ecommerce .aviso-albaran {
  background-color: var(--rojo-20);
  padding: 1.5rem;
}
.ecommerce .aviso-albaran p {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.ecommerce .aviso-albaran .form-control {
  font-size: 1.6rem;
}
.ecommerce .ecommerce-banner-envios {
  padding: 0 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.custom-radio-wrapper {
  display: flex;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
}
.custom-radio-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.custom-radio-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--blanco);
  border-radius: 50%;
  border: 1px solid var(--negro);
}
.custom-radio-wrapper input:checked ~ .custom-radio-icon {
  background-color: var(--blanco);
}
.custom-radio-icon:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-radio-wrapper input:checked ~ .custom-radio-icon:after {
  display: block;
}
.custom-radio-wrapper .custom-radio-icon:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--negro);
}
.ecommerce .ecommerce-cart-entrega {
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}
.ecommerce .ecommerce-cart-details {
  padding: 2rem;
  margin-bottom: 1rem;
}
.plazo-entrega {
  color: var(--azul);
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.plazo-entrega img {
  height: 2.5rem;
}
.portes-pagados {
  color: darkgray;
  font-size: 1.2rem;
  gap: 1rem;
}
.ecommerce .ecommerce-cart-details .cart-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-color: var(--blanco);
  border: 1px solid var(--negro);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1rem;
}
.ecommerce .ecommerce-cart-details .cart-item > div {
  display: flex;
  align-items: center;
}
.ecommerce .ecommerce-cart-details .cart-item .quantity-prod.light {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-item .item-img-container {
  width: 15rem;
  min-width: 15rem;
  margin-right: 2rem;
  text-align: center;
  background-color: var(--blanco);
  overflow: hidden;
}
.cart-item .item-img-container img {
  height: 15rem;
}
.ecommerce .ecommerce-cart-details .cart-item > div > div {
  gap: 2rem;
}
.ecommerce .ecommerce-cart-details .cart-item > div > div > a {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.ecommerce .ecommerce-cart-details .cart-item > div > div > a.eliminar,
.ecommerce .ecommerce2-cart-details .cart-item a.eliminar {
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 0;
}
.ecommerce .ecommerce-cart-details .cart-item .eliminar::after,
.ecommerce .ecommerce2-cart-details .cart-item a.eliminar::after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 1rem;
  background-image: url(../img/content/ico-close.svg);
  background-repeat: no-repeat;
}
.ecommerce .ecommerce-cart-details .cart-item div form select.form-control,
.ecommerce
  .ecommerce-cart-details
  .cart-item
  div
  form
  select.form-control:focus {
  border: 1px solid var(--gris-oscuro);
  border-radius: 0;
  font-size: 1.6rem;
  text-align: center;
  width: 7rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url(../img/content/ico-arrow-right.svg);
  background-repeat: no-repeat;
  background-position-x: 79%;
  background-position-y: 12px;
  background-size: 1.5rem;
  filter: brightness(0);
  padding-right: 3rem;
}
.ecommerce .ecommerce-cart-details .cart-item .ecommerce-price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ecommerce .ecommerce-cart-details .cart-item .ecommerce-price-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ecommerce .ecommerce-cart-details .cart-item .ecommerce-price-container .pice {
  font-weight: 700;
}
.ecommerce .subtotals {
  border-radius: 15px 15px 0 0;
  padding: 2.5rem 4rem;
  background-color: var(--blanco);
  border: 1px solid var(--gris-oscuro);
  margin-top: 2rem;
}
.ecommerce .subtotals .subtotal-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}
.ecommerce .subtotals .subtotal-item.total {
  font-size: 2rem;
  margin-top: 3rem;
}
.ecommerce .subtotals .subtotal-item span img {
  width: 1.8rem;
  margin-top: -3px;
}
.customTooltip {
  cursor: pointer;
}
.tooltipContent {
  display: none;
  padding: 1.5rem;
  z-index: 1;
  background-color: white;
  border: 1px solid black;
}
.tooltipContent.show {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  position: absolute;
  width: 100%;
  top: 3rem;
}
.tooltipContent button {
  background-color: transparent;
}
.tooltipContent button img {
  width: 1.1rem;
}
/* remove */
.tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: transparent;
}
.tooltip-inner {
  background-color: var(--blanco);
  border: 1px solid var(--negro);
  text-align: left;
  font-size: 14px;
  color: var(--negro);
  padding: 1.5rem;
  width: 100%;
}
.tooltip-inner a {
  font-size: 14px !important;
  text-decoration: underline;
}
/* end remove */
.ecommerce .descuento {
  font-size: 1.6rem;
  padding: 2.5rem 4rem;
  background-color: var(--blanco);
  border: 1px solid var(--gris-oscuro);
  margin-top: -1px;
}
.ecommerce .descuento input {
  border-radius: 0;
  font-size: 1.6rem;
  border-color: var(--gris-oscuro);
  margin-top: 1rem;
}
.ecommerce .descuento .incorrecto {
  color: var(--rojo);
  font-size: 1.4rem;
}
.ecommerce .descuento .input-group-append .input-group-text {
  border-radius: 0;
  background-color: var(--gris-claro);
  color: var(--gris-medio);
  border-color: var(--gris-medio);
  font-size: 1.6rem;
  color: var(--gris-oscuro);
  margin-top: 1rem;
}
.ecommerce .descuento .input-group-append .input-group-text:hover {
  background-color: var(--negro);
  color: var(--blanco);
  border-color: var(--negro);
}
.ecommerce .btn-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  padding: 2.5rem 4rem;
  margin-top: -1px;
  margin-bottom: 4rem;
  background-color: var(--blanco);
  border: 1px solid var(--gris-oscuro);
  border-radius: 0 0 15px 15px;
}
.ecommerce .btn-wrapper .seguirComprando {
  margin-top: 1rem;
}

/**/

/* T-ECOMMERCE 2 */
.ecommerce .titulos {
  font-size: 3rem;
  text-align: left;
}
.ecommerce .subtitulos {
  font-size: 1.9rem;
  font-weight: 600;
}
.ecommerce .colRightEcommerce {
  padding: 7rem 2rem;
  background-color: var(--blanco);
}
.ecommerce .colLeftEcommerce {
    background-color: var(--gris-claro);
    padding-right: 5rem;
    padding-bottom: 5rem;
}
.ecommerce .area-resumen {
  margin-top: 5rem;
}
.ecommerce .colLeftEcommerce::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background-color: var(--gris-claro);
}
.ecommerce .ecommerce2-cart-details .plazo-entrega {
  margin-top: 2rem;
}
.ecommerce .ecommerce2-cart-details .cart-item {
  display: flex;
  align-items: center;
  align-items: stretch;
  padding: 2rem;
  gap: 2rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid var(--negro);
  background-color: var(--blanco);
}
.ecommerce .ecommerce2-cart-details .cart-item a {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}
.ecommerce .ecommerce2-cart-details .cart-item .precio {
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: auto;
}
.ecommerce .ecommerce2-cart-details .cart-item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ecommerce .subtotalsWrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--gris-oscuro);
}
.ecommerce .subtotalsWrapper > * {
  flex: 1;
}
@media screen and (max-width: 991px) {
  .ecommerce .area-resumen .subtotalsWrapper {
    display: none;
  }
}
.ecommerce .subtotals-ecommerce2 {
  padding: 2.5rem 4rem 0;
  border-top: 0;
}
.ecommerce .subtotals-ecommerce2 .subtotal-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.ecommerce .subtotals-ecommerce2 .subtotal-item.total {
  font-size: 2rem;
  margin-top: 3rem;
}
.ecommerce .subtotals-ecommerce2 + .form-check {
  margin-bottom: 2rem;
  width: 100%;
}
.ecommerce .borderWrapper {
  border: 1px solid var(--gris-oscuro);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1rem;
}
.ecommerce2-datos {
  margin-bottom: 5rem;
}
.ecommerce .direccions-user .bold {
  font-size: 2rem;
  font-weight: 700;
}
.ecommerce .ecommerce2 .direccions-user .edit-address {
  background-color: var(--azul-light);
  border: 0;
  color: var(--blanco);
  padding: 1rem 3rem;
  display: inline-block;
  margin-bottom: 0;
}
.ecommerce .btn-3m.confirmarPedido:hover,
.ecommerce .ecommerce2 .direccions-user .edit-address:hover {
  background-color: var(--azul-dark);
  color: var(--blanco);
  transition: all 0.3s ease-in-out;
}
.ecommerce .ecommerce2 .direccions-user {
  margin-bottom: 0;
}
.ecommerce .ecommerce2 .custom-radio-wrapper .custom-radio-icon {
  top: 6px;
}
.ecommerce .ecommerce2 .custom-checkbox label {
  font-weight: 400;
}
.ecommerce .ecommerce2 .custom-checkbox {
  margin-bottom: 4rem;
}
.ecommerce .ecommerce2 .custom-checkbox span {
  display: block;
}
/**/

/* FOOTER */
footer {
  background-color: var(--negro);
  padding: 3rem 0;
}
footer .footer-row {
  min-height: 8rem;
}
footer .footer-logo-col img {
  height: 6rem;
  display: block;
}
footer img {
  height: 6rem;
}
footer .footerCol {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 4rem;
}
footer a {
  color: var(--blanco);
  font-size: 1.4rem;
  font-weight: 400;
}
footer a:hover {
  color: var(--blanco);
  text-decoration: underline;
}
footer .footer-numon-col {
  text-align: right;
}
footer .footer-numon-col .numon img {
  height: 1.6rem;
  display: inline-block;
}
footer .redes {
  margin-left: auto;
}
footer .redes a {
  margin-left: 2rem;
}
footer .redes img {
  height: 3rem;
}

/* POLITICAS PRIVACIDAD, COOKIES, AVISO LEGAL */
.politicas h1 {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.politicas h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.politicas h3 {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.politicas p + h3 {
  margin-top: 2.5rem;
}
.politicas ul {
  margin-top: 0;
  margin-bottom: 9px;
  padding-left: 20px;
}
.politicas ul li {
  list-style: disc;
}
.politicas p {
  margin-bottom: 1rem;
}
.politicas a:hover {
  text-decoration: underline;
}
/**/

/*MEDIA QUERIES *************************/
@media screen and (min-width: 480px) {
  #home-slider .carousel-item img.mobile {
    display: none;
  }
  #home-slider .carousel-item img.desktop {
    display: block;
  }

  .ecommerce
    .ecommerce-cart-details
    .cart-item
    .ecommerce-price-container
    form {
    flex-direction: row;
  }
}
@media screen and (min-width: 580px) {
  .list-products .prod-name-wrapper,
  .list-recomendados .prod-name-wrapper {
    height: 105px;
    margin-top: 0.5rem;
  }

  #list-comandes .totalColMobile {
    display: none;
  }

  .invoice .center {
    text-align: center;
  }

  .prods-home .prods-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .search .product-item {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }

  .form-mobile {
    display: none;
  }

  .sticky-column {
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;
  }

  .comandesSearch {
    gap: 1rem;
    flex-direction: row;
    align-items: center;
  }
  .comandesSearch .form-group {
    align-items: flex-start;
  }

  .ecommerce .subtotals {
    border-radius: 0;
    margin-top: 0;
    border-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  #home-slider .carousel-caption {
    top: 11%;
  }

  .ecommerce .aviso-albaran .form-control {
    max-width: 50%;
  }

  .quantity-prod {
    width: 70%;
  }

  .prods-home .prods-container {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .px-xl-70 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .comandesSearch {
    gap: 3rem;
  }
  .comandesSearch .inputWrapper {
    align-items: center;
  }
  .comandesSearch .form-group {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }
  .comandesSearch .form-group input,
  .comandesSearch .form-group select {
    min-width: 15rem;
  }
  .comandesSearch .custom-checkbox {
    margin-bottom: 0;
  }
}
/* @media screen and (min-width: 768px) and (max-width: 992px) {
    .ecommerce .ecommerce-cart-details .cart-item .ecommerce-price-container form {
        flex-direction: column;
    }
} */
@media screen and (max-width: 991.9px) {
  footer .footer-logo-col,
  footer .footer-numon-col {
    text-align: center;
    margin-bottom: 2rem;
  }
  footer .footer-logo-col img {
    margin: 0 auto;
  }
  footer .footer-numon-col {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  footer .footerCol {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  footer .redes {
    margin-left: 0;
    margin-top: 2rem;
  }
  footer .redes a {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media screen and (max-width: 991.9px) {
  .table-striped tr th:first-of-type,
  .table-striped tr td:first-of-type {
    padding-left: 1.5rem;
  }
  .table-striped tr th:last-of-type,
  .table-striped tr td:last-of-type {
    padding-right: 1.5rem;
  }

  .form-mobile {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background-color: var(--blanco);
    z-index: 20;
  }
  .form-mobile .closebtn-form-mobile img {
    height: 20px;
  }
  .form-mobile .header-search {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .form-mobile .header-search input {
    min-width: 100%;
    width: 100%;
    margin-right: 0;
    font-size: 2rem;
  }
  .form-mobile .tit-form-mobile {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px solid #bababa;
    padding-bottom: 15px;
  }

  #carrito-header.show {
    display: flex;
    display: -ms-flexbox;
    -webkit-flex-direction: column;
    flex-direction: column;
    border-radius: 0px;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 55px !important;
    max-width: 590px;
    margin: 0 auto;
  }

  /* T-PRODUCTS */
  .prods-list {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .btn-3m#filtrar {
    display: block;
    margin-bottom: 3rem;
  }
  .selecciones {
    display: block;
  }
  .selecciones .etiquetas {
    display: inline-block;
  }
  .prods-h2 {
    margin-bottom: 1rem !important;
  }
  .prods-home .prods-container {
    justify-content: space-between;
  }

  /* menu filtrar y ordenar */
  .myContenido {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    z-index: 10000000;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--blanco);
    padding: 55px 30px 30px 30px;
  }
  .myContenido.myContenidoLeft {
    right: initial;
    left: -100%;
    padding: 65px 0px 30px 0px;
  }
  .myContenido .closebtn {
    position: absolute;
    top: 26px;
    right: 25px;
    z-index: 20;
    width: 1.8rem;
  }
  .myContenido.myContenidoLeft .closebtn {
    left: 25px;
    right: initial;
  }
  .myContenido .prods-h2 {
    border-bottom: 1px solid var(--negro);
    padding-bottom: 1.5rem;
  }
  #filtrar_wrapper {
    width: 100%;
    min-width: 320px;
  }
  #filtrar_wrapper.toggled .myContenido {
    right: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: auto;
  }

  .ecommerce .ecommerce-cart-details .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  main {
    min-height: 400px;
  }

  .mb-6 {
    margin-bottom: 4rem;
  }
  .my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .scrollup {
    bottom: 20px;
    right: 30px;
  }

  #div_ruta {
    visibility: hidden;
    margin-top: 0;
    height: 0;
  }

  header nav.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  header .navbar-light .navbar-brand img {
    width: 11rem;
  }
  .numon {
    padding: 20px 0;
  }
  #carrito-header .modulo-precio .basket-img-container {
    width: 45%;
  }
  #carrito-header .modulo-precio {
    margin-bottom: 2rem;
  }
  #carrito-header .modulo-precio ul form:last-of-type {
    margin-bottom: 0;
  }
  #carrito-header .total-listado {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .img-home {
    height: 15rem;
  }
  #home-slider .carousel-inner {
    max-height: initial;
  }
  #home-slider .carousel-item.has-text {
    background-color: transparent;
  }
  #home-slider .carousel-item.has-text img {
    opacity: 1;
  }
  #home-slider .carousel-caption {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
  }
  #home-slider .carousel-caption .slider-home-titular {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: initial;
    color: var(--negro);
    text-align: center;
  }
  #home-slider .carousel-caption .slider-home-text {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: initial;
    color: var(--negro);
    text-align: center;
  }
  .prods-home {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .product-h1,
  .prod-title h1 {
    font-size: 2.5rem;
  }
  .prod-title {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
  }
  .product-ruta-categoria {
    flex-direction: column;
    font-size: 1.2rem;
  }
  .product-ruta-categoria li::after {
    content: none;
  }
  #slider-product,
  .product-description .product-detail {
    margin-bottom: 2rem;
  }
  .product-description .quantity-prod {
    margin-bottom: 3rem;
  }
  form select.form-control {
    margin-bottom: 2.5rem;
  }
  .especificaciones {
    padding: 2rem 3rem;
  }
  .especificaciones__col {
    margin-bottom: 2rem;
  }
  .especificaciones h3:last-of-type {
    margin-top: 3rem;
  }
  .ecommerce .ecommerce-header-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .ecommerce .ecommerce-header-nav .item {
    width: 100%;
    justify-content: flex-start;
  }
  .ecommerce .ecommerce-banner-envios {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1rem;
  }
  .custom-radio-wrapper:not {
    margin-bottom: 0;
  }
  .ecommerce .ecommerce-cart-details:last-of-type {
    margin-bottom: 2rem;
  }

  .ecommerce .ecommerce2-cart-details .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .politicas h1 {
    font-size: 3rem;
  }
  .politicas h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  .politicas h3 {
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 1rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 579.9px) {
  #list-comandes .totalCol {
    display: none;
  }
  .invoice #list-comandes .collapseWrapper .collapsePedido {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  #home-slider .carousel-item img.mobile {
    display: block;
  }
  #home-slider .carousel-item img.desktop {
    display: none;
  }

  #carrito-header .modulo-precio .detalle-ecommerce {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .product-description form {
    flex-direction: column;
  }
  .product-description .quantity-prod {
    margin-bottom: 1rem;
  }
  .product-description .quantity-prod:last-of-type {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 400px) {
  #slider-product .carousel-item img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 340px) {
  .comandesSearch .inputWrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* NEW t-PRODS */
.displayWrapper {
  display: flex;
  justify-content: space-between;
}
.displayWrapper ul {
  display: flex;
  gap: 1rem;
}
.displayWrapper ul li img {
  height: 2rem;
}
.displayWrapper ul li button {
  background-color: transparent;
  opacity: 0.4;
}
.displayWrapper ul li button.active {
  opacity: 1;
}
.prods-list .listHeadingWrapper {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--negro);
}
.prods-list .list-products {
  gap: 1.5rem;
}
.prods-list .list-products {
  margin-left: 1rem;
  margin-right: 1rem;
}
.prods-list .list-products .product-item {
  background: var(--blanco);
  border: 1px solid var(--negro);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 0;
}
.list-products.displayAsList .product-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  flex: 0 0 100%;
  max-width: 100%;
}
.list-products .product-item .btn-addToCart {
  width: fit-content;
  white-space: nowrap;
  height: fit-content;
  font-weight: 400;
}
.prods-list .list-products .product-item .btn-addToCart {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.prods-list .list-products .imgSquare {
  position: unset;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.list-products .imgSquare img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.list-products.displayAsList .imgSquare {
  position: unset;
  padding: 0.5rem;
  overflow: hidden;
}
.list-products.displayAsList .imgSquare img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.list-products .product-item .prouct-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.list-products.displayAsList .product-item .prouct-data {
  width: 100%;
}
.list-products .product-item .prouct-data .prod-name {
  font-size: 1.5rem;
}
.list-products.displayAsList .product-item .btn-addToCart {
  margin-top: unset;
}
.list-products .product-item .stock-container {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 0;
}
.list-products.displayAsList .product-item .stock-container {
  flex-direction: row;
}
.list-products.displayAsList .product-item .etiqueta-oferta {
  margin: 0;
  margin-left: 2rem;
}
.list-products.displayAsList .product-item .prod-code {
  margin-bottom: 0;
}
.list-products.displayAsList .product-item .prod-name-wrapper {
  height: unset;
}
.list-products.displayAsList .product-item .prod-name {
  font-weight: 700;
  white-space: break-spaces;
}
.list-products.displayAsList .product-item .prod-name:hover {
  text-decoration: underline;
}
.list-products.displayAsList .product-item .prod-unit {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}
.list-products.displayAsList .product-item .prod-unit span {
  font-size: 2rem;
  font-weight: 700;
}
.list-products .product-item .prod-cant {
  font-size: 1.3rem;
}

@media (max-width: 767.98px) {
  .list-products .imgSquare {
    width: 100%;
    height: 100%;
  }
  .list-products .product-item .stock-container,
  .list-products.displayAsList .product-item .stock-container {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 0;
  }
  .list-products .product-item .prod-code {
    margin-bottom: 0;
  }
  .list-products.displayAsList .product-item .etiqueta-oferta {
    margin: 0;
  }
  .list-products .product-item .prod-unit .prod-cant,
  .list-products.displayAsList .product-item .prod-unit .prod-cant {
    margin: 0;
    display: block;
  }
}
@media (min-width: 576px) {
  .prods-list .list-products .product-item {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: unset;
  }
}
@media (min-width: 992px) {
  .prods-list .list-products:not(.displayAsList) .product-item {
    flex: 0 0 calc((100% - 3rem) / 3);
  }
  .list-products.displayAsList .product-item {
    grid-template-columns: 1fr 3fr 2fr;
    gap: 3rem;
    flex: unset;
  }
  .list-products.displayAsList .product-item .prod-infoContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
    padding-left: 4rem;
    border-left: 1px solid var(--gris-medio);
  }
}
@media (min-width: 1200px) {
  .prods-list .list-products:not(.displayAsList) .product-item {
    flex: 0 0 calc((100% - 4.5rem) / 4);
  }
  .list-products.displayAsList .product-item {
    padding: 4rem;
  }
}

/* FAQs */
.FAQaccordion .card {
  border: 0;
  border-bottom: 2px solid var(--negro);
}
.FAQaccordion button {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem 1.5rem 0;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  border: 0;
  background-color: transparent;
}
.FAQaccordion button::after {
  border: 0;
  content: url(../img/content/ico-arrow-right.svg);
  filter: brightness(0);
  width: 1.5rem;
  vertical-align: baseline;
  margin-left: 1rem;
  transform: rotate(180deg);
}
.FAQaccordion button.collapsed::after {
  transform: rotate(0deg);
}
.FAQaccordion .card-body {
  font-size: 1.5rem;
  padding: 0;
  padding-bottom: 2rem;
}