@import url("css2.css");
@import url("css2-1.css");

body {
  padding: 0px 0px !important;
  margin: 0px !important;
  background: linear-gradient(to right, #112125, #030606) !important;
  font-family: Archivo !important;
  font-size: 14px !important;
  overflow-x: hidden !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px !important;
  padding: 0px !important;
}
.row {
  --bs-gutter-x: 1rem !important;
  --bs-gutter-y: 0;
}
button {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #50f2a5;
  border-radius: 8px !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #50f2a5;
  display: inline-flex;
  color: #0b1619;
  font-size: 16px !important;
  font-family: Archivo;
  font-weight: 500;
}

.btn-outline {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(12, 37, 49, 0.6);
  border-radius: 8px;
  border: 1px rgba(255, 255, 255, 0.1) solid;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  color: white;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 600;
}

.top-bar {
  border-bottom: 1px #132b34 solid;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats {
  padding: 15px 20px;
  background: linear-gradient(
    182deg,
    rgba(36, 214, 248, 0.05) 0%,
    rgba(80, 242, 165, 0.05) 100%
  );
  border-radius: 8px;
  border: 1px #1c4250 solid;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.5s all ease-in-out;
  height: 15.9vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats:hover {
  box-shadow: 0 4px 2px -2px #50f2a5;
}

.stats svg {
  width: 45px !important;
}

.stats p {
  color: #6a9eb2;
  font-size: 20px;
  font-family: Archivo;
  font-weight: 500;
}

.stats h1 {
  color: #dafdff;
  font-size: 25px;
  font-family: Archivo;
  font-weight: 800;
}

.stats-main {
  height: 87vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nodes-table {
  width: 100%;
}

.nodes-table thead {
  background: linear-gradient(to right, #112125, #030606) !important;
}

.nodes-table th {
  padding: 20px;
  color: #6a9eb2;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 500;
  text-align: center;
}

.nodes-table td {
  padding: 20px;
  color: #dafdff;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  text-align: center;
}

.table-container {
  height: 85vh;
  overflow: auto;
  border: 1px #1c4250 solid;
  border-radius: 16px;
}

.modal-content {
  background: #13272e !important;
}

.input-cus input {
  border-radius: 8px;
  border: none;
  outline: none;
  color: white;
  font-size: 25px;
  background: #0e2026;
}

.input-cus::placeholder {
  color: white !important;
}

.modal-header {
  border-bottom: none !important;
}

.modal-footer {
  border-top: none !important;
}

.modal-title {
  color: #dafdff !important;
  font-size: 24px;
  font-family: Archivo;
  font-weight: 800;
  line-height: 26px;
  border-bottom: none;
}

.light-card {
  padding: 16px;
  background: #1c4250;
  border-radius: 16px;
}

.input-cus {
  padding: 10px;
  background: #0e2026;
  border-radius: 8px;
  border: 1px #1c4250 solid;
  outline: none;
  color: white;
  font-size: 25px;
  width: 100%;
}

.light-card p {
  color: #b9dcea;
  font-size: 14px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 26px;
}

.input-cus:focus-visible {
  color: white;
  font-size: 25px;
  font-family: Archivo;
  font-weight: 500;
}

/* range 2 */
.range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  height: 6px;
  background: #b9dcea;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 15px;
  width: 15px;
  background-color: #50f2a5;
  border-radius: 50%;
  border: none;
  transition: 0.2s ease-in-out;
}

.range-input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #50f2a5;
  border-radius: 50%;
  border: none;
  transition: 0.2s ease-in-out;
}

.range-input::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 10px rgba(80, 242, 165, 0.1);
}

.range-input:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(80, 242, 165, 0.2);
}

.range-input:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(80, 242, 165, 0.2);
}

.range-input::-moz-range-thumb:hover {
  box-shadow: 0 0 0 10px rgba(80, 242, 165, 0.1);
}

.range-input:active::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(80, 242, 165, 0.2);
}

.range-input:focus::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(80, 242, 165, 0.2);
}

.value2,
.value4 {
  font-size: 26px;
  width: 50px;
  text-align: center;
}

.value3 {
  color: #6a9eb2;
  font-size: 14px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 20.02px;
  letter-spacing: 0.17px;
}

.aa {
  text-align: center;
  color: #50f2a5;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  text-decoration: underline;
  letter-spacing: 0.64px;
}

.nodes-table button {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  background: linear-gradient(
    90deg,
    rgba(80, 242, 165, 0.2) 0%,
    rgba(46.28, 140, 95.45, 0) 100%
  );
  border-radius: 8px;
  border: 1px #50f2a5 solid;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  color: #50f2a5;
  font-size: 14px;
  font-family: Archivo;
  font-weight: 500;
  min-width: 135px !important;
}

