:root {
  --body-background-color: #fff;
  --primary-font: "Open Sans", sans-serif;
  --custom-icons: "icomoon";
  --base-size-font: 16px;
  --yellow-color: #ffdd00;
  --red-color: #e1251b;
  --orange-color: #da4850;
  --blue-color: #26486d;
  --green-color: #00ae9d;
  --pink-color: #d16fde;
  --gray-color: #fafafa;
  --gray-color-2: #eeeeee;
  --border-radius: 20px;
  --transition: all 0.4s ease;
  --box-shadow: rgb(0 0 0 / 10%) 1px 1px 10px;
  --header-height: 55px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  :root {
    --header-height: 100px;
  }
}
@media screen and (min-width: 1280px) {
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--body-background-color);
  font: 400 var(--base-size-font) var(--primary-font);
  color: var(--blue-color);
  font-weight: 400;
  line-height: 1.2;
  /*   opacity: 0; */
  padding-top: var(--header-height);
}
/* body.loading {
  opacity: 1;
  transition: var(--transition);
}
body.fading {
  opacity: 0;
  transition: var(--transition);
} */

.d-flex {
  display: flex;
}
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
p {
  color: #5e5e5e;
}

/* --- Container --- */

.container {
  margin: 0 auto;
  width: 98%;
  max-width: 1230px;
  position: relative;
  padding: 0 20px;
  z-index: 10;
}

@media screen and (min-width: 580px) {
  .container {
    width: 95%;
  }
}

@media screen and (min-width: 1280px) {
  .container {
    width: 100%;
  }
}

/* --- Slick --- */

.slick-dots {
  display: inline-flex;
  justify-content: center;
  gap: 7px;
  bottom: 0;
  background-color: var(--blue-color);
  width: auto;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 8px 25px;
  border-radius: 9999px;
  position: relative;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  background-color: #fff;
  margin: 0;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  pointer-events: all;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active {
  background-color: var(--yellow-color);
}

/* --- Botones --- */

.btn {
  display: inline-block;
  padding: 10px 30px;
  min-height: 38px;
  text-align: center;
  position: relative;
  background-color: transparent;
  border: 1px solid;
  transition: all 0.3s cubic-bezier(0.01, 0.32, 0.11, 0.99);
  font-size: 1.6rem;
  font-weight: 400;
  transition: var(--transition);
  border-radius: 9999px;
  text-decoration: none !important;
}

.-primary {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
  color: #fff !important;
  padding-right: 55px !important;
  min-width: 150px;
}

.-primary:after {
  content: "\e902";
  position: absolute;
  top: -1px;
  right: -2px;
  font-size: 14px;
  font-family: var(--custom-icons) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 25px;
  border-bottom-right-radius: 99999px;
  border-top-right-radius: 99999px;
  background-color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
  color: var(--blue-color);
  transition: var(--transition);
}

.-primary:hover {
  background-color: var(--yellow-color);
  border-color: var(--yellow-color);
  color: var(--blue-color) !important;
}

.-primary:hover:after {
  border-color: var(--blue-color);
  background-color: var(--blue-color);
  color: #fff !important;
}
.-secondary {
  background-color: var(--orange-color);
  color: #fff;
  border-color: var(--orange-color);
}
.-secondary span {
  color: var(--yellow-color);
}
.-secondary:hover {
  background-color: var(--red-color);
  border-color: var(--red-color);
}
.-tertiary {
  background-color: var(--blue-color);
  color: #fff;
  border-color: var(--blue-color);
}

/* SECTIONS */
main {
    padding-top: 7px;
}
section {
  overflow-x: clip;
}
.section {
  padding: 3rem 0;
  position: relative;
  overflow-x: clip;
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
}

.section-title {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 1024px) {
  .section-title {
    margin-bottom: 40px;
    padding-bottom: 30px;
    flex-direction: row;
  }
}

.section-title h2 {
  font-size: 24px;
  font-weight: 400;
}

@media screen and (min-width: 1280px) {
  .section-title h2 {
    font-size: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .section-title,
  .section-title h2 {
    text-align: center;
  }
}

.section-title span {
  color: var(--color-primario);
}

.section-title h2 br {
  display: none;
}

@media screen and (min-width: 1024px) {
  .section-title h2 br {
    display: block;
  }
}

.section-title.-center {
  text-align: center;
}

.section-title.-left,
.section-title.-left h2,
.section-title.-left p {
  text-align: left !important;
}

.section-title p {
  margin: 0;
  font-size: 18px;
  color: var(--color-texto-claro);
}

.section-title p br {
  display: none;
}

@media screen and (min-width: 1280px) {
  .section-title p br {
    display: block;
  }
}

/* --- Header --- */

.header__top {
  height: 35px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  transition: var(--transition);
}

@media screen and (max-width: 1024px) {
  .header__top {
    display: none;
  }
}

.header.activeFixed .header__top {
  transform: translateY(-100%);
}

.header__top-items {
  height: 100%;
  position: relative;
}

.header__top:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 72%;
  height: 100%;
  width: 100vw;
  background-image: url(../images/top-bg.svg);
  background-position: center right;
  background-size: 35%;
  background-repeat: no-repeat;
}

.header__top-items {
  display: flex;
  align-items: center;
  padding: 0 65px;
}

.header__top-items.-contact {
  background-color: var(--yellow-color);
  padding: 0px 0 0 40px;
}

.header__top-items.-contact:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--yellow-color);
  width: 100vw;
  height: 100%;
}

.header__top-items.-contact a {
  font-weight: 600;
}

.header__top-items.-slider p {
  position: relative;
  font-weight: 700;
}
.header__top-items p {
  color: var(--primary-color);
}

.header__top-items.-slider p:before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
  width: 18px;
  height: 18px;
  background-image: url(../images/logo.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: var(--transition);
  background-color: var(--gray-color);
  border-bottom: 1px solid var(--gray-color-2);
  /* overflow: hidden; */
  flex-direction: column;
}

@media screen and (min-width: 580px) {
  .header {
    /*   height: var(--header-height); */
  }
  .header.activeFixed {
    transform: translateY(-35px);
  }
}
@media screen and (min-width: 980px) {
  .header {
    padding: 0;
    border: 0;
    background-color: #fff;
  }
}
@media screen and (min-width: 1280px) {
}

