html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  overflow: hidden;
}

html, body, body > #page > .frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  height: 100vh;
}

body, input, textarea, select, button {
  font-family: Roboto, sans-serif;
}

h1.big {
  font-size: 3em;
}

.frame {
  z-index: 1;
  background: white;
  transition: transform 0.5s ease;
  display: none;
  overflow-y: auto;
}
.frame.active {
  z-index: 2;
  opacity: 1;
  display: block;
}
.frame.active.animate-hide {
  z-index: 3;
  transform: translateY(100vh);
}
.frame.active.overlay.animate-show {
  animation: slide-up 0.3s forwards;
}
.frame.overlay.active {
  z-index: 3;
  display: block;
}

@keyframes slide-right {
  0% {
    transform: translateY(-100vh);
  }
  1000% {
    transform: translateY(0);
  }
}
button {
  background: #555;
  color: white;
  border: none;
  padding: 0.5em 1em;
  border-radius: 0.3em;
  outline: none;
}
button:disabled {
  opacity: 0.3;
}
button:active {
  transform: translateY(0.1em);
  background: #777;
}
button.ok, button.green {
  background: #7CB342;
}
button.ok:active, button.green:active {
  background: #8BC34A;
}
button.cancel, button.red {
  background: #E53935;
}
button.cancel:active, button.red:active {
  background: #F44336;
}
button.warn, button.warning, button.orange {
  background: #f26202;
}
button.warn:active, button.warning:active, button.orange:active {
  background: #F2711C;
}
button.blue {
  background: #0056FB;
}
button.blue:active {
  background: #0056FB;
}
button.big {
  font-size: 20px;
}
button.wide {
  width: 100%;
}
button.wideb {
  width: 80%;
}

select {
  background: none;
  line-height: 2;
  height: 2em;
  font-size: 1.3em;
  padding: 0 1em;
  border-radius: 6px;
}

.loading {
  background: url("../images/loading-spinner.svg") no-repeat center 0;
}

.vertical-button-group {
  width: 80%;
  margin: auto;
  border-radius: 0.3em;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.vertical-button-group > button {
  width: 100%;
  border-radius: 0;
  background: white;
  color: #555;
  padding: 1em 0;
  border-bottom: solid 1px #ccc;
}
.vertical-button-group > button:last-child {
  border-bottom: none;
}
.vertical-button-group > button:active {
  background: #eee;
}

.item-card-container {
  text-align: left;
  width: 80%;
  margin: 0 auto;
}
.item-card-container h2 {
  margin-bottom: 0.5em;
}
.item-card-container .item-card {
  text-align: left;
  background: white;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  width: 100%;
  margin-bottom: 15px;
}
.item-card-container .item-card p {
  color: #444;
  margin: 0.2em;
  font-size: 16px;
}

input.big-input {
  display: inline-block;
  width: 200px;
  height: 150px;
  border-radius: 6px;
  border: solid 1px #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin: 12px;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
}

input.rounded {
  border-radius: 6px;
  border: solid 1px grey;
  padding-left: 12px;
  font-size: 1.3em;
  height: 2em;
}

.input-group {
  display: table;
  width: 100%;
}
.input-group > * {
  display: table-cell;
  height: 2.4em;
  border-radius: 0;
}
.input-group.big > * {
  font-size: 16px;
  height: 3em;
}
.input-group > input {
  border-radius: 6px 0 0 6px;
  border: solid 1px #0056FB;
  padding-left: 12px;
}
.input-group > button {
  min-width: 30px;
  border-radius: 0 6px 6px 0;
  background: #0056FB;
}

.ihide {
  display: none;
}

.eye {
  height: 35px;
}
.eye.left {
  position: fixed;
  bottom: 60px;
  left: -24px;
}
.eye.hide {
  display: none;
}

.templates {
  display: none !important;
}

/*# sourceMappingURL=index.css.map */
