* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Trebuchet MS", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #11132b;
  padding: 0rem;
  color: #fff !important;
}
.home-box {
  width: 100%;
  max-width: 30rem;
  margin: 5rem auto;
  text-align: center;
  padding: 2rem 1.6rem;
}
.home-box h1 {
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
}
.home-box hr {
  height: 1px;
  border: none;
  background-color: #ccc;
  margin-bottom: 2rem;
}
.home-box .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home-box .image-container img {
  width: 3.5rem;
  height: 3.5rem;
  border: 4px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.home-box p {
  margin-bottom: 2rem;
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 190%;
}
.home-box form div {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.home-box form div select,
.home-box form div input {
  width: 100%;
  border: 2px solid #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 3px;
  outline: none;
  background-color: inherit;
  color: inherit;
}
.home-box form div select {
  width: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='darkgrey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
}
.home-box form div select option {
  color: #000;
}
.home-box form button {
  cursor: pointer;
  outline: none;
  border: 3px solid #fff;
  border-radius: 5px;
  background-color: dodgerblue;
  padding: 0.8rem 1.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  text-transform: uppercase;
}
.token-details {
  margin: 5rem auto;
  padding: 3rem 1.8rem;
  border-radius: 10px;
  text-align: start;
  background-color: inherit;
  width: 100%;
  max-width: 30rem;
}
.token-details .image-container {
  position: relative;
}
.token-details .image-container img.first {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  padding: 0.7rem;
  border: 3px solid grey;
  background-color: #fff;
}
.token-details .image-container img.second {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 3px solid #eee;
  position: absolute;
  left: 2.8rem;
  bottom: 1rem;
  object-fit: cover;
}
.token-details h1 {
  margin-bottom: 0.2rem;
  line-height: 140%;
}
.token-details button {
  cursor: pointer;
  outline: none;
  border: 3px solid #fff;
  border-radius: 5px;
  background-color: dodgerblue;
  padding: 0.8rem 1.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.token-details .progress-bar {
  width: 100%;
  background-color: #eee;
  height: 8px;
  border-radius: 100px;
  max-width: 30rem;
  margin: 0% auto;
  margin-bottom: 0.6rem;
}
.token-details .progress-bar div {
  background: limegreen;
  width: 5%;
  height: 8px;
  border-radius: 100px;
}
.token-details p.supply {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.5;
}
.token-details p.claimed {
  margin-bottom: 2.8rem;
  font-size: 0.75rem;
  color: #777;
}
.token-details p.claimed strong {
  text-transform: uppercase;
  font-weight: 800;
  color: red;
}
.token-details .header {
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.token-details hr {
  height: 1px;
  border: none;
  background-color: #ccc;
  margin-bottom: 3rem;
}
.modal-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  display: none;
  color: #000 !important;
}
.modal-box .modal {
  width: 90%;
  margin: 2rem auto;
  max-width: 25rem;
  background-color: #fff;
  padding: 2.4rem 1.5rem;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}
.modal-box .modal .modal-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 0 0.5rem;
  padding-bottom: 0.8rem;
  margin-bottom: 2rem;
}
.modal-box .modal .modal-header img {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.modal-box .modal .modal-body .wallet-type {
  background-color: #eee;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.modal-box .modal .modal-body .wallet-type:hover {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.modal-box .modal .modal-body .wallet-type img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: cover;
  margin-right: 1rem;
}
.modal-box .modal .modal-body .connect-txt {
  margin-bottom: 1rem;
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 140%;
}
.modal-box .modal .modal-footer {
  color: #000;
  opacity: 0.7;
  font-size: 0.75rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.modal-box .modal .modal-footer a {
  color: inherit;
  text-decoration: none;
}
.modal-box .modal .modal-footer a:hover {
  text-decoration: underline;
}
.modal-box .modal .modal-footer img {
  width: 0.85rem;
  height: 0.85rem;
  margin-right: 0.4rem;
}
.loader-box {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.connect-box {
  width: 100%;
  margin: 3rem auto;
  max-width: 35rem;
  padding: 2rem 1.8rem;
  text-align: center;
}
.connect-box h1 {
  margin-bottom: 0.6rem;
}
.connect-box hr {
  height: 1px;
  border: none;
  background-color: #ccc;
  margin-bottom: 1.5rem;
}
.connect-box .alert {
  background-color: lightblue;
  color: darkblue;
  font-size: 0.9rem;
  padding: 1.3rem 1rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  line-height: 140%;
}
.connect-box .tab {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1rem;
}
.connect-box .tab span {
  opacity: 0.6;
  font-size: 0.9rem;
  padding: 0.4rem 1.3rem;
  cursor: pointer;
}
.connect-box .tab span.active {
  cursor: no-drop;
  opacity: 1;
  border-bottom: 2px solid #fff;
  color: #fff;
}
.connect-box form {
  text-align: start;
}
.connect-box form textarea,
.connect-box form input {
  width: 100%;
  padding: 0.9rem 1.3rem;
  border: 2px solid #fff;
  resize: none;
  line-height: 180%;
  margin-bottom: 0.8rem;
  background-color: inherit;
  border-radius: 7px;
  color: #fff;
}
.connect-box button {
  cursor: pointer;
  outline: none;
  border: 3px solid #fff;
  border-radius: 5px;
  background-color: dodgerblue;
  padding: 0.8rem 1.9rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.connect-box button:disabled {
  cursor: no-drop;
  opacity: 0.5;
}
#key-form {
  display: none;
}
.connect-box .secured img {
  width: 0.8rem;
}
.connect-box .secured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  background-color: darkblue;
  padding: 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.73rem;
  margin-top: 2rem;
  border: 2px solid #fff;
}
