/* [project]/src/app/page.module.css [app-client] (css) */
.page-module___8aEwW__banner {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-backdrop-filter: blur(2px);
  background: rgba(60, 60, 60, .7);
  border-top: 1px solid #646464;
  border-bottom: 1px solid #646464;
  justify-content: center;
  padding: 5vh;
  display: flex;
}

.page-module___8aEwW__banner h1 {
  letter-spacing: -7px;
  color: #fffffa;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .3));
  text-shadow: 0 3px gold;
  margin: 0;
  font-family: titanOne;
  font-size: 6em;
  font-weight: 100;
}

.page-module___8aEwW__items {
  margin-top: 3vh;
  margin-bottom: 3vh;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

/* [project]/src/components/Item/Item.module.css [app-client] (css) */
.Item-module__3csgma__card {
  background: var(--primary-color);
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  padding: 5px;
  display: flex;
  box-shadow: inset 0 -5px rgba(0, 0, 0, .2), 0 0 10px rgba(0, 0, 0, .15);
}

.Item-module__3csgma__top {
  border-bottom: 1px solid var(--secondary-color);
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  position: relative;
}

.Item-module__3csgma__wishlist {
  cursor: pointer;
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 15px;
  display: flex;
  position: absolute;
  top: -8px;
  right: 3px;
}

.Item-module__3csgma__wishlist i {
  color: gray;
  -webkit-text-stroke-width: 2px;
  -webkit-text-fill-color: transparent;
  z-index: 4;
  pointer-events: none;
  margin-top: 3px;
  font-size: 1.25em;
  transition: all .25s ease-in-out;
}

.Item-module__3csgma__bg {
  opacity: 0;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
}

.Item-module__3csgma__wishlist i {
  color: gray;
  -webkit-text-stroke-width: 2px;
  --fill-opacity: .02;
  -webkit-text-fill-color: rgba(255 255 255 / var(--fill-opacity));
  z-index: 4;
  pointer-events: none;
  margin-top: 3px;
  font-size: 1.25em;
  transition: --fill-opacity .5s ease-in-out;
}

.Item-module__3csgma__wishlist:hover i {
  --fill-opacity: .25;
}

@keyframes Item-module__3csgma__textFillIn {
  0% {
    -webkit-text-fill-color: rgba(255, 255, 255, .02);
  }

  20% {
    -webkit-text-fill-color: rgba(255, 255, 255, .08);
  }

  40% {
    -webkit-text-fill-color: rgba(255, 255, 255, .15);
  }

  60% {
    -webkit-text-fill-color: rgba(255, 255, 255, .2);
  }

  80% {
    -webkit-text-fill-color: rgba(255, 255, 255, .23);
  }

  100% {
    -webkit-text-fill-color: rgba(255, 255, 255, .25);
  }
}

@keyframes Item-module__3csgma__textFillOut {
  0% {
    -webkit-text-fill-color: rgba(255, 255, 255, .25);
  }

  20% {
    -webkit-text-fill-color: rgba(255, 255, 255, .2);
  }

  40% {
    -webkit-text-fill-color: rgba(255, 255, 255, .15);
  }

  60% {
    -webkit-text-fill-color: rgba(255, 255, 255, .1);
  }

  80% {
    -webkit-text-fill-color: rgba(255, 255, 255, .06);
  }

  100% {
    -webkit-text-fill-color: rgba(255, 255, 255, .02);
  }
}

@supports not (--css: variables) {
  .Item-module__3csgma__wishlist i {
    -webkit-text-fill-color: rgba(255, 255, 255, .02);
  }

  .Item-module__3csgma__wishlist:hover i {
    animation: .5s ease-in-out forwards Item-module__3csgma__textFillIn;
  }

  .Item-module__3csgma__wishlist:not(:hover) i {
    animation: .5s ease-in-out forwards Item-module__3csgma__textFillOut;
  }
}

.Item-module__3csgma__wishlist:hover .Item-module__3csgma__bg {
  animation: .75s ease-in-out forwards Item-module__3csgma__bgHover;
}

@keyframes Item-module__3csgma__bgHover {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(.9);
  }

  100% {
    opacity: 0;
    transform: scale(.9);
  }
}

.Item-module__3csgma__top img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  aspect-ratio: 128 / 147;
  background: rgba(63, 63, 63, .25);
  border-radius: 5px;
  width: 100px;
  height: auto;
  padding: 15px;
}

.Item-module__3csgma__info {
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.Item-module__3csgma__info > span:first-child {
  font-size: 1.1em;
}

.Item-module__3csgma__info > span:last-child span:first-child {
  padding-right: 1ch;
  font-size: .9em;
}

.Item-module__3csgma__info > span:last-child span:last-child {
  font-family: Inter;
  font-size: 1.2em;
  font-weight: 100;
}

.Item-module__3csgma__info div:last-child > span:last-child {
  width: calc(100% - var(--padding));
  --padding: 20px;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.Item-module__3csgma__info > span:last-child {
  align-items: center;
  display: flex;
}

/*# sourceMappingURL=src_6f5aa8f2._.css.map*/