* {
  box-sizing: border-box;
}

aside {
  width: 32rem;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 1;
}
aside > header {
  height: 6rem;
  background: #2196f3;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
}
/* aside > header > */ #search {
  width: 100%;
  padding: 0.75rem;
  background: none;
  border: none;
  color: #fff;
  font: inherit;
}
aside > header > .buttons {
  display: flex;
}
aside > header > .buttons > button {
  flex-grow: 1;
  padding: 0.875rem;
  height: 100%;
  color: #fff;
  background: none;
  border: none;
  font: inherit;
  transition: padding-bottom 200ms ease, border-bottom-width 200ms ease;
}
aside > header > .buttons > button.active {
  padding-bottom: 0.6875rem;
  border-bottom: 0.25rem solid #fff
}
#search::placeholder {
  color: #e0e0e0;
}
aside > ul {
  width: 100%;
  height: calc(100% - 4rem);
  margin: 0;
  padding: 1rem;
  list-style: none;
  overflow-y: auto;
}
aside > ul > li {
  position: relative;
  margin: 0 0 0.5rem 0;
  padding: 0.5rem 0.75rem;
  background: #f0f0f0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}
aside > ul > li > div {
  display: flex;
}
aside > ul > li > div > p {
  margin: 0.25rem 0 !important;
}
aside > ul > li > div > p:first-child {
  width: 80%;
  text-align: left;
}
aside > ul > li > div > p:last-child {
  width: 20%;
  text-align: right;
}
aside > ul > li > div > p > a {
  color: black;
}
aside > ul > li > div > p > a::after {
  display: inline-block;
    content: ' ';
    border-top: 0.125rem solid rgba(0, 0, 0, 0.75);
    border-right: 0.125rem solid rgba(0, 0, 0, 0.75);
    transform: rotate(45deg) translateX(-0.125rem);
    width: 0.625rem;
    height: 0.625rem;
}
aside > ul > li > p {
  margin: 0.25rem 0;
}
aside > ul > li mark {
  background: none;
  color: rgba(0, 0, 0, 0.25);
}
aside > ul > li > p > label > span{
  display: inline-block;
  margin: 0.25rem 0;
  width: calc(100% - 1.5rem);
}
aside > ul > li .id {
  font-weight: 500;
}
aside > ul > li > h3 {
  font-size: 1.25rem;
  margin: 0.25rem 0 0.5rem 0
}
aside > ul > li > .background-value {
  position: absolute;
  right: 0.5rem;
  bottom: 1rem;
  text-align: right;
  font-family: 'Roboto Condensed';
  font-weight: 600;
  font-size: 3.5rem;
  color: rgba(0, 0, 0, 0.1);
  user-select: none;
}
.graph-container {
  width: 100%;
  height: 28rem;
  padding: 1.25rem 1rem 1rem 1rem;
  margin: 1rem auto 2rem auto;
  border: 0.1rem solid #ddd;
  background: #fff;
  background: linear-gradient(#f6f6f6 0, #fff 3rem);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
}

.graph-placeholder {
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 1.2em;
}

.legend table {
  border-spacing: 5px;
}

.buttonContainer{
  text-align:center;
}

.buttonContainer > button {
  width: 30%;
}

#content {
  width: calc(100% - 32rem);
  height: 100vh;
  padding: 0.5rem;
  margin-left: 32rem;
}

#content > header > h1 {
  text-align: center;
}

.message {
  width: 70%;
  margin: auto;
}

.empty {
  padding-bottom: 60px;
}

.footer {
  background-color: #efefef;
  text-align: center;
  clear: both;
  position: fixed;
  width: calc(100vw - 32rem);
  bottom: 0;
  left: 32rem;
  height: 60px;
}

.footer > div {
  height: 100%;
  display: inline-block;
  position: relative;
  margin: 0px 0px 0px 0px;
}

.footer-info {
  width: 70%;
}
.footer-info > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-share {
  width: 20%;
}
.footer-share > a {
  width: 105px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
