.page-profile {
  height: calc(100% - 180px);
  position: fixed;
  bottom: 99px;
  background-color: white;
  width: calc(100%);
  border-radius: 0 0 30px 30px;
  z-index: 2;
  overflow: hidden;
}

.list-profile {
  height: 60px;
  width: calc(100% - 34px);
  margin: auto;
  position: relative;
  border-radius: 5px;
}

.list-kampung-profile {
  text-align: left;
  font-weight: 500;
  margin-left: 20px;
  margin-top: 20px;
  font-size: 12px;
}

.bg-total {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 5px 5px 0;
  background-color: #82D6D6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.total-agen {
  letter-spacing: 2px;
  color: #F7FAFC;
}

.list-agen {
  width: calc(100% - 40px);
  margin-left: 20px;
}

.bg-mitra {
  background-color: #F7FAFC;
  border: 1px solid #82D6D6;
  border-right: none;
  border-radius: 10px 0 0 10px;
}

.bank-kode {
  font-size: 12px;
  margin-top: 14px;
  color: grey;
}

.bg-icon-profile {
  text-align: center;
  background-color: #82D6D6;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kampung-btn {
  background: linear-gradient(200deg, #606060, #82D6D6);
  color: #F7FAFC;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.list-agen {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.7s ease,
    opacity 0.5s ease;
  width: 90%;
  margin: auto;
}

.list-agen.show {
  max-height: 2000px;
  opacity: 1;
}