.header__logo {
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  background-color: var(--orange-color);
  border-top-right-radius: 99999px;
  border-bottom-right-radius: 99999px;
}

.header__logo:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: var(--orange-color);
}

.header__logo-image {
  display: inline-block;
  padding: 10px 30px;
  padding-right: 40px;
}
.header__logo-image svg {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__logo-image svg {
    width: 135px;
    height: auto;
  }
  .header.activeFixed .header__logo-image svg {
    width: 120px;
  }
  .header__logo-image {
    padding-left: 0;
    padding-right: 55px;
  }
  .header__logo .header__toggle {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
}

.header__bottom {
  display: flex;
  position: relative;
  flex-wrap: wrap;
}
.header__bottom:after {
  content: "";
  position: absolute;
  top: -1px;
  left: 100%;
  background-color: var(--gray-color);
  border-top: 1px solid var(--gray-color-2);
  /*   border-bottom: 1px solid var(--gray-color-2); */
  width: 100vw;
  height: 100%;
}
.header.activeFixed .header__bottom:after {
  display: none;
}
.header__navigation {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
}
.header.activeFixed {
  border-bottom: 0;
  background-color: var(--gray-color);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__navigation {
    padding-left: 70px;
    display: flex;
  }
  .header__bottom {
    flex-wrap: nowrap;
    flex-direction: row;
    background-color: var(--gray-color);
    transition: var(--transition);
    border-top: 1px solid var(--gray-color-2);
    /*     border-bottom: 1px solid var(--gray-color-2); */
  }
  .header.activeFixed .header__bottom {
    border-top: 0;
    border-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
}

.header__cat-icon,
.header__cat-icon:before,
.header__cat:after,
.header__cat span {
  transition: 0.2s transform ease;
  border-radius: 9999px;
}

.header__cat {
  display: none;
  align-items: center;
  gap: 10px;
  /*   margin-right: 70px; */
  background-color: transparent;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .header__cat {
    display: flex;
  }
}

.header__cat-text {
  font-size: 16px;
  color: var(--blue-color);
}

.header__cat-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
}

.header__cat-icon span {
  width: 100%;
  height: 2px;
  background: var(--blue-color);
  display: block;
}

.header__cat-icon:after,
.header__cat-icon:before {
  position: absolute;
  right: 0;
  display: block;
  height: 2px;
  content: "";
  background: var(--blue-color);
  width: 100%;
}

.header__cat-icon:before {
  top: 2px;
}

.header__cat-icon:after {
  bottom: 2px;
}

.header__search {
  width: 100%;
  max-width: 415px;
  padding-right: 40px;
  border-right: 1px solid var(--blue-color);
}
@media screen and (max-width: 1024px) {
  .header__search {
    padding: 0.6em 0;
  }
}

.header__search .woocommerce-product-search {
  width: 100%;
  position: relative;
}

.header__search .search-field {
  width: 100%;
  height: 42px;
  border: 1px solid var(--gray-color-2);
  border-radius: 99999px;
  padding: 0 25px;
  padding-left: 40px;
  background-color: #fff;
}

@media screen and (min-width: 1024px) {
  .header__search {
    width: 35px;
    height: 35px;
    padding-right: 20px;
  }
  .header__search .woocommerce-product-search {
    height: 100%;
  }
  .header__search .search-field {
    position: absolute;
    top: 0;
    right: 0;
    height: 35px;
    width: 35px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .header__search:hover .search-field,
  .header__search:focus-within .search-field {
    width: 280px;
    padding: 0 25px;
    padding-right: 50px;
    opacity: 1;
    pointer-events: auto;
  }
}

.header__search .search-field::placeholder {
  color: var(--blue-color);
}

.search-btn {
  height: 42px;
  width: 40px;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  background-color: transparent;
}

@media screen and (min-width: 1024px) {
  .search-btn {
    right: 0;
    left: auto;
    height: 35px;
    background-color: var(--blue-color);
    z-index: 6;
  }
}

.search-btn:before {
  content: "\e903";
  font-family: var(--custom-icons) !important;
  display: block;
  font-size: 14px;
  color: #333;
}

@media screen and (min-width: 1024px) {
  .search-btn:before {
    color: #fff;
    font-size: 16px;
  }
}

.header__actions {
  padding-left: 30px;
  padding-right: 0;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .header__actions {
    position: absolute;
    right: 0;
    padding: 0;
    top: 15px;
  }
}

.header__cart-btn {
  background-color: transparent;
}

.header__cart-icon {
  display: block;
}

.header__cart-icon:before {
  content: "\e901";
  font-family: var(--custom-icons) !important;
  display: block;
  font-size: 20px;
  color: #333;
}

@media screen and (min-width: 1024px) {
  .header__cart-icon:before {
    color: var(--yellow-color);
    font-size: 24px;
  }
}

.header__cart:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 35px;
  width: 1px;
  background-color: var(--blue-color);
}

.header__toggle {
  display: flex;
  height: 100%;
  background-color: var(--orange-color);
  align-items: center;
  padding: 10px;
}

#menu-menu-principal {
  display: flex;
  gap: 50px;
}
#menu-menu-principal li {
  position: relative;
  z-index: 1;
}
#menu-menu-principal li:before {
  content: "";
  position: absolute;
  top: 65%;
  left: -7px;
  width: 13px;
  height: 13px;
  background-image: url(../images/logo.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateY(-50%);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
#menu-menu-principal li.current-menu-item:before,
#menu-menu-principal li:hover:before {
  opacity: 1;
  visibility: visible;
}

/**
*	HOME
*	=======================================================================================================
**/

/** Hero	============== **/

.hero {
  height: auto;
  padding: 0;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: auto;
}

.hero-images-slider,
.hero-content-slider,
.hero .slick-track,
.hero .slick-list,
.hero .slick-slide {
  height: 100%;
  text-align: center;
}

.hero-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-images-slider {
  margin: 0 !important;
}

.hero .slick-dots {
  transform: translateY(-20px);
}

/* IMAGENES PUBLICIDAD */

#imagesPubli .section-bg.-first {
  content: "";
  width: 260px;
  height: 440px;
  position: absolute;
  top: -15%;
  right: 0;
  background-image: url(../images/imagePubli-bg.svg);
  background-position: center right;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}

