html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

#viewer {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin-top: 0px;
  margin-left: 0px;
  -webkit-box-shadow: 1px 1px 10px #999;
  box-shadow: 1px 1px 10px #999;
}

/* Buttons */
.Button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 25px;
  border-radius: 4px;
  background-color: rgb(247, 154, 56);
  line-height: 16px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

/* Input fields */
input[type="text"] {
  border-radius: 4px;
  padding: 8px;
  margin: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px !important;
  border: 1px solid #e0e0e0;
}

select {
  border-radius: 4px;
  padding: 8px;
  margin: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px !important;
  border: 1px solid #e0e0e0;
}

/* Smaller screens */

@media (max-width: 800px) {
  header .menu {
    display: block;
  }

  aside {
    display: none;
    position: fixed;
    left: 0;
    background: white;
    box-shadow: 50px 0 50px rgba(0, 0, 0, 0.2);
  }

  #viewer {
    width: 100vw;
    margin-left: 0;
  }
}
