/* Make clicks pass-through */
#nprogress {
  pointer-events: none; }

#nprogress .bar {
  background: #29d;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; }

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px); }

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px; }

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite; }

.nprogress-custom-parent {
  overflow: hidden;
  position: relative; }

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute; }

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.ReactTable {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1); }

.ReactTable * {
  box-sizing: border-box; }

.ReactTable .rt-table {
  -webkit-box-flex: 1;
  -ms-flex: auto 1;
  flex: auto 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  border-collapse: collapse;
  overflow: auto; }

.ReactTable .rt-thead {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.ReactTable .rt-thead.-headerGroups {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-thead.-filters {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-thead.-filters input, .ReactTable .rt-thead.-filters select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline: none; }

.ReactTable .rt-thead.-filters .rt-th {
  border-right: 1px solid rgba(0, 0, 0, 0.02); }

.ReactTable .rt-thead.-header {
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15); }

.ReactTable .rt-thead .rt-tr {
  text-align: center; }

.ReactTable .rt-thead .rt-th, .ReactTable .rt-thead .rt-td {
  padding: 5px 5px;
  line-height: normal;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 0 0 0 transparent; }

.ReactTable .rt-thead .rt-th.-sort-asc, .ReactTable .rt-thead .rt-td.-sort-asc {
  box-shadow: inset 0 3px 0 0 rgba(0, 0, 0, 0.6); }

.ReactTable .rt-thead .rt-th.-sort-desc, .ReactTable .rt-thead .rt-td.-sort-desc {
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6); }

.ReactTable .rt-thead .rt-th.-cursor-pointer, .ReactTable .rt-thead .rt-td.-cursor-pointer {
  cursor: pointer; }

.ReactTable .rt-thead .rt-th:last-child, .ReactTable .rt-thead .rt-td:last-child {
  border-right: 0; }

.ReactTable .rt-thead .rt-th:focus {
  outline: none; }

.ReactTable .rt-thead .rt-resizable-header {
  overflow: visible; }

.ReactTable .rt-thead .rt-resizable-header:last-child {
  overflow: hidden; }

.ReactTable .rt-thead .rt-resizable-header-content {
  overflow: hidden;
  text-overflow: ellipsis; }

.ReactTable .rt-thead .rt-header-pivot {
  border-right-color: #f7f7f7; }

.ReactTable .rt-thead .rt-header-pivot:after, .ReactTable .rt-thead .rt-header-pivot:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.ReactTable .rt-thead .rt-header-pivot:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 8px;
  margin-top: -8px; }

.ReactTable .rt-thead .rt-header-pivot:before {
  border-color: rgba(102, 102, 102, 0);
  border-left-color: #f7f7f7;
  border-width: 10px;
  margin-top: -10px; }

.ReactTable .rt-tbody {
  -webkit-box-flex: 99999;
  -ms-flex: 99999 1 auto;
  flex: 99999 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: auto; }

.ReactTable .rt-tbody .rt-tr-group {
  border-bottom: solid 1px rgba(0, 0, 0, 0.05); }

.ReactTable .rt-tbody .rt-tr-group:last-child {
  border-bottom: 0; }

.ReactTable .rt-tbody .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.02); }

.ReactTable .rt-tbody .rt-td:last-child {
  border-right: 0; }

.ReactTable .rt-tbody .rt-expandable {
  cursor: pointer;
  text-overflow: clip; }

.ReactTable .rt-tr-group {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.ReactTable .rt-tr {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.ReactTable .rt-th, .ReactTable .rt-td {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 7px 5px;
  overflow: hidden;
  transition: .3s ease;
  transition-property: width,min-width,padding,opacity; }

.ReactTable .rt-th.-hidden, .ReactTable .rt-td.-hidden {
  width: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important; }

.ReactTable .rt-expander {
  display: inline-block;
  position: relative;
  margin: 0;
  color: transparent;
  margin: 0 10px; }

.ReactTable .rt-expander:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  border-left: 5.04px solid transparent;
  border-right: 5.04px solid transparent;
  border-top: 7px solid rgba(0, 0, 0, 0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; }

.ReactTable .rt-expander.-open:after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0); }

.ReactTable .rt-resizer {
  display: inline-block;
  position: absolute;
  width: 36px;
  top: 0;
  bottom: 0;
  right: -18px;
  cursor: col-resize;
  z-index: 10; }

.ReactTable .rt-tfoot {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); }

.ReactTable .rt-tfoot .rt-td {
  border-right: 1px solid rgba(0, 0, 0, 0.05); }

.ReactTable .rt-tfoot .rt-td:last-child {
  border-right: 0; }

.ReactTable.-striped .rt-tr.-odd {
  background: rgba(0, 0, 0, 0.03); }

.ReactTable.-highlight .rt-tbody .rt-tr:not(.-padRow):hover {
  background: rgba(0, 0, 0, 0.05); }

.ReactTable .-pagination {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 3px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(0, 0, 0, 0.1); }

.ReactTable .-pagination input, .ReactTable .-pagination select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 5px 7px;
  font-size: inherit;
  border-radius: 3px;
  font-weight: normal;
  outline: none; }

.ReactTable .-pagination .-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  font-size: 1em;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.1);
  transition: all .1s ease;
  cursor: pointer;
  outline: none; }

.ReactTable .-pagination .-btn[disabled] {
  opacity: .5;
  cursor: default; }

.ReactTable .-pagination .-btn:not([disabled]):hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff; }

.ReactTable .-pagination .-previous, .ReactTable .-pagination .-next {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center; }

