@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #f7f7f7;
  padding-bottom: 2rem;
}

.red-times-box {
  background: #c0392b;
  height: cacl(40px - 10px);
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.red-background {
  background: #c0392b;
}

.green-background {
  background: #2ecc71;
}

li {
  list-style: none;
}

button {
  display: block;
  text-align: center;
  padding: .3rem 3rem;
  margin-top: 1rem;
  height: 40px;
  background: #9c88ff;
  width: 100%;
  border: none;
  color: #fff;
  font-size: 1rem;
}

button:hover {
  cursor: pointer;
}

h1 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  font-weight: 700;
}

p {
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: capitalize;
}

input {
  display: block;
  margin: .5rem 0rem;
  width: 100%;
  height: 40px;
  border-radius: 3px;
  border: rgba(0, 0, 0, 0.12);
  background-color: #fff;
  padding: .4rem;
  font-size: 1rem;
}

.expance-tracker-container {
  width: 350px;
  margin: auto;
  margin-top: 1rem;
}

.balance-text {
  text-transform: uppercase;
  font-size: 1rem;
}

.balance-text .balance-total-text {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
}

.income-expance-container {
  background: #fff;
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.12), -4px -4px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.12), -4px -4px 4px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 2rem 1.5rem 2rem;
}

.income-expance-container .income, .income-expance-container .expance {
  font-size: 1.3rem;
}

.income-expance-container .income {
  color: #2ecc71;
}

.income-expance-container .expance {
  color: #c0392b;
}

.income-expance-container .income-expance-heading {
  display: block;
  color: #333;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: #333;
}

.income-expance-container .verticle-line {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.12);
}

.hr-line {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  display: block;
  width: 100%;
  margin: .8rem 0;
}

.history-list {
  width: 100%;
  font-size: 1.1rem;
}

.history-list .history-list-item {
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: .4rem 0;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.12), -4px -4px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.12), -4px -4px 4px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 40px;
  padding-left: .5rem;
  position: relative;
}

.history-list .history-list-item:hover .history-list-time-icon {
  opacity: 1;
}

.history-list .history-list-amount {
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.history-list .history-list-time-icon {
  height: calc(40px - 12px);
  width: 25px;
  background: #c0392b;
  text-align: center;
  color: #fff;
  position: absolute;
  left: -25px;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

.history-list .history-list-time-icon:hover {
  opacity: 1;
  cursor: pointer;
}

.history-list .history-list-transection-color {
  display: inline-block;
  margin-left: .5rem;
  width: 5px;
  height: 40px;
}

.new-transection {
  margin-top: 3rem;
}
/*# sourceMappingURL=style.css.map */