#imagesPubli .section-bg.-second {
  content: "";
  width: 280px;
  height: 240px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/imagePubli-bg-2.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.imagesPubli-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  position: relative;
  z-index: 1;
}

.imagesPubli-grid-item {
  width: 100%;
  padding: 10px;
}

@media screen and (min-width: 1024px) {
  .imagesPubli-grid-item {
    width: 50%;
    padding: 15px;
  }
}

.imagesPubli-grid-item:last-child {
  width: 100%;
}

.imagesPubli-grid-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.imagesPubli-grid-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.imagesPubli-grid-wrapper:hover img {
  filter: brightness(92%);
}

.imagesPubli-grid-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* PRODUCTOS */

#products-sale {
  background-color: var(--gray-color-2);
  position: relative;
}

#products-sale:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: var(--gray-color-2);
}

#products-sale .slick-list {
  margin: -12px;
}

#products-sale .slick-list .product__item {
  padding: 10px;
}

@media screen and (min-width: 600px) {
  #products-sale .slick-list .product__item {
    padding: 12px;
  }
}

#products-sale .slick-dots {
  margin-top: 40px;
}
.product__price {
  text-align: left;
  margin-top: 10px;
  padding: 5px;
}
@media screen and (min-width: 600px) {
  #products-sale .slick-dots {
    margin-top: 60px;
  }
}

.product__image {
  margin-bottom: 25px;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
}

.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.product__content:hover img {
  filter: brightness(92%);
}
.product__title {
  font-size: 16px;
  padding: 0 5px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  margin-top: 20px;
}

.product__grid {
  text-align: center;
}

@media screen and (max-width: 600px) {
  #products-sale .slick-list {
    margin: 0 auto;
    overflow: visible;
    width: 90%;
  }
}

/** Home - Catalog	============== **/
#catalog {
  background-color: var(--blue-color);
  padding: 0;
}
.catalog__wrapper {
  gap: 50px;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 0 60px;
}
.catalog__item {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.catalog__msg {
  width: 90%;
  margin-bottom: 50px;
  max-width: 300px;
}
.catalog__image {
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

#catalog .section-bg.-first {
  content: "";
  width: 260px;
  height: 440px;
  position: absolute;
  top: -15%;
  left: -60px;
  background-image: url(../images/imgCatalog-bg.svg);
  background-position: center right;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width: 580px) {
  .catalog__wrapper {
    flex-direction: row;
  }
  .catalog__image {
    display: flex;
  }
  .catalog__item {
    width: 50%;
    align-items: flex-start;
  }
}
@media screen and (min-width: 980px) {
  .catalog__msg {
    width: 390px;
    max-width: 390px;
  }
  .catalog__image {
    width: 760px;
  }
}
@media screen and (min-width: 1280px) {
}

/** Home - Contact	============== **/
#contact {
  background-color: var(--blue-color);
  padding: 0;
  background-image: url(../images/lines-bg-contact.svg);
  background-position: left -100px top 40px;
  background-repeat: no-repeat;
  background-size: 927px;
}
.contact__wrapper {
  flex-direction: column;
}
.contact_item {
  width: 100%;
}
.contact_item.-der {
  justify-content: center;
  align-items: center;
  padding: 0 20px 40px;
}
.contact_item.-form {
  background-image: url(../images/bg-contact.jpg);
  background-size: cover;
  padding: 50px 30px;
  border-radius: 5rem 0 0 0;
}
.contact-bg-img {
  border-radius: var(--border-radius);
  background-color: var(--orange-color);
  position: relative;
  width: 418px;
  height: 520px;
}
.contact-img {
  position: absolute;
  width: 100%;
  height: calc(100% + 20px);
  border-radius: var(--border-radius) 25rem var(--border-radius)
    var(--border-radius);
  bottom: 0;
  left: 0;
  overflow: hidden;
}
#contact h2 {
  font-size: 35px;
  margin-bottom: 40px;
}
#contact h2 span {
  font-size: 25px;
}
#contact form {
  max-width: 471px;
}
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 471px;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group p {
  margin-bottom: 0;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  height: 35px;
  border-radius: 10px;
  padding: 0 15px;
  font-family: var(--primary-font);
  width: 100%;
}
.form-group textarea {
  height: 103px;
  border-radius: 10px;
  padding: 15px;
  resize: none;
  font-family: var(--primary-font);
  width: 100%;
}
.form-group label {
  margin-bottom: 10px;
  display: inline-block;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-row .form-group {
  width: 100%;
}
.form-group .btn {
  width: max-content;
}
@media screen and (min-width: 580px) {
  .contact__wrapper {
    flex-direction: row;
  }
  .contact_item {
    width: 50%;
  }
  .contact_item.-form {
    padding: 40px;
  }
  .contact_item.-der {
    padding: 20px;
  }
}
@media screen and (min-width: 980px) {
  .contact_item.-der {
    justify-content: flex-end;
    align-items: center;
    padding: 90px 150px 90px 0;
  }
  .contact_item.-form {
    padding: 90px 0 90px 90px;
  }
  .form-row {
    flex-direction: row;
    gap: 15px;
  }
  .form-row .form-group {
    width: 50%;
    max-width: 228px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	FOOTER
*	=======================================================================================================
**/
footer {
  background-color: var(--orange-color);
  color: #fff;
}
.footer__wrapper {
  padding: 27px 0;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
}
.copyright {
  align-items: center;
  gap: 5px;
  flex-direction: column;
  text-align: center;
}
.copyright span {
  display: none;
}
.a84 {
  flex-direction: row;
  gap: 5px;
}
.a84 img {
  width: 27px;
}
.footer__social-link {
  width: 20px;
  height: 20px;
}
.footer__social {
  gap: 10px;
  font-size: 1.8rem;
}
.footer__logo {
  position: relative;
  display: none;
}
.footer__logo-image {
  position: absolute;
  width: 78px;
  bottom: -47px;
  left: 0;
  height: 80px;
  object-fit: cover;
  object-position: top;
}

@media screen and (min-width: 580px) {
  .footer__wrapper {
    padding: 27px 0;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .copyright {
    align-items: center;
    gap: 5px;
    flex-direction: row;
  }
  .copyright span {
    display: flex;
  }
  .footer__logo {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .footer__logo-image {
    width: 157px;
    height: 133px;
    bottom: -47px;
    left: 0;
  }
}
@media screen and (min-width: 1280px) {
}

/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

/* LOADER OVERLAY */

.loader-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--orange-color);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  pointer-events: none;
}

.loader-wrap.active {
  animation: 1500ms ease 300ms 1 normal both running fade-in;
}

.loader-wrap.hide {
  display: none;
}

.loader-logo {
  margin-bottom: 4rem;
  position: absolute;
  z-index: 9999;
}
.background-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--blue-color);
  z-index: 1;
  animation: fillBackground 2s forwards;
}

@keyframes fillBackground {
  to {
    height: 100%;
  }
}
.loader-logo img {
  width: 10rem;
}

@media screen and (min-width: 1024px) {
  .loader-logo img {
    width: 12rem;
  }
}

.loader-icon .loader {
  position: relative;
}

@keyframes fade-in {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-indent: 0;
  font-size: 0;
  opacity: 0;
  visibility: hidden;
}

.loader.active {
  opacity: 1;
  visibility: visible;
}

.menu-categorias {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-color-2);
  padding: 20px;
  z-index: 999;
  min-width: 250px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 15px;
}

