.accountCard{
    display: flex;
    gap: 24px;
    padding-bottom:24px;
    align-items: center;
    justify-content: center;
  }
  .accountDetail{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 0 1 252px;
    border-radius: 6px;
    border: 1px solid #ff9d00;
    background: #FFF;
    padding: 16px 0px;
    height: 68px;
    font-size: 24px;
    transition: color 0.3s, background 0.3s;
  }
  .accountDetail:hover{
    color: #FFF;
    background: #ff9d00;
  }
  .accountDetail:hover a {
    color: #FFF;
  }
  .accountDetail svg {
    fill:#ff9d00;
  }
  .accountDetail:hover svg {
    fill:#FFF;
    opacity: 0.6;
  }
  @media all and (max-width: 1024px) {
    .accountCard {
      flex-wrap:wrap;
      justify-content: center
    }
  }
  @media all and (max-width: 980px) {
    .accountCard {
      flex-wrap:wrap;
      justify-content: center
    }
  }