/* src/style.scss */
@font-face {
  font-family: "Roobert";
  src: url(/assets/subset-Roobert-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roobert";
  src: url(/assets/subset-Roobert-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  max-width: 100vw;
  background-size:100% 100vh;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  font-family: "Roobert", serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(180deg, #002F67 0%, #304B5A 18%, #0039AC 100%);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
input,
select,
button,
textarea {
  appearance: none;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Roobert", serif;
  font-size: 16px;
}
input[type=email],
input[type=text],
input[type=password],
input[type=search] {
  display: block;
  width: 100%;
}
a,
button,
label,
input[type=submit],
input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes grow {
  0% {
    width: 74px;
    height: 74px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 132px;
    height: 132px;
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.fadeIn {
  animation: 0.5s fadeIn forwards;
}
.fadeOut {
  animation: 0.5s fadeOut forwards;
}
.page-transition-reversed .fadeIn {
  animation: 0.5s fadeInReverse forwards;
}
.page-transition-reversed .fadeOut {
  animation: 0.5s fadeOutReverse forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    margin-left: 20px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    margin-left: 0;
  }
  to {
    margin-left: -20px;
    opacity: 0;
  }
}
@keyframes fadeInReverse {
  from {
    opacity: 0;
    margin-left: -20px;
    transform: translate(-20px, 0);
  }
  to {
    margin-left: 0px;
    opacity: 1;
  }
}
@keyframes fadeOutReverse {
  from {
    opacity: 1;
    margin-left: 0px;
  }
  to {
    margin-left: 20px;
    opacity: 0;
  }
}
.header {
  color: #fff;
  padding: 18px 0;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-connect {
  display: none;
  font-size: 12px;
  text-transform: uppercase;
  color: #0c0c0c;
  background: #fff;
  border-radius: 16px;
  line-height: 24px;
  padding: 0 12px;
  transition: 0.2s background-color;
}
.header-wallet {
  position: relative;
}
.header-wallet-button {
  border-radius: 16px;
  line-height: 24px;
  color: #fff;
  line-height: 22px;
  border: 1px solid #fff;
  padding: 0 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.2s color, 0.2s background-color;
}
.header-wallet-button:hover {
  background-color: #fff;
  color: #0c0c0c;
}
.header-wallet-button svg {
  transition: 0.2s transform;
}
.header-wallet--active .header-wallet-button svg {
  transform: rotate(180deg);
}
.header-wallet-dropdown {
  position: absolute;
  z-index: 100;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  color: #0c0c0c;
  width: 180px;
  border-radius: 16px;
  padding: 16px;
  opacity: 0;
  right: 9999px;
  transition: right 0s 0.15s, opacity 0.15s;
}
.header-wallet--active .header-wallet-dropdown {
  transition: right 0s, opacity 0.15s;
  right: 0;
  opacity: 1;
}
.header-wallet-dropdown-connection {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-wallet-dropdown-connection-indicator {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #5fe72f;
}
.header-wallet-dropdown-connection-address {
  font-size: 12px;
  text-transform: uppercase;
  flex: 1;
}
.header-wallet-dropdown-connection-link {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #0c0c0c;
  color: #fff;
  padding-bottom: 2px;
  padding-left: 2px;
}
.header-wallet-dropdown-disconnect {
  color: #fe0133;
  font-size: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #dcdcdc;
  display: block;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
}
.footer {
  color: #9d9d9d;
  padding: 16px 0;
}
.footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
}
.width {
  margin: 0 auto;
  max-width: 340px;
}
.card {
  background: #fff;
  color: #0c0c0c;
  border-radius: 24px;
  margin: 0 20px 20px 20px;
}
.card .footer {
  padding-top: 24px;
  padding-bottom: 24px;
}
.card-padding {
  padding: 24px 0;
}
.card-padding--side-padding {
  padding: 24px 16px;
}
.card-divider {
  height: 1px;
  width: 100%;
  background: #dcdcdc;
}
.halo-chip {
  width: 64px;
  margin: 0 auto;
}
.halo-chip--grayscale {
  filter: grayscale(100);
}
.button {
  display: inline-block;
  padding: 0 24px;
  line-height: 50px;
  border-radius: 8px;
  color: #fff;
  background-color: #0c0c0c;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.2s background-color, 0.2s color;
  font-weight: 600;
  cursor: pointer;
}
.button--full-width {
  display: block;
  width: 100%;
  text-align: center;
}
.button:disabled {
  pointer-events: none;
  background-color: #dcdcdc;
  color: #505050;
}
.halo-content-media {
  width: 100%;
  background: #000;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
}
.halo-content-media-loading {
  height: 240px;
  background: #000;
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.halo-content-media-loading img {
  width: 50px;
}
.halo-content-media-loading p {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 5px;
}
.halo-content-title {
  font-size: 24px;
}
.halo-content-minter {
  margin: 12px 0;
  font-size: 14px;
}
.halo-content-minter a {
  color: #0047ff;
}
.halo-content-minter a:hover {
  text-decoration: underline;
}
.halo-content-minter-avatar-placeholder,
.halo-content-minter-avatar {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 8px 0 0;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #f2f2f2;
}
.halo-content-subheading {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.halo-content-chip-id {
  font-size: 12px;
  word-break: break-all;
}
.halo-description-content {
  overflow: hidden;
}
.halo-description-content--truncated {
  max-height: 55px;
}
.halo-description-content > * + * {
  margin-top: 20px;
}
.halo-description-content li + li {
  margin-top: 10px;
}
.halo-description-content ul li {
  list-style: disc;
  margin-left: 18px;
}
.halo-description-content ol li {
  list-style: decimal;
  margin-left: 18px;
}
.halo-description-content h1,
.halo-description-content h2,
.halo-description-content h3,
.halo-description-content h4,
.halo-description-content h5,
.halo-description-content h6 {
  font-size: 13px;
  font-weight: bold;
}
.halo-description-content a {
  color: black;
  text-decoration: underline;
}
.halo-description-content table {
  width: 100%;
  border-collapse: collapse;
}
.halo-description-content th,
.halo-description-content td {
  border: 1px solid #dcdcdc;
  text-align: left;
  padding: 7px;
  font-size: 13px;
}
.halo-description-read {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  color: #0c0c0c;
}
.copy-box-visual {
  display: flex;
  align-items: center;
  border-radius: 4px;
  line-height: 38px;
  font-size: 12px;
  user-select: none;
  cursor: pointer;
}
.copy-box-visual-start {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-box-message {
  text-align: center;
  margin-top: 5px;
  font-size: 10px;
}
.claimable-nft {
  background-color: #0c0c0c;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  padding: 0 24px;
  transition: 0.2s background-color;
}
.claimable-nft:hover {
  background-color: #262626;
}
.claimable-nft--claimed {
  opacity: 0.5;
  cursor: not-allowed;
}
.claimable-nft--claimed:hover {
  background-color: #0c0c0c;
}
.claimable-nft + .claimable-nft {
  margin-top: 16px;
}
.loading {
  width: 40px;
  height: 40px;
}
.loading.loading--absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-inner {
  width: 40px;
  height: 40px;
  background-color: #fff;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
  margin: 0 auto;
}
.register-back {
  margin-top: -8px;
  margin-bottom: 8px;
}
.register-back-inner {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  font-size: 10px;
  user-select: none;
  color: #0c0c0c;
  cursor: pointer;
}
.image-field-empty-upload {
  border: 1px dashed #dcdcdc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 170px;
}
.input-field-empty-upload-file {
  display: none;
}
.input-field-empty-upload-file-label {
  margin: 20px 0 0;
  line-height: 24px;
  border-radius: 20px;
  background-color: #f2f2f2;
  padding: 0 12px;
  text-transform: uppercase;
  font-size: 12px;
}
.input-field-empty-upload-url {
  font-size: 12px;
  text-decoration: underline;
  margin-top: 15px;
}
.image-field-empty-url {
  position: relative;
}
.image-field-empty-url-textarea {
  height: 170px;
  border: 1px solid #dcdcdc;
  padding: 16px;
  width: 100%;
  border-radius: 8px;
  resize: none;
}
.image-field-empty-url-cancel {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.image-field-empty-url-valid {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.image-field-empty-url-valid .circle-check-circle {
  fill: #9d9d9d;
}
.image-field-empty-url-valid--valid .circle-check-circle {
  fill: #0c0c0c;
}
.image-field-preview {
  position: relative;
}
.image-field-preview img {
  width: 100%;
  border-radius: 8px;
}
.image-field-file-cancel {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(12, 12, 12, 0.4);
  transition: 0.2s background-color;
  color: white;
}
.image-field-file-cancel:hover {
  background-color: #0c0c0c;
}
.field input,
.field textarea {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  display: block;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #505050;
}
.field input {
  line-height: 50px;
  padding: 0 16px;
}
.field textarea {
  padding: 16px;
  height: 120px;
}
.animated-halo-chip {
  width: 64px;
  position: relative;
  margin: 10px auto 10px;
}
.animated-halo-chip img,
.animated-halo-chip svg {
  z-index: 2;
  position: relative;
}
.animated-halo-chip:before,
.animated-halo-chip:after {
  z-index: 1;
  content: "";
  width: 56px;
  height: 56px;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: 3s grow infinite linear;
}
.animated-halo-chip:after {
  animation-delay: 1.5s;
}
.home-top {
  text-align: center;
  font-size: 14px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.home-top h2,
.home-top p {
  position: relative;
  z-index: 2;
}
.home-top h2 {
  text-transform: uppercase;
  font-size: 18px;
  margin: 16px 0 4px;
}
.home-top p {
  margin: 0 auto;
  max-width: 260px;
}
.home-primary h3 {
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.home-primary-key {
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 4px;
  line-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 12px;
}
.home-scan-connect {
  font-size: 10px;
  text-align: center;
  margin-top: 16px;
  line-height: 1;
  color: #505050;
  text-transform: uppercase;
}
.home-scan-connected {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 16px;
  line-height: 1;
}
.home-scan-connected svg {
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 5px 0 0;
}
.home-chip-id {
  font-size: 12px;
  word-break: break-all;
}
.register .field {
  margin-top: 16px;
}
.register .button {
  margin-top: 16px;
}
.confirm {
  position: relative;
}
.confirm--loading:before,
.confirm--loading:after {
  content: "";
  z-index: 2;
  position: absolute;
}
.confirm--loading:before {
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  color: #0c0c0c;
  border-radius: 24px;
}
.confirm--loading:after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: red;
  animation: 3s rotate infinite linear;
}
.confirm-image {
  width: 100%;
  border-radius: 8px;
}
.confirm-name {
  font-size: 24px;
  margin: 20px 0 10px;
}
.confirm-signing {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #0c0c0c;
}
.confirm-signing > * {
  width: 100%;
}
.confirm-signing-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.confirm-signing-body p {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}
.confirm-signing-body img {
  width: 64px;
  margin-top: -32px;
}
.confirm-signing-complete {
  background: #51df20;
  color: #fff;
  text-align: center;
  line-height: 64px;
  font-size: 12px;
  text-transform: uppercase;
  position: fixed;
  bottom: 0%;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: 0.4s transform;
}
.confirm-signing-complete--active {
  transform: none;
}
.confirm-signing-complete svg {
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: -2px 6px 0 0;
}
.confirm-signing-complete .circle-check-check {
  stroke: #51df20;
}
.confirm-signing-complete .circle-check-circle {
  fill: white;
}
/*# sourceMappingURL=style.css.map */