.menu-categorias ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-categorias li {
  margin-bottom: 8px;
}

.menu-categorias li:last-child {
  margin-bottom: 0;
}

.menu-categorias a {
  text-decoration: none;
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
#overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--orange-color);
  opacity: 0;
  position: fixed;
  transition: var(--transition);
  top: 0;
  z-index: 99999;
  visibility: hidden;
}
#overlay.active {
  opacity: 0.7;
  visibility: visible;
}
#sidebar {
  height: 100vh;
  width: 90%;
  max-width: 1120px;
  background-color: var(--blue-color);
  padding-top: 100px;
  position: fixed;
  overflow: hidden;
  transition: right 0.5s ease;
  right: -100%;
  top: 0;
  z-index: 999999;
}
#sidebar.active {
  right: 0;
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 200px;
}
#sidebar .menu-sidebar {
  font-family: var(--secondary-font);
  margin-bottom: 30px;
  width: 100%;
}
#sidebar .menu-sidebar li {
  position: relative;
}
#sidebar .menu-sidebar li a,
#sidebar .menu-sidebar-2 li a {
  font-size: 17px;
  margin-bottom: 5px;
  display: flex;
  transition: var(--transition);
  position: relative;
  justify-content: flex-start;
  text-align: left;
  font-family: var(--primary-font);
  padding: 10px 25px 10px 0;
  color: #fff;
}
#sidebar .menu-sidebar li:hover > a {
  padding: 10px 0 10px 25px;
}
#sidebar .menu-sidebar li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transition: var(--transition);
  transform: translateY(-50%);
  opacity: 0;
}
#sidebar .menu-sidebar li.current-menu-item::before,
#sidebar .menu-sidebar li:hover::before {
  opacity: 1;
}
#sidebar .menu-sidebar li.current-menu-item > a {
  padding: 10px 0 10px 25px;
}
#sidebar .menu-sidebar {
  padding-bottom: 40px;
  margin-bottom: 0;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 10px;
  align-items: center;
}
.sidebar-wrapper .row {
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.sidebar-wrapper .col-50 {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 20px;
}
.content-sidebar {
  padding: 40px 0;
  align-items: start;
  width: max-content;
  position: relative;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}
.redes-img {
  gap: 10px;
  justify-content: center;
}
.redes-img a {
  width: 40px;
  height: 30px;
  display: flex;
}
.btn-sidebar {
  width: 100%;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__toggle {
    display: none;
  }
  #sidebar {
    width: 80%;
  }
  .sidebar-wrapper {
    padding: 0;
  }
  .sidebar-wrapper .row {
    flex-direction: row;
  }
  .sidebar-wrapper .col-50 {
    width: 50%;
  }
  .content-sidebar {
    align-items: end;
    gap: 0;
  }
  .content-sidebar .datos:nth-child(2) {
    border-right: 1px solid #fff;
  }
}
@media screen and (min-width: 1280px) {
}

#close-btn {
  position: absolute;
  padding: 10px;
  top: -60px;
  right: 35px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
#presentation_nos {
  padding-top: 35px;
  padding-bottom: 35px;
  background-color: var(--gray-color-2);
}
.pres-nos__wrapper {
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
.pres-nos__content {
  width: 100%;
  padding: 0 0 40px;
}
.pres-nos__content p {
  margin-bottom: 15px;
  line-height: 1.5;
}
.pres-nos__content h2 {
  font-size: 2em;
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: 700;
}
.pres-nos__img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 7 / 6;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .pres-nos__wrapper {
    flex-direction: row;
    gap: 100px;
  }
  .pres-nos__content {
    width: 50%;
    padding: 40px 0;
  }
  .pres-nos__img {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** Almacenes	============== **/
#almacenes_nos {
  padding: 90px 0;
  background: linear-gradient(to bottom, white 75%, var(--blue-color) 75%);
  position: relative;
}
#almacenes_nos .section-bg.-first {
  content: "";
  width: 260px;
  height: 440px;
  position: absolute;
  top: 15%;
  right: 0;
  background-image: url(../images/imagePubli-bg.svg);
  background-position: center right;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
#almacenes_nos .section-bg.-second {
  content: "";
  width: 280px;
  height: 240px;
  position: absolute;
  bottom: 150px;
  left: 0;
  background-image: url(../images/imagePubli-bg-2.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.almacenes__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(1, 1fr);
}
.almacenes-grid__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--gray-color-2);
  border-radius: var(--border-radius);
}
.almacenes__grid .almacenes-grid__item:first-child {
  background-color: transparent;
  border-radius: 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  aspect-ratio: auto;
  gap: 30px;
}
.almacen-item__img {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  max-height: 50%;
}
.almacen-item__content {
  padding: 0 0 30px;
}
.almacen-item__content p {
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .almacenes__grid {
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
  .almacenes__grid .almacenes-grid__item:first-child {
    aspect-ratio: 1 / 1;
    flex-direction: column;
    gap: 0;
  }
  .almacen-item__content {
    padding: 30px 40px;
  }
}
@media screen and (min-width: 1280px) {
}

/** Valores	============== **/
#valores {
  background-color: var(--blue-color);
  padding: 0 0 90px;
}
.valores__grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 0;
  flex-direction: column;
}
.valores-grid__item {
  max-width: 100%;
  text-align: center;
}
.valores-grid__item h3 {
  color: #fff;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  font-size: 25px;
}
.valores-grid__item h3 strong {
  color: var(--yellow-color);
}
.valores-grid__item p {
  color: #fff;
  line-height: 1.5;
}
.valores__imgs {
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}
.valor-item {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.valor-img-1 {
  width: 100%;
}
.valor-img-2 {
  width: 100%;
}
.valor-item {
  height: 250px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .valores__grid {
    flex-direction: row;
    gap: 40px;
    padding: 0 40px 80px;
  }
  .valores-grid__item {
    max-width: 242px;
    text-align: left;
  }
  #valores {
    padding: 95px 0;
  }
  .valores__imgs {
    flex-direction: row;
    gap: 25px;
    margin-top: 0;
  }
  .valor-img-1 {
    width: 35%;
  }
  .valor-img-2 {
    width: 65%;
  }
}
@media screen and (min-width: 1280px) {
}

