.wallet-card{
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
.wallet-card .top .info{
  display: flex;
}
.wallet-card .top .info>img{
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.wallet-card .top .button.link{
 text-decoration: none;
 display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  margin-top: 20px;
  color: #D11A46;
}
.wallet-card .top .info .title{
  margin-top: 0;
  margin-bottom: 8px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
}
.wallet-card .top .info .description{
  margin-top: 0;
  margin-bottom: 0px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
}
.wallet-card .see-all{
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #D11A46;
  cursor: pointer;
}
.wallet-card .see-all .icon-open, .wallet-card .see-all .icon-close{
  display: none;
  margin-left: 20px;
}
.wallet-card .see-all:not(.active) .icon-open{
  display: block;
}
.wallet-card .see-all:has(.active) .icon-open{
  display: none;
}
.wallet-card .see-all:has(.active) .icon-close{
  display: block;
}
.wallet-card .content{
  list-style: none;
  padding: 0;
}
.wallet-card .content .list-item{
  margin-bottom: 15px;
}
.wallet-card .content .list-item > a{
  display: flex;
  text-decoration: none;
  align-items: center;
  background: #fff;
}
.wallet-card .content .list-item:last-child{
  margin-bottom: 0;
}
.wallet-card .content .list-item > a > img{
  height: 30px;
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
}
.wallet-card .content .list-item .title{
  font-size: 12px;
  margin: auto;
  margin-left: 0;
  color: #000000;
  line-height: 1.5;
}
.wallet-card .content .list-item .right-arrow{
  margin-right: 8px;
}
.wallet-card .content{
  display: none;
  margin-top: 25px;
}
.wallet-card .content.show{
  display: block;
}
/*Nishant's Fixes */
.wallet-card .see-all .icon {
  position: absolute;
  top: 0px;
  right: 0px;
}
.wallet-card .see-all .icon-open > svg, .wallet-card .see-all .icon-close > svg{
  vertical-align: middle;
}