/*
Theme Name: Plantilla Montero Cabana
Author: La negrita
Description: Plantilla desarrollada por La negrita
Version: 1.1.0
*/

@font-face {
  font-family: "TT Ramillas TRL";
  src: url("fonts/tt-ramillas-trl/TT\ Ramillas\ Trial\ Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Campton";
  src: url("fonts/campton/CamptonBook.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Colores */
  --colorBlanco: #fff;
  --colorGris1: #f5f5f5;
  --colorGris2: #d7d7d7;
  --colorGris3: #8a8a89;
  --colorGris4: #5c5c5b;
  --colorGris5: #3a3a39;
  --colorNegro: #000;
  --colorNegro1: #1d1d1c;
  --colorError: #e53333;

  /* Animacion */
  --ani: all 0.3s ease-in-out;
  --ani2: all 0.3s cubic-bezier(0.31, 0, 0.13, 1);

  --padding-left: 48px;
  --padding-right: 48px;
}

html {
  font-size: 0.732vw;
}

/* RESET */

*,
::after,
::before {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  -webkit-font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
  outline: none;
}

p {
  margin: 0px 0px 2rem 0px;
}
a {
  color: var(--colorGris4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

ul {
  list-style: none;
  margin: 24px 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
ul li {
  position: relative;
  padding: 0px 0px 0px 25px;
}
ul li::before {
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: var(--colorGris4);
  left: 1px;
  top: 8px;
  content: "";
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--colorNegro1);
}

textarea,
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="text"] {
  display: block;
  width: 100%;
  padding: 0px;
  margin: 0px;
  border: 0px;
  border-bottom: 1px solid var(--colorGris2);
  padding: 4px 0px 8px;
  background-color: transparent;
  color: var(--colorNegro1);
  font-family: "TT Ramillas TRL";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
  position: relative;
  border-radius: 0px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder {
  color: var(--colorGris3);
}

/* STYLE */

body {
  padding: 0px;
  margin: 0px;
  font-weight: 300;
  line-height: 130%;
  font-size: 16px;
  color: var(--colorGris4);
  background: var(--colorBlanco);
  font-family: "Campton";
}
body {
  overflow: auto;
}

body::-webkit-scrollbar {
  width: 8px !important;
}

body::-webkit-scrollbar-thumb {
  background-color: #d7d7d7;
  border-radius: 4px;
}

body::-webkit-scrollbar-track {
  background: #fff;
}

header {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  background-color: var(--colorBlanco);
  height: 181px;
  z-index: 99;
  -moz-transition: background-color 0.3s ease-in-out, height 0.3s ease-in-out,
    top 0.6s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, height 0.3s ease-in-out,
    top 0.6s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, height 0.3s ease-in-out,
    top 0.6s ease-in-out;
  transition: background-color 0.3s ease-in-out, height 0.3s ease-in-out,
    top 0.6s ease-in-out;
  pointer-events: none;
}
header.sin-topbar {
  height: 126px;
}
.header__logo svg path {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.logoHeader {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  width: 73px;
}
header select,
header a,
header button {
  pointer-events: initial;
}

body.scrollActivo header {
  background-color: var(--colorBlanco) !important;
  height: 134px;
}
body.scrollActivo header.sin-topbar {
  height: 80px;
}
body.scrollActivo header .header {
  padding-top: 8px;
  padding-bottom: 8px;
}
body.scrollActivo .logoSimb {
  opacity: 0;
}
body.scrollActivo .logoHeader {
  width: 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--colorGris1);
  border-bottom: 1px solid var(--colorGris2);
  backdrop-filter: blur(10px);
  padding: 16px var(--padding-right) 16px var(--padding-left);
  font-family: "TT Ramillas TRL";
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);

}
.topbar .topbar__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--colorNegro1);
}
.topbar .topbar__txt a {
  text-decoration: none;
  color: var(--colorNegro1);
}
.topbar .btn__close-topbar {
  cursor: pointer;
  border: 0px;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  border-radius: 0px;
  position: absolute;
  right: var(--padding-right);
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar.topbar__oscuro{
  background: var(--colorGris5) !important;
}
.topbar.topbar__oscuro .topbar__txt a,
.topbar.topbar__oscuro .topbar__txt .topbar__marquee,
.topbar.topbar__oscuro .topbar__txt {
 color: #FEFEFE !important;
}
.topbar.topbar__oscuro svg path{
  fill: #FEFEFE !important;
}
.topbar.topbar__oscuro .btn__close-topbar svg path{
  stroke: #FEFEFE !important;
}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--padding-right) 24px var(--padding-left);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.header .header__right,
.header .header__left {
  width: 160px;
}

.header__right.hover a {
  opacity: 0.3;
}
.header__right.hover a:hover {
  opacity: 1;
}

.header .header__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
.header .header__center ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0px;
  padding: 0px;
  gap: 16px;
  width: 45rem;
}
.header .header__center ul li {
  padding: 0;
}
.header .header__center ul li::before {
  display: none;
}

.header .header__center ul:first-child {
  justify-content: end;
}

