/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

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

body {
  background: #eee;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

.container {
  max-width: 640px;
  margin: auto;
  background: white;
  padding: 16px;
  min-height: 100vh; }

.h24 {
  font-size: 24px;
  line-height: 1; }

@keyframes ping-red {
  0% {
    background: #ad1414; }
  100% {
    background: gray; } }

@keyframes ping-blue {
  0% {
    background: #1445ad; }
  100% {
    background: gray; } }

.note-indicator {
  height: 100px;
  width: 100%;
  border: 0;
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: gray;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white; }
  .note-indicator.ping-red {
    animation: ping-red .5s linear; }
  .note-indicator.ping-blue {
    animation: ping-blue .5s linear; }

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  color: white;
  border: 0;
  box-shadow: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer; }
  .btn:hover {
    opacity: .8; }

.btn-blue {
  background: #1445ad; }

.btn-red {
  background: #ad1414; }

.btn-gray {
  background: gray; }

.btn-block {
  width: 100%;
  display: block; }

.form-control {
  padding: 9px;
  background: white;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
  display: block;
  width: 100%; }

select.form-control {
  -webkit-appearance: none;
  position: relative; }
  select.form-control:disabled {
    background: #ddd;
    color: #aaa; }

input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }
  input[type=file] + label {
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    background: gray;
    display: block;
    text-align: center; }
    input[type=file] + label.loaded {
      background: #1445ad; }
  input[type=file]:focus + label,
  input[type=file] + label:hover {
    opacity: .8; }

.flex-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -8px; }
  .flex-row > * {
    padding: 0 8px; }

.flex-col-6 {
  width: 50%; }

.flex-col-4 {
  width: 33.3333333%; }

.flex-col-3 {
  width: 25%; }

.flex-wrap {
  flex-wrap: wrap; }

.tp-16 {
  padding-top: 16px; }

.rp-16 {
  padding-right: 16px; }

.lp-16 {
  padding-left: 16px; }

.bp-16 {
  padding-bottom: 16px; }

.vp-16 {
  padding-top: 16px;
  padding-bottom: 16px; }

.hp-16 {
  padding-left: 16px;
  padding-right: 16px; }

.fp-16 {
  padding: 16px; }

.tp-32 {
  padding-top: 32px; }

.rp-32 {
  padding-right: 32px; }

.lp-32 {
  padding-left: 32px; }

.bp-32 {
  padding-bottom: 32px; }

.vp-32 {
  padding-top: 32px;
  padding-bottom: 32px; }

.hp-32 {
  padding-left: 32px;
  padding-right: 32px; }

.fp-32 {
  padding: 32px; }

.tm-16 {
  margin-top: 16px; }

.rm-16 {
  margin-right: 16px; }

.lm-16 {
  margin-left: 16px; }

.bm-16 {
  margin-bottom: 16px; }

.vm-16 {
  margin-top: 16px;
  margin-bottom: 16px; }

.hm-16 {
  margin-left: 16px;
  margin-right: 16px; }

.fm-16 {
  margin: 16px; }

.tm-32 {
  margin-top: 32px; }

.rm-32 {
  margin-right: 32px; }

.lm-32 {
  margin-left: 32px; }

.bm-32 {
  margin-bottom: 32px; }

.vm-32 {
  margin-top: 32px;
  margin-bottom: 32px; }

.hm-32 {
  margin-left: 32px;
  margin-right: 32px; }

.fm-32 {
  margin: 32px; }
