@charset "UTF-8";
.whiteroom__carrito {
  position: fixed;
  z-index: 20;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 320px;
  height: 100vh;
  padding: 1rem 1rem 0 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;
  background-color: #FFFFFF;
  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 */
  -webkit-animation: showCarrito 1s cubic-bezier(0.54, 0, 0.43, 1) 1 forwards;
          animation: showCarrito 1s cubic-bezier(0.54, 0, 0.43, 1) 1 forwards;
}
.whiteroom__carrito::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
.whiteroom__carrito::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5rem;
  opacity: 0.5;
}
.whiteroom__carrito::-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);
}
.whiteroom__carrito::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.whiteroom__carrito::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}
.whiteroom__carrito::-webkit-scrollbar-track:hover, .whiteroom__carrito::-webkit-scrollbar-track:active {
  background: transparent;
}
@-webkit-keyframes showCarrito {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes showCarrito {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
.whiteroom__carrito-back {
  width: 100%;
  height: 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;
}
.whiteroom__carrito-back-button {
  width: auto;
  height: auto;
  border: none;
  padding: 0.25rem;
  background-color: transparent;
  display: inline-block;
  outline: none;
}
.whiteroom__carrito-back-button:hover, .whiteroom__carrito-back-button:focus {
  outline: none;
  background-color: transparent;
}
.whiteroom__carrito-back-button > svg {
  width: 1rem;
  height: auto;
  fill: #000000;
  pointer-events: none;
}
.whiteroom__carrito-empty {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  gap: 1rem;
}
.whiteroom__carrito-empty > svg {
  width: 4rem;
  height: auto;
  fill: #1b1b1b;
}
.whiteroom__carrito-empty-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #131313;
}
.whiteroom__carrito-content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  /* 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 */
}
.whiteroom__carrito-content::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
.whiteroom__carrito-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5rem;
  opacity: 0.5;
}
.whiteroom__carrito-content::-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);
}
.whiteroom__carrito-content::-webkit-scrollbar-thumb:active {
  background-color: #999999;
}
.whiteroom__carrito-content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}
.whiteroom__carrito-content::-webkit-scrollbar-track:hover, .whiteroom__carrito-content::-webkit-scrollbar-track:active {
  background: transparent;
}
.whiteroom__carrito-content-item {
  width: 70%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.15rem;
  color: #000000;
}
.whiteroom__carrito-content-item-img {
  width: 40%;
  height: auto;
  border: 1px solid #e7e7e7;
  border-radius: 1rem;
  display: inline-block;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.whiteroom__carrito-content-item p {
  margin: 0;
  font-family: "Inter", sans-serif;
}
.whiteroom__carrito-content-item-name {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #1d1d1d;
  text-align: center;
}
.whiteroom__carrito-content-item-talla {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
}
.whiteroom__carrito-content-item-talla > span {
  color: #494949;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.whiteroom__carrito-content-item-quantity {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
}
.whiteroom__carrito-content-item-quantity > span {
  color: #494949;
  font-size: 0.8rem;
}
.whiteroom__carrito:nth-child(3) {
  padding-bottom: 10rem;
}
.whiteroom__carrito-finalizar {
  position: sticky;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Inter", sans-serif;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(#FFFFFF), to(#FFFFFF));
  background: linear-gradient(transparent, #FFFFFF, #FFFFFF);
}
.whiteroom__carrito-finalizar-button {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0.5rem;
  border: none;
  padding: 1rem 0.6rem;
  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.25rem;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(#0f0f0f), to(#131313));
  background: linear-gradient(90deg, #000000, #0f0f0f, #131313);
  background-size: 250% 100%;
  outline: none;
  -webkit-animation: addToCartButtonMove 5s cubic-bezier(0.82, 0, 0.52, 0.99) infinite alternate;
          animation: addToCartButtonMove 5s cubic-bezier(0.82, 0, 0.52, 0.99) infinite alternate;
}
@-webkit-keyframes addToCartButtonMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes addToCartButtonMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0 50%;
  }
}
.whiteroom__carrito-finalizar-button > svg {
  width: 0.9rem;
  fill: #FFFFFF;
  pointer-events: none;
}
.whiteroom__carrito-finalizar-button:active, .whiteroom__carrito-finalizar-button:focus, .whiteroom__carrito-finalizar-button:hover {
  outline: none;
}
.whiteroom__carrito-finalizar-button:hover {
  color: #FFFFFF;
}
.whiteroom__carrito-finalizar-button:hover svg {
  fill: #FFFFFF;
}
@media (min-width: 1200px) {
  .whiteroom__carrito {
    width: 20vw;
    padding: 1vw 1vw 0 1vw;
    gap: 0.5vw;
  }
  .whiteroom__carrito-back-button {
    padding: 0.5vw;
  }
  .whiteroom__carrito-back-button > svg {
    width: 1.1vw;
    pointer-events: none;
  }
  .whiteroom__carrito-empty {
    font-size: 1.3vw;
    gap: 1vw;
  }
  .whiteroom__carrito-empty > svg {
    width: 3vw;
    fill: rgba(19, 19, 19, 0.7254901961);
  }
  .whiteroom__carrito-content {
    gap: 0.5vw;
  }
  .whiteroom__carrito-content-item {
    gap: 0.15vw;
  }
  .whiteroom__carrito-content-item-img {
    width: 40%;
    height: auto;
    border: 0.2vw solid #e7e7e7;
    border-radius: 1vw;
    -webkit-box-shadow: 0 0 0.3vw rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 0.3vw rgba(0, 0, 0, 0.15);
  }
  .whiteroom__carrito-content-item-name {
    font-size: 1vw;
  }
  .whiteroom__carrito-content-item-talla {
    font-size: 1vw;
  }
  .whiteroom__carrito-content-item-talla > span {
    font-size: 1vw;
  }
  .whiteroom__carrito-content-item-quantity {
    font-size: 1vw;
  }
  .whiteroom__carrito-content-item-quantity > span {
    font-size: 1vw;
  }
  .whiteroom__carrito:nth-child(3) {
    padding-bottom: 10vw;
  }
  .whiteroom__carrito-finalizar {
    padding: 1vw;
  }
  .whiteroom__carrito-finalizar-button {
    border-radius: 0.5vw;
    border: none;
    padding: 1vw 0.6vw;
    gap: 0.25vw;
    font-size: 1vw;
  }
  @-webkit-keyframes addToCartButtonMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 50% 100%;
    }
    100% {
      background-position: 0 50%;
    }
  }
  @keyframes addToCartButtonMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 50% 100%;
    }
    100% {
      background-position: 0 50%;
    }
  }
  .whiteroom__carrito-finalizar-button > svg {
    width: 0.9vw;
    fill: #FFFFFF;
    pointer-events: none;
  }
  .whiteroom__carrito-finalizar-button:active, .whiteroom__carrito-finalizar-button:focus, .whiteroom__carrito-finalizar-button:hover {
    outline: none;
  }
  .whiteroom__carrito-finalizar-button:hover {
    color: #FFFFFF;
  }
  .whiteroom__carrito-finalizar-button:hover svg {
    fill: #FFFFFF;
  }
}