@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.custom-wrapper {
  background-color: white;
  border-radius: 15px;
  margin-block: 1rem;
  box-shadow: 0px 1.60101px 8.00503px rgba(0, 0, 0, 0.25); }
  @media (min-width: 888px) {
    .custom-wrapper {
      margin-inline: 1rem; } }
  .custom-wrapper--steps {
    background-color: unset; }
    @media (min-width: 888px) {
      .custom-wrapper--steps {
        padding: 2rem 6rem;
        background-color: white; } }
    @media (max-width: 888px) {
      .custom-wrapper--steps {
        box-shadow: none; } }
  .custom-wrapper--agregar {
    padding: 1rem 2rem;
    cursor: initial !important; }
  .custom-wrapper--metodo-envio {
    padding: 2rem; }
  .custom-wrapper--metodo-pago {
    padding: 1rem; }
    @media (min-width: 888px) {
      .custom-wrapper--metodo-pago {
        padding: 2rem; } }
  .custom-wrapper--finalizar-pedido {
    padding: 2rem; }

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; }
  .steps .step-button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    transition: .4s;
    background-color: grey; }
    .steps .step-button.completado {
      background-color: #07C98B;
      color: white; }
      .steps .step-button.completado::before {
        font: var(--fa-font-solid) !important;
        content: "\f00c" !important;
        color: white !important; }
    .steps .step-button.incompleto {
      background-color: grey; }
    .steps .step-button.actual {
      background-color: #FF0000;
      border: 1px solid #151515; }
  .steps .step-item {
    z-index: 10;
    text-align: center; }
    .steps .step-item:nth-child(2) .step-button::before {
      content: '1'; }
    .steps .step-item:nth-child(3) .step-button::before {
      content: '2'; }
    .steps .step-item:nth-child(4) .step-button::before {
      content: '3'; }
  .steps #progress {
    width: 95%;
    -webkit-appearance: none;
    position: absolute;
    z-index: 5;
    height: 10px;
    margin-left: 32px;
    margin-bottom: 18px;
    border-radius: 20px;
    border: none; }
    @media (max-width: 888px) {
      .steps #progress {
        width: 85%; } }
    .steps #progress::-webkit-progress-bar {
      background-color: #fff !important; }
  .steps #progress::-webkit-progress-value {
    background-color: #07C98B;
    transition: .5s ease;
    border-radius: 2rem; }

.minicart-list-checkout {
  width: 100%; }
  @media (min-width: 888px) {
    .minicart-list-checkout .checkout-product-wrapper {
      height: 40vh !important;
      overflow-y: scroll; } }
  .minicart-list-checkout .checkout-titulo {
    font-size: 1.2rem;
    font-weight: 500;
    color: #151515;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #BDBDBD;
    margin-inline: 1rem; }
  .minicart-list-checkout .checkout-product {
    display: flex;
    padding: .5rem 1rem;
    width: 100%; }
    .minicart-list-checkout .checkout-product--img {
      width: 25%;
      display: flex; }
      .minicart-list-checkout .checkout-product--img img {
        object-fit: contain; }
    .minicart-list-checkout .checkout-product--content {
      padding: 1rem;
      font-weight: 400;
      font-size: .9rem;
      width: 100%; }
    .minicart-list-checkout .checkout-product--cantprecio {
      display: flex;
      justify-content: space-between;
      padding-inline: 1rem;
      padding-top: .1rem;
      margin-top: 1rem;
      text-align: right;
      width: 100%;
      border-top: 1px solid #BDBDBD;
      color: #BDBDBD; }
    .minicart-list-checkout .checkout-product--precio {
      font-weight: 600;
      font-size: 1rem; }
  .minicart-list-checkout .checkout-totals {
    border-top: 2px solid #BDBDBD;
    padding: 5% 5% !important;
    font-weight: 300;
    color: #151515;
    font-size: .9rem; }
    .minicart-list-checkout .checkout-totals u {
      margin-right: 2rem;
      text-decoration: none; }
    .minicart-list-checkout .checkout-totals--subtotal {
      padding-bottom: .1rem;
      display: flex;
      justify-content: space-between; }
    .minicart-list-checkout .checkout-totals--total {
      padding-top: .5rem;
      font-weight: 700;
      font-size: 1.1rem;
      display: flex;
      justify-content: space-between; }
    .minicart-list-checkout .checkout-totals--descuento {
      padding-bottom: .1rem;
      display: flex;
      justify-content: space-between; }
    .minicart-list-checkout .checkout-totals--envio .envio-precio {
      padding-bottom: .1rem;
      display: flex;
      justify-content: space-between; }

.cart-checkout-wrapper {
  position: sticky;
  top: 4rem;
  height: min-content; }

.card-direccion {
  padding: 1rem;
  border: 1px solid #FF0000;
  border-radius: 15px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0px 1.60101px 8.00503px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  height: 100%; }
  .card-direccion--agregar {
    cursor: initial; }
  .card-direccion.active {
    border: 3px solid #FF0000;
    box-shadow: 0 1.6px 8px rgba(0, 0, 0, 0.75); }
  .card-direccion--header {
    text-align: center; }
  .card-direccion--footer {
    font-size: .8rem;
    font-weight: 300;
    color: #D41601; }
    .card-direccion--footer a {
      font-weight: 600;
      color: inherit; }
  .card-direccion u {
    text-decoration: none;
    font-weight: 300; }
  @media (max-width: 888px) {
    .card-direccion--agregar {
      padding: 0;
      margin: 0;
      border: none;
      border-radius: unset;
      box-shadow: none; } }

.agregar-direccion {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100%; }
  .agregar-direccion--button {
    height: 40px;
    width: 40px;
    font-size: .9rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center; }
  .agregar-direccion--text {
    width: 100%;
    text-align: center;
    transition: color .3s;
    font-size: .9rem; }
    .agregar-direccion--text:hover {
      color: #FF0000; }

.direcciones-entrega {
  display: flex; }
  .direcciones-entrega--titulo {
    font-size: 1rem; }
  .direcciones-entrega--subtitulo {
    font-size: .9rem;
    font-weight: 300;
    color: #BDBDBD; }

.nueva-direccion-wrapper {
  padding: 1rem 2rem;
  align-items: center; }
  @media (max-width: 888px) {
    .nueva-direccion-wrapper {
      padding: .1rem; } }
  .nueva-direccion-wrapper .custom-input {
    margin-bottom: 1rem; }
    .nueva-direccion-wrapper .custom-input label {
      background-color: white; }

.metodo-envio {
  padding: 2rem; }
  .metodo-envio--error {
    display: flex;
    justify-content: center; }

.continuar-compra {
  display: flex;
  justify-content: end; }
  .continuar-compra button {
    width: 30%; }

.metodo-pago .valor-a-pagar {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: center; }
  @media (max-width: 888px) {
    .metodo-pago .valor-a-pagar {
      font-size: .9rem; } }
.metodo-pago .doble-pago-buttons {
  display: flex;
  justify-content: center; }

.radio-pago-wrapper .radio-pago {
  padding: .5rem 2rem;
  margin-block: .5rem;
  width: 100%;
  font-size: .9rem;
  cursor: pointer; }
  .radio-pago-wrapper .radio-pago.active {
    border: 2px solid #FF0000;
    box-shadow: 0 1.6px 8px rgba(0, 0, 0, 0.25); }
    .radio-pago-wrapper .radio-pago.active .custom-card--descripcion {
      color: #151515; }
  .radio-pago-wrapper .radio-pago input {
    display: none; }

.tarjetas {
  padding: 1rem 3rem; }
  .tarjetas--cuotas {
    margin-top: 1rem; }

.finalizar-pedido .card-resumen {
  padding: 1rem;
  margin-block: .5rem;
  font-size: .9rem; }

.pedido-success {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-block: 10%; }
  .pedido-success h1 {
    width: 100%;
    text-align: center;
    color: #FF0000;
    font-size: 1.6rem; }
  .pedido-success h2 {
    color: #151515;
    font-size: 1.2rem;
    width: 100%;
    text-align: center; }

.facturacion .custom-input {
  margin-top: .75rem; }
  .facturacion .custom-input label {
    background-color: white; }

footer .footer {
  position: relative;
  z-index: 500;
  padding: 2rem;
  color: #151515;
  background-color: #D9D9D9;
  font-weight: 300;
  font-size: 1rem; }
  @media (max-width: 888px) {
    footer .footer {
      font-size: .9rem;
      line-height: 1.4; } }
  footer .footer dt {
    margin-bottom: 1rem; }
  footer .footer .logo {
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    @media (max-width: 888px) {
      footer .footer .logo {
        margin-bottom: 1rem; } }
    footer .footer .logo img {
      width: 100px;
      object-fit: contain; }
    footer .footer .logo .redes {
      display: flex;
      justify-content: center;
      align-items: baseline;
      width: 100%; }
      @media (max-width: 888px) {
        footer .footer .logo .redes {
          margin-top: .5rem; } }
      footer .footer .logo .redes a {
        margin: 0 .2rem; }
        footer .footer .logo .redes a i {
          font-size: 2rem; }
  footer .footer .contactanos address dd {
    margin-bottom: 0.25rem; }
    footer .footer .contactanos address dd a {
      margin-left: .5rem; }
  footer .footer .contactenme {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center; }
    footer .footer .contactenme dd {
      display: flex;
      justify-content: center; }
      @media (min-width: 888px) {
        footer .footer .contactenme dd a {
          margin-top: .5rem;
          padding: .75rem 1.25rem;
          font-weight: 500; } }
      @media (max-width: 888px) {
        footer .footer .contactenme dd a {
          font-size: .8rem;
          padding: .25rem .5rem; } }
footer .copy {
  background-color: #151515;
  color: white;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }
  @media (max-width: 888px) {
    footer .copy {
      margin-bottom: 70px;
      font-size: .8rem; } }
  footer .copy a {
    color: white; }
  footer .copy .logo-tcommerce {
    padding: 0.5rem 1rem; }
    footer .copy .logo-tcommerce img {
      width: 150px; }

header {
  background-color: #FF0000;
  position: absolute;
  width: 85%;
  z-index: 1050 !important;
  border-radius: 35px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  margin: 1% 7.5% 0 7.5%;
  height: 65px; }
  header .main-header .container,
  header .header-middle .container {
    max-width: 95%; }
  @media (max-width: 888px) {
    header {
      height: 55px;
      margin: 4% 2.5% 0 2.5%;
      padding-block: .25rem;
      width: 95%; }
      header .btn {
        font-size: .75rem; } }
  header .sticky {
    height: 65px;
    background-color: inherit !important;
    padding-block: .25rem; }
  header .nimbus-links a {
    font-weight: 400 !important;
    font-size: 1rem !important;
    color: #151515 !important; }
  header .header-logo {
    padding-left: 2.5rem; }
    header .header-logo img {
      width: 6rem; }
    @media (max-width: 888px) {
      header .header-logo {
        padding-left: 1rem;
        width: 25%; } }
  @media (min-width: 888px) {
    header .carrito-box {
      cursor: initial !important; }
      header .carrito-box--body {
        padding: 0 2rem 2rem 2rem !important;
        top: 4rem !important;
        right: -57px !important;
        width: 550px !important;
        position: absolute !important;
        overflow: unset !important;
        border-radius: .8rem;
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
        color: #151515;
        min-height: 300px !important;
        height: max-content !important; } }
  @media (max-width: 888px) {
    header .carrito-box {
      position: fixed;
      height: auto !important;
      z-index: 5000;
      width: 70%; } }
  @media (max-width: 888px) {
    header .minicart {
      height: auto !important;
      justify-content: center !important;
      padding: 2.5rem 2rem !important; } }
  header .minicart--heading {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    padding: 1rem .5rem; }
    header .minicart--heading .button-close {
      font-size: 1.5rem; }
  header .minicart--triangulo {
    position: absolute;
    top: -51;
    font-size: 100px;
    color: white;
    right: 70px; }
    @media (max-width: 888px) {
      header .minicart--triangulo {
        display: none; } }
  header .minicart--content {
    margin: .5rem .75rem;
    margin: auto;
    width: 100%; }
    header .minicart--content .no-hay-pedido {
      text-align: center; }
  header .minicart--list {
    overflow-y: scroll;
    height: 40vh; }
    header .minicart--list .producto-carrito {
      margin-right: 1rem;
      padding-block: .6rem;
      display: flex;
      position: relative;
      align-items: center;
      border-bottom: 1px solid #BDBDBD; }
      header .minicart--list .producto-carrito--eliminar {
        position: absolute;
        right: 0;
        top: 0;
        color: #FF0000;
        font-size: 1.2rem;
        padding-top: .5rem;
        cursor: pointer; }
      header .minicart--list .producto-carrito--imagen {
        width: 25%; }
      header .minicart--list .producto-carrito--contenido {
        position: relative;
        width: 100%;
        margin: .5rem 1.5rem; }
        header .minicart--list .producto-carrito--contenido--titulo {
          width: 100%; }
        header .minicart--list .producto-carrito--contenido .add--cantidad {
          border: 2px solid #FF0000 !important;
          width: 6rem; }
        header .minicart--list .producto-carrito--contenido--precio {
          font-weight: 500;
          font-size: 1rem;
          color: #151515;
          position: absolute;
          bottom: .5rem;
          right: 1rem; }
  header .minicart--total {
    margin-top: 1rem;
    background-color: #fff;
    border-radius: inherit;
    padding: 1rem !important;
    font-size: 1rem;
    display: flex;
    justify-content: space-between; }
  header .minicart--footer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1rem; }
    header .minicart--footer .btn-ver {
      height: 1.5rem;
      padding: 1.5rem 2rem;
      font-size: 1.1rem; }
    header .minicart--footer .btn-vaciar {
      margin-top: .5rem;
      width: 100%;
      color: #FF0000;
      text-align: center; }
  header .btn-user {
    height: 2.25rem; }
    header .btn-user--auth {
      font-size: 1rem; }
      header .btn-user--auth::before {
        font: var(--fa-font-regular);
        content: "\f007"; }
    header .btn-user--noauth {
      font-size: 1rem; }
      header .btn-user--noauth::before {
        content: "Ingreso"; }
  @media (max-width: 888px) {
    header .btn-search {
      display: none !important; } }
  header .btn-search--icon::before {
    font: var(--fa-font-solid);
    content: "\f002"; }

#mobileMenu {
  width: 350px; }
  #mobileMenu .offcanvas-header {
    background-color: #FF0000; }
    #mobileMenu .offcanvas-header img {
      width: 6rem; }
  #mobileMenu .offcanvas-body .navbar-nav {
    padding-left: 0; }
    #mobileMenu .offcanvas-body .navbar-nav .navbar-nav {
      padding-left: 5%; }
  #mobileMenu .offcanvas-body .nav-item {
    font-size: 1.1rem;
    border-bottom: 1px solid #BDBDBD;
    padding-block: .1rem;
    position: relative; }
    #mobileMenu .offcanvas-body .nav-item:last-child {
      border-bottom: none; }
    #mobileMenu .offcanvas-body .nav-item--productos .icon {
      position: absolute;
      right: 0;
      top: 0;
      color: #FF0000;
      font-size: 1.2rem;
      padding-top: .5rem;
      cursor: pointer;
      width: 50px;
      display: flex;
      justify-content: end;
      height: 100%; }
  #mobileMenu .offcanvas-footer {
    padding: .5rem 0;
    background-color: #151515; }