/** Ventajas	============== **/
#ventajas {
  padding: 60px 0;
}
.ventajas__wrapper {
  flex-direction: column;
  gap: 40px;
}
.ventajas__img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.ventajas__content {
  width: 100%;
  line-height: 1.5;
  padding: 15px 0;
}
.ventajas__content p {
  margin-bottom: 10px;
}
.ventajas__content ul {
  list-style: disc;
  margin-left: 20px;
}
.ventajas__content ul li {
  margin-bottom: 10px;
  list-style: disc;
  color: #5e5e5e;
}
.ventajas__content h2 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .ventajas__wrapper {
    flex-direction: row;
    gap: 75px;
  }
  .ventajas__img {
    width: 50%;
    position: sticky;
    top: 100px;
  }
  .ventajas__content {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** Potencias	============== **/
#potencias {
  padding: 100px 0;
  background-color: var(--gray-color-2);
  position: relative;
}
.potencias__wrapper {
  flex-direction: column;
  line-height: 1.5;
}
.potencias__content {
  width: 100%;
}
.potencias__wrapper p {
  margin-bottom: 10px;
}
.potencias__wrapper h2 {
  margin-bottom: 20px;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 700;
}
.potencias_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
#potencias .section-bg.-first {
  content: "";
  width: 260px;
  height: 440px;
  position: absolute;
  top: 15%;
  right: 0;
  background-image: url(../images/imagePubli-bg.svg);
  background-position: center right;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
#potencias .section-bg.-second {
  content: "";
  width: 280px;
  height: 240px;
  position: absolute;
  bottom: 150px;
  left: 0;
  background-image: url(../images/imagePubli-bg-2.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .potencias__wrapper {
    flex-direction: row;
    gap: 75px;
  }
  .potencias__content {
    width: 40%;
  }
  .potencias_grid {
    width: 60%;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
}

/** Certificaciones	============== **/
#certificaciones {
  padding: 85px 0;
}
.certi__wrapper {
  gap: 60px;
  flex-direction: column;
}
.certi__content {
  width: 100%;
}
.certi__content h2 {
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: 700;
}
.certi__content h2 strong {
  color: var(--yellow-color);
}
.certi__content p {
  line-height: 1.5;
}
.certi__img {
  width: 100%;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .certi__wrapper {
    gap: 60px;
    flex-direction: row;
  }
  .certi__content {
    width: 45%;
    padding: 35px;
  }
  .certi__img {
    width: 55%;
  }
}
@media screen and (min-width: 1280px) {
}

/** Mejores opciones	============== **/
#best {
  overflow-x: clip;
  background: linear-gradient(
    to top,
    var(--gray-color-2) calc(100% - 190px),
    white calc(100% - 190px)
  );
  padding-bottom: 70px;
  position: relative;
}
.best__wrapper {
  flex-direction: column;
  gap: 30px;
}
.best-content-1 {
  width: 100%;
  flex-direction: column;
}
.best-content-1 h2 {
  font-size: 35px;
  margin-bottom: 40px;
  font-weight: 700;
  padding: 0;
}
.best-fotos__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 3;
}
.best-foto-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 175px;
}
.best-content-2 {
  width: 100%;
  position: relative;
}
.best-content-2__block {
  padding: 30px 0 30px 30px;
  background-color: var(--orange-color);
  position: relative;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  height: fit-content;
}
.best-content-2__block::after {
  content: "";
  position: absolute;
  top: 0;
  right: -596px;
  width: 600px;
  height: 100%;
  background-color: var(--orange-color);
  z-index: 0;
}
.best-content-2 p {
  color: #fff;
  line-height: 1.5;
}
.best-content-2 p:last-child {
  margin-bottom: 0;
}
.best__adorno {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 25px;
  z-index: 99;
  display: none;
}
@media screen and (min-width: 580px) {
  .best__adorno {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .best__adorno {
    width: 580px;
  }
  .best__wrapper {
    flex-direction: row;
    gap: 30px;
  }
  .best-content-1 {
    width: 40%;
  }
  .best-content-2 {
    width: 60%;
  }
  .best-content-2__block {
    padding: 110px 20px 110px 100px;
  }
  .best-fotos__grid {
    grid-template-columns: repeat(2, 1fr);
    width: 115%;
  }
  .best-content-1 h2 {
    font-size: 35px;
    margin-bottom: 65px;
    padding: 35px 40px 0 35px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	PLANTILLA LEGALES
*	=======================================================================================================
**/
#legales {
  padding: 35px 0 60px;
}
.legales__inner {
  max-width: 800px;
  margin: 0 auto;
}
.legales__inner h2 {
  margin: 30px 0 15px;
  font-weight: 700;
}
.legales__inner p {
  line-height: 1.5;
  margin-bottom: 10px;
}
.legales__inner ul {
  list-style: disc;
  margin-left: 20px;
}
.legales__inner ul li {
  margin-bottom: 10px;
  list-style: disc;
  color: #5e5e5e;
  line-height: 1.5;
}
.barra-importante {
  background: var(--blue-color);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}

.barra-importante__track {
  display: inline-flex;
  gap: 80px;
  animation: marquee 20s linear infinite;
}

.barra-importante__track span {
  flex-shrink: 0;
}

/* animación continua */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.barra-importante {
  position: relative;
}

.barra-importante::before,
.barra-importante::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.barra-importante::before {
  left: 0;
  background: linear-gradient(to right, var(--blue-color), transparent);
}

.barra-importante::after {
  right: 0;
  background: linear-gradient(to left, var(--blue-color), transparent);
}

/* ------------------ Mi cuenta ----------------------- */

body.woocommerce-lost-password {
  background-color: transparent !important;
}

.cuenta {
  min-height: 80vh;
}

.cuenta .container {
  max-width: 1280px;
}

#mi-cuenta .woocommerce {
  display: flex;
  /*     flex-wrap:wrap; */
}

#mi-cuenta .woocommerce-MyAccount-navigation,
#mi-cuenta .woocommerce-MyAccount-content {
  float: none;
}

