﻿* {
  box-sizing: border-box;
}
body {
  font-family: aspira-demi, sans-serif;
}
.wrap {
  width: 300px;
  /*min-height:660px; */
}
@media (max-width: 450px) {
  .wrap {
    width: 100%;
    padding: 5px;
  }
}
.head {
  background: transparent linear-gradient(83deg, rgba(127, 43, 123, 0.88), rgba(224, 9, 133, 0.88)) no-repeat 50%;
  position: relative;
  height: 200px;
  /*
  .balance { position: absolute; top:50px; left: 50%; transform: translateX(-50%); color:white;  font-size:26px; 
    span { font-size:20px; }
  } */
  /*  .funds { position: absolute; top:80px; left: 20%; width:80%; transform: translateX(-20%); color:white;  font-size:16px; } 
  .overdraft { position: absolute; top:110px; left: 20%; width:80%; transform: translateX(-20%); color:white;  font-size:16px; } 
*/
}
.head .back {
  background-image: url(../img/chevron-up.svg);
  position: absolute;
  top: 7px;
  left: 0;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.head .account {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding-top: 5px;
}
.head .edit {
  background-image: url(../img/pencil-svgrepo-com.svg);
  position: absolute;
  top: 0;
  right: 6px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
}
.head .details {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}
.head .balance {
  color: white;
  font-size: 26px;
  margin-top: 15px;
}
.head .balance span {
  font-size: 20px;
}
.head .funds {
  margin-top: 10px;
}
.head .funds td {
  padding: 5px;
  color: white;
  font-size: 16px;
}
.head .details:after {
  background-image: url(../img/chevron-up.svg);
  position: absolute;
  display: block;
  top: 5px;
  right: -20px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  content: ' ';
}
.transactions .date {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}
.transactions .transaction {
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
  height: 30px;
}
.transactions .transaction .details {
  float: left;
  line-height: 30px;
}
.transactions .transaction .amount {
  float: right;
  line-height: 30px;
}
.transactions .transaction .receipt {
  line-height: 30px;
  padding-left: 10px;
}
.receipts {
  background-color: white;
}
.receipts .receipt {
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}
.receipts .receipt .back-wrap {
  position: relative;
  height: 30px;
  cursor: pointer;
}
.receipts .receipt .back-wrap .back {
  background-image: url(../img/chevron-up-black.svg);
  position: absolute;
  top: 13px;
  left: 5px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.receipts .receipt .total {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.receipts .receipt .merchant-name {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.receipts .receipt .date {
  text-align: center;
  padding-top: 10px;
}
.receipts .receipt .logo-wrap {
  text-align: center;
}
.receipts .receipt .logo {
  max-width: 200px;
  margin-bottom: 20px;
}
.receipts .receipt .line-item {
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
}
.receipts .receipt .line-item .name {
  float: left;
  width: 70%;
}
.receipts .receipt .line-item .amount {
  float: right;
  width: 30%;
  text-align: right;
}
.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}