<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&amp;display=swap"); */
@font-face {
  font-family: bahnchrift;
  src: url("../fonts/redmarket/BAHNSCHRIFT.TTF");
  font-weight: 300;
}
:root {
  --black: #282828;
}
/* * {
  font-family: "Montserrat", sans-serif;
} */
* {
  font-family: "bahnchrift", sans-serif;
}

:root {
  --red: #e41f29;
  --black: #282828;
  --dark-black: #000;
  --yellow: #f4b91f;
  --white: #f2f2f2;
  --gray: #707071;
}
a:active,
a:link,
a:focus,
a:visited,
a:hover,
a {
  color: inherit;
  text-decoration: none;
}
body {
  overflow-x: hidden;
}
footer ul li::marker {
  color: var(--white);
}
/* class */
.bg-black {
  /* background-color: var(--black); */
  background-color: var(--dark-black);
}
.fz-10 {
  font-size: 0.625rem;
}
.fz-12 {
  font-size: 0.75rem;
}
.fz-14 {
  font-size: 0.875rem;
}
.fz-18 {
  font-size: 1.125rem;
}
.fz-3 {
  font-size: 3rem;
}
.fz-1_5 {
  font-size: 1.5rem;
}
.fz-12-16 {
  font-size: clamp(0.75rem, 0.7037rem + 0.2469vw, 1rem);
}
.fz-movil {
  font-size: 1rem;
}
.btn {
  border-radius: 0;
}
ion-icon {
  font-size: 32px;
  color: var(--red);
}
.aspect__ratio {
  object-fit: contain;
}
.bg-light {
  background-color: #fff !important;
}
.primary__btn {
  color: #fff !important;
  background-color: #000;
  border-radius: 0px px;
}
.primary__btn:hover {
  color: #000 !important;
  background-color: #fff;
  border-radius: 0px px;
  border: 1px solid #000;
}
.secondary__btn {
  color: var(--dark-black) !important;
  background-color: var(--white);
  border-radius: 0px px;
}
.secondary__btn:hover {
  color: var(--white) !important;
  background-color: var(--dark-black);
  border-radius: 0px px;
  border: 1px solid var(--white);
}
.balance {
  text-wrap: balance;
}
.top-85 {
  top: 85%;
}
.start-35 {
  left: 36%;
}
nav i {
  /* color: var(--red); */
  color: var(--black);
}
.border-black-1 {
  border: 1px solid black;
}
/* NAV */
nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: transparent;
}

nav .wrapper {
  position: relative;
  max-width: 1884px;
  padding: 0px 30px;
  /* line-height: 70px; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* .nav-links li a:hover {
  background: var(--yellow);
}
.seleccionado {
  background: var(--yellow);
} */

.nav-links .mobile-item {
  display: none;
}
.mobile-item span {
  padding-left: 1rem;
}
.mobile-item-span {
  padding-left: 1rem;
}
.nav-links .drop-menu {
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 0px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 150px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .fz-movil {
    font-size: 0.75rem;
  }
  .start-35 {
    left: 25%;
  }
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 650px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #f3f3f300;
  }

  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }

  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }

  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }

  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: var(--black);
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid var(--black);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}
/* END NAV */

/* OWLCAROUSEL */
.owl-carousel {
  z-index: 0;
}
.owl-dots {
  position: absolute;
  bottom: 20px;
  padding: 0 auto;
  width: 100%;
}

.owl-item {
  width: 100vh;
}
.owl-imagen {
  height: 100vh;
  object-fit: cover;
}
/* END OWLCAROUSEL */

/* CARRUSEL MARCAS */

/* .owl-carousel-marcas { //Oculta en todos las resoluciones
display: none !important;
} */

.img-marcas-carrusel {
  object-fit: contain;
  max-height: 5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.owl-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-carousel-marcas .owl-dots {
  display: none !important;
}
.owl-carousel-marcas .owl-nav {
  display: none !important;
}

/* @media (max-width: 800px) {
.owl-carousel-marcas{
  display: block !important; //muestra solo en movile
}
} */
/*FIN CARRUSEL MARCAS */

/* CARRUSEL PRODUCTOS */
.productos-content {
  position: relative;
}
.productos-content .owl-dots {
  display: none;
}
.productos-content .owl-nav span {
  color: #2d2d2d;
  font-size: 2rem;
}

.owl-prev,
.owl-next {
  position: absolute;
  /* height: 100px; */
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
  transform: translateY(-50%);
  top: 50%;
}
.owl-prev {
  left: 5px;
  position: absolute;
}

.owl-next {
  position: absolute;
  right: 5px;
}
/* FIN CARRUSEL PRODUCTOS */

/* WHATS APP */
.sticky {
  display: block; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 9;
}
.sticky img {
  width: 60px;
}
.sticky_red {
  display: block; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 94px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 9;
}
.sticky_red img {
  width: 67px;
}
/* END WHATS APP */

/* MARCAS DESTACADAS */
#marcas__destacadas div {
  padding-right: 0;
}

