@font-face {
  font-family: "Roboto";
  src: url(../fonts/Roboto-Regular.ttf) format("truetype");
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  background: linear-gradient(to right, #ffafbd, #ffc3a0);
  height: 100vh;
}

.container {
  width: 25%;
  height: 75%;
  background-color: #eee;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.6);
  display: flex;
  flex-flow: column wrap;
}

.container .buttons {
  width: calc(100% - 0.8rem);
  height: calc(70% - .4rem);
  margin: 0 .4rem 0 0.4rem;
}

.container .top {
  width: calc(100% - 1rem);
  height: calc(30% - 1rem);
  margin: .5rem 0.5rem 0.5rem .5rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.buttons {
  display: flex;
  flex-flow: column wrap;
}

.buttons .row {
  width: 100%;
  height: 20%;
  display: flex;
  flex-flow: row nowrap;
}

.buttons .row .button {
  user-select: none;
  width: calc(25% - 0.6rem);
  height: calc(100% - 0.6rem);
  border: 1px solid gray;
  margin: 0.3rem;
  background: #d7d7d7;
  box-shadow: 5px 5px 10px #b1b1b1, -5px -5px 10px #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.buttons .row .button:hover {
  border-radius: 10px;
  background: #e0e0e0;
  box-shadow: inset 5px 5px 10px #b1b1b1, inset -5px -5px 10px #ffffff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  cursor: pointer;
}

.top {
  display: flex;
  flex-flow: column wrap;
  border-radius: 50px;
  background: #e0e0e0;
  box-shadow: 5px 5px 10px #bebebe, -5px -5px 10px #ffffff;
}

.top .input {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  font-size: 1.5rem;
  color: #56a9cf;
}

.top .result {
  width: calc(100% -1rem);
  height: 50%;
  border-top: 1px dashed gray;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.button.bg-blue {
  background-color: #56a9cf !important;
  color: #ffffff;
}

.color-blue {
  color: #56a9cf;
}

.color-red {
  color: #e24141;
}

#delete {
  font-size: .9rem;
  color: #56a9cf;
}
/*# sourceMappingURL=style.css.map */