* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  min-height: 90vh;
  background-color: aquamarine;
  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;
}

section {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 45px auto 55px;
      grid-template-rows: 45px auto 55px;
}

.section {
  float: left;
  width: 100%;
  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;
}

.cal {
  border: 2px solid #000000;
  background-color: blue;
  display: table;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-box-shadow: 0px 4px 25px -10px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 4px 25px -10px rgba(0, 0, 0, 0.75);
}

.cal .action {
  grid-column: 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  background-color: beige;
  width: 300px;
  height: 120px;
  border: 1px solid #000000;
}

.cal .action .previous-action {
  font-size: 16px;
  font-weight: 400;
  color: rgba(109, 10, 10, 0.8);
}

.cal .action .current-action {
  font-size: 28px;
}

.cal .numbers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: repeat(5, 60px);
      grid-template-columns: repeat(5, 60px);
  font-size: 25px;
}

span {
  outline: none;
  grid-column: span 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  width: 60px;
  color: #fff;
  background-color: blue;
  place-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000000;
}

span.clear {
  background-color: #a05611;
}

span.amount {
  background-color: green;
}

span:active {
  background-color: red;
}

.col-dwa {
  grid-column: span 2;
  width: 120px;
}

.row-dwa {
  grid-row: span 2;
  height: 120px;
}
/*# sourceMappingURL=style.css.map */