@import url("https://fonts.googleapis.com/css?family=Roboto");
html {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden; }

html,
body,
#genome {
  width: 100%;
  height: 100%;
  overflow: hidden; }

body {
  font: 18px "Arial", arial, sans-serif;
  color: #232338;
  background: #747474;
  box-sizing: border-box;
  line-height: 160%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: auto; }

.course-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent;
  z-index: 9999; }
  .course-loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

h1 {
  margin: 0 0 12px;
  font-size: 45px;
  line-height: 107%; }

h2 {
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 120%; }

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 133%; }

h4 {
  margin: 0;
  font-weight: bold; }

h5 {
  margin: 0;
  font-size: 15px;
  font-weight: bold; }

.primary-text {
  margin: 12px 0; }
  .primary-text:last-of-type {
    margin-bottom: 0; }
  .primary-text p:last-child {
    margin-bottom: 0; }

.directions-text {
  font-weight: 900; }

p {
  margin: 0 0 12px; }
  p:first-child {
    margin-top: 0; }
  p:last-child {
    margin-bottom: 0; }

a {
  color: #3f8cde;
  padding: 5px;
  transition: all 0.3s linear; }
  a:hover {
    background: #3f8cde;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-out; }

textarea {
  min-height: 100px;
  font: 15px monospace;
  line-height: 130%;
  max-width: 100%;
  border: 2px solid #dcdcdc; }
  textarea:focus {
    border-color: #747474;
    outline: none; }

.input-set {
  margin: 12px 0;
  text-align: left; }
  .input-set > * {
    display: block; }
  .input-set label {
    color: #747474; }
  .input-set input {
    width: 100%;
    padding: 6px 12px;
    color: #232338;
    font-weight: 700;
    border: 2px solid #dcdcdc; }
    .input-set input:focus {
      border-color: #747474;
      outline: none; }

.over {
  cursor: pointer;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
  .over.locked, .over[disabled], .over.disabled {
    cursor: default; }

.panel {
  padding: 24px;
  background: #fff; }

.panel-overflow-tablet-portrait-up {
  flex-shrink: 0; }
  @media (min-width: 688px) {
    .panel-overflow-tablet-portrait-up {
      flex-shrink: 1;
      overflow-y: auto;
      padding-bottom: 0; }
      .panel-overflow-tablet-portrait-up > *:last-child {
        margin-bottom: 24px; } }

.background-graphic {
  min-height: 150px;
  flex-grow: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; }
  @media (min-width: 688px) {
    .background-graphic {
      order: 2; } }
  .background-graphic.background-graphic-full {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0; }

.page {
  position: relative; }

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px 25px; }
  .icon.icon-x {
    border-color: #c13a3a;
    background-image: url("content/global/graphics/icon-x-red.svg"); }
  .icon.icon-checkmark {
    border-color: #47923f;
    background-image: url("content/global/graphics/icon-checkmark-green.svg"); }
  .icon.icon-in-progress {
    border-color: #e9b021;
    background-image: url("content/global/graphics/icon-in-progress-yellow.svg"); }

.btn-text {
  min-width: 225px;
  margin: 24px 12px;
  padding: 15px;
  font: 18px "Arial", arial, sans-serif;
  font-weight: 700;
  color: #232338;
  background-color: #ffe600;
  line-height: 100%;
  transition: all 0.3s; }
  .btn-text[disabled="true"], .btn-text[disabled], .btn-text.disabled {
    color: rgba(0, 0, 0, 0.26);
    border-color: rgba(0, 0, 0, 0.26);
    cursor: default; }
  .btn-text.over:not([disabled]):not([disabled="true"]):not(.disabled), .btn-text:hover:not([disabled]):not([disabled="true"]):not(.disabled) {
    color: #313131;
    border-color: #313131;
    cursor: pointer;
    transition: all 0.3s; }
  .btn-text.pressed {
    background-color: #212121; }

.btn-icon {
  width: 36px;
  height: 36px;
  background-color: #484848;
  border-radius: 50%;
  transition: all 0.25s; }
  .btn-icon[disabled="true"], .btn-icon[disabled] {
    opacity: 0.12; }
  .btn-icon.over:not([disabled]) {
    background-color: #333;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.25s; }

body {
  width: calc(100% - 30px);
  margin: 15px;
  background: #fff; }

.content-holder {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 25px; }

.title {
  position: relative;
  margin: 0;
  padding: 160px 25px 0;
  background: #232338;
  color: #fff; }
  .title h1 {
    max-width: 1180px;
    position: relative;
    margin: 0 auto; }

.input-set {
  max-width: 450px; }
  .input-set label {
    margin-bottom: 5px;
    font-weight: 700; }
  .input-set input {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit; }

.btn-text {
  margin-left: 0;
  margin-right: 0; }

#results {
  margin: 36px 0; }
  #results .btn-download {
    width: 225px;
    padding: 15px 61px;
    text-decoration: none; }
    #results .btn-download:hover:not(.disabled) {
      background-color: transparent; }

.in-progress-indicator {
  display: none; }

.loading-circle {
  position: absolute;
  left: 100px;
  width: 40px;
  height: 40px; }

.sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

.sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #000;
  border-radius: 100%;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; }

.sk-circle1 {
  transform: rotate(30deg); }

.sk-circle2 {
  transform: rotate(60deg); }

.sk-circle3 {
  transform: rotate(90deg); }

.sk-circle4 {
  transform: rotate(120deg); }

.sk-circle5 {
  transform: rotate(150deg); }

.sk-circle6 {
  transform: rotate(180deg); }

.sk-circle7 {
  transform: rotate(210deg); }

.sk-circle8 {
  transform: rotate(240deg); }

.sk-circle9 {
  transform: rotate(270deg); }

.sk-circle10 {
  transform: rotate(300deg); }

.sk-circle11 {
  transform: rotate(330deg); }

.sk-circle12 {
  transform: rotate(360deg); }

.sk-circle2:before {
  animation-delay: -1.1s; }

.sk-circle3:before {
  animation-delay: -1s; }

.sk-circle4:before {
  animation-delay: -0.9s; }

.sk-circle5:before {
  animation-delay: -0.8s; }

.sk-circle6:before {
  animation-delay: -0.7s; }

.sk-circle7:before {
  animation-delay: -0.6s; }

.sk-circle8:before {
  animation-delay: -0.5s; }

.sk-circle9:before {
  animation-delay: -0.4s; }

.sk-circle10:before {
  animation-delay: -0.3s; }

.sk-circle11:before {
  animation-delay: -0.2s; }

.sk-circle12:before {
  animation-delay: -0.1s; }

@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    transform: scale(0); }
  40% {
    transform: scale(1); } }

@keyframes patternSparkle {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.test-result .columns {
  min-height: 1px; }

.test-result .header-content {
  margin-bottom: 30px; }

.test-result .no-data-msg {
  margin: auto;
  background: #ccc;
  text-align: center; }
  .test-result .no-data-msg .relaunch-msg {
    margin-bottom: 0; }

.test-result .lms-test {
  min-height: 60px;
  margin-bottom: 10px; }
  .test-result .lms-test[data-started="false"] {
    background-color: #ececec !important; }
  .test-result .lms-test[data-started="true"][data-complete="true"][data-successful="true"] {
    background-color: #d8f6d5; }
  .test-result .lms-test[data-started="true"][data-complete="true"][data-successful="false"] {
    background-color: #e2a7a7; }
  .test-result .lms-test[data-started="true"][data-complete="true"][data-successful="inconclusive"] {
    background-color: #f7ec8f; }
  .test-result .lms-test[data-started="true"][data-complete="false"] {
    background-color: #c8deff; }

.test-result .test-title h5 {
  margin-bottom: 0; }

.test-result .btn-toggle-expand {
  padding: 0;
  width: 40px; }

.test-result .collapsable {
  position: relative;
  overflow: hidden; }

.test-result #btn-view-complete-raw-data {
  width: auto;
  padding: 0 38px; }

.main .header-sort-btn {
  cursor: pointer; }
  .main .header-sort-btn.active {
    background: #ffecd7; }
  .main .header-sort-btn[data-dir]::after {
    background-image: url("../graphics/sort-arrow.png");
    display: inline-block;
    width: 15px;
    height: 8px;
    content: "";
    float: right;
    margin-top: 8px; }
  .main .header-sort-btn[data-dir="asc"]::after {
    transform: rotate(180deg); }
