/**
 basic html
 */
html body {
  font-family: 'Assistant', sans-serif;
  font-weight: 300;
  background: #ccc;
}
html ul {
  list-style-type: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
html a {
  text-decoration: none;
  font-weight: 600;
  color: #32779e;
}
html button {
  font-family: 'Assistant', sans-serif;
}
html h1 {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 0;
}
html h1 img {
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: middle;
  height: 45px;
  width: 45px;
  margin-top: -10px;
}
html form {
  width: 600px;
  margin: 0 auto 50px;
  display: block;
}
html label {
  width: 150px;
  text-align: right;
  margin-right: 5px;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
}
html input {
  width: 400px;
  margin-bottom: 20px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid #CCC;
}
/**
 base styles
  */
html .right {
  float: right;
}
html .centered {
  text-align: center;
}
html .rightaligned {
  text-align: right;
}
html .scrollable {
  overflow-x: scroll;
}
html .bodycontainer {
  max-width: 1200px;
  margin: 0 auto;
}
html .topbar {
  margin: 30px 30px;
  height: 50px;
  background-color: white;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  line-height: 47px;
  font-size: 20px;
  font-weight: 400;
  color: #333;
}
html .topbar .right {
  height: 100%;
  margin-right: 10px;
}
html .topbar button,
html .topbar a {
  vertical-align: middle;
  display: inline-block;
  line-height: 45px;
}
html .topbar .right a {
  margin-right: 20px;
  font-weight: 400;
  font-size: 16px;
}
html .topbar .logo {
  margin-left: 15px;
  cursor: pointer;
  margin-right: 5px;
}
html .topbar .logo img {
  height: 40px;
  width: 40px;
}
html .breadcrumbs {
  height: 50px;
  font-weight: 400;
  margin-left: 50px;
}
html .breadcrumbs > * {
  font-size: 20px;
  height: 40px;
  line-height: 45px;
  margin: 0 5px;
}
html .breadcrumbs a {
  vertical-align: baseline;
}
html .contentbox {
  margin: 30px 30px;
  background-color: white;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}
html .contentbox .pageclosebutton {
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  height: 60px;
  width: 60px;
}
html .contentbox.centered {
  width: 350px;
  margin: 200px auto;
  left: inherit;
  right: inherit;
  top: inherit;
  display: block;
  position: inherit;
}
html .contentbox.centered form {
  padding-top: 20px;
}
html .contentbox.centered label {
  width: 100px;
}
html .contentbox.centered input {
  width: 200px;
}
html .contentbox.centered form {
  width: inherit;
  margin: 0;
}
html .divider {
  height: 1px;
  width: 100%;
  background-color: #a2d0eb;
  display: block;
  margin: 10px 0;
}
html .button {
  background-color: #4ea6d9;
  color: white;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 20px;
  cursor: pointer;
  position: relative;
}
html .button .strong {
  font-weight: 800;
  margin-right: 10px;
  font-size: 28px;
  line-height: 28px;
  margin-top: -5px;
  margin-left: -10px;
}
html .button span {
  vertical-align: middle;
}
html .button .text {
  opacity: 1;
}
html .button .loader {
  display: none;
}
html .button:hover {
  background-color: #22719f;
}
html .button:disabled,
html .button[disabled] {
  background-color: #ddd;
  cursor: default;
}
html .button:disabled .text,
html .button[disabled] .text {
  opacity: 0;
}
html .button:disabled .loader,
html .button[disabled] .loader {
  display: block;
}
html form {
  margin-top: 40px;
}
html form h2 {
  margin-left: 160px;
  font-weight: 400;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
html form .buttons {
  margin: 30px 0 0 auto;
  display: block;
  width: fit-content;
}
html .formset {
  background-color: white;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 1px solid #ddd;
  margin-left: 140px;
  padding: 20px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}
html .formset .errorlist {
  margin-left: 0px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 18px;
}
html .formset label {
  display: block;
  text-align: left;
  margin-bottom: 3px;
}
html .formset li:nth-child(n+4) {
  margin-left: 0px;
}
html .formset li:nth-child(n+3) {
  display: inline-block;
  width: 130px;
}
html .formset li:nth-child(n+3) .errorlist,
html .formset li:nth-child(n+3) label {
  margin-left: 0;
  width: 130px;
}
html .formset li:nth-child(n+3) input {
  width: 110px;
}
html .formset .closebutton {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  color: #8EBFDB;
}
html .formsets {
  margin-bottom: 30px;
}
html .formsets .add-button {
  color: #8EBFDB;
  margin-left: auto;
  display: block;
  cursor: pointer;
  font-size: 20px;
  margin-right: 20px;
  width: fit-content;
}
html .errorlist {
  color: #880000;
  margin-left: 160px;
}
html .errorlist.nonfield {
  margin-bottom: 20px;
  font-size: 18px;
}
/**
 dashboard index
  */
.dashboard_index a.add_new {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-left: 20px;
}
.dashboard_index .study_summary {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
  padding: 15px 30px;
  margin-bottom: 30px;
  display: block;
  color: #000;
}
.dashboard_index .study_summary .section {
  display: inline-block;
  margin-right: 10px;
}
.dashboard_index .study_summary .key {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}
.dashboard_index .study_summary .name {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}
.dashboard_index .study_summary label {
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  margin-bottom: 7px;
  margin-top: 5px;
  cursor: pointer;
}
.dashboard_index .action_button {
  margin-top: 10px;
  margin-bottom: 30px;
}
/**
  create studies
 */
.participant_details .tabs,
.study_details .tabs {
  margin-top: 30px;
  margin-bottom: 30px;
}
.participant_details .tabs > ul,
.study_details .tabs > ul {
  margin-left: 20px;
}
.participant_details .tabs > ul > li,
.study_details .tabs > ul > li {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px 5px 0 0;
  background-color: #eee;
  margin-right: 5px;
  margin-bottom: -1px;
  border: 1px solid white;
  border-bottom: none;
  cursor: pointer;
}
.participant_details .tabs > ul > li.active,
.study_details .tabs > ul > li.active {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom: none;
  cursor: default;
}
.participant_details .tabs > ul > li.active a,
.study_details .tabs > ul > li.active a {
  color: #222;
  cursor: default;
}
.participant_details .tabs > div,
.study_details .tabs > div {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 30px 20px 40px;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}
.participant_details .form-window,
.study_details .form-window {
  margin-top: 3px;
}
.participant_details .form-window .name,
.study_details .form-window .name {
  font-weight: 600;
  font-size: 20px;
  margin-right: 5px;
}
.participant_details .form-window img,
.study_details .form-window img {
  width: 30px;
  height: 30px;
  vertical-align: baseline;
}
.participant_details .form-window a,
.study_details .form-window a {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}
.participant_details .section,
.study_details .section {
  display: block;
  vertical-align: top;
  padding: 20px;
  box-sizing: border-box;
}
.participant_details .section.half,
.study_details .section.half {
  display: inline-block;
  width: 50%;
}
.participant_details .section > div,
.study_details .section > div {
  margin-left: 10px;
  font-size: 18px;
}
.participant_details .section .studykey,
.study_details .section .studykey {
  font-size: 30px;
  font-weight: 600;
  color: #1a3c50;
}
.participant_details h3,
.study_details h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.participant_details h2,
.study_details h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-top: 20px;
}
.participant_details .participants table,
.study_details .participants table {
  width: 100%;
}
.participant_details ::-webkit-scrollbar,
.study_details ::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 7px;
}
.participant_details ::-webkit-scrollbar-thumb,
.study_details ::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}
.participant_details .scrollable,
.study_details .scrollable {
  padding-bottom: 10px;
}
.participant_details .table,
.study_details .table {
  padding: 20px;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}