.nodes-table .btn-outline {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 8px;
  border: 1px #234b59 solid;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  color: white;
  font-size: 14px;
  font-family: Archivo;
  font-weight: 400;
  min-width: 135px !important;
  margin-left: 10px;
}

.modal-dialog {
  max-width: 550px !important;
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("") !important;
}

.after p {
  color: #b9dcea;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 26px;
}

.staked h1 {
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: Archivo;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 43px;
}

.staked p {
  text-align: center;
  color: #b9dcea;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 26px;
}

.main-card {
  padding: 24px;
  background: linear-gradient(
    182deg,
    rgba(36, 214, 248, 0.05) 0%,
    rgba(80, 242, 165, 0.05) 100%
  );
  border-radius: 8px;
  border: 1px #1c4250 solid;
}

.main-card h1 {
  color: #dafdff;
  font-size: 24px;
  font-family: Archivo;
  font-weight: 600;
}

.main-card p {
  color: #6a9eb2;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 500;
}

.main-card h6 {
  color: #dafdff;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
}

/* .main-card .bg-btn {
    padding-top: 12px;
    padding-bottom: 13px;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 8px;
    border: 1px #50F2A5 solid;

    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    color: #50F2A5;
    font-size: 16px;
    font-family: Archivo;
    font-weight: 500;
} */

.main-card .bg-btn {
  padding: 13px 16px;
  border-radius: 8px;
  border: none; /* Remove the solid border */

  justify-content: center;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  color: #50f2a5; /* Text color */
  font-size: 16px;
  font-family: Archivo;
  font-weight: 500;
  background: transparent; /* Transparent background */
  position: relative; /* Position relative to enable pseudo-element positioning */
  z-index: 1; /* Ensure button content is above the border */
  text-decoration: none; /* Remove underline if it's a link */
  width: 50%;
  margin-right: 10px;
}

/* Pseudo-element for gradient border */
.main-card .bg-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #50f2a5, #234b59); /* Gradient colors */
  border-radius: inherit; /* Inherit border-radius from the button */
  z-index: -1; /* Place behind the button content */
  padding: 2px; /* Space for the border */
  box-sizing: border-box; /* Include padding in the element's size */
}

.main-card .bg-btn::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #0e2324;
  border-radius: inherit;
  z-index: -1;
}