.ReactTable .-pagination .-center {
  -webkit-box-flex: 1.5;
  -ms-flex: 1.5;
  flex: 1.5;
  text-align: center;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.ReactTable .-pagination .-pageInfo {
  display: inline-block;
  margin: 3px 10px;
  white-space: nowrap; }

.ReactTable .-pagination .-pageJump {
  display: inline-block; }

.ReactTable .-pagination .-pageJump input {
  width: 70px;
  text-align: center; }

.ReactTable .-pagination .-pageSizeOptions {
  margin: 3px 10px; }

.ReactTable .rt-noData {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
  padding: 20px;
  color: rgba(0, 0, 0, 0.5); }

.ReactTable .-loading {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  transition: all .3s ease;
  z-index: -1;
  opacity: 0;
  pointer-events: none; }

.ReactTable .-loading > div {
  position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-52%);
  transform: translateY(-52%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.ReactTable .-loading.-active {
  opacity: 1;
  z-index: 2;
  pointer-events: all; }

.ReactTable .-loading.-active > div {
  -webkit-transform: translateY(50%);
  transform: translateY(50%); }

.ReactTable .rt-resizing .rt-th, .ReactTable .rt-resizing .rt-td {
  transition: none !important;
  cursor: col-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.container {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh; }

.app-wrap {
  min-height: 100vh; }

html,
body {
  background-color: rgba(12, 52, 131, 0.94); }

html,
body,
#root {
  background-color: #fdfdfd;
  width: 100%;
  min-height: 100vh;
  color: #000; }

#root {
  position: relative; }

* {
  box-sizing: border-box; }

body {
  padding: 0;
  margin: 0; }

.no-scroll {
  overflow-y: hidden;
  height: 100vh; }

a {
  text-decoration: none;
  color: inherit; }

svg {
  overflow: visible; }

button {
  -moz-osx-font-smoothing: inherit;
  -webkit-font-smoothing: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 0;
  text-align: inherit;
  width: auto; }

fieldset {
  border: none;
  padding: 0; }

.img-responsive {
  max-width: 100%;
  height: auto; }

@keyframes flip {
  0% {
    transform: rotate(0); }
  50% {
    transform: rotateY(180deg); }
  100% {
    transform: rotateY(180deg) rotateX(180deg); } }

.color-success {
  color: #41a36d; }

.nowrap {
  white-space: nowrap; }

.pos-relative {
  position: relative; }

.info {
  display: flex;
  flex-direction: row;
  align-items: center; }
  .info__icon {
    margin-right: 8px;
    font-size: 1.5rem; }

.center-block {
  margin-left: auto;
  margin-right: auto; }

.flex-button-container {
  display: flex;
  justify-content: space-around; }
  .flex-button-container--left {
    justify-content: left; }

.mb-1 {
  margin-bottom: 1rem; }

.mb-2 {
  margin-bottom: 2rem; }

.mr-1 {
  margin-right: 1rem; }

.mobile-p {
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    .mobile-p {
      margin-bottom: 0; } }

.tablet-p {
  margin-bottom: 16px; }
  @media (min-width: 1024px) {
    .tablet-p {
      margin-bottom: 0; } }

.vertical-center {
  display: flex;
  flex-flow: row wrap;
  align-items: center; }

.hidden {
  display: none !important; }

.hidden-xs {
  display: none; }
  @media (min-width: 768px) {
    .hidden-xs {
      display: block; } }

.text-highlight {
  background-color: #fffbc9; }

.recharts-text {
  fill: #4a4a4a; }

.color-error {
  color: #db3b28 !important; }

.error {
  color: #db3b28; }
  .error svg {
    font-size: 1.2rem;
    vertical-align: sub; }

.flex-row {
  display: flex;
  flex-flow: row wrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between; }
  .flex-row--top {
    align-items: flex-start; }

html,
body {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5; }
  @media (min-width: 768px) {
    html,
    body {
      font-size: 16px; } }

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  margin: 0; }

h1 {
  font-size: 1.625rem;
  margin-bottom: 1rem; }

h2 {
  font-size: 1.375rem;
  margin-bottom: 1rem; }

h3 {
  font-size: 1.25rem; }

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem; }

h5 {
  font-size: 1rem; }

p {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.5; }

.link {
  color: #386db0; }
  .link:hover {
    color: #5387c8;
    text-decoration: underline; }
  .link:focus, .link:active {
    color: #2c5589; }

/* Styles for form controls here */
.input-text {
  border: 2px solid #979797;
  border-radius: 3px;
  font-family: inherit;
  padding: 8px 24px;
  font-size: 16px; }
  .input-text:focus {
    outline: none; }

.input-lg {
  font-size: 16px; }
  @media (min-width: 768px) {
    .input-lg {
      font-size: 22px; } }

textarea {
  font-size: 1rem;
  max-width: 480px;
  width: 100%;
  min-height: 72px;
  padding: 5px;
  resize: vertical;
  max-height: 400px;
  border: 2px solid #979797; }

.accordion {
  margin-top: 8px; }
  .accordion__expand-all {
    margin-bottom: 16px; }

.accordion-item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f2f2f2;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 32px; }
  .accordion-item:last-child {
    border-bottom: 1px solid #f2f2f2; }
  .accordion-item__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start; }
  .accordion-item__title {
    font-size: 24px;
    font-weight: bold; }
  .accordion-item__content {
    margin-top: 8px; }

.alert {
  background-color: #fdfdfd;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 8px;
  font-size: 1rem;
  margin-bottom: 1rem; }
  .alert__icon {
    color: #dace00;
    font-size: 25px;
    vertical-align: bottom;
    margin-right: 4px; }
  .alert__dismiss {
    margin-left: 8px;
    font-size: 0.875rem; }

.button {
  background-color: #386db0;
  border-radius: 3px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  padding: 4px 24px;
  display: inline-block;
  white-space: nowrap;
  text-align: center; }
  .button:hover {
    background: #417ac2;
    color: #fff;
    border-color: #417ac2; }
    .button:hover .button__icon {
      filter: brightness(0) invert(1); }
  .button:active, .button:focus {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.3); }
  .button__icon {
    margin-right: 4px; }
  .button:disabled, .button--disabled {
    cursor: not-allowed;
    background-color: #9b9b9b; }
    .button:disabled:hover, .button:disabled:active, .button:disabled:focus, .button--disabled:hover, .button--disabled:active, .button--disabled:focus {
      background-color: #9b9b9b; }
  .button--secondary, .button--remove {
    background: none;
    color: #386db0;
    border: 1px solid currentColor; }
    .button--secondary:disabled, .button--remove:disabled, .button--secondary:disabled:hover, .button--remove:disabled:hover, .button--secondary:disabled:active, .button--remove:disabled:active, .button--secondary:disabled:focus, .button--remove:disabled:focus {
      background: none;
      border-color: currentColor;
      color: #9b9b9b; }
  .button--inverted {
    background-color: #fff;
    color: #386db0; }
  .button--remove {
    color: #000; }
    .button--remove:hover, .button--remove:focus, .button--remove:active {
      color: #fff;
      border-color: #000;
      background-color: #000; }
  .button--transparent, .button--link, .button--plain {
    border: none;
    background-color: transparent;
    padding: 0;
    color: #000; }
    .button--transparent:hover, .button--link:hover, .button--plain:hover, .button--transparent:active, .button--link:active, .button--plain:active, .button--transparent:focus, .button--link:focus, .button--plain:focus {
      background: none;
      color: #417ac2;
      box-shadow: none; }
    .button--transparent:active, .button--link:active, .button--plain:active, .button--transparent:focus, .button--link:focus, .button--plain:focus {
      color: #2c5589; }
  .button--link, .button--plain {
    color: #386db0;
    white-space: normal;
    text-align: left;
    text-decoration: underline;
    font-size: inherit; }
    .button--link:visited, .button--plain:visited {
      color: #643b8a; }
  .button--plain {
    font-size: 0.8rem;
    line-height: 1; }
    .button--plain:hover {
      color: #417ac2; }
  .button--large {
    font-size: 16px;
    padding: 8px 32px; }
  .button--loading {
    position: relative;
    color: transparent; }
    .button--loading:hover, .button--loading:active, .button--loading:focus {
      color: transparent; }
    .button--loading:before {
      content: '';
      visibility: visible;
      display: inline-block;
      vertical-align: baseline;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: 0;
      width: 10px;
      height: 10px;
      background-color: transparent;
      border-top: 1px solid transparent;
      border-right: 1px solid transparent;
      border-left: 1px solid transparent;
      border-bottom: 1px solid transparent;
      border-radius: 50%;
      animation: border-color-change, loading-spin-center;
      animation-duration: 1.2s;
      animation-iteration-count: infinite; }
      .button--loading:before + * {
        visibility: hidden; }
    .button--loading.button--plain:before, .button--loading.button--link:before, .button--loading.button--plain:before {
      top: auto;
      right: 0;
      animation-name: border-color-change, loading-spin-inline; }

@keyframes border-color-change {
  from,
  to {
    border-top-color: white;
    border-right-color: #386db0;
    border-bottom-color: white;
    border-left-color: #386db0; }
  50% {
    border-top-color: #386db0;
    border-right-color: white;
    border-bottom-color: #386db0;
    border-left-color: white; } }

@keyframes loading-spin-center {
  from {
    transform: translate(-50%, -50%) rotate(0deg); }
  to {
    transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes loading-spin-inline {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.checkbox {
  display: flex;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 4px; }
  .checkbox__input {
    position: absolute;
    left: -9999px;
    opacity: 0; }
    .checkbox__input + .checkbox__label:after {
      content: none; }
    .checkbox__input:checked + .checkbox__label:after {
      content: ''; }
    .checkbox__input:checked + .checkbox__label:before {
      background-color: #386db0; }
  .checkbox__label {
    position: relative;
    padding-left: 24px;
    word-break: break-all; }
    .checkbox__label:before, .checkbox__label:after {
      position: absolute; }
    .checkbox__label:before {
      content: '';
      display: inline-block;
      height: 16px;
      width: 16px;
      border: 1px solid #979797;
      border-radius: 3px;
      top: 3px;
      left: 0; }
    .checkbox__label:after {
      content: '';
      display: block;
      height: 4px;
      width: 8px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg);
      left: 4px;
      top: 8px; }
    .checkbox__label:hover:before {
      box-shadow: 0px 0px 0px 1px #d8d8d8; }
    .checkbox__label:active:before, .checkbox__label:focus:before {
      border-color: #386db0; }
  .checkbox--error .checkbox__label:before {
    border-color: #db3b28; }
  .checkbox--disabled {
    color: #999999;
    pointer-events: none; }
    .checkbox--disabled .checkbox__label:before {
      background-color: #f2f2f2; }

.dropdown {
  display: inline-block;
  position: relative; }
  .dropdown__select {
    color: #000;
    display: inline-block;
    padding: 5px 30px 5px 10px;
    width: 100%;
    font-size: 1rem;
    box-shadow: none;
    background: #fff;
    border-radius: 3px;
    outline: none;
    z-index: 2;
    border: 1px solid #9b9b9b;
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none; }
    .dropdown__select:focus {
      outline: none; }
    .dropdown__select:disabled, .dropdown__select--disabled {
      cursor: not-allowed; }
      .dropdown__select:disabled:hover, .dropdown__select:disabled:active, .dropdown__select:disabled:focus, .dropdown__select--disabled:hover, .dropdown__select--disabled:active, .dropdown__select--disabled:focus {
        background-color: #9b9b9b; }
  .dropdown:after {
    content: ' ';
    position: absolute;
    right: 6px;
    top: 50%;
    pointer-events: none;
    margin-top: -2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid black; }

.dropdown-search {
  position: relative; }
  .dropdown-search::after {
    content: ' ';
    position: absolute;
    right: 8px;
    top: 50%;
    pointer-events: none;
    margin-top: -2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid black; }
  .dropdown-search__wrap {
    position: relative; }
    .dropdown-search__wrap__clear {
      position: absolute;
      left: 8px;
      top: 6px;
      font-size: 1.2rem; }
  .dropdown-search__input {
    border: 2px solid #979797;
    border-radius: 3px;
    padding: 8px 8px 8px 28px;
    font-size: 14px;
    width: 100%; }
    .dropdown-search__input:focus {
      border-color: #386db0; }
  .dropdown-search__dropdown {
    display: block;
    position: absolute;
    top: 41px;
    left: 0;
    padding: 0;
    margin: 0;
    min-width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    list-style: none;
    visibility: hidden;
    border-radius: 3px;
    z-index: 1; }
    .dropdown-search__dropdown__open {
      visibility: visible;
      border: 2px solid #386db0; }
  .dropdown-search__dropdown-item {
    white-space: nowrap; }
    .dropdown-search__dropdown-item__highlight {
      color: white;
      background-color: #386bd0; }
    .dropdown-search__dropdown-item button {
      padding: 4px 8px;
      display: block;
      width: 100%; }
  .dropdown-search__dropdown-empty {
    padding: 4px 8px;
    color: #ccc; }

.footer {
  padding: 16px;
  background: linear-gradient(#ffffff 0%, #dfe9f3 100%);
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1); }
  @media (min-width: 768px) {
    .footer {
      padding: 52px; } }
  .footer__container {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto; }
    .footer__container--main {
      margin-bottom: 40px; }
  @media (min-width: 768px) {
    .footer__flex {
      display: flex;
      justify-content: space-between; }
      .footer__flex--v-centered {
        align-items: center; } }
  @media (min-width: 768px) {
    .footer__left {
      flex: 1;
      margin-right: 168px; } }
  @media (min-width: 768px) and (min-width: 768px) {
    .footer__left {
      margin-right: 160px; } }
  @media (min-width: 768px) {
    .footer__right {
      flex: 1; } }
  .footer__socials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px; }
    @media (min-width: 768px) {
      .footer__socials {
        margin-top: 56px;
        padding-right: 25px; } }
  .footer__link-twitter {
    font-size: 32px;
    color: #979797;
    margin-left: 8px;
    margin-right: 8px; }
    .footer__link-twitter:hover, .footer__link-twitter:active, .footer__link-twitter:focus {
      color: #55acee; }
  .footer__link-github {
    font-size: 32px;
    color: #979797; }
    .footer__link-github:hover, .footer__link-github:active, .footer__link-github:focus {
      color: #161614; }
  .footer__link-container {
    display: flex;
    flex-direction: column; }
    @media (min-width: 768px) {
      .footer__link-container {
        flex-flow: row wrap;
        align-items: baseline; } }
  .footer__link {
    margin-top: 16px;
    color: #979797; }
    @media (min-width: 768px) {
      .footer__link {
        margin-top: 0;
        margin-right: 24px; } }
  .footer__version {
    color: #979797;
    font-size: 0.75rem;
    margin-top: 24px; }
    @media (min-width: 768px) {
      .footer__version {
        margin: 0;
        text-align: right;
        flex: 2; } }
  .footer__author {
    margin-top: 16px; }
  .footer__icon {
    position: relative;
    top: 2px;
    margin-right: 8px; }

.back-to-top {
  position: fixed;
  bottom: 15vh;
  border-bottom: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 50;
  text-decoration: initial;
  right: 0;
  padding: 4px 8px;
  background-color: #f2f2f2;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.09); }
  .back-to-top:hover, .back-to-top:active, .back-to-top:focus {
    background-color: #f2f2f2; }
  .back-to-top--active {
    opacity: 1;
    visibility: visible; }
  .back-to-top__icon {
    border: 1px solid;
    width: 25px;
    height: 25px;
    display: flex;
    margin: 0 auto 8px;
    align-items: center;
    justify-content: center;
    border-radius: 50%; }
  @media (min-width: 1460px) {
    .back-to-top {
      right: 80px; } }

.header {
  position: sticky;
  top: 0;
  background: #fdfdfd;
  z-index: 10; }
  @media (min-width: 768px) {
    .header {
      padding: 1.5rem 0; } }
  .header__container {
    justify-content: space-between;
    align-items: center;
    display: flex;
    width: 95%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 8px; }
    @media (min-width: 768px) {
      .header__container {
        padding: 0 20px; } }
  .header__logo {
    width: 80px; }
    @media (min-width: 768px) {
      .header__logo {
        width: auto; } }
  .header__dropdown .header__link {
    cursor: pointer; }
    .header__dropdown .header__link svg {
      display: inline-block;
      vertical-align: middle; }
  .header__dropdown ul {
    list-style: none;
    padding: 0; }
    .header__dropdown ul.header__dropdown--links {
      position: absolute;
      left: -10px;
      transform: translate(0, 2px);
      opacity: 0;
      visibility: hidden;
      background-color: #fdfdfd;
      box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.21);
      padding: 5px 0;
      font-size: 16px;
      line-height: 24px;
      transition: opacity 0.1s ease-in-out; }
      .header__dropdown ul.header__dropdown--links.header__dropdown--open {
        opacity: 1;
        visibility: visible; }
        .header__dropdown ul.header__dropdown--links.header__dropdown--open:before {
          content: '';
          display: block;
          position: absolute;
          height: 20px;
          top: -20px;
          right: 0;
          width: 50%; }
      .header__dropdown ul.header__dropdown--links li {
        padding-top: 10px; }
        .header__dropdown ul.header__dropdown--links li a {
          padding: 0 5px;
          display: block;
          color: #000000; }
        .header__dropdown ul.header__dropdown--links li:first-child {
          padding-top: 0; }
        .header__dropdown ul.header__dropdown--links li.header__link--active a,
        .header__dropdown ul.header__dropdown--links li a:hover {
          background-color: #386db0;
          color: #fdfdfd; }
  .header__link {
    margin: 48px 1rem 0 1rem;
    padding: 0;
    font-weight: 400;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: fit-content;
    position: relative;
    border-bottom: 2px solid transparent; }
    @media (min-width: 768px) {
      .header__link {
        margin-top: 0; } }
    .header__link:hover {
      color: #386db0;
      border-bottom: 2px solid currentColor; }
    .header__menu .header__link--active {
      color: #386db0;
      border-bottom: 2px solid currentColor; }
    .header__link--button-wrap, .header__link--button-wrap:hover {
      border-bottom-color: transparent; }
    .header__link__dropdown {
      cursor: pointer;
      position: absolute;
      width: 100%;
      opacity: 0; }
  .header__link-button {
    position: relative; }
  .header__dataset-count {
    position: absolute;
    top: -0.5em;
    left: 92%;
    background: #386db0;
    color: #fff;
    border-radius: 15px;
    padding: 0 0.5em;
    line-height: 1.5;
    font-size: 0.75rem;
    text-align: center; }
  .header__menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 0;
    display: flex; }
    @media (min-width: 768px) {
      .header__menu {
        display: flex;
        position: relative;
        background: none;
        height: auto;
        width: auto;
        flex-direction: row; } }
  .header__burger {
    font-size: 3rem; }
  .header__menu-close {
    position: absolute;
    top: 13px;
    right: 16px;
    line-height: 1;
    font-size: 2rem; }

.header--light,
.header--inverted {
  background: transparent; }

.header--inverted .header__logo {
  filter: brightness(0) invert(1); }

.header--inverted .header__burger {
  color: #fff; }

.header--inverted .header__link:hover {
  color: #fff; }

.header--inverted .header__link--active {
  color: #fff !important; }

@media (min-width: 768px) {
  .header--inverted {
    color: #fff; }
    .header--inverted .header__link-button {
      color: #fff; }
      .header--inverted .header__link-button:hover, .header--inverted .header__link-button:focus, .header--inverted .header__link-button:active {
        color: #386db0;
        border-color: #fff;
        background-color: #fff; }
    .header--inverted .header__dataset-count {
      background: #fff;
      color: #386db0; } }

.header--scroll {
  position: absolute;
  width: 100%; }

.github-corner {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100; }
  @media (min-width: 1024px) {
    .github-corner {
      display: block; } }

.horizontal-scroll {
  position: relative;
  height: 100%; }
  .horizontal-scroll__content {
    height: 100%; }
  .horizontal-scroll__left, .horizontal-scroll__right {
    position: absolute;
    top: 0px;
    bottom: 0px;
    padding: auto 0px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .horizontal-scroll__left {
    left: 0;
    background: linear-gradient(270deg, rgba(253, 253, 253, 0) 0%, rgba(204, 204, 204, 0.2) 40%, #cccccc 100%);
    background-repeat: no-repeat; }
    .horizontal-scroll__left > .horizontal-scroll__button {
      margin-left: -12px;
      margin-right: 12px; }
  .horizontal-scroll__right {
    right: 0;
    background: linear-gradient(90deg, rgba(253, 253, 253, 0) 0%, rgba(204, 204, 204, 0.2) 40%, #cccccc 100%);
    background-repeat: no-repeat; }
    .horizontal-scroll__right > .horizontal-scroll__button {
      margin-right: -12px;
      margin-left: 12px; }
  .horizontal-scroll__button {
    width: 24px;
    height: 48px;
    color: #fff;
    background-color: #386db0;
    font-size: 24px;
    justify-content: center;
    border-radius: 4px;
    display: flex;
    align-items: center;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently not supported by any browser */
    z-index: 2; }
    .horizontal-scroll__button--animate {
      animation-fill-mode: both;
      animation-name: eva-shake;
      animation-duration: 1s;
      animation-delay: 1s; }
  .horizontal-scroll__disabled {
    visibility: hidden; }

@keyframes eva-shake {
  from,
  to {
    transform: translate3d(0, 0, 0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-3px, 0, 0); }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(3px, 0, 0); } }

.input {
  font-size: 16px;
  line-height: 24px;
  padding: 4px 8px;
  border: 1px solid #9b9b9b;
  border-radius: 1px;
  outline: none;
  width: 100%; }
  .input:hover {
    box-shadow: 0px 0px 0px 2px #d8d8d8; }
  .input:focus {
    border-color: #386db0; }
  .input--error {
    border-color: #db3b28; }

.input-wrap {
  position: relative;
  display: inline-block; }
  .input-wrap__input {
    padding-right: 24px; }
  .input-wrap__error {
    position: absolute;
    bottom: 40px;
    left: 8px;
    white-space: nowrap;
    color: #db3b28; }
  .input-wrap__clear {
    position: absolute;
    right: 8px;
    top: 6px;
    font-size: 1.2rem; }

.input-copy {
  width: 100%; }
  .input-copy__row {
    display: flex; }
  .input-copy__text {
    flex-grow: 1;
    margin-right: 8px; }
  .input-copy__alert {
    font-size: 14px;
    color: #41a36d;
    margin-bottom: 8px; }

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }
  .layout__content {
    max-width: 1175px;
    padding: 0 8px;
    width: 100%;
    flex: 1; }
    @media (min-width: 768px) {
      .layout__content {
        margin: 1rem auto; } }

.tooltip {
  padding: 8px;
  background-color: white;
  border: 1px solid #cccccc;
  white-space: nowrap;
  border-radius: 4px; }

/*body*/
.modal-open {
  overflow: hidden;
  position: fixed; }
  @media (min-width: 1024px) {
    .modal-open {
      position: absolute; } }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); }
  .modal-backdrop--center {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  @media (min-width: 768px) {
    .modal-backdrop--top {
      padding: 24px 24px 40px 24px; } }
  @media (min-width: 1024px) {
    .modal-backdrop--top {
      padding-top: 80px;
      padding-bottom: 160px; } }

.modal {
  position: relative;
  width: auto;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  border: 1px solid #979797;
  background-color: #fff;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.06);
  overflow: auto;
  display: flex; }
  .modal__content {
    flex: 1 1;
    max-width: 100%; }
  .modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    line-height: 1; }
  .modal__back {
    position: absolute;
    top: 16px;
    left: 16px;
    line-height: 1; }
  .modal--fill-page {
    max-height: 100%;
    overflow: hidden; }
  .modal--full-page {
    max-width: 100%;
    border: none;
    padding: 0;
    display: block; }

.error-page {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  margin-bottom: 48px; }
  .error-page__text {
    margin-bottom: 48px; }
  .error-page__button-row {
    margin-top: 48px; }
  @media (min-width: 768px) {
    .error-page {
      justify-content: space-around;
      flex-direction: row;
      margin-top: 120px;
      align-items: center; } }
  .error-page p {
    font-size: 1.25rem; }

.notification {
  background-color: #41a36d;
  color: #fff; }
  .notification__content {
    display: flex;
    vertical-align: middle;
    font-size: 16px;
    justify-content: center;
    position: relative; }
  .notification__close {
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 22px; }
    .notification__close:hover {
      color: #fff; }

.pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column; }
  @media (min-width: 768px) {
    .pagination {
      flex-direction: row; } }
  .pagination__ends {
    font-size: 16px;
    margin: 0 4px; }
    .pagination__ends:hover {
      color: #386db0; }
    .pagination__ends:disabled {
      color: #979797; }
  .pagination__page {
    margin: 0 2px; }
    .pagination__page:hover {
      color: #386db0; }
    .pagination__page--active {
      background: #386db0;
      border-radius: 2px;
      color: white;
      padding: 0 3px; }
      .pagination__page--active:hover {
        color: white; }
  .pagination__input {
    margin-left: 8px;
    text-align: center;
    width: 50px;
    -moz-appearance: textfield; }
    .pagination__input::-webkit-inner-spin-button, .pagination__input::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .pagination__jumper {
    margin: 8px 0; }
    @media (min-width: 768px) {
      .pagination__jumper {
        margin: 0;
        margin-left: 24px; } }
  .pagination__ellipsis {
    margin: 0 4px; }
  .pagination__button {
    margin-left: 8px;
    padding: 4px 14px; }

.radio {
  display: flex;
  align-items: center;
  margin-top: 8px; }
  .radio__input {
    position: absolute;
    left: -9999px;
    opacity: 0; }
    .radio__input + .radio__label:after {
      content: none; }
    .radio__input:checked + .radio__label:after {
      content: ''; }
  .radio__label {
    position: relative;
    padding-left: 24px; }
    .radio__label:before, .radio__label:after {
      position: absolute; }
    .radio__label:before {
      content: '';
      display: inline-block;
      height: 16px;
      width: 16px;
      border: 1px solid #979797;
      border-radius: 50%;
      top: 3px;
      left: 0; }
    .radio__label:after {
      content: '';
      display: block;
      height: 8px;
      width: 8px;
      background-color: #386db0;
      left: 5px;
      top: 8px;
      border-radius: 50%; }
    .radio__label:hover:before {
      box-shadow: 0px 0px 0px 1px #d8d8d8; }
    .radio__label:active:before, .radio__label:focus:before {
      border-color: #386db0; }

.search-request {
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 1024px) {
    .search-request {
      flex-direction: row; } }
  .search-request__block {
    padding: 16px;
    border-radius: 3px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 18px solid #d4e1f1;
    margin-bottom: 40px;
    margin-top: 16px; }
    @media (min-width: 1024px) {
      .search-request__block {
        margin-right: 40px; } }
    @media (min-width: 1024px) {
      .search-request__block {
        padding: 40px;
        margin-top: 24px; } }
  .search-request__section {
    margin-bottom: 32px; }
  .search-request__required {
    color: #db3b28; }
  .search-request__note {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 4px; }
  .search-request__example {
    color: #999999;
    font-size: 14px;
    font-style: italic; }
  .search-request__subtitle {
    font-size: 20px;
    margin-bottom: 16px; }
  .search-request__label {
    margin-bottom: 4px; }
  .search-request__actions button {
    margin-right: 8px; }

.metadata-modal {
  padding: 24px;
  max-width: 864px;
  overflow: hidden; }
  @media (min-width: 768px) {
    .metadata-modal {
      padding: 56px 56px 0 56px; } }
  .metadata-modal__title {
    margin-bottom: 4px; }
  .metadata-modal__subtitle {
    margin-top: 4px; }
  .metadata-modal__annotations {
    max-height: 700px;
    margin-top: 8px;
    overflow: auto; }
    @media (min-width: 768px) {
      .metadata-modal__annotations {
        margin-left: -56px;
        margin-right: -56px; } }
  .metadata-modal__filter-wrap {
    display: flex;
    margin-top: 32px;
    margin-bottom: 16px;
    flex-direction: column; }
    @media (min-width: 768px) {
      .metadata-modal__filter-wrap {
        flex-direction: row;
        align-items: center;
        justify-content: space-between; } }
  .metadata-modal__filter {
    display: flex;
    align-items: center; }
  .metadata-modal__filter-input {
    margin-left: 8px; }
  .metadata-modal__no-match {
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: center; }

.metadata-item {
  padding: 24px; }
  @media (min-width: 768px) {
    .metadata-item {
      padding-top: 16px;
      padding-bottom: 16px; } }
  .metadata-item__row {
    word-break: break-word; }
    @media (min-width: 768px) {
      .metadata-item__row {
        display: flex;
        flex-direction: row; } }
  .metadata-item:nth-child(2n + 1) {
    background-color: #f2f2f2; }

.processing-info-modal {
  padding: 56px;
  max-width: 864px; }
  .processing-info-modal__title {
    margin-bottom: 16px; }
  .processing-info-modal__subtitle {
    margin-top: 16px; }
  .processing-info-modal__section {
    border-top: 1px solid #979797;
    margin: 24px -32px 0 -32px;
    padding: 24px 32px 0 32px; }
  .processing-info-modal__version {
    padding-right: 32px;
    text-align: right; }

.dot-label {
  background-color: #f3faf6;
  line-height: 1;
  padding: 4px 8px 4px 8px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 1.5rem; }
  .dot-label:before {
    content: ' ';
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 4px solid #41a36d;
    display: inline-block;
    margin-right: 8px; }
  .dot-label--submitter {
    background-color: #fffee4; }
    .dot-label--submitter:before {
      border-color: #dace00; }
  .dot-label--info {
    background-color: #d6e8ff; }
    .dot-label--info:before {
      border-color: #002f6c; }

.arrow {
  display: block;
  position: relative;
  border-top: 2px solid #979797;
  margin-top: 5px;
  margin-bottom: 5px; }
  .arrow:before {
    content: ' ';
    border-top: 2px solid #979797;
    position: absolute;
    top: -6px;
    right: 0;
    transform: rotate(30deg);
    width: 16px; }
  .arrow:after {
    content: ' ';
    border-top: 2px solid #979797;
    position: absolute;
    top: 2px;
    right: 0;
    transform: rotate(-30deg);
    width: 16px; }

.pipeline {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  margin: 16px 0 32px 0;
  justify-content: space-around; }
  .pipeline__item {
    margin-left: 8px;
    margin-right: 8px; }
  .pipeline__arrow {
    flex-grow: 1; }

.samples-table-layout {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .samples-table-layout__main {
    flex: 1 1;
    overflow: hidden;
    padding-left: 16px;
    margin-left: -16px;
    padding-right: 16px;
    margin-right: -16px; }
  .samples-table-layout__footer {
    padding-top: 16px; }

.samples-table-container {
  position: relative;
  height: 100%; }

.samples-table {
  height: 100%;
  max-height: 920px;
  border-color: #ccc;
  font-size: 14px; }
  .samples-table__th {
    padding: 7px 16px !important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: bold; }
    .samples-table__th.-sort-asc, .samples-table__th.-sort-desc {
      box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.6) !important; }
  .samples-table .rt-tbody {
    min-height: 100px; }
    .ios .samples-table .rt-tbody {
      overflow-y: scroll;
      /* has to be scroll, not auto */
      -webkit-overflow-scrolling: touch; }
    .samples-table .rt-tbody .rt-td,
    .samples-table .rt-tbody .rt-tr-group {
      border-color: #ccc !important; }
  .samples-table .rt-thead .rt-td,
  .samples-table .rt-thead .rt-th {
    border-color: #ccc;
    border-bottom-style: solid;
    border-bottom-width: 1px; }
  .samples-table__message {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    padding: 48px 0;
    color: rgba(0, 0, 0, 0.5); }
    .samples-table__message--error {
      color: #db3b28; }
  .samples-table__sort {
    flex-direction: column;
    margin-left: 8px;
    display: none;
    color: #8d8d8d; }
    .rt-th.-cursor-pointer .samples-table__sort {
      display: flex; }
    .rt-th.-sort-asc .samples-table__sort {
      display: none; }
    .rt-th.-sort-desc .samples-table__sort {
      display: none; }
  .samples-table__sort-desc {
    display: none;
    margin-left: 8px; }
    .rt-th.-sort-asc .samples-table__sort-desc {
      display: none; }
    .rt-th.-sort-desc.-cursor-pointer .samples-table__sort-desc {
      display: block; }
  .samples-table__sort-asc {
    display: none;
    margin-left: 8px; }
    .rt-th.-sort-asc.-cursor-pointer .samples-table__sort-asc {
      display: block; }
    .rt-th.-sort-desc .samples-table__sort-asc {
      display: none; }
  .samples-table .rt-td {
    padding: 8px 16px !important;
    white-space: normal !important; }
  .samples-table .rt-tr.-even {
    background: #f2f2f2; }
  .samples-table .rt-tr:hover {
    background-color: #e2e2e2; }
  .samples-table__add-remove {
    display: flex;
    align-items: center; }
  .samples-table .dataset-remove-button__added-container {
    display: block; }
  .samples-table__notice {
    margin-bottom: 40px; }
  .samples-table__filter {
    display: flex;
    align-items: center;
    justify-content: flex-start; }
  .samples-table__filter-input {
    margin-left: 8px;
    width: 180px; }
  .samples-table .button {
    padding-top: 2px;
    padding-bottom: 2px; }

.info-icon {
  vertical-align: sub; }

.sample-not-processed {
  font-size: 0.875rem; }

.search-input {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  /*input-text*/ }
  @media (min-width: 768px) {
    .search-input {
      flex-direction: row; } }
  .search-input__textbox {
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .search-input__textbox {
        margin-bottom: 0;
        margin-right: 16px;
        min-width: 450px;
        padding: 11px 24px; } }
    .search-input__textbox:focus {
      outline: none; }
  .search-input__button {
    font-size: 18px; }

.side-menu {
  background-color: #fff;
  width: 250px;
  min-height: 100%; }
  .side-menu__content {
    padding: 16px; }
  .side-menu__close {
    display: block;
    margin-left: auto; }
  .side-menu--top {
    width: 100%;
    min-height: auto; }

.spinner {
  display: block;
  padding: 20px; }
  .spinner svg {
    display: block;
    margin: auto;
    animation: spinner-spin 3.2s ease-in-out infinite; }
    .spinner svg line {
      animation-duration: 3.2s;
      animation-timing-function: steps(6);
      animation-iteration-count: infinite; }

@keyframes spinner-spin {
  0%,
  86% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(180deg); } }

@keyframes spinner-pair-0 {
  0% {
    opacity: 1; }
  0%,
  100% {
    opacity: 0; } }

@keyframes spinner-pair-reverse-0 {
  0% {
    opacity: 0; }
  0%,
  100% {
    opacity: 1; } }

@keyframes spinner-pair-1 {
  0% {
    opacity: 1; }
  17%,
  100% {
    opacity: 0; } }

@keyframes spinner-pair-reverse-1 {
  0% {
    opacity: 0; }
  17%,
  100% {
    opacity: 1; } }

@keyframes spinner-pair-2 {
  0% {
    opacity: 1; }
  34%,
  100% {
    opacity: 0; } }

@keyframes spinner-pair-reverse-2 {
  0% {
    opacity: 0; }
  34%,
  100% {
    opacity: 1; } }

@keyframes spinner-pair-3 {
  0% {
    opacity: 1; }
  50%,
  100% {
    opacity: 0; } }

@keyframes spinner-pair-reverse-3 {
  0% {
    opacity: 0; }
  50%,
  100% {
    opacity: 1; } }

@keyframes spinner-pair-4 {
  0% {
    opacity: 1; }
  67%,
  100% {
    opacity: 0; } }

@keyframes spinner-pair-reverse-4 {
  0% {
    opacity: 0; }
  67%,
  100% {
    opacity: 1; } }

.terms-of-use__checkbox {
  margin-top: 0; }

.time-range-select {
  justify-content: flex-end;
  display: flex; }
  .time-range-select__label {
    margin-right: 16px;
    font-weight: 700; }
  .time-range-select__field {
    align-items: center;
    display: flex; }

.select {
  position: relative; }
  .select__dropdown {
    position: relative;
    min-width: 130px;
    padding: 5px 10px;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    border: none;
    background: none;
    border-radius: 0;
    outline: none;
    z-index: 2;
    color: #386db0;
    font-weight: 700;
    border-bottom: 2px solid currentColor;
    font-family: inherit;
    cursor: pointer; }
    .select__dropdown:focus {
      outline: none; }
  .select:after {
    content: '';
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: block;
    position: absolute;
    border-top: 6px solid #979797;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    z-index: 1; }

.toggle {
  display: inline-block;
  border: 1px solid #979797;
  border-radius: 3px;
  margin: 1.5rem 0 0.5rem; }
  .toggle__container {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
  .toggle__item {
    border-right: 1px solid #979797; }
    .toggle__item:last-of-type {
      border-right: 0; }
  .toggle__button {
    padding: 4px 1.5rem; }
    .toggle__button--active {
      box-shadow: inset 0 -3px 0 0 #386db0; }
    .toggle__button:hover {
      background: #f2f2f2; }
    .toggle__button:focus, .toggle__button:active {
      background: #e5e5e5; }

.info-box {
  background: #002f6c;
  color: #fff;
  position: relative;
  font-size: 16px;
  padding: 8px 40px 8px 8px;
  margin-bottom: 24px;
  border-radius: 2px; }
  @media (min-width: 768px) {
    .info-box {
      text-align: center;
      color: #214169;
      background: linear-gradient(180deg, #dfe9f3 0%, #ffffff 100%);
      padding: 32px;
      font-size: 22px; } }
  .info-box__title {
    margin-bottom: 8px;
    font-weight: bold; }
  .info-box__inner {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }
  .info-box__close {
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -15px;
    color: #fff;
    font-size: 20px; }
    @media (min-width: 768px) {
      .info-box__close {
        color: #214169;
        top: 10px;
        margin-top: 0; } }

.compendia {
  margin-bottom: 100px; }
  .compendia mark {
    color: #db3b28;
    background-color: #f2f2f2;
    padding: 0 6px; }
  .compendia__header {
    position: relative;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.2); }
  .compendia__header-background {
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(#dfe9f3 0%, #ffffff 100%); }
    .compendia__header-background canvas {
      opacity: 0.1; }
  .compendia__header-inner {
    color: #002f6c;
    text-align: center;
    position: relative;
    padding: 0 8px 16px 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column; }
    @media (min-width: 1024px) {
      .compendia__header-inner {
        flex-direction: row;
        align-items: center;
        min-height: 375px;
        padding-top: 163px;
        padding-bottom: 96px; } }
  .compendia__title {
    font-size: 1.2rem;
    margin: 60px auto; }
    @media (min-width: 768px) {
      .compendia__title {
        font-size: 2rem;
        margin: 80px auto; } }
    @media (min-width: 1024px) {
      .compendia__title {
        margin: 0 auto; } }
  .compendia__tabs {
    display: block;
    list-style: none;
    text-align: center;
    margin: 72px 0 125px;
    padding: 0; }
  .compendia__tab {
    display: inline-block;
    color: #386db0;
    font-size: 26px;
    line-height: 24px;
    margin: 0 32px; }
    .compendia__tab--active {
      border-bottom: 4px solid #386db0;
      font-weight: bold; }
  .compendia__section {
    text-align: center;
    padding: 100px 52px 0;
    width: 100%;
    max-width: 1141px;
    margin: 0 auto; }
    .compendia__section--inline {
      display: flex;
      justify-content: space-between;
      padding: 100px 0 0; }
      .compendia__section--inline p {
        display: block;
        max-width: 380px;
        width: 100%;
        margin: 16px 0; }
      .compendia__section--inline .compendia__section {
        padding: 0 52px;
        margin: 0;
        text-align: left; }
        @media (min-width: 1024px) {
          .compendia__section--inline .compendia__section {
            flex: 2 1; }
            .compendia__section--inline .compendia__section + .compendia__section {
              flex: 1 0; } }
      .compendia__section--inline .compendia__section-title {
        font-size: 22px;
        line-height: 27px;
        margin: 32px 0; }
    .compendia__section + .species-compendia__section {
      margin-top: 100px;
      border-top: 3px solid #f2f2f2; }
  .compendia__section-title {
    font-size: 1.8rem;
    margin: 0 0 48px 0; }
  .compendia__example-list {
    display: flex;
    flex-direction: column; }
    @media (min-width: 768px) {
      .compendia__example-list {
        flex-direction: row;
        justify-content: space-between; }
        .compendia__example-list > div {
          max-width: 400px;
          text-align: left; } }
    @media (min-width: 1024px) {
      .compendia__example-list {
        padding-left: 80px;
        padding-right: 80px; } }
  .compendia .compendia__icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.2);
    padding: 20px 15.25px;
    background-color: #fdfdfd; }
    .compendia .compendia__icon img {
      display: block;
      position: relative;
      top: 50%;
      left: 50%;
      transform: translate(-50%, 0); }
  .compendia .compendia__list {
    position: relative;
    background: linear-gradient(180deg, rgba(12, 52, 131, 0.94) 0%, #4b6db1 100%); }
  .compendia__download {
    background: linear-gradient(180deg, rgba(12, 52, 131, 0.94) 0%, #4b6db1 100%);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.5); }
  .compendia__name {
    padding: 69px 0 40px;
    text-align: center;
    color: #fdfdfd;
    font-size: 28px;
    line-height: 33px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }
  .compendia__process-download {
    padding: 0 32px 72px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    max-width: 1105px;
    margin: 0 auto;
    flex-wrap: wrap; }
    .compendia__process-download mark {
      background-color: #aac4e4; }
  .compendia__process {
    width: 483px;
    color: #f2f2f2;
    font-size: 22px;
    line-height: 27px; }
  .compendia__process,
  .compendia .download-compendia {
    margin: 20px auto; }

.download-compendia {
  background-color: #fdfdfd;
  padding: 24px 40px;
  border-radius: 4px;
  box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.2);
  color: #000;
  text-align: left;
  max-width: 465px;
  width: 100%;
  flex-shrink: 0; }
  .download-compendia__title {
    font-size: 1.6rem;
    margin-bottom: 28px; }
  .download-compendia__choose {
    font-size: 1.3rem; }
  .download-compendia__dropdown {
    flex: 1 1 100%; }
  .download-compendia__info {
    margin: 26px 0 0 0;
    font-size: 14px;
    line-height: 21px; }
    .download-compendia__info p {
      font-size: 16px;
      display: inline-block;
      line-height: 24px;
      vertical-align: middle; }
    .download-compendia__info a {
      color: #386db0;
      text-decoration: underline; }
    .download-compendia__info img {
      display: inline-block;
      vertical-align: middle;
      margin: 0 8px 0 0; }
  .download-compendia__button {
    font-size: 18px;
    margin-left: 8px; }
  .download-compendia__row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column; }
    @media (min-width: 768px) {
      .download-compendia__row {
        flex-direction: row; } }
  @media (min-width: 1024px) {
    .download-compendia {
      margin-left: 68px; } }

.dashboard {
  flex: 1;
  background: #fdfdfd; }
  .dashboard__container {
    padding: 32px 0 64px;
    margin: 0 auto;
    width: 90%;
    max-width: 1400px; }

.recharts-legend-wrapper {
  bottom: -15px !important; }

.dashboard-section-block,
.responsive-chart {
  flex-direction: column;
  display: flex;
  padding: 24px;
  background: #fff;
  border: 1px solid #d8d8d8; }
  @media screen and (min-width: 600px) {
    .dashboard-section-block--medium,
    .responsive-chart--medium {
      grid-row: span 2; }
    .dashboard-section-block--large,
    .responsive-chart--large {
      grid-column: span 3;
      grid-row: span 2; } }
  .dashboard-section-block__title,
  .responsive-chart__title {
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3; }
  .dashboard-section-block__text,
  .responsive-chart__text {
    font-size: 2.5rem; }
  .dashboard-section-block__container,
  .responsive-chart__container {
    position: relative; }
    .dashboard-section-block__container--medium:after,
    .responsive-chart__container--medium:after {
      padding-bottom: 100%; }
    .dashboard-section-block__container--large:after,
    .responsive-chart__container--large:after {
      padding-bottom: 75%; }
      @media screen and (min-width: 600px) {
        .dashboard-section-block__container--large:after,
        .responsive-chart__container--large:after {
          padding-bottom: 50%; } }
    .dashboard-section-block__container:after,
    .responsive-chart__container:after {
      display: block;
      content: '';
      width: 100%;
      height: 0; }
  .dashboard-section-block__absolute,
  .responsive-chart__absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; }

.dashboard-section {
  margin: 32px 0 64px; }
  .dashboard-section__title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1; }
  .dashboard-section__grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 32px;
    grid-template-rows: auto; }

.exec-dash {
  font-size: 14px; }
  @media (min-width: 768px) {
    .exec-dash {
      font-size: 20px; } }
  @media (min-width: 2500px) {
    .exec-dash {
      font-size: 32px; } }
  .exec-dash__header {
    margin-bottom: 2em;
    background-color: #386db0;
    color: #fff;
    display: flex;
    align-items: center;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 2em; }
  .exec-dash__error {
    color: #db3b28; }
  .exec-dash__grid {
    margin-top: 1em;
    display: grid;
    grid-template-columns: 1;
    grid-gap: 1em;
    grid-template-rows: auto;
    margin-bottom: 1em;
    margin-left: 1em;
    margin-right: 1em; }
    @media (min-width: 768px) {
      .exec-dash__grid {
        grid-template-columns: 1fr 1fr 1fr;
        margin-left: 2em;
        margin-right: 2em; } }
    @media (min-width: 1024px) {
      .exec-dash__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } }
  .exec-dash__block, .exec-dash__sample-breakdown, .exec-dash__sample-graph {
    background: #fff;
    border: 1px solid #d8d8d8;
    padding: 1em 2em;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .exec-dash__block-header {
    display: flex;
    flex-direction: column; }
    @media (min-width: 768px) {
      .exec-dash__block-header {
        flex-direction: row;
        justify-content: space-between; } }
  .exec-dash__block-number {
    font-weight: 600;
    font-size: 1.6em; }
  .exec-dash__block-small {
    font-size: 0.8em; }
  .exec-dash__sample-breakdown {
    display: block;
    text-align: left; }
    @media (min-width: 768px) {
      .exec-dash__sample-breakdown {
        grid-column: span 3; } }
  .exec-dash__sample-graph {
    display: block;
    text-align: left;
    grid-column: 1/-1; }
  .exec-dash__numbers-table {
    display: flex;
    flex-direction: column;
    margin-top: 1em; }
    @media (min-width: 768px) {
      .exec-dash__numbers-table {
        flex-direction: row;
        justify-content: space-between; } }
    .exec-dash__numbers-table > div > div:last-child {
      font-weight: 600;
      font-size: 1.6em; }
  .exec-dash__chart {
    position: relative;
    padding-bottom: 50%;
    margin-top: 1em;
    max-height: 300px; }
  .exec-dash__chart-table th {
    font-weight: 600; }
  .exec-dash__chart-table td {
    font-size: 0.8em;
    color: #979797;
    padding-right: 4em; }
  .exec-dash__note {
    font-size: 0.8em;
    color: #979797;
    padding-left: 2em; }

.running-status {
  margin-bottom: 16px;
  display: block;
  text-align: center;
  background-color: #db3b28;
  border-radius: 4px;
  color: #fff;
  grid-column: 1/-1;
  padding: 0.8em; }
  .running-status--running {
    background-color: #41a36d; }
  .running-status--running-fast {
    background-color: #41a36d;
    padding: 0; }
  .running-status svg {
    font-size: 1.2em;
    vertical-align: sub; }
  .running-status__stripes {
    padding: 0.4em;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1em 1em;
    animation: progress-bar-stripes 1s linear infinite;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; }
    .running-status__stripes img {
      width: 2em;
      height: 2em;
      margin-right: 0.5em; }

@keyframes progress-bar-stripes {
  from {
    background-position: 0 0; }
  to {
    background-position: 1em 0; } }

.exec-dash--tv {
  position: relative;
  font-size: 18px; }
  .exec-dash--tv .exec-dash__header {
    margin-bottom: 0;
    background: linear-gradient(#fff, #dfe9f3);
    color: #002f6c; }
  .exec-dash--tv .exec-dash__grid {
    display: block; }
  .exec-dash--tv .exec-dash__block, .exec-dash--tv .exec-dash__sample-breakdown, .exec-dash--tv .exec-dash__sample-graph {
    float: left;
    margin-bottom: 16px;
    margin-right: 64px;
    min-height: 175px; }
  .exec-dash--tv .exec-dash__sample-breakdown {
    width: 800px;
    margin-right: 0; }
  .exec-dash--tv .exec-dash__sample-graph {
    clear: both;
    width: 100%; }
  .exec-dash--tv .exec-dash__chart {
    padding-bottom: 25%; }
  .exec-dash--tv .exec-dash__note {
    clear: both; }
  .exec-dash--tv .recharts-line-curve {
    stroke-width: 5px; }

.sample-page {
  padding-bottom: 56px; }

.jobs-table {
  width: 100%; }
  .jobs-table th {
    text-align: left; }
  .jobs-table__job > td {
    padding-top: 16px; }
  .jobs-table__job--select {
    font-weight: bold; }

.job-group {
  margin-bottom: 40px;
  margin-top: 20px; }

.sample-debug__cancel {
  text-decoration: line-through; }

.sample-debug-section {
  margin-bottom: 48px; }

.about {
  padding-bottom: 152px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  /*.button.button--large*/ }
  .about__section {
    margin-bottom: 40px;
    padding-left: 24px;
    padding-right: 24px;
    width: 1056px;
    max-width: 100%; }
    @media (min-width: 768px) {
      .about__section {
        margin-bottom: 104px; } }
  .about__section-divider {
    border-top: 3px solid #f2f2f2;
    padding-top: 40px; }
    @media (min-width: 768px) {
      .about__section-divider {
        padding-top: 104px; } }
  .about__header {
    position: relative;
    background: linear-gradient(179.93deg, rgba(12, 52, 131, 0.94) 0%, rgba(25, 64, 142, 0.95) 16.45%, #6b8cce 43.03%, #a2b6df 69.1%, #a2b6df 100%);
    margin-left: -8px;
    margin-right: -8px;
    padding: 80px 20px 168px 20px;
    width: 100%;
    overflow: hidden; }
    @media (min-width: 768px) {
      .about__header {
        padding-top: 120px; } }
    @media (min-width: 1024px) {
      .about__header {
        overflow: visible;
        min-height: 572px;
        padding-top: 200px; } }
  .about__header-bg {
    position: absolute;
    width: 880px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    bottom: 0;
    pointer-events: none; }
    @media (min-width: 1024px) {
      .about__header-bg {
        width: 1348px;
        max-width: 100%; } }
  .about__tagline {
    color: #fdfdfd;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    text-shadow: 0 3px 19px rgba(0, 0, 0, 0.5); }
    @media (min-width: 768px) {
      .about__tagline {
        z-index: 30; } }
    @media (min-width: 1024px) {
      .about__tagline {
        font-size: 55px;
        line-height: 1;
        max-width: 848px;
        margin-left: auto;
        margin-right: auto; } }
  .about__top-box {
    margin-top: -112px;
    position: relative; }
    @media (min-width: 768px) {
      .about__top-box {
        z-index: 30; } }
  .about__top-box-tagline {
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px; }
    @media (min-width: 768px) {
      .about__top-box-tagline {
        font-size: 26px;
        margin-bottom: 40px; } }
  .about__stats-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 768px) {
      .about__stats-list {
        flex-direction: row; } }
  .about__stat-item {
    text-align: center;
    margin-left: 16px;
    margin-right: 16px; }
  .about__stat {
    font-size: 2.3rem;
    color: #386db0; }
  @media (min-width: 1024px) {
    .about__stat-text {
      font-size: 20px; } }
  .about__info-item {
    display: flex;
    flex-direction: column; }
    @media (min-width: 768px) {
      .about__info-item {
        flex-direction: row;
        align-items: center; }
        .about__info-item--right {
          flex-direction: row-reverse; } }
  .about__info-item-image {
    max-width: 200px;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block; }
    @media (min-width: 768px) {
      .about__info-item-image {
        max-width: 400px;
        max-height: 355px;
        margin-right: 88px; }
        .about__info-item--right .about__info-item-image {
          margin-right: 0;
          margin-left: 88px; } }
  .about__info-item-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .about__info-item-title {
        text-align: left;
        font-size: 26px; } }
  .about__info-item-text {
    font-size: 16px; }
  .about__section-created {
    margin-bottom: 56px; }
    .about__section-created__title {
      font-size: 18px;
      text-align: center;
      margin-bottom: 48px; }
      @media (min-width: 768px) {
        .about__section-created__title {
          font-size: 22px;
          margin-bottom: 80px; } }
    .about__section-created__logo-container {
      text-align: center; }
      @media (min-width: 768px) {
        .about__section-created__logo-container {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center; } }
    .about__section-created__logo:first-child {
      margin-bottom: 50px; }
    @media (min-width: 768px) {
      .about__section-created__logo {
        flex-grow: 1; } }
  .about__section-donate {
    margin-bottom: 88px; }
    .about__section-donate__container {
      display: flex;
      flex-direction: column; }
      @media (min-width: 768px) {
        .about__section-donate__container {
          flex-direction: row;
          align-items: center; } }
    .about__section-donate__title {
      font-size: 18px;
      text-align: center;
      margin-bottom: 24px; }
      @media (min-width: 1024px) {
        .about__section-donate__title {
          margin-left: 104px;
          margin-bottom: 0; } }
    .about__section-donate__action {
      text-align: center; }
  @media (min-width: 1024px) {
    .about__button-donate {
      font-size: 20px;
      padding: 16px 32px;
      margin-left: 104px;
      margin-right: 104px; } }

.box {
  border-radius: 8px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  padding: 16px; }
  @media (min-width: 768px) {
    .box {
      padding: 32px; } }

.dataset__message {
  margin-top: 24px;
  max-width: 675px;
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 1024px) {
    .dataset__message {
      margin: 96px auto; } }

.dataset__container {
  margin-bottom: 40px; }
  .dataset__container:last-of-type {
    border: none; }

.dataset__image {
  margin-top: 96px;
  text-align: center; }

.dataset__email-modal {
  padding: 32px 80px;
  max-width: 672px; }

.dataset__email-modal-title {
  margin-bottom: 16px; }

.dataset__way-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column; }
  @media (min-width: 768px) {
    .dataset__way-container {
      flex-direction: row; } }

.dataset__processed-text {
  margin-bottom: 16px;
  flex: 1 0 auto; }
  @media (min-width: 768px) {
    .dataset__processed-text {
      max-width: 66.66667%;
      padding-right: 48px;
      margin-bottom: 0; } }

.dataset__way-section {
  margin-top: 32px;
  border-top: 1px solid #979797;
  padding-top: 32px;
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px; }

.dataset__way-title {
  margin-bottom: 16px; }

.dataset__way-subtitle {
  margin-bottom: 32px; }

.dataset__try-again-button {
  margin-bottom: 16px; }

.dataset__failure-reason {
  margin-top: 16px;
  color: #db3b28;
  margin-bottom: 16px;
  font-family: 'Oxygen Mono', monospace;
  background-color: #f2f2f2;
  padding: 8px; }

.dataset__next-steps {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  border-top: 1px solid #979797; }
  .dataset__next-steps img {
    margin-right: 90px;
    display: none;
    width: 380px;
    height: 380px; }
    @media (min-width: 1024px) {
      .dataset__next-steps img {
        display: block; } }

.dataset__tip-info {
  margin-top: 16px; }

.form-edit-email {
  display: flex;
  margin-bottom: 16px;
  flex-direction: column; }
  .form-edit-email__input {
    margin-right: 8px; }
    @media (min-width: 768px) {
      .form-edit-email__input {
        width: 376px; } }
  @media (min-width: 768px) {
    .form-edit-email {
      flex-direction: row; } }

.modify-dataset-modal {
  padding: 40px 80px;
  min-width: 580px; }
  .modify-dataset-modal__options {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px; }
  .modify-dataset-modal__actions {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-around; }

.share-link-modal {
  padding: 40px 80px;
  max-width: 625px; }
  .share-link-modal__title {
    margin-bottom: 16px; }

.downloads__help-icon {
  display: inline-block;
  margin-top: -5px; }
  .downloads__help-icon img {
    vertical-align: super;
    width: 16px;
    height: 16px; }

.downloads__heading {
  font-size: 1.625rem; }

.downloads__bar, .downloads__fieldset {
  display: flex; }

.downloads__fieldset {
  margin-bottom: 16px;
  align-items: center; }
  @media (min-width: 768px) {
    .downloads__fieldset {
      margin-bottom: 0; } }

.downloads__bar {
  border-bottom: 1px solid #979797;
  padding-bottom: 1rem;
  flex-direction: column;
  margin-bottom: 2rem; }

.downloads__actions {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px; }
  @media (min-width: 768px) {
    .downloads__actions {
      align-items: center;
      flex-direction: row;
      margin-bottom: 0;
      flex: 2 100%;
      justify-content: space-between; } }
  @media (min-width: 1024px) {
    .downloads__actions {
      flex: 1 auto; } }

.downloads__advanced-options {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.downloads {
  margin-bottom: 72px; }
  .downloads__species-title {
    text-transform: capitalize; }
  .downloads__section {
    margin-bottom: 2rem; }
  @media (min-width: 768px) {
    .downloads__cards {
      display: grid;
      grid-column-gap: 14px;
      grid-template-columns: repeat(3, 1fr); } }
  .downloads__file-modifier {
    margin-right: 48px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px; }
  .downloads__card {
    background-color: #fdfdfd;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 1rem 0;
    padding: 16px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .downloads__card--summary {
      padding-left: 1.5rem;
      padding-right: 1.5rem; }
  .downloads__card-stats {
    align-items: center;
    display: flex;
    justify-content: space-between; }
  .downloads__card-stat {
    font-size: 1rem; }
  .downloads__table {
    border-collapse: collapse;
    font-size: 1.125rem;
    width: 100%; }
  .downloads__table-cell, .downloads__table-header {
    border-bottom: 2px solid #979797;
    font-weight: 400;
    padding: 1rem 0; }
  .downloads__table-cell--value {
    color: #386db0;
    font-size: 1.375rem; }
  .downloads__table-row:last-of-type .downloads__table-cell {
    border-bottom: 0; }
  .downloads__sample {
    border-bottom: 2px solid #979797;
    margin: 0 1.5rem 1.5rem;
    padding-bottom: 1rem;
    text-align: left; }
    @media (min-width: 768px) {
      .downloads__sample {
        display: flex;
        justify-content: space-between;
        align-items: center; } }
    .downloads__sample:last-of-type {
      border-bottom: 0;
      margin-bottom: 0; }
  .downloads__sample-header {
    text-align: left; }
    @media (min-width: 768px) {
      .downloads__sample-header {
        display: flex;
        justify-content: space-between;
        align-items: center; } }
  .downloads__sample-stats {
    display: flex;
    margin: 0 -2rem 1.5rem;
    flex-wrap: wrap; }
  .downloads__sample-stat {
    display: flex;
    align-items: center;
    margin: 0.5rem 2rem; }
    @media (min-width: 768px) {
      .downloads__sample-stat {
        margin: 0 2rem; } }
    .downloads__sample-stat--experiment {
      font-family: 'Rubik', sans-serif; }
  .downloads__sample-icon {
    height: 24px;
    margin-right: 8px; }
  .downloads__experiment-info {
    font-family: 'Rubik', sans-serif; }
  .downloads__label {
    margin-right: 1.5rem; }
  .downloads__label-text {
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .downloads__label-text {
        margin-bottom: 0;
        display: inline-block; } }
  .downloads__experiment-title {
    font-size: 1rem;
    font-weight: 600;
    max-width: 640px;
    margin-bottom: 1rem;
    display: block; }
  .downloads__experiment-metadata {
    margin: 0 0 1.5rem; }
  .downloads__empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .downloads__empty-heading {
    margin: 64px 0 16px; }
  .downloads__empty-image {
    margin-top: 60px; }
  .downloads__species-filters {
    display: flex;
    flex-flow: row wrap;
    align-items: baseline;
    margin-left: 24px;
    margin-bottom: 16px; }
  .downloads__species-filter-item {
    margin-right: 16px; }
  .downloads__remove-confirmation {
    display: flex;
    flex-direction: column;
    justify-content: space-around; }
    @media (min-width: 768px) {
      .downloads__remove-confirmation {
        flex-direction: row; } }

.samples-modal {
  max-width: 950px;
  padding-top: 40px; }

.experiment {
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin: 16px 0 40px; }
  .experiment__header-title {
    word-break: break-all;
    word-break: break-word;
    display: block;
    font-size: 1.25rem; }
    @media (min-width: 768px) {
      .experiment__header-title {
        flex: 1;
        margin-right: 16px; } }
  .experiment__title {
    margin-bottom: 16px; }
  .experiment__header {
    margin-bottom: 16px;
    max-width: 1110px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .experiment__header {
        display: flex;
        flex-direction: row;
        justify-content: space-between; } }
  .experiment__accession {
    display: flex;
    align-items: center;
    margin-bottom: 8px; }
  .experiment__stats {
    border-top: 1px solid #979797;
    border-bottom: 1px solid #979797;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap; }
  .experiment__stats-item {
    display: flex;
    flex-basis: 50%;
    align-items: center;
    margin: 8px 0; }
    @media (min-width: 768px) {
      .experiment__stats-item {
        flex-basis: 33.33333%; } }
    .experiment__stats-item--lg {
      flex-basis: 100%; }
  .experiment__stats-icon {
    height: 24px;
    margin-right: 8px; }
  .experiment__source-database {
    border-top: 1px solid #979797;
    margin-top: 24px;
    padding-top: 16px;
    display: flex; }
  .experiment__row {
    padding: 24px;
    margin-left: -24px;
    margin-right: -24px;
    word-break: break-word; }
    @media (min-width: 768px) {
      .experiment__row {
        padding-top: 16px;
        padding-bottom: 16px;
        padding-right: 152px;
        display: flex;
        flex-direction: row; } }
    .experiment__row:nth-child(2n + 1) {
      background-color: #f2f2f2; }
  .experiment__section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #979797; }
  .experiment__row-label {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .experiment__row-label {
        text-align: right;
        margin-right: 24px;
        flex-basis: 192px;
        flex-shrink: 0;
        font-size: 1em; } }
    .experiment__row-label--light {
      font-weight: normal; }
  .experiment__sample-commands {
    margin-bottom: 16px; }
    @media (min-width: 1024px) {
      .experiment__sample-commands {
        display: flex;
        flex-direction: row;
        justify-content: space-between; } }
  .experiment__per-page-dropdown {
    white-space: nowrap; }
  .experiment__not-provided {
    color: #9b9b9b;
    font-style: italic; }
  .experiment__sample-actions {
    flex-grow: 1; }
    @media (min-width: 1024px) {
      .experiment__sample-actions {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        padding-left: 32px; } }
  .experiment__samples-table-block {
    margin-bottom: 80px; }
  .experiment__sample-table-loading-wrap {
    padding-top: 40px;
    min-height: 1200px; }
  .experiment__sample-table-expand {
    padding-top: 6px;
    margin-left: 16px;
    display: none; }
    @media (min-width: 1600px) {
      .experiment__sample-table-expand {
        display: block; } }
  .experiment__expand-button {
    color: #386db0;
    display: flex;
    align-items: center; }
    .experiment__expand-button > img {
      margin-right: 8px; }

.main__container, .main__steps-container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto; }
  .main__container--searchbox {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: #fdfdfd;
    box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.2);
    padding: 24px;
    margin-bottom: 24px;
    margin-top: -220px;
    z-index: 30;
    max-width: 880px; }
    @media (min-width: 768px) {
      .main__container--searchbox {
        padding: 72px 0 44px 0;
        align-items: center; } }

@media (min-width: 1024px) {
  .main__steps-container {
    max-width: 1250px;
    display: flex;
    justify-content: space-between; } }

.main__col {
  margin-bottom: 48px; }
  @media (min-width: 1024px) {
    .main__col {
      padding: 0 80px;
      border-right: 3px solid #f2f2f2;
      flex: 1 1; }
      .main__col:first-of-type {
        padding-left: 0; }
      .main__col:last-of-type {
        border-right: none;
        padding-right: 0; } }

.main__section {
  padding: 56px 0 0; }
  @media (min-width: 768px) {
    .main__section {
      padding: 104px 0; } }
  .main__section--gray {
    background: #f2f2f2; }
  .main__section--blue-gradient {
    background: linear-gradient(180deg, rgba(12, 52, 131, 0.94) 0%, #4b6db1 100%);
    text-align: center;
    color: #fff;
    padding: 72px 0; }
  .main__section--searchbox {
    position: relative;
    overflow: hidden;
    min-height: 375px;
    background: linear-gradient(179.93deg, rgba(12, 52, 131, 0.94) 0%, rgba(25, 64, 142, 0.95) 16.45%, #6b8cce 43.03%, #a2b6df 69.1%, #a2b6df 100%);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden; }
    @media (min-width: 1024px) {
      .main__section--searchbox {
        overflow: visible;
        min-height: 480px; } }
  .main__section--explore {
    background-color: #f2f2f2; }

.main__heading-1 {
  font-size: 1.6rem;
  text-align: center; }
  @media (min-width: 768px) {
    .main__heading-1 {
      font-size: 2rem; } }

.main__heading-2 {
  font-size: 1.5rem;
  display: flex;
  margin-bottom: 16px;
  flex-direction: column;
  align-items: flex-start; }
  @media (min-width: 768px) {
    .main__heading-2 {
      font-size: 1.75rem;
      margin-bottom: 32px;
      flex-direction: row; } }

.main__paragraph {
  font-size: 1.25rem; }

.main__icon {
  margin-right: 24px;
  width: 56px; }

.main__search-suggestions {
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  align-items: center; }
  @media (min-width: 768px) {
    .main__search-suggestions {
      justify-content: space-between;
      flex-flow: row wrap;
      margin: 40px; } }

.main__search-suggestion-label {
  font-size: 1.375rem;
  margin: 0; }
  @media (min-width: 768px) {
    .main__search-suggestion-label {
      flex: 1 100%;
      text-align: center;
      margin-bottom: 16px; } }
  @media (min-width: 1024px) {
    .main__search-suggestion-label {
      flex: 1 auto;
      margin-bottom: 0; } }

.main__search-suggestion {
  font-size: 1.375rem;
  color: #386db0;
  line-height: 1;
  border-bottom: 2px solid currentColor;
  margin: 8px 0; }
  @media (min-width: 768px) {
    .main__search-suggestion {
      margin: 0 32px 0 8px; } }

.main__email-section-form {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .main__email-section-form {
      flex-direction: row;
      align-items: center;
      justify-content: center; } }

.main__email-section-input {
  margin-right: 16px;
  width: 100%;
  margin-bottom: 0.5rem; }
  @media (min-width: 768px) {
    .main__email-section-input {
      margin-bottom: 0;
      width: auto;
      min-width: 385px; } }

.main__email-section-button {
  padding-top: 7px;
  padding-bottom: 7px; }

.main__email-section-error-container {
  display: block;
  text-align: left;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .main__email-section-error-container {
      width: 50%; } }

.main__stats-placeholder {
  margin-top: 50px;
  margin-left: auto;
  display: block;
  margin-right: auto;
  max-width: 100%; }

.main__blurp-text {
  font-size: 16px;
  margin-bottom: 1rem; }
  @media (min-width: 768px) {
    .main__blurp-text {
      font-size: 22px; } }

.main__uses-container {
  margin-top: 32px;
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .main__uses-container {
      margin-top: 56px;
      flex-direction: row; } }
  @media (min-width: 1024px) {
    .main__uses-container {
      margin-left: -50px;
      margin-right: -50px; } }

.main__use-card {
  padding: 16px;
  background-color: #fdfdfd;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  flex: 1 0 0;
  color: #000;
  margin-bottom: 24px;
  text-align: left; }
  @media (min-width: 1024px) {
    .main__use-card {
      margin-left: 25px;
      margin-right: 25px;
      margin-bottom: 0; } }
  .main__use-card__icon {
    height: 50px;
    margin-bottom: 1.2rem; }
  .main__use-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem; }
  .main__use-card__body {
    margin-bottom: 1rem; }

.main__explore-card-container {
  display: flex;
  flex-direction: column; }
  @media (min-width: 768px) {
    .main__explore-card-container {
      flex-direction: row;
      margin-left: -50px;
      margin-right: -50px; } }

.main__explore-card {
  padding: 16px;
  background-color: #fdfdfd;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  flex: 1 0 0;
  background-repeat: no-repeat;
  background-position: bottom right; }
  @media (min-width: 1024px) {
    .main__explore-card {
      margin-bottom: 0;
      margin-left: 25px;
      margin-right: 25px;
      padding: 60px 40px; } }
  .main__explore-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem; }
  .main__explore-card__body {
    margin-bottom: 1rem; }

.toggle.toggle--statics-tabs {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: none;
  margin-bottom: 40px; }
  .toggle.toggle--statics-tabs .toggle__container {
    justify-content: center;
    flex-direction: column; }
    @media (min-width: 768px) {
      .toggle.toggle--statics-tabs .toggle__container {
        flex-direction: row; } }
  .toggle.toggle--statics-tabs .toggle__item {
    border-right: none;
    text-align: center; }
  .toggle.toggle--statics-tabs .toggle__button {
    padding: 16px 24px;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 30px;
    margin-left: 8px;
    margin-right: 8px; }
    .toggle.toggle--statics-tabs .toggle__button:hover {
      background-color: #ccc; }
  .toggle.toggle--statics-tabs .toggle__button--active {
    box-shadow: none;
    background-color: #386db0;
    color: #fff; }
    .toggle.toggle--statics-tabs .toggle__button--active:hover {
      background-color: #386db0; }

.result {
  background: #fdfdfd;
  margin-bottom: 24px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 24px; }
  @media (min-width: 768px) {
    .result {
      margin-bottom: 48px; } }
  .result__accession {
    display: flex;
    align-items: center;
    margin-bottom: 10px; }
  .result__title-info {
    margin-bottom: 16px; }
  @media (min-width: 768px) {
    .result__title-container {
      display: flex;
      align-items: center;
      justify-content: space-between; }
    .result__title-info {
      flex: 1;
      margin-right: 80px;
      margin-bottom: 0; } }
  .result__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    font-weight: 600;
    word-break: break-all;
    word-break: break-word;
    display: block; }
  .result__stats {
    border-top: 1px solid #979797;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 24px 0 0 0;
    padding: 4.5px 0 0 0;
    flex-wrap: wrap; }
    @media (min-width: 768px) {
      .result__stats {
        margin-bottom: 24px;
        border-bottom: 1px solid #979797;
        padding-bottom: 4.5px; } }
  .result__icon {
    margin-right: 5px;
    height: 24px; }
  .result__stat {
    font-family: 'Rubik', sans-serif;
    font-size: 0.9rem;
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    padding: 0 4px;
    margin: 8px 0; }
    @media (min-width: 768px) {
      .result__stat {
        flex-basis: 33.33333%; } }
    .result__stat--lg {
      flex-basis: 100%; }
  .result__paragraph {
    margin-bottom: 1.5rem; }
  .result__not-provided {
    color: #979797; }
  .result__details {
    display: none; }
    @media (min-width: 768px) {
      .result__details {
        display: block; } }
  .result--note {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    max-width: 380px; }

.dataset-remove-button__added,
.dataset-add-button__added {
  display: flex;
  align-items: center;
  margin-right: 6px;
  font-size: 0.875rem;
  color: #41a36d; }

.dataset-remove-button__added-container,
.dataset-add-button__added-container {
  display: flex;
  align-items: center; }

.dataset-remove-button__added-icon,
.dataset-add-button__added-icon {
  margin-right: 6px; }

.dataset-remove-button__added-icon,
.dataset-add-button__added-icon {
  font-size: 1.5rem;
  line-height: 1; }

.dataset-remove-button__info-icon,
.dataset-add-button__info-icon {
  display: inline-block;
  font-size: 1.2rem;
  transform: rotate(15deg);
  color: #002f6c;
  vertical-align: bottom;
  margin-top: 4px; }

.dataset-remove-button__info-text,
.dataset-add-button__info-text {
  font-size: 0.75rem;
  line-height: 1.5; }

.result-filters__title-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline; }

.result-filters__title {
  text-transform: capitalize;
  margin-bottom: 0; }

.result-filters__section {
  padding: 32px 0;
  border-bottom: 1px solid #979797; }
  .result-filters__section:last-of-type {
    border-bottom: none; }

.result-filters__filter-check {
  font-size: 16px;
  margin-top: 12px; }

.result-filters__search-input {
  margin-top: 8px;
  margin-bottom: 8px; }

.filter-label {
  background-color: #e9f0f8;
  padding-left: 8px;
  font-size: 16px;
  line-height: 24px;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex; }
  .filter-label__remove {
    margin-left: 8px;
    border-left: 1px solid #fff;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 0;
    font-size: 10px; }
    .filter-label__remove:hover {
      border-color: #fff; }

.results {
  position: relative; }
  .results__container {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: 'top-bar' 'side' 'action' 'main'; }
    @media (min-width: 1024px) {
      .results__container {
        grid-template-columns: 250px auto;
        grid-template-rows: 85px auto;
        grid-template-areas: 'side top-bar' 'side main'; } }
    .results__container--empty {
      grid-template-columns: auto;
      grid-template-rows: auto auto;
      grid-template-areas: 'side' 'main'; }
      @media (min-width: 1024px) {
        .results__container--empty {
          grid-template-columns: 250px auto;
          grid-template-rows: auto;
          grid-template-areas: 'side main'; } }
  .results__top-bar {
    grid-area: top-bar;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: column; }
    @media (min-width: 768px) {
      .results__top-bar {
        flex-direction: row;
        align-items: center; } }
    @media (min-width: 1024px) {
      .results__top-bar {
        margin-bottom: 24px; } }
    .results__top-bar__filter {
      padding: 0;
      line-height: 1.5;
      flex-basis: 100%; }
  .results__add-samples {
    grid-area: action;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .results__add-samples {
        grid-area: top-bar;
        margin-left: auto; } }
  .results__filters {
    grid-area: side;
    margin-bottom: 16px; }
    @media (min-width: 1024px) {
      .results__filters {
        max-width: 230px;
        min-width: 230px;
        margin-right: 48px; } }
  .results__list {
    grid-area: main; }
  .results__search {
    display: flex;
    justify-content: center;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .results__search {
        margin-bottom: 24px; } }
    @media (min-width: 1024px) {
      .results__search {
        margin-bottom: 40px; } }
  .results__added {
    display: flex;
    align-items: center;
    margin-right: 6px;
    font-size: 0.875rem;
    color: #41a36d; }
  .results__added-container {
    display: flex;
    align-items: center; }
  .results__added-icon {
    font-size: 1.5rem;
    margin-right: 6px; }
  .results__no-results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    @media (min-width: 1024px) {
      .results__no-results {
        margin-top: 56px; } }
    .results__no-results h2 {
      font-size: 1.652rem; }
    .results__no-results p {
      font-size: 1.25rem; }
  .results__no-results-image {
    margin-top: 56px; }
  .results__suggestion-list {
    margin-bottom: 32px; }
  .results__suggestion {
    font-size: 1.375rem;
    margin: 0 16px; }
  .results__number-results {
    display: flex;
    flex-wrap: wrap; }
    .results__number-results > div {
      margin-right: 24px; }
  .results__related-block {
    margin-top: 56px;
    margin-bottom: 32px;
    font-size: 1.25rem;
    text-align: left;
    border-bottom: 2px solid #f2f2f2;
    line-height: 0; }
    .results__related-block:first-line {
      background-color: white;
      padding-right: 8px; }

.terms {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0; }
  .terms__title {
    font-weight: 500; }
  .terms__list {
    padding: 0;
    margin: 1em 0 0 2rem;
    font-weight: 400; }
    .terms__list--bold {
      padding: 0;
      margin-left: 1rem;
      font-weight: 600; }
  .terms__caps {
    text-transform: uppercase; }
  .terms li {
    margin-bottom: 1em;
    line-height: 1.6; }
  .terms em {
    font-style: normal;
    border-bottom: 1px solid currentColor; }
  .terms p {
    font-weight: 400;
    line-height: 1.7; }

.title {
  margin-bottom: 16px; }

.geo {
  margin-left: -32px;
  margin-right: -32px; }

.versionTable {
  border-spacing: 0;
  width: 100%; }
  .versionTable td {
    padding: 2px 2px 2px 4px; }

.versionTableLabel {
  padding-right: 32px !important;
  text-align: right;
  width: 160px;
  white-space: nowrap; }

.tableTitle {
  font-weight: bold; }

.highlight {
  background-color: #f2f2f2; }

