body {
  margin: 0;
  box-sizing: border-box;
}

@keyframes nft3-loading-circle {
  to {
    transform: rotate(1turn);
  }
}
.nft3-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  outline: none;
  border: none;
  color: #fff;
  background: #306FFF;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}
.nft3-button:hover:not(:disabled) {
  background: #3C7EFF;
}
.nft3-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.nft3-loading {
  margin-right: 10px;
  animation: nft3-loading-circle 1s linear infinite;
}

.nft3-modal {
  --text-color: #000;
  --modal-bg: #fff;
  --item-bg: rgb(237, 238, 242);
  --item-boder-color: rgb(206, 208, 217);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-size: 16px;
  color: var(--text-color);
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.nft3-modal * {
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" on, "ss02" on, "cv01" on, "cv03" on;
}

.nft3-modal__dark {
  --text-color: #fff;
  --modal-bg: rgb(25, 27, 31);
  --item-bg: rgb(44, 47, 54);
  --item-boder-color: rgb(64, 68, 79);
}

.nft3-modal__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease-in-out;
}

.nft3-modal__body {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--modal-bg);
  border-radius: 20px;
  padding: 16px 25px 25px 25px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.nft3-modal__visible {
  visibility: visible;
}
.nft3-modal__visible .nft3-modal__mask {
  background-color: rgba(0, 0, 0, 0.3);
}
.nft3-modal__visible .nft3-modal__body {
  opacity: 1;
}

.nft3-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}

.nft3-modal__title {
  font-weight: 500;
  font-size: 18px;
}

.nft3-modal__close {
  cursor: pointer;
  transition: opacity 0.1s linear;
}
.nft3-modal__close:hover {
  opacity: 0.6;
}

.nft3-register {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.nft3-register__form {
  display: flex;
  height: 40px;
  border: 1px solid var(--item-boder-color);
  border-radius: 20px;
  overflow: hidden;
}

.nft3-register__input {
  outline: none;
  background: none;
  border: none;
  padding: 0 15px;
  flex: 1;
  overflow: hidden;
  color: var(--text-color);
}

.nft3-register__after {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nft3-wallet__list {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
}

.nft3-wallet__item {
  border-radius: 12px;
  background: var(--item-bg);
  padding: 12px 16px;
  border: 1px solid var(--item-boder-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  cursor: pointer;
}
.nft3-wallet__item:hover {
  border-color: #1479fd;
}

.nft3-wallet__icon {
  width: 30px;
  height: 30px;
}