@charset "UTF-8";
.whiteroomcore-card-carrito {
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
  right: 0;
  top: 20vh;
  border-radius: 3rem 3rem 0 0;
  border-top: solid 0.2rem #DADADA;
  padding: 2rem;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -ms-grid-rows: 1fr 0.5rem 8fr 0.5rem 2fr 0.5rem 1fr;
  grid-template-rows: 1fr 8fr 2fr 1fr;
  grid-auto-columns: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background-color: #FFFFFF;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-animation: showCardCarrito 0.4s cubic-bezier(0.46, 0, 0.51, 0.99) 1 forwards;
          animation: showCardCarrito 0.4s cubic-bezier(0.46, 0, 0.51, 0.99) 1 forwards;
  overflow: hidden;
}
.whiteroomcore-card-carrito__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;
}
.whiteroomcore-card-carrito__cerrar button {
  border: none;
  padding: 0;
  background: transparent;
  -o-object-fit: contain;
     object-fit: contain;
  outline: none;
}
.whiteroomcore-card-carrito__cerrar button:focus, .whiteroomcore-card-carrito__cerrar button:hover {
  outline: none;
}
.whiteroomcore-card-carrito__cerrar button img {
  width: 3rem;
  height: 3rem;
  pointer-events: none;
}
.whiteroomcore-card-carrito__productos {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  margin-top: 1rem;
  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: 0.5rem;
  overflow: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: auto;
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  /* Ponemos un color de fondo y redondeamos las esquinas del thumb */
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  /* Cambiamos el fondo cuando esté en active */
  /* Ponemos un color de fondo y redondeamos las esquinas del track */
  /* Cambiamos el fondo cuando esté en active o hover */
}
.whiteroomcore-card-carrito__productos::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  display: none;
}
.whiteroomcore-card-carrito__productos::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5rem;
  opacity: 0.5;
}
.whiteroomcore-card-carrito__productos::-webkit-scrollbar-thumb:hover {
  background: #f5f5f5;
  -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);
}
.whiteroomcore-card-carrito__productos::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.whiteroomcore-card-carrito__productos::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}
.whiteroomcore-card-carrito__productos::-webkit-scrollbar-track:hover, .whiteroomcore-card-carrito__productos::-webkit-scrollbar-track:active {
  background: transparent;
}
.whiteroomcore-card-carrito__productos--default {
  width: 100%;
  min-height: 5rem;
  border-radius: 2rem;
  background: -webkit-gradient(linear, left top, right top, from(#e7e7e7), to(#f7f7f7));
  background: linear-gradient(90deg, #e7e7e7, #f7f7f7);
  background-size: 300% 150%;
  -webkit-animation: backgroundSizeMove 2.5s cubic-bezier(0.58, -0.19, 0.1, 1.18) infinite alternate;
          animation: backgroundSizeMove 2.5s cubic-bezier(0.58, -0.19, 0.1, 1.18) infinite alternate;
}
@-webkit-keyframes backgroundSizeMove {
  0% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 10% 25%;
  }
  100% {
    background-position: 50% 0%;
  }
}
@keyframes backgroundSizeMove {
  0% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 10% 25%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.whiteroomcore-card-carrito__productos .item-vacio, .whiteroomcore-card-carrito__productos .item-confirmado {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #131313;
}
.whiteroomcore-card-carrito__productos .item-vacio img, .whiteroomcore-card-carrito__productos .item-confirmado img {
  width: 10rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeQuality;
}
.whiteroomcore-card-carrito__productos .item-vacio p, .whiteroomcore-card-carrito__productos .item-confirmado p {
  text-align: center;
}
.whiteroomcore-card-carrito__productos .item-producto-vacio {
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
  border: solid 0.2rem #d9c398;
  padding: 1.8rem 1rem;
  color: #d9c398;
  background: #fff2db;
  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: 0.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
.whiteroomcore-card-carrito__productos .item-producto-vacio svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #d9c398;
}
.whiteroomcore-card-carrito__productos .item-producto-vacio p {
  margin: 0;
  text-align: center;
}
.whiteroomcore-card-carrito__productos .item-finalizando {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.whiteroomcore-card-carrito__productos .item-finalizando > svg {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  -webkit-animation: spinnInfinite 1s ease-in-out infinite;
          animation: spinnInfinite 1s ease-in-out infinite;
}
@-webkit-keyframes spinnInfinite {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinnInfinite {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.whiteroomcore-card-carrito__productos .item-checkout {
  width: 100%;
  height: 100%;
}
.whiteroomcore-card-carrito__productos .item-checkout > svg {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  -webkit-animation: spinnInfinite 1s ease-in-out infinite;
          animation: spinnInfinite 1s ease-in-out infinite;
}
@keyframes spinnInfinite {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.whiteroomcore-card-carrito__productos .item-checkout-form {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 0.5rem;
}
.whiteroomcore-card-carrito__productos .item-checkout-form__field {
  width: 90%;
  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;
  gap: 0.25rem;
}
.whiteroomcore-card-carrito__productos .item-checkout-form__field--direccion, .whiteroomcore-card-carrito__productos .item-checkout-form__field--email, .whiteroomcore-card-carrito__productos .item-checkout-form__field--telefono {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}
.whiteroomcore-card-carrito__productos .item-checkout-form__field label {
  width: 100%;
  height: auto;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #131313;
}
.whiteroomcore-card-carrito__productos .item-checkout-form__field input {
  width: 100%;
  height: auto;
  border: solid 0.2rem rgba(194, 194, 194, 0.9);
  border-radius: 1.25rem;
  padding: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #131313;
}
.whiteroomcore-card-carrito__productos .item-checkout-form__field input:focus, .whiteroomcore-card-carrito__productos .item-checkout-form__field input:hover {
  outline: none;
}
.whiteroomcore-card-carrito__productos .item-confirmado > svg {
  width: 3rem;
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  -webkit-animation: spinnInfinite 1s ease-in-out infinite;
          animation: spinnInfinite 1s ease-in-out infinite;
}
@keyframes spinnInfinite {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.whiteroomcore-card-carrito__totales {
  width: 100%;
  height: 100%;
  margin: 0;
  margin-top: 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: 0.25rem;
  font-family: "Inter", sans-serif;
  overflow-y: scroll;
  /* Ponemos un color de fondo y redondeamos las esquinas del thumb */
  /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
  /* Cambiamos el fondo cuando esté en active */
  /* Ponemos un color de fondo y redondeamos las esquinas del track */
  /* Cambiamos el fondo cuando esté en active o hover */
}
.whiteroomcore-card-carrito__totales::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  display: none;
}
.whiteroomcore-card-carrito__totales::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5rem;
  opacity: 0.5;
}
.whiteroomcore-card-carrito__totales::-webkit-scrollbar-thumb:hover {
  background: #f5f5f5;
  -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);
}
.whiteroomcore-card-carrito__totales::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.whiteroomcore-card-carrito__totales::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}
.whiteroomcore-card-carrito__totales::-webkit-scrollbar-track:hover, .whiteroomcore-card-carrito__totales::-webkit-scrollbar-track:active {
  background: transparent;
}
.whiteroomcore-card-carrito__totales h4 {
  width: 100%;
  margin: 0;
  font-weight: 500;
  font-size: 1.5rem;
  color: #131313;
  text-align: left;
}
.whiteroomcore-card-carrito__totales-lista {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.25rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 0.25rem;
}
.whiteroomcore-card-carrito__totales-lista > span {
  width: 100%;
  height: auto;
  margin: 0;
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #000000;
}
.whiteroomcore-card-carrito__totales-lista > span > span {
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  vertical-align: text-top;
}
.whiteroomcore-card-carrito__totales-lista-productos, .whiteroomcore-card-carrito__totales-lista-envio, .whiteroomcore-card-carrito__totales-lista-total {
  width: 100%;
  height: auto;
  text-align: right;
}
.whiteroomcore-card-carrito__totales-lista-productos, .whiteroomcore-card-carrito__totales-lista-envio {
  font-size: 1.4rem;
  font-weight: 400;
  color: #242424;
}
.whiteroomcore-card-carrito__totales-lista-total {
  font-size: 1.7rem;
  font-weight: 700;
  color: #131313;
}
.whiteroomcore-card-carrito__finalizar {
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 1rem;
  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;
}
.whiteroomcore-card-carrito__finalizar button {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  padding: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #FFFFFF;
  background: #131313;
}
@-webkit-keyframes showCardCarrito {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes showCardCarrito {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.item-producto {
  width: 100%;
  height: auto;
  border: solid 0.2rem rgba(223, 223, 223, 0.9);
  border-radius: 1.5rem;
  padding: 0.5rem 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 1.5rem 4fr 1.5rem 5fr;
  grid-template-columns: 3fr 4fr 5fr;
  grid-auto-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.item-producto__picture {
  width: 100%;
  height: auto;
}
.item-producto__picture img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  image-rendering: optimizeQuality;
}
.item-producto__content {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  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: 0.15rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #131313;
}
.item-producto__content h4 {
  margin: 0;
  font-weight: 500;
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
}
.item-producto__content span {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
}
.item-producto__acciones {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 1rem 4fr 1rem 4fr;
  grid-template-columns: repeat(3, 4fr);
  grid-auto-rows: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.item-producto__acciones button {
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 1rem;
  padding: 0;
  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;
  background: transparent;
  outline: none;
}
.item-producto__acciones button:focus, .item-producto__acciones button:hover {
  outline: none;
}
.item-producto__acciones button > img {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.item-producto__acciones > span {
  width: 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;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #131313;
}
.item-producto__acciones > span > svg {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: spinnInfinite 1s ease-in-out infinite;
          animation: spinnInfinite 1s ease-in-out infinite;
}
@keyframes spinnInfinite {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}