@import url(root.css);

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.home_btn{
  display: flex;
  justify-content: right;
  align-items: right;
  
}
.home_btn a{
  background-color: #5d497e;
  padding: 7px;
  border-radius: 3px;
  margin-top: 20px;
  color: #ffff;
  font-size: small;
}
.home_btn .fa-angle-up{
  rotate: -90deg;
}
/* Profile Page */
.profile_nav{
  padding: 10px;
  border-bottom: 1px solid #fff;
}
.profile_nav ul{
  display: flex;
}
.profile_nav ul li{
  list-style: none;
  margin-right: 15px;
}
.profile_nav ul li a{
  color: #ffff;
  font-size: small;
}
.profile_nav ul li a:hover{
  color: rgb(79, 255, 155);
}
.profile{
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 30px;
  padding: 20px;
}
@media (max-width: 772px) {
  .profile{
    display: grid;
    grid-template-columns: auto;
    grid-column-gap: 30px;
    padding: 20px;
  }
}
.profile .left_profile .profile_button{
  margin-bottom: 15px;
}
.profile .left_profile .profile_button a{
  margin-right: 10px;
  padding: 7px 15px;
  background-color: #02bd71;
  border-radius: 5px;
  color: #fff;
}
.profile .left_profile form .form_group{
  margin-bottom: 10px;
}
.profile .left_profile form .form_group label{
  font-size: small;
  display: block;
  margin-bottom: 3px;
  color: #8983a4;
}
.profile .left_profile form .form_group input{
  width: 100%;
  padding: 9px;
  outline: none;
  border: none;
  border-radius: 2px;
}
.profile .left_profile .save_btn{
  width: 100%;
  background-color: #02bd71;
  color: #fff;
  margin-top: 20px;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 2px;
}
.profile .right_profile{
  margin-bottom: 20px;
}
.profile .right_profile .current_balance{
  background-color: #59457b;
  padding: 15px 10px;
  border-radius: 5px;
}
.profile .right_profile .current_balance ul{
  margin-bottom: 15px;
}
.profile .right_profile .current_balance ul li{
  color: #ffffff;
  margin-top: 10px;
}
.profile .right_profile .current_balance ul li:last-child{
  color: #39be71;
}
.profile .right_profile .current_balance .search_balance{
  display: flex;
  justify-content: right;
}
.profile .right_profile .search_balance .search_b{
  background-color: #44424f;
  padding: 6px;
  border-radius: 5px;
}
.profile .right_profile .search_balance .search_b input{
  background-color: transparent;
  outline: none;
  border: none;
  color: #fff;
}
.profile .right_profile .add_balance{
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 5px;
  margin-top: 15px;
}
.profile .right_profile .add_balance div{
  background-color: #167c6a;
  width: 100%;
  padding: 8px 5px;
  border-radius: 3px;
  color: #fff;
}
.profile .right_profile .add_balance a{
  width: 50%;
  padding: 8px 5px;
  border-radius: 3px;
  color: #ffff;
  background-color: #167c6a;
  text-align: center;
}
/* information Pages */
.information_page {
  color: #fff;
}