:root {
  --nav-height: 20px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  color: #fff;
  background-color: #000;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

div.wrapper {
  width: 100%;
  height: 100%;
}
div.container {
  position: relative;
  width: 100%;
  height: calc(100% - var(--nav-height));
  overflow: auto;
}

@media (orientation: landscape) {
  div#flip {
    position: absolute;
    width: calc(100vh - var(--nav-height));
    transform: translate(0, calc(100vh - var(--nav-height))) rotate(270deg);
    transform-origin: top left;
  }
}

div#nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--nav-height);
  color: #000;
  background-color: #fff;
}
div#nav svg {
  width: 12px;
  margin-right: 2px;
}
div#nav a {
  color: inherit;
  text-decoration: none;
}
div.title {
  font-weight: 600;
}

div#minting {
  margin: 40px;
}
.row {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #fff;
}
.row:first-child {
  border-top: 1px solid #fff;
}
.column-overflow {
  max-width: 75%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
div#message {
  display: none;
  justify-content: space-between;
  color: #fff;
  background-color: #000;
}
div#minting a {
  color: #fff;
}
.btn {
  padding: 2px 4px;
  border: 1px solid #fff;
  cursor: pointer;
}
.btn-disabled {
  text-decoration: line-through;
  cursor: not-allowed;
}
#completed {
  width: 12px;
  height: 12px;
  background-color: #c00;
  border-radius: 6px;
}
#meta-mask, #wrong-network, #btn-connect, #btn-tx, #completed {
  display: none;
}