.participant_details .table.bordered td,
.study_details .table.bordered td,
.participant_details .table.bordered th,
.study_details .table.bordered th {
  border: 1px solid #ddd;
  padding: 10px;
}
.participant_details .table.customwidth,
.study_details .table.customwidth {
  width: auto;
}
.participant_details .participants th,
.study_details .participants th {
  padding: 5px 10px 15px;
  text-align: left;
}
.participant_details th,
.study_details th {
  font-size: 18px;
  font-weight: 600;
}
.participant_details .even,
.study_details .even {
  background-color: #dbebf4;
}
.participant_details .participant td,
.study_details .participant td {
  padding: 10px;
  padding-left: 15px;
  font-size: 20px;
}
.participant_details .participant td.graph,
.study_details .participant td.graph {
  padding: 0;
  margin-bottom: -5px;
}
.participant_details .participant .strong,
.study_details .participant .strong {
  font-weight: 600;
}
.participant_details .participant .participant_id,
.study_details .participant .participant_id {
  font-weight: 600;
  font-size: 20px;
}
.participant_details .chart,
.study_details .chart {
  max-width: 800px;
}
.participant_details .data_buttons .button,
.study_details .data_buttons .button {
  width: 300px;
  height: 50px;
  margin-left: 20px;
  margin-top: 20px;
  text-align: left;
  font-size: 18px;
  padding: 0 10px;
}
.participant_details .data_buttons .button img,
.study_details .data_buttons .button img {
  height: 40px;
  width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.participant_details .data_buttons .button span,
.study_details .data_buttons .button span {
  vert-align: middle;
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #ffffff;
  font-size: 10px;
  position: absolute;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  margin: -10px auto 0;
  top: 0%;
  left: 50%;
  width: 15px;
  height: 15px;
  display: inline-block;
  overflow: visible;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.true {
  color: #22542f;
}
.false {
  color: #852624;
}
.delete_code {
  cursor: pointer;
}
.copy_to_clipboard {
  cursor: pointer;
  font-size: 14px;
  margin-top: 3px;
  display: inline-block;
}
.recovery_code td {
  padding-left: 15px;
  font-size: 18px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.action_button {
  margin-top: 50px;
  margin-left: 15px;
  margin-bottom: 20px;
}
.helpbox {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 30px 50px;
  padding: 20px;
  background-color: white;
}
.helpbox img {
  height: 50px;
  width: 50px;
  float: left;
}
.helpbox div {
  font-size: 18px;
  margin-left: 60px;
}
.windowgrid {
  margin-bottom: 30px;
}
.windowgrid h3 {
  margin-left: 10px;
  margin-bottom: 15px;
  font-size: 28px;
}
.windowgrid h3 .timespan {
  font-weight: 300;
  font-size: 20px;
  padding-left: 10px;
}
/*# sourceMappingURL=style.css.map */