body,
html {
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
body,
td,
th {
  font-family: sans-serif;
}
a {
  color: #009900;
}
a:hover {
  color: #d55f3a;
}
h1 {
  font-weight: normal;
  text-align: center;
}
h2 {
  border-bottom: 1px solid #009900;
  font-size: 14px;
  margin-bottom: 5px;
}
h3 {
  font-size: 10px;
}
span.error {
  color: #c70000;
}
.large-avatar {
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  outline: 2px solid #009900;
  outline-offset: 2px;
}
.small-avatar {
  border-radius: 50%;
  outline: 2px solid #009900;
  outline-offset: 1px;
}
a.button {
  padding: 5px 24px;
  background: white;
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 16px;
  text-decoration: none;
  color: black;
  border: 1px solid #dadce0;
  position: relative;
}
a.button:hover {
  background: #eee;
}
a.button.icon {
  padding-left: 48px;
}
a.button img {
  height: 22px;
  width: auto;
  left: 22px;
  position: absolute;
}
header h1 {
  padding: 10px;
  margin: 0;
}
header > div {
  max-width: 1140px;
  margin: 0 auto;
}
header a {
  display: inline-block;
  padding: 5px 10px;
  color: black;
}
header .branding {
  font-size: 1.2em;
  padding: 5px 10px;
}
header nav {
  display: inline;
  font-size: 0.83333333em;
}
header .currentuser {
  float: right;
}
header .small-avatar {
  width: 28px;
  margin-top: 8px;
  margin-right: 8px;
}
header .currentuser {
  height: 32px;
}
header #logo {
  text-decoration: none;
  font-weight: bold;
  font-variant: small-caps;
  color: #009900;
}
div.main {
  padding: 15px;
  max-width: 1140px;
  margin: 0 auto;
}
main {
  max-width: 840px;
  margin: 0 auto;
}
div.flashes .message {
  padding: 15px 24px 15px 0;
  border-radius: 5px;
  border-bottom: 1px solid #dadce0;
}
.overview-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.overview-boxes .overview-box {
  width: 100%;
  background: white;
  border-radius: 8px;
  border: 1px solid #dadce0;
  padding: 24px;
}
.overview-boxes .overview-box h2 {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 1.4em;
  font-weight: normal;
}
.overview-boxes .overview-box .row {
  border-top: 1px solid #dadce0;
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 10px;
  padding-left: 4px;
}
.overview-boxes .box-button {
  text-decoration: none;
  display: block;
  border-top: 1px solid #dadce0;
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 10px;
  text-align: center;
  margin-bottom: -24px;
  padding: 10px;
}
div.device {
  padding: 24px 24px 24px 4px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  margin-bottom: 24px;
}
a.device.add {
  padding: 24px;
  border-radius: 8px;
  border: 2px dashed #dadce0;
  display: block;
  text-decoration: none;
}
a.device.add:hover {
  color: #009900;
  background: #eef8ee;
}
.devicerow {
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 10px;
}
.devicerow .icon {
  grid-area: 1 / 1 / 3 / 2;
  max-width: 48px;
  align-self: center;
  justify-self: center;
}
.devicerow h3 {
  grid-area: 1 / 2 / 2 / 3;
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 1em;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
  word-wrap: break-word;
  overflow: hidden;
  padding-right: 5px;
}
.devicerow .meta {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 0.8em;
}
div.collapse label.collapse {
  display: block;
  color: #009900;
}
div.collapse label.collapse:hover {
  color: #00cc00;
}
div.collapse label.collapse:after {
  content: " show more";
}
div.collapse input.collapse {
  display: none;
}
div.collapse .collapsible {
  display: none;
}
div.collapse input.collapse:checked + .collapsible {
  display: block;
}
div.collapse input.collapse:checked + .collapsible + label.collapse:after {
  content: " show less";
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table td,
table th {
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
  vertical-align: top;
}
table td:not([align]),
table th:not([align]) {
  text-align: inherit;
}
table tr:last-child td,
table tr:last-child th {
  border-bottom: none;
}
table.datatable {
  width: 100%;
}
table.datatable th {
  text-align: right;
  font-weight: bold;
  font-size: 0.8em;
  vertical-align: middle;
}
form.box {
  width: 100%;
  background: white;
  border-radius: 8px;
  border: 1px solid #dadce0;
  padding-left: 24px;
}
form.box > div.field {
  border-bottom: 1px solid #dadce0;
  padding: 15px 24px 15px 0;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
form.box > div.field label {
  font-weight: bold;
  font-size: 0.8em;
  flex-basis: 150px;
}
form.box > div.field input[type=text],
form.box > div.field input[type=password],
form.box > div.field input[type=email],
form.box > div.field input[type=file],
form.box > div.field input[type=number],
form.box > div.field select,
form.box > div.field textarea {
  flex: 1;
  border: none;
  border-radius: 4px;
  background: #eee;
  padding: 5px 12px;
}
form.box > div.field .description {
  flex: 1;
  flex-basis: 100%;
  font-size: 0.8em;
  padding-left: 150px;
  padding-top: 4px;
}
form.box > div.button {
  padding: 15px 24px 15px 0;
}
form.box > div.button input {
  margin-left: 150px;
}
/*# sourceMappingURL=style.css.map */