* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #e2e2e2;
  color: #111111;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
}

.hide-scrollbar {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

#preloader {
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #aec597;
  transition: 0.3s;
}
#preloader.done {
  opacity: 0;
  pointer-events: none;
}
#preloader .logo {
  position: absolute;
  width: 50px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
#preloader .loading-animate {
  width: 100px;
}

header {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 10px;
  background-color: #aec597;
  border-bottom: 2px solid #4c4c4c;
}
header a img {
  width: 150px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 10px;
  grid-auto-flow: row;
  width: 100%;
  height: 100%;
  padding: 10px;
  padding-top: 50px;
  background-color: #e2e2e2;
  transition: 0.3s;
}
.grid .title {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid .title button {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #4c4c4c;
  border-radius: 5px;
  background-color: #aec597;
  color: #4c4c4c;
}
.grid .card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  border: 1px solid #4c4c4c;
}
.grid .card.hidden {
  pointer-events: none;
  opacity: 0;
}
.grid .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  filter: brightness(0.85) contrast(1.1);
}
.grid .card .gloss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 70%);
  pointer-events: none;
}
.grid .card .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

[data-type=subCategory] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-top: 120px;
}
[data-type=subCategory].hidden {
  pointer-events: none;
  opacity: 0;
}

.item-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  padding-top: 70px;
  background-color: #e2e2e2;
  transition: 0.3s;
}
.item-list.hidden {
  opacity: 0;
  pointer-events: none;
}
.item-list .title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-list .title button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #4c4c4c;
  border-radius: 5px;
  background-color: #aec597;
  color: #4c4c4c;
}
.item-list .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}
.item-list .list .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(76, 76, 76, 0.25);
}
.item-list .list .item img {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.item-list .list .item h4 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: bold;
}
.item-list .list .item h4 span {
  display: flex;
  font-weight: lighter;
  font-size: 0.8rem;
  margin: 0;
}
.item-list .list .item span {
  margin-left: auto;
  font-weight: bolder;
}/*# sourceMappingURL=style.css.map */