.cuenta #customer_login {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 580px) {
  .cuenta #customer_login {
    flex-direction: row;
  }
}

.cuenta #customer_login .u-column1,
.cuenta #customer_login .u-column2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  max-width: 100% !important;
  border: 1px solid #e2e2e2;
  padding: 24px !important;
}

@media screen and (min-width: 580px) {
  .cuenta #customer_login .u-column1,
  .cuenta #customer_login .u-column2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
  }
}
@media screen and (min-width: 980px) {
}

@media screen and (min-width: 1280px) {
  .cuenta #customer_login .u-column1,
  .cuenta #customer_login .u-column2 {
    max-width: 360px !important;
    padding: 0;
  }
}

.cuenta #customer_login .u-column1 > h2,
.cuenta #customer_login .u-column2 > h2 {
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.cuenta .woocommerce-form .form-row,
.cuenta .woocommerce-form-row,
.cuenta .woocommerce-MyAccount-content .form-row {
  width: 100%;
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 24px;
}
.cuenta .woocommerce-form p,
.cuenta .woocommerce-form-row p,
.cuenta .woocommerce-MyAccount-content p {
  font-size: 1.4rem;
  line-height: 1.2;
}

.cuenta .woocommerce-form a,
.cuenta .woocommerce-form-row a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cuenta .woocommerce-form .form-row:last-of-type {
  margin: 0;
}

.cuenta .woocommerce-form .form-row label,
.cuenta .woocommerce-form-row label,
.cuenta .woocommerce-MyAccount-content label {
  font-weight: 300;
  font-size: 1.9rem;
  color: #000;
  margin-bottom: 10px;
}

.cuenta .woocommerce-form .form-row input.woocommerce-Input,
.cuenta .woocommerce-form-row input.woocommerce-Input,
.cuenta .woocommerce-MyAccount-content input.input-text,
.cuenta .woocommerce-MyAccount-content select {
  border: 1px solid #e2e2e2 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  height: 45px;
  padding: 10px 16px !important;
  transition: all 0.3s ease-in-out;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.cuenta .woocommerce-form .form-row input.woocommerce-Input,
.cuenta .woocommerce-form .form-row input.woocommerce-Input::placeholder,
.cuenta .woocommerce-form-row input.woocommerce-Input,
.cuenta .woocommerce-form-row input.woocommerce-Input::placeholder,
.cuenta .woocommerce-MyAccount-content input.input-text,
.cuenta .woocommerce-MyAccount-content input.input-text::placeholder {
  font-size: 1.9rem;
  color: #000;
  font-weight: 300 !important;
}
.cuenta .woocommerce-MyAccount-content select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/arrow-dark.svg);
  background-position: right 20px center;
  background-size: 8px;
  background-repeat: no-repeat;
}

.woocommerce-ResetPassword {
  max-width: 620px;
  margin: 0 auto;
}

.woocommerce-ResetPassword p {
  color: #1a1a1a;
  font-size: 1.4rem;
}

.woocommerce-ResetPassword .button {
  margin: 0 !important;
  margin-top: 20px !important;
}

.woocommerce-ResetPassword .woocommerce-form-row {
  margin: 0 !important;
}

.woocommerce-ResetPassword .woocommerce-form-row input.woocommerce-Input {
  border: 1px solid #00a6ce !important;
  border-radius: 9999px;
}
/* ------------ Dashboard Woo --------------- */

.woocommerce-MyAccount-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 580px) {
  .woocommerce-MyAccount-info {
    margin: 0;
  }
}
@media screen and (min-width: 980px) {
}

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

.woocommerce-MyAccount-thumbnail {
  margin-right: 20px;
  flex-shrink: 0;
}

.woocommerce-MyAccount-thumbnail .icon-wrapper-account {
  width: 80px;
  height: 80px;
}
.woocommerce-MyAccount-thumbnail .icon-wrapper-account span {
  font-size: 2rem;
}

.woocommerce-MyAccount-name {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.woocommerce-MyAccount-meta span {
  color: #b0b1b0;
  font-weight: 300;
}

.woocommerce-MyAccount-title,
.posts-account-title,
.woocommerce-MyAccount-content form h3 {
  margin-bottom: 25px;
  font-size: 1.7rem;
  font-weight: 500;
}
.cuenta .woocommerce-MyAccount-navigation ul {
  margin: 0;
}
.cuenta .woocommerce-MyAccount-navigation ul li a {
  display: flex;
  width: 100%;
  position: relative;
  padding: 20px 20px;
  border-left: 5px solid;
  border-color: transparent;
  transition: all 0.3s ease;
}
.cuenta .woocommerce-MyAccount-navigation ul li a:hover,
.cuenta .woocommerce-MyAccount-navigation ul li.is-active a {
  border-color: var(--orange-color);
}

.cuenta .woocommerce-MyAccount-navigation ul li a:before {
  display: none;
}

.cuenta .woocommerce-MyAccount-content {
  padding: 3rem;
  border: 2px solid #e3e4e6;
}

.cuenta .woocommerce-MyAccount-content a {
  color: var(--secondary-color);
  font-weight: 300;
  text-decoration: underline;
}
.cuenta .woocommerce-MyAccount-content table.shop_table {
  padding: 0;
  box-shadow: none;
  border: 1px solid #fff;
  border-radius: 4px;
  border-collapse: separate;
}
.cuenta .woocommerce-MyAccount-content table.shop_table thead th {
  border-bottom: 1px solid #fff;
}
.cuenta .woocommerce-MyAccount-content table.shop_table tr {
  display: table-row;
}
.cuenta .woocommerce-MyAccount-content table.shop_table th,
.cuenta .woocommerce-MyAccount-content table.shop_table td {
  width: auto;
  max-width: auto;
  padding: 16px;
}
.cuenta .woocommerce-MyAccount-content table.shop_table th,
.cuenta .woocommerce-MyAccount-content table.shop_table td {
  text-align: left !important;
}
.cuenta .woocommerce-MyAccount-content fieldset {
  background-color: transparent !important;
}
.cuenta .woocommerce-MyAccount-content fieldset legend {
  margin: 0;
  background: transparent;
  padding: 20px 0 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
}
.cuenta .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: flex;
  flex-direction: column;
  float: none;
}