/*FIN MARCAS DESTACADAS */

/* CATEGORIAS DESTACADAS */
.grid__items {
  grid-area: item;
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.categories {
  width: 50%;
  position: relative;
}
.categories a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sombra {
  width: 100%;
  height: 100%;
  background: linear-gradient(#ffffff00, #000203b2);
  position: absolute;
  top: 0;
}
.categories img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
}
.categories__title {
  position: absolute;
  bottom: 10%;
  z-index: 9;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  font-size: 2.68rem;
}
@media (max-width: 800px) {
  .grid__items {
    flex-direction: column;
  }
  .categories {
    width: 100%;
  }
}
/* FIN CATEGORIAS DESTACADAS*/

/* SALE */
.grid__sale {
  grid-area: sale;
  grid-area: sale;
  margin-top: 0.3rem;
  background-image: url("../img/categorias/g498.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sale__title h2 {
  margin-top: 7rem;
  font-size: calc(5rem + 10vw);
  text-transform: uppercase;
  color: #c60000;
  text-align: center;
}
.buttons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 16rem;
  gap: 0.5rem;
}
.buttons a {
  color: #fff;
  text-transform: uppercase;
  padding: 1rem 1rem;
  border: 1px solid #fff;
  border-radius: 10px;
  z-index: 9;
  width: 7rem;
  text-align: center;
}
.grid__sale .sombra {
  display: none;
}

@media (max-width: 800px) {
  .grid__sale .sombra {
    display: block;
  }
  .buttons {
    justify-content: space-evenly;
  }
}
/* FIN SALE */

/* IG */
.ig {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.ig img {
  padding: 0.5rem 0.1rem;
  max-width: 300px;
  object-fit: contain;
}
.feed_img {
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  width: 400px;
  height: 100%;
}

.container__feed {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas:
    ". . ."
    ". . .";
}
.feed_img {
  width: 100%;
  height: 100%;
}
@media (max-width: 700px) {
  .ig {
    display: flex;
    justify-content: center;
  }
  .ig img {
    padding: 0.5rem 0.5rem;
    max-width: 120px;
  }
  .feed_image {
    width: 90px;
  }
}
/* FIN IG */

/* NEWSLETTER */
.newsletter {
  /* background-color: #282828; */
  /* padding-top: 3rem;
  padding-bottom: 3rem; */
}
.newsletter__elements {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.newsletter__elements h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--black);
}
.newsletter__elements p {
  color: var(--black);
  text-align: center;
  padding-inline: calc(1rem + 2vh);
  max-width: 500px;
}
.form__img {
  width: auto;
  height: 10px;
  color: #fff;
}
.newsletter__form {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form__newsletter {
  width: 500px;
}
/* FIN NEWSLETTER */

/* PRODUCTOS */
.banner__productos {
  height: 50vh;
}

.container-full {
  width: 100%;
  padding: 0px 15px;
}

.noContent {
  display: none;
  margin-bottom: 100px;
}

.comprar-search_conteiner {
  padding: 40px 0;
}
.comprar-search_conteiner .search-row form {
  width: 100%;
  display: flex;
}

.search-cont {
  width: 100%;
  position: relative;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.comprar-gral {
  display: flex;
  background-color: white !important;
}
.box_card-comprar {
  display: block !important;
}
.comprar-filtros {
  background-color: var(--white);
}
.btn-filtros {
  display: none;
}
.comprar-gral_title {
  padding-top: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.comprar-orden {
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 5px;
}
.comprar-form_filtros {
  display: flex;
  flex-direction: column;
}
.comprar-form_filtros label {
  margin-top: 25px;
}
.comprar-form_filtros select {
  border: none;
  padding: 10px;
  outline: none;
  cursor: pointer;
}
.comprar-form_filtros div {
  padding: 0;
}
.comprar-form_filtros div input {
  border: none;
  padding: 10px;
  margin-right: 15px;
}

.comprar-form_filtros .select {
  position: relative;
  width: 100%;
}
.select-duo {
  display: flex;
}
.select-duo div {
  margin-right: 15px;
}
.comprar-form_filtros select {
  width: 100%;
}
.comprar-form_filtros .select::after {
  content: "\25BC";
  color: var(--yellow);
  background-color: var(--black);
  padding: 9px;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}

.comprar-form_filtros button {
  width: 50%;
  background-color: var(--black);
  color: var(--yellow);
  border: none;
  outline: none;
  padding: 10px;
  margin-top: 25px;
  align-self: flex-end;
}
.paginador {
  padding: 35px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.paginador div a {
  color: black;
}
.paginador div span {
  margin: 0px 15px;
}
.paginador .botones {
  background-color: #007934;
  padding: 5px 10px;
  color: white;
}
.paginador .disabled {
  opacity: 0.5;
  pointer-events: none;
}
.mycontainer {
  width: 100%;
}

@media screen and (min-width: 748px) and (max-width: 767px) {
  #section_products .box_filter {
    top: -415px !important;
  }
}

@media screen and (min-width: 503px) and (max-width: 575px) {
  #section_products .box_filter {
    top: -535px !important;
  }
}

/* Imagenes */
.obj__fit {
  object-fit: contain;
}

@media screen and (max-width: 480px) {
  .comprar-gral {
    flex-direction: column;
  }
  .banner__productos {
    /* height: 100vh; */
  }
  .comprar-gral_title {
    padding: 0;
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .comprar-gral_title div h3 {
    text-align: center;
  }
  .comprar-gral_title div {
    max-height: 100px;
  }
  .comprar-gral_title div p {
    font-size: 13px;
    text-align: center;
  }

  .paginador {
    padding: 35px 0;
  }
}
@media screen and (min-width: 1024px) {
  .search-row button {
    font-size: 1rem;
    background-image: none;
    width: auto;
  }

  .comprar-gral {
    flex-direction: row;
  }
  .btn-filtros {
    display: none;
  }
  .comprar-form_filtros {
    display: flex;
  }
  .comprar-form_filtros div input {
    margin-right: 10px;
  }
  .comprar-gral_title {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .comprar-gral_title div h3 {
    text-align: left;
  }
  .comprar-gral_title div p {
    font-size: 13px;
    text-align: end;
  }
}

.btn-filtros {
  display: block;
  padding: 15px 0;
  margin: 10px 0;
  margin-left: 15px;
  text-decoration: none;
  color: var(--black);
}

.btn-filtros:active,
.btn-filtros:focus,
.btn-filtros:hover {
  text-decoration: none;
  color: var(--black);
}

.comprar-filtros,
.comprar-form_filtros {
  margin-bottom: 50px;

  display: none;
}
.comprar-filtros.active,
.comprar-form_filtros.active {
  display: block;
}

.card-title {
  font-weight: 700;
}
.card-text {
  color: var(--gray);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 12px;
}
.card-img-top {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  height: 100%;
  object-fit: cover;
}

/* DETALLE PRODUCTOS */

/* .containers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "producto_primera_imagen producto_primera_imagen detalle"
    "producto_primera_imagen producto_primera_imagen detalle"
    "otras_fotos otras_fotos detalle";
} */
/* .grid_container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas:
    "producto_primera_imagen "
    "detalle"
    "otras_fotos";
} */
/* .producto_primera_imagen {
  grid-area: producto_primera_imagen;
}

.detalle {
  grid-area: detalle;
}
.detalle_colores_talles {
  grid-area: detalle_colores_talles;
} */

/* .otras_fotos {
  grid-area: otras_fotos;
} */
.detalleColor {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  outline: 1px solid #333333;
}

.input__radio {
  display: none;
  opacity: 0;
}
.input__radio--label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 12px;
  color: #000;
  padding: 5px 6px 4px 6px;
  border: 1px solid #000;
  text-align: center;
  text-transform: uppercase;
}

.input__radio:checked + .input__radio--label {
  color: #fff;
  background-color: #000;
}
#cantidad {
  width: 50px;
  border: none;
}
#cantidad:focus-visible {
  outline: none;
}

#form__agregar_carro button {
  color: #fff;
  background-color: #000;
  border-radius: 0px;
}
.carousel-inner {
  /* height: 645px; */
}
.carousel-control-prev-icon {
  background-color: #000;
}
.carousel-control-next-icon {
  background-color: #000;
}
.img-carousel {
  object-fit: contain;
  max-height: 600px;
}
.input_cantidad {
  width: 25%;
  border-radius: 0px;
}

/* MENU MARCAS */
.wrapper__custom {
  position: relative;
  max-width: 1884px;
  padding: 0px 30px;
  margin: auto;
}
.container__menu_marcas {
  position: absolute;
  top: 140px;
  left: 0rem;
  z-index: 2;
  padding-left: 3rem;
}
.link {
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

.dropdown__menu {
  position: absolute;
  left: 113px;
  top: 0;
  background-color: rgba(0, 0, 0, 0.521);
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 200ms ease-in-out, transform 250ms ease-in-out;
  pointer-events: none;

  padding: 1.5rem;
  border-radius: 15px;
}

.dropdown.active &gt; .link + .dropdown__menu {
  opacity: 1;
  transform: translateX(0px);
  pointer-events: auto;
  z-index: 9;
}

.links__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.marca__container {
  width: 200px;
}
/* .link img {
  width: 50%;
} */
.dropdown__heading p {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline 2px;
  padding-top: 0.5rem;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 0px;
}
.dropdown__links {
  padding-top: 0.3rem;
  display: flex;
  flex-direction: column;
}
.dropdown__links a {
  color: #fff;
  text-transform: uppercase;
  padding-top: 0.5rem;
  font-size: 12px;
}

@media (max-width: 800px) {
  .container__menu_marcas {
    display: none;
  }
}
/* FIN MENU MARCAS */

/* SLIDER IMAGENES DETALLE MOVIL */
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 100%;
  border-radius: 0;
  margin: 0 !important;
  height: 2px;
  background: 0 0;
}

.swiper-scrollbar {
  background-color: transparent;
}
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background-color: #ffffff80;
  width: 40px;
  border-radius: 50%;
  height: 40px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 27px;
}
.marquee {
  background-color: #000000;
  color: #ffffff;
  font-feature-settings: unset;
  font-size: 12px;
  overflow: hidden;
  padding: 0;
}

