/* style/select.css */
.solid-select-container * {
  box-sizing: border-box;
  border: 0px solid transparent;
  line-height: normal;
}
.solid-select-container[data-disabled=true] {
  pointer-events: none;
}
.solid-select-container {
  position: relative;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
  border-radius: 0.25rem;
  min-width: 4em;
}
.solid-select-control {
  border: 1px solid rgb(229, 231, 235);
  border-radius: inherit;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.solid-select-control[data-disabled=true] {
  background-color: rgb(243, 244, 246);
  border-color: rgb(209, 213, 219);
}
.solid-select-control[data-multiple=true][data-has-value=true] {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.25rem;
}
.solid-select-control:focus-within {
  background-color: rgb(216, 210, 248);
}
.solid-select-placeholder {
  color: rgb(156, 163, 175);
  grid-column-start: 1;
  grid-row-start: 1;
}
.solid-select-single-value {
  grid-column-start: 1;
  grid-row-start: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solid-select-multi-value {
  background-color: rgb(243, 244, 246);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  font-size: 85%;
  padding-left: 4px;
  padding-right: 4px;
  min-width: 20px;
}
.solid-select-multi-value > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solid-select-multi-value-remove {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.solid-select-multi-value-remove:hover {
  text-shadow: 1px 1px 3px rgb(0 0 0 / 29%), 2px 4px 7px rgb(73 64 125 / 35%);
}
.solid-select-input {
  background-color: transparent;
  border-width: 0px;
  flex: 1 1 0%;
  margin: 0px;
  padding: 0px;
  caret-color: transparent;
  grid-column-start: 1;
  grid-row-start: 1;
  font: inherit;
  outline: none;
}
.solid-select-input:read-only {
  cursor: default;
}
.solid-select-input[data-multiple=true] {
  caret-color: currentColor;
}
.solid-select-input[data-is-active=true] {
  caret-color: currentColor;
}
.solid-select-list {
  background-color: inherit;
  border-radius: 0.125rem;
  margin-top: 0.25rem;
  max-height: 50vh;
  width: fit-content;
  overflow-y: auto;
  padding: 0.5rem;
  position: absolute;
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 10px 15px -3px rgb(0 0 0/0.1),
    0 4px 6px -4px rgb(0 0 0/0.1);
  z-index: 1;
  text-wrap: nowrap;
}
.solid-select-option:hover {
  background-color: rgb(229, 231, 235);
}
.solid-select-option[data-focused=true] {
  background-color: rgb(243, 244, 246);
}
.solid-select-option mark {
  background-color: unset;
  color: unset;
  text-decoration-line: underline;
}
.solid-select-option {
  cursor: default;
  padding: 0.5rem 1rem;
  user-select: none;
}
.solid-select-option[data-disabled=true] {
  pointer-events: none;
  color: rgb(156, 163, 175);
}
.solid-select-list-placeholder {
  cursor: default;
  padding: 0.5rem 1rem;
  user-select: none;
}
@media (prefers-color-scheme: dark) {
  .solid-select-container {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .solid-select-control {
    border: 1px solid rgb(21, 21, 21);
  }
  .solid-select-control[data-disabled=true] {
    background-color: rgb(14, 14, 14);
    border-color: rgb(36, 37, 38);
  }
  .solid-select-control:focus-within {
    background-color: rgb(47, 53, 60);
  }
  .solid-select-placeholder {
    color: rgb(65, 68, 73);
  }
  .solid-select-multi-value {
    background-color: rgb(13, 13, 13);
  }
  .solid-select-multi-value-remove:hover {
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.29), 2px 4px 7px rgba(82, 72, 140, 0.35);
  }
  .solid-select-list {
    box-shadow:
      0 0 #fff0,
      0 0 #fff0,
      0 10px 15px -3px rgba(255, 255, 255, 0.1),
      0 4px 6px -4px rgba(255, 255, 255, 0.1);
  }
  .solid-select-option:hover {
    background-color: rgb(21, 21, 21);
  }
  .solid-select-option[data-focused=true] {
    background-color: rgb(18, 18, 18);
  }
  .solid-select-option[data-disabled=true] {
    color: rgb(55, 57, 62);
  }
}

/* style/login.css */
div.login {
  display: flex;
  flex-direction: column;
}
body {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
body > div.login {
  margin: auto;
}

/* style/form.css */
form,
div.form {
  display: grid;
  grid-template-columns: 2;
  margin: auto;
  max-width: 30em;
  > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: subgrid;
    > label {
      grid-column: 1;
      text-align: right;
      padding-right: 1em;
    }
    > input {
      grid-column: 2;
    }
  }
}

/* style/shop.css */
@font-face {
  font-family: "Charm";
  src: url(/style/Charm-Regular-subset.woff2) format("woff2");
  font-display: swap;
}
:root {
  --margin: 2vw;
  --radius: 10px;
  --head-gradient:
    radial-gradient(
      circle,
      rgba(255,237,0,1) 0%,
      rgba(255,173,46,1) 31%,
      rgba(4,45,169,1) 39%,
      rgba(32,179,183,1) 100%);
}
html,
body {
  overscroll-behavior: none;
}
body {
  margin: 0;
  padding: 0;
  background:
    linear-gradient(
      180deg,
      rgb(198, 192, 115) 0%,
      rgb(157, 124, 72) 29%,
      rgb(142, 82, 82) 58%,
      rgb(105, 81, 113) 100%) fixed;
}
[popover] {
  margin: 0;
  background-color: transparent;
  padding: 0;
  border: none;
}
header {
  position: relative;
  background: var(--head-gradient);
  display: flex;
}
header > div.mid {
  padding-top: 1em;
  padding-bottom: 2em;
  flex-grow: 1;
  text-align: center;
}
header div.side {
  width: 0;
}
header div.side > div {
  width: 10em;
  text-align: right;
  margin-left: -12em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
header a {
  text-decoration: none;
  color: inherit;
}
header h1,
header h2 {
  font-family: "Charm", cursive;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
  text-shadow: red 0 0 .5em;
}
header h1 {
  font-size: 30pt;
}
.hsplit {
  display: flex;
  flex-direction: row;
}
#fixed {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 1em;
  background:
    linear-gradient(
      0deg,
      rgb(0, 0, 0) 0%,
      rgb(190, 166, 68) 10%,
      rgb(109, 177, 90) 25%,
      rgb(125, 176, 143) 49%,
      rgb(83, 193, 191) 90%,
      rgb(0, 0, 0) 100%);
  width: calc(100% - 2em);
}
#fixed .login {
  display: flex;
  flex-direction: column;
  align-content: space-around;
  > form {
    display: inline-flex;
    flex-direction: row;
    > div.input {
      margin-right: 1em;
      > label::after {
        content: ": ";
      }
    }
  }
}
#fixed div.icon {
  padding: 0 0.5em;
  border: none;
  border-radius: 0;
  background: none;
}
#fixed > span {
  margin: auto 0;
}
#fixed > div {
  margin: auto 0;
}
#fixed > div.light {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.1em 0.3em;
  border-radius: 0.3em;
}
div.flow {
  display: flex;
  flex-direction: row;
  margin: 0;
}
div.flow > div {
  display: flex;
  flex-direction: column;
  margin-right: var(--margin);
  margin-top: var(--margin);
}
div.flow > div:first-child {
  margin-left: var(--margin);
}
div.flow div.item {
  position: relative;
  margin-bottom: var(--margin);
}
div.item img {
  border-radius: var(--radius);
  width: 100%;
}
div.info {
  padding: 0.5em;
  border-radius: var(--radius);
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: beige;
  opacity: 1;
  transition: opacity 1s;
}
.grid dl {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  margin: auto;
  width: fit-content;
  grid-row-gap: 0.25em;
  grid-column-gap: 1em;
}
.grid dl > dd {
  grid-column: 2;
  margin-left: 0;
}
.grid dl > dt {
  grid-column: 1;
  text-align: right;
}
div.below div.buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
div.below div.buttons > div {
  display: flex;
  flex-direction: row;
}
div.buttons div.tags {
  flex-direction: row;
  display: flex;
}
div.aside p {
  margin-right: 2em;
}
div.aside.right {
  right: 0;
}
div.icon {
  background-color: white;
  width: fit-content;
  border-radius: var(--radius);
  padding: 0.5em;
  border: 2px solid silver;
  width: fit-content;
  color: black;
}
div.icon:hover {
  border-color: gold;
  background-color: gold;
}
div.item > div.icon {
  position: absolute;
  bottom: 0;
  right: 0;
  border: none;
  background-color: rgba(250, 200, 200, 0.5);
  transition: background-color 1s;
}
div.item:hover > div.icon {
  background-color: rgba(250, 200, 200, 1.0);
}
div#fixed {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 2.5em;
}
header > div.icon {
  position: absolute;
  right: 2em;
}
div.icon {
  width: fit-content;
  display: block;
  cursor: pointer;
}
div.icon-button {
  cursor: pointer;
}
div.icon-button {
  width: 2em;
  height: 2em;
}
.icon-button[d-name=add-cart] {
  background: url(/style/icons/add-cart.svg);
  background-size: contain;
}
.icon-button[d-name=in-cart] {
  background: url(/style/icons/in-cart.svg);
  background-size: contain;
}
.icon-button[d-name=del-cart] {
  background: url(/style/icons/del-cart.svg);
  background-size: contain;
}
.icon-button[d-name=share] {
  background: url(/style/icons/share.svg);
  background-size: contain;
}
.cart {
  display: flex;
  flex-direction: row;
}
@keyframes pulse {
  0% {
    color: black;
  }
  50% {
    color: white;
  }
  100% {
    color: black;
  }
}
.highlight.trigger {
  animation: 1s linear 0s 1 normal pulse;
}
.vcenter {
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}
.edit {
  display: none;
}
body.has-edit .edit {
  display: initial;
}
div.button {
  background-color: yellow;
  border-radius: var(--radius);
  padding: 0 1em;
  vertical-align: middle;
  font-size: 126%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid black;
}
div.button > a {
  text-decoration: none;
  color: black;
  font-family: Charm, cursive;
}
@media (prefers-color-scheme: dark) {
  :root {
    --head-gradient:
      radial-gradient(
        circle,
        rgba(150,150,130,1) 0%,
        rgba(100,100,100,1) 31%,
        rgba(30,30,50,1) 39%,
        rgba(0,0,20,1) 100%);
    --background:rgba(0, 0, 20, 0.75);
  }
  body {
    color: white;
    background:
      linear-gradient(
        180deg,
        rgb(100, 120, 150) 0%,
        rgb(102 111 128) 29%,
        rgb(132 103 154) 58%,
        rgb(105, 81, 113) 100%) fixed;
  }
  #fixed {
    background:
      linear-gradient(
        0deg,
        rgb(0, 0, 0) 0%,
        rgb(127 102 0) 10%,
        rgb(21 95 0) 30%,
        rgb(0 95 33) 49%,
        rgb(0 79 103) 80%,
        rgb(0, 0, 0) 100%);
  }
  body > header > h1,
  h2 {
    text-shadow: #c8c987 0 0 .5em;
  }
  div.info {
    background-color: var(--background);
    color: rgb(191 191 228);
  }
  div.tags > div {
    background-color: var(--background);
    color: white;
    border-color: black;
  }
  .icon-button {
    filter: invert(100%);
  }
}
header > aside {
  position: absolute;
  padding: 1em;
  right: 0;
  top: 0;
}
span.spacer {
  width: 2em;
  display: inline-block;
}
@media (pointer: fine) {
  div.info,
  div.item > div.tags {
    opacity: 0.5;
  }
  div.item:hover > div.info {
    opacity: 1;
  }
  div.item:hover > div.tags {
    opacity: 1;
  }
}
#fullscreen > img {
  width: 100%;
  border-radius: 1em;
  margin: 1em;
}
#fixed .solid-select-container {
  width: fit-content;
  height: fit-content;
  margin: auto 0;
}
#fixed .solid-select-list {
  width: fit-content;
}
.solid-select-container div.value {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#cart {
  background-color: beige;
}
#cart > div {
  display: flex;
  flex-direction: row;
  padding: 1em 0;
  background:
    linear-gradient(
      180deg,
      lightblue 0%,
      beige 100%);
}
#cart div.image {
  width: 40vw;
  justify-content: center;
  display: flex;
}
#cart div.image > img {
  max-width: 40vw;
  max-height: 80vh;
}
#cart div.desc {
}
div.icon {
  line-height: 0;
}
div.icon > img {
  width: 2em;
  height: 2em;
}
#fixed div.h {
  display: flex;
  font-size: 10pt;
}
#fixed div.h > div {
  margin: auto;
}
.tags > div > span.tail {
  margin-left: 0.5em;
  width: 1em;
  height: 1em;
  text-align: center;
  border: 1px solid gray;
  border-radius: 0.2em;
  cursor: pointer;
}
.search-fields {
  display: flex;
  flex-wrap: wrap;
  padding: 0.2em 0;
}
.search-fields > div {
  margin: 0 0.2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search-fields .solid-select-container {
  margin: auto;
}
.solid-select-container div.entry {
  display: flex;
  justify-content: space-between;
}
.solid-select-container span.tail {
  margin-left: 0.5em;
}
.solid-select-container.right > .solid-select-list {
  right: 0;
}
.search-fields .above {
  height: 1rem;
  display: block;
}
#fixed .full {
  justify-content: center;
  display: flex;
  margin: auto 0;
}
.search-fields input[type=number] {
  width: 8em;
}
.frame {
  background-color: rgba(255, 255, 255, 0.5);
  max-width: 50em;
  margin: 2em auto;
  padding: 2em;
  border: 2px solid silver;
  border-radius: 1em;
}
.content {
  margin: 2em;
  display: flex;
}
#fixed .login,
#fixed .login > div {
  display: flex;
}
.form div.input {
  margin: 0.5em 0.5em;
}
.frame table {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 1em;
}
.frame thead {
  background-color: beige;
}
.frame tfoot {
  background-color: skyblue;
}
.frame table td,
.frame table th {
  padding: 0.5em;
}
.frame div.frame {
  border: 1px solid white;
  margin: 0.5em;
  display: flex;
  flex-direction: column;
}
.frame div.frame > div.head {
  display: flex;
  background-color: white;
  margin-bottom: 1em;
}
.frame div.frame > div.head > label {
  margin: auto;
}
#fixed .user {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 0.3em 0.8em;
  border-radius: 0.8em;
}
.colorblock {
  width: 1em;
  display: inline-block;
  margin: 0 0.5em;
  border: 1px solid black;
  height: calc(1em - 2px);
  width: calc(1em - 2px);
  vertical-align: text-top;
  border-radius: 0.4em;
}
.zstack {
  display: grid;
  align-items: center;
  justify-items: center;
}
.zstack > * {
  grid-area: 1/1/1/1;
}
.cart-quantity {
  color: black;
  background-color: yellow;
  border-radius: 0.5em;
  padding: 0.1em 0.3em;
  margin-bottom: auto;
  margin-left: auto;
}
.fullscreen img.fullwidth {
  width: calc(100vw - 4em);
  height: auto;
  border-radius: 2em;
}
.fullscreen > *:nth(n+1) {
  margin-top: 0;
}
.fullscreen > * {
  margin: 2em auto;
}
.fullwidth {
  width: calc(100vw - 4em);
  margin: 0 2em;
}
.fullwidth > img {
  width: 100%;
  height: auto;
  border-radius: 2em;
}
div.centered {
  margin: 3em auto;
}
button.large {
  font-size: 166%;
}
button > img.icon {
  height: 1em;
  vertical-align: text-top;
}
#popover {
  margin: auto;
}
#popover::backdrop {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
/*# sourceMappingURL=shop-1a8a828.css.map */