.cuenta .woocommerce-MyAccount-content .woocommerce-Addresses .u-column1,
.cuenta .woocommerce-MyAccount-content .woocommerce-Addresses .u-column2 {
  margin: 0;
  margin: 10px 0;
  width: 100%;
  float: none;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}

.cuenta .woocommerce-MyAccount-content .woocommerce-Addresses .title h3 {
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
}
.cuenta .woocommerce-order-details {
  margin: 40px 0 20px;
}
.cuenta h2.woocommerce-order-details__title,
.cuenta h2.woocommerce-column__title {
  margin-bottom: 10px;
  font-weight: 800;
}

.dashboard-banner {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-direction: column;
}

@media screen and (min-width: 580px) {
  .dashboard-banner {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 980px) {
}

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

.dashboard-banner .user-content {
  border: 0;
  padding: 0;

  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  flex-shrink: 0;
}

@media screen and (min-width: 580px) {
  .dashboard-banner .user-content {
    width: 17.6470588235%;
    margin: 0;
    margin-right: 5.8823529412%;
  }
}
@media screen and (min-width: 980px) {
}

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

.dashboard-banner .user-content-circle {
  width: 64px;
  height: 64px;
}

.dashboard-banner .user-content-name span {
  font-size: 1.7rem;
}

.dashboard-banner .user-content-name span:last-child {
  font-size: 2rem;
}

.dashboard-title {
  width: 100%;
}

.dashboard-title h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
}

/* ------------------------------- */

.woocommerce-form-login .woocommerce-form__label-for-checkbox {
  position: relative;
  display: flex !important;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox input {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox span {
  position: relative;
  padding-left: 26px;
  display: block;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  left: 0px;
  width: 14px;
  height: 14px;
  z-index: 1;
  background-position: center !important;
  background-size: 70% !important;
  background-repeat: no-repeat !important;
  transition: all 0.3s ease;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
.woocommerce-form-login
  .woocommerce-form__label-for-checkbox
  input:checked
  + span::before {
  background-image: url(../images/checked-white.svg);
  background-color: var(--secondary-color);
}

/* ----------------------------- */

.header-account {
  display: flex;
  align-items: center;
  height: auto;
  padding: 18px 0;
  z-index: 999;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
}

@media screen and (min-width: 1280px) {
  .header-account {
    height: 80px;
  }
}

.header-account .header-toggle {
  display: none;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
}

@media screen and (min-width: 1280px) {
  .header-account .header-toggle {
    display: flex;
  }
}

.header-account .header-middle {
  position: relative;
  top: 0%;
  left: 0%;
  transform: translate(0, 0);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
}

@media screen and (min-width: 1280px) {
  .header-account .header-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.header-account .header-toggle-wrapper span {
  color: var(--primary-color);
}

.header-account .one,
.header-account .two,
.header-account .three {
  background-color: var(--primary-color);
}

.header-account .header-icons .menu-icons li .menu-icons-link span {
  color: var(--primary-color);
}

.password-input {
  width: 100%;
}

/* =============================================
   ÍCONO DE CUENTA EN HEADER
============================================= */
.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #333;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}

.header__account-btn svg {
  display: block;
  stroke: #333;
  transition: var(--transition);
}

.header__account-btn:hover {
  opacity: 0.7;
}

@media screen and (min-width: 1024px) {
  .header__account-btn svg {
    stroke: var(--yellow-color);
    width: 24px;
    height: 24px;
  }
}

/**
*	PÁGINA VENDE CON NOSOTROS
*	=======================================================================================================
**/
.pres-vende__wrapper {
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
.pres-vende__content {
    width: 100%;
    padding: 40px 20px 0;
}
.pres-vende__content h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.pres-vende__subtitle {
    background-color: #00ae9d;
    padding: 8px 22px;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 20px;
}
.pres-vende__content p{
  margin-bottom: 12px;
}
.pres-vende__img{
  width: 100%;
  height: 260px;
  position: relative;
}
.pres-vende__img .pres-vende__fondo {
    position: absolute;
    width: 480px;
    top: 50%;
    left: 0;
    z-index: -1;
    transform: translateY(-50%);
}
.pres-vende__logo{
  position: absolute;
  width: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (min-width: 580px) {
  .pres-vende__content h1 {
    font-size: 3.2rem;
  }
  .pres-vende__img {
    height: 320px;
  }
  .pres-vende__img .pres-vende__fondo {
    width: 560px;
  }
  .pres-vende__logo {
    width: 260px;
  }
}
@media screen and (min-width: 980px) {
  .pres-vende__wrapper {
    flex-direction: row;
    gap: 70px;
  }
  .pres-vende__content {
    width: 50%;
    padding: 70px 0 70px calc((100% - 1230px) / 2 + 20px);
  }
  .pres-vende__content h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    line-height: 1;
  }
  .pres-vende__subtitle {
    padding: 10px 45px;
  }
  .pres-vende__img {
    width: 50%;
    height: auto;
  }
  .pres-vende__img .pres-vende__fondo {
    width: 1000px;
  }
  .pres-vende__logo {
    width: 500px;
  }
}

#pasos {
  position: relative;
}
#pasos .section-bg.-first {
  content: "";
  width: 260px;
  height: 440px;
  position: absolute;
  top: 15%;
  right: 0;
  background-image: url(../images/imagePubli-bg.svg);
  background-position: center right;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  display: none;
}
#pasos .section-bg.-second {
  content: "";
  width: 280px;
  height: 240px;
  position: absolute;
  bottom: 150px;
  left: 0;
  background-image: url(../images/imagePubli-bg-2.png);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  display: none;
}
.paso__wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 850px;
  gap: 25px;
  margin: 0 auto;
  padding: 30px 0;
}
.paso__content {
  width: 100%;
}
.paso__title {
  margin-bottom: 25px;
}
.paso__title h3 {
  font-size: 1.8rem;
  font-weight: 900;
}
.title__number {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 900;
  padding-right: 10px;
}
.paso__img {
  width: 100%;
  max-width: 220px;
}
#pasos .paso:nth-child(odd) .paso__wrapper {
  flex-direction: column;
}
@media screen and (min-width: 580px) {
  .paso__title h3 {
    font-size: 2.2rem;
  }
  .title__number {
    font-size: 3.2rem;
  }
  .paso__img {
    max-width: 260px;
  }
}
@media screen and (min-width: 980px) {
  #pasos .section-bg.-first,
  #pasos .section-bg.-second {
    display: block;
  }
  .paso__wrapper {
    flex-direction: row-reverse;
    gap: 80px;
    padding: 50px 0;
  }
  .paso__content {
    width: 50%;
  }
  .paso__title h3 {
    font-size: 3rem;
  }
  .title__number {
    font-size: 5rem;
    padding-right: 20px;
  }
  .paso__img {
    width: 50%;
    max-width: 315px;
  }
  #pasos .paso:nth-child(odd) .paso__wrapper {
    flex-direction: row;
  }
}
#pasos .paso:nth-child(1) {
  background-color: #fbbd98;
}
#pasos .paso:nth-child(1) h3,
#pasos .paso:nth-child(1) p {
  color: #da4850;
}
#pasos .paso:nth-child(2) {
  background-color: #9eb450;
}
#pasos .paso:nth-child(2) h3,
#pasos .paso:nth-child(2) p {
  color: #edffcf;
}
#pasos .paso:nth-child(3) {
  background-color: #bdc7fc;
}
#pasos .paso:nth-child(3) h3,
#pasos .paso:nth-child(3) p {
  color: #2153a8;
}
#pasos .paso:nth-child(4) {
  background-color: #0052aa;
}
#pasos .paso:nth-child(4) h3,
#pasos .paso:nth-child(4) p {
  color: #bdc7fc;
}
#pasos .paso:nth-child(5) {
  background-color: #ff6e99;
}
#pasos .paso:nth-child(5) h3,
#pasos .paso:nth-child(5) p {
  color: #0052aa;
}
.paso__content p {
  margin-left: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 980px) {
  .paso__content p {
    margin-left: 65px;
  }
}