.marquee--long {
  font-size: 12px;
  font-weight: 200;
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  color: #ffffff;
  width: var(--tw);

  text-shadow: var(--tw) 0 currentColor, calc(var(--tw) * 2) 0 currentColor,
    calc(var(--tw) * 3) 0 currentColor, calc(var(--tw) * 4) 0 currentColor,
    calc(var(--tw) * 5) 0 currentColor, calc(var(--tw) * 6) 0 currentColor,
    calc(var(--tw) * 7) 0 currentColor;

  will-change: transform;
  animation: marquee var(--ad) linear infinite;
  animation-play-state: running;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Bigmenu bootstrap */
.navbar .megamenu {
  padding: 1rem;
}
.nav__logo {
  width: 130px;
}
.navbar-light .navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
/* ============ desktop view .end// ============ */
.btn_gorras {
  transform: translate(-50%, -50%) !important;
  top: 50% !important;
  left: 76% !important;
}
/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
  .nav__logo {
    width: 100px;
  }
  .btn_gorras {
    transform: translate(-50%, -50%) !important;
    top: 85% !important;
    left: 50% !important;
  }
}
/* ============ mobile view .end// ============ */
.dropdown-menu {
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--black);
}
.link-hover {
  position: relative;
  color: #000;
  text-decoration: none;
}
.link-hover::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 1px;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.link-hover:hover::before {
  transform: scaleX(1);
}