.main-card .bg-outlines {
  padding-top: 12px;
  padding-bottom: 13px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  border: 1px #234b59 solid !important;
  justify-content: center;
  align-items: center;
  background-color: transparent !important;
  gap: 8px;
  display: inline-flex;
  color: white;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  width: 45% !important;
}
.empty {
  width: 50% !important;
  margin: auto;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.empty button {
  width: fit-content !important;
  padding: 10px 40px;
}
.empty h2 {
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: Archivo;
  font-weight: 500;
}
.empty p {
  text-align: center;
  color: #6a9eb2;
  font-size: 14px;
  font-family: Archivo;
  font-weight: 400;
}
.empty a {
  color: white;
  font-size: 14px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}
.wallet h2 {
  text-align: center;
  color: #dafdff;
  font-size: 32px;
  font-family: Archivo;
  font-weight: 600;
}
.wallet p {
  color: #6a9eb2;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  text-align: center;
}
.wallet h2 {
  text-align: center;
  color: #dafdff;
  font-size: 32px;
  font-family: Archivo;
  font-weight: 600;
}
.wallet p {
  color: #6a9eb2;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  text-align: center;
}
.card-custom {
  padding: 24px;
  background: linear-gradient(
    182deg,
    rgba(36, 214, 248, 0.05) 0%,
    rgba(80, 242, 165, 0.05) 100%
  );
  border-radius: 8px;
  overflow: hidden;
  border: 1px #1c4250 solid;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.wallet{
    height: 100vh;
    background-image: url("splashbg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.inner-wallet{
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100%;
}
.wallets .card-custom {
  width: 200px;
}
.wallet {
  text-align: center;
}
.wallet .w-25{
    width: 35% !important;
}
button:disabled ,button[disabled] {
  pointer-events: none !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
.wallet .help {
  color: #b9dcea;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  word-wrap: break-word;
  text-align: center !important;
}
.wallet a {
  color: #50f2a5 !important;
  font-size: 16px !important;
  font-family: Archivo !important;
  font-weight: 400 !important;
  word-wrap: break-word;
  text-decoration: none;
}

.wallet h1 {
  color: #50f2a5;
  font-size: 18px;
  font-family: Archivo;
  font-weight: 400;
}
.wallet input {
  border: none;
  background-color: transparent !important;
  color: #dafdff;
  font-size: 40px;
  font-family: Archivo;
  font-weight: 600;
  width: 18%;
}
.wallet input:focus-visible {
  outline: none !important;
  border: none !important;
}
.wallet input::placeholder {
  color: #dafdff;
  font-size: 40px;
  font-family: Archivo;
  font-weight: 600;
}
.splash {
  height: 100vh;
  background-image: url("") !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #0e2026 !important;
}
.inner-splash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.drop-pop {
  background: linear-gradient(182deg, rgba(36, 214, 248, 0.05) 0%, rgba(80, 242, 165, 0.05) 100%);
  border-radius: 8px;
  border: 1px #1c4250 solid;
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(27.4px);
  position: absolute;
  top: 63px;
  right: 5px;
  border-radius: 8px !important;

  z-index: 1000;
  width: 300px;
  padding: 20px;
}
.drop-pop h1 {
  color: #dafdff;
  font-size: 24px;
  font-family: Archivo;
  font-weight: 500;
  line-height: 26px;
}
.drop-pop p {
  color: white;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 26px;
}
.drop-pop h2 {
  color: #b9dcea;
  font-size: 16px;
  font-family: Archivo;
  font-weight: 400;
  line-height: 26px;
}
.heading-s{
  color: white !important;
  font-size: 18px !important;
  font-family: Archivo;
  font-weight: 400;
  line-height: 26px;
  display: none;
}
.unstake{
  background-color: #16333E;
  padding: 3px 7px;
  border-radius: 36px;
  color: #6A9EB2; font-size: 14px; font-family: Archivo; font-weight: 400; word-wrap: break-word
}
.main-dashboard {
  position: relative;
}

.dashboard-content {
  display: flex;
  height: calc(100vh - 64px); 
  overflow: hidden !important;

}

.stats-column {
  position: sticky;
  top: 0; 
  height: calc(100vh - 64px); 

  overflow: hidden; 
}

.claim-container {
  height: calc(100vh - 64px); 
  overflow-y: auto; 
  padding-left: 20px; 
}
::-webkit-scrollbar {
  width: 5px; 
}

::-webkit-scrollbar-track {
  background-color: #0a181d; 
}

::-webkit-scrollbar-thumb {
  background-color: #16333E; 

  border-radius: 5px; 
}
@media only screen and (max-width: 1446px) and (min-width: 1200px) {
  .main-card .bg-btn {
    font-size: 12px !important;
    padding: 13px 14px;
  }
  .main-card .bg-outlines {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 1197px) {
  .nodes-table .btn-outline {
    margin-left: 0 !important;
    margin-top: 5px;
  }
}

  .mobile {
    display: none;
  }
  .menu {
    display: none;
  }
@media only screen and (max-width: 992px) {
  .main-dashboard {
    position: relative;
  }
  
  .dashboard-content {
    height: auto !important;
  
  }
  
  .stats-column {
    height: auto !important;
  }
  
  .claim-container {
    height: auto !important;
  }
  .heading-s{
    display: block;
  }
  .empty {
    margin-top: 40px;
  }
  .stats-main {
    height: auto !important;
    display: block !important;
  }

  .stats {
    height: 120px !important;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .menu {
    display: block;
  }
}
@media only screen and (max-width:767px){
  .wallet .w-25 {
    width: 80% !important;
  }

}
@media only screen and (max-width: 600px) {

  .main-card p {

    font-size: 13px;

}
.main-card h6 {
  font-size: 13px;

}
.unstake {
  font-size: 12px;

}
  .stats h1 {
    color: #dafdff;
    font-size: 18px;
    font-family: Archivo;
    font-weight: 800;
}
  .empty {
    width: 100% !important;
    margin-top: 40px;
    
  }
  .empty button{
    width: 100% !important;
  }
  button {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px !important;
  }

  .top-bar img {
    width: 100px !important;
  }

  .nodes-table td {
    padding: 15px;
  }
  .stats p {
    font-size: 13px;
  }
  .inner-wallet{
    padding: 20px;
  }
  .inner-wallet .card-custom {
    padding: 15px;
  }
  .inner-wallet{
    min-height: auto !important;
    height: 100%;
  }
  .wallets .card-custom {
    width: 170px;
}
}
@media only screen and (max-width:450px){
  .input-cus input {
    width: 80%;
  }
}
@media only screen and (max-width:374px) {
  .drop-pop {
    top: 63px;
    right: -6px;
    width: 273px;
}
}