#contact-ven {
    color: #808080;
    padding: 40px 0;
    font-size: 1.6rem;
}
.contact-ven__header {
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 25px;
}
.contact-ver__wrapper {
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
    align-items: center;
}
.contact-ver__content {
    width: 100%;
    text-align: center;
    font-style: italic;
    font-weight: 600;
}
.contact-ver__content a{
  color: #da4850;
}
.contact-ver__img{
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 580px) {
  #contact-ven {
    font-size: 2rem;
  }
}
@media screen and (min-width: 980px) {
  #contact-ven {
    padding: 60px 0;
    font-size: 3rem;
  }
  .contact-ver__wrapper {
    flex-direction: row;
    gap: 70px;
  }
  .contact-ver__content {
    width: 40%;
    text-align: left;
  }
  .contact-ver__img {
    width: 60%;
    max-width: none;
    margin: 0;
  }
}

/**
*	PREGUNTAS FRECUENTES - Boton flotante + modal
*	=======================================================================================================
**/
.faq-overlay[hidden],
.faq-modal[hidden] {
  display: none;
}

.faq-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99990;
  display: flex;
  align-items: center;
  padding: 18px 10px;
  border: 0;
  border-radius: 10px 0 0 10px;
  background-color: var(--blue-color);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.faq-fab:hover {
  background-color: var(--orange-color);
  padding-right: 16px;
}
.faq-fab__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.faq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 100001;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-overlay.is-open {
  opacity: 1;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 100002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.faq-modal__dialog {
  position: relative;
  display: flex;
  width: min(680px, 100%);
  max-height: min(600px, 85vh);
  overflow: hidden;
  background: #fff;
  border-radius: var(--border-radius);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.faq-modal.is-open .faq-modal__dialog {
  opacity: 1;
  transform: none;
}
.faq-modal__aside {
  display: none;
}
.faq-modal__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.faq-modal__body {
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  padding: 40px;
}
.faq-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 6px;
  border: 0;
  background: none;
  cursor: pointer;
}
.faq-modal__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.faq-modal__title {
  margin: 0 0 20px;
  padding-right: 32px;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-color);
}

.faq-item {
  border-bottom: 1px solid var(--gray-color-2);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border: 0;
  background: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-color);
  cursor: pointer;
}
.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--orange-color);
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-item__q[aria-expanded="true"] + .faq-item__a {
  grid-template-rows: 1fr;
}
.faq-item__a-inner {
  overflow: hidden;
  min-height: 0;
  font-size: 1.5rem;
  line-height: 1.6;
}
.faq-item__q[aria-expanded="true"] + .faq-item__a .faq-item__a-inner {
  padding-bottom: 20px;
}
.faq-item__a p {
  margin: 0 0 12px;
}
.faq-item__a p:last-child {
  margin-bottom: 0;
}
.faq-item__a ul,
.faq-item__a ol {
  margin: 0 0 12px;
  padding-left: 20px;
}
.faq-item__a li {
  margin-bottom: 6px;
}
.faq-item__a a {
  color: var(--orange-color);
  text-decoration: underline;
}

body.faq-open {
  overflow: hidden;
}

@media screen and (max-width: 580px) {
  .faq-modal__body {
    padding: 24px;
  }
  .faq-modal__title {
    font-size: 2rem;
  }
  .faq-fab__text {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 980px) {
  .faq-modal__dialog {
    width: min(900px, 100%);
  }
  .faq-modal__aside {
    display: block;
    flex: 0 0 300px;
  }
  .faq-modal__body {
    padding: 48px;
  }
}


