@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

.onest {
  font-family: 'Onest', serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.inter {
  font-family: 'Inter', serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Crypto Copy Trading Pages */

.main_heading_crypto {
  font-family: 'Onest', serif;
  font-weight: 800;
  font-size: 64px;
  color: white;
  text-transform: uppercase;
  margin-top: 86px;
}

.main_para_crypto {
  font-family: 'Inter', serif;
  font-size: 16px;
  color: white;
  font-weight: 400;
  margin-bottom: 89px;
}

.crypto_nav_btns {
  gap: 4px;
}

.crypto_nav_btn {
  color: #7c7c7c;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 14px;
  min-width: 88px;
  border-radius: 0;
}

.crypto_nav_btn:hover {
  transition: 0.3s all ease-in-out;
  border-radius: 0;
  color: white;
}

.crypto_nav_btn.active {
  background-color: #1d1d1d;
  color: white;
  padding: 14px 0;
  border-radius: 4px;
  border: none;
}

.crypto_nav_btn.active:hover {
  transition: 0.3s all ease-in-out;
  background-color: #3d3d3d;
  border: none;
}

#trader-cards {
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

.copy_trader_card {
  width: 392px !important;
  height: 275px !important;
  padding: 35px 26px;
  background-color: #0b0b0b;
  border-radius: 10px;
  border: 1px solid transparent;
}

.copy_trader_card .copy_trader_img {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background-color: white;
}

.copy_trader_card .trader_name {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 16px;
}

.copy_trader_card .trader_lvl {
  font-size: 12px;
  font-family: 'Inter';
  font-weight: 600;
  background-color: #bcff2f;
  border-radius: 4px;
  padding: 6px 7px;
  color: black;
}

.copy_trader_card .trader_trade {
  background-color: #142118;
  padding: 7px 9px;
  font-family: 'Inter';
  font-size: 12px;
  font-weight: 400;
  color: #25a750;
  border-radius: 4px;
}

.copy_trader_card .lead_trader_ {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #7c7c7c;
}

.copy_trader_card .trader_percentage {
  font-family: 'Onest';
  font-weight: 800;
  font-size: 26px;
  color: #25a750;
}

.copy_trader_card .trader_revenue {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 12px;
  line-height: 11.16px;
  letter-spacing: -3%;
}

.font--sm {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 12px;
}

.text--secondary {
  color: #7c7c7c;
}


.copy_trader_card:hover {
  cursor: pointer;
  border: 1px solid white;
  transition: .3s all ease-in-out;
}