@charset "UTF-8";
.euler__main-tienda {
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow-y: hidden;
  overflow-x: visible;
}
.euler__main-tienda-top, .euler__main-tienda-bottom {
  position: relative;
  z-index: 1;
  width: 90%;
  min-width: 288px;
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item-popup-producto {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  top: 20%;
  bottom: 0;
  height: auto;
  margin: 0 auto;
  border-top: solid 0.2rem #E4E6E5;
  border-radius: 2rem 2rem 0 0;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.25);
  background-color: #F6F6F6;
}
.item-popup-producto__picture {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
}
.item-popup-producto__picture > img {
  width: 100%;
  height: 100%;
  border: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-popup-producto__data {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.item-popup-producto__data-cerrar {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item-popup-producto__data-cerrar-button {
  width: auto;
  height: auto;
  border: none;
  background-color: transparent;
  outline: none;
}
.item-popup-producto__data-cerrar-button:hover {
  cursor: pointer;
}
.item-popup-producto__data-cerrar-button:focus {
  outline: none;
}
.item-popup-producto__data-cerrar-button > img {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.item-popup-producto__data-info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.item-popup-producto__data-info-categories {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.item-popup-producto__data-info-categories span {
  width: auto;
  height: auto;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: #E6670D;
  background: #FFEAC4;
}
.item-popup-producto__data-info > h3 {
  width: 100%;
  height: auto;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #295D44;
}
.item-popup-producto__data-info-descripcion {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 5rem;
  overflow: hidden;
  overflow-y: scroll;
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  /* Cambiamos el fondo cuando esté en active */
}
.item-popup-producto__data-info-descripcion::-webkit-scrollbar {
  width: 0.5vw; /* Tamaño del scroll en vertical */
  height: 0.5vh; /* Tamaño del scroll en horizontal */
  display: none; /* Ocultar scroll */
}
.item-popup-producto__data-info-descripcion::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5rem;
}
.item-popup-producto__data-info-descripcion::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.item-popup-producto__data-info-descripcion::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.item-popup-producto__data-info-descripcion::after {
  position: sticky;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5rem;
  display: block;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#F6F6F6));
  background: linear-gradient(transparent, #F6F6F6);
}
.item-popup-producto__data-info-descripcion > p {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #295D44;
}
.item-popup-producto__data-info > p {
  width: 100%;
  height: auto;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #295D44;
}
.item-popup-producto__data-info > span {
  width: 100%;
  height: auto;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  color: #295D44;
}
.item-popup-producto__data-info-canjear {
  width: 40%;
  height: auto;
  border-radius: 1rem;
  border: none;
  padding: 1rem;
  color: #F6F6F6;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  background: #2D9564;
  outline: none;
}
.item-popup-producto__data-info-canjear:focus {
  outline: none;
}

.item-checkout {
  position: fixed;
  z-index: 30;
  left: 0;
  right: 0;
  top: 20%;
  bottom: 0;
  height: auto;
  margin: 0 auto;
  border-top: solid 0.2rem #E4E6E5;
  border-radius: 2rem 2rem 0 0;
  padding: 2rem;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: 1fr 1rem 9fr 1rem 1fr 1rem 1fr;
  grid-template-rows: 1fr 9fr 1fr 1fr;
  grid-auto-columns: auto;
  gap: 1rem;
  -webkit-box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.25);
  background-color: #F6F6F6;
}
.item-checkout__cerrar {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item-checkout__cerrar-button {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  outline: none;
}
.item-checkout__cerrar-button > img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.item-checkout__cerrar-button:hover {
  cursor: pointer;
  outline: none;
}
.item-checkout__cerrar-button:focus {
  outline: none;
}
.item-checkout__recompensas {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  overflow-y: scroll;
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  /* Cambiamos el fondo cuando esté en active */
}
.item-checkout__recompensas::-webkit-scrollbar {
  width: 0.5vw; /* Tamaño del scroll en vertical */
  height: 0.5vh; /* Tamaño del scroll en horizontal */
  display: none; /* Ocultar scroll */
}
.item-checkout__recompensas::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5rem;
}
.item-checkout__recompensas::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.item-checkout__recompensas::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.item-checkout__recompensas--default {
  width: 100%;
  min-height: 10rem;
  border-radius: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#F6F6F6), to(#E4E6E5));
  background: linear-gradient(90deg, #F6F6F6, #E4E6E5);
  background-size: 250% 100%;
  -webkit-animation: panelesGradienteMove 5s ease-in-out infinite alternate;
          animation: panelesGradienteMove 5s ease-in-out infinite alternate;
}
@-webkit-keyframes panelesGradienteMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes panelesGradienteMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.item-checkout__recompensas--vacio {
  width: 100%;
  height: 100%;
  border: solid 0.2rem #E4E6E5;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.item-checkout__recompensas--vacio img {
  width: 10rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeQuality;
}
.item-checkout__recompensas--vacio p {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #295D44;
  text-align: center;
}
.item-checkout__recompensas-titulo {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item-checkout__recompensas-titulo svg {
  width: 1.5rem;
  height: auto;
  margin-right: 1rem;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeQuality;
  fill: #295D44;
}
.item-checkout__recompensas-titulo h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #295D44;
}
.item-checkout__recompensas-item {
  position: relative;
  z-index: 0;
  width: 60%;
  min-width: 280px;
  height: auto;
  border: solid 0.2rem #E4E6E5;
  border-radius: 1rem;
  padding: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1rem 10fr;
  grid-template-columns: 2fr 10fr;
  grid-auto-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #F6F6F6;
}
.item-checkout__recompensas-item:hover {
  background: #fcfcfc;
}
.item-checkout__recompensas-item-quitar {
  position: absolute;
  z-index: 10;
  top: 5%;
  right: 1%;
  border: none;
  background: transparent;
  outline: none;
}
.item-checkout__recompensas-item-quitar:hover, .item-checkout__recompensas-item-quitar:focus {
  outline: none;
  cursor: pointer;
}
.item-checkout__recompensas-item-quitar img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.item-checkout__recompensas-item .cargando {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: spinnDelete 0.5s ease-in infinite;
          animation: spinnDelete 0.5s ease-in infinite;
}
@-webkit-keyframes spinnDelete {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  65% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  85% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes spinnDelete {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  65% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  85% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  95% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.item-checkout__recompensas-item-picture {
  width: 100%;
  height: auto;
}
.item-checkout__recompensas-item-picture img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-checkout__recompensas-item-data {
  position: relative;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #295D44;
}
.item-checkout__recompensas-item-data-name {
  font-size: 1.2rem;
  font-weight: 600;
}
.item-checkout__recompensas-item-data span {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.item-checkout__recompensas-item-data-subtotal {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.item-checkout__recompensas-item-data-subtotal img {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeQuality;
}
.item-checkout__total {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 1rem;
  place-items: center;
}
.item-checkout__total-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #295D44;
}
.item-checkout__total-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #295D44;
}
.item-checkout__total-total img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeQuality;
}
.item-checkout__finalizar {
  width: 100%;
  height: auto;
}
.item-checkout__finalizar button {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 1rem;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #2D9564;
  background: #BBE8D1;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.item-checkout__finalizar button[disabled] {
  color: #131313;
  background-color: #E4E6E5;
}
.item-checkout__finalizar button:focus {
  outline: none;
}
.item-checkout__finalizar button svg {
  width: 1.6rem;
  height: auto;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  fill: #2D9564;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.item-checkout__finalizar button:hover {
  color: #F6F6F6;
  background: #2D9564;
  cursor: pointer;
}
.item-checkout__finalizar button:hover > svg {
  fill: #F6F6F6;
}

.item-recompensas-canjeadas {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.item-recompensas-canjeadas__titulo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item-recompensas-canjeadas__titulo img {
  width: 15rem;
  height: 15rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  image-rendering: optimizeQuality;
}
.item-recompensas-canjeadas__titulo h3 {
  width: 100%;
  height: auto;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #295D44;
}
.item-recompensas-canjeadas__pasos {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
}
.item-recompensas-canjeadas__pasos-article {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  font-family: "Inter", sans-serif;
}
.item-recompensas-canjeadas__pasos-article > h4 {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #295D44;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #BBE8D1;
}
.item-recompensas-canjeadas__pasos-article p {
  color: #295D44;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.item-recompensas-canjeadas__pasos-article--espera > h4 {
  color: #E6670D;
  background: #FFEAC4;
}
.item-recompensas-canjeadas__pasos-article--espera > p {
  color: #E6670D;
}
.item-recompensas-canjeadas__pasos-line {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.item-recompensas-canjeadas__pasos-line::before {
  content: "";
  width: 1rem;
  height: 3rem;
  border-radius: 1rem;
  background: #FFEAC4;
}

.item-recompensas-error {
  width: 100%;
  height: 100%;
  border-radius: 1vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.item-recompensas-error img {
  width: 5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-recompensas-error p {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #E6670D;
  text-align: center;
}

@media (min-width: 1200px) {
  .euler__main-tienda-top {
    width: 100%;
  }
  .item-popup-producto {
    position: fixed;
    z-index: 10;
    height: auto;
    left: 25%;
    right: 15%;
    top: 15%;
    bottom: 20%;
    margin: 0 auto;
    border: solid 0.1vw #E4E6E5;
    border-radius: 1.5vw;
    padding: 1.5vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 5fr 1.5vw 6fr;
    grid-template-columns: 5fr 6fr;
    grid-auto-rows: auto;
    gap: 1.5vw;
    background-color: #F6F6F6;
  }
  .item-popup-producto__picture {
    border-radius: 1.5vw;
  }
  .item-popup-producto__picture > img {
    border: 1.5vw;
  }
  .item-popup-producto__data {
    gap: 1.5vw;
  }
  .item-popup-producto__data-cerrar-button > img {
    width: 2vw;
    height: 2vw;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .item-popup-producto__data-info {
    gap: 0.5vw;
  }
  .item-popup-producto__data-info-categories {
    gap: 1vw;
    font-size: 1vw;
  }
  .item-popup-producto__data-info-categories span {
    border-radius: 0.5vw;
    padding: 0.5vw 1vw;
  }
  .item-popup-producto__data-info > h3 {
    font-size: 1.8vw;
    font-weight: 600;
  }
  .item-popup-producto__data-info-descripcion {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 25vh;
  }
  .item-popup-producto__data-info-descripcion::after {
    position: sticky;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2vw;
    display: block;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#F6F6F6));
    background: linear-gradient(transparent, #F6F6F6);
  }
  .item-popup-producto__data-info-descripcion > p {
    font-size: 1.1vw;
  }
  .item-popup-producto__data-info > span {
    font-size: 1.25vw;
  }
  .item-popup-producto__data-info-canjear {
    width: 30%;
    border-radius: 0.8vw;
    padding: 0.65vw;
    font-size: 1vw;
  }
  .item-popup-producto__data-info-canjear:hover {
    cursor: pointer;
  }
  .item-checkout {
    position: fixed;
    z-index: 30;
    height: auto;
    left: 25%;
    right: 15%;
    top: 15%;
    bottom: 20%;
    margin: 0 auto;
    border: solid 0.1vw #E4E6E5;
    border-radius: 1.5vw;
    padding: 1.5vw;
    gap: 1vw;
    background-color: #F6F6F6;
  }
  .item-checkout__cerrar-button > img {
    width: 2vw;
    height: 2vw;
  }
  .item-checkout__recompensas {
    gap: 1vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .item-checkout__recompensas::after {
    padding: 1vw;
  }
  .item-checkout__recompensas--default {
    min-height: 5vw;
    border-radius: 1vw;
  }
  .item-checkout__recompensas--vacio {
    border: solid 0.1vw #E4E6E5;
    padding: 1vw;
    gap: 1vw;
  }
  .item-checkout__recompensas--vacio img {
    width: 5vw;
  }
  .item-checkout__recompensas--vacio p {
    font-size: 1.1vw;
  }
  .item-checkout__recompensas-titulo svg {
    width: 1.2vw;
    margin-right: 0.5vw;
  }
  .item-checkout__recompensas-titulo h3 {
    font-size: 1.5vw;
  }
  .item-checkout__recompensas-item {
    position: relative;
    z-index: 0;
    width: 60%;
    height: auto;
    border: solid 0.2vw #E4E6E5;
    border-radius: 1vw;
    padding: 1vw;
    gap: 1.5vw;
  }
  .item-checkout__recompensas-item-quitar {
    position: absolute;
    z-index: 10;
    top: 5%;
    right: 1%;
    border: none;
    background: transparent;
    outline: none;
  }
  .item-checkout__recompensas-item-quitar:hover, .item-checkout__recompensas-item-quitar:focus {
    outline: none;
    cursor: pointer;
  }
  .item-checkout__recompensas-item-quitar img {
    width: 2vw;
    height: 2vw;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
  }
  .item-checkout__recompensas-item .cargando {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation: spinnDelete 0.5s ease-in infinite;
            animation: spinnDelete 0.5s ease-in infinite;
  }
  @-webkit-keyframes spinnDelete {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    65% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    85% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    95% {
      -webkit-transform: scale(0.85);
              transform: scale(0.85);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes spinnDelete {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    65% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    85% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    95% {
      -webkit-transform: scale(0.85);
              transform: scale(0.85);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  .item-checkout__recompensas-item-picture img {
    border-radius: 1vw;
  }
  .item-checkout__recompensas-item-data {
    gap: 0.5vw;
  }
  .item-checkout__recompensas-item-data-name {
    font-size: 1.1vw;
    font-weight: 600;
  }
  .item-checkout__recompensas-item-data span {
    font-size: 1vw;
  }
  .item-checkout__total {
    gap: 1vw;
  }
  .item-checkout__total-title {
    font-size: 1.5vw;
  }
  .item-checkout__total-total {
    gap: 0.5vw;
    font-size: 1.2vw;
  }
  .item-checkout__total-total img {
    width: 1.5vw;
    height: 1.5vw;
  }
  .item-checkout__finalizar button {
    border-radius: 1vw;
    padding: 1vw;
    gap: 0.5vw;
    font-size: 1.2vw;
    font-weight: 500;
  }
  .item-checkout__finalizar button svg {
    width: 1.1vw;
  }
  .item-recompensas-canjeadas {
    width: 100%;
    height: 100%;
    border-radius: 1vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .item-recompensas-canjeadas__titulo {
    gap: 0.25vw;
  }
  .item-recompensas-canjeadas__titulo img {
    width: 7vw;
    height: 7vw;
  }
  .item-recompensas-canjeadas__titulo h3 {
    font-size: 1.3vw;
  }
  .item-recompensas-canjeadas__pasos {
    margin: 0 auto;
    margin-top: 1vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 0 1fr 0 4fr 0 1fr 0 3fr;
    grid-template-columns: 3fr 1fr 4fr 1fr 3fr;
    grid-auto-rows: auto;
    gap: 0;
  }
  .item-recompensas-canjeadas__pasos-article {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5vw;
  }
  .item-recompensas-canjeadas__pasos-article > h4 {
    width: 5.5vw;
    height: 5.5vw;
    font-size: 2vw;
  }
  .item-recompensas-canjeadas__pasos-article p {
    font-size: 1.1vw;
    font-weight: 600;
  }
  .item-recompensas-canjeadas__pasos-line {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .item-recompensas-canjeadas__pasos-line::before {
    content: "";
    width: 100%;
    height: 1vw;
    border-radius: 1vw;
    background: #FFEAC4;
  }
  .item-recompensas-error {
    gap: 1vw;
  }
  .item-recompensas-error img {
    width: 8vw;
  }
  .item-recompensas-error p {
    font-size: 1.4vw;
  }
}