.header .header__center ul li a {
  color: var(--colorNegro1);
  text-align: right;
  text-decoration: none;
  font-family: "Campton";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.header .header__center.hover ul li a {
  color: var(--colorGris2);
  opacity: 1;
}
.header .header__center.hover ul li a:hover {
  color: var(--colorNegro1);
  opacity: 1;
}

.header .header__logo:hover {
  transform: scale(0.9);
}

.header .header__right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.header .header__logo,
.header .btn__header_right {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}

.header .btn__header_right span {
  position: absolute;
  display: flex;
  width: 16px;
  height: 16px;
  padding: 3px 0px 0px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: -16px -17px 0px 0px;
  color: var(--colorBlanco);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 50px;
  background: var(--colorNegro1);
  text-transform: uppercase;
}

.pagemodule {
  padding: 181px 0px 181px 0px;
  display: flex;
  flex-direction: column;
  gap: 144px;
}

.sin-topbar-container .pagemodule {
  padding-top: 126px;
}
.mb-4 {
  margin-bottom: 4px !important;
}
.mb-8 {
  margin-bottom: 8px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pb-24 {
  padding-bottom: 24px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-27 {
  margin-bottom: 27px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-48 {
  margin-bottom: 48px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-64 {
  margin-bottom: 64px;
}
.text-center {
  text-align: center;
}

.font-ramillas {
  font-family: "TT Ramillas TRL";
  letter-spacing: -0.7px !important;
}

.font-62 {
  font-size: 62px;
  line-height: 105%;
}
.font-30 {
  font-size: 30px;
  line-height: 115%;
}
.font-37 {
  font-size: 37px;
  line-height: 105%;
}
.font-28 {
  font-size: 28px;
  line-height: 115%;
}
.font-21 {
  font-size: 21px;
  line-height: 115%;
}
.font-14 {
  font-size: 14px;
  line-height: 128%;
}
.font-12 {
  font-size: 12px;
  line-height: 115%;
}

.c-blanco {
  color: var(--colorBlanco);
}
.c-gris3 {
  color: var(--colorGris3);
}
.c-negro {
  color: var(--colorNegro1) !important;
}
.c-rojo {
  color: var(--colorError) !important;
}

.font-w300 {
  font-weight: 300 !important;
}
.font-w500 {
  font-weight: 500 !important;
}
.font-w600 {
  font-weight: 600 !important;
}

.br-4 {
  border-radius: 4px;
}

.mod__header {
  height: 57.6rem;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: relative;
  z-index: 0;
}
.mod__header::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: "";
}
.modheader__title {
  font-weight: normal;
}
.modheader__img {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.modheader__data {
  max-width: 670px;
  position: relative;
  z-index: 1;
  padding: 48px;
}
.modheader__desc {
  max-width: 530px;
  margin: auto;
}
.modheader__btn {
  margin-top: 16px;
}

.mod__header-home {
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: relative;
  z-index: 0;
  padding: 0px 0px;
  text-decoration: none;
}

.mod__header-home .modheader__desc {
  margin: 0px 0px 16px;
}

.mod__header-home::before {
  background: none;
}

.mod__columnastexto {
  padding: 0px var(--padding-right) 0px var(--padding-left);
  display: flex;
  justify-content: space-between;
  gap: 11.5rem;
}
.mod__columnastexto > div {
  width: 100%;
}
.mod__columnastexto > div img {
  width: 100%;
}
.mod__coltxt_desc,
.mod__columnastexto > div:first-child {
  width: 41.8rem;
}
.mod__columnastexto > div:last-child {
  width: 73.7rem;
  margin-top: 42rem;
}

.mod__columnastexto > div:first-child img {
  width: 100%;
  height: 60rem;
  object-fit: cover;
}
.mod__columnastexto > div:last-child img {
  width: 100%;
  height: 56.3rem;
  object-fit: cover;
}

.mod__columnastexto.align_b_s > div:first-child {
  order: 2;
}
.mod__columnastexto.align_b_s > div:last-child {
  order: 1;
}

.modcarousel {
  width: 100%;
  max-width: 630px;
  margin: auto;
}
.modcarousel__slick > .slick-list {
  padding: 0px calc(var(--padding-right) - 0.4rem) 0px
    calc(var(--padding-left) - 0.4rem);
}
.modcarousel__slick .modcarousel__slick-item {
  padding: 0px 0.4rem;
}
.modcarousel__slick.modcarousel__slick-imgs .modcarousel__slick-item img {
  height: 60rem;
  width: 41.8rem;
}

.slick-dots {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.slick-dots li {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0px;
}
.slick-dots li::before {
  display: none;
}
.slick-dots button {
  font-size: 0px;
  width: 16px;
  height: 1px;
  background-color: var(--colorGris4);
  padding: 0px;
  border: 0px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  cursor: pointer;
  opacity: 0.5;
}
.slick-dots li:hover button,
.slick-dots .slick-active button {
  opacity: 1;
  background-color: var(--colorNegro1);
}

.slick-dots-top .slick-dots {
  position: absolute;
  top: 0;
  margin: 0px;
  width: 100%;
}
.slick-dots-top {
  padding-top: 48px;
}

.mod__banner {
  padding: 0px var(--padding-right) 0px var(--padding-left);
}
.mod__banner .modbanner {
  width: 84.5rem;
  height: 32rem;
  margin: auto;
  border-radius: 4px;
  padding: 3.2rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mod__banner .modbanner img {
  width: 84.5rem;
  height: 32rem;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
}
.mod__banner .modbanner .modbanner__top {
  max-width: 263px;
  width: 100%;
}

.btn-icon-txt {
  display: inline-flex;
  align-items: center;
  color: var(--colorBlanco);
  gap: 8px;
  text-decoration: none;
  padding: 0px;
  background: transparent;
  cursor: pointer;
  border: 0px;
  font-family: "Campton";
}
.btn-icon-txt svg {
  width: 54px;
  height: 6px;
  position: absolute;
  left: -24px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn-icon-txt span {
  margin-top: -3px;
  width: 30px;
  height: 6px;
  position: relative;
  overflow: hidden;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn-icon-txt:hover svg {
  left: 0px;
}
.btn-icon-txt:hover span {
  width: 54px;
}

.btn-icon-txt-negro {
  color: var(--colorNegro1);
}
.btn-icon-txt.load{
  opacity: 0.5;
  pointer-events: none;
}


.footer__newsletter-input {
  position: relative;
}
.footer__newsletter-input .btn-icon-txt {
  position: absolute;
  right: 0px;
  top: 13px;
}
.footer__newsletter-input input {
  padding-right: 123px;
}
.return-to-shop a:hover {
  color: var(--colorNegro1);
}

.btn__var {
  display: flex;
  height: 48px;
  padding: 17px 16px 15px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
  background: var(--colorBlanco);
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  cursor: pointer;
  font-family: "Campton";
  color: var(--colorNegro1);
  margin: 0px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn__var:hover {
  border: 1px solid var(--colorGris4);
}

.btn__var-filter {
  min-width: 204px;
}

.woocommerce-button,
.btn__negro {
  display: flex;
  height: 48px;
  padding: var(--spacing-md, 16px);
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  background: var(--colorGris5);
  font-size: 16px;
  color: var(--colorBlanco);
  font-family: "TT Ramillas TRL";
  width: 100%;
  border: 0px;
  cursor: pointer;
  text-decoration: none;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.woocommerce-button:hover{
   background-color: var(--colorNegro);
  color: var(--colorBlanco);
}
.btn__negro .woocommerce-Price-amount,
.btn__negro .custom-price {
  font-family: "Campton";
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn__negro .custom-price .price{
    display: flex;
  align-items: center;
  gap: 6px;
}

.btn__negro:disabled {
  pointer-events: none;
  cursor: default;
  background: var(--colorGris1);
  color: var(--colorGris4);
}
.btn__negro strong {
  font-weight: 400;
}
.btn__negro-center {
  align-items: center;
  justify-content: center;
}
.btn__negro:hover {
  background-color: var(--colorNegro);
  color: var(--colorBlanco);
}
.product__var .btn__negro {
  position: relative;
}
.product__var .btn__negro:hover {
  padding-left: 48px;
}
.product__var .btn__negro::before {
  background-image: url("images/cesta.svg");
  width: 28px;
  height: 28px;
  top: 9px;
  left: 6px;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.product__var .btn__negro:hover::before {
  opacity: 1;
  left: 14px;
}

.woocommerce-button {
  display: inline-flex;
  width: auto;
  margin-left: 4px;
  color: var(--colorBlanco);
  line-height: 16px;
}

.carrito__resumen-desc {
  min-height: 66px;
}

.mod__texto {
  padding: 0px 16px;
}

.mod__texto.mod__texto-pos0 {
  padding: 64px var(--padding-right) 0px var(--padding-left);
}

.mod__texto .modtexto__data {
  max-width: 632px;
  margin: auto;
}
.mod__texto .modtexto__data_grande {
  max-width: 100%;
  margin: auto;
}

.modtexto__cont p {
  margin-bottom: 32px;
}
.modtexto__cont ul {
  margin-bottom: 32px;
}
.modtexto__cont h2,
.modtexto__cont h3,
.modtexto__cont h4,
.modtexto__cont h5 {
  font-family: "TT Ramillas TRL";
  font-size: 21px;
  line-height: 115%;
  color: var(--colorNegro1);
  font-weight: 300;
  margin: 0px 0px 16px;
}
.modtexto__cont p:last-child {
  margin: 0px;
}
.modtexto__cont strong {
  font-weight: 600;
}

input:focus {
  outline: none;
}

.oculto {
  opacity: 0;
  visibility: hidden;
  height: 0px;
}

.page404 {
  padding: 25rem 0px 10rem;
  max-width: 632px;
  width: 100%;
  margin: auto;
}
.pagemodule_404{
  padding-top: 0px;
}

.desplegable {
  padding: 24px 16px;
  border-top: 1px solid var(--colorGris2);
}
.desplegable:last-child {
  border-bottom: 1px solid var(--colorGris2);
}

.desplegable .desplegable__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  font-weight: 600;
  cursor: pointer;
  color: var(--colorNegro1);
}
.desplegable .desplegable__title span {
  display: inline-block;
  margin-top: 2px;
}
.desplegable .desplegable__cont {
  display: none;
  padding-top: 24px;
}
.desplegable .desplegable__cont p:last-child {
  margin: 0px;
}
.desplegable .desplegable__title svg {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  transition-duration: 0.4s;
  transform: rotate(180deg);
}
.desplegable.active .desplegable__title svg {
  transform: rotate(0deg);
}

body.single-product header {
  background: transparent;
}

.shop-wrapper {
  padding: 181px var(--padding-right) 144px var(--padding-left);
}
.sin-topbar-container .shop-wrapper {
  padding-top: 126px;
}

.product__related {
  width: 100%;
}

.product__content {
  display: flex;
  flex-wrap: wrap;
}
.product__content .product__imgs {
  padding-top: 0px;
  width: calc(50% + var(--padding-left));
  margin-top: -128px;
  margin-left: calc(var(--padding-left) * -1);
  height: 100%;
  /* position: sticky;
  top: 53px; */
}
.sin-topbar-container .product__content .product__imgs {
  padding: 0px;
  margin-top: -126px;
  top: 0px;
}

.product__content .product__img-big div {
  display: flex;
  padding-bottom: 4px;
  background: var(--colorBlanco);
}
.product__content .product__img-big div a {
  display: flex;
  width: 100%;
  background: #f5f5f5;
}
.product__img-small-cont {
  text-align: center;
  padding: 1rem;
}
.product__img-small {
  margin-left: -48px;
  width: calc(100% + 96px);
  border-top: 1px solid var(--colorBlanco);
}

.product__content .product__img-big img {
  height: 100vh;
  width: 100%;
  margin: auto;
  object-fit: cover;
}

.product__content .product__data {
  max-width: 463px;
  width: 100%;
  padding: 0px 24px 0px 24px;
  margin: 0px auto;
}
/* .product__data_sticky {
  position: sticky;
  top: 180px;
} */

.product__data-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product__data-cats a {
  color: var(--colorNegro1);
  font-size: 12px;
  line-height: normal;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.product__data-cats a:hover {
  opacity: 0.5;
}
.carrito__itemdata-qua a:hover {
  color: var(--colorNegro1);
}

.product__data-accs .toggle-fav-btn-login,
.product__data-accs .toggle-fav-btn {
  width: auto;
  height: auto;
  background: transparent;
  backdrop-filter: initial;
}
.product__data-accs .toggle-fav-btn-login svg path,
.product__data-accs .toggle-fav-btn svg path {
  stroke: #1d1d1c;
}
.toggle-fav-btn-login svg.favAct path,
.toggle-fav-btn svg.favAct path {
  fill: #1d1d1c;
  stroke: #1d1d1c;
}

.product__data-accs {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.product__data-accs a {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.woocommerce-product-details__short-description p {
  margin: 0px;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-underline {
  text-decoration: underline !important;
}
.text-underline-hover:hover {
  color: var(--colorGris4) !important;
}
.text-decoration-none {
  text-decoration: none;
}

#ppcp-recaptcha-v2-container {
  padding: 0px !important;
  border-radius: 0px !important;
  background: transparent !important;
}
.notifima-registered-message {
  margin-bottom: 0px !important;
}
.notifima-pop-image {
 display: none !important;
}
.notifima-multivendorx-subcription-confirmation .woocommerce-button {
  line-height: 0;
  margin: 0;
}
.notifima-popup {
    background: transparent !important;
    text-align: center !important;
    border-radius: 0px !important;
    border: 0px !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.carrito__itemdata-qua > div:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carrito__itemdata-qua .quantity {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carrito__itemdata-qua .quantity > div {
  display: flex;
}
.carrito__itemdata-qua .quantity a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 18px;
  height: 18px;
}
.carrito__itemdata-qua .quantity input {
  text-align: center;
  padding: 0px;
  margin: 0px;
  width: 22px;
  border: 0px;
  font-family: "Campton";
  color: var(--colorGris4);
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
  height: 15px;
  margin-top: 2px;
  font-size: 16px;
}
.carrito__itemdata-qua .quantity input::-webkit-outer-spin-button,
.carrito__itemdata-qua .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.carrito__itemdata-qua .quantity div span {
  display: block;
  height: 18px;
  margin-top: 1px;
}

.carrito__resumen-coupon {
  border-top: 1px solid rgba(29, 29, 28, 0.1);
  padding: 16px 0px;
}
.carrito__resumen-coupon > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.carrito__resumen-coupon .coupon-error-notice {
  color: var(--colorError);
  margin: 10px 0px 0px 0px !important;
  font-size: 14px;
}
.carrito__resumen-coupon input {
  padding: 0px;
  margin: 0px;
  background: transparent;
  border: 0px;
  border-radius: 0px;
  font-weight: 300;
  line-height: 100%;
  font-size: 16px;
  color: var(--colorGris3);
  font-family: "TT Ramillas TRL";
  width: 65%;
  height: 20px;
}
.carrito__resumen-coupon button {
  padding: 0px;
  margin: 0px;
  font-weight: 300;
  line-height: 100%;
  font-size: 16px;
  color: var(--colorNegro1);
  font-family: "TT Ramillas TRL";
  border: 0px;
  background: transparent;
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
.table-checkout,
.carrito__resumen .cart_totals table {
  width: 100%;
  border-bottom: 1px solid rgba(29, 29, 28, 0.1);
}
.table-checkout tr td,
.table-checkout tr th,
.carrito__resumen .cart_totals table tr td,
.carrito__resumen .cart_totals table tr th {
  text-align: left;
  padding: 0px;
  margin: 0px;
  padding: 17px 0px 15px;
  border-top: 1px solid rgba(29, 29, 28, 0.1);
}
.table-checkout tr th,
.carrito__resumen .cart_totals table tr th {
  color: var(--colorNegro1);
}
.table-checkout tr td,
.carrito__resumen .cart_totals table tr td {
  text-align: right;
}

.carrito__itemdata-qua .quantity button {
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  background: transparent;
  border: 0px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__lisvar {
  display: flex;
  width: 100%;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.product__lisvar > button {
  width: calc(50% - 4px);
}
.product__lisvar_count1 > button {
  width: calc(100%);
}

.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 99999999;
  background-color: rgb(0 0 0 / 20%);
  opacity: 0;
  visibility: hidden;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal .modal_right {
  width: 480px;
  height: 100vh;
  padding: 64px 48px;
  background: var(--colorBlanco);
  position: absolute;
  right: -100px;
  top: 0px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  z-index: 9999;
}

.modal.show .modal_right {
  right: 0px;
}

.modal .modal__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--colorGris2);
  padding-bottom: 16px;
}
.modal .modal__title a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.modal .modal__data {
  max-height: calc(100vh - 190px);
  overflow: auto;
}
.modal .modal__data::-webkit-scrollbar {
  display: none;
}
ul.list__attribute {
  gap: 0px;
}
ul.list__attribute li {
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--colorGris2, #d7d7d7);
}
ul.list__attribute li label {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--colorNegro1);
  font-family: "TT Ramillas TRL";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  cursor: pointer;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
ul.list__attribute li label:hover {
  background: var(--color-color-grey-1, #f5f5f5);
}
ul.list__attribute li input {
  margin: 0;
}

ul.list__attribute li::before {
  display: none;
}

.btn_close_modal {
  padding: 0px;
  margin: 0px;
  border: 0px;
  border-radius: 0;
  background-color: transparent;
  display: flex;
  cursor: pointer;
}
.modal__title > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product__var {
  margin-bottom: 16px;
}

.product__envioestimacion {
  font-size: 14px;
  line-height: 18px;
  padding: 0px 0px 0px 16px;
}

.slick-arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  font-size: 0px;
  background-image: url(images/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  border: 0px;
  padding: 0px;
  background-color: transparent;
  top: calc(50% - 12px);
  left: 0;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.slick-arrow.slick-next {
  left: auto;
  right: 0;
  background-image: url(images/arrow-right.svg);
}

.productlist:hover .slick-arrow {
  left: calc(2.4rem - 8px);
  opacity: 1;
}

.productlist:hover .slick-arrow.slick-next {
  right: calc(2.4rem - 8px);
  left: auto;
  opacity: 1;
}

.productlist-fav {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  transform: translateX(48px);
  opacity: 0;
  pointer-events: initial;
}
.productlist:hover .productlist-fav {
  transform: translateX(0px);
  opacity: 1;
}

.product__img-small img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  margin: auto;
}
.product__img-small .slick-slide > div {
  border-left: 1px solid var(--colorBlanco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product__img-small .slick-slide:last-child > div {
  border-right: 1px solid var(--colorBlanco);
}

.product__img-small .slick-arrow {
  left: 5px;
}
.product__img-small .slick-arrow.slick-next {
  left: auto;
  right: 5px;
}

.productlist {
  text-decoration: none;
  position: relative;
}
.productlist a {
  text-decoration: none;
}
.productlist .productlist__top {
  width: 41.8rem;
  height: 50rem;
  margin-bottom: 16px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      89.64% 64.42% at 49.84% 50%,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 71.31%
    ),
    var(--color-color-grey-1, #f5f5f5);
}
.productlist .productlist__bottom {
  width: 35rem;
}
.productlist-small.productlist .productlist__bottom {
  width: 27rem;
}

.productlist .productlist__imgs-img {
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* border-radius: 0.4rem; */
}
.productlist__imgs-img > a {
  display: flex;
  width: 100%;
}

.productlist .slick-list {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}

.productlist .productlist__imgs .productlist__imgs-img img {
  width: 41.8rem;
  height: 50rem;
  overflow: hidden;
  object-fit: cover;
}

.productlist__accs {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0px;
  padding: 2.4rem;
  left: 0px;
  z-index: 1;
  pointer-events: none;
}

.product__related_content {
  margin-top: 144px;
}

.product__related {
  margin-left: calc(var(--padding-left) * -1);
  width: calc(100% + calc(var(--padding-right) + var(--padding-left)));
}
.product__related > .slick-list {
  padding: 0px calc(var(--padding-right) - 4px);
}

.product__related .productlist {
  margin: 0px 4px;
}
.productslist {
  padding-top: 64px;
}

.productslist .productslist__cats {
  text-align: center;
  margin-bottom: 32px;
  font-size: 12px;
  text-transform: uppercase;
}
.productslist .productslist__cats a:hover {
  color: var(--colorNegro1);
}

.productslist .productslist__title {
  text-align: center;
  max-width: 610px;
  width: 100%;
  margin: auto;
}
.productslist .productslist__totalresult {
  text-align: center;
  margin-top: 32px;
  color: var(--colorNegro1);
  font-weight: 600;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productslist .productslist__totalresult svg {
  height: 29.905px;
  width: auto;
}

.productslist .productslist__accs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.productslist__list {
  display: flex;
  gap: 48px 8px;
  flex-wrap: wrap;
}
.productslist__list.load {
  opacity: 0.5;
  pointer-events: none;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.productlist {
  width: 100%;
  flex: 1 1 calc((100% - 0 * 8px - 24px) / 4); /* 4 columnas, 3 gaps de 8px, 96px de padding */
  max-width: calc((100% - 0 * 8px - 24px) / 4);
}
.productlist.productlist-small .productlist__top {
  width: 100%;
  height: 37.4rem;
}
.productlist.productlist-small .productlist__imgs {
  overflow: hidden;
  height: 37.4rem;
  border-radius: 4px;
}

.productlist.productlist-small .productlist__imgs img {
  height: 37.4rem;
  width: 32.5rem;
}

.carrito {
  display: flex;
  gap: 11.5rem;
}
.carrito .carrito__cesta {
  width: 63rem;
}
.carrito .carrito__resumen {
  width: 42rem;
}
ul.carrito__items {
  padding: 0px;
  margin: 0px;
  border-bottom: 1px solid rgba(29, 29, 28, 0.1);
  gap: 0;
}
ul.carrito__items li::before {
  display: none;
}
ul.carrito__items li {
  padding: 0px;
}
.carrito__item {
  display: flex;
  padding: 24px 0px;
  align-items: center;
  gap: 2.4rem;
  align-self: stretch;
  border-top: 1px solid rgba(29, 29, 28, 0.1);
}
.carrito__item > div:first-child {
  width: 20.5rem;
  height: 24.55rem;
  background: radial-gradient(
      89.64% 64.42% at 49.84% 50%,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 71.31%
    ),
    #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
}
.carrito__item > div {
  flex: 0 0 auto;
}

.carrito__item img {
  width: 20.5rem !important;
  height: 24.55rem;
  width: auto;
  display: block;
  margin: auto;
  object-fit: cover;
}
.carrito__itemdata {
  width: calc(100% - 22.9rem);
}

.carrito__itemdata-qua,
.carrito__itemdata-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-NoticeGroup,
.woocommerce-notices-wrapper {
  position: fixed;
  z-index: 9999;
  bottom: var(--padding-left);
  left: var(--padding-left);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error-content,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-NoticeGroup .woocommerce-info,
.woocommerce-NoticeGroup .woocommerce-error-content,
.woocommerce-NoticeGroup .woocommerce-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  max-width: 477px;
  padding: 16px 40px 16px 20px;
  border-radius: 4px;
  background: var(--colorNegro1);
  color: var(--colorBlanco);
  font-weight: 300;
}

.woocommerce-lost-password .woocommerce-message {
  margin-bottom: 12px;
}
.woocommerce-lost-password .modtexto__data {
  max-width: 443px;
}

button.notice-close {
  position: absolute;
  top: 3px;
  right: 5px;
  background: transparent;
  color: var(--colorBlanco);
  border: 0;
  font-size: 20px;
  padding: 0;
  line-height: 20px;
  cursor: pointer;
  padding: 2px;
  width: 20px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
button.notice-close:hover {
  opacity: 0.6;
}

.woocommerce-error-content img {
  display: none;
}

.woocommerce-notices-wrapper a,
.woocommerce-error-content a {
  color: var(--colorBlanco);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  font-weight: 300;
}

.woocommerce-notices-wrapper a:hover,
.woocommerce-error-content a:hover {
  opacity: 0.6;
}

ul.woocommerce-error {
  padding: 0px;
  margin: 0px;
}
ul.woocommerce-error li {
  padding: 0px;
}
ul.woocommerce-error li::before {
  display: none;
}

.notice-hidden {
  opacity: 0;
  bottom: 10px;
}

.woocommerce-MyAccount-navigation {
  padding: 36px 48px;
  border-top: 1px solid var(--colorGris2);
  border-bottom: 1px solid var(--colorGris2);
  background: var(--colorBlanco);
  margin-top: -64px;
  margin-left: calc(var(--padding-right) * -1);
  width: calc(100% + var(--padding-right) + var(--padding-left));
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-MyAccount-navigation a {
  text-decoration: none;
  color: var(--colorNegro1);
  border-bottom: 1px solid transparent;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
  border-bottom: 1px solid var(--colorNegro1);
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 0px;
  padding: 0px;
}
.woocommerce-MyAccount-navigation ul li {
  padding: 0px;
}
.woocommerce-MyAccount-navigation ul li::before {
  display: none;
}

.cuenta__micuenta {
  margin-left: calc(var(--padding-right) * -1);
  width: calc(100% + var(--padding-right) + var(--padding-left));
  display: flex;
}
.cuenta__micuenta > div {
  width: 50%;
  min-height: 48rem;
}
.cuenta__micuenta > div:last-child {
  display: flex;
}
.cuenta__micuenta > div:last-child img {
  width: 100%;
  height: 48rem;
  object-fit: cover;
}
.cuenta__micuenta > div:first-child {
  padding: var(--padding-right);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cuenta__micuenta .cuenta__micuenta-desc {
  max-width: 418px;
}
.cuenta__micuenta .cuenta__micuenta-desc a {
  color: var(--colorNegro1);
  font-weight: 600;
}
.cuenta__micuenta .cuenta__micuenta-desc a:hover {
  color: var(--colorGris4);
  font-weight: 600;
}
.btn-close-sesion {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--colorGris4) !important;
  border: 0px !important;
}
.btn-close-sesion:hover {
  border: 0px;
  color: var(--colorNegro1) !important;
}
.btn-close-sesion svg,
.btn-close-sesion svg path {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn-close-sesion:hover svg {
  transform: translateX(4px);
}
.btn-close-sesion:hover svg path {
  stroke: var(--colorNegro1) !important;
}
.woocommerce-account .pagemodule {
  padding-bottom: 64px;
}

.cuenta__container {
  max-width: 632px;
  margin: 64px auto 0px;
}

.btn {
  padding: 0px;
  margin: 0px;
  cursor: pointer;
  border-radius: 4px;
  background: var(--colorGris5);
  color: var(--colorBlanco);
  border: 0px;
  font-family: "TT Ramillas TRL";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  height: 48px;
  padding: 16px;
  align-items: center;
  gap: 35px;
  text-decoration: none;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn:hover {
  background: var(--colorNegro1);
}

.cuenta__container-big {
  padding-top: 64px;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 0px;
  border-bottom: 1px solid var(--colorGris2);
  border-radius: 0px;
  color: var(--colorNegro1);
  font-family: "TT Ramillas TRL";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 4px 0px 0px 0px;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 41px;
  margin: 0px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--colorNegro1);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  background: url(images/arrow-down.svg) no-repeat;
  background-position: center center;
}
.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 7px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.select2-dropdown {
  color: var(--colorNegro1);
  border: 0px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 8px;
}
.select2-search--dropdown {
  display: block;
}
.select2-container--default
  .select2-results
  > .select2-results__options
  li::before {
  display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--colorGris2);
  background-image: url(images/ico-lupa.svg);
  background-repeat: no-repeat;
  background-position: 8px center;
  padding: 8px 8px 8px 40px;
}
.select2-search--dropdown {
  padding: 0px 0px 4px 0px;
}
.select2-search--dropdown .select2-search__field {
  margin: 0px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
}
.select2-results {
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
  padding: 0px 8px;
}

.select2-container--default .select2-results > .select2-results__options {
  font-family: "TT Ramillas TRL";
  gap: 0px;
}
.select2-results__option {
  padding: 8px;
}

.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"],
.select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted[data-selected] {
  background-color: var(--colorGris1);
  color: var(--colorNegro1);
  border-radius: 4px;
}

.form-row label,
.woocommerce-form-row label {
  display: block;
  color: var(--colorGris4);
  font-family: "Campton";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.form-row-last,
.form-row-first {
  width: calc(50% - 4px);
  display: inline-block;
}
.form-row-first {
  margin-right: 4px;
}
.form-row-last {
  margin-left: 4px;
}

.woocommerce-address-fields__field-wrapper .form-row-first input {
  margin: 0px;
}

em {
  font-size: 12px;
}

.account-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.account-row > div {
  width: 50%;
}

.woocommerce-shipping-destination {
  display: none;
}
.wc_payment_methods,
.woocommerce-shipping-methods {
  margin: 0px !important;
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  flex-wrap: wrap;
}

ul.wc_payment_methods {
  margin-bottom: 16px !important;
}

.wc_payment_methods li,
.woocommerce-shipping-methods li {
  padding: 0px;
  width: calc(50% - 0.4rem);
}
.wc_payment_methods li label,
.woocommerce-shipping-methods li label {
  padding: 0px;
  width: 100%;
}
.wc_payment_methods li input,
.woocommerce-shipping-methods li input {
  display: none;
}
.wc_payment_methods li::before,
.woocommerce-shipping-methods li::before {
  display: none;
}

.shipping_method_opc {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
  background: var(--color-color-blanco, #fefefe);
  display: flex;
  justify-content: space-between;
  padding: 24px 24px 21px 24px;
  cursor: pointer;
  position: relative;
  padding-left: 44px;
}
.shipping_method_opc::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  left: 24px;
  border-radius: 2px;
  border: 0.6px solid var(--colorGris4);
  background: var(var(--colorBlanco));
  width: 12px;
  height: 12px;
}
input[type="hidden"] + .shipping_method_opc,
input:checked + .shipping_method_opc {
  border: 1px solid var(--colorGris3);
  background: var(--colorGris1);
  color: var(--colorNegro);
  font-weight: 600;
}
.shipping_method_opc .woocommerce-Price-amount {
  color: var(--colorGris4);
  font-weight: 400;
}
input[type="hidden"] + .shipping_method_opc::before,
input:checked + .shipping_method_opc::before {
  border: 0.6px solid var(--colorNegro1);
  background-color: var(--colorNegro1);
  background-image: url(images/check.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.pagecheckout {
  display: flex;
  align-items: flex-start;
  gap: 115px;
  align-self: stretch;
}
.pagecheckout > div {
  width: 100%;
}

.checkout__listproduct {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 0.8rem;
  margin-bottom: 64px;
}
.checkout__listproduct > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 17.8rem;
  text-align: left;
  flex-direction: column;
}
.checkout__listproduct > div .checkout__listproduct-img {
  width: 17.8rem;
  height: 21.346rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  background: radial-gradient(
      89.64% 64.42% at 49.84% 50%,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 71.31%
    ),
    var(--color-color-grey-1, #f5f5f5);
}
.checkout__listproduct > div .checkout__listproduct-img img {
  width: 17.8rem;
  height: 21.346rem;
  object-fit: cover;
}

.checkout__listproduct-data {
  width: 15rem;
  font-size: 14px;
  line-height: 130%;
}

.table-checkout-products td {
  border: 0px !important;
  padding: 0px !important;
}

.form-row {
  padding-bottom: 12px;
}

.select2-container {
  display: block;
  margin-bottom: 12px;
}

.pagecheckout #shipping_country_field,
.pagecheckout #shipping_phone_field,
.pagecheckout #shipping_postcode_field,
.pagecheckout #shipping_city_field,
.pagecheckout #shipping_state_field,
.pagecheckout #billing_phone_field,
.pagecheckout #billing_postcode_field,
.pagecheckout #billing_city_field,
.pagecheckout #billing_state_field {
  width: calc(33.33333333333333333% - 0.6rem);
  display: inline-block;
}
.pagecheckout #shipping_city_field,
.pagecheckout #billing_city_field {
  margin-left: 0.8rem;
}
.pagecheckout #shipping_state_field,
.pagecheckout #billing_state_field {
  float: right;
}
.pagecheckout #shipping_phone_field,
.pagecheckout #shipping_country_field,
.pagecheckout #shipping_email_field,
.pagecheckout #shipping_address_1_field,
.pagecheckout #billing_phone_field,
.pagecheckout #billing_country_field,
.pagecheckout #billing_email_field,
.pagecheckout #billing_address_1_field {
  width: calc(50% - 0.4rem);
  display: inline-block;
}
.pagecheckout #shipping_email_field,
.pagecheckout #shipping_address_1_field,
.pagecheckout #billing_email_field,
.pagecheckout #billing_address_1_field {
  float: right;
}

.thankyou__datos {
  max-width: 418px;
}
.checkout-inline-error-message {
  display: none;
}
.woocommerce-invalid label {
  color: var(--colorError) !important;
}
.woocommerce-invalid input {
  border-color: var(--colorError) !important;
}

.woocommerce-order-overview {
  display: flex;
  border-radius: 4px;
  border: 1px solid var(--color-color-grey-2, #d7d7d7);
  padding: var(--spacing-lg, 24px);
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.woocommerce-order-overview li {
  width: 45%;
  padding: 0;
}
.woocommerce-order-overview li::before {
  display: none;
}

.shop_table,
.woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.shop_table thead th ,
.woocommerce-orders-table thead th {
  font-family: "TT Ramillas TRL";
  padding: 24px 0px;
  color: var(--colorNegro1);
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-bottom: 1px solid var(--colorGris2);
}
.shop_table tbody th,
.shop_table tbody td ,
.woocommerce-orders-table tbody th,
.woocommerce-orders-table tbody td {
  padding: 24px 0px;
  border-bottom: 1px solid var(--colorGris2);
}

.shop_table tbody td,
.woocommerce-orders-table tbody td {
  padding: 12px 0px;
}

.shop_table tbody th ,
.woocommerce-orders-table tbody th {
  color: var(--colorNegro1);
}
.shop_table tbody th a,
.woocommerce-orders-table tbody th a {
  text-decoration: none;
  color: var(--colorNegro1);
}
.table-row-custom{
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop_table thead th:last-child,
.shop_table tbody td:last-child{
  text-align: right;
}
.cuenta__outofstock .my-account-pagination{
  display: none !important;
}
.shop_table .no-data-row{
  text-align: left !important;
}

.woocommerce-OrderUpdate-meta {
  margin: 0px !important;
  font-size: 14px;
  color: var(--colorGris3);
}
.woocommerce-OrderUpdate-text {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--colorNegro1);
}
ol.woocommerce-OrderUpdates {
  margin-bottom: 48px;
  font-size: 14px;
  color: var(--colorGris3);
}

.woocommerce-shipping-totals td {
  text-align: left !important;
}

.woocommerce-shipping-fields,
.woocommerce-billing-fields {
  padding: 24px 24px 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
}
.woocommerce-shipping-fields .shipping_address {
  padding-top: 32px;
}

.woocommerce-shipping-fields {
  margin-bottom: 32px;
}
.woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.woocommerce-privacy-policy-text,
.payment_box {
  font-size: 14px;
  color: var(--colorNegro1);
  line-height: 120%;
}
.woocommerce-privacy-policy-text {
  color: var(--colorGris3);
}
.att_color {
  display: flex;
  gap: 8px;
}
.att_color input {
  display: none;
}
.att_color .att_color-cir {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
}
.att_color input:checked + .att_color-cir {
  border: 1px solid var(--colorNegro1);
  background-image: url(images/check-negro.svg);
  background-position: center;
  background-repeat: no-repeat;
}

body.home header,
body.home .header {
  background-color: transparent;
}
body.home .pagemodule {
  padding-top: 0px;
}

body.home .header .header__center ul li a {
  color: var(--colorBlanco);
}
body.home .header .header__center.hover ul li a {
  color: var(--colorBlanco);
  opacity: 0.35;
}
body.home .header .header__center.hover ul li a:hover {
  color: var(--colorBlanco);
  opacity: 1;
}

body.ocultoHeader header {
  top: -182px;
}

body.home .logoHeader .logoSimb13,
body.home .logoHeader .logoSimb12,
body.home .logoHeader .logoSimb11,
body.home .logoHeader .logoSimb10,
body.home .logoHeader .logoSimb9,
body.home .logoHeader .logoSimb8,
body.home .logoHeader .logoSimb7,
body.home .logoHeader .logoSimb6,
body.home .logoHeader .logoSimb5,
body.home .logoHeader .logoSimb4,
body.home .logoHeader .logoSimb3,
body.home .logoHeader .logoSimb2,
body.home .logoHeader .logoSimb1 {
  fill: var(--colorBlanco);
}

body.home .logoHeader .logoSimb12,
body.home .logoHeader .logoSimb10,
body.home .logoHeader .logoSimb8,
body.home .logoHeader .logoSimb6,
body.home .logoHeader .logoSimb4,
body.home .logoHeader .logoSimb2 {
  stroke: var(--colorBlanco);
}

body.home .header .btn__cart svg path {
  fill: var(--colorBlanco);
}

body.home .header .btn__account svg path {
  fill: var(--colorBlanco);
}

body.home .header .btn__header_right span {
  background-color: var(--colorBlanco);
  color: var(--colorNegro1);
}
body.home .topbar {
  background: rgba(247, 247, 247, 0.1);
  backdrop-filter: blur(10px);
  color: var(--colorBlanco);
  border-bottom-color: transparent;
}
body.home .topbar .topbar__txt a {
  color: var(--colorBlanco);
}
body.home .topbar svg path {
  fill: var(--colorBlanco);
}
body.home .topbar .btn__close-topbar svg path {
  stroke: var(--colorBlanco);
}

/* ----- */
body.home.scrollActivo .header .header__center ul li a {
  color: var(--colorNegro1);
  opacity: 1;
}
body.home.scrollActivo .header .header__center.hover ul li a {
  color: var(--colorGris2);
  opacity: 1;
}
body.home.scrollActivo .header .header__center.hover ul li a:hover {
  color: var(--colorNegro1);
  opacity: 1;
}

body.home.scrollActivo .topbar {
  background-color: var(--colorGris1);
  border-bottom: 1px solid var(--colorGris2);
  color: var(--colorNegro1);
}
body.home.scrollActivo .topbar .topbar__txt a {
  color: var(--colorNegro1);
}
body.home.scrollActivo .topbar svg path {
  fill: var(--colorNegro1);
}
body.home.scrollActivo .topbar .btn__close-topbar svg path {
  stroke: var(--colorNegro1);
}
body.home.scrollActivo .logoHeader .logoSimb13,
body.home.scrollActivo .logoHeader .logoSimb12,
body.home.scrollActivo .logoHeader .logoSimb11,
body.home.scrollActivo .logoHeader .logoSimb10,
body.home.scrollActivo .logoHeader .logoSimb9,
body.home.scrollActivo .logoHeader .logoSimb8,
body.home.scrollActivo .logoHeader .logoSimb7,
body.home.scrollActivo .logoHeader .logoSimb6,
body.home.scrollActivo .logoHeader .logoSimb5,
body.home.scrollActivo .logoHeader .logoSimb4,
body.home.scrollActivo .logoHeader .logoSimb3,
body.home.scrollActivo .logoHeader .logoSimb2,
body.home.scrollActivo .logoHeader .logoSimb1 {
  fill: var(--colorNegro1);
}

body.home.scrollActivo .logoHeader .logoSimb12,
body.home.scrollActivo .logoHeader .logoSimb10,
body.home.scrollActivo .logoHeader .logoSimb8,
body.home.scrollActivo .logoHeader .logoSimb6,
body.home.scrollActivo .logoHeader .logoSimb4,
body.home.scrollActivo .logoHeader .logoSimb2 {
  stroke: var(--colorNegro1);
}

body.home.scrollActivo .header .btn__cart svg path {
  fill: var(--colorNegro1);
}

body.home.scrollActivo .header .btn__account svg path {
  fill: var(--colorNegro1);
}

body.home.scrollActivo .header .btn__header_right span {
  background-color: var(--colorNegro1);
  color: var(--colorBlanco);
}

.btn__account {
  display: flex;
  height: 33px;
  align-content: center;
  justify-content: center;
  padding-top: 4px;
  justify-content: flex-end !important;
}

.mod__bannerimagen {
  display: flex;
  gap: 48px;
  flex-direction: column;
  padding: 0px 48px;
}

.mod__bannerimagen__img {
  position: relative;
  border-radius: 4px;
  height: 60rem;
  padding: 48px;
  overflow: hidden;
  text-align: center;
  display: block;
  text-decoration: none;
}
.mod__bannerimagen__img::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mod__bannerimagen__img img {
  width: 100%;
  height: 60rem;
  border-radius: 4px;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -2;
}

.mod__bannerimagen__img:hover .btn-icon-txt span {
  width: 54px;
}
.mod__bannerimagen__img:hover .btn-icon-txt svg {
  left: 0px;
}

.mod__bannerimagen__data {
  max-width: 652px;
  margin: auto;
}
.mod__bannerimagen__data .font-21 {
  line-height: 125%;
}

.mod__bloquesimgs {
  padding: 0px 48px;
  display: flex;
  gap: 4.8rem 0.8rem;
  flex-wrap: wrap;
}
.mod__bloquesimgs > div {
  width: calc(33.333333333% - 0.55rem);
}
.mod__bloquesimgs .bloquesimgs__img a,
.mod__bloquesimgs .bloquesimgs__img {
  display: flex;
  width: 100%;
}
.mod__bloquesimgs .bloquesimgs__img img {
  border-radius: 4px;
  width: 100%;
  height: 60rem;
  object-fit: cover;
}
.bloquesimgs__descripcion {
  max-width: 260px;
}

.mod__bannerregalo {
  display: flex;
  padding: 64px 144px;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: var(--colorNegro1);
}
.mod__bannerregalo > div {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerregalo__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bannerregalo__img img {
  height: 66.3rem;
  width: 52.3rem;
  object-fit: cover;
}
.mod__bannerregalo > div:first-child > div {
  max-width: 380px;
  text-align: center;
}
.mod__bloquesimgs .bloquesimgs__img img,
.bloquesimgs__titulo {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.bloquesimgs__bloque-enlace:hover .bloquesimgs__titulo {
  padding-left: 16px;
}
.bloquesimgs__bloque-enlace .bloquesimgs__img {
  overflow: hidden;
  border-radius: 4px;
}
.bloquesimgs__bloque-enlace:hover .bloquesimgs__img img {
  transform: scale(1.05);
}

.mod__tabspro {
  padding: 0px var(--padding-right) 0px var(--padding-left);
}

.tabspro__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabspro__tabs ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  gap: 12px;
  flex-direction: row;
}
.tabspro__tabs ul li {
  padding: 0px;
  margin: 0px;
}

.tabspro__tabs ul li a {
  text-decoration: none;
  font-size: 14px;
  color: var(--colorNegro1);
  border-bottom: 1px solid transparent;
}

.tabspro__tabs ul li.active a {
  border-bottom: 1px solid var(--colorNegro1);
}

.tabspro__tabs ul li::before {
  display: none;
}
.tabspro__contents {
  position: relative;
  height: 49rem;
}
.tabspro__content {
  position: absolute;
  top: 20px;
  opacity: 0;
  visibility: hidden;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  width: 100%;
}
.tabspro__content.active {
  opacity: 1;
  visibility: visible;
  top: 0px;
  transition-delay: 0.2s;
}

.tabspro__products {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn__search {
  background: transparent;
  display: flex;
  border: 0px;
  border-radius: 0px;
  padding: 4px 8px 4px 0px;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-family: "Campton";
  font-size: 14px;
  color: var(--colorNegro1);
  line-height: 18px;
  position: relative;
}
.btn__search {
  cursor: pointer;
}
.btn__search::before {
  width: 0%;
  height: 1px;
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0px;
  background-color: var(--colorNegro);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn__search:hover::before {
  width: 100%;
}

body.home .btn__search {
  color: var(--colorBlanco);
  border-color: rgba(254, 254, 254, 0.3);
}
body.home .btn__search::before {
  background-color: #fff;
}

body.home .btn__search svg path {
  fill: var(--colorBlanco);
}

body.home.scrollActivo .btn__search {
  color: var(--colorNegro1);
  border-color: var(--colorNegro1);
}
body.home.scrollActivo .btn__search svg path {
  fill: var(--colorNegro1);
}

.modalmenu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalmenu::-webkit-scrollbar {
  display: none;
}

.modalmenu.active {
  opacity: 1;
  visibility: visible;
}
.modalmenu .modalmenu__container {
  border-radius: 4px;
  background: #fff;
  margin: 12px 48px 12px;
  max-width: 1270px;
  width: 100%;
  position: relative;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  transform: translateY(30px);
}
.modalmenu.active .modalmenu__container {
  transform: translateY(0px);
}

.modalmenu__close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  padding: 0px;
  margin: 0px;
  border: 0px;
  background: transparent;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.modalmenu__content {
  display: flex;
}
.modalmenu__content a {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}

.modalmenu__content a:hover {
  opacity: 0.7;
}

.modalmenu.modalsmall .modalmenu__container {
  max-width: 480px;
  width: 100%;
}
.modalsmall .modalmenu__content {
  padding: 32px;
  display: block;
}
.modalsmall .modalmenu__close {
  top: 38px;
  right: 32px;
  width: 16px;
  height: 16px;
}

.modal__data-btns {
  display: flex;
  gap: 8px;
}
.modal__data-btns .btn__negro {
  align-items: center;
  justify-content: center;
}

.btn__negro-filter-borrar {
  background: var(--colorGris1);
  color: var(--colorNegro1);
}

.activeModal {
  overflow: hidden;
  padding-right: 8px;
}
.activeModal header {
  padding-right: 8px;
  overflow: hidden;
  transition: none;
  z-index: 1;
}
.activeModalRight header {
  z-index: 0;
}

.modal__data.modal__data-filter {
  max-height: 100vh;
  height: calc(100vh - 170px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal__data-filterlist {
  overflow: auto;
  margin: 32px 0px;
}
.modal__data-filterlist::-webkit-scrollbar {
  display: none;
}

.modal__data-filterlist .desplegables > .desplegable:first-child {
  border-top: 0px;
}

ul.filter {
  margin: 0px;
}
ul.filter li {
  padding: 0px;
}
ul.filter li label {
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
}
ul.filter li label input {
  margin: -3px 0px 0px 0px;
  padding: 0px;
}
ul.filter li::before {
  display: none;
}

.select-order {
  color: var(--colorNegro1);
  font-family: "Campton";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
  background: transparent;
  border: 0px;
  text-align: right;
  padding: 10px 28px 10px 10px;
  width: auto;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url(images/arrow-down.svg);
  background-position: right center;
  background-repeat: no-repeat;

  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.select-order:hover {
  opacity: 0.5;
}

.menu__destacados {
  display: block;
  padding: var(--spacing-md, 16px);
  overflow: hidden;
  border-right: 1px solid var(--colorGris2);
  width: 633px;
  flex: 0 0 auto;
}
.msearch__destacado > a,
.menu__destacados > a {
  width: 296px;
  height: calc(50% - 4px);
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  z-index: 0;
  float: left;
  background: radial-gradient(
      89.64% 64.42% at 49.84% 50%,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 71.31%
    ),
    var(--color-color-grey-1, #f5f5f5);
}

.msearch__destacado > a::before,
.menu__destacados > a::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.msearch__destacado > a > img,
.menu__destacados > a > img,
.menu__destacados > a > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  z-index: -2;
  position: relative;
}
.msearch__destacado > a:hover > img,
.menu__destacados > a:hover > img {
  transform: scale(1.05);
}
.msearch__destacado > a > span,
.menu__destacados > a > span {
  display: block;
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 80%;
  color: var(--colorBlanco);
  font-weight: 300;
  font-size: 12px;
  text-decoration: underline;
  line-height: 120%;
}
.menu__destacados-2,
.menu__destacados-1 {
  width: 330px;
}
.menu__destacados-1 > a {
  height: 100%;
}
.menu__destacados-4 > a:nth-child(2),
.menu__destacados-3 > a:nth-child(2),
.menu__destacados-2 > a:first-child {
  margin-bottom: 8px;
}
.menu__destacados-3 > a:first-child {
  height: 100%;
  margin-right: 8px;
}
.menu__destacados-4 > a:nth-child(3) {
  margin-right: 8px;
}
.menu__destacados-4 > a:nth-child(1) {
  margin-bottom: 8px;
  margin-right: 8px;
}
.menu__items-container {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 60px 28px 60px 64px;
  position: relative;
  gap: 24px 48px;
}
.menu__items-container a {
  text-decoration: none;
}
.menu__items-container a:hover {
  text-decoration: underline;
}
.menu__columna {
  width: 176px;
}
.menu__items-c4 .menu__columna,
.menu__items-c3 .menu__columna {
  width: 200px;
}

.menu__columna ul {
  margin: 20px 0px 0px 0px;
  gap: 8px;
}
.menu__columna ul li {
  padding: 0px;
}
.menu__columna ul li::before {
  display: none;
}
.menu__columna ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.menu__columna ul li a svg path,
.menu__columna ul li a svg {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  flex: 0 0 auto;
}
.menu__columna ul li a:hover {
  text-decoration: none;
}
.menu__columna ul li a:hover svg {
  transform: translateX(6px);
}
.menu__columna ul li a:hover svg path {
  stroke: var(--colorNegro);
}
.menu__columna-title {
  width: 100%;
}

.checkout-order-before div {
  font-size: 14px !important;
  padding: 16px 24px !important;
  background: var(--colorGris1) !important;
  line-height: 120% !important;
  border-radius: 4px !important;
}

.btn-menu-vertodo {
  position: absolute;
  bottom: 16px;
  left: 60px;
  text-decoration: none;
}
.btn-menu-vertodo:hover {
  text-decoration: none !important;
}

body.scroll-bottom header {
  top: -54px;
  background-color: transparent !important;
}
body.scroll-bottom header.sin-topbar {
  top: -9px;
}

body.scroll-bottom .header .header__center ul li a {
  color: var(--colorBlanco) !important;
}

body.scroll-bottom .logoHeader .logoSimb13,
body.scroll-bottom .logoHeader .logoSimb12,
body.scroll-bottom .logoHeader .logoSimb11,
body.scroll-bottom .logoHeader .logoSimb10,
body.scroll-bottom .logoHeader .logoSimb9,
body.scroll-bottom .logoHeader .logoSimb8,
body.scroll-bottom .logoHeader .logoSimb7,
body.scroll-bottom .logoHeader .logoSimb6,
body.scroll-bottom .logoHeader .logoSimb5,
body.scroll-bottom .logoHeader .logoSimb4,
body.scroll-bottom .logoHeader .logoSimb3,
body.scroll-bottom .logoHeader .logoSimb2,
body.scroll-bottom .logoHeader .logoSimb1 {
  fill: var(--colorBlanco) !important;
}

body.scroll-bottom .logoHeader .logoSimb12,
body.scroll-bottom .logoHeader .logoSimb10,
body.scroll-bottom .logoHeader .logoSimb8,
body.scroll-bottom .logoHeader .logoSimb6,
body.scroll-bottom .logoHeader .logoSimb4,
body.scroll-bottom .logoHeader .logoSimb2 {
  stroke: var(--colorBlanco) !important;
}

body.scroll-bottom .header .btn__cart svg path {
  fill: var(--colorBlanco) !important;
}

body.scroll-bottom .header .btn__account svg path {
  fill: var(--colorBlanco) !important;
}

body.scroll-bottom .header .btn__header_right span {
  background-color: var(--colorBlanco) !important;
  color: var(--colorNegro1) !important;
}
body.scroll-bottom .btn__search {
  color: var(--colorBlanco) !important;
  border-color: var(--colorBlanco) !important;
}
body.scroll-bottom .btn__search svg path {
  fill: var(--colorBlanco) !important;
}

.show-password-input {
  display: none;
}

.lost_reset_password {
  max-width: 443px;
  margin: 0px auto;
}

.loginre {
  display: flex;
  gap: 12px;
  position: relative;
}

.loginre::before {
  width: 1px;
  height: 100%;
  background-color: var(--colorGris2);
  position: absolute;
  content: "";
  top: 0px;
  left: 50%;
}

.loginre > div {
  width: 100%;
}

.loginre .loginre_content {
  width: 100%;
  max-width: 440px;
  margin: auto;
}

.cartempty {
  display: flex;
  justify-content: space-between;
}
.cartempty .mod__banner {
  padding: 0px;
}
.cartempty .mod__banner .modbanner {
  width: 84.5rem;
  height: 45.8rem;
}
.cartempty .mod__banner .modbanner img {
  width: 84.5rem;
  height: 45.8rem;
}

.modal-tabletallas.modal .modal_right {
  max-width: 720px;
  width: 100%;
}
.modal-tabletallas.modal .modal__data {
  overflow: initial;
}

.table__talla {
  margin-top: 32px;
  width: max-content;
  margin-right: 48px;
}

.table__talla tr td {
  padding: 16px;
  font-size: 14px;
  color: var(--colorNegro);
  border-bottom: 1px solid var(--colorGris2);
}
.table__talla tr:first-child td {
  background-color: var(--colorNegro);
  color: var(--colorBlanco);
  font-size: 16px;
}
.table__scroll {
  overflow: auto;
  width: calc(100% + 48px);
  position: relative;
  z-index: 1;
}

.table__scroll::-webkit-scrollbar {
  display: none;
}

.pventa {
  padding: 64px var(--padding-right) 0px var(--padding-left);
  margin-bottom: -116px;
}
.pventa .pventa__desc {
  max-width: 563px;
  width: 100%;
}

.pventa__btns ul li a {
  font-weight: 600 !important;
}
.pventa__btns ul li {
  position: relative;
}
.pventa__btns ul li::before {
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: var(--colorGris2);
  top: 0px;
  right: -20px;
  content: "";
  left: auto;
}
.pventa__btns ul li:last-child::before {
  display: none;
}

.pventa__btns {
  padding: 24px 0px;
}

.pventa__btns ul li a {
  padding: 16px 32px;
}

.hover__arrow > svg path,
.hover__arrow > svg,
.hover__arrow span svg {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.hover__arrow:hover span svg {
  transform: scale(1.4);
}
.hover__arrow:hover > svg {
  transform: translateX(6px);
}
.hover__arrow:hover > svg path {
  stroke: var(--colorNegro);
}

#map {
  height: 750px;
  width: 100%;
  border-radius: 4px;
}

.btn__tienda {
  display: flex;
  width: 100%;
  display: flex;
  padding: 16px 24px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
  font-family: "TT Ramillas TRL";
  background-color: var(--colorGris1);
  cursor: pointer;
  color: var(--colorNegro);
  font-size: 16px;
  line-height: 100%;
}
.modal__tienda .modal__data {
  max-height: 100vh;
  height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  padding-top: 32px;
}
.modal__tienda .modal__data .modal__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
}
.modal__tienda .modal__data b,
.modal__tienda .modal__data strong {
  font-weight: 600;
  color: var(--colorNegro);
  margin-bottom: 8px;
  display: inline-block;
}
.modal__tienda .modal__data p {
  margin-bottom: 8px;
}
.modal__tienda .modal__data a {
  text-decoration: none;
}

.pagination-loadmore {
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-loadmore .btn__negro {
  width: auto;
}

.btn__var-filter {
  display: block;
  width: 204px;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px 8px 8px;
  border-radius: 4px;
  border: 1px solid var(--colorGris2);
  background: #fefefe;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn__var-filter:hover {
  border: 1px solid var(--colorGris4);
}
.btn__var-filter button {
  border: 0px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: "Campton";
  font-size: 14px;
  line-height: 100%;
  padding: 8px;
  margin: 0px;
  color: var(--colorNegro1);
}
button.btn__var-filter-open {
  width: 100%;
  justify-content: space-between;
  padding-right: 16px;
}
button.btn__var-filter-reset {
  display: none !important;
}
button.btn__var-filter-reset.show {
  display: flex !important;
  padding-left: 0px;
}

.modalsearch .modalmenu__content {
  display: block;
  padding: 24px;
}
.msearch {
  padding: 0;
}
.msearch .msearch__header {
  padding: 48px 48px 0px 48px;
}
.productlistsmall {
  display: block;
  text-decoration: none;
  color: var(--colorNegro1);
  font-family: "TT Ramillas TRL";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}
.productlistsmall span {
  display: flex;
  width: 15rem;
  height: 18rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: radial-gradient(
      89.64% 64.42% at 49.84% 50%,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0) 71.31%
    ),
    var(--color-color-grey-1, #f5f5f5);
  margin-bottom: 8px;
  overflow: hidden;
}
.productlistsmall span img {
  width: 15rem;
  height: 18rem;
  object-fit: cover;
}

.msearch__body-result {
  /* display: flex;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani); */
}
.msearch__body-result {
  margin: 0px 0px 0px -24px;
  width: calc(100% + 48px);
}
.msearch__body-result .slick-list {
  padding: 0px 24px;
}

.msearch__body-result .slick-slide {
  width: 15rem;
  margin-right: 15px;
}

.msearch__body-result.load {
  opacity: 0.5;
  pointer-events: none;
}
.quantity__simple {
  display: none;
}

.msearch__body {
  overflow: auto;
  margin-left: -24px;
  width: calc(100% + 48px);
  padding: 32px 24px 0px 24px;
}
.msearch__body::-webkit-scrollbar {
  display: none;
}

.msearch__header input {
  font-family: "Campton";
  padding-left: 28px;
  background-image: url(images/ico-lupa.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  font-weight: 600;
}

.msearch__destacado {
  display: flex;
  width: 100%;
  gap: 8px;
  padding: 0px 24px;
}
.msearch__destacado > a {
  width: 100%;
  height: 258px;
}
.msearch__body-result .no-result {
  padding: 0px 70px;
}

.msearch__resultadopredictivo ul {
  margin: 32px 0px 0px 0px;
  padding: 0px;
}
.msearch__resultadopredictivo ul li {
  margin: 0px;
  padding: 0px;
}
.msearch__resultadopredictivo ul li a {
  text-decoration: none;
}
.msearch__resultadopredictivo ul li a:hover {
  color: var(--colorNegro);
}
.msearch__resultadopredictivo ul li::before {
  display: none;
}

.modalsearch .modalmenu__close {
  top: 24px;
  right: 24px;
}

a.toggle-fav-btn-login,
.toggle-fav-btn {
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  border: 0px;
  border-radius: 0px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}
a.toggle-fav-btn-login svg path,
.toggle-fav-btn svg path {
  stroke: var(--colorNegro1);
}
.productlist-cats {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  color: var(--colorNegro1);
  padding-top: 4px;
  pointer-events: initial;
}
.woocommerce-cart-container {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.loading {
  opacity: 0.5;
  pointer-events: none;
}

.loadFavorite {
  opacity: 0.4;
  pointer-events: none;
  animation: blink-heart 1s infinite;
}

footer {
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}
footer::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
footer .footer__img-back {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -2;
  left: 0px;
  top: 0px;
}

footer .footer {
  border-radius: 4px;
  background: rgba(254, 254, 254, 0.9);
  backdrop-filter: blur(10px);
  min-height: 387px;
}

footer .footer .footer__top {
  padding: 28px 32px 21px;
}

.pventa__btns ul,
footer .footer .footer__top ul {
  list-style: none;
  display: flex;
  margin: 0px;
  padding: 0px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-direction: row;
}
footer .footer .footer__top ul li::before {
  display: none;
}
.pventa__btns ul li,
footer .footer .footer__top ul li {
  width: 100%;
  padding: 0px;
}
.footer__siguenos ul li a,
.footer__lang-legal ul li a,
footer .footer__bloques ul li a {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.footer__siguenos ul:hover li a,
.footer__lang-legal ul:hover li a,
footer .footer__bloques ul:hover li a {
  color: var(--colorGris2);
}
.footer__siguenos ul:hover li a:hover,
.footer__lang-legal ul:hover li a:hover,
footer .footer__bloques ul li:hover a:hover {
  color: var(--colorNegro1);
}

.pventa__btns ul li a,
footer .footer .footer__top ul li a {
  color: var(--colorNegro1);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  text-decoration: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.pventa__btns ul li a span,
footer .footer .footer__top ul li a span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
footer .footer__bottom {
  border-top: 1px solid var(--colorGris2);
  padding: 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

footer .footer__bottom > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 269px;
  justify-content: space-between;
}

footer .footer__bloques {
  display: flex;
  justify-content: space-between;
}
footer .footer__bloques ul {
  list-style: none;
  margin: 0px;
  padding: 0;
  display: block;
}
footer .footer__bloques ul li {
  margin-bottom: 4px;
  padding: 0px;
}
footer .footer__bloques ul li::before {
  display: none;
}
footer .footer__bloques ul li:last-child {
  margin-bottom: 0px;
}
footer .footer__bloques ul li a {
  color: var(--colorGris3);
  text-decoration: none;
}

.footer__newsletter {
  max-width: 304px;
}

.footer__lang-legal ul,
.footer__siguenos ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0px;
  padding: 0px;
  color: var(--colorGris3);
  gap: 16px;
  letter-spacing: -0.4px;
  font-size: 14px;
}
.footer__lang-legal ul li::before,
.footer__siguenos ul li::before {
  display: none;
}
.footer__lang-legal ul li,
.footer__siguenos ul li {
  padding: 0px;
}
.footer__siguenos ul li a {
  color: var(--colorNegro1);
  text-decoration: none;
}
.footer__lang-legal ul li a {
  color: var(--colorGris3);
  text-decoration: none;
  letter-spacing: -0.4px;
  font-size: 14px;
}
footer .footer__logo {
  text-align: center;
  margin-top: 70px;
  opacity: 0;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}

.footer__lang-legal {
  display: flex;
  gap: 12px;
}

body.scroll-bottom footer .footer__logo {
  opacity: 1;
}
.show-movil {
  display: none;
}
.btn__arbol {
  display: none;
}
.woocommerce-orders-table__header-order-actions {
  opacity: 0;
}
.woocommerce-orders-table__cell-order-actions {
  text-align: right;
}
.woocommerce-checkout-payment .btn__negro strong,
.btn__negro.checkout-button strong {
  font-weight: 300;
}
.menumovil__menuraiz,
.modalmenu__return {
  display: none;
}

h3.wc-bacs-bank-details-account-name {
  font-family: "Campton";
  line-height: 130%;
  font-size: 16px;
  color: var(--colorGris4);
  margin: 0;
}
.wc-bacs-bank-details {
  list-style: none;
  padding: 0;
  margin: 0px;
  gap: 0;
}
.wc-bacs-bank-details li {
  padding: 0;
  font-size: 0;
}
.wc-bacs-bank-details li strong {
  font-size: 16px;
  font-weight: normal;
}
.wc-bacs-bank-details li::before {
  display: none;
}

.pagemodule-siglepost {
  gap: 42px;
}

.pagemodule-siglepost .singlepost__title {
  max-width: 632px;
  margin: auto;
  padding-top: 64px;
}
.pagemodule-siglepost .singlepost__title h1 {
  font-family: "TT Ramillas TRL";
  font-size: 37px;
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
  color: var(--colorNegro1);
}
.pagemodule-siglepost .mod__texto.mod__texto-pos0 {
  padding-top: 0px;
}

.singlepost__top {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 8px;
}

.singlepost__top a {
  text-decoration: none;
}

.singlepost__top a:hover {
  text-decoration: underline;
}

.mod__cita {
  max-width: 632px;
  margin: 12px auto;
  padding: 48px 96px;
  display: flex;
  align-items: center;
  text-align: center;
  font-family: "TT Ramillas TRL";
  color: #8a8a89;
  text-align: center;
  gap: 32px;
  flex-direction: column;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-top: 1px solid var(--color-color-grey-2, #d7d7d7);
  border-bottom: 1px solid var(--color-color-grey-2, #d7d7d7);
}

.pagemodule-siglepost .modheader__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.mod__imagen {
  padding: 0px var(--padding-right) 0px var(--padding-left);
}
.mod__imagen img {
  width: 100%;
  height: 68rem;
  object-fit: cover;
  border-radius: 4px;
}

.banner__small.mod__banner .modbanner {
  max-width: 632px;
  height: 320px;
  width: 100%;
  padding: 32px;
  margin: auto;
}

.listpost__catsearch {
  display: flex;
  border-bottom: 1px solid var(--colorGris2);
  padding: 32px var(--padding-right) 32px var(--padding-left);
  align-items: center;
  justify-content: space-between;
}

.listpost__cats ul {
  list-style: none;
  margin: 2px 0px 0px 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.listpost__cats ul li {
  margin: 0px;
  padding: 0px;
}
.listpost__cats ul li::before {
  display: none;
}
.listpost__cats ul li a {
  color: var(--colorGris4);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  text-decoration: none;
  display: block;
  margin-top: 1px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.listpost__cats ul li.todos a {
  font-family: "TT Ramillas TRL";
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: var(--colorNegro1);
  display: block;
  margin-top: -1px;
}
.listpost__cats ul li a:hover {
  color: var(--colorNegro1);
  text-decoration: underline;
}

.listpost__search {
  width: 310px;
  margin: 0px;
}

.search-form input {
  width: 310px;
  padding-left: 30px;
  margin: 0px;
}

.search-form button {
  cursor: pointer;
  padding: 0px;
  margin: 0px;
  background: transparent;
  border: 0px;
  display: flex;
}
.search-form label {
  position: relative;
}
.search-form label button {
  position: absolute;
  left: 0px;
  top: 4px;
}

.listpost__posts {
  padding: 64px var(--padding-right) 64px var(--padding-left);
}

.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 96px 0.8rem;
  margin-bottom: 64px;
}
.post-card {
  width: calc(33% - 0.15rem);
}

.post-card .post-card__meta {
  color: var(--color-color-grey-4, #5c5c5b);
  font-size: var(--font-sizes-small, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.post-card .post-card__meta a {
  text-decoration: none;
  display: inline-block;
}
.post-card .post-card__meta a:hover {
  text-decoration: underline;
}
.post-card a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.post-card a h2 {
  color: var(--colorNegro1);
  width: 31.6rem;
  font-family: "TT Ramillas TRL";
  font-size: 21px;
  letter-spacing: -1px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* número de líneas */
  overflow: hidden;
  text-overflow: ellipsis; /* no es suficiente por sí sola para multiline, pero se deja */
}
.post-card a img {
  border-radius: 4px;
  height: 30rem;
  width: 100%;
  object-fit: cover;
}

.post-list-design .post-card:nth-child(8),
.post-list-design .post-card:nth-child(1) {
  margin-right: calc(33% + 0.7rem);
}
.post-list-design .post-card:nth-child(8) img,
.post-list-design .post-card:nth-child(1) img,
.post-list-design .post-card:nth-child(11) img,
.post-list-design .post-card:nth-child(3) img {
  height: 60rem;
}
.post-list-design .post-card:nth-child(11),
.post-list-design .post-card:nth-child(3) {
  margin-left: calc(33% + 0.7rem);
}

.pagination.navigation {
  padding: var(--spacing-md, 16px) 0 var(--spacing-2xl, 48px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  font-family: var(--font-family-Ramillas, "TT Ramillas TRL");
  font-size: var(--font-sizes-h4, 21px);
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 114.286% */
}
.pagination.navigation .screen-reader-text {
  display: none;
}

.pagination.navigation .nav-links {
  display: flex;
  gap: 16px;
}
.pagination.navigation .nav-links a:hover,
.pagination.navigation .nav-links span {
  color: var(--colorNegro1);
}
.pagination.navigation .nav-links a {
  text-decoration: none;
  color: rgba(29, 29, 28, 0.5);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}

.pagemodule-listpost {
  padding-bottom: 0;
}
.pagemodule-listpost .mod__header {
  justify-content: flex-start;
  align-items: end;
  text-align: left;
  padding: 48px;
}
.pagemodule-listpost .mod__header .post-card__meta {
  color: var(--colorBlanco);
  text-transform: uppercase;
}
.pagemodule-listpost .mod__header .post-card__meta a {
  color: var(--colorBlanco);
  text-decoration: none;
}
.pagemodule-listpost .mod__header .post-card__meta a:hover {
  text-decoration: underline;
}

.listpost__cats ul li.current-cat a {
  color: var(--colorNegro1);
  text-decoration: underline;
}

.glightbox-mobile .goverlay,
.goverlay {
  background: #fff;
}
.glightbox-clean .gslide-media {
  box-shadow: none;
}
.glightbox-clean .gclose path,
.glightbox-clean .gnext path,
.glightbox-clean .gprev path {
  fill: var(--colorNegro1);
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover,
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: transparent;
}
.glightbox-clean .gclose {
  opacity: 1;
}
.gclose svg,
.gnext svg,
.gprev svg {
  display: block;
  width: 16px;
}
.glightbox-clean .gclose svg {
  width: 22px;
  height: auto;
}
.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 11px;
  right: 10px;
  position: absolute;
}
.btn-loading {
  position: relative;
}

.btn-loading svg {
  animation: rotate 3s linear infinite;
  transform-origin: center center;
  height: 22px;
  width: 22px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  stroke: #ffffff;
  opacity: 0;
}

.btn-loading .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 2.5s ease-in-out infinite;
  stroke-linecap: round;
}
.btn-loading.load {
  opacity: 0.5;
  pointer-events: none;
}
.btn-loading.load span {
  opacity: 0;
}
.btn-loading.load svg {
  opacity: 1;
}

.listpost__headercat {
  padding: 0px var(--padding-right) 0px var(--padding-left);
  background: var(--colorGris1);
}
.listpost__headercat-cont {
  min-height: 300px;
  padding: 48px 0px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--spacing-xl, 32px);
  align-self: stretch;
  max-width: 670px;
}

.listpost__headercat h1 {
  font-weight: 400;
}

.order-details-after {
  margin-top: 36px;
  text-align: left;
}
.order-details-after table tr td {
  padding-right: 24px;
}

.topbar__wrapper > span:last-child,
.topbar__wrapper > a:last-child {
  display: none;
}

.footer__fixed {
  position: fixed;
  bottom: 18px;
  right: 20px;
  display: flex;
  width: 54px;
  height: 54px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.footer__fixed svg {
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}

.footer__fixed:hover svg {
  transform: scale(1.1);
}

.checkout-order-before > div {
  padding: 16px !important;
  border-radius: 4px !important;
  background: #f5f5f5 !important;
}

#pwgc-redeem-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#pwgc-redeem-form label {
  width: 100% !important;
  font-family: var(--font-family-Ramillas, "TT Ramillas TRL") !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: var(--colorNegro);
  text-transform: none !important;
  order: 1;
  margin-bottom: 9px;
}
#pwgc-redeem-gift-card-number {
  order: 2;
  width: calc(100% - 240px);
  margin-bottom: 0;
  margin-top: 9px;
  font-family: var(--font-family-Campton, Campton);
  font-size: var(--font-sizes-small, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}
#pwgc-redeem-button {
  order: 3;
  display: flex;
  padding: var(--spacing-sm, 8px) var(--spacing-lg, 24px);
  align-items: center;
  gap: var(--spacing-lg, 24px);
  border-radius: 4px;
  background: var(--color-color-grey-5, #3a3a39);
  color: var(--color-color-blanco, #fefefe);
  text-align: center;
  border: 0;
  font-family: "Campton";
  font-size: var(--font-sizes-p, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  margin: 0px !important;
  cursor: pointer;
}
.pwgc-checkout-subtitle {
  line-height: 1.4;
  font-size: 80%;
  font-weight: 300;
  margin-top: 4px;
}

#pwgc-redeem-form #pwgc-redeem-error {
  order: 4;
  width: 100%;
  padding: 0 !important;
  margin-top: 12px;
}

.notifima-subscribe-form {
  padding: 16px !important;
  border-radius: 4px !important;
  background: #f5f5f5 !important;
  margin-bottom: 16px !important;
}
.subscribe-for-interest-text {
  width: 100% !important;
  font-family: var(--font-family-Ramillas, "TT Ramillas TRL") !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: var(--colorNegro);
  text-transform: none !important;
  margin-bottom: 9px !important;
}
.fields_wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.stock.out-of-stock {
  margin-bottom: 16px;
}

.notifima-email {
  margin-bottom: 0 !important;
  margin-top: 9px !important;
  font-family: var(--font-family-Campton, Campton) !important;
  font-size: var(--font-sizes-small, 14px) !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 18px !important;
}
.notifima-unsubscribe,
.notifima-subscribe {
  display: flex;
  padding: 10px 24px 8px 24px;
  align-items: center;
  gap: var(--spacing-lg, 24px);
  border-radius: 4px;
  background: var(--color-color-grey-5, #3a3a39);
  color: var(--color-color-blanco, #fefefe);
  text-align: center;
  border: 0;
  font-family: "Campton";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  margin: 0px !important;
  cursor: pointer;
}
.notifima-error-message {
  margin: 12px 0px;
}

#product__infomsn .stock.out-of-stock {
  margin: 16px 16px 12px;
  font-size: 14px;
  color: var(--colorError);
}

.toggle-visibility {
  display: flex;
  background-color: transparent;
  margin: 0px;
  padding: 0;
  border: 0;
  border-radius: 0;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: var(--color-color-grey-4, #5c5c5b);
  font-family: "Campton";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  cursor: pointer;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.toggle-visibility span {
  display: block;
  margin-top: 1px;
}
.toggle-visibility:hover {
  color: var(--colorNegro1);
}
.toggle-visibility .svg-ocultar {
  display: none;
}

.woocommerce-password-strength {
  margin-bottom: 12px;
}
.woocommerce-password-strength.good {
  color: orange;
}
.woocommerce-password-strength.strong {
  color: green;
}
.woocommerce-password-hint {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 12px;
  display: block;
}

.header__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.header__lang svg path {
  stroke: var(--colorNegro1);
}
.header__lang select {
  background: transparent;
  border: 0;
  font-family: "Campton";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  color: var(--colorNegro1);
  margin-top: 3px;
  padding-right: 14px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(images/lang-negro.svg);
  background-repeat: no-repeat;
  background-position: right 5px;
}

.hover .header__lang {
  opacity: 0.3;
}
.hover .header__lang:hover {
  opacity: 1;
}

body.home header .header__lang svg path,
body.scroll-bottom header .header__lang svg path {
  stroke: var(--colorBlanco);
}
body.home header .header__lang select,
body.scroll-bottom header .header__lang select {
  color: var(--colorBlanco);
}
body.home header .header__lang select,
body.scroll-bottom header .header__lang select {
  background-image: url(images/lang-blanco.svg);
}

body.home.scrollActivo header .header__lang svg path {
  stroke: var(--colorNegro1);
}
body.home.scrollActivo header .header__lang select {
  color: var(--colorNegro1);
  background-image: url(images/lang-negro.svg);
}

body.home.scroll-bottom header .header__lang svg path {
  stroke: var(--colorBlanco);
}

body.home.scroll-bottom header .header__lang select {
  color: var(--colorBlanco);
  background-image: url(images/lang-blanco.svg);
}

.footer__lang-legal ul {
  margin-top: 2px;
}

.wpcf7-form-control {
  display: block;
  width: 100%;
  line-height: 100%;
}
#modal-cita .modalmenu__container {
  max-width: 442px;
}
.wpcf7-spinner {
  position: absolute !important;
  margin-top: -36px !important;
  left: 24px !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 12px 17px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 26px 0px 0px 0px !important;
  padding: 0px !important;
  border: 0px !important;
  color: var(--colorGris4) !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #dc3232 !important;
}

.wpcf7 form.spam .wpcf7-response-output {
  color: #dc3232 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #dc3232 !important;
}

.cartempty .cart-empty.woocommerce-info {
  padding: 0;
  background: no-repeat;
  background-position: 16px center;
  background-repeat: no-repeat;
  gap: 70px;
  align-items: center;
  box-shadow: none;
  border: 0px;
  margin-bottom: 24px;
  font-weight: normal;
  color: var(--colorGris4) !important;
  display: inline-block !important;
  text-align: left !important;
}

.cuenta__orders .woocommerce-info {
  padding: 0;
  background-image: none;
  background-position: none;
  background-repeat: no-repeat;
  gap: 0;
  align-items: center;
  width: auto;
  box-shadow: none;
  border: 0px;
  font-weight: 400;
  color: var(--colorGris4);
}
.cuenta__orders .woocommerce-info a {
  display: none;
}

.cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  margin-bottom: 24px;
}

.cat-list li::before {
  display: none;
}
.cat-list ul {
  margin-bottom: 8px;
}

.cat-item {
  position: relative;
  margin: 0px 0;
  padding: 0;
}

.toggle-subcats {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  transition-duration: 0.4s;
  transform: rotate(180deg);
  margin-top: -5px;
}

.cat-item-title.active .toggle-subcats {
  transform: rotate(0deg);
}

.subcats {
  display: none;
}

.cat-item-title {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  font-weight: 300;
  color: var(--colorNegro1);
  gap: 16px;
}
.cat-item-title a {
  color: var(--colorNegro1);
  text-decoration: none;
}
.cat-item-title a:hover {
  text-decoration: underline;
}
.cat-item .cat-item .cat-item-title {
  padding-left: 40px;
}
.cat-item .cat-item .cat-item .cat-item-title {
  padding-left: 60px;
}
.cat-item .cat-item .cat-item .cat-item .cat-item-title {
  padding-left: 80px;
}
.cat-item .cat-item .cat-item .cat-item .cat-item .cat-item-title {
  padding-left: 100px;
}
#product__msnerror {
  color: var(--colorError);
}

/* Cookies */
.cky-consent-container .cky-consent-bar {
  background: var(--colorNegro1) !important;
  border: 0px !important;
  box-shadow: none !important;
  border-radius: 4px !important;
}
.cky-notice .cky-title {
  color: var(--colorBlanco) !important;
  font-size: 21px !important;
  line-height: 115% !important;
  font-family: "TT Ramillas TRL" !important;
  letter-spacing: -0.7px !important;
  font-weight: 300 !important;
}
.cky-preference-header .cky-preference-title {
  font-size: 21px !important;
  line-height: 115% !important;
  font-family: "TT Ramillas TRL" !important;
  letter-spacing: -0.7px !important;
  font-weight: 300 !important;
}

.cky-notice-group {
  font-weight: 300 !important;
  line-height: 130% !important;
  font-size: 16px !important;
  color: var(--colorBlanco) !important;
}
.cky-notice-des *,
.cky-preference-content-wrapper *,
.cky-dma-content-wrapper *,
.cky-accordion-header-des *,
.cky-gpc-wrapper .cky-gpc-desc * {
  font-weight: 300 !important;
  line-height: 130% !important;
  font-size: 16px !important;
}
.cky-notice-des {
  color: var(--colorBlanco) !important;
}
.cky-btn {
  border-radius: 4px !important;
  background: var(--colorGris5) !important;
  font-size: 16px !important;
  color: var(--colorBlanco) !important;
  font-family: "TT Ramillas TRL" !important;
  padding: 8px !important;
  -moz-transition: var(--ani) !important;
  -ms-transition: var(--ani) !important;
  -o-transition: var(--ani) !important;
  transition: var(--ani) !important;
}

div[data-cky-tag="detail-powered-by"],
div[data-cky-tag="powered-by"] {
  display: none !important;
}

button.cky-show-desc-btn:not(:hover):not(:active) {
  color: var(--colorNegro1) !important;
}
.cky-gpc-wrapper .cky-gpc-desc p,
.cky-preference-body-wrapper .cky-preference-content-wrapper p,
.cky-accordion-header-wrapper .cky-accordion-header-des p,
.cky-cookie-des-table li div:last-child p {
  color: var(--colorNegro1) !important;
}

ul.cky-cookie-des-table li::before {
  display: none !important;
}
ul.cky-cookie-des-table {
  gap: 0px !important;
}
.cky-audit-table .cky-cookie-des-table {
  font-size: 12px !important;
  line-height: 16px !important;
}

.cky-accordion .cky-accordion-chevron i::before {
  -webkit-transform: rotate(45deg) !important;
  -moz-transform: rotate(45deg) !important;
  -ms-transform: rotate(45deg) !important;
  -o-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
  top: 6px !important;
}
.cky-accordion.cky-accordion-active .cky-accordion-chevron i::before {
  -webkit-transform: rotate(-135deg) !important;
  -moz-transform: rotate(-135deg) !important;
  -ms-transform: rotate(-135deg) !important;
  -o-transform: rotate(-135deg) !important;
  transform: rotate(-135deg) !important;
  top: 9px !important;
}
.cky-consent-bar button:focus,
.cky-modal.cky-modal-open button:focus {
  color: var(--colorGris4) !important;
}
.cky-modal.cky-modal-open .cky-prefrence-btn-wrapper button:hover {
  opacity: 1 !important;
  background-color: var(--colorNegro) !important;
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

body.home .pagemodule {
  padding-bottom: 0px;
}

body.home .mod__bannerregalo {
  border-radius: 0px;
}

.woocommerce-shipping-fields {
  padding: 24px 24px 24px 24px;
}

.notifima-montero {
  display: none;
}


.product-price span.screen-reader-text,
.custom-price span.screen-reader-text{
  display: none;
}
ins{
  text-decoration: none;
}
del{
  font-size: 14px;
  color: var(--colorGris3);
}

@media screen and (min-height: 850px) {
  .modalmenu {
    align-items: flex-start;
  }
  .modalmenu .modalmenu__container {
    margin-top: 150px;
  }
}

@media screen and (max-width: 1380px) {
  /* .modalmenu.active .modalmenu__container {
    margin-top: 80px;
  } */
}

@media screen and (max-width: 1140px) {
  :root {
    --padding-left: 24px;
    --padding-right: 24px;
  }
  .header .header__center ul {
    width: 300px;
  }
  .mod__bannerimagen {
    padding: 0px 24px;
  }
  .mod__bloquesimgs {
    padding: 0px 24px;
  }
  .mod__bannerregalo {
    padding: 64px 24px;
  }

  footer .footer__bottom > div:first-child {
    width: 80rem;
  }
  .menu__destacados {
    display: none;
  }
  .modalmenu .modalmenu__container {
    max-width: 992px;
  }
  .carrito .carrito__resumen {
    width: 55.6rem;
  }
  .pagecheckout {
    gap: 48px;
  }

  .productlist-fav {
    transform: translateX(0);
    opacity: 1;
  }
  .slick-arrow {
    opacity: 1;
  }
  .page404 {
    padding: 32rem 0px 12rem;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --padding-left: 16px;
    --padding-right: 16px;
  }

  body::-webkit-scrollbar {
    width: initial !important;
  }

  body::-webkit-scrollbar-thumb {
    background-color: initial;
    border-radius: initial;
  }

  body::-webkit-scrollbar-track {
    background: initial;
  }
  .activeModal {
    overflow: hidden;
    padding-right: initial;
  }

  .modtexto__cont img {
    max-width: 100%;
    height: auto;
  }
  .carrito__item img {
    width: 47.5rem !important;
    height: 58rem;
  }

  footer .footer .footer__top ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  footer .footer__bottom {
    flex-direction: column;
    gap: 24px;
  }
  .footer__newsletter {
    width: 100%;
    max-width: 100%;
  }
  footer .footer__bottom > div {
    height: auto;
  }
  footer {
    min-height: 100vh;
    height: auto;
  }

  footer .footer__bloques {
    flex-direction: column;
    gap: 24px;
    display: flex;
  }
  footer .footer__bloques.active {
    display: none;
  }
  .footer__siguenos ul li:first-child {
    display: none;
  }
  footer .footer .footer__top {
    padding: 24px 16px;
  }
  footer .footer__bottom > div:first-child {
    width: 100%;
  }
  footer .footer__bottom {
    padding: 24px 16px;
  }
  .hidden-movil {
    display: none;
  }
  .show-movil {
    display: block;
  }
  .footer__lang-legal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 14px;
  }
  .btn__arbol {
    background: transparent;
    padding: 0px;
    margin: 0px;
    cursor: pointer;
    display: flex;
    border: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .btn__arbol svg {
    transform: rotate(180deg);
  }
  .btn__arbol.active svg {
    transform: rotate(0deg);
  }
  .footer__siguenos ul {
    margin-top: 16px;
  }
  .pagemodule {
    /* padding: 96px 0px; */
    gap: 64px;
    padding-bottom: 64px;
  }
  .tabspro__products {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 0.5%;
  }
  .productlist {
    width: 87.43rem;
  }
  .productlist .productlist__top {
    width: 87.43rem;
    height: 105rem;
  }
  .productlist .productlist__imgs-img {
    height: 105rem;
  }
  .productlist .productlist__imgs .productlist__imgs-img img {
    width: 87.43rem;
    height: 105rem;
  }
  .modcarousel__slick .modcarousel__slick-item {
    margin: 0px 8px 0px 0px;
  }

  .productlist-small {
    width: 49%;
  }

  .tabspro__contents {
    position: relative;
    height: 245rem;
  }

  .productlist.productlist-small .productlist__imgs .productlist__imgs-img img {
    width: 65rem;
    height: 75rem;
    margin: auto;
  }
  .productlist.productlist-small .productlist__imgs {
    height: 75rem;
  }
  .productlist.productlist-small .productlist__imgs-img {
    height: 75rem;
  }

  .productlist.productlist-small .productlist__top {
    width: 100%;
    height: 75rem;
  }

  .slick-arrow {
    width: 24px;
    height: 30px;
    background-size: 10px;
    top: calc(50% - 15px);
    left: 2rem;
  }
  .slick-arrow.slick-next {
    right: 2rem;
  }

  .mod__bannerregalo {
    flex-wrap: wrap;
    gap: 48px;
    padding: 64px 16px;
  }
  .mod__bannerregalo > div {
    width: 100%;
  }
  .bannerregalo__img img {
    height: 109rem;
    width: 125rem;
  }
  .mbm-8 {
    margin-bottom: 8px;
  }
  .mbm-32 {
    margin-bottom: 32px;
  }
  .mod__bannerregalo {
    border-radius: 4px;
  }
  .mod__bloquesimgs {
    padding: 0px 16px;
    flex-direction: column;
    gap: 32px;
  }
  .mod__bloquesimgs > div {
    width: 100%;
  }
  .mod__bloquesimgs .bloquesimgs__img img {
    height: 109rem;
    width: 125rem;
  }
  .bloquesimgs__bloque {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
  .bloquesimgs__bloque .bloquesimgs__titulo {
    order: 1;
    margin: 0px;
  }
  .bloquesimgs__bloque .bloquesimgs__img {
    order: 3;
    margin: 0px;
  }
  .bloquesimgs__bloque .bloquesimgs__descripcion {
    order: 2;
    margin: 0px;
  }
  .mod__bannerimagen {
    padding: 0px 16px;
  }
  .mod__bannerimagen__img img,
  .mod__bannerimagen__img {
    height: 182rem;
  }

  .mod__header-home {
    height: calc(100vh - 100px) !important;
  }
  .mod__header-home .modheader__data {
    width: calc(100% - 32px);
  }
  .mod__header-home::before {
    background: none;
  }

  .topbar {
    padding-left: 0px;
  }

  .topbar__txt svg {
    display: none;
  }

  .topbar .topbar__txt {
    margin-right: 30px;
    overflow: hidden;
    justify-content: flex-start;
  }
  .topbar__marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
  }
  .topbar__wrapper {
    display: inline-flex;
    animation: scrolling 22s linear infinite;
    margin-top: 1px;
  }
  .topbar__wrapper > span,
  .topbar__wrapper > a {
    padding-left: 12px;
    padding-right: 12px;
    display: inline-block;
  }
  .topbar__wrapper > span:last-child,
  .topbar__wrapper > a:last-child {
    display: block;
  }
  .topbar {
    padding-bottom: 15px;
  }

  /* Define los fotogramas clave para la animación */
  @keyframes scrolling {
    from {
      transform: translateX(0);
    } /* Posición inicial */
    to {
      transform: translateX(-50%);
    } /* Posición final (mueve el 50% del ancho) */
  }

  .header .header__center ul {
    display: none;
  }
  .logoHeader {
    width: 70px;
  }
  .btn__search {
    font-size: 0px;
    border: 0px;
    width: 32px;
    height: 32px;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn__search svg {
    transform: scale(1.3);
  }
  .btn__search::before {
    display: none;
  }
  .header .header__right,
  .header .header__left {
    width: 130px;
    flex: 0 0 auto;
  }
  .btn__menu-movil {
    padding: 0px;
    margin: 0px;
    background: transparent;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__left {
    display: flex;
    gap: 8px;
  }

  body.scroll-bottom .btn__menu-movil svg path {
    stroke: var(--colorBlanco);
  }

  body.home.scrollActivo .btn__menu-movil svg path,
  .btn__menu-movil svg path {
    stroke: var(--colorNegro);
  }

  body.home .btn__menu-movil svg path,
  body.home.scroll-bottom .btn__menu-movil svg path {
    stroke: var(--colorBlanco);
  }
  body.scrollActivo .logoHeader {
    width: 56px;
  }
  body.scrollActivo header {
    height: 130px;
  }
  .mod__header {
    height: 215rem;
  }
  .modheader__data {
    padding: 0px 16px 32px;
  }
  .mod__columnastexto {
    flex-direction: column;
    gap: 64px;
  }
  .mod__columnastexto > div:last-child,
  .mod__coltxt_desc,
  .mod__columnastexto > div:first-child {
    width: 100%;
    margin: 0px;
  }
  .mod__columnastexto img {
    width: 100%;
    height: 200rem !important;
    object-fit: cover;
    margin-top: 26px;
  }
  .modcarousel__slick.modcarousel__slick-imgs .modcarousel__slick-item img {
    height: 125rem;
    width: 88rem;
  }
  .modcarousel {
    padding: 0px 16px;
  }
  .mod__columnastexto > div:last-child img {
    height: 100rem !important;
  }
  .mod__columnastexto.align_b_s > div:last-child {
    order: 3;
  }
  .mod__banner .modbanner {
    width: 124.5rem;
    height: 153rem;
    padding: 32px;
    position: relative;
    z-index: 0;
  }
  .mod__banner .modbanner img {
    width: 100%;
    height: 153rem;
  }
  .mod__banner .modbanner::before {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    content: "";
    background: linear-gradient(
      306deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 0;
  }
  .woocommerce-cart .mod__banner .modbanner::before {
    background: #000;
    z-index: 0;
    opacity: 0.25;
  }
  .woocommerce-cart .mod__banner .modbanner {
    padding: 24px;
  }
  .mod__banner .modbanner .modbanner__bottom,
  .mod__banner .modbanner .modbanner__top {
    position: relative;
    z-index: 1;
  }
  .mod__texto.mod__texto-pos0 {
    padding-top: 58px;
  }
  .woocommerce-checkout .mod__texto.mod__texto-pos0,
  .woocommerce-cart .mod__texto.mod__texto-pos0 {
    padding-top: 0px;
  }
  footer .footer__logo {
    margin-top: 24px;
    margin-bottom: 24px;
    opacity: 1;
  }
  .page404 {
    padding: 230px 16px 90px;
  }
  .pventa__btns ul {
    flex-direction: column;
    gap: 0px;
  }
  .pventa__btns ul li {
    border-bottom: 1px solid var(--colorGris2);
  }
  .pventa__btns ul li:last-child {
    border-bottom: 0px;
  }
  .pventa__btns ul li a {
    padding: 24px 0px;
  }
  .pventa__btns {
    padding: 0px 0px 24px;
  }
  .modal .modal_right {
    width: 100%;
    height: 100vh;
    padding: 48px 16px;
  }
  .modal__tienda .modal__data {
    max-height: 100vh;
    height: calc(100vh - 148px);
  }
  .modal__tienda .modal__data p {
    margin-bottom: 4px;
  }

  .woocommerce-MyAccount-navigation {
    overflow: auto;
    padding: 32px 16px;
    margin-top: -58px;
    gap: 48px;
  }
  .woocommerce-MyAccount-navigation::-webkit-scrollbar {
    display: none;
  }
  .woocommerce-MyAccount-navigation a {
    white-space: nowrap;
  }
  .woocommerce-MyAccount-navigation ul {
    gap: 16px;
    margin: 0px;
    padding: 0px;
    width: max-content;
    white-space: nowrap;
  }
  .cuenta__micuenta {
    flex-direction: column;
  }
  .cuenta__micuenta > div {
    width: 100%;
    min-height: auto;
  }
  .cuenta__micuenta > div:first-child {
    padding: 64px 16px 48px;
    gap: 48px;
  }
  .cuenta__micuenta > div:last-child img {
    height: 174rem;
  }

  .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-orders-table tr {
    display: block;
    margin-bottom: 48px;
  }
  .woocommerce-orders-table tbody th,
  .woocommerce-orders-table tbody td {
    padding: 8px 0px;
    border-bottom: 0px;
    display: block;
    width: 100%;
  }
  .show-movil-line {
    display: inline-block !important;
  }

  .woocommerce-orders-table tbody th {
    border-bottom: 1px solid var(--colorGris2);
    margin-bottom: 12px;
    padding: 16px 0px;
  }

  .pagecheckout {
    flex-direction: column;
  }

  .table-checkout tr td,
  .carrito__resumen .cart_totals table tr td {
    text-align: right;
  }

  .checkout__listproduct {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
  .checkout__listproduct > div {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  .checkout__listproduct > div .checkout__listproduct-img {
    width: 47.5rem;
    height: 58rem;
  }
  .checkout__listproduct > div .checkout__listproduct-img img {
    width: 47.5rem;
    height: 58rem;
  }

  .productslist__list {
    gap: 32px 8px;
  }

  .productlist {
    width: 100%;
    flex: 1 1 calc((100% - 0 * 8px - 8px) / 2);
    max-width: calc((100% - 0 * 8px - 8px) / 2);
  }

  .carrito {
    flex-direction: column;
    gap: 64px;
  }
  .carrito__itemdata,
  .carrito .carrito__cesta {
    width: 100%;
  }
  .carrito__item {
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .carrito__item > div:first-child {
    width: 47.5rem;
    height: 58rem;
  }

  .carrito .carrito__resumen {
    width: 100%;
  }
  .carrito__resumen-desc {
    display: none;
  }
  .single_add_to_cart_button,
  .checkout-btn-pay,
  .wc-proceed-to-checkout {
    position: fixed !important;
    bottom: 16px;
    width: calc(100% - 32px);
    z-index: 1;
    margin: 0px;
  }
  .woocommerce-shipping-fields,
  .woocommerce-billing-fields {
    padding: 24px 16px 24px 16px;
  }
  .pagecheckout #shipping_country_field,
  .pagecheckout #shipping_phone_field,
  .pagecheckout #shipping_postcode_field,
  .pagecheckout #shipping_city_field,
  .pagecheckout #shipping_state_field,
  .pagecheckout #billing_phone_field,
  .pagecheckout #billing_postcode_field,
  .pagecheckout #billing_city_field,
  .pagecheckout #billing_state_field,
  .pagecheckout #shipping_phone_field,
  .pagecheckout #shipping_country_field,
  .pagecheckout #shipping_email_field,
  .pagecheckout #shipping_address_1_field,
  .pagecheckout #billing_phone_field,
  .pagecheckout #billing_country_field,
  .pagecheckout #billing_email_field,
  .pagecheckout #billing_address_1_field,
  .form-row-last,
  .form-row-first {
    width: 100%;
    float: none;
  }
  .wc_payment_methods li,
  .woocommerce-shipping-methods li {
    overflow: hidden;
  }
  .shipping_method_opc {
    padding: 24px 24px 21px 24px;
    padding-left: 37px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .shipping_method_opc span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .shipping_method_opc::before {
    left: 16px;
  }

  .cartempty {
    display: flex;
    gap: 96px;
    flex-direction: column;
  }
  .cartempty .mod__banner .modbanner {
    width: 124.5rem;
    height: 153rem;
  }
  .cartempty .mod__banner .modbanner img {
    width: 100%;
    height: 153rem;
  }
  .loginre {
    flex-direction: column;
    gap: 96px;
  }
  .loginre::before {
    display: none;
  }

  .product__content {
    flex-direction: column;
  }
  .product__content .product__imgs {
    padding: 120px 0px 0px 0px;
    width: calc(100% + 32px);
    margin-top: -128px;
    margin-left: -16px;
    height: 100%;
    position: relative;
    top: 0;
  }

  .product__imgs .slick-arrow {
    left: -30px;
    top: 35%;
  }
  .product__imgs .slick-arrow.slick-next {
    left: auto;
    right: -30px;
  }
  .product__content .product__img-big img {
    width: 137rem;
    margin: auto;
    height: 160rem;
    object-fit: cover;
  }
  .product__content .product__img-big div {
    padding: 0;
  }
  .product__content .product__imgs .slick-dots {
    gap: 8px;
    margin-top: 0px;
    position: absolute;
    width: 100%;
    bottom: -25px;
  }
  .product__img-small {
    display: none;
  }
  .product__content .product__data {
    width: 100%;
    padding: 48px 0px 0px 0px;
    margin: 0;
  }
  .product__related_content {
    margin-top: 96px;
  }

  .btn__var-filter {
    min-width: 150px;
    width: 150px;
  }
  .select-order {
    width: 150px;
  }
  .modal__data.modal__data-filter {
    max-height: 100vh;
    height: calc(100vh - 160px);
  }
  .modal__data-filterlist {
    margin-top: 24px;
  }
  .modalmenu .modalmenu__container {
    height: 100vh;
    margin: 0px;
    margin-top: 20px;
    overflow: auto;
  }
  .modalmenu .modalmenu__container::-webkit-scrollbar {
    display: none;
  }
  .modalmenu.active .modalmenu__container {
    margin-top: 0px;
    height: 100vh;
    margin: 0px;
  }
  .msearch .msearch__header {
    padding: 48px 0px 0px 0px;
  }
  .modalsearch .modalmenu__content {
    height: 100vh;
    width: 100vw;
    overflow: auto;
    padding: 24px 16px 96px 16px;
  }
  .modalsearch .modalmenu__content::-webkit-scrollbar {
    display: none;
  }
  .msearch__body-result {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
  }
  .msearch__destacado {
    flex-direction: column;
    padding: 0;
  }
  .msearch__body {
    overflow: auto;
    margin-left: 0;
    width: calc(100%);
    padding: 32px 0px 0px 0px;
  }
  .msearch__destacado > a {
    width: 100%;
    height: 160px;
  }

  .productlistsmall {
    margin-bottom: 24px;
    width: calc(50% - 4px);
  }
  .productlistsmall span {
    width: 61rem;
    height: 73.2rem;
  }

  .productlistsmall span img {
    width: 61rem;
    height: 73.2rem;
  }

  .menumovil__menu {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--colorGris2);
  }
  .menumovil__menu ul {
    margin: 0px;
    padding: 0px;
    gap: 16px;
    width: 100%;
  }
  .menumovil__menu ul li {
    padding: 0px;
  }

  .menumovil__menu ul li::before {
    display: none;
  }
  .menumovil__menu ul li a {
    width: 100%;
    font-family: "TT Ramillas TRL";
    display: flex;
    font-size: 21px;
    line-height: 24px;
    color: var(--colorNegro);
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  #modalmenu-mmovil .modalmenu__content {
    display: block;
  }
  .menumovil__container {
    padding: 60px 16px 32px 16px;
  }

  .menu__destacados-raiz {
    display: flex !important;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    border: 0px;
    padding: 0px 0px 24px !important;
  }
  .menu__destacados.menu__destacados-raiz > a {
    width: 62rem;
    height: 254px;
  }
  .menu__destacados.menu__destacados-raiz > a > span {
    bottom: 8px;
    left: 8px;
  }
  .menu__items-container {
    padding: 24px 16px 60px 16px;
    position: relative;
    gap: 32px;
    margin-bottom: 120px;
  }
  .menu__columna {
    min-width: 0rem !important;
    width: 56rem !important;
  }
  .btn-menu-vertodo {
    left: 16px;
  }
  .menu__destacados {
    display: block;
    width: 100%;
    padding-top: 12px;
  }
  .modalmenu__content {
    flex-direction: column;
  }
  .menu__destacados > a {
    width: 60rem;
    height: 86px;
  }
  .menu__destacados > a > span {
    bottom: 8px;
    left: 8px;
  }

  .modalmenu__return {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 0px;
    padding: 0px;
    margin: 0px;
    top: 20px;
    left: 16px;
    color: var(--colorGris4);
    font-size: 14px;
    font-family: "Campton";
  }
  .modalmenu__return svg {
    margin-top: -3px;
  }

  .menumovil__menuraiz {
    padding: 48px 0px 0px 0px;
    overflow: auto;
    display: block;
  }

  .menumovil__menuraiz::-webkit-scrollbar {
    display: none;
  }

  .menumovil__menuraiz ul {
    display: flex;
    gap: 16px;
    flex-direction: row;
    width: max-content;
    margin: 16px;
  }
  .menumovil__menuraiz ul li {
    margin: 0px;
    padding: 0px;
  }
  .menumovil__menuraiz ul li::before {
    display: none;
  }
  .menumovil__menuraiz ul li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--colorNegro1);
  }
  .menu__destacados-1.menu__destacados > a {
    width: 100%;
    height: 180px;
  }
  .menu__destacados-2 > a {
    height: 180px;
    width: 61rem;
  }
  .menu__destacados-2 > a:first-child {
    margin-right: 0;
    margin-bottom: 0px;
  }
  .menu__destacados-3 > a:first-child {
    height: 180px;
    margin-right: 8px;
  }
  .menu__destacados-2 {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }
  .menu-active-movil {
    border-bottom: 1px solid var(--colorNegro1);
  }

  .productlist__accs {
    top: 0px;
    padding: 8rem;
    left: 0px;
    z-index: 1;
  }
  .productlist-cats a {
    height: 9.4rem;
    padding: 0px 3.8rem;
  }
  .productlist__accs {
    top: 0px;
    padding: 4rem;
  }
  .checkout__listproduct-data {
    width: 62rem;
    font-size: 14px;
    line-height: 130%;
  }
  .productlist .productlist__bottom {
    width: 80rem;
  }
  .productlist-small.productlist .productlist__bottom {
    width: 54rem;
  }
  .container__web {
    overflow: hidden;
  }
  .productslist {
    padding-top: 32px;
  }
  .shop-wrapper {
    padding-bottom: 80px;
  }
  .sin-topbar-container .product__content .product__imgs {
    padding: 0px;
    margin-top: 0;
    top: 0px;
  }
  .productlist:hover .slick-arrow {
    left: 2rem;
  }
  .productlist:hover .slick-arrow.slick-next {
    left: auto;
    right: 2rem;
  }
  .carrito__itemdata-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px !important;
  }
  .carrito__itemdata-qua {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .carrito__itemdata {
    width: 71rem;
  }
  .pagemodule-siglepost .singlepost__title {
    padding: 64px var(--padding-right) 0px var(--padding-left);
  }
  .mod__cita {
    padding: 48px var(--padding-right) 48px var(--padding-left);
  }
  .pagemodule-siglepost {
    gap: 32px;
    padding-bottom: 32px;
  }
  .form-row-last {
    margin-left: 0px;
  }

  .banner__small.mod__banner .modbanner {
    height: 420px;
  }

  .post-card {
    width: 100%;
    margin: 0px !important;
  }
  .post-card a h2 {
    width: 90%;
  }
  .post-card a img {
    height: 109rem !important;
  }

  .post-list {
    gap: 64px 0.8rem;
    margin-bottom: 64px;
  }

  .listpost__catsearch {
    flex-direction: column;
    padding: 36px 24px 24px 24px;
    gap: 24px;
    align-items: flex-start;
  }

  .listpost__cats {
    overflow: auto;
    width: calc(100% + 48px);
    margin: 0px 0px 0px -24px;
    padding: 0px 24px;
  }
  .listpost__cats::-webkit-scrollbar {
    display: none;
  }
  .listpost__cats .archive-categories {
    width: max-content;
  }

  .msearch__body-result .no-result {
    padding: 0px;
    font-size: 24px;
    margin: 0px !important;
  }
  .activeModal header {
    padding: 0;
  }

  .pagemodule-listpost .modheader__title {
    font-weight: normal;
    font-size: 28px;
    line-height: 32px;
  }

  .wc_payment_methods li,
  .woocommerce-shipping-methods li {
    padding: 0px;
    width: 100%;
  }

  .checkout-order-before div {
    font-size: 12px !important;
    padding: 16px 16px !important;
  }

  #pwgc-redeem-gift-card-number {
    width: 100%;
    margin-bottom: 18px !important;
    margin-top: 8px;
  }
  #pwgc-redeem-button {
    padding: 12px;
    width: 100%;
  }

  .single-product .footer__fixed,
  .woocommerce-cart .footer__fixed,
  .woocommerce-checkout .footer__fixed {
    bottom: 75px;
  }

  .woocommerce-NoticeGroup,
  .woocommerce-notices-wrapper {
    left: 4%;
    width: 92%;
  }

  .woocommerce-notices-wrapper .woocommerce-info,
  .woocommerce-notices-wrapper .woocommerce-error-content,
  .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-NoticeGroup .woocommerce-info,
  .woocommerce-NoticeGroup .woocommerce-error-content,
  .woocommerce-NoticeGroup .woocommerce-message {
    padding: 16px 32px 16px 16px;
  }
  button.notice-close {
    font-size: 27px;
  }

  .footer__lang-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__lang-legal > div:first-child {
    order: 2;
  }
  .footer__lang-legal > div:last-child {
    order: 1;
  }
  .header .header__right {
    gap: 6px;
  }
  header .header__lang svg {
    display: none;
  }
  .pagemodule-listpost .mod__header {
    padding: 0px 0px 24px;
  }
  .font-21 {
    font-size: 20px;
    line-height: 115%;
  }
  .mod__bannerimagen__img {
    padding-top: 27px;
  }
  .mod__bannerimagen__img .font-37 {
    font-size: 33px;
  }
  #map {
    height: 90vh;
  }
  .pventa {
    margin-bottom: -40px;
  }
  .glightbox-clean .gprev {
    top: calc(50% - 25px);
    left: 0px;
    width: 40px;
    height: 50px;
  }
  .glightbox-clean .gnext {
    top: calc(50% - 25px);
    right: 0px;
    width: 40px;
    height: 50px;
  }
  .cky-consent-container .cky-consent-bar {
    border-radius: 4px 4px 0px 0px !important;
  }
  .cky-consent-bar button:focus {
    color: var(--colorBlanco) !important;
  }
  .cky-btn:hover {
    opacity: 1 !important;
  }

  .modal__data-btns {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: calc(100%);
    background: var(--colorBlanco);
    padding: 16px;
  }
  .page404 .font-37 {
    font-size: 28px;
    line-height: 105%;
  }
}

@media screen and (max-width: 600px) {
}

@keyframes alert {
  0% {
    bottom: 200px;
    opacity: 0;
    visibility: visible;
  }
  10% {
    bottom: var(--padding-left);
    opacity: 1;
    visibility: visible;
  }
  90% {
    bottom: var(--padding-left);
    opacity: 1;
    visibility: visible;
  }
  100% {
    bottom: 200px;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes alertMovil {
  0% {
    top: 120vh;
    opacity: 0;
    visibility: visible;
  }
  10% {
    top: 65vh;
    opacity: 1;
    visibility: visible;
  }
  90% {
    top: 65vh;
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    top: 120vh;
    visibility: hidden;
  }
}

@keyframes blink-heart {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