.menu-mobile-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 5000;
  background-color: white;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  padding-block: .75rem; }
  @media (min-width: 888px) {
    .menu-mobile-bottom {
      display: none; } }
  .menu-mobile-bottom--item {
    width: 25%; }
    .menu-mobile-bottom--item a {
      color: #313131;
      text-align: center; }
    .menu-mobile-bottom--item--icon {
      font-size: 1.5rem;
      text-align: center;
      color: #FF0000; }
    .menu-mobile-bottom--item--text {
      text-align: center;
      font-size: .8rem;
      padding-top: .2rem; }

.drop-holder {
  position: relative; }
  .drop-holder .drop-menu {
    background-color: #151515;
    border-radius: 5px;
    left: 0;
    padding: 1rem 0rem 1rem 2rem; }
    .drop-holder .drop-menu a {
      color: white !important; }
    .drop-holder .drop-menu li {
      border-bottom: 0.5px solid #BDBDBD;
      margin-bottom: .7rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: .5rem; }
      .drop-holder .drop-menu li:hover {
        position: relative; }
      .drop-holder .drop-menu li .icon {
        padding-inline: 1rem;
        padding-right: 1.5rem;
        right: 0;
        color: #FF0000; }

.dropdown-menu {
  background-color: #151515; }
  .dropdown-menu .dropdown-item {
    color: white; }
    .dropdown-menu .dropdown-item:hover {
      background-color: #FF0000;
      color: #151515; }

.searchbox {
  padding: 1.5rem;
  position: absolute;
  width: 100%;
  right: 0;
  top: 100%;
  background-color: white;
  border: 1px solid #f9bd24;
  border-radius: 7px;
  box-shadow: 0px 1.60101px 8.00503px rgba(0, 0, 0, 0.25); }
  .searchbox .custom-input label {
    background: white; }
  .searchbox--titulo {
    display: none;
    font-weight: bold;
    font-size: 1.2rem; }
  .searchbox--listado ul {
    list-style: initial !important; }
  .searchbox--listado--titulo {
    font-weight: bold;
    margin-top: .5rem; }

#buscadorModal .modal-dialog {
  margin-top: 25vh; }

.custom-wrapper--registrar-comercio {
  padding: 2rem; }
  @media (max-width: 888px) {
    .custom-wrapper--registrar-comercio {
      padding: 0; } }

.pagina-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1800;
  background-color: #fff;
  display: flex;
  align-items: center;
  overflow: auto; }
  @media (max-width: 888px) {
    .pagina-login {
      position: absolute;
      height: 100vh;
      padding-top: 20%;
      overflow-y: scroll;
      overflow-x: hidden; } }
  .pagina-login--logo {
    position: absolute;
    top: 5%;
    left: 5%; }
    .pagina-login--logo img {
      width: 7rem; }
  .pagina-login--content {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5%; }
    @media (min-width: 888px) {
      .pagina-login--content {
        flex-wrap: wrap;
        align-content: center; } }
    @media (max-width: 888px) {
      .pagina-login--content {
        width: 100%; } }
    .pagina-login--content .login--wrapper {
      padding-inline: 20%; }
  .pagina-login--image {
    width: 50%;
    height: 100%; }
    @media (max-width: 888px) {
      .pagina-login--image {
        display: none !important; } }
    .pagina-login--image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.login {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .login--title {
    text-align: center;
    margin-bottom: 1rem; }
  .login--wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-inline: 10%; }
    .login--wrapper .custom-input {
      width: 100%;
      margin-top: 1.25rem; }
    .login--wrapper--olvide {
      display: flex;
      justify-content: end;
      width: 100%; }
      .login--wrapper--olvide .btn-olvide-contraseña {
        color: #151515 !important; }
    .login--wrapper--ingresar {
      margin-top: 1.25rem;
      width: 100%; }
      @media (max-width: 888px) {
        .login--wrapper--ingresar {
          display: flex;
          justify-content: center; } }
      .login--wrapper--ingresar button {
        padding: .5rem 3rem; }
    .login--wrapper--registrate {
      margin-top: 1.25rem;
      width: 100%;
      font-weight: 300; }
      @media (max-width: 888px) {
        .login--wrapper--registrate {
          display: flex;
          justify-content: center; } }
      .login--wrapper--registrate a {
        margin-left: .25rem;
        font-weight: 600; }
    .login--wrapper--volver {
      display: flex;
      justify-content: end;
      margin-top: 2rem; }
      .login--wrapper--volver button {
        color: #151515; }
    .login--wrapper .btn-recuperar {
      margin-top: 1.25rem;
      padding: .5rem 3rem; }

.registro-ocasional {
  padding: 5%;
  height: 100%;
  width: 100%; }
  .registro-ocasional .custom-input {
    margin-bottom: 1rem; }
  .registro-ocasional--choices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    min-height: 85vh;
    align-content: center; }
  .registro-ocasional .btn-registro {
    width: 100%;
    font-size: 1.5rem;
    background-color: #FF0000;
    color: white;
    transition: .3s ease-in-out; }
    .registro-ocasional .btn-registro:hover {
      opacity: .8; }

.registrar-comercio .custom-input {
  margin: .25rem; }
  .registrar-comercio .custom-input label {
    background-color: white; }

.mi-cuenta .custom-card {
  margin: .5rem; }
.mi-cuenta .card-direccion {
  height: unset; }
.mi-cuenta .custom-input {
  margin: 1rem; }
  .mi-cuenta .custom-input label {
    background-color: white; }

.pedido-info {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: .9rem;
  border-bottom: 1px solid #F9F9F9;
  margin-bottom: .5rem; }
  @media (max-width: 888px) {
    .pedido-info {
      padding-top: 1rem; } }

.pedido-wrapper {
  border-radius: 15px; }
  @media (min-width: 888px) {
    .pedido-wrapper {
      padding: 1rem 2rem; } }

.product-mini-wrapper--pedido .product-item {
  position: relative; }
  .product-mini-wrapper--pedido .product-item .product-img {
    width: 25%;
    padding: 1rem;
    height: unset;
    border: none; }
    @media (max-width: 888px) {
      .product-mini-wrapper--pedido .product-item .product-img {
        width: 40%; } }
  .product-mini-wrapper--pedido .product-item .product-content {
    width: 75%;
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    @media (max-width: 888px) {
      .product-mini-wrapper--pedido .product-item .product-content {
        width: 60%; } }
    .product-mini-wrapper--pedido .product-item .product-content--left {
      width: 35%;
      border-right: 1px solid #F9F9F9; }
      @media (max-width: 888px) {
        .product-mini-wrapper--pedido .product-item .product-content--left {
          width: 100%;
          border-right: none; } }
    .product-mini-wrapper--pedido .product-item .product-content--center {
      width: 30%;
      display: flex;
      justify-content: end;
      padding-left: 1rem; }
      @media (max-width: 888px) {
        .product-mini-wrapper--pedido .product-item .product-content--center {
          width: 100%;
          justify-content: start; } }
    .product-mini-wrapper--pedido .product-item .product-content--right {
      width: 35%; }
      @media (max-width: 888px) {
        .product-mini-wrapper--pedido .product-item .product-content--right {
          width: 100%;
          display: flex;
          justify-content: start !important; } }
    .product-mini-wrapper--pedido .product-item .product-content .product-name {
      height: auto; }
    .product-mini-wrapper--pedido .product-item .product-content .add {
      width: 6rem; }
      .product-mini-wrapper--pedido .product-item .product-content .add--cantidad button {
        color: black; }
    .product-mini-wrapper--pedido .product-item .product-content .precio-cantidad-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: end;
      align-items: center;
      padding-inline: 5%; }
      @media (max-width: 888px) {
        .product-mini-wrapper--pedido .product-item .product-content .precio-cantidad-wrapper {
          padding-top: .5rem; } }
      .product-mini-wrapper--pedido .product-item .product-content .precio-cantidad-wrapper .descuento {
        color: #07C98B;
        font-size: .75rem;
        width: max-content;
        padding-right: .5rem; }
      .product-mini-wrapper--pedido .product-item .product-content .precio-cantidad-wrapper .old-price {
        width: max-content;
        font-weight: 600;
        font-size: 1.35rem; }
      .product-mini-wrapper--pedido .product-item .product-content .precio-cantidad-wrapper .precio {
        width: 100%;
        font-size: 1.6rem;
        text-align: right; }
  .product-mini-wrapper--pedido .product-item .product-remove {
    position: absolute;
    bottom: 1rem;
    right: 1rem; }

.box-precio {
  margin-top: 1rem;
  padding: 1rem;
  height: min-content;
  font-size: 1rem;
  text-align: left; }
  @media (min-width: 888px) {
    .box-precio {
      position: sticky;
      top: 4.5rem;
      right: 0;
      box-shadow: 0px 1.60101px 8.00503px rgba(0, 0, 0, 0.25);
      border-radius: 15px;
      background-color: white; } }
  .box-precio--titulo {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px solid #F9F9F9; }
    @media (max-width: 888px) {
      .box-precio--titulo {
        display: none; } }
  .box-precio--descuento {
    padding-left: 4rem;
    font-weight: 400; }
  .box-precio--subtotal {
    padding-left: 4rem;
    font-weight: 400;
    color: #D9D9D9; }
  .box-precio--total {
    padding-left: 4rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 600; }
  .box-precio .boton-comprar {
    display: flex;
    justify-content: end;
    height: 3.5rem;
    margin-top: 1rem; }
    .box-precio .boton-comprar button {
      font-size: 1.2rem; }

.mis-pedidos--titulo {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center; }
.mis-pedidos u {
  color: #151515;
  font-weight: bold;
  text-decoration: none; }
.mis-pedidos .custom-card {
  font-size: .9rem;
  margin-bottom: .5rem; }
  @media (min-width: 888px) {
    .mis-pedidos .custom-card {
      margin: 1rem; } }
  .mis-pedidos .custom-card .ver-detalles-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: center; }
    @media (max-width: 888px) {
      .mis-pedidos .custom-card .ver-detalles-wrapper {
        justify-content: center; } }
  .mis-pedidos .custom-card .custom-wrapper {
    margin: 0; }

.pedidos-navbar {
  margin-block: 1rem;
  display: flex;
  justify-content: center;
  position: relative; }
  .pedidos-navbar--seguir-comprando {
    position: absolute;
    left: 0;
    top: 0;
    margin: 1rem;
    z-index: 1500; }
    @media (max-width: 888px) {
      .pedidos-navbar--seguir-comprando {
        position: relative;
        width: 50%;
        margin: 0; } }
    .pedidos-navbar--seguir-comprando::before {
      font: var(--fa-font-solid) !important;
      content: "\f053" !important;
      margin-right: 4px; }
  @media (max-width: 888px) {
    .pedidos-navbar--logo {
      width: 50%;
      text-align: right; }
      .pedidos-navbar--logo img {
        width: 6rem; } }

#loginModal .custom-input label {
  background-color: white; }

.banners img {
  width: 100%; }

.swiper {
  overflow: hidden;
  padding-top: .5rem; }
  @media (max-width: 888px) {
    .swiper.CategoriasSwiper, .swiper.MarcasSwiper {
      padding-left: 5%; } }
  @media (min-width: 888px) {
    .swiper.CategoriasSwiper, .swiper.MarcasSwiper {
      margin: 0 10%; } }
  .swiper .swiper-wrapper {
    height: min-content;
    margin-bottom: 1.5rem; }
  .swiper .swiper-scrollbar {
    display: none; }
    .swiper .swiper-scrollbar .swiper-scrollbar-drag {
      background-color: #FF0000; }

.carousel-button-control-next,
.carousel-button-control-prev {
  background: white !important;
  color: #FF0000;
  padding: 1rem;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid lightgrey; }
  .carousel-button-control-next i,
  .carousel-button-control-prev i {
    font-size: 1.5rem; }

.button-next,
.button-prev {
  opacity: 1;
  visibility: visible;
  border-radius: 50%;
  background-color: white;
  font-weight: bold !important;
  border: 1px solid lightgray;
  opacity: 1;
  visibility: visible;
  position: absolute;
  top: 50%;
  z-index: 200; }
  @media (max-width: 888px) {
    .button-next,
    .button-prev {
      display: none; } }

.button-next {
  right: 5rem; }

.button-prev {
  left: 5rem; }

.banner-news .carousel {
  width: 100%; }
  @media (min-width: 888px) {
    .banner-news .carousel {
      height: 100vh; } }
  .banner-news .carousel img {
    height: 100%;
    object-fit: cover;
    min-height: 100%; }
    @media (max-width: 888px) {
      .banner-news .carousel img {
        object-fit: contain; } }

.categorias {
  padding: 1rem 0; }
  .categorias .ver-marcas {
    display: none !important; }
  .categorias .card-categoria .card-icon {
    height: 6rem;
    width: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px 1.60157px 9.48353px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 1.60157px 9.48353px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 1.60157px 9.48353px rgba(0, 0, 0, 0.5);
    overflow: hidden; }
    @media (max-width: 888px) {
      .categorias .card-categoria .card-icon {
        height: 4.5rem;
        width: 4.5rem;
        padding: .7rem; }
        .categorias .card-categoria .card-icon i {
          display: flex;
          justify-content: center; }
          .categorias .card-categoria .card-icon i img {
            width: 80%; } }
  .categorias .card-categoria h3 {
    font-size: 1rem;
    margin-top: 1.25rem; }
    @media (max-width: 888px) {
      .categorias .card-categoria h3 {
        font-size: .8rem;
        font-weight: 500; } }

.productos {
  background-color: #fff; }

.single-product-thumbs {
  overflow-y: auto;
  max-height: 400px;
  height: 100%; }
  .single-product-thumbs .swiper-slide {
    margin-block: .25rem; }

.single-product-slider .swiper-slide .single-img img {
  object-fit: contain; }

.variante {
  display: none; }

.variante.active {
  display: block; }

.product-mini-wrapper {
  transition: .2s width;
  padding: 1rem .25rem; }
  .product-mini-wrapper.list {
    width: 100%; }
    .product-mini-wrapper.list .variantes-box {
      width: 100%; }
      .product-mini-wrapper.list .variantes-box .product-item {
        display: flex; }
        .product-mini-wrapper.list .variantes-box .product-item .product-img {
          margin: auto; }
          @media (max-width: 888px) {
            .product-mini-wrapper.list .variantes-box .product-item .product-img {
              width: 50%; } }
        .product-mini-wrapper.list .variantes-box .product-item .product-content {
          margin: auto; }
          .product-mini-wrapper.list .variantes-box .product-item .product-content .product-precio {
            justify-content: center; }
          @media (max-width: 888px) {
            .product-mini-wrapper.list .variantes-box .product-item .product-content .add {
              flex-wrap: wrap;
              height: auto; }
              .product-mini-wrapper.list .variantes-box .product-item .product-content .add--cantidad {
                margin-bottom: 1rem; } }
  .product-mini-wrapper.grid {
    width: 25%; }
    @media (max-width: 888px) {
      .product-mini-wrapper.grid {
        width: 100%; } }

.product-item {
  background-color: white;
  border-radius: 1em;
  margin: 0 .2em;
  box-shadow: 0px 1.60101px 8.00503px rgba(0, 0, 0, 0.25);
  position: relative; }
  .product-item .product-labels {
    position: absolute;
    z-index: 200;
    border-top-left-radius: 1em;
    display: flex;
    font-size: .8em;
    background-color: #07C98B;
    border-bottom-right-radius: 1.5em;
    left: 0;
    font-size: 1rem; }
    .product-item .product-labels--left {
      z-index: 600;
      background-color: #D41601;
      border-top-left-radius: inherit;
      border-bottom-right-radius: inherit;
      padding: .3em 1em;
      color: white; }
    .product-item .product-labels--right {
      z-index: 550;
      background-color: #07C98B;
      border-top-left-radius: inherit;
      border-bottom-right-radius: inherit;
      padding: .3em 1em .3em .5em;
      color: white; }
  .product-item .product-img {
    height: 250px;
    margin: 0 1em;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
    @media (max-width: 888px) {
      .product-item .product-img {
        height: 225px;
        min-width: 50%;
        max-width: 95%;
        border-bottom: none;
        margin: auto; } }
    .product-item .product-img img {
      width: 100%;
      object-fit: contain;
      min-height: 80%;
      height: 100px; }
    .product-item .product-img .product-escalas {
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 800;
      width: 100%;
      display: flex;
      align-items: end;
      background-color: rgba(255, 255, 255, 0.85); }
      @media (max-width: 888px) {
        .product-item .product-img .product-escalas {
          height: auto; } }
      .product-item .product-img .product-escalas .escala {
        width: 50%; }
        .product-item .product-img .product-escalas .escala--nombre {
          font-size: .8em;
          text-align: center;
          height: 1rem;
          overflow: hidden; }
          @media (min-width: 888px) {
            .product-item .product-img .product-escalas .escala--nombre {
              font-size: .7rem; } }
        .product-item .product-img .product-escalas .escala--select {
          font-size: .9em;
          padding: 0;
          text-align: center; }
          @media (min-width: 888px) {
            .product-item .product-img .product-escalas .escala--select {
              font-size: .8rem; } }
        .product-item .product-img .product-escalas .escala--loading {
          display: none;
          width: 100%; }
          .product-item .product-img .product-escalas .escala--loading .loading-wrap {
            display: flex;
            justify-content: center;
            color: #FF0000; }
  .product-item .product-content {
    padding: .5em 1em;
    text-align: left;
    padding-bottom: 1em;
    border: 0; }
    @media (max-width: 888px) {
      .product-item .product-content {
        padding: .5em .5rem .5rem .5rem; } }
    .product-item .product-content .product-marca {
      line-height: 1;
      font-size: .8em;
      color: #bdbdbd;
      font-weight: 500;
      padding-bottom: .3em; }
    .product-item .product-content .product-name {
      font-weight: 400;
      height: 2.4em;
      line-height: 1.2;
      overflow: hidden;
      padding: 0;
      margin-bottom: .7em;
      font-size: .95em; }
    .product-item .product-content .product-description {
      color: #313131 !important;
      font-size: .8em !important;
      font-weight: 300;
      margin-bottom: .75em;
      height: 1em;
      line-height: 1.2; }
    .product-item .product-content .product-stock {
      display: none; }
    .product-item .product-content .product-precio {
      display: flex; }
      .product-item .product-content .product-precio .new-price {
        font-weight: bold; }
      .product-item .product-content .product-precio .old-price {
        text-align: right;
        text-decoration: line-through;
        color: #BDBDBD;
        font-size: 1em;
        font-weight: 500; }
      .product-item .product-content .product-precio .descuento {
        display: none; }
    .product-item .product-content .add {
      margin-bottom: .5rem; }
    .product-item .product-content .product-label-cuotas {
      display: flex;
      justify-content: center;
      color: #F9F9F9;
      font-weight: 300;
      text-align: center;
      font-size: .9em;
        /* @media (max-width: 888px) {
           position: absolute;
           bottom: 0;
           right: .5rem;
           font-size: .8rem;
           color: $gris;

         }*/ }

.product-grid-view {
  padding: 1rem 6rem 1rem 4rem; }
  @media (max-width: 888px) {
    .product-grid-view {
      padding: 0 1rem;
      margin: 0; } }

.add {
  height: 1.8rem; }
  .add--cantidad {
    display: flex;
    align-items: center;
    border: 2px solid #FF0000;
    overflow: hidden;
    width: 100%;
    height: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-right: .5rem;
    /* Firefox */ }
    .add--cantidad input::-webkit-outer-spin-button,
    .add--cantidad input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0; }
    .add--cantidad input[type=number].pym-input-cantidad {
      -moz-appearance: textfield !important; }
    .add--cantidad input {
      border: none;
      width: 100%;
      text-align: center;
      font-size: 1rem;
      font-weight: bold;
      color: black;
      -webkit-appearance: none;
      -moz-appearance: textfield; }
    .add--cantidad .btn-mas, .add--cantidad .btn-menos {
      font-weight: bold;
      font-size: 1.2rem;
      color: #151515; }
      .add--cantidad .btn-mas:disabled, .add--cantidad .btn-menos:disabled {
        color: #D9D9D9; }
    .add--cantidad .btn-menos {
      padding: 0 0 0 .5rem; }
    .add--cantidad .btn-mas {
      padding: 0 .5rem 0 0; }
      .add--cantidad .btn-mas:focus {
        color: inherit; }
  .add .btn-agregar {
    height: 30px;
    width: 120px;
    font-size: .9rem;
    background-color: #FF0000;
    color: #2C2C2C;
    border-radius: 2rem;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .add .btn-agregar--icon {
      margin-right: .25rem; }
    .add .btn-agregar:hover {
      filter: brightness(1.1);
      transition: .5s filter; }

.product-topbar {
  padding-right: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: end; }
  @media (max-width: 888px) {
    .product-topbar {
      padding-right: 0;
      justify-content: space-around; } }
  .product-topbar .buscador {
    display: none; }
  @media (max-width: 888px) {
    .product-topbar .modeview {
      display: none;
      padding: 1rem; } }
  .product-topbar .order {
    display: flex;
    align-items: center; }

.product-banners .banner-wrapper {
  display: flex;
  padding: 1rem 5.5rem 0 2rem; }
  @media (max-width: 888px) {
    .product-banners .banner-wrapper {
      padding: 1rem 0; } }
  .product-banners .banner-wrapper .banner {
    display: flex;
    justify-content: center;
    margin: auto;
    position: relative !important; }
    .product-banners .banner-wrapper .banner--left {
      padding: 0 .25rem 0 1rem; }
    .product-banners .banner-wrapper .banner--right {
      padding: 0 1rem 0 .25rem; }
    .product-banners .banner-wrapper .banner img {
      max-height: 350px;
      border-radius: 15px; }
      @media (max-width: 888px) {
        .product-banners .banner-wrapper .banner img {
          height: 45vh !important;
          object-fit: contain; } }

.custom-wrapper--producto {
  padding: 2rem; }
  @media (max-width: 888px) {
    .custom-wrapper--producto {
      padding: 0; } }

@media (max-width: 888px) {
  .single-product-thumbs .swiper-wrapper {
    display: flex;
    flex-direction: row; } }
@media (min-width: 888px) {
  .single-product-thumbs {
    max-height: 90vh;
    padding-right: 1rem;
    height: 100%; }
    .single-product-thumbs .swiper-wrapper {
      display: flex;
      flex-direction: column; }
    .single-product-thumbs .swiper-slide {
      height: min-content;
      width: 100% !important; } }

@media (min-width: 888px) {
  .single-product-img {
    max-height: 90vh; }
    .single-product-img .img-full {
      padding-inline: 1rem; } }
@media (max-width: 888px) {
  .single-product-img .img-full {
    height: 35vh !important;
    object-fit: contain; } }

.single-product-content {
  border: 1px solid #BDBDBD;
  padding: 2rem;
  border-radius: 7px;
  display: flex;
  flex-wrap: wrap;
  position: sticky;
  height: min-content;
  top: 5rem; }
  @media (max-width: 888px) {
    .single-product-content {
      position: relative;
      top: 0;
      border: none; } }
  .single-product-content--titulo {
    font-size: 1.5rem !important;
    line-height: 1.3;
    margin-bottom: .25rem; }
  .single-product-content--descripcion, .single-product-content--descripcion-ext, .single-product-content--sinonimo, .single-product-content--clasificador {
    display: none; }
  .single-product-content--marca, .single-product-content--sku {
    color: #BDBDBD;
    font-weight: 400; }
  .single-product-content--separador {
    font-weight: 200;
    padding-inline: .5rem; }
  .single-product-content--marca {
    width: 100%; }
  .single-product-content .price-box {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 2rem; }
    .single-product-content .price-box .old-price {
      font-weight: 300;
      margin-right: 1rem; }
    .single-product-content .price-box .descuento {
      font-size: .9rem;
      width: auto;
      padding-inline: .5rem;
      background-color: #07C98B;
      border-radius: 6px;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 400; }
    .single-product-content .price-box .new-price {
      width: 100%;
      font-size: 1.9rem; }
    .single-product-content .price-box .medios-pago {
      font-size: .9rem; }
      .single-product-content .price-box .medios-pago button {
        color: #FF0000; }
    .single-product-content .price-box .tarjetas {
      padding: 0; }
      .single-product-content .price-box .tarjetas .custom-input {
        margin-block: 1rem; }
        .single-product-content .price-box .tarjetas .custom-input label {
          background-color: white; }
      .single-product-content .price-box .tarjetas--cuotas {
        font-size: .8rem; }
  .single-product-content--cantidad {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #BDBDBD; }
    .single-product-content--cantidad .add {
      height: unset; }
      .single-product-content--cantidad .add--cantidad {
        height: 3rem; }
      .single-product-content--cantidad .add .btn-agregar {
        height: 3rem; }
  .single-product-content--asesoramiento {
    margin-top: 1rem;
    margin-bottom: .5rem;
    width: 100%; }
    .single-product-content--asesoramiento .btn-asesoramiento {
      background-color: #D9D9D9;
      padding-block: .2rem; }
      .single-product-content--asesoramiento .btn-asesoramiento::before {
        font: var(--fa-font-solid);
        content: "\f05a";
        padding-right: .3rem; }
      .single-product-content--asesoramiento .btn-asesoramiento:hover {
        background-color: #FF0000;
        color: black; }
  .single-product-content--extra-info {
    font-size: .9rem;
    color: #2C2C2C;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 1rem; }
  .single-product-content--escalas {
    display: flex;
    justify-content: space-around;
    width: 100%; }
    .single-product-content--escalas .escala {
      width: 100%;
      margin-inline: .1rem; }
      .single-product-content--escalas .escala--loading {
        display: none; }
        .single-product-content--escalas .escala--loading .loading-wrap {
          display: flex;
          justify-content: center;
          color: #FF0000; }
      .single-product-content--escalas .escala--nombre {
        font-size: .8rem; }

.producto-descripcion {
  margin: 2rem 1rem; }
  @media (min-width: 888px) {
    .producto-descripcion {
      padding-left: 2rem; } }
  .producto-descripcion--titulo {
    font-weight: bold; }
  .producto-descripcion--instructivo a {
    color: #FF0000; }

.producto-relacionados {
  position: relative;
  margin: 1rem; }
  .producto-relacionados--titulo {
    font-weight: bold; }

.swiper .variantes-box {
  margin-inline: .7rem; }
  @media (min-width: 888px) {
    .swiper .variantes-box {
      margin-inline: .5rem; } }
  .swiper .variantes-box .product-item {
    padding-inline: 1rem; }
    @media (min-width: 888px) {
      .swiper .variantes-box .product-item {
        padding-inline: .25rem; } }

.pagina-productos {
  background-color: #fff; }
  .pagina-productos .top-info {
    display: flex;
    z-index: 500;
    position: relative; }
    .pagina-productos .top-info--left {
      padding-bottom: .75rem;
      padding-top: 6rem;
      background-color: #1b4645;
      color: white;
      width: 18rem !important;
      border-bottom-right-radius: 3rem; }
      @media (max-width: 888px) {
        .pagina-productos .top-info--left {
          padding-top: 5rem; } }
      .pagina-productos .top-info--left .breadcrumb {
        margin: 0;
        padding: 0;
        color: white !important;
        display: flex;
        justify-content: center; }
        @media (max-width: 888px) {
          .pagina-productos .top-info--left .breadcrumb {
            line-height: 1; } }
        .pagina-productos .top-info--left .breadcrumb button {
          color: white;
          font-weight: 300;
          padding: 0; }
        .pagina-productos .top-info--left .breadcrumb--title {
          font-size: 1.5rem;
          font-weight: 500;
          width: 100%;
          text-align: center; }
          @media (max-width: 888px) {
            .pagina-productos .top-info--left .breadcrumb--title {
              font-size: .9rem; } }
    .pagina-productos .top-info--right {
      padding-top: 6rem;
      padding-bottom: .75rem;
      background-color: #fff;
      color: #151515;
      font-size: 1.3rem;
      padding-left: 3rem;
      font-weight: bold;
      display: flex;
      align-items: end; }
      @media (max-width: 888px) {
        .pagina-productos .top-info--right {
          padding: 1rem;
          font-size: .8rem; } }
  .pagina-productos .bottom-info {
    display: flex;
    width: 100%;
    z-index: 400;
    position: relative; }
    @media (max-width: 888px) {
      .pagina-productos .bottom-info--fixed {
        position: relative;
        z-index: 2500; } }
    .pagina-productos .bottom-info .menu-filtros {
      z-index: 5;
      padding-top: 8rem;
      background-color: #276967;
      transition: width .3s ease;
      width: 4rem;
      position: relative; }
      @media (max-width: 888px) {
        .pagina-productos .bottom-info .menu-filtros {
          position: fixed;
          bottom: 0;
          z-index: 5000;
          padding-top: 1rem;
          height: 100vh;
          margin-bottom: 0;
          transform: none;
          display: none; } }
      .pagina-productos .bottom-info .menu-filtros .widgets-item {
        display: none; }
        .pagina-productos .bottom-info .menu-filtros .widgets-item .widgets-title {
          color: white;
          font-size: 1rem;
          margin: 0;
          margin-top: 0.25rem; }
        .pagina-productos .bottom-info .menu-filtros .widgets-item .widgets-checkbox {
          max-height: 45vh;
          overflow-y: scroll;
          margin-right: 10%; }
        .pagina-productos .bottom-info .menu-filtros .widgets-item li {
          display: flex;
          font-size: .85rem;
          cursor: pointer;
          margin: .9rem; }
          .pagina-productos .bottom-info .menu-filtros .widgets-item li .label-checkbox {
            cursor: pointer;
            color: #BDBDBD !important; }
            .pagina-productos .bottom-info .menu-filtros .widgets-item li .label-checkbox:hover {
              color: white !important; }
            .pagina-productos .bottom-info .menu-filtros .widgets-item li .label-checkbox--icon {
              margin-right: .75rem; }
      .pagina-productos .bottom-info .menu-filtros--top {
        display: none; }
      .pagina-productos .bottom-info .menu-filtros--cerrar {
        display: none; }
        .pagina-productos .bottom-info .menu-filtros--cerrar--right {
          display: none; }
      .pagina-productos .bottom-info .menu-filtros--extended {
        width: 18rem;
        display: block;
        padding-top: 5rem; }
        @media (min-width: 888px) {
          .pagina-productos .bottom-info .menu-filtros--extended {
            border-top-right-radius: 3rem; } }
        @media (max-width: 888px) {
          .pagina-productos .bottom-info .menu-filtros--extended {
            width: 100vw;
            height: 100vh; } }
        .pagina-productos .bottom-info .menu-filtros--extended .widgets-item {
          display: block; }
        .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--top {
          display: flex;
          color: white !important;
          margin-bottom: 2rem; }
          .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--top .titulo {
            text-align: center;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: end; }
            .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--top .titulo img {
              margin-right: .5rem; }
          .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--top .limpiar {
            font-size: .8rem;
            text-align: right;
            margin-right: 1rem; }
            .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--top .limpiar a {
              color: #BDBDBD !important;
              font-weight: 300;
              text-decoration: underline; }
        .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar {
          display: flex !important;
          justify-content: end; }
        .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar--right {
          z-index: 0;
          display: block;
          position: absolute;
          right: -10;
          top: 15%;
          background-color: #276967;
          padding: 3rem 0;
          border-radius: 100%; }
          @media (max-width: 888px) {
            .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar--right {
              top: 45%;
              padding-right: 1rem; } }
          .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar--right .btn {
            color: white; }
      .pagina-productos .bottom-info .menu-filtros .widgets-area {
        display: flex; }
        .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-icon {
          padding-inline: 1rem;
          display: block;
          cursor: pointer;
          transition: .5s; }
          .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-icon:hover {
            filter: brightness(1.75); }
          .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-icon--icon {
            display: block;
            width: 1.75rem;
            height: 1.75rem;
            background-size: contain;
            background-repeat: no-repeat; }
        .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-title {
          width: 15%; }
        .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-item {
          width: 85%; }
          .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-item--divisor {
            margin: 0 10% 5% 5%;
            height: 5px;
            width: 80%;
            border-bottom: 2px solid #BDBDBD; }
      .pagina-productos .bottom-info .menu-filtros .buscador {
        display: none !important; }
    .pagina-productos .bottom-info .filtros-boton-mobile {
      display: none; }
      @media (max-width: 888px) {
        .pagina-productos .bottom-info .filtros-boton-mobile {
          display: block;
          background-color: #276967;
          border-radius: 10px; }
          .pagina-productos .bottom-info .filtros-boton-mobile .btn {
            color: white;
            display: flex;
            align-items: center;
            justify-content: center; }
            .pagina-productos .bottom-info .filtros-boton-mobile .btn img {
              margin-right: .5rem; } }

html {
  font-size: 16px; }

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Red Hat Display", sans-serif !important; }

a:hover {
  color: unset; }

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff !important; }
  @media (max-width: 888px) {
    body {
      font-size: 14px; } }

.form-control:focus,
.form-select:focus {
  box-shadow: none !important;
  background-color: unset !important;
  color: black !important;
  border-color: unset !important; }

.form-control:disabled {
  background-color: #fcfcfc;
  opacity: 1; }

.row {
  margin: 0; }

.col-md-4, .col-md-2, .col-2, col-4, .col-12, .col-6, .col-md-8, .col-2 {
  padding: .25rem; }

.main-wrapper {
  overflow: hidden; }

.old-price {
  text-decoration: line-through;
  color: #BDBDBD; }

.notifyjs-corner {
  bottom: .5% !important;
  top: unset !important; }
  .notifyjs-corner .notifyjs-bootstrap-base {
    width: 100vw;
    display: flex;
    justify-content: center; }

.global-overlay.overlay-open {
  cursor: initial; }

@media (min-width: 888px) {
  .pagina-container {
    padding-top: 100px; } }
@media (max-width: 888px) {
  .pagina-container {
    padding-top: 70px; } }

.btn {
  font-weight: 600; }

::selection {
  background-color: #D9D9D9; }

.btn-custom {
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .25rem .75rem; }
  .btn-custom-rounded {
    border-radius: 50%;
    padding: .5rem;
    border: 2px solid #151515; }
  .btn-custom-main {
    background-color: #FF0000;
    color: white; }
  .btn-custom-negro {
    background-color: #151515;
    color: white; }
  .btn-custom .quantity {
    background-color: #ff2929 !important; }
  .btn-custom:hover {
    background-color: #191919;
    color: #fafafa; }
  .btn-custom-lg {
    padding: .5rem 3rem; }
  .btn-custom:disabled {
    border: none;
    background-color: lightgrey; }
    .btn-custom:disabled:hover {
      background-color: #F9F9F9; }

.add--cantidad {
  border-color: #FF0000; }
.add .btn-agregar {
  background-color: #FF0000;
  color: white; }
  .add .btn-agregar i {
    color: white; }

.swiper .swiper-scrollbar .swiper-scrollbar-drag, #mobileMenu .offcanvas-header {
  background-color: #FF0000; }

.carousel-control-prev, .carousel-control-next {
  opacity: 1; }

.carousel-button-control-next, .carousel-button-control-prev {
  color: #FF0000;
  width: 2rem;
  height: 2rem;
  opacity: 1; }

.custom-card {
  border: 1px solid #BDBDBD;
  border-radius: 10px;
  padding: 1rem;
  background-color: white; }
  .custom-card--titulo {
    color: #FF0000;
    font-weight: 600; }
  .custom-card--descripcion {
    color: #F9F9F9; }

.drop-holder .drop-menu li {
  border-bottom: none; }

.custom-scroll {
  scrollbar-color: #FF0000 #BDBDBD;
  scrollbar-width: thin; }

.custom-input {
  border: 2px solid gray;
  border-radius: 5px;
  padding: .5rem 1rem;
  position: relative; }
  .custom-input label {
    position: absolute;
    top: -33%;
    left: 5%;
    background-color: #fff;
    z-index: 200 !important;
    padding-inline: .25rem;
    padding-block: 0;
    color: grey;
    font-weight: 300;
    font-size: .9rem; }
  .custom-input input, .custom-input select, .custom-input select:focus, .custom-input textarea {
    padding: 0;
    border: 0 !important;
    background: none;
    width: 100%;
    color: #000;
    -webkit-text-fill-color: #000; }
    .custom-input input:focus, .custom-input select:focus, .custom-input select:focus:focus, .custom-input textarea:focus {
      box-shadow: none; }
    .custom-input input:-webkit-autofill, .custom-input input:-webkit-autofill:hover, .custom-input input:-webkit-autofill:focus, .custom-input select:-webkit-autofill, .custom-input select:-webkit-autofill:hover, .custom-input select:-webkit-autofill:focus, .custom-input textarea:-webkit-autofill, .custom-input textarea:-webkit-autofill:hover, .custom-input textarea:-webkit-autofill:focus {
      -webkit-text-fill-color: #000;
      caret-color: #000;
      transition: background-color 9999s ease-in-out 0s; }
  .custom-input--error {
    color: #D41601;
    font-size: .7rem;
    line-height: 1;
    display: none; }
  .custom-input.is-invalid {
    border-color: #D41601; }
  .custom-input .eye-icon {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    cursor: pointer;
    color: #D9D9D9; }

.formasSwiper .button-next-formas {
  display: none; }
.formasSwiper .button-prev-formas {
  display: none; }

input[type="number"] {
  -moz-appearance: textfield; }

input[type="number"]:hover,
input[type="number"]:focus {
  -moz-appearance: number-input; }

.stock-label-red {
  color: #D41601; }
  .stock-label-red::after {
    font: var(--fa-font-solid);
    content: "\f057"; }
.stock-label-green {
  color: #07C98B; }
  .stock-label-green::after {
    font: var(--fa-font-solid);
    content: "\f058"; }
.stock-label-yellow {
  color: #FF0000; }
  .stock-label-yellow::after {
    font: var(--fa-font-solid);
    content: "\f06a"; }

.modal .modal-dialog .modal-body {
  padding-inline: 10%; }

.notifyjs-container {
  display: flex !important;
  justify-content: center !important;
  width: 100vw !important; }
  .notifyjs-container .notifyjs-bootstrap-base {
    width: auto !important;
    border-radius: 15px;
    box-shadow: 0px 1.60101px 8.00503px rgba(0, 0, 0, 0.25);
    border: 2px solid #FF0000;
    background: white !important;
    padding-inline: 2rem !important;
    display: flex;
    align-items: center; }
  .notifyjs-container .notifyjs-bootstrap-error {
    border: 2px solid #D41601;
    color: #D41601; }
    .notifyjs-container .notifyjs-bootstrap-error::before {
      font: var(--fa-font-solid);
      content: "\f057";
      margin-right: .5rem; }
  .notifyjs-container .notifyjs-bootstrap-success {
    border: 2px solid #FF0000;
    color: #FF0000; }
    .notifyjs-container .notifyjs-bootstrap-success::before {
      font: var(--fa-font-solid);
      content: "\f058";
      margin-right: .5rem; }

.multiple-banners {
  display: flex; }
  .multiple-banners .cms-plugin {
    width: 33%; }
    @media (max-width: 888px) {
      .multiple-banners .cms-plugin {
        width: 100%; } }
    .multiple-banners .cms-plugin img {
      width: 100%; }

.pagina-container.checkout-envio, .pagina-container.metodo-pago, .pagina-container.checkout-finalizar {
  background-color: #F9F9F9;
  padding-inline: 7.5% !important; }
  .pagina-container.checkout-envio .custom-wrapper--steps, .pagina-container.checkout-envio .custom-wrapper--finalizar-pedido, .pagina-container.checkout-envio .custom-wrapper--agregar, .pagina-container.checkout-envio .custom-wrapper--finalizar--pedido, .pagina-container.checkout-envio .custom-wrapper--metodo-pago, .pagina-container.metodo-pago .custom-wrapper--steps, .pagina-container.metodo-pago .custom-wrapper--finalizar-pedido, .pagina-container.metodo-pago .custom-wrapper--agregar, .pagina-container.metodo-pago .custom-wrapper--finalizar--pedido, .pagina-container.metodo-pago .custom-wrapper--metodo-pago, .pagina-container.checkout-finalizar .custom-wrapper--steps, .pagina-container.checkout-finalizar .custom-wrapper--finalizar-pedido, .pagina-container.checkout-finalizar .custom-wrapper--agregar, .pagina-container.checkout-finalizar .custom-wrapper--finalizar--pedido, .pagina-container.checkout-finalizar .custom-wrapper--metodo-pago {
    margin-inline: 0;
    border: none;
    border-radius: 0; }
    .pagina-container.checkout-envio .custom-wrapper--steps .card-resumen, .pagina-container.checkout-envio .custom-wrapper--finalizar-pedido .card-resumen, .pagina-container.checkout-envio .custom-wrapper--agregar .card-resumen, .pagina-container.checkout-envio .custom-wrapper--finalizar--pedido .card-resumen, .pagina-container.checkout-envio .custom-wrapper--metodo-pago .card-resumen, .pagina-container.metodo-pago .custom-wrapper--steps .card-resumen, .pagina-container.metodo-pago .custom-wrapper--finalizar-pedido .card-resumen, .pagina-container.metodo-pago .custom-wrapper--agregar .card-resumen, .pagina-container.metodo-pago .custom-wrapper--finalizar--pedido .card-resumen, .pagina-container.metodo-pago .custom-wrapper--metodo-pago .card-resumen, .pagina-container.checkout-finalizar .custom-wrapper--steps .card-resumen, .pagina-container.checkout-finalizar .custom-wrapper--finalizar-pedido .card-resumen, .pagina-container.checkout-finalizar .custom-wrapper--agregar .card-resumen, .pagina-container.checkout-finalizar .custom-wrapper--finalizar--pedido .card-resumen, .pagina-container.checkout-finalizar .custom-wrapper--metodo-pago .card-resumen {
      border-radius: 0;
      background-color: #fff; }
    .pagina-container.checkout-envio .custom-wrapper--steps .form-control, .pagina-container.checkout-envio .custom-wrapper--finalizar-pedido .form-control, .pagina-container.checkout-envio .custom-wrapper--agregar .form-control, .pagina-container.checkout-envio .custom-wrapper--finalizar--pedido .form-control, .pagina-container.checkout-envio .custom-wrapper--metodo-pago .form-control, .pagina-container.metodo-pago .custom-wrapper--steps .form-control, .pagina-container.metodo-pago .custom-wrapper--finalizar-pedido .form-control, .pagina-container.metodo-pago .custom-wrapper--agregar .form-control, .pagina-container.metodo-pago .custom-wrapper--finalizar--pedido .form-control, .pagina-container.metodo-pago .custom-wrapper--metodo-pago .form-control, .pagina-container.checkout-finalizar .custom-wrapper--steps .form-control, .pagina-container.checkout-finalizar .custom-wrapper--finalizar-pedido .form-control, .pagina-container.checkout-finalizar .custom-wrapper--agregar .form-control, .pagina-container.checkout-finalizar .custom-wrapper--finalizar--pedido .form-control, .pagina-container.checkout-finalizar .custom-wrapper--metodo-pago .form-control {
      border: 1px solid #D9D9D9;
      border-radius: 0; }
  @media (max-width: 999px) {
    .pagina-container.checkout-envio .custom-wrapper--agregar, .pagina-container.metodo-pago .custom-wrapper--agregar, .pagina-container.checkout-finalizar .custom-wrapper--agregar {
      border: none !important; } }
  .pagina-container.checkout-envio form, .pagina-container.metodo-pago form, .pagina-container.checkout-finalizar form {
    margin-bottom: 0; }
  .pagina-container.checkout-envio .custom-wrapper--metodo-pago, .pagina-container.metodo-pago .custom-wrapper--metodo-pago, .pagina-container.checkout-finalizar .custom-wrapper--metodo-pago {
    border: none;
    border-radius: 0;
    margin-inline: 0; }
    .pagina-container.checkout-envio .custom-wrapper--metodo-pago .radio-pago-wrapper .radio-pago, .pagina-container.metodo-pago .custom-wrapper--metodo-pago .radio-pago-wrapper .radio-pago, .pagina-container.checkout-finalizar .custom-wrapper--metodo-pago .radio-pago-wrapper .radio-pago {
      border: 1px solid #D9D9D9;
      border-radius: 0; }
  .pagina-container.checkout-envio .finalizar-pedido .custom-wrapper, .pagina-container.checkout-envio .direcciones-entrega .custom-wrapper, .pagina-container.metodo-pago .finalizar-pedido .custom-wrapper, .pagina-container.metodo-pago .direcciones-entrega .custom-wrapper, .pagina-container.checkout-finalizar .finalizar-pedido .custom-wrapper, .pagina-container.checkout-finalizar .direcciones-entrega .custom-wrapper {
    margin-inline: 0;
    border: none;
    border-radius: 0; }
  .pagina-container.checkout-envio .continuar-compra, .pagina-container.metodo-pago .continuar-compra, .pagina-container.checkout-finalizar .continuar-compra {
    margin-inline: 1rem; }
  .pagina-container.checkout-envio .finalizar-pedido .cart-checkout-wrapper .custom-wrapper, .pagina-container.metodo-pago .finalizar-pedido .cart-checkout-wrapper .custom-wrapper, .pagina-container.checkout-finalizar .finalizar-pedido .cart-checkout-wrapper .custom-wrapper {
    margin-left: 1rem; }
  .pagina-container.checkout-envio .cart-checkout-wrapper .custom-wrapper, .pagina-container.metodo-pago .cart-checkout-wrapper .custom-wrapper, .pagina-container.checkout-finalizar .cart-checkout-wrapper .custom-wrapper {
    margin-right: 0;
    margin-left: 1rem; }

.wsp-flotante {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all .3s ease-in-out; }
  @media (max-width: 888px) {
    .wsp-flotante {
      bottom: 65px; } }
  .wsp-flotante a img {
    width: 50px;
    height: 50px; }
  .wsp-flotante a:hover img {
    transform: scale(1.3);
    opacity: .8; }

.pedido-success .custom-card.custom-wrapper {
  background-color: #fff;
  border: 1px solid #D9D9D9; }

.pagina-login {
  background-color: #fff; }

header {
  border-radius: .25rem;
  background-color: #fff; }
  header.main-header_area {
    margin: 1% 8% 0 8%;
    height: 6rem; }
  header .header-logo {
    width: fit-content;
    padding-left: 1rem; }
    header .header-logo img {
      width: 200px; }
  header .header-right {
    padding-right: 5rem; }
    header .header-right .btn-search {
      border-radius: 25px;
      border: none;
      padding: 0.25rem 0.75rem; }
      header .header-right .btn-search:hover {
        background-color: #BDBDBD; }
      header .header-right .btn-search--icon {
        font-size: 1.3rem; }
  header .nimbus-links a {
    text-transform: uppercase;
    font-size: .85rem !important; }
  header .btn-custom-negro {
    background-color: transparent; }
    header .btn-custom-negro:hover {
      background-color: #BDBDBD; }
  header .btn-user--auth {
    color: #313131;
    font-size: 1.25rem; }
    header .btn-user--auth::before {
      font: var(--fa-font-regular);
      content: "\f007";
      padding-right: .3rem; }
  header .btn-user--noauth {
    color: #313131;
    font-size: 1.25rem; }
    header .btn-user--noauth::before {
      font: var(--fa-font-regular);
      content: "\f007";
      padding-right: .3rem; }
  header .minicart--triangulo {
    right: 50px; }

.drop-holder .drop-menu {
  background-color: #fff;
  width: 300px; }
  .drop-holder .drop-menu a {
    color: #313131 !important; }
.drop-holder a svg {
  padding-left: 5px; }

.header-right .btn-cart img {
  width: 1.45rem; }
.header-right .dropdown-menu .dropdown-item {
  color: #313131; }

.dropdown-menu {
  background-color: #fff; }

footer .footer {
  background-color: #FF0000;
  color: white; }
  footer .footer .logo {
    align-items: center;
    flex-direction: column;
    justify-content: start; }
    footer .footer .logo img {
      width: 15rem;
      height: 5rem;
      object-fit: contain; }
    footer .footer .logo .redes {
      justify-content: center; }
      footer .footer .logo .redes .btn-custom-rounded {
        margin-inline: 0;
        border: none;
        font-size: 1.25rem;
        color: white; }
  footer .footer dt {
    margin-bottom: .5rem;
    line-height: 16px; }
  footer .footer dd {
    display: flex;
    margin-bottom: 0.25rem;
    line-height: 16px; }
    footer .footer dd .icon {
      font-size: .85rem; }
    footer .footer dd p {
      margin-bottom: .25rem; }
    footer .footer dd a {
      color: white; }
footer .copy {
  padding-block: .25rem;
  background-color: #D9D9D9;
  color: #313131;
  font-weight: 500;
  font-size: .85rem; }

.pagina-container-home .portada .carousel-indicators button {
  border-radius: 50%;
  height: .5rem;
  width: .5rem;
  border: 1px solid #fff;
  background-color: transparent; }
  .pagina-container-home .portada .carousel-indicators button.active {
    background-color: #fff; }

section.categorias .titulo {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase; }
section.categorias .swiper {
  margin: 0;
  margin-inline: 3rem; }
section.categorias .swiper-slide {
  margin-inline: .5rem; }
  section.categorias .swiper-slide .card-categoria {
    padding-inline: 0.35rem;
    border: 1px solid #0b1b47;
    border-radius: 0.25rem;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.25);
    background-color: #0b1b47;
    transition: background-color .2s ease, border-color .2s ease; }
    section.categorias .swiper-slide .card-categoria:hover {
      background-color: #FF0000;
      border-color: #FF0000; }
    section.categorias .swiper-slide .card-categoria a {
      flex-wrap: nowrap !important;
      align-items: center; }
      section.categorias .swiper-slide .card-categoria a .card-icon {
        width: 2rem;
        height: 2rem;
        box-shadow: none; }
      section.categorias .swiper-slide .card-categoria a h3 {
        white-space: nowrap;
        font-size: .8rem;
        font-weight: 700;
        color: #fff; }
section.categorias .button-prev-categorias {
  left: 2rem; }
  section.categorias .button-prev-categorias button {
    top: -1rem; }
    section.categorias .button-prev-categorias button .carousel-button-control-prev {
      padding: 0;
      height: 1rem;
      border: none; }
section.categorias .button-next-categorias {
  right: 2rem; }
  section.categorias .button-next-categorias button {
    top: -1rem; }
    section.categorias .button-next-categorias button .carousel-button-control-prev {
      padding: 0;
      height: 1rem;
      border: none; }

.forma-trabajo {
  padding-block: 5rem; }
  .forma-trabajo .card-trabajo .icon {
    width: 3.75rem;
    object-fit: contain;
    margin-bottom: 0.5rem; }
  .forma-trabajo .card-trabajo .titulo {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FF0000; }
  .forma-trabajo .card-trabajo .texto {
    margin-bottom: 0.2rem;
    line-height: 16px;
    font-size: .9rem;
    font-weight: 400;
    text-align: center; }
    .forma-trabajo .card-trabajo .texto b {
      font-weight: 700; }
  .forma-trabajo .card-trabajo .link {
    color: #FF0000;
    display: flex;
    justify-content: center;
    align-items: center; }
    .forma-trabajo .card-trabajo .link-icon {
      width: 1.5rem;
      height: 1.5rem;
      border: 2px solid #FF0000;
      border-radius: 50%;
      background-color: transparent; }
  .forma-trabajo .card-trabajo .btn-custom {
    padding: 0;
    height: 1.5rem;
    width: 1.5rem;
    border-radius: 50%;
    border: 2px solid #FF0000;
    font-size: .85rem;
    color: #FF0000; }

.custom-scroll {
  scrollbar-color: #FF0000 #BDBDBD;
  scrollbar-width: thin; }
  .custom-scroll::-webkit-scrollbar {
    width: 5px; }
  .custom-scroll::-webkit-scrollbar-track {
    background: #BDBDBD; }
  .custom-scroll::-webkit-scrollbar-thumb {
    background-color: #FF0000;
    border-radius: 20px;
    border: transparent; }

#popup-home .modal-body {
  padding: 0; }
#popup-home .btn-close {
  position: absolute;
  top: .5rem;
  right: .5rem; }

.modal-envio .modal-content {
  width: 650px;
  background: white;
  background: linear-gradient(0deg, white 0%, #e9e9e9 100%); }
  .modal-envio .modal-content .modal-header {
    border-bottom: none; }
  .modal-envio .modal-content .modal-body {
    padding-bottom: 3rem; }
    .modal-envio .modal-content .modal-body .titulo {
      font-weight: 700;
      color: #FF0000;
      font-size: 1.35rem;
      margin-bottom: .5rem; }
      .modal-envio .modal-content .modal-body .titulo .icon {
        filter: grayscale(100%) brightness(50%) sepia(100%) hue-rotate(0deg) saturate(10000%);
        margin-left: 0.5rem;
        width: 1.75rem;
        object-fit: contain; }
    .modal-envio .modal-content .modal-body .texto {
      margin-bottom: .25rem;
      line-height: 20px;
      font-size: 1rem; }
      .modal-envio .modal-content .modal-body .texto-precio {
        margin-block: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding-block: 0.5rem;
        border: 1px solid #FF0000;
        border-radius: .25rem; }
    .modal-envio .modal-content .modal-body .btn-custom {
      width: fit-content;
      padding-inline: 1.5rem !important;
      font-weight: 600;
      font-size: .85rem; }

.productos {
  background: white;
  background: linear-gradient(180deg, white 0%, #e9e9e9 100%);
  padding-bottom: 5rem; }
  .productos h4 {
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 1.5rem; }

.pagina-productos .top-info {
  background-color: #fff; }
  @media (max-width: 999px) {
    .pagina-productos .top-info {
      display: none; } }
  .pagina-productos .top-info--left {
    background-color: #fff;
    margin-top: 8rem;
    padding-top: 2rem;
    border-radius: 0; }
    .pagina-productos .top-info--left .breadcrumb {
      color: #313131 !important;
      justify-content: start;
      padding-left: 2.5rem; }
      .pagina-productos .top-info--left .breadcrumb--title {
        display: none; }
      .pagina-productos .top-info--left .breadcrumb--item .btn-link {
        font-weight: 600;
        color: #313131; }
.pagina-productos .bottom-info {
  background-color: #fff; }
  @media (max-width: 999px) {
    .pagina-productos .bottom-info {
      padding-top: 60px; } }
  .pagina-productos .bottom-info .menu-filtros {
    background-color: #fff; }
    .pagina-productos .bottom-info .menu-filtros--top .titulo {
      color: #313131; }
      .pagina-productos .bottom-info .menu-filtros--top .titulo img {
        filter: brightness(0.1); }
    .pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-icon {
      display: none; }
    .pagina-productos .bottom-info .menu-filtros .widgets-title {
      color: #313131 !important; }
    .pagina-productos .bottom-info .menu-filtros--extended .filtros-form {
      padding-left: 2.5rem; }
    .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar {
      display: none !important; }
      .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar .btn-link img {
        filter: brightness(0.1); }
      .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar--right {
        background-color: white; }
        .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--cerrar--right .btn-link {
          color: #313131; }
    .pagina-productos .bottom-info .menu-filtros--extended .menu-filtros--top .limpiar a {
      color: #313131 !important;
      font-weight: 500; }

.widgets-area--marcas .widgets-item .widgets-title, .widgets-area--clasificador .widgets-item .widgets-title {
  position: relative;
  display: flex;
  align-items: center;
  width: 100% !important; }
  .widgets-area--marcas .widgets-item .widgets-title::before, .widgets-area--clasificador .widgets-item .widgets-title::before {
    display: block;
    content: '\f078';
    position: absolute;
    right: 1rem;
    color: #313131;
    font: var(--fa-font-solid); }

.menu-filtros--top {
  width: 100%; }
  .menu-filtros--top .titulo {
    justify-content: start !important;
    padding-left: 2.5rem; }
  .menu-filtros--top .limpiar {
    display: flex;
    align-items: center;
    justify-content: end; }
@media (max-width: 768px) {
  .menu-filtros--cerrar--right {
    display: block;
    background-color: white; } }
@media (min-width: 768px) {
  .menu-filtros--cerrar--right {
    display: none !important; } }

.product-grid-view {
  padding-left: 2rem;
  padding-right: 2rem; }
  .product-grid-view .product-item {
    margin-inline: 0; }

.product-mini-wrapper.grid {
  width: 33.3333%; }

.product-topbar {
  position: relative;
  margin-inline: 2.5rem;
  padding-right: 0;
  margin-top: .5rem; }
  .product-topbar .widgets-searchbox {
    display: block;
    position: absolute;
    left: 0;
    margin-bottom: 0 !important; }
    .product-topbar .widgets-searchbox form {
      margin-bottom: 0; }
      .product-topbar .widgets-searchbox form .input-field {
        height: 2.5rem;
        border-radius: 1.5rem; }
  .product-topbar .modeview .btn-link {
    padding: 0;
    margin-right: 1rem; }
    .product-topbar .modeview .btn-link img {
      width: 1.5rem;
      object-fit: contain; }
  .product-topbar .order .form-select {
    background-color: #FF0000;
    color: white;
    font-weight: 500;
    font-size: .85rem;
    border-radius: 1.5rem;
    border: none; }
    .product-topbar .order .form-select option {
      background-color: #fff;
      color: #151515; }

.relacionadosSwiper .swiper-scrollbar {
  display: none; }

.pagina-productos .bottom-info .menu-filtros .buscador {
  display: block; }
.pagina-productos .bottom-info .menu-filtros .widgets-item li .label-checkbox:hover {
  color: #D9D9D9 !important; }
.pagina-productos .bottom-info .menu-filtros .widgets-area .widgets-item {
  width: 100% !important; }
.pagina-productos .menu-filtros--extended {
  width: 25% !important; }
  @media (max-width: 768px) {
    .pagina-productos .menu-filtros--extended {
      width: 100vw !important; } }
.pagina-productos .desagrupar {
  display: none !important; }

.product-item .product-content .product-precio .old-price {
  font-style: italic;
  width: fit-content !important;
  flex: 1; }

.products-list .product-banners .banner-wrapper {
  display: none; }
.products-list .pagination-area {
  padding-bottom: 8rem; }
  .products-list .pagination-area .pagination {
    justify-content: end !important;
    padding-right: 6rem; }
    .products-list .pagination-area .pagination .page-item .page-link {
      border: 1px solid #D9D9D9;
      background-color: #fff;
      width: 2rem;
      height: 2rem;
      display: flex;
      justify-content: center;
      align-items: center; }
      .products-list .pagination-area .pagination .page-item .page-link.fw-bold {
        background-color: #FF0000; }
      .products-list .pagination-area .pagination .page-item .page-link:hover {
        color: #313131;
        background-color: #FF0000; }
.products-list .product-mini-wrapper.list .product-item .product-img {
  margin-inline: 0;
  width: 40%;
  padding: 2rem;
  border-bottom: none;
  border-right: 1px solid #D9D9D9; }
.products-list .product-mini-wrapper.list .product-item .product-content {
  padding-block: 2rem;
  margin: 0;
  flex: 1; }
  .products-list .product-mini-wrapper.list .product-item .product-content .product-name {
    text-align: center; }
  .products-list .product-mini-wrapper.list .product-item .product-content .product-precio .old-price {
    width: fit-content !important;
    margin-inline: 1.5rem;
    font-style: italic; }
  .products-list .product-mini-wrapper.list .product-item .product-content .add--cantidad {
    width: 10rem;
    height: 100%; }
  .products-list .product-mini-wrapper.list .product-item .product-content .add .btn-agregar {
    width: 10rem !important;
    height: 100%; }

.product-item {
  position: relative;
  margin-inline: 0; }
  .product-item .product-labels {
    top: 1.5rem;
    border-radius: 0;
    background-color: #D41601; }
    .product-item .product-labels--right {
      background-color: #D41601;
      font-weight: 700; }
  .product-item .product-img {
    height: 200px; }
  .product-item .product-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .product-item .product-content .product-marca {
      display: flex;
      width: 100%;
      order: 2; }
    .product-item .product-content .product-barcode {
      min-height: 21px;
      display: inline-block;
      width: 45%; }
    .product-item .product-content .product-description {
      width: 100%;
      order: 3; }
    .product-item .product-content .product-name {
      order: 1;
      height: 2.15rem;
      width: 100%; }
      .product-item .product-content .product-name a {
        font-size: .9rem; }
    .product-item .product-content .product-precio {
      order: 4;
      width: 100%; }
    .product-item .product-content .btn-notificarme {
      order: 6;
      background-color: #FF0000;
      width: 100%;
      height: 2rem;
      margin-top: 1rem;
      border: none;
      padding-block: 0; }
      .product-item .product-content .btn-notificarme:hover {
        border: none; }
    .product-item .product-content .product-barcode {
      order: 5; }
      .product-item .product-content .product-barcode small {
        font-size: .75rem; }
    .product-item .product-content .add {
      order: 7;
      margin-top: .5rem;
      padding-top: .5rem;
      height: fit-content;
      border-top: none;
      min-height: 40px;
      justify-content: center; }
    .product-item .product-content .product-stock {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 45%;
      text-align: center;
      order: 6; }
      .product-item .product-content .product-stock.stock-label {
        color: #fff;
        font-size: .75rem;
        position: relative;
        z-index: 0; }
        .product-item .product-content .product-stock.stock-label-red::before {
          position: absolute;
          content: '';
          display: block;
          width: 80%;
          left: 10%;
          height: 100%;
          background-color: #D41601;
          z-index: -1; }
        .product-item .product-content .product-stock.stock-label-yellow::before {
          position: absolute;
          content: '';
          display: block;
          width: 80%;
          left: 10%;
          height: 100%;
          background-color: #FF0000;
          z-index: -1; }
        .product-item .product-content .product-stock.stock-label-green::before {
          position: absolute;
          content: '';
          display: block;
          width: 80%;
          left: 10%;
          height: 100%;
          background-color: #07C98B;
          z-index: -1; }
        .product-item .product-content .product-stock.stock-label::after {
          font-size: .8rem;
          margin-left: 5px; }
    .product-item .product-content .product-label-cuotas {
      text-align: center;
      order: 8;
      width: 100%;
      color: #2C2C2C; }
  .product-item .product-footer {
    display: none; }

.container.pagina-container {
  width: 100%;
  max-width: initial;
  padding-top: 8rem;
  padding-inline: 1rem; }
  .container.pagina-container .custom-wrapper--producto {
    width: 100%;
    margin-inline: 0;
    box-shadow: none; }
    .container.pagina-container .custom-wrapper--producto .swiper-container {
      padding-inline: 2rem; }
      .container.pagina-container .custom-wrapper--producto .swiper-container.single-product-thumbs {
        max-height: 500px;
        overflow: auto;
        margin-right: 0.5rem; }
    .container.pagina-container .custom-wrapper--producto .single-product-img {
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; }
    .container.pagina-container .custom-wrapper--producto .single-product-content {
      border: none;
      flex-direction: column; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--smallinfo {
        display: flex; }
        .container.pagina-container .custom-wrapper--producto .single-product-content--smallinfo .infoitem {
          padding-inline: .25rem; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--titulo {
        font-size: 1.25rem !important;
        width: 100%; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--descripcion {
        display: block;
        width: 100%; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--marca {
        color: #BDBDBD; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--ean {
        width: 100%;
        color: #BDBDBD; }
      .container.pagina-container .custom-wrapper--producto .single-product-content .price-box {
        margin-block: 1rem; }
        .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .new-price {
          font-weight: 700;
          font-size: 1.7rem; }
        .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .descuento {
          background: transparent;
          font-weight: 800;
          color: #D41601; }
        .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .medios-pago {
          color: #FF0000 !important; }
          .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .medios-pago button {
            margin: 0;
            padding: 0; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--cantidad .add {
        flex-direction: column; }
        .container.pagina-container .custom-wrapper--producto .single-product-content--cantidad .add--cantidad {
          margin-bottom: 1rem;
          height: 2rem; }
        .container.pagina-container .custom-wrapper--producto .single-product-content--cantidad .add .btn-agregar {
          height: 2rem; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--extra-info {
        width: 70%; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--descripcion-ext {
        display: none; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--asesoramiento .btn-asesoramiento {
        background-color: #D9D9D9 !important;
        color: #151515; }
  .container.pagina-container .producto-relacionados {
    margin-bottom: 4rem; }
    .container.pagina-container .producto-relacionados--titulo {
      text-align: center;
      text-transform: uppercase;
      margin-bottom: 1rem;
      font-size: 1.35rem;
      letter-spacing: 3px;
      font-weight: 700; }
    .container.pagina-container .producto-relacionados .swiper-wrapper .swiper-slide {
      padding-inline: 1rem; }
    .container.pagina-container .producto-relacionados .swiper button.carousel-control-prev {
      filter: opacity(1);
      opacity: 1;
      left: -5rem; }
    .container.pagina-container .producto-relacionados .swiper button.carousel-control-next {
      filter: opacity(1);
      opacity: 1;
      right: -5rem; }

.single-product-content .price-box .medios-pago {
  width: 100%; }
.single-product-content .price-box .cuotas-label {
  width: 100%; }
.single-product-content .escala {
  width: 50%;
  padding-inline: .5rem; }
.single-product-content--cantidad {
  width: 50%; }
  .single-product-content--cantidad .btn-notificarme {
    background-color: #FF0000;
    border: 1px solid #FF0000;
    color: #313131; }
    .single-product-content--cantidad .btn-notificarme:hover {
      cursor: pointer;
      border: 1px solid #FF0000;
      color: #313131;
      filter: brightness(1.1);
      transition: .5s filter; }
.single-product-content--descripcion-ext {
  display: block; }

.minicart-wrap .btn-custom-negro.btn-cart {
  color: black; }
@media (max-width: 999px) {
  .minicart-wrap .carrito-box--body {
    padding-inline: 0 !important;
    padding-top: 0 !important;
    padding-left: 5% !important; } }
.minicart-wrap .carrito-box--body .minicart--content {
  width: 100%;
  margin: 0; }
.minicart-wrap .carrito-box--body .minicart--heading {
  justify-content: end; }
  .minicart-wrap .carrito-box--body .minicart--heading--titulo {
    display: none; }
  .minicart-wrap .carrito-box--body .minicart--heading .button-close {
    font-size: 2rem;
    display: flex;
    width: 2rem;
    height: 2rem;
    justify-content: end;
    z-index: 999; }
    .minicart-wrap .carrito-box--body .minicart--heading .button-close:hover {
      cursor: pointer; }
.minicart-wrap .carrito-box--body .minicart--list .producto-carrito--eliminar {
  color: #D41601; }
.minicart-wrap .carrito-box--body .minicart--list .producto-carrito--contenido .add--cantidad .btn-link {
  padding-inline: .5rem; }
.minicart-wrap .carrito-box--body .minicart--footer .btn-ver {
  padding-block: 1rem;
  font-size: 1rem;
  font-weight: 600; }

.custom-input {
  border: 1px solid #D9D9D9; }

.pagina-login--logo {
  width: 10rem; }
.pagina-login--content {
  background: #fff; }
  .pagina-login--content .login--wrapper--olvide .btn-link {
    color: #D41601 !important;
    font-size: .9rem;
    font-weight: 700; }
  .pagina-login--content .login--wrapper--ingresar .btn {
    font-weight: 700;
    padding-block: .25rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }
.pagina-login .login--image {
  padding: 0; }
  .pagina-login .login--image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.registro-ocasional .btn {
  font-weight: 700;
  padding-block: .25rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }

.registrar-comercio .btn-custom {
  font-weight: 700;
  padding-block: .25rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }

.nosotros {
  padding-inline: 10% !important;
  padding-top: 3rem !important;
  background: white;
  background: linear-gradient(0deg, white 0%, #e9e9e9 100%); }
  @media (max-width: 767px) {
    .nosotros {
      padding-top: 0 !important;
      padding-inline: 5% !important; } }
  .nosotros--right {
    padding-inline: 3rem; }
    @media (max-width: 767px) {
      .nosotros--right {
        padding-inline: 0; } }
  .nosotros--titulo {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #646464; }
    @media (max-width: 767px) {
      .nosotros--titulo {
        font-size: 1rem; } }
  .nosotros--texto {
    font-size: 1.05rem;
    margin-bottom: 0;
    font-weight: 400;
    color: #646464; }
    @media (max-width: 767px) {
      .nosotros--texto {
        font-size: 1rem; } }

.nosotros-galeria .slider-for .slick-arrow {
  position: absolute;
  z-index: 2;
  border: none;
  background: none;
  width: 3rem;
  height: 3rem;
  transform: translateY(-1.5rem); }
  .nosotros-galeria .slider-for .slick-arrow .icon {
    color: #fff; }
  .nosotros-galeria .slider-for .slick-arrow.slick-prev {
    left: 0;
    top: 50%; }
  .nosotros-galeria .slider-for .slick-arrow.slick-next {
    right: 0;
    top: 50%; }
.nosotros-galeria--for {
  height: 50vh !important;
  object-fit: cover;
  object-position: center; }
  .nosotros-galeria--for:hover {
    cursor: pointer; }
.nosotros-galeria--nav {
  height: 4rem !important;
  object-fit: cover;
  object-position: center; }
  .nosotros-galeria--nav:hover {
    cursor: pointer; }
  @media (max-width: 767px) {
    .nosotros-galeria--nav {
      height: 3rem !important; } }

.banners .multiple-banners {
  width: 100%;
  padding-inline: 2rem; }
  .banners .multiple-banners .plugin-wrapper {
    width: 33.3333%;
    padding: 1rem; }
  .banners .multiple-banners div a img {
    height: 100%;
    object-fit: cover;
    object-position: center; }
.banners.banner-mas-vendido {
  padding-bottom: 5rem; }

.pedido-info {
  margin-inline: 10%;
  border: none; }
  .pedido-info--left {
    font-weight: 400; }
    .pedido-info--left b {
      --bs-badge-font-weight: 700; }

#progress::-webkit-progress-value {
  background-color: #FF0000 !important;
  transition: .5s ease;
  border-radius: 2rem; }

#progress::-webkit-progress-bar {
  background-color: #FF0000 !important; }

#progress::-webkit-progress-bar {
  border-radius: 1rem;
  background-color: #D9D9D9 !important; }

.banner-news .carousel {
  width: 100%; }
  @media (min-width: 999px) {
    .banner-news .carousel {
      min-height: 100%;
      height: 70%; } }
  .banner-news .carousel img {
    object-fit: cover;
    min-height: 70vh; }
    @media (max-width: 999px) {
      .banner-news .carousel img {
        object-fit: contain;
        min-height: 50%; } }

.add--cantidad .btn-menos, .add--cantidad .btn-mas {
  padding-inline: .5rem;
  color: #313131; }

.pedido-wrapper {
  flex-direction: column;
  padding-inline: 10%;
  width: 100%;
  align-items: end; }
  .pedido-wrapper .col-12:first-child {
    width: 100%;
    max-height: 65vh;
    overflow: auto; }
  .pedido-wrapper .product-mini-wrapper--pedido .product-content--left {
    width: 40%; }
  .pedido-wrapper .product-mini-wrapper--pedido .product-content--center {
    width: 25%; }
  .pedido-wrapper .product-mini-wrapper--pedido .product-content--right .descuento {
    font-size: .85rem !important;
    font-weight: 600;
    color: #D41601 !important; }
  .pedido-wrapper .product-mini-wrapper--pedido .product-content--right .old-price {
    font-size: 1rem !important;
    font-style: italic;
    font-weight: 500 !important; }
  .pedido-wrapper .product-mini-wrapper--pedido .product-content--right .precio {
    font-size: 1.35rem;
    font-weight: 600; }
  .pedido-wrapper .product-mini-wrapper--pedido .product-remove {
    bottom: initial;
    top: .2rem; }
    .pedido-wrapper .product-mini-wrapper--pedido .product-remove .btn-link {
      color: #D41601; }
  .pedido-wrapper .box-precio {
    box-shadow: none; }
    .pedido-wrapper .box-precio--titulo {
      display: none; }
    .pedido-wrapper .box-precio--descuento, .pedido-wrapper .box-precio--subtotal, .pedido-wrapper .box-precio--total {
      text-align: end;
      font-size: 1.15rem;
      color: #313131; }
    .pedido-wrapper .box-precio--subtotal {
      border-bottom: 1px solid #D9D9D9; }
    .pedido-wrapper .box-precio .boton-comprar {
      height: 3rem; }
      .pedido-wrapper .box-precio .boton-comprar .btn {
        font-weight: 600;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }

.steps .step-button {
  background-color: #fff;
  border: 1px solid #D9D9D9; }
  .steps .step-button.completado {
    background-color: #07C98B; }

.custom-wrapper {
  box-shadow: none;
  border-radius: 0;
  border: none; }
  .custom-wrapper--steps, .custom-wrapper--agregar {
    box-shadow: none;
    border-radius: 0.5rem;
    border: 1px solid #D9D9D9; }
  .custom-wrapper.metodo-envio .form-select {
    margin-bottom: 1rem;
    margin-top: .25rem; }
    .custom-wrapper.metodo-envio .form-select:focus {
      -webkit-box-shadow: 0 0 0 0.25rem rgba(235, 235, 76, 0.35);
      box-shadow: 0 0 0 0.25rem rgba(235, 235, 76, 0.35); }

.card-direccion {
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #FF0000; }
  @media (max-width: 999px) {
    .card-direccion--agregar {
      border: none !important; } }

.direcciones-entrega--subtitulo {
  color: #313131;
  padding-left: 0;
  font-weight: 600; }

.nosotros-card--icon {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain; }
.nosotros-card--texto {
  color: #a6a6a6;
  font-size: 1.15rem; }
  @media (max-width: 767px) {
    .nosotros-card--texto {
      font-size: .85rem; } }

.custom-card--descripcion {
  color: #BDBDBD; }

.minicart-list-checkout {
  padding-bottom: 1rem; }
  .minicart-list-checkout .checkout-titulo {
    border-bottom: none; }
  .minicart-list-checkout .checkout-product--img {
    border-bottom: 1px solid #D9D9D9; }
  .minicart-list-checkout .checkout-product--content {
    border-bottom: 1px solid #D9D9D9; }
  .minicart-list-checkout .checkout-product--cantprecio {
    border-top: none;
    margin-top: 0;
    color: #313131; }
  .minicart-list-checkout .checkout-product-wrapper.custom-scroll {
    border-bottom: 1px solid #D9D9D9;
    margin-inline: 1rem; }
    .minicart-list-checkout .checkout-product-wrapper.custom-scroll .checkout-product {
      padding-inline: 0; }
  .minicart-list-checkout .checkout-totals {
    padding: 5% !important;
    border-top: none;
    margin-inline: 1rem;
    margin-top: 2rem;
    background-color: #F9F9F9; }
    .minicart-list-checkout .checkout-totals--envio .envio-precio {
      display: flex; }

.metodo-pago .valor-a-pagar .form-control {
  margin-left: 1rem; }
.metodo-pago .doble-pago-buttons {
  margin-inline: 0; }

.pedido-success h1 {
  margin-bottom: 1rem; }
.pedido-success p {
  width: 100%;
  text-align: center;
  margin-bottom: 0.25rem;
  line-height: 16px;
  font-weight: 500;
  font-size: .9rem; }
  .pedido-success p.yellow {
    font-weight: 700;
    color: #FF0000; }
.pedido-success .logo {
  width: 10rem;
  object-fit: contain; }

.menu-mobile-bottom {
  background-color: #FF0000; }
  .menu-mobile-bottom--item--text {
    color: #fff; }
  .menu-mobile-bottom--item--icon {
    color: #fff; }

.banner-redes {
  background: #f8c101;
  background: linear-gradient(180deg, #f8c101 0%, #ffa63d 100%); }
  .banner-redes--img {
    position: relative;
    width: 5rem;
    height: 2rem; }
    @media (max-width: 767px) {
      .banner-redes--img {
        width: 100%;
        height: 1px; } }
    .banner-redes--img img {
      position: absolute;
      bottom: -2rem;
      width: 5rem;
      height: 5rem;
      object-fit: contain;
      z-index: 1;
      left: -1rem; }
      @media (max-width: 767px) {
        .banner-redes--img img {
          width: 3.5rem;
          height: 3.5rem;
          left: .5rem;
          top: -3.5rem; } }
  .banner-redes--texto {
    width: fit-content;
    margin-bottom: 0;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600; }
    @media (max-width: 767px) {
      .banner-redes--texto {
        text-align: center;
        line-height: 16px;
        font-size: .85rem; } }
  .banner-redes--iconos {
    margin-left: .5rem;
    width: fit-content; }
    .banner-redes--iconos a {
      color: #fff;
      font-size: 1.35rem; }

@media (max-width: 767px) {
  .product-item {
    margin-inline: .15rem; }
    .product-item .product-img {
      height: 100px;
      margin: 0 !important;
      height: auto !important; }

  section.categorias {
    padding-bottom: 0; }
    section.categorias .titulo {
      margin-block: .75rem;
      font-size: 1rem; }
    section.categorias .swiper {
      padding: 0;
      margin-inline: .5rem; }
    section.categorias .swiper-slide .card-categoria a {
      width: 100%; }
      section.categorias .swiper-slide .card-categoria a .card-icon {
        width: 4.5rem; }
      section.categorias .swiper-slide .card-categoria a h3 {
        white-space: pre-line;
        height: 2rem;
        align-items: center;
        margin-top: 0;
        width: auto !important; }

  .forma-trabajo {
    padding-block: 2rem; }
    .forma-trabajo .swiper {
      padding-top: 0; }

  .productos h4 {
    font-size: 1rem;
    margin-bottom: 1rem; }

  .banners .titulo {
    font-size: 1rem;
    margin-block: 1.5rem; }
  .banners .multiple-banners {
    flex-direction: column;
    padding-inline: 1rem; }
    .banners .multiple-banners .plugin-wrapper {
      width: 100%;
      padding-block: 1rem; }

  .product-item .product-content .product-stock.stock-label-green::before, .product-item .product-content .product-stock.stock-label-red::before, .product-item .product-content .product-stock.stock-label-yellow::before {
    width: 80%;
    left: 10%; }

  footer .footer {
    padding-inline: .5rem; }
    footer .footer .logo .redes {
      justify-content: center;
      margin-top: 0;
      padding-bottom: 1rem; }
    footer .footer dd {
      font-size: .85rem; }

  .pagina-productos .top-info {
    width: 100%;
    justify-content: end; }
  .pagina-productos .bottom-info .products-list {
    width: 100%; }
  .pagina-productos .bottom-info .product-topbar {
    margin-inline: 0;
    padding-inline: 0.5rem;
    width: 100%; }
  .pagina-productos .bottom-info .filtros-boton-mobile {
    background-color: transparent; }
    .pagina-productos .bottom-info .filtros-boton-mobile .btn {
      color: #313131;
      border: none;
      border-radius: 0;
      font-weight: 600; }
  .pagina-productos .bottom-info .order .form-select {
    background-color: transparent;
    border-color: #FF0000;
    color: black; }

  .product-grid-view {
    padding-inline: .65rem; }
    .product-grid-view .product-mini-wrapper.list {
      padding-inline: 0; }
      .product-grid-view .product-mini-wrapper.list .variantes-box .product-item {
        width: 100%;
        margin: 0; }
      .product-grid-view .product-mini-wrapper.list .variantes-box .product-img {
        width: 35%;
        padding: initial;
        border: none; }
      .product-grid-view .product-mini-wrapper.list .variantes-box .product-content {
        width: 65%;
        flex: initial;
        border-left: 1px solid #D9D9D9;
        padding-left: .85rem;
        padding: .75rem; }
        .product-grid-view .product-mini-wrapper.list .variantes-box .product-content .product-name {
          height: 4rem; }
          .product-grid-view .product-mini-wrapper.list .variantes-box .product-content .product-name a {
            font-size: .8rem; } }
        @media (max-width: 767px) and (max-width: 400px) {
          .product-grid-view .product-mini-wrapper.list .variantes-box .product-content .product-name {
            height: 3rem;
            font-size: .7rem; } }
@media (max-width: 767px) {
        .product-grid-view .product-mini-wrapper.list .variantes-box .product-content .add {
          border-top: none;
          justify-content: center; }
          .product-grid-view .product-mini-wrapper.list .variantes-box .product-content .add--cantidad {
            width: 100% !important; }
          .product-grid-view .product-mini-wrapper.list .variantes-box .product-content .add .btn-agregar {
            width: 100% !important; }

  .products-list .pagination-area {
    padding-bottom: 4rem; }

  .container.pagina-container {
    padding-inline: .5rem;
    padding-top: 5rem; }
    .container.pagina-container--single-product {
      padding-inline: 0;
      padding-top: 5rem;
      overflow: hidden; }
      .container.pagina-container--single-product .single-product-thumbs {
        margin-top: 1rem;
        max-height: initial !important;
        overflow: initial !important;
        margin-right: 0 !important; }
      .container.pagina-container--single-product .single-product-img {
        margin-inline: 1rem; }
        .container.pagina-container--single-product .single-product-img .swiper-container {
          padding: 1rem; }
          .container.pagina-container--single-product .single-product-img .swiper-container .swiper-slide .img-full {
            padding-inline: 1rem; }
    .container.pagina-container.checkout-envio, .container.pagina-container.metodo-pago, .container.pagina-container.checkout-finalizar {
      padding-inline: 0 !important; }
      .container.pagina-container.checkout-envio .cart-checkout-wrapper .custom-wrapper, .container.pagina-container.metodo-pago .cart-checkout-wrapper .custom-wrapper, .container.pagina-container.checkout-finalizar .cart-checkout-wrapper .custom-wrapper {
        margin-top: 0;
        margin-inline: 0; }
      .container.pagina-container.checkout-envio .custom-wrapper--finalizar-pedido, .container.pagina-container.metodo-pago .custom-wrapper--finalizar-pedido, .container.pagina-container.checkout-finalizar .custom-wrapper--finalizar-pedido {
        padding-inline: 1rem; }
    .container.pagina-container.checkout-envio .direcciones-entrega .col-12 {
      padding-inline: 0; }
    .container.pagina-container .finalizar-pedido .col-12 {
      padding-inline: 0; }

  .pedido-wrapper {
    padding-inline: 0; }

  .product-mini-wrapper.list .variantes-box .product-item {
    margin-inline: 0;
    position: relative; }
    .product-mini-wrapper.list .variantes-box .product-item .product-content {
      align-items: start; }
      .product-mini-wrapper.list .variantes-box .product-item .product-content--left {
        width: 100%;
        display: flex;
        flex-direction: column; }
      .product-mini-wrapper.list .variantes-box .product-item .product-content--center {
        width: 50%;
        padding: 0;
        margin: 0; }
        .product-mini-wrapper.list .variantes-box .product-item .product-content--center .add {
          border-top: none; }
      .product-mini-wrapper.list .variantes-box .product-item .product-content--precio {
        flex-direction: column; }
      .product-mini-wrapper.list .variantes-box .product-item .product-content--right {
        width: 50%;
        padding: 0;
        margin: 0;
        height: 3.125rem;
        justify-content: center !important;
        align-items: end; }
        .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper {
          padding-top: 0; }
          .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper .descuento {
            position: absolute;
            left: 0;
            top: 1rem;
            padding-inline: 0.5rem;
            background-color: #D41601;
            color: #fff !important;
            font-weight: 700;
            font-size: 0.7rem !important;
            border-radius: 0 0.25rem 0.25rem 0; }
          .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper .old-price {
            font-size: .8rem !important; }
          .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper .precio {
            font-size: .9rem !important; } }
        @media (max-width: 767px) and (max-width: 400px) {
          .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper .descuento {
            font-size: .6rem; }
          .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper .old-price, .product-mini-wrapper.list .variantes-box .product-item .product-content--right .precio-cantidad-wrapper .precio {
            font-size: .75rem !important; } }

@media (max-width: 767px) {
  .minicart-list-checkout .checkout-product-wrapper.custom-scroll {
    border-bottom: none; }

  .pedido-info {
    justify-content: center; }
    .pedido-info--right {
      display: none; }

  .pedido-wrapper .box-precio {
    margin-bottom: 3rem; }
    .pedido-wrapper .box-precio--descuento {
      padding: 0;
      text-align: center;
      font-size: 1rem; }
    .pedido-wrapper .box-precio--subtotal {
      padding: 0;
      text-align: center;
      padding-bottom: 0.5rem;
      margin-inline: 2rem;
      font-size: 1rem; }
    .pedido-wrapper .box-precio--total {
      padding: 0;
      text-align: center;
      font-size: 1rem; }

  .minicart-list-checkout .checkout-totals--envio .envio-precio {
    display: flex; }

  .custom-wrapper--metodo-pago {
    padding-inline: .25rem; }
    .custom-wrapper--metodo-pago .valor-a-pagar {
      margin-bottom: 1rem;
      font-weight: 600;
      font-size: .75rem;
      align-items: center !important;
      justify-content: space-between; }
      .custom-wrapper--metodo-pago .valor-a-pagar .form-control {
        margin: 0;
        font-size: 0.75rem; }

  .tarjetas {
    padding-inline: 0; }
    .tarjetas--cuotas h5 {
      font-size: 1rem;
      font-weight: 600; }

  .header-right .minicart-wrap .minicart-btn {
    padding: 0;
    background-color: initial; }
    .header-right .minicart-wrap .minicart-btn div img {
      object-fit: contain;
      width: 1.5rem; }
    .header-right .minicart-wrap .minicart-btn div .quantity {
      top: -10px;
      right: -10px; }

  #mobileMenu .offcanvas-footer div:nth-child(1) {
    justify-content: start !important;
    padding-inline: 1rem; }
    #mobileMenu .offcanvas-footer div:nth-child(1) .redes .btn {
      color: #FF0000; }

  .product-mini-wrapper--pedido .product-item .product-content .product-name {
    padding-top: 2rem; }

  .custom-wrapper--steps .steps {
    margin-inline: 2rem; }

  .button-next-formas, .button-prev-formas {
    opacity: 1;
    visibility: initial;
    background: #F9F9F9;
    border-radius: 50%;
    border: 1px solid #FF0000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: 2rem;
    height: 2rem; }
    .button-next-formas::after, .button-prev-formas::after {
      color: #FF0000; }

  header.main-header_area {
    margin-inline: 0;
    width: 100%;
    border-radius: 0;
    height: 55px; }
    header.main-header_area .container {
      padding-inline: 1rem; }
      header.main-header_area .container .header-logo {
        padding-left: 0;
        width: 8rem; }
      header.main-header_area .container .header-right {
        padding-right: 0; }

  .container.pagina-container .custom-wrapper--producto .single-product-content {
    padding-inline: 1rem; }
    .container.pagina-container .custom-wrapper--producto .single-product-content--titulo {
      font-size: 1rem !important;
      font-weight: 600;
      width: 100%; }
    .container.pagina-container .custom-wrapper--producto .single-product-content--descripcion {
      font-size: .8rem !important;
      margin-bottom: .25rem;
      width: 100%; }
    .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .new-price {
      font-size: 1.5rem; }
    .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .old-price {
      font-size: 1rem;
      font-weight: 500; }
    .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .descuento {
      font-weight: 500; }
    .container.pagina-container .custom-wrapper--producto .single-product-content .price-box .medios-pago {
      width: 100%;
      margin-top: .5rem; }
    .container.pagina-container .custom-wrapper--producto .single-product-content--cantidad {
      width: 100%; }
      .container.pagina-container .custom-wrapper--producto .single-product-content--cantidad .add {
        flex-direction: row;
        width: 100%; }
    .container.pagina-container .custom-wrapper--producto .single-product-content--extra-info {
      width: 100%;
      font-style: italic;
      margin-bottom: 1rem;
      font-size: .85rem; }

  .formasSwiper .button-next-formas, .formasSwiper .button-prev-formas {
    display: flex; }
    .formasSwiper .button-next-formas:hover, .formasSwiper .button-prev-formas:hover {
      border-color: #FF0000; }
  .formasSwiper .button-next-formas {
    right: 1rem; }
  .formasSwiper .button-prev-formas {
    left: 1rem; }

  .product-topbar .widgets-searchbox {
    display: none; }

  .container.pagina-container .producto-relacionados .swiper-wrapper .swiper-slide {
    padding-inline: 0;
    /*.product-item {
        margin-inline: 0;
    }*/ } }
@media (max-width: 424px) {
  section.categorias .swiper-slide .card-categoria {
    min-height: 3rem; }
    section.categorias .swiper-slide .card-categoria h3 {
      margin-block: 0; }

  .product-item .product-content .product-precio {
    font-size: .85rem; }
    .product-item .product-content .product-precio .old-price {
      margin-inline: 0 !important; } }
/*
@media(min-width: 768px) {
	section.categorias .swiper-slide {
		width: fit-content !important;
	}
}*/
.proveedores {
  margin-inline: 20% !important; }
  .proveedores img {
    width: 300px !important; }
  .proveedores .multiple-banners .plugin-wrapper {
    width: 50%; }
    @media (max-width: 768px) {
      .proveedores .multiple-banners .plugin-wrapper {
        width: 100%; } }

.home-titulo {
  margin-top: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 5px;
  font-size: 1.5rem; }

.pedidos-navbar--seguir-comprando {
  margin: 0; }

.variantes-box .variante .product-sku {
  display: none; }
.variantes-box .variante .product-sinonimo {
  display: none; }

.mi-cuenta {
  margin: auto;
  padding-inline: 10% !important; }

.super-menu {
  width: 100%;
  height: 60vh;
  overflow-y: scroll;
  position: absolute;
  top: 85px;
  left: 0;
  background-color: white; }
  .super-menu ul {
    display: none;
    color: red !important;
    position: absolute;
    top: 0;
    left: 200px; }
    .super-menu ul ul {
      color: blue !important;
      position: absolute;
      top: 0;
      left: 450px; }
  .super-menu--categoria {
    width: 33%;
    font-size: 1rem; }
  .super-menu--hijos {
    position: absolute;
    left: 33%;
    top: 0; }
  .super-menu--hijos-2 {
    position: absolute;
    left: 66%;
    top: 0; }

.main-nav > ul > li:hover > .drop-menu > li:hover > .drop-menu > li:hover > .drop-menu {
  top: 0; }

.drop-menu li {
  position: static !important;
  margin-bottom: 0 !important; }
  .drop-menu li:hover {
    position: static !important; }
  .drop-menu li .drop-menu li {
    position: static;
    margin-bottom: 0 !important; }
    .drop-menu li .drop-menu li:hover {
      position: static !important; }
  .drop-menu li .drop-menu.sub-dropdown {
    height: 100%;
    scrollbar-color: #FF0000 #BDBDBD;
    scrollbar-width: thin; }
    .drop-menu li .drop-menu.sub-dropdown a.achicar {
      font-size: 11px !important; }

.estado-pedido-danger {
  font-weight: bold;
  color: #D41601; }
.estado-pedido-success {
  font-weight: bold;
  color: #07C98B; }
.estado-pedido-warning {
  font-weight: bold;
  color: orange; }
.estado-pedidoyellow {
  font-weight: bold;
  color: #FF0000; }
.estado-pedido-danger {
  font-weight: bold;
  color: #D41601; }

@media (max-width: 768px) {
  header .minicart--list .producto-carrito--contenido--precio {
    right: -5% !important;
    font-size: .8rem; } }
.accordion-button:not(.collapsed) {
  background-color: unset; }

.pedido-rapido .card-selected {
  border: 2px solid #FF0000 !important; }

.btn-asesoramiento {
  background-color: #FF0000;
  color: #fff;
  font-weight: 600;
  padding-block: .5rem;
  padding-inline: 1rem;
  border: none;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }
  .btn-asesoramiento:hover {
    filter: brightness(1.1);
    transition: .5s filter;
    color: white; }

/*# sourceMappingURL=tcommerce_custom.css.map */