.input_news {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid;
  color: var(--white);
  background-color: transparent;
}
.input_news:focus {
  box-shadow: none;
  border-color: var(--dark-black);
}

.form-check-input_news:checked {
  background-color: var(--dark-black);
  border-color: var(--white);
}
.form-check-input_news:focus {
  box-shadow: 0 0 0 0.25rem rgba(227, 227, 228, 0.25);
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  display: block;
  width: var(--undeline-w);
  height: 3px;
  background: linear-gradient(to right, #fff, #212529);
  position: absolute;
  bottom: 2px;
  right: 0;
}

/* popover */
.popover__wrapper {
  position: relative;
  margin-top: 1.5rem;
  display: inline-block;
}

.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -3px;
  top: -85px;
  transform: translate(0, 10px);
  background-color: var(--white);
  padding: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.082);
  width: auto;
}

.popover__content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: calc(50% - 10px);
  top: 92px;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: var(--white) transparent transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.popover__wrapper:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.popover__message {
  text-align: center;
}
#descWeb {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-height: 7.5em;
  /* Aproximadamente 5 lÃ­neas si fz-12 = 1.5em */
  transition: max-height 0.3s ease;
}

#descWeb.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}

.carousel-indicators {
  gap: 0.75rem;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 100% !important;
}
/* .marca::before {
  content: "\25CF";
  margin: 0 20px;
  color: var(--white);
}

.marca:first-child::before {
  content: "";
  margin: 0;
} */
</pre></body></html>