/* #open-modal-btn {
  margin: 50px auto;
  display: block;
  background-color: rgb(2 59 255);
  color: #fff;
} */

.icons {
  height: 125px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.airdrop-modal {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
  height: 90%;
  max-height: 200px;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 350px;
  padding: 10px;
  text-align: center;
  height: 90%;
  max-height: 700px;
}

.modal-content h2 {
  margin-bottom: 20px;
}
.modal-content button {
  margin: 50px;
}

@media (max-width: 480px) {
  .modal-content {
    max-height: 500px;
  }
}

.modal-content2 {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  height: 90%;
  max-height: 450px;
}

.modal-content2 h2 {
  font-size: 17px;
  margin: 20px;
}

.modal-content3 {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  height: 90%;
  max-height: 450px;
}

.modal-content3 h2 {
  font-size: 17px;
}

.modal-content4 {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  height: 90%;
  max-height: 350px;
}

.modal-content4 h2 {
  font-size: 17px;
}

.modal-content5 {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 350px;
  padding-bottom: 50px;
  text-align: center;
  height: 90%;
  max-height: 500px;
}

.modal-content5 h2 {
  font-size: 17px;
  margin: 20px;
}

.modal-content5 p {
  font-size: 12px;
}

.modal-content5 .action-btn {
  width: 230px;
}


.hidden {
  display: none;
}

.action-btn {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  color: #fff;
  background-color: rgb(2 59 255);
  border: none;
}

.action-btn:hover {
  border-style: solid;
  border-width: 3px;
  border-color: #5ab2ff;
}

.action-btn.secondary {
  background-color: #6c757d;
}

.terms {
  margin-top: 15px;
  font-size: 12px;
  color: #6c757d;
}

.terms a {
  color: rgb(2 59 255);
  text-decoration: none;
}

.search-input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-btn {
  padding: 10px 15px;
  border: 1px solid rgb(2 59 255);
  border-radius: 5px;
  background-color: #fff;
  color: rgb(2 59 255);
}

#wallet-list {
  max-height: 200px; /* Adjust height as needed */
  overflow-y: auto;
}

#wallet-list button {
  display: flex;
  width: 95%;
  padding: 15px;
  margin: 10px 0;
  text-align: left;
  background-color: rgba(0, 0, 0, .08);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* #wallet-list button:hover {
  background-color: #eaeaea;
} */


.error-message {
  color: #d9534f;
  margin: 20px 0;
  font-size: 15px;
}

.error-message2 {
  color: #d9534f;
  margin: 1px 0;
  font-size: 10px;
}

.security-message {
  font-size: 12px;
  color: #6c757d;
  margin-top: 10px;
}


.secret-phrase-input {
  width: 80%;
  height: 150px;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;

}

.secret-phrase-input:focus {
  outline: none;
  border-color: rgb(2 59 255);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}



/* Loading Modal */
.loading-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.9);
  z-index: 9999; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Bar Chart Animation */
.bar-chart {
  display: flex;
  justify-content: space-between;
  width: 60px;
  height: 40px;
}

.bar {
  width: 8px;
  height: 100%;
  background-color: rgb(2 59 255);
  animation: bounce 1s infinite ease-in-out;
}

.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.1s; }
.bar3 { animation-delay: 0.2s; }
.bar4 { animation-delay: 0.3s; }
.bar5 { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(2); }
}

.terms-load {
  margin-top: 300px;
  font-size: 12px;
  color: #6c757d;
}
