/* d3 */
.dc-chart path.dc-symbol, .dc-legend g.dc-legend-item.fadeout {
  fill-opacity: 0.5;
  stroke-opacity: 0.5; }
div.dc-chart {
  float: left; }
.dc-chart rect.bar {
  stroke: none;
  cursor: pointer; }
.dc-chart rect.bar:hover {
    fill-opacity: .5; }
.dc-chart rect.deselected {
  stroke: none;
  fill: #ccc; }
.dc-chart .pie-slice {
  fill: #fff;
  font-size: 12px;
  cursor: pointer; }
.dc-chart .pie-slice.external {
    fill: #000; }
.dc-chart .pie-slice :hover, .dc-chart .pie-slice.highlight {
    fill-opacity: .8; }
.dc-chart .pie-path {
  fill: none;
  stroke-width: 2px;
  stroke: #000;
  opacity: 0.4; }
.dc-chart .selected path, .dc-chart .selected circle {
  stroke-width: 3;
  stroke: #ccc;
  fill-opacity: 1; }
.dc-chart .deselected path, .dc-chart .deselected circle {
  stroke: none;
  fill-opacity: .5;
  fill: #ccc; }
.dc-chart .axis path, .dc-chart .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges; }
.dc-chart .axis text {
  font: 10px sans-serif; }
.dc-chart .grid-line, .dc-chart .axis .grid-line, .dc-chart .grid-line line, .dc-chart .axis .grid-line line {
  fill: none;
  stroke: #ccc;
  opacity: .5;
  shape-rendering: crispEdges; }
.dc-chart .brush rect.background {
  z-index: -999; }
.dc-chart .brush rect.extent {
  fill: #4682b4;
  fill-opacity: .125; }
.dc-chart .brush .resize path {
  fill: #eee;
  stroke: #666; }
.dc-chart path.line {
  fill: none;
  stroke-width: 1.5px; }
.dc-chart path.area {
  fill-opacity: .3;
  stroke: none; }
.dc-chart path.highlight {
  stroke-width: 3;
  fill-opacity: 1;
  stroke-opacity: 1; }
.dc-chart g.state {
  cursor: pointer; }
.dc-chart g.state :hover {
    fill-opacity: .8; }
.dc-chart g.state path {
    stroke: #fff; }
.dc-chart g.deselected path {
  fill: #808080; }
.dc-chart g.deselected text {
  display: none; }
.dc-chart g.row rect {
  fill-opacity: 0.8;
  cursor: pointer; }
.dc-chart g.row rect:hover {
    fill-opacity: 0.6; }
.dc-chart g.row text {
  fill: #fff;
  font-size: 12px;
  cursor: pointer; }
.dc-chart g.dc-tooltip path {
  fill: none;
  stroke: #808080;
  stroke-opacity: .8; }
.dc-chart g.county path {
  stroke: #fff;
  fill: none; }
.dc-chart g.debug rect {
  fill: #00f;
  fill-opacity: .2; }
.dc-chart g.axis text {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none; }
.dc-chart .node {
  font-size: 0.7em;
  cursor: pointer; }
.dc-chart .node :hover {
    fill-opacity: .8; }
.dc-chart .bubble {
  stroke: none;
  fill-opacity: 0.6; }
.dc-chart .highlight {
  fill-opacity: 1;
  stroke-opacity: 1; }
.dc-chart .fadeout {
  fill-opacity: 0.2;
  stroke-opacity: 0.2; }
.dc-chart .box text {
  font: 10px sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none; }
.dc-chart .box line, .dc-chart .box circle {
  fill: #fff; }
.dc-chart .box rect, .dc-chart .box line, .dc-chart .box circle {
  stroke: #000;
  stroke-width: 1.5px; }
.dc-chart .box .center {
  stroke-dasharray: 3, 3; }
.dc-chart .box .outlier {
  fill: none;
  stroke: #ccc; }
.dc-chart .box.deselected {
  opacity: 0.5; }
.dc-chart .box.deselected .box {
    fill: #ccc; }
.dc-chart .symbol {
  stroke: none; }
.dc-chart .heatmap .box-group.deselected rect {
  stroke: none;
  fill-opacity: 0.5;
  fill: #ccc; }
.dc-chart .heatmap g.axis text {
  pointer-events: all;
  cursor: pointer; }
.dc-chart .empty-chart .pie-slice {
  cursor: default; }
.dc-chart .empty-chart .pie-slice path {
    fill: #fee;
    cursor: default; }
.dc-chart circle.dot {
  stroke: none; }
.dc-data-count {
  float: right;
  margin-top: 15px;
  margin-right: 15px; }
.dc-data-count .filter-count, .dc-data-count .total-count {
    color: #3182bd;
    font-weight: bold; }
.dc-legend {
  font-size: 11px; }
.dc-legend .dc-legend-item {
    cursor: pointer; }
.dc-hard .number-display {
  float: none; }
/* z-index utils */
.z1 { z-index: 1; }
.z2 { z-index: 2; }
.z3 { z-index: 3; }
.z4 { z-index: 4; }
.z5 { z-index: 5; }
.z6 { z-index: 6; }
.zF { z-index: 999; }
/* TODO: based on popover.css, combine them? */
/* TODO: other arrow directions */
.arrow-right {
    position: relative; /* TODO: should it be up to the consumer to set a non-static positioning? */
}
/* shared arrow styles */
.arrow-right:before,
.arrow-right:after {
	position: absolute;
	content: '';
	display: block;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
/* create a slightly larger arrow on the right for border purposes */
.arrow-right:before {
  right: -20px;
  border-left-color: #ddd;
}
/* create a smaller inset arrow on the right */
.arrow-right:after {
  right: -19px;
  border-left-color: #fff;
}
/* move our arrows to the center */
.arrow-right:before, .arrow-right:after {
  top: 50%;
  margin-top: -10px;
}
html {
    height: 100%; /* ensure the entire page will fill the window */
    width: 100%;
}
body {
    font-family: "Lato", sans-serif;
    font-size: 0.875em;
    font-weight: 400;
    font-style: normal;
    color: #727479;
    margin: 0;
    height: 100%; /* ensure the entire page will fill the window */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*
  override default padding and margin on lists
  in most cases we won't be using list-style so
  the padding isn't necessary
*/
ul,
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
/* reset button element */
button {
    font-size: 100%;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
}
a {
    color: inherit;
    cursor: pointer;
}
input,
textarea {
    font-family: "Lato", "Helvetica Neue", Helvetica, sans-serif;
}
.pointer-events-none {
  pointer-events: none;
}
.disabled, ._36dRT {
  pointer-events: none;
  opacity: 0.4;
}
.faded, ._1FxgJ {
  opacity: 0.4;
}
.MB-lightBG {
  background-color: #f9fbfc;
}
.circle { border-radius: 99px; }
.undefined {
    border: 1px solid red !important;
}
@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-webkit-keyframes spin-reverse {
  100% { -webkit-transform: rotate(-360deg); transform: rotate(-360deg); }
}
@keyframes spin-reverse {
  100% { -webkit-transform: rotate(-360deg); transform: rotate(-360deg); }
}
.bordered, ._1_t6y {
  border: 1px solid #F0F0F0;
}
.border-bottom, .KkLXm {
  border-bottom: 1px solid #F0F0F0;
}
/* ensure that a border-top item inside of a bordred element won't double up */
.bordered .border-bottom:last-child {
  border-bottom: none;
}
.border-top, ._2qnnU {
  border-top: 1px solid #F0F0F0;
}
/* ensure that a border-top item inside of a bordred element won't double up */
.bordered .border-top:first-child {
  border-top: none;
}
.border-column-divider {
  border-right: 1px solid #F0F0F0;
}
.border-column-divider:last-child {
  border-right: none;
}
.border-row-divider {
  border-bottom: 1px solid #F0F0F0;
}
.border-row-divider:last-child {
  border-bottom: none;
}
.border-right {
  border-right: 1px solid #F0F0F0;
}
.border-left {
  border-left: 1px solid #F0F0F0;
}
.border-light {
    border-color: rgba(255, 255, 255, .2) !important;
}
.border-dark,
.border-dark-hover:hover {
    border-color: rgba(0, 0, 0, .2) !important;
}
.border-grey-1 {
    border-color: rgb(223, 223, 223) !important;
}
.border-green {
    border-color: #9CC177 !important;
}
.border-purple {
    border-color: #A989C5 !important;
}
.border-error, ._3GdZw {
    border-color: #EF8C8C !important;
}
.border-gold {
    border-color: #F9D45C !important;
}
.border-success {
    border-color: #9CC177 !important;
}
.border-brand, ._3eZXt {
    border-color: #509EE3 !important;
}
.border-brand-hover:hover {
    border-color: #509EE3;
}
.border-hover:hover {
  border-color: rgb(192, 192, 192);
}
/* BORDERLESS IS THE DEFAULT */
/* ONLY USE IF needing to override an existing border! */
/* ensure there is no border via important */
.borderless, ._29M7O {
  border: none !important;
}
.border-dashed {
  border-style: dashed;
}
.border-med {
    border-width: 2px;
}
/* set main elements to box-sizing border-box for more reliable box model calc */
body,
div,
nav,
article,
section,
main,
header,
footer,
input,
form,
table,
fieldset,
textarea,
ul,
li,
span {
    box-sizing: border-box;
}
/* for applying border-box to other elements on ad-hoc basis */
.border-box {
    box-sizing: border-box;
}
/* TODO: we should really have these as variables */
/* Nicolas Gallaghers Clearfix solution
   Ref: http://nicolasgallagher.com/micro-clearfix-hack/ */
/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after {
    clear: both;
}
/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
    *zoom: 1;
}
.text-default, ._1_4d3 {
    color: #727479;
}
.text-default-hover:hover {
    color: #727479;
}
.text-danger { color: #EEA5A5; }
/* brand */
.text-brand, ._11F6c,
.text-brand-hover:hover, ._2zC9M:hover {
    color: #509EE3;
}
.text-brand-darken,
.text-brand-darken-hover:hover {
    color: rgb(64, 126, 182);
}
.text-brand-light, ._3_FOA,
.text-brand-light-hover:hover, .DOArZ:hover {
    color: #CDE3F8;
}
.bg-brand,
.bg-brand-hover:hover,
.bg-brand-active:active { background-color: #509EE3; }
@media screen and (min-width: 60em) {
  .md-bg-brand { background-color: #509EE3 !important; }
}
/* success */
.text-success { color: #9CC177; }
.bg-success { background-color: #9CC177; }
/* error */
.text-error, .-ecxL,
.text-error-hover:hover {
  color: #EF8C8C;
}
.bg-error,
.bg-error-hover:hover {
  background-color: #EF8C8C;
}
.bg-error-input {
  background-color: #FCE8E8
}
/* warning */
.text-warning {
  color: #E35050 !important;
}
.bg-warning {
  background-color: #E35050;
}
/* favorite */
.text-gold,
.text-gold-hover:hover {
    color: #F9D45C;
}
.text-purple,
.text-purple-hover:hover {
    color: #A989C5;
}
.text-green,
.text-green-hover:hover {
    color: #9CC177;
}
.text-green-saturated,
.text-green-saturated-hover:hover {
    color: #84BB4C;
}
.text-orange,
.text-orange-hover:hover {
    color: #F9A354;
}
.text-slate { color: #9BA5B1; }
.text-slate-light { color: #DFE8EA; }
.text-slate-extra-light { background-color: #F9FBFC; }
.bg-gold { background-color: #F9D45C; }
.bg-purple { background-color: #A989C5; }
.bg-green { background-color: #9CC177; }
/* alt */
.bg-alt, .bg-alt-hover:hover { background-color: #F5F7F9; }
/* grey */
.text-grey-1, .M_lkr,
.text-grey-1-hover:hover { color: rgb(223, 223, 223) }
.text-grey-2, ._3M_V1,
.text-grey-2-hover:hover { color: rgb(198, 198, 198) }
.text-grey-3, ._2hmlK,
.text-grey-3-hover:hover { color: rgb(174, 174, 174) }
.text-grey-4,
.text-grey-4-hover:hover { color: rgb(149, 149, 149) }
.text-grey-5,
.text-grey-5-hover:hover { color: rgb(124, 124, 124) }
.bg-grey-0,
.bg-grey-0-hover:hover { background-color: #f8f8f8 }
.bg-grey-1 { background-color: rgb(223, 223, 223) }
.bg-grey-2 { background-color: rgb(198, 198, 198) }
.bg-grey-3 { background-color: rgb(174, 174, 174) }
.bg-grey-4 { background-color: rgb(149, 149, 149) }
.bg-grey-5 { background-color: rgb(124, 124, 124) }
.bg-slate { background-color: #9BA5B1; }
.bg-slate-light { background-color: #DFE8EA; }
.bg-slate-almost-extra-light { background-color: #EDF2F5;}
.bg-slate-extra-light { background-color: #F9FBFC; }
.bg-slate-extra-light-hover:hover { background-color: #F9FBFC; }
.text-dark, ._1vTfW {
    color: #4C545B;
}
/* white  - move to bottom for specificity since its often used on hovers, etc */
.text-white, ._39pQz,
.text-white-hover:hover { color: #fff; }
@media screen and (min-width: 60em) {
  .md-text-white { color: #fff; }
}
/* common pattern, background brand, text white when hovering or selected */
.brand-hover:hover {
    color: #fff;
    background-color: #509EE3;
}
.brand-hover:hover * {
    color: #fff;
}
.bg-white, ._3IQrF { background-color: #fff; }
.bg-light-blue { background-color: #F5FAFC; }
.bg-light-blue-hover:hover {
  background-color: #E4F0FA;
}
.text-light-blue,
.text-light-blue-hover:hover {
  color: #CFE4F5
}
.text-slate { color: #606E7B; }
.bg-transparent { background-color: transparent }
.cursor-pointer, ._1bnMF {
    cursor: pointer;
}
.cursor-default, ._3Hsm9 {
    cursor: default;
}
/* provide flex utilities in lieu of float based layouts */
.flex, ._2Ab1v {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-full, ._3-tYw {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.flex-half, .CIuvB {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
}
.flex-no-shrink, .ya-dh {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
/* The behavior of how `flex: <flex-grow>` sets flex-basis is inconsistent across
 * browsers. Specifically:
 * - On Chrome and FF it's set to `flex-basis: 0%`. That behaves equally as `height: 0%`.
 *   It means that if the containing block has no explicit height, then `height: 0%` is computed as `height: auto`,
 *   and element grows as its content grows. That is the most common scenario in Metabase codebase.
 * - On older IEs it's set to `flex-basis: 0` which means that the initial main size of flex item is zero.
 *   It is also notable that `flex-basis: 0%` doesn't work correctly on IE.
 *
 *  As a solution, `flex-basis-auto` should always be used in conjunction with `flex-full` when it is
 *  a desired behavior that the element grows with its contents.
*/
.flex-basis-auto {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
}
.shrink-below-content-size {
    /* W3C spec says:
     * By default, flex items won’t shrink below their minimum content size (the length of the longest word or
     * fixed-size element). To change this, set the min-width or min-height property.
     */
    min-width: 0;
}
.align-center, ._3xTxU {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.align-baseline, ._2QWsz {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}
.justify-center, ._3qMUG {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.align-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.align-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.align-self-end, .Ha66n {
    -ms-flex-item-align: end;
        align-self: flex-end;
}
.flex-align-right, ._2HuiG {
    margin-left: auto;
}
@media screen and (min-width: 40em) {
    .sm-flex-align-right { margin-left: auto; }
}
@media screen and (min-width: 60em) {
    .md-flex-align-right { margin-left: auto; }
}
@media screen and (min-width: 80em) {
    .lg-flex-align-right { margin-left: auto; }
}
.layout-centered, ._6qWRp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 40em) {
    .sm-layout-centered {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
@media screen and (min-width: 60em) {
    .md-layout-centered {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
@media screen and (min-width: 80em) {
    .lg-layout-centered {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}
.flex-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
@media screen and (min-width: 40em) {
    .sm-flex-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
}
@media screen and (min-width: 60em) {
    .md-flex-column { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
}
.flex-row, .vN8dd {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.flex-reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
@media screen and (min-width: 40em) {
    .sm-flex-reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
}
@media screen and (min-width: 60em) {
    .md-flex-reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
}
@media screen and (min-width: 80em) {
    .lg-flex-reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
}
@media screen and (min-width: 120em) {
    .xl-flex-reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
}
.no-flex {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 0%;
            flex: 0 1 0%;
}
@media screen and (min-width: 60em) {
    .md-no-flex { -webkit-box-flex: 0 !important; -ms-flex: 0 !important; flex: 0 !important; }
}
/* Contents of elements inside flex items might not be wrapped correctly on IE11,
   set max-width manually to enforce wrapping
*/
.ie-wrap-content-fix {
   max-width: 100%;
}
.float-left, ._3ZQiZ   { float: left; }
.float-right, .VZS1N { float: right; }
.Grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.Grid-cell,
.Grid--normal > .Grid-cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.Grid--flexCells > .Grid-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.Grid--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.Grid--bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.Grid--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Grid--justifyCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.Grid-cell--top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Grid-cell--bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.Grid-cell--center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.Grid-cell--autoSize {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.Grid--fit > .Grid-cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.Grid--full > .Grid-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.Grid--1of2 > .Grid-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.Grid--1of3 > .Grid-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
}
.Grid--1of4 > .Grid-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
@media (min-width: 40em) {
  .small-Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .small-Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .small-Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .small-Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
  .small-Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media (min-width: 60em) {
  .md-Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .md-Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .md-Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .md-Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
  .md-Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
@media (min-width: 80em) {
  .large-Grid--fit > .Grid-cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .large-Grid--full > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .large-Grid--1of2 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .large-Grid--1of3 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
  .large-Grid--1of4 > .Grid-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}
.Grid--gutters {
  margin: -1em 0 1em -1em;
}
.Grid--gutters > .Grid-cell {
  padding: 1em 0 0 1em;
}
.Grid--guttersLg {
  margin: -1.5em 0 1.5em -1.5em;
}
.Grid--guttersLg > .Grid-cell {
  padding: 1.5em 0 0 1.5em;
}
.Grid--guttersXl {
  margin: -2em 0 2em -2em;
}
.Grid--guttersXl > .Grid-cell {
  padding: 2em 0 0 2em;
}
.Grid--guttersXXl {
  margin: -5em 0 5em -5em;
}
.Grid--guttersXXl > .Grid-cell {
  padding: 5em 0 0 5em;
}
@media (min-width: 40em) {
  .small-Grid--gutters {
    margin: -1em 0 1em -1em;
  }
  .small-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
  }
  .small-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
  }
  .small-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
  }
  .small-Grid--guttersXl {
    margin: -2em 0 2em -2em;
  }
  .small-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
  }
  .small-Grid--guttersXXl {
    margin: -5em 0 5em -5em;
  }
  .small-Grid--guttersXXl > .Grid-cell {
    padding: 5em 0 0 5em;
  }
  .sm-Grid--normal > .Grid-cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 60em) {
  .md-Grid--gutters {
    margin: -1em 0 1em -1em;
  }
  .md-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
  }
  .md-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
  }
  .md-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
  }
  .md-Grid--guttersXl {
    margin: -2em 0 2em -2em;
  }
  .md-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
  }
  .md-Grid--guttersXXl {
    margin: -5em 0 5em -5em;
  }
  .md-Grid--guttersXXl > .Grid-cell {
    padding: 5em 0 0 5em;
  }
  .md-Grid--normal > .Grid-cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 80em) {
  .large-Grid--gutters {
    margin: -1em 0 1em -1em;
  }
  .large-Grid--gutters > .Grid-cell {
    padding: 1em 0 0 1em;
  }
  .large-Grid--guttersLg {
    margin: -1.5em 0 1.5em -1.5em;
  }
  .large-Grid--guttersLg > .Grid-cell {
    padding: 1.5em 0 0 1.5em;
  }
  .large-Grid--guttersXl {
    margin: -2em 0 2em -2em;
  }
  .large-Grid--guttersXl > .Grid-cell {
    padding: 2em 0 0 2em;
  }
  .large-Grid--guttersXXl {
    margin: -5em 0 5em -5em;
  }
  .large-Grid--guttersXXl > .Grid-cell {
    padding: 5em 0 0 5em;
  }
  .large-Grid--normal > .Grid-cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.Grid-cell.Cell--1of3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
}
@media screen and (min-width: 40em) {
    .Grid-cell.sm-Cell--1of3 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.3333%;
                flex: 0 0 33.3333%;
    }
}
@media screen and (min-width: 60em) {
    .Grid-cell.md-Cell--1of3 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.3333%;
                flex: 0 0 33.3333%;
    }
}
@media screen and (min-width: 80em) {
    .Grid-cell.lg-Cell--1of3 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.3333%;
                flex: 0 0 33.3333%;
    }
}
@media screen and (min-width: 120em) {
    .Grid-cell.xl-Cell--1of3 {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.3333%;
                flex: 0 0 33.3333%;
    }
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}
.h1 { font-size: 2em; }
.h2 { font-size: 1.5em; }
.h3 { font-size: 1.17em; }
.h4 { font-size: 1.12em; }
.h5 { font-size: .83em; }
.h6 { font-size: .75em; }
@media screen and (min-width: 40em) {
  .sm-h1 { font-size: 2em; }
  .sm-h2 { font-size: 1.5em; }
  .sm-h3 { font-size: 1.17em; }
  .sm-h4 { font-size: 1.12em; }
  .sm-h5 { font-size: .83em; }
  .sm-h6 { font-size: .75em; }
}
@media screen and (min-width: 60em) {
  .md-h1 { font-size: 2em; }
  .md-h2 { font-size: 1.5em; }
  .md-h3 { font-size: 1.17em; }
  .md-h4 { font-size: 1.12em; }
  .md-h5 { font-size: .83em; }
  .md-h6 { font-size: .75em; }
}
@media screen and (min-width: 80em) {
  .lg-h1 { font-size: 2em; }
  .lg-h2 { font-size: 1.5em; }
  .lg-h3 { font-size: 1.17em; }
  .lg-h4 { font-size: 1.12em; }
  .lg-h5 { font-size: .83em; }
  .lg-h6 { font-size: .75em; }
}
.hide { display: none !important; }
.show { display: inherit; }
.hidden { visibility: hidden; }
.sm-show,
.md-show,
.lg-show,
.xl-show { display: none; }
/* extra-small */
@media screen and (min-width: 23em) {
  .xs-hide { display: none !important; }
}
@media screen and (min-width: 23em) {
  .xs-show { display: inherit !important; }
}
/* small */
@media screen and (min-width: 40em) {
  .sm-hide { display: none !important; }
}
@media screen and (min-width: 40em) {
  .sm-show { display: inherit !important; }
}
/* medium */
@media screen and (min-width: 60em) {
  .md-hide { display: none !important; }
}
@media screen and (min-width: 60em) {
  .md-show { display: inherit !important; }
}
/* large */
@media screen and (min-width: 80em) {
  .lg-hide { display: none !important; }
}
@media screen and (min-width: 80em) {
  .lg-show { display: inherit !important; }
}
/* xl */
@media screen and (min-width: 120em) h{
  .xl-hide { display: none !important; }
}
@media screen and (min-width: 120em) {
  .xl-show { display: inherit !important; }
}
/*
  display
  hide and show a child element using display
*/
.hover-parent.hover--display .hover-child,
.hover-parent:hover.hover--display .hover-child--hidden { display: none; }
.hover-parent:hover.hover--display .hover-child { display: block; }
/*
  visibility
  hide and show a child element using visibility
*/
.hover-parent.hover--visibility .hover-child,
.hover-parent:hover.hover--visibility .hover-child--hidden { visibility: hidden; }
.hover-parent:hover.hover--visibility .hover-child { visibility: visible; }
.input, .H0znb {
  color: #4C545B;
  font-size: 1.12em;
  padding: 12px 12px;
  padding: 0.75rem 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  transition: border .3s linear;
}
/* React doesn't receive events from IE11:s input clear button so don't show it */
.input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.input--small {
  padding: 4.8px 6.4px;
  padding: 0.3rem 0.4rem;
}
.input--focus,
.input:focus, .H0znb:focus {
  outline: none;
  border: 1px solid #4E82C0;
  transition: border .3s linear;
  color: #222;
}
.input--borderless,
.input--borderless:focus {
  box-shadow: none;
  outline: 0;
  border: none !important;
  background: transparent;
}
.input:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.no-focus:focus {
  outline: 0;
}
/* prevent safari from forcing type="search" styles - issue #5225 */
.input[type="search"] {
  -webkit-appearance: none;
}
.wrapper, .qWYXP {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 40em) {
    .wrapper, .qWYXP {
        padding-left: 2em;
        padding-right: 2em;
    }
}
@media screen and (min-width: 60em) {
    .wrapper, .qWYXP {
        padding-left: 3em;
        padding-right: 3em;
    }
}
/* set height full relative to the parent */
.full-height, .GspmA { height: 100%; }
/* set height to that of the viewport */
.viewport-height { height: 100vh; }
/* display utilities */
.block,
._2nxl_        { display: block; }
@media screen and (min-width: 80em) {
.lg-block { display: block; }
}
.inline,
._1rUOj       { display: inline; }
.inline-block,
._8odsA { display: inline-block; }
@media screen and (min-width: 40em) {
    .sm-inline-block { display: inline-block; }
}
.table { display: table; }
.full, .f_cMM { width: 100%; }
.half { width: 50%; }
/* position utilities */
.fixed, ._3KPlC {
  position: fixed;
}
.relative, ._2lB8q { position: relative; }
.absolute, ._2S-Af { position: absolute; }
.top, ._3BwXq       { top: 0; }
.right, ._1LJaA   { right: 0; }
.bottom, ._2gh2x { bottom: 0; }
.left, ._31NqT     { left: 0; }
@media screen and (min-width: 60em) {
    .wrapper.wrapper--trim,
    .qWYXP._2Oyef {
        max-width: 940px;
    }
}
@media screen and (min-width: 60em) {
    .wrapper.wrapper--small,
    .qWYXP._3OeNP {
        max-width: 752px;
    }
}
@media screen and (min-width: 80em) {
  .wrapper.lg-wrapper--trim {
        max-width: 1140px;
  }
}
@media screen and (min-width: 120em) {
  .wrapper.lg-wrapper--trim {
        max-width: 1540px;
  }
}
/* fully fit the parent element - use as a base for app-y pages like QB or settings */
.spread, ._1T6Ta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.no-decoration, ._2ptV {
    text-decoration: none;
}
.link {
  cursor: pointer;
  text-decoration: none;
  color: #4A90E2;
}
.link:hover {
  text-decoration: underline;
}
.link--nohover:hover {
  text-decoration: none;
}
.link--wrappable {
  word-break: break-all;
}
.expand-clickable {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0.5em;
  margin: -0.5em;
}
.overflow-auto {
    overflow: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.rounded, ._2mgWq {
  border-radius: 4px;
}
.rounded-top {
  border-top-left-radius:  4px;
  border-top-right-radius: 4px;
}
.rounded-bottom {
  border-bottom-left-radius:  4px;
  border-bottom-right-radius: 4px;
}
.rounded-left {
  border-top-left-radius:    4px;
  border-bottom-left-radius: 4px;
}
.rounded-right {
  border-top-right-radius:    4px;
  border-bottom-right-radius: 4px;
}
.circular {
  border-radius: 99px !important;
}
.not-rounded {
  border-radius: 0;
}
.scroll-y, ._15z5L { overflow-y: auto; }
.scroll-x { overflow-x: auto; }
.scroll-show::-webkit-scrollbar {
    width: 15px;
    min-height: 10px;
}
.scroll-show--hover::-webkit-scrollbar {
    display: none;
}
.scroll-show--hover:hover::-webkit-scrollbar {
    display: inherit;
}
.scroll-show::-webkit-scrollbar-thumb {
    border: 4px solid transparent;
    border-radius: 7px;
    background-clip: padding-box;
    background-color: #c2c2c2;
}
.scroll-show::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}
.scroll-show::-webkit-scrollbar-corner {
    background-color: transparent;
}
.scroll-show:hover::-webkit-scrollbar-thumb {
    background-color: #7d7d7d;
}
.scroll-show::-webkit-scrollbar-thumb:horizontal:hover,
.scroll-show::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #7d7d7d;
}
.scroll-show::-webkit-scrollbar-thumb:horizontal:active,
.scroll-show::-webkit-scrollbar-thumb:vertical:active {
    background-color: #7d7d7d;
}
/* scroll light */
.scroll-show.scroll--light::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #CFE4F5;
}
.scroll-show.scroll--light::-webkit-scrollbar-thumb:horizontal:hover,
.scroll-show.scroll--light::-webkit-scrollbar-thumb:vertical:hover,
.scroll-show.scroll--light::-webkit-scrollbar-thumb:horizontal:active,
.scroll-show.scroll--light::-webkit-scrollbar-thumb:vertical:active {
    background-color: #C7D9E4;
}
.scroll-hide {
    -ms-overflow-style: none;  /* IE 10+ */
    overflow: -moz-scrollbars-none;  /* Firefox */
}
.scroll-hide::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.scroll-hide-all,
.scroll-hide-all * {
    -ms-overflow-style: none;  /* IE 10+ */
    overflow: -moz-scrollbars-none;  /* Firefox */
}
.scroll-hide-all::-webkit-scrollbar,
.scroll-hide-all *::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.shadowed, ._1PyeW {
  box-shadow: 0 2px 2px rgba(0, 0, 0, .08);
}
.shadow-hover:hover {
  box-shadow: 0 2px 2px rgba(0, 0, 0, .12);
  transition: box-shadow 300ms linear;
}
.ml-auto, ._3P-KX { margin-left: auto; }
.mr-auto, ._2GYII { margin-right: auto; }
.mt-auto { margin-top: auto; }
/* padding */
/* 0 */
.p0, ._1D_9A   { padding: 0; }
.pt0, ._2Yu_N { padding-top: 0; }
.pb0, ._3cfZR { padding-bottom: 0; }
.pl0, ._221oM { padding-left: 0; }
.pr0, .yXN7g { padding-right: 0; }
/* 1 */
.p1, ._3pDyb {
  padding: 8px;
  padding: 0.5rem;
}
.px1, ._1oHkZ {
  padding-left:  8px;
  padding-left:  0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}
.py1, ._2-TYH {
  padding-top:    8px;
  padding-top:    0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}
.pt1, ._27tpk { padding-top:    8px; padding-top:    0.5rem; }
.pb1, ._1FnTo { padding-bottom: 8px; padding-bottom: 0.5rem; }
.pl1, ._1effs { padding-left:   8px; padding-left:   0.5rem; }
.pr1, ._3n6gk { padding-right:  8px; padding-right:  0.5rem; }
/* 2 */
.p2, ._1kCKY { padding: 16px; padding: 1rem; }
.px2, ._60JOT {
  padding-left:  16px;
  padding-left:  1rem;
  padding-right: 16px;
  padding-right: 1rem;
}
.py2, ._1usv4 {
  padding-top:    16px;
  padding-top:    1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.pt2, ._31zTD { padding-top:    16px; padding-top:    1rem; }
.pb2, ._3TBvo { padding-bottom: 16px; padding-bottom: 1rem; }
.pl2, ._3WXd5 { padding-left:   16px; padding-left:   1rem; }
.pr2, ._1H-N- { padding-right:  16px; padding-right:  1rem; }
/* 3 */
.p3, ._2C8_4 { padding: 24px; padding: 1.5rem; }
.px3, ._1jL91 {
  padding-left:  24px;
  padding-left:  1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
.py3, ._3I9_2 {
  padding-top:    24px;
  padding-top:    1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
.pt3, ._3bh3u { padding-top:    24px; padding-top:    1.5rem; }
.pb3, ._17Ct- { padding-bottom: 24px; padding-bottom: 1.5rem; }
.pl3, ._1wErO { padding-left:   24px; padding-left:   1.5rem; }
.pr3, ._1Oqmv { padding-right:  24px; padding-right:  1.5rem; }
/* 4 */
.p4, ._1fQI1 { padding: 32px; padding: 2rem; }
.px4, .l_0x9 {
  padding-left:  32px;
  padding-left:  2rem;
  padding-right: 32px;
  padding-right: 2rem;
}
.py4, ._3f7ch {
  padding-top:    32px;
  padding-top:    2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
.pt4, ._20jFt { padding-top:    32px; padding-top:    2rem; }
.pb4, ._2f1cI { padding-bottom: 32px; padding-bottom: 2rem; }
.pl4, ._3RuZT { padding-left:   32px; padding-left:   2rem; }
.pr4, ._2cW-M { padding-right:  32px; padding-right:  2rem; }
/* margin */
/* 0 */
.m0, ._3HCRu  { margin: 0; }
.mt0, ._1a2uO { margin-top: 0; }
.mb0, ._1DVk4 { margin-bottom: 0; }
.ml0, .wLFF6 { margin-left: 0; }
.mr0, ._2jXiA { margin-right: 0; }
/* 1 */
.m1, ._2-W1r { margin: 8px; margin: 0.5rem; }
.mx1, ._38jM0 {
  margin-left:  8px;
  margin-left:  0.5rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}
.my1, ._2iOnJ {
  margin-top:    8px;
  margin-top:    0.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
.mt1, ._1A8AE { margin-top:    8px; margin-top:    0.5rem; }
.mb1, ._3-40x { margin-bottom: 8px; margin-bottom: 0.5rem; }
.ml1, ._2Pgrd { margin-left:   8px; margin-left:   0.5rem; }
.mr1, ._1qX6f { margin-right:  8px; margin-right:  0.5rem; }
/* 2 */
.m2, .Go1zi { margin: 16px; margin: 1rem; }
.mx2, ._1iF6f {
  margin-left:  16px;
  margin-left:  1rem;
  margin-right: 16px;
  margin-right: 1rem;
}
.my2, ._1YoBK {
  margin-top:    16px;
  margin-top:    1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.mt2, ._2ruK2 { margin-top:    16px; margin-top:    1rem; }
.mb2, .mPLKD { margin-bottom: 16px; margin-bottom: 1rem; }
.ml2, ._2U2td { margin-left:   16px; margin-left:   1rem; }
.mr2, ._2FzJP { margin-right:  16px; margin-right:  1rem; }
/* 3 */
.m3, ._Yt8s { margin: 24px; margin: 1.5rem; }
.mx3, .Zr7X4 {
  margin-left:  24px;
  margin-left:  1.5rem;
  margin-right: 24px;
  margin-right: 1.5rem;
}
.my3, ._1CMiN {
  margin-top:    24px;
  margin-top:    1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.mt3, .dlXFo { margin-top:    24px; margin-top:    1.5rem; }
.mb3, ._7YAPo { margin-bottom: 24px; margin-bottom: 1.5rem; }
.ml3, ._1LZXH { margin-left:   24px; margin-left:   1.5rem; }
.mr3, ._1HOe1 { margin-right:  24px; margin-right:  1.5rem; }
/* 4 */
.m4, ._2-QJX { margin: 32px; margin: 2rem; }
.mx4, ._1fE89 {
  margin-left:  32px;
  margin-left:  2rem;
  margin-right: 32px;
  margin-right: 2rem;
}
.my4, ._2V4Qf {
  margin-top:    32px;
  margin-top:    2rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.mt4, ._20b6u { margin-top:    32px; margin-top:    2rem; }
.mb4, ._1p9JI { margin-bottom: 32px; margin-bottom: 2rem; }
.ml4, ._2d4f6 { margin-left:   32px; margin-left:   2rem; }
.mr4, ._6tKNQ { margin-right:  32px; margin-right:  2rem; }
/* negative margin (mainly for correction of horizontal positioning) */
.mln1 { margin-left: -8px; margin-left: -0.5rem }
.mln2 { margin-left: -16px; margin-left: -1rem }
.mln3 { margin-left: -24px; margin-left: -1.5rem }
.mln4 { margin-left: -32px; margin-left: -2rem }
/* responsive spacing */
@media screen and (min-width: 40em) {
    /* padding */

    /* 0 */
    .sm-p0  { padding:        0; }
    .sm-pt0 { padding-top:    0; }
    .sm-pb0 { padding-bottom: 0; }
    .sm-pl0 { padding-left:   0; }
    .sm-pr0 { padding-right:  0; }

    /* 1 */
    .sm-p1 { padding: 0.5rem; }

    .sm-px1 {
      padding-left:  0.5rem;
      padding-right: 0.5rem;
    }

    .sm-py1 {
      padding-top:    0.5rem;
      padding-bottom: 0.5rem;
    }

    .sm-pt1 { padding-top:    0.5rem; }
    .sm-pb1 { padding-bottom: 0.5rem; }
    .sm-pl1 { padding-left:   0.5rem; }
    .sm-pr1 { padding-right:  0.5rem; }

    /* 2 */

    .sm-p2 { padding: 1rem; }

    .sm-px2 {
      padding-left:  1rem;
      padding-right: 1rem;
    }

    .sm-py2 {
      padding-top:    1rem;
      padding-bottom: 1rem;
    }

    .sm-pt2 { padding-top:    1rem; }
    .sm-pb2 { padding-bottom: 1rem; }
    .sm-pl2 { padding-left:   1rem; }
    .sm-pr2 { padding-right:  1rem; }

    /* 3 */

    .sm-p3 { padding: 1.5rem; }

    .sm-px3 {
      padding-left:  1.5rem;
      padding-right: 1.5rem;
    }

    .sm-py3 {
      padding-top:    1.5rem;
      padding-bottom: 1.5rem;
    }

    .sm-pt3 { padding-top:    1.5rem; }
    .sm-pb3 { padding-bottom: 1.5rem; }
    .sm-pl3 { padding-left:   1.5rem; }
    .sm-pr3 { padding-right:  1.5rem; }


    /* 4 */

    .sm-p4 { padding: 2rem; }

    .sm-px4 {
      padding-left:  2rem;
      padding-right: 2rem;
    }

    .sm-py4 {
      padding-top:    2rem;
      padding-bottom: 2rem;
    }

    .sm-pt4 { padding-top:    2rem; }
    .sm-pb4 { padding-bottom: 2rem; }
    .sm-pl4 { padding-left:   2rem; }
    .sm-pr4 { padding-right:  2rem; }


    /* margin */

     /* 0 */
    .sm-m0  { margin:        0; }
    .sm-mt0 { margin-top:    0; }
    .sm-mb0 { margin-bottom: 0; }
    .sm-ml0 { margin-left:   0; }
    .sm-mr0 { margin-right:  0; }

    /* 1 */
    .sm-m1 { margin: 0.5rem; }

    .sm-mx1 {
      margin-left:  0.5rem;
      margin-right: 0.5rem;
    }

    .sm-my1 {
      margin-top:    0.5rem;
      margin-bottom: 0.5rem;
    }

    .sm-mt1 { margin-top:    0.5rem; }
    .sm-mb1 { margin-bottom: 0.5rem; }
    .sm-ml1 { margin-left:   0.5rem; }
    .sm-mr1 { margin-right:  0.5rem; }

    /* 2 */

    .sm-m2 { margin: 1rem; }

    .sm-mx2 {
      margin-left:  1rem;
      margin-right: 1rem;
    }

    .sm-my2 {
      margin-top:    1rem;
      margin-bottom: 1rem;
    }

    .sm-mt2 { margin-top:    1rem; }
    .sm-mb2 { margin-bottom: 1rem; }
    .sm-ml2 { margin-left:   1rem; }
    .sm-mr2 { margin-right:  1rem; }

    /* 3 */

    .sm-m3 { margin: 1.5rem; }

    .sm-mx3 {
      margin-left:  1.5rem;
      margin-right: 1.5rem;
    }

    .sm-my3 {
      margin-top:    1.5rem;
      margin-bottom: 1.5rem;
    }

    .sm-mt3 { margin-top:    1.5rem; }
    .sm-mb3 { margin-bottom: 1.5rem; }
    .sm-ml3 { margin-left:   1.5rem; }
    .sm-mr3 { margin-right:  1.5rem; }

    /* 4 */

    .sm-m4 { margin: 2rem; }

    .sm-mx4 {
      margin-left:  2rem;
      margin-right: 2rem;
    }

    .sm-my4 {
      margin-top:    2rem;
      margin-bottom: 2rem;
    }

    .sm-mt4 { margin-top:    2rem; }
    .sm-mb4 { margin-bottom: 2rem; }
    .sm-ml4 { margin-left:   2rem; }
    .sm-mr4 { margin-right:  2rem; }
}
@media screen and (min-width: 60em) {
    /* padding */

    /* 0 */
    .md-p0  { padding:        0; }
    .md-pt0 { padding-top:    0; }
    .md-pb0 { padding-bottom: 0; }
    .md-pl0 { padding-left:   0; }
    .md-pr0 { padding-right:  0; }

    /* 1 */
    .md-p1 { padding: 0.5rem; }

    .md-px1 {
      padding-left:  0.5rem;
      padding-right: 0.5rem;
    }

    .md-py1 {
      padding-top:    0.5rem;
      padding-bottom: 0.5rem;
    }

    .md-pt1 { padding-top:    0.5rem; }
    .md-pb1 { padding-bottom: 0.5rem; }
    .md-pl1 { padding-left:   0.5rem; }
    .md-pr1 { padding-right:  0.5rem; }

    /* 2 */

    .md-p2 { padding: 1rem; }

    .md-px2 {
      padding-left:  1rem;
      padding-right: 1rem;
    }

    .md-py2 {
      padding-top:    1rem;
      padding-bottom: 1rem;
    }

    .md-pt2 { padding-top:    1rem; }
    .md-pb2 { padding-bottom: 1rem; }
    .md-pl2 { padding-left:   1rem; }
    .md-pr2 { padding-right:  1rem; }

    /* 3 */

    .md-p3 { padding: 1.5rem; }

    .md-px3 {
      padding-left:  1.5rem;
      padding-right: 1.5rem;
    }

    .md-py3 {
      padding-top:    1.5rem;
      padding-bottom: 1.5rem;
    }

    .md-pt3 { padding-top:    1.5rem; }
    .md-pb3 { padding-bottom: 1.5rem; }
    .md-pl3 { padding-left:   1.5rem; }
    .md-pr3 { padding-right:  1.5rem; }


    /* 4 */

    .md-p4 { padding: 2rem; }

    .md-px4 {
      padding-left:  2rem;
      padding-right: 2rem;
    }

    .md-py4 {
      padding-top:    2rem;
      padding-bottom: 2rem;
    }

    .md-pt4 { padding-top:    2rem; }
    .md-pb4 { padding-bottom: 2rem; }
    .md-pl4 { padding-left:   2rem; }
    .md-pr4 { padding-right:  2rem; }


    /* margin */

     /* 0 */
    .md-m0  { margin:        0; }
    .md-mt0 { margin-top:    0; }
    .md-mb0 { margin-bottom: 0; }
    .md-ml0 { margin-left:   0; }
    .md-mr0 { margin-right:  0; }

    /* 1 */
    .md-m1 { margin: 0.5rem; }

    .md-mx1 {
      margin-left:  0.5rem;
      margin-right: 0.5rem;
    }

    .md-my1 {
      margin-top:    0.5rem;
      margin-bottom: 0.5rem;
    }

    .md-mt1 { margin-top:    0.5rem; }
    .md-mb1 { margin-bottom: 0.5rem; }
    .md-ml1 { margin-left:   0.5rem; }
    .md-mr1 { margin-right:  0.5rem; }

    /* 2 */

    .md-m2 { margin: 1rem; }

    .md-mx2 {
      margin-left:  1rem;
      margin-right: 1rem;
    }

    .md-my2 {
      margin-top:    1rem;
      margin-bottom: 1rem;
    }

    .md-mt2 { margin-top:    1rem; }
    .md-mb2 { margin-bottom: 1rem; }
    .md-ml2 { margin-left:   1rem; }
    .md-mr2 { margin-right:  1rem; }

    /* 3 */

    .md-m3 { margin: 1.5rem; }

    .md-mx3 {
      margin-left:  1.5rem;
      margin-right: 1.5rem;
    }

    .md-my3 {
      margin-top:    1.5rem;
      margin-bottom: 1.5rem;
    }

    .md-mt3 { margin-top:    1.5rem; }
    .md-mb3 { margin-bottom: 1.5rem; }
    .md-ml3 { margin-left:   1.5rem; }
    .md-mr3 { margin-right:  1.5rem; }

    /* 4 */

    .md-m4 { margin: 2rem; }

    .md-mx4 {
      margin-left:  2rem;
      margin-right: 2rem;
    }

    .md-my4 {
      margin-top:    2rem;
      margin-bottom: 2rem;
    }

    .md-mt4 { margin-top:    2rem; }
    .md-mb4 { margin-bottom: 2rem; }
    .md-ml4 { margin-left:   2rem; }
    .md-mr4 { margin-right:  2rem; }
}
@media screen and (min-width: 80em) {
    /* padding */

    /* 0 */
    .lg-p0  { padding:        0; }
    .lg-pt0 { padding-top:    0; }
    .lg-pb0 { padding-bottom: 0; }
    .lg-pl0 { padding-left:   0; }
    .lg-pr0 { padding-right:  0; }

    /* 1 */
    .lg-p1 { padding: 0.5rem; }

    .lg-px1 {
      padding-left:  0.5rem;
      padding-right: 0.5rem;
    }

    .lg-py1 {
      padding-top:    0.5rem;
      padding-bottom: 0.5rem;
    }

    .lg-pt1 { padding-top:    0.5rem; }
    .lg-pb1 { padding-bottom: 0.5rem; }
    .lg-pl1 { padding-left:   0.5rem; }
    .lg-pr1 { padding-right:  0.5rem; }

    /* 2 */

    .lg-p2 { padding: 1rem; }

    .lg-px2 {
      padding-left:  1rem;
      padding-right: 1rem;
    }

    .lg-py2 {
      padding-top:    1rem;
      padding-bottom: 1rem;
    }

    .lg-pt2 { padding-top:    1rem; }
    .lg-pb2 { padding-bottom: 1rem; }
    .lg-pl2 { padding-left:   1rem; }
    .lg-pr2 { padding-right:  1rem; }

    /* 3 */

    .lg-p3 { padding: 1.5rem; }

    .lg-px3 {
      padding-left:  1.5rem;
      padding-right: 1.5rem;
    }

    .lg-py3 {
      padding-top:    1.5rem;
      padding-bottom: 1.5rem;
    }

    .lg-pt3 { padding-top:    1.5rem; }
    .lg-pb3 { padding-bottom: 1.5rem; }
    .lg-pl3 { padding-left:   1.5rem; }
    .lg-pr3 { padding-right:  1.5rem; }


    /* 4 */

    .lg-p4 { padding: 2rem; }

    .lg-px4 {
      padding-left:  2rem;
      padding-right: 2rem;
    }

    .lg-py4 {
      padding-top:    2rem;
      padding-bottom: 2rem;
    }

    .lg-pt4 { padding-top:    2rem; }
    .lg-pb4 { padding-bottom: 2rem; }
    .lg-pl4 { padding-left:   2rem; }
    .lg-pr4 { padding-right:  2rem; }


    /* margin */

     /* 0 */
    .lg-m0  { margin:        0; }
    .lg-mt0 { margin-top:    0; }
    .lg-mb0 { margin-bottom: 0; }
    .lg-ml0 { margin-left:   0; }
    .lg-mr0 { margin-right:  0; }

    /* 1 */
    .lg-m1 { margin: 0.5rem; }

    .lg-mx1 {
      margin-left:  0.5rem;
      margin-right: 0.5rem;
    }

    .lg-my1 {
      margin-top:    0.5rem;
      margin-bottom: 0.5rem;
    }

    .lg-mt1 { margin-top:    0.5rem; }
    .lg-mb1 { margin-bottom: 0.5rem; }
    .lg-ml1 { margin-left:   0.5rem; }
    .lg-mr1 { margin-right:  0.5rem; }

    /* 2 */

    .lg-m2 { margin: 1rem; }

    .lg-mx2 {
      margin-left:  1rem;
      margin-right: 1rem;
    }

    .lg-my2 {
      margin-top:    1rem;
      margin-bottom: 1rem;
    }

    .lg-mt2 { margin-top:    1rem; }
    .lg-mb2 { margin-bottom: 1rem; }
    .lg-ml2 { margin-left:   1rem; }
    .lg-mr2 { margin-right:  1rem; }

    /* 3 */

    .lg-m3 { margin: 1.5rem; }

    .lg-mx3 {
      margin-left:  1.5rem;
      margin-right: 1.5rem;
    }

    .lg-my3 {
      margin-top:    1.5rem;
      margin-bottom: 1.5rem;
    }

    .lg-mt3 { margin-top:    1.5rem; }
    .lg-mb3 { margin-bottom: 1.5rem; }
    .lg-ml3 { margin-left:   1.5rem; }
    .lg-mr3 { margin-right:  1.5rem; }

    /* 4 */

    .lg-m4 { margin: 2rem; }

    .lg-mx4 {
      margin-left:  2rem;
      margin-right: 2rem;
    }

    .lg-my4 {
      margin-top:    2rem;
      margin-bottom: 2rem;
    }

    .lg-mt4 { margin-top:    2rem; }
    .lg-mb4 { margin-bottom: 2rem; }
    .lg-ml4 { margin-left:   2rem; }
    .lg-mr4 { margin-right:  2rem; }
}
@media screen and (min-width: 120em) {
    /* padding */

    /* 0 */
    .xl-p0  { padding:        0; }
    .xl-pt0 { padding-top:    0; }
    .xl-pb0 { padding-bottom: 0; }
    .xl-pl0 { padding-left:   0; }
    .xl-pr0 { padding-right:  0; }

    /* 1 */
    .xl-p1 { padding: 0.5rem; }

    .xl-px1 {
      padding-left:  0.5rem;
      padding-right: 0.5rem;
    }

    .xl-py1 {
      padding-top:    0.5rem;
      padding-bottom: 0.5rem;
    }

    .xl-pt1 { padding-top:    0.5rem; }
    .xl-pb1 { padding-bottom: 0.5rem; }
    .xl-pl1 { padding-left:   0.5rem; }
    .xl-pr1 { padding-right:  0.5rem; }

    /* 2 */

    .xl-p2 { padding: 1rem; }

    .xl-px2 {
      padding-left:  1rem;
      padding-right: 1rem;
    }

    .xl-py2 {
      padding-top:    1rem;
      padding-bottom: 1rem;
    }

    .xl-pt2 { padding-top:    1rem; }
    .xl-pb2 { padding-bottom: 1rem; }
    .xl-pl2 { padding-left:   1rem; }
    .xl-pr2 { padding-right:  1rem; }

    /* 3 */

    .xl-p3 { padding: 1.5rem; }

    .xl-px3 {
      padding-left:  1.5rem;
      padding-right: 1.5rem;
    }

    .xl-py3 {
      padding-top:    1.5rem;
      padding-bottom: 1.5rem;
    }

    .xl-pt3 { padding-top:    1.5rem; }
    .xl-pb3 { padding-bottom: 1.5rem; }
    .xl-pl3 { padding-left:   1.5rem; }
    .xl-pr3 { padding-right:  1.5rem; }


    /* 4 */

    .xl-p4 { padding: 2rem; }

    .xl-px4 {
      padding-left:  2rem;
      padding-right: 2rem;
    }

    .xl-py4 {
      padding-top:    2rem;
      padding-bottom: 2rem;
    }

    .xl-pt4 { padding-top:    2rem; }
    .xl-pb4 { padding-bottom: 2rem; }
    .xl-pl4 { padding-left:   2rem; }
    .xl-pr4 { padding-right:  2rem; }


    /* margin */

     /* 0 */
    .xl-m0  { margin:        0; }
    .xl-mt0 { margin-top:    0; }
    .xl-mb0 { margin-bottom: 0; }
    .xl-ml0 { margin-left:   0; }
    .xl-mr0 { margin-right:  0; }

    /* 1 */
    .xl-m1 { margin: 0.5rem; }

    .xl-mx1 {
      margin-left:  0.5rem;
      margin-right: 0.5rem;
    }

    .xl-my1 {
      margin-top:    0.5rem;
      margin-bottom: 0.5rem;
    }

    .xl-mt1 { margin-top:    0.5rem; }
    .xl-mb1 { margin-bottom: 0.5rem; }
    .xl-ml1 { margin-left:   0.5rem; }
    .xl-mr1 { margin-right:  0.5rem; }

    /* 2 */

    .xl-m2 { margin: 1rem; }

    .xl-mx2 {
      margin-left:  1rem;
      margin-right: 1rem;
    }

    .xl-my2 {
      margin-top:    1rem;
      margin-bottom: 1rem;
    }

    .xl-mt2 { margin-top:    1rem; }
    .xl-mb2 { margin-bottom: 1rem; }
    .xl-ml2 { margin-left:   1rem; }
    .xl-mr2 { margin-right:  1rem; }

    /* 3 */

    .xl-m3 { margin: 1.5rem; }

    .xl-mx3 {
      margin-left:  1.5rem;
      margin-right: 1.5rem;
    }

    .xl-my3 {
      margin-top:    1.5rem;
      margin-bottom: 1.5rem;
    }

    .xl-mt3 { margin-top:    1.5rem; }
    .xl-mb3 { margin-bottom: 1.5rem; }
    .xl-ml3 { margin-left:   1.5rem; }
    .xl-mr3 { margin-right:  1.5rem; }

    /* 4 */

    .xl-m4 { margin: 2rem; }

    .xl-mx4 {
      margin-left:  2rem;
      margin-right: 2rem;
    }

    .xl-my4 {
      margin-top:    2rem;
      margin-bottom: 2rem;
    }

    .xl-mt4 { margin-top:    2rem; }
    .xl-mb4 { margin-bottom: 2rem; }
    .xl-ml4 { margin-left:   2rem; }
    .xl-mr4 { margin-right:  2rem; }
}
/* center */
.text-centered, ._1NM1d { text-align: center; }
@media screen and (min-width: 40em) {
    .sm-text-centered { text-align: center; }
}
@media screen and (min-width: 60em) {
    .md-text-centered { text-align: center; }
}
@media screen and (min-width: 80em) {
    .lg-text-centered { text-align: center; }
}
@media screen and (min-width: 120em) {
    .xl-text-centered { text-align: center; }
}
/* left */
.text-left, .BA8ZG { text-align: left; }
@media screen and (min-width: 40em) {
    .sm-text-left { text-align: left; }
}
@media screen and (min-width: 60em) {
    .md-text-left { text-align: left; }
}
@media screen and (min-width: 80em) {
    .lg-text-left { text-align: left; }
}
@media screen and (min-width: 120em) {
    .xl-text-left { text-align: left; }
}
/* right */
.text-right, .pAcf9 { text-align: right; }
@media screen and (min-width: 40em) {
    .sm-text-right { text-align: right; }
}
@media screen and (min-width: 60em) {
    .md-text-right { text-align: right; }
}
@media screen and (min-width: 80em) {
    .lg-text-right { text-align: right; }
}
@media screen and (min-width: 120em) {
    .xl-text-right { text-align: right; }
}
.text-uppercase, ._1_By0 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
/* text weight */
.text-light  { font-weight: 300; }
.text-normal { font-weight: 400; }
.text-bold, ._2yWka   { font-weight: 700; }
/* text style */
.text-italic { font-style: italic; }
/* larger text size used for descriptions  */
.text-body, ._1SXsA {
  font-size: 1.286em;
  line-height: 1.457em;
  color: #8E9BA9; /* TODO - is this bad? */
}
.text-paragraph, ._2lmNN {
  font-size: 1.143em;
  line-height: 1.5em;
}
.text-small {
    font-size: 0.875em;
}
.text-smaller {
    font-size: 0.8em;
}
.text-current {
    color: currentColor;
}
.text-underline {
    text-decoration: underline;
}
.text-underline-hover:hover {
    text-decoration: underline;
}
.text-ellipsis {
    text-overflow: ellipsis;
}
.text-nowrap {
    white-space: nowrap;
}
.text-code {
    font-family: monospace;
    color: #8691AC;
    background-color: #E9F2F5;
    border-radius: 2px;
    padding: 0.2em 0.4em;
    line-height: 1.4em;
    white-space: pre;
}
.text-monospace,
._2fetg {
    font-family: Monaco, monospace;
}
.text-pre-wrap {
  white-space: pre-wrap;
}
.text-measure {
    max-width: 620px;
}
.transition-color, ._3I3Gb {
  transition: color .3s linear;
}
.transition-background, ._1GbhH {
	transition: background .2s linear;
}
.transition-shadow {
  transition: box-shadow .2s linear;
}
.transition-all {
  transition: all .2s linear;
}
.transition-border {
  transition: border .3s linear;
}
.Button {
  display: inline-block;
  box-sizing: border-box;
  text-decoration: none;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  background: #FBFCFD;
  border: 1px solid #ddd;
  color: #727479;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  border-radius: 4px;
}
.Button:hover {
  color: #509EE3;
}
@media screen and (min-width: 80em) {
    .Button {
        padding: 0.75rem 1rem;
    }
}
@media screen and (min-width: 120em) {
    .Button {
        padding: 1rem 1.5rem;
    }
}
.Button:hover {
  transition: border .3s linear;
}
.Button--small {
    padding: 7.2px 16px;
    padding: 0.45rem 1rem;
    font-size: 9.6px;
    font-size: 0.6rem;
}
.Button--medium {
    padding: 8px 16px;
    padding: 0.5rem 1rem;
    font-size: 12.8px;
    font-size: 0.8rem;
}
.Button--large {
    padding: 12.8px 20px;
    padding: 0.8rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
}
.Button-normal {
    font-weight: normal;
}
.Button--primary {
  color: #fff;
  background: #509EE3;
  border: 1px solid #509EE3;
}
.Button--primary:hover {
  color: #fff;
  border-color: rgb(72, 142, 204);
  background-color: rgb(72, 142, 204);
}
.Button--warning {
  color: #fff;
  background: #EF8C8C;
  border: 1px solid #EF8C8C;
}
.Button--warning:hover {
  color: #fff;
  border-color: rgb(215, 126, 126);
  background-color: rgb(215, 126, 126);
}
.Button--cancel {
  border-radius: 99px;
}
.Button--white {
    background-color: white;
    color: rgb(174, 174, 174);
    border-color: rgb(174, 174, 174);
}
.Button--purple {
    color: white;
    background-color: #A989C5;
    border: 1px solid #A989C5;
}
.Button--purple:hover {
    color: white;
    background-color: #885AB1;
    border-color: #885AB1;
}
.Button--borderless {
  border: none;
  background: transparent;
  color: rgb(149, 149, 149);
}
.Button--borderless:hover {
  color: rgb(124, 124, 124);
}
.Button--onlyIcon {
    border: none;
    background: transparent;
    color: #727479;
    padding: 0;
}
.Button-group {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #b9b9b9;
  overflow: hidden;
  clear: both;
}
.Button-group .Button {
  margin: 0;
  float: left;
  border-top: none;
  border-bottom: none;
  border-right: none;
  border-radius: 0;
  box-shadow: none;
}
.Button-group .Button--active {
  background-color: #9CC177;
  color: #fff;
}
.Button-group .Button:first-child {
  border-left: none;
}
.Button-group--blue {
  border-color: rgb(194, 216, 242);
}
.Button-group--blue .Button {
  color: rgb(147, 155, 178);
}
.Button-group--blue .Button--active {
  background-color: rgb(227, 238, 250);
  color: rgb(74, 144, 226);
}
.Button-group--brand {
  border-color: white;
}
.Button-group--brand .Button {
  border-color: white;
  color: #509EE3;
  background-color: #E5E5E5;
}
.Button-group--brand .Button--active {
  background-color: #509EE3;
  color: white;
}
.Button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.Button--selected,
.Button--selected:hover {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .12);
  background-color: #F4F6F8;
}
.Button--danger {
    background-color: #EF8C8C;
    border-color: #EF8C8C;
    color: #fff;
}
.Button--danger:hover {
    color: white;
    background-color: rgb(215, 126, 126);
    border-color: rgb(215, 126, 126);
}
.Button--success {
    background-color: #9CC177;
    border-color: #9CC177;
    color: #fff;
}
.Button--success:hover
{
    color: #fff;
}
.Button--success-new {
    border-color: #9CC177;
    color: #9CC177;
    font-weight: bold;
}
/* toggle button */
.Button-toggle {
    color: #797979;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    border: 1px solid #ddd;
    border-radius: 40px;
    width: 48px;
    width: 3rem;
    transition: background .2s linear .2s, border .2s linear .2s;
}
.Button-toggleIndicator {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 4px;
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 99px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .02);
    transition: margin .3s linear;
    background-color: #fff;
}
.Button-toggle.Button--toggled .Button-toggleIndicator {
    margin-left: 50%;
    transition: margin .3s linear;
}
.Button-toggle.Button--toggled {
    color: #509EE3;
    background-color: #509EE3;
    border-color: #509EE3;
    transition: background .2s linear .2s, border .2s linear .2s;
}
.Button--withIcon {
    line-height: 1;
}
.Dropdown {
  position: relative;
}
.Dropdown-content {
  opacity: 0; /* start invisible */
  pointer-events: none; /* and without any clicks */
  z-index: 20;
  position: absolute;
  top: 40px;
  min-width: 200px;
  margin-top: 18px;
  border: 1px solid rgba(0, 0, 0, .064);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .12);
  background-clip: padding-box;
  padding-top: 1em;
  padding-bottom: 1em;
}
.Dropdown-content:before {
  position: absolute;
  top: -20px;
  right: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-right: 5px solid red;
  content: '';
  display: block;
}
/* switching from home rolled to BS logic for dropdowns so we still have both classes */
.Dropdown.open .Dropdown-content,
.Dropdown--showing.Dropdown-content{
  opacity: 1;
  pointer-events: all;
  transition: opacity .3s linear, margin .2s linear;
  margin-top: 0;
}
.Dropdown-item {
    padding-top: 16px;
    padding-top: 1rem;
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 32px;
    padding-left: 2rem;
    padding-right: 32px;
    padding-right: 2rem;
    line-height: 1;
}
.Dropdown .Dropdown-item .link:hover {
    text-decoration: none;
}
.Dropdown-item:hover {
    color: #fff;
    background-color: #509EE3;
}
.Dropdown .Dropdown-item:hover {
    text-decoration: none;
}
.Form-new {
    padding-top: 32px;
    padding-top: 2rem;
}
/* TODO: combine this and the scoped version */
.Form-label {
  display: block;
  color: #949494;
  font-size: 19.2px;
  font-size: 1.2rem;
}
.Form-field {
    position: relative;
    color: #6C6C6C;
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
}
/* TODO: remove this scoping once we've converted non admin forms */
/* form labels inherit the color of the parent, allowing for easy error changes */
.Form-field .Form-label {
    display: block;
    font-size: 0.85em;
    font-weight: 700;
    color: currentColor;
}
.Form-field.Form--fieldError {
    color: #EF8C8C;
}
.Form-input {
    padding-top: 9.6px;
    padding-top: 0.6rem;
    padding-bottom: 9.6px;
    padding-bottom: 0.6rem;
    font-family: "Lato";
    line-height: 1;
    border: none;
    background-color: transparent;
    transition: color .3s linear;
}
.Form-message {
    opacity: 0;
    transition: none;
}
.Form-message.Form-message--visible {
    opacity: 1;
    transition: opacity 500ms linear;
}
/* form-input font sizes */
.Form-input { font-size: 16px; font-size: 1.0rem; }
@media screen and (min-width: 60em) {
    .Form-input { font-size: 1.25rem; }
}
@media screen and (min-width: 80em) {
    .Form-input { font-size: 1.571rem; }
}
.Form-input:focus {
    outline: none;
}
.Form-offset {
    padding-left: 38.4px;
    padding-left: 2.4rem;
}
.Form-charm {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 0.15em;
    height: 3em;
    background-color: #ddd;
    box-sizing: border-box;
    opacity: 0;
    transition: background-color .3s linear;
    transition: opacity .3s linear;
}
.Form-field.Form--fieldError .Form-charm {
    background-color: #EF8C8C;
    opacity: 1;
}
.Form-input:focus + .Form-charm {
    background-color: #509EE3;
    opacity: 1;
}
.Form-field:hover .Form-input {
    color: #ddd;
    background: rgba(0, 0, 0, .02);
}
/* ewww */
.Form-field:hover .Form-input.ng-dirty {
    color: #222;
    background-color: #fff;
}
.Form-field:hover .Form-charm {
    opacity: 1;
}
.Form-field:hover .Form-input:focus {
    transition: color .3s linear;
    color: #444;
    background-color: transparent;
    transition: background .3s linear;
}
.Form-radio {
    display: none;
}
.Form-radio + label {
    cursor: pointer;
    display: inline-block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    position: relative;
    margin-right: 8px;
    margin-right: 0.5rem;
    width: 8px;
    height: 8px;
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgb(174, 174, 174);
    border-radius: 8px;
}
.Form-radio:checked + label {
    box-shadow: 0 0 0 2px #509EE3;
    background-color: #509EE3;
}
/* TODO: replace instances of Form-group with Form-field */
.Form-group {
  padding: 1em;
  transition: opacity .3s linear;
}
.Form-groupDisabled {
  opacity: 0.2;
  pointer-events: none;
  transition: opacity .3s linear;
}
.Form-actions {
    padding-left: 38.4px;
    padding-left: 2.4rem;
    padding-bottom: 38.4px;
    padding-bottom: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.FormTitleSeparator {
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color: #C0C0C0;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #C0C0C0;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #C0C0C0;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #C0C0C0;
}
.NewForm .Form-label {
    text-transform: uppercase;
    color: rgb(174, 174, 174);
    margin-bottom: 0.5em;
}
.NewForm .Form-input {
    font-size: 16px;
    color: #727479;
    padding: 0.5em;
    background-color: #FCFCFC;
    border: 1px solid #EAEAEA;
    border-radius: 4px;
}
.NewForm .Form-input:focus {
    border-color: #509EE3;
    box-shadow: none;
    outline: 0;
}
.NewForm .Form-header {
    padding: 32px;
    padding: 2rem;
}
.NewForm .Form-inputs {
    padding-left: 32px;
    padding-left: 2rem;
    padding-right: 32px;
    padding-right: 2rem;
}
.NewForm .Form-actions {
    padding-bottom: 19.2px;
    padding-bottom: 1.2rem;
    padding-top: 19.2px;
    padding-top: 1.2rem;
    padding-left: 32px;
    padding-left: 2rem;
    padding-right: 32px;
    padding-right: 2rem;
}
.Header-title {
    width: 455px;
}
.Header-title-name {
    font-size: 1.24em;
    color: #797979;
}
.Header-attribution {
    display: none; /* disabled */
    color: #ADADAD;
    margin-bottom: 0.5em;
}
.Header-buttonSection {
    padding-right: 1em;
    margin-right: 1em;
    border-right: 1px solid rgba(0, 0, 0, .2);
}
.Header-buttonSection:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}
.Header-button {
    margin-right: 1.5em;
}
.Header-button:last-child {
    margin-right: 0;
}
.EditHeader {
    background-color: #6CAFED;
}
.EditHeader.EditHeader--admin {
    background-color: #9AA7BC;
}
.EditHeader-title {
    font-weight: 700;
    color: white;
}
.EditHeader-subtitle {
    color: rgba(255, 255, 255, .5);
}
.EditHeader .Button {
    color: white;
    border: none;
    font-size: 1em;
    text-transform: capitalize;
    background-color: rgba(255, 255, 255, .1);
    margin-left: 0.75em;
}
.EditHeader .Button--primary {
    background-color: white;
    color: #509EE3;
}
.EditHeader.EditHeader--admin .Button--primary {
  background-color: white;
  color: #444444;
}
.EditHeader .Button:hover {
    color: white;
    background-color: #509EE3;
}
.EditHeader.EditHeader--admin .Button:hover {
  background-color: #8091AB;
}
.IconWrapper {
  font-size: 0;
}
.Logo .Icon {
    width: 33px;
    height: 42.5px;
}
@-webkit-keyframes icon-pulse {
    0% {
        box-shadow: 0 0 5px rgba(80, 158, 227, 1.0);
    }
    50% {
        box-shadow: 0 0 5px rgba(80, 158, 227, .25);
    }
    100% {
        box-shadow: 0 0 5px rgba(80, 158, 227, 1.0);
    }
}
@keyframes icon-pulse {
    0% {
        box-shadow: 0 0 5px rgba(80, 158, 227, 1.0);
    }
    50% {
        box-shadow: 0 0 5px rgba(80, 158, 227, .25);
    }
    100% {
        box-shadow: 0 0 5px rgba(80, 158, 227, 1.0);
    }
}
.Icon--pulse {
    border-radius: 99px;
    box-shadow: 0 0 5px #509EE3;
    padding: 0.75em;
    -webkit-animation-name: icon-pulse;
            animation-name: icon-pulse;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
}
@media screen and (min-width: 60em) {
    .Logo .Icon {
        width: 66px;
        height: 85px;
    }
}
.List {
  padding: 8px;
  padding: 0.5rem;
}
.List-section-header .Icon,
.List-item .List-item-arrow .Icon {
  color: #727479;
}
.List-item .Icon {
    color: #DFE8EA;
}
.List-section-header {
    color: #727479;
    border: 2px solid transparent; /* so that spacing matches .List-item */
}
/* these crazy rules are needed to get currentColor to propagate to the right elements in the right states */
.List-section--togglable .List-section-header:hover,
.List-section--togglable .List-section-header:hover .Icon,
.List-section--togglable .List-section-header:hover .List-section-title,
.List-section--expanded      .List-section-header,
.List-section--expanded      .List-section-header .List-section-icon .Icon {
    color: currentColor;
}
.List-section--expanded .List-section-header .List-section-title {
    color: #727479;
}
.List-section-title {
  word-wrap: break-word;
  max-width: 230px;
}
.List-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 4px;
    margin-top: 2px;
    margin-bottom: 2px;
}
.List-item--disabled .List-item-title {
    color: rgb(174, 174, 174);
}
.List-item:not(.List-item--disabled):hover,
.List-item--selected {
    background-color: currentColor;
    border-color: rgba(0, 0, 0, .2);
    /*color: white;*/
}
.List-item-title {
    color: #727479;
}
.List-item:not(.List-item--disabled):hover .List-item-title,
.List-item--selected .List-item-title {
    color: white;
}
.List-item:not(.List-item--disabled):hover .Icon,
.List-item--selected .Icon {
    color: white !important;
}
.ModalContainer {
  z-index: 4;
}
.Modal {
  margin: auto;
  width: 640px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .12);
  max-height: 90%;
  overflow-y: auto;
}
/* On IE11, single flex item with `margin: auto` gets shifted to flex end
 * https://github.com/philipwalton/flexbugs/issues/157
 * Set margin to zero when using Flexbox in `WindowModal` component
 */
.Modal-backdrop > .Modal {
  margin: 0;
}
.Modal.Modal--small   { width: 480px; }
/* TODO - why is this one px? */
.Modal.Modal--medium  { width: 65%; }
.Modal.Modal--wide    { width: 85%; }
.Modal.Modal--tall {
  min-height: 85%;
}
.Modal--full {
  background-color: white;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.Modal-backdrop {
  background-color: rgba(46, 53, 59, .6);
}
/* TRANSITIONS */
/* backdrop */
.Modal-backdrop.Modal-appear,
.Modal-backdrop.Modal-enter {
  transition: background-color 200ms ease-in-out;
  background-color: rgba(46, 53, 59, .01);
}
.Modal-backdrop.Modal-appear-active,
.Modal-backdrop.Modal-enter-active {
  background-color: rgba(46, 53, 59, .6);
}
.Modal-backdrop.Modal-leave {
  transition: background-color 200ms ease-in-out 100ms;
  background-color: rgba(46, 53, 59, .6);
}
.Modal-backdrop.Modal-leave-active {
  background-color: rgba(46, 53, 59, .01);
}
/* modal */
.Modal-backdrop.Modal-appear .Modal,
.Modal-backdrop.Modal-enter .Modal {
  transition: opacity 200ms linear 100ms, -webkit-transform 200ms ease-in-out 100ms;
  transition: opacity 200ms linear 100ms, transform 200ms ease-in-out 100ms;
  transition: opacity 200ms linear 100ms, transform 200ms ease-in-out 100ms, -webkit-transform 200ms ease-in-out 100ms;
  opacity: 0.01;
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
}
.Modal-backdrop.Modal-appear-active .Modal,
.Modal-backdrop.Modal-enter-active .Modal {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.Modal-backdrop.Modal-leave .Modal {
  transition: opacity 200ms linear, -webkit-transform 200ms ease-in-out;
  transition: opacity 200ms linear, transform 200ms ease-in-out;
  transition: opacity 200ms linear, transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.Modal-backdrop.Modal-leave-active .Modal {
  opacity: 0.01;
  -webkit-transform: translate(0, -40px);
          transform: translate(0, -40px);
}
.Select {
  position: relative;
  display: inline-block;
  color: #777;
}
/* custom arrows */
.Select:before,
.Select:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  pointer-events: none; /* no clicks since arrow is just for appearance */
}
/* arrow pointing up */
.Select:before {
  margin-top: -4px;
  margin-top: -.25rem;
  border-left: 4.8px solid transparent;
  border-left: .3rem solid transparent;
  border-right: 4.8px solid transparent;
  border-right: .3rem solid transparent;
  border-bottom: 4.8px solid #CACACA;
  border-bottom: .3rem solid #CACACA;
}
/* arrow pointing down */
.Select:after {
  margin-top:  3.2px;
  margin-top:  .2rem;
  border-left: 4.8px solid transparent;
  border-left: .3rem solid transparent;
  border-right: 4.8px solid transparent;
  border-right: .3rem solid transparent;
  border-top: 4.8px solid #CACACA;
  border-top: .3rem solid #CACACA;
}
.Select select {
  display: inline-block;
  width: 100%;
  padding: 16px 48px 16px 16px;
  padding: 1rem 3rem 1rem 1rem;
  font-size: 0.8em;
  line-height: 1;
  color: #777;

  border: 1px solid #d9d9d9;
  background: #fff;

  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;

   box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.Select--blue select {
    color: rgb(78, 146, 223);
    border-color: rgb(195, 216, 241);
    background-color: rgb(227, 238, 249);
}
.Select--blue:after {
    border-top: 4.8px solid rgb(78, 146, 223);
    border-top: .3rem solid rgb(78, 146, 223);
}
.Select--blue:before {
    border-bottom: 4.8px solid rgb(78, 146, 223);
    border-bottom: .3rem solid rgb(78, 146, 223);
}
.Select--purple select {
    color: rgb(168, 138, 195);
    border-color: rgb(203, 186, 219);
    background-color: rgb(231, 223, 239);
}
.Select--purple:after {
    border-top: 4.8px solid rgb(168, 138, 195);
    border-top: .3rem solid rgb(168, 138, 195);
}
.Select--purple:before {
    border-bottom: 4.8px solid rgb(168, 138, 195);
    border-bottom: .3rem solid rgb(168, 138, 195);
}
.Select--small select {
    padding: 4px 24px 4px 8px;
    padding: 0.25rem 1.5rem 0.25rem 0.5rem;
    font-size: 0.7em;
    line-height: 1.5em;
}
.Select--small:after {
    margin-top: -1.6px;
    margin-top: -.1rem;
    right: 0.5em;
}
.Select--small:before {
    border-bottom: none;
}
.Select select:focus {
  outline: none;
}
/*
  explicitly set the th text alignment to left. this is required for IE
  which follows the suggested rendering and defaults to center, whereas
  chrome and others do not
*/
th { text-align: left; }
.Table {
  /* standard table reset */
  border-collapse: collapse;
  border-spacing: 0;

  width: 100%;

  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 12.16px;
  font-size: 0.76rem;
  line-height: 12.16px;
  line-height: 0.76rem;
  text-align: left;
}
.Table--bordered {
  border: 1px solid rgba(213, 213, 213, .3);
}
.Table tr {
  border-bottom: 1px solid rgba(213, 213, 213, .3);
}
.Table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, .02);
}
.Table th,
.Table td {
  padding: 1em;
  border: 1px solid rgba(213, 213, 213, .3);
}
.ComparisonTable {
  border-collapse: collapse;
  border-spacing: 0;
}
.ComparisonTable th,
.ComparisonTable td {
  border-bottom: 1px solid #F0F0F0;
}
@media screen and (min-width: 60em) {
    .Entity-search-back-button {
        position: absolute;
        margin-left: -150px;
    }

    .Entity-search-grouping-options {
        position: absolute;
        margin-left: -150px;
        margin-top: 22px;
    }
}
@media screen and (max-width: 60em) {
    .Entity-search-grouping-options {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .Entity-search-grouping-options > h3 {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .Entity-search-grouping-options > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .Entity-search-grouping-options > ul > li {
        margin-right: 10px;
    }
}
.Entity-search input {
    width: 100%;
}
.AdminNav {
    background: #8091AB;
    color: #fff;
    font-size: 13.6px;
    font-size: 0.85rem;
}
.AdminNav .NavItem {
    color: rgba(255, 255, 255, .63);
}
.AdminNav .NavItem:hover,
.AdminNav .NavItem.is--selected {
    color: #fff;
}
/* TODO: this feels itchy. should refactor .NavItem.is--selected to be less cascadey */
.AdminNav .NavItem:hover:after,
.AdminNav .NavItem.is--selected:after {
    display: none;
}
.AdminNav .NavDropdown.open .NavDropdown-button,
.AdminNav .NavDropdown .NavDropdown-content-layer {
    background-color: #9AA7BC;
}
.AdminNav .Dropdown-item:hover {
    background-color: #8091AB;
}
/* utility to get a simple common hover state for admin items */
.HoverItem:hover,
.AdminHoverItem:hover {
    background-color: #F3F8FD;
    transition: background .2s linear;
}
.AdminNav .Dropdown-chevron {
    color: #fff;
}
.Actions {
    background-color: rgba(243, 243, 243, .46);
    border: 1px solid #E0E0E0;
    padding: 2em;
}
.Actions-group {
    margin-bottom: 2em;
}
.Actions-group:last-child {
    margin-bottom: 0;
}
.Actions-groupLabel {
    font-size: 1em;
    margin-bottom: 1em;
}
.ContentTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
}
.ContentTable thead {
    border-bottom: 1px solid #D8D8D8;
}
.AdminBadge {
    background-color: #A989C5;
    border-radius: 4px;
    color: #fff;
    padding: 0.25em;
}
.PageHeader {
    padding-top: 38px;
    padding-top: 2.375rem;
    padding-bottom: 38px;
    padding-bottom: 2.375rem;
}
.PageTitle {
    margin: 0;
}
.Table-actions {
    text-align: right;
}
.ContentTable .Table-actions {
    opacity: 0;
}
.ContentTable td,
.ContentTable th {
    padding: 1em;
}
/* TODO: remove this and apply AdminHoverItem to content rows */
.ContentTable tbody tr:hover {
    background-color: rgba(74, 144, 226, .04);
}
.ContentTable tr:hover .Table-actions {
    opacity: 1;
    transition: opacity .2s linear;
}
.AdminList {
    background-color: #F9FBFC;
    border: 1px solid #F0F0F0;
    border-radius: 4px;
    width: 266px;
    box-shadow: inset -1px -1px 3px rgba(0, 0, 0, .05);
    padding-bottom: 0.75em;
}
.AdminList-search {
    position: relative;
}
.AdminList-search .Icon {
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-left: 1em;
    color: #C0C0C0;
}
.AdminList-search .AdminInput {
    padding: 0.5em;
    padding-left: 2em;
    font-size: 18px;
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-color: #F0F0F0;
}
.AdminList-item {
    padding: 0.75em 1em 0.75em 1em;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 0.25em;
}
.AdminList-item.selected {
    color: #509EE3;
}
.AdminList-item.selected,
.AdminList-item:hover {
    background-color: white;
    border-color: #F0F0F0;
    margin-left: -0.5em;
    margin-right: -0.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
.AdminList-section {
    margin-top: 1em;
    padding: 0.5em 1em 0.5em 1em;
    text-transform: uppercase;
    color: rgb(198, 198, 198);
    font-weight: 700;
    font-size: smaller;
}
.AdminList-item .ProgressBar {
    opacity: 0.2;
}
.AdminList-item.selected .ProgressBar {
    opacity: 1.0;
}
.AdminInput {
    color: #727479;
    padding: 8px;
    padding: 0.5rem;
    background-color: #FCFCFC;
    border: 1px solid transparent;
}
.AdminInput:focus {
    border-color: #509EE3;
    box-shadow: none;
    outline: 0;
}
.AdminSelect {
    display: inline-block;
    padding: 0.6em;
    border: 1px solid #F0F0F0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    min-width: 90px;
}
.AdminSelectBorderless {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}
.AdminSelect--borderless {
  border: none !important;
}
.AdminSelect--borderless .AdminSelect-content {
  margin-left: auto;
}
.AdminSelect--borderless .AdminSelect-chevron {
  margin-left: 0;
}
.MetadataTable-title {
    background-color: #FCFCFC;
}
.TableEditor-table-name {
    font-size: 24px;
}
.TableEditor-field-name {
    font-size: 16px;
}
.TableEditor-table-description,
.TableEditor-field-description {
    font-size: 14px;
}
.TableEditor-field-visibility {
    /*color: var(--orange-color);*/
}
.TableEditor-field-visibility .ColumnarSelector-row:hover {
    background-color: #509EE3 !important;
    color: white !important;
}
.TableEditor-field-type {
    /*color: var(--purple-color);*/
}
.TableEditor-field-type .ColumnarSelector-row:hover {
    background-color: #509EE3 !important;
    color: white !important;
}
.TableEditor-field-special-type,
.TableEditor-field-target {
    margin-top: 3px;
    /*color: var(--green-color);*/
}
.TableEditor-field-special-type .ColumnarSelector-row:hover,
.TableEditor-field-target .ColumnarSelector-row:hover {
    background-color: #509EE3 !important;
    color: white !important;
}
.ProgressBar {
    position: relative;
    border: 1px solid #6F7A8B;

    width: 55px;
    height: 10px;
    border-radius: 99px;
}
.ProgressBar--mini {
    width: 17px;
    height: 8px;
    border-radius: 2px;
}
.ProgressBar-progress {
    background-color: #6F7A8B;
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0px;
    border-radius: inherit;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.SaveStatus {
    line-height: 1;
}
.SaveStatus:last-child {
    border-right: none !important;
}
.SettingsInput {
    width: 400px;
}
.SettingsPassword {
    width: 200px;
}
.UserActionsSelect {
    padding-top: 1em;
    min-width: 180px;
}
.AdminTable {
  border-collapse: collapse;
  border-spacing: 0;

  white-space: nowrap;
  text-align: left;
}
.AdminTable th {
  text-transform: uppercase;
  color: rgb(149, 149, 149);
  padding:  8px;
  padding:  0.5rem;
  font-weight: normal;
}
.AdminTable thead {
  border-bottom: 1px solid #F0F0F0;
}
.AdminTable tbody tr:first-child td {
  padding-top: 8px;
  padding-top: 0.5rem;
}
.Card {
  position: relative;
}
.Card-footing {
  font-size: 12.8px;
  font-size: 0.8rem;
  color: #999;
}
.Card-title {
  color: #3F3A3A;
  font-size: 0.8em;
}
.Card-dataSource {
  color: #999;
  padding-top: 0.5em;
}
.Card-defaultBox {
  height: 500px;
}
@media screen and (min-width: 60em) {
    .Card-title {
        font-size: 0.8em;
    }
}
.Card--errored {
  min-height: 80px;
}
.Card-scalarValue {
    overflow: hidden;
}
@media screen and (min-width: 80em) {
  .Card-scalarValue {
    font-size: 2.4em;
  }
}
@media screen and (min-width: 120em) {
  .Card-scalarValue {
    font-size: 3.4em;
  }
}
.CardSettings-group {
  border-bottom: 1px solid #ddd;
}
.CardSettings-groupTitle {
  padding: 0.5em;
  border-bottom: 1px solid #ddd;
}
.CardSettings-content {
  padding: 2em;
  background-color: #fafafa;
}
.CardSettings {
  border-top: 1px solid #ddd;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .12);
}
.CardSettings-label {
  font-size: 1.15em;
  margin-left: 0.5em;
  color: #666;
}
.CardSettings-colorBlock {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  margin-right: 1em;
  border-radius: 4px;
}
.CardSettings-colorBlock:last-child {
    margin-right: 0;
}
.Card--scalar {
    padding: 1em;
}
.Dashboard {
    background-color: #f9fbfc;
}
.DashboardHeader {
  background-color: white;
  border-bottom: 1px solid #F0F0F0;
}
.Dash-wrapper {
    width: 100%;
}
@media screen and (min-width: 40em) {
   .Dash-wrapper { max-width: 752px; }
}
@media screen and (min-width: 60em) {
   .Dash-wrapper { max-width: 940px; }
}
@media screen and (min-width: 80em) {
   .Dash-wrapper { max-width: 1140px; }
}
/* Fullscreen mode */
.Dashboard.Dashboard--fullscreen .Header-button {
  color: #D2DBE4;
}
.Dashboard.Dashboard--fullscreen .DashboardHeader {
  background-color: transparent;
  border: none;
}
.Dashboard.Dashboard--fullscreen .Header-title-description {
  display: none;
}
/* Night mode */
.Dashboard.Dashboard--night {
  background-color: rgb(34, 37, 39);
}
.Dashboard.Dashboard--night .Card {
  color: #fff;
}
.Dashboard.Dashboard--night .Header-button,
.Dashboard.Dashboard--night .Header-button svg {
    color: rgba(151, 151, 151, .3);
}
.Dashboard.Dashboard--fullscreen .fullscreen-normal-text {
  color: #3f3a3a;
  transition: color 1s linear;
}
.Dashboard.Dashboard--night.Dashboard--fullscreen .fullscreen-night-text {
  color: rgba(255, 255, 255, .86);
  transition: color 1s linear;
}
.Dashboard.Dashboard--night .DashCard .Card svg text {
  fill: rgba(255, 255, 255, .86) !important;
}
.Dashboard.Dashboard--night .DashCard .Card {
  background-color: rgb(54, 58, 61);
  border: 1px solid rgb(46, 49, 52);
}
.Dashboard.Dashboard--night .enable-dots-onhover .dc-tooltip circle.dot:hover,
.Dashboard.Dashboard--night .enable-dots .dc-tooltip circle.dot {
  fill: currentColor;
}
/* Night mode transition */
.Dashboard.Dashboard--fullscreen,
.Dashboard.Dashboard--fullscreen .DashCard .Card {
  transition: background-color 1s linear, border 1s linear;
}
.DashboardGrid {
  margin-top: 1em;
}
.DashCard {
  position: relative;
  z-index: 1;
}
.DashCard .Card {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  background-color: white;
  border: 1px solid rgb(219, 219, 219);
}
.DashCard .Card.Card--slow {
    border-color: #F9D45C;
}
.Dash--editing .DashCard .Card {
    pointer-events: none;
    transition: border .3s, background-color .3s;
}
.Dash--editing.Dash--editingParameter .DashCard .Card {
    pointer-events: auto;
}
@-webkit-keyframes fade-out-yellow {
    from {
        background-color: rgba(255, 250, 243, 1.0);
    }
    to {
        background-color: rgba(255, 255, 255, 1.0);
    }
}
@keyframes fade-out-yellow {
    from {
        background-color: rgba(255, 250, 243, 1.0);
    }
    to {
        background-color: rgba(255, 255, 255, 1.0);
    }
}
.Dash--editing .DashCard .Card.Card--recent {
    -webkit-animation-duration: 30s;
            animation-duration: 30s;
    -webkit-animation-name: fade-out-yellow;
            animation-name: fade-out-yellow;
}
.Dash--editing .DashCard:hover .Card .Card-heading {
  z-index: 2;
}
/* Google Maps widgets */
.DashCard .gm-style-mtc,
.DashCard .gm-bundled-control,
.DashCard .PinMapUpdateButton,
.leaflet-container .leaflet-control-container {
  opacity: 0.01;
  transition: opacity 0.3s linear;
}
.DashCard:hover .gm-style-mtc,
.DashCard:hover .gm-bundled-control,
.DashCard:hover .PinMapUpdateButton,
.leaflet-container:hover .leaflet-control-container {
  opacity: 1;
}
.Dash--editing .PinMap {
  /* allow map to pan. need to stopPropagation in PinMap to prevent weird dragging interaction */
  pointer-events: all;
}
.PinMapUpdateButton--disabled {
  pointer-events: none;
  color: rgb(223, 223, 223);
}
.Dash--editing .DashCard .Card {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.DashCard .Card {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, .08);
}
.Dash--editing .DashCard.dragging .Card {
    box-shadow: 3px 3px 8px rgba(0, 0, 0, .1);
}
.Dash--editing .DashCard.dragging,
.Dash--editing .DashCard.resizing {
    z-index: 2;
}
.Dash--editing .DashCard.dragging .Card,
.Dash--editing .DashCard.resizing .Card {
    background-color: #E5F1FB !important;
    border: 1px solid #509EE3;
}
.DashCard .DashCard-actions {
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
}
.DashCard .DashCard-actions-persistent {
  pointer-events: all;
}
.Dash--editing .DashCard:hover .DashCard-actions {
  height: auto;
  height: initial;
  opacity: 1;
  pointer-events: all;
}
.Dash--editing .DashCard .Visualization-slow-spinner {
    position: absolute;
    right: -2px;
    top: -2px;
}
.Dash--editing .DashCard:hover .Visualization-slow-spinner {
    opacity: 0;
    transition: opacity .15s linear;
}
.Dash--editing .DashCard.dragging .DashCard-actions,
.Dash--editing .DashCard.resizing .DashCard-actions {
    opacity: 0;
    transition: opacity .3s linear;
}
.Dash--editing .DashCard {
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}
.Dash--editing .DashCard.dragging,
.Dash--editing .DashCard.resizing {
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}
.Dash--editing .DashCard {
    cursor: move;
}
.Dash--editing .DashCard .react-resizable-handle {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0;
    right: 0;
    cursor: nwse-resize;
    z-index: 1; /* ensure the handle is above the card contents */
}
.Dash--editing .DashCard .react-resizable-handle:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgb(198, 198, 198);
  border-right: 2px solid rgb(198, 198, 198);
  border-bottom-right-radius: 2px;
  transition: opacity .2s;
  opacity: 0.01;
}
.Dash--editing .DashCard .react-resizable-handle:hover:after {
  border-color: rgb(149, 149, 149);
}
.Dash--editing .DashCard:hover .react-resizable-handle:after {
  opacity: 1;
}
.Dash--editing .DashCard.dragging .react-resizable-handle:after,
.Dash--editing .DashCard.resizing .react-resizable-handle:after {
  opacity: 0.01;
}
.Dash--editing .react-grid-placeholder {
    z-index: 0;
    background-color: #F2F2F2;
    transition: all 0.15s linear;
}
.Dash--editing .Card-title {
    pointer-events: none;
}
/* ensure action buttons do not respond to events when dragging */
.Dash--editing.Dash--dragging .DashCard-actions {
    pointer-events: none !important;
}
.Modal.AddSeriesModal {
  height: 80%;
  max-height: 600px;
  width: 80%;
  max-width: 1024px;
}
/*

  fullscreen text size modifications

*/
/*
  increase the base font size in fullscreen mode to bump things up to
  accomodate for viewing distance on TVs etc
*/
@media screen and (min-width: 1280px) {
  .Dashboard.Dashboard--fullscreen { font-size: 1.2em; }
  /* keep the dashboard header title from being overwhelmingly large */
  .Dashboard.Dashboard--fullscreen .Header-title-name { font-size: 1em; }

  .Dashboard.Dashboard--fullscreen .fullscreen-text-small .LegendItem {
    font-size: 1em;
  }
}
@media screen and (min-width: 1540px) {
  .Dashboard.Dashboard--fullscreen { font-size: 1.4em; }
}
/* what for to print the dashboards */
@media print {
    header,
    nav {
        display: none;
    }
    .DashCard .Card {
      box-shadow: none;
      border-color: #a1a1a1;
    }
    /* improve label contrast */
    .dc-chart .axis .tick text,
    .dc-chart .x-axis-label,
    .dc-chart .y-axis-label {
      fill: #222222;
    }
}
@media print and (orientation: portrait) {
    html {
        width: 8.5in;
    }
}
@media print and (orientation: landscape) {
    html {
        width: 11in;
    }
}
@page { margin: 1cm; }
/* when in night mode goal lines should be more visible */
.Dashboard--night .goal .line {
  stroke: white;
}
/* when in night mode code snippets should have a more readable background-color */
.Dashboard--night pre code {
  background-color: rgba(255, 255, 255, .14);
}
.Nav {
    z-index: 4;
}
.NavItem.NavItem--selected {
  background-color: rgba(0, 0, 0, .2);
}
.NavItem > .Icon {
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 40em) {
  .NavItem {
      border-radius: 8px;
  }
  .NavItem:hover,
  .NavItem.NavItem--selected {
      background-color: rgba(255, 255, 255, .08);
  }
}
.NavNewQuestion {
    box-shadow: 0px 2px 2px 0px rgba(77, 136, 189, .69);
}
.NavNewQuestion:hover {
    box-shadow: 0px 3px 2px 2px rgba(77, 136, 189, .75);
    color: #3875AC;
}
.Greeting {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
}
@media screen and (min-width: 120em) {
    .Greeting {
        padding-top: 6em;
        padding-bottom: 6em;
    }
}
.bullet {
    position: relative;
    margin-left: 1.2em;
}
.bullet:before {
    content: "\2022";
    color: #6FB0EB;
    position: absolute;
    top: 0;
    margin-top: 16px;
    left: -0.85em;
}
.NavDropdown {
    position: relative;
}
.NavDropdown.open {
    z-index: 100;
}
.NavDropdown .NavDropdown-content {
    display: none;
}
.NavDropdown.open .NavDropdown-content {
    display: inherit;
}
.NavDropdown .NavDropdown-button {
    position: relative;
    border-radius: 8px;
}
.NavDropdown .NavDropdown-content {
    position: absolute;
    border-radius: 4px;
    top: 38px;
    min-width: 200px;
}
.NavDropdown .NavDropdown-content.NavDropdown-content--dashboards {
  top: 33px;
}
.NavDropdown .NavDropdown-button:before,
.NavDropdown .NavDropdown-content:before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .12);
    background-clip: padding-box;
}
.NavDropdown .NavDropdown-content:before {
    z-index: -2;
    border-radius: 4px;
}
.NavDropdown .NavDropdown-button:before {
    z-index: -1;
    opacity: 0;
    border-radius: 8px;
}
.NavDropdown.open .NavDropdown-button:before {
    opacity: 1;
}
.NavDropdown .NavDropdown-content-layer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.NavDropdown .NavDropdown-button-layer {
    position: relative;
    z-index: 2;
}
.NavDropdown.open .NavDropdown-button,
.NavDropdown .NavDropdown-content-layer {
    background-color: #6FB0EB;
}
.NavDropdown .NavDropdown-content-layer {
    padding-top: 10px;
    border-radius: 4px;
}
.NavDropdown .DashboardList {
    min-width: 332px;
}
.QuestionCircle {
    display: inline-block;
    font-size: 52px;
    font-size: 3.25rem;
    width: 73px;
    height: 73px;
    border-radius: 99px;
    border: 3px solid currentcolor;
    text-align: center;
}
.IconCircle {
    line-height: 0;
    padding: 8px;
    padding: 0.5rem;
    border-radius: 99px;
    border: 1px solid currentcolor;
}
@-webkit-keyframes pop {
    0% { -webkit-transform: scale(0.75); transform: scale(0.75) }
   75% { -webkit-transform: scale(1.0625); transform: scale(1.0625) }
  100% { -webkit-transform: scale(1); transform: scale(1) }
}
@keyframes pop {
    0% { -webkit-transform: scale(0.75); transform: scale(0.75) }
   75% { -webkit-transform: scale(1.0625); transform: scale(1.0625) }
  100% { -webkit-transform: scale(1); transform: scale(1) }
}
.animate-pop {
    -webkit-animation-name: popin;
            animation-name: popin;
    -webkit-animation-duration: .15s;
            animation-duration: .15s;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
}
.AdminLink {
    opacity: 0.435;
}
.AdminLink:hover {
    opacity: 1;
}
.break-word {
    word-wrap: break-word;
}
.tooltip {
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .12);
    color: #ddd;
}
.TableDescription {
    max-width: 672px;
    max-width: 42rem;
    line-height: 1.4;
}
.Layout-sidebar {
  min-height: 100vh;
  width: 346px;
  background-color: #F9FBFC;
  border-left: 2px solid #F0F0F0;
}
.Layout-mainColumn {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.Sidebar-header {
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
}
@media screen and (min-width: 60em) {
  .HomepageGreeting {
    margin-right: 346px;
  }
}
/* there are 5 mav items on mobile, so distribute the items evenly */
.Nav ul li { -webkit-box-flex: 0; -ms-flex: 0 20%; flex: 0 20%; }
/* on larger screens, things should just flow naturally */
@media screen and (min-width: 60em) {
  .Nav ul li { -webkit-box-flex: unset; -ms-flex: unset; flex: unset; }
}
/* the logo nav item needs a little bit of additional padding so that it
 * matches up with the other nav items which have 16px icons and 0.75em padding.
 * Since the logo is 32px we cut the padding in half to get 0.375
 * */
.LogoNavItem {
  padding-top: 0.375em;
  padding-bottom: 0.375em;
}
/* we want to unset the above when we no longer need the nav item to fill the space */
@media screen and (min-width: 60em) {
  .LogoNavItem {
    padding-top: 0;
    padding-bottom: 0;
  }
}
/* ensure our form doesn't get too wide */
.Login-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}
/* the login content should always sit on top of the illustration */
.Login-content {
    position: relative;
}
.Login-header {
    color: #6A6A6A;
}
.brand-scene {
    overflow: hidden;
    height: 180px;
}
.brand-boat-container {
    position: absolute;
    bottom: 0;
    z-index: 6;
    -webkit-animation: boat_trip 200s linear infinite;
    margin-bottom: 0.5em;
}
.brand-boat {
    -webkit-transform-origin: 50% bottom;
            transform-origin: 50% bottom;
    -webkit-animation: boat_rock 2s ease-in-out infinite;
            animation: boat_rock 2s ease-in-out infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
}
@-webkit-keyframes boat_trip {
    0% {
        margin-left: -2%;
    }
    10% {
        margin-left: 5%;
        -webkit-transform: translate3d(0, 0, 2%);
                transform: translate3d(0, 0, 2%);
    }
    100% {
        margin-left: 120%;
    }
}
@keyframes boat_trip {
    0% {
        margin-left: -2%;
    }
    10% {
        margin-left: 5%;
        -webkit-transform: translate3d(0, 0, 2%);
                transform: translate3d(0, 0, 2%);
    }
    100% {
        margin-left: 120%;
    }
}
@-webkit-keyframes boat_lost {
    0% {
        margin-left: 40%;
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
    45% {
        margin-left: 60%;
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
    50% {
        margin-left: 60%;
        -webkit-transform: rotateY(180deg);
                transform: rotateY(180deg);
    }
    95% {
        margin-left: 40%;
        -webkit-transform: rotateY(180deg);
                transform: rotateY(180deg);
    }
    100% {
        margin-left: 40%;
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
}
@keyframes boat_lost {
    0% {
        margin-left: 40%;
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
    45% {
        margin-left: 60%;
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
    50% {
        margin-left: 60%;
        -webkit-transform: rotateY(180deg);
                transform: rotateY(180deg);
    }
    95% {
        margin-left: 40%;
        -webkit-transform: rotateY(180deg);
                transform: rotateY(180deg);
    }
    100% {
        margin-left: 40%;
        -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
    }
}
@-webkit-keyframes boat_rock {
    from {
        -webkit-transform: rotate(-10deg);
                transform: rotate(-10deg);
    }
    to {
        -webkit-transform: rotate(10deg);
                transform: rotate(10deg);
    }
}
@keyframes boat_rock {
    from {
        -webkit-transform: rotate(-10deg);
                transform: rotate(-10deg);
    }
    to {
        -webkit-transform: rotate(10deg);
                transform: rotate(10deg);
    }
}
.brand-illustration {
    height: 180px;
    position: absolute;
    bottom: 15px;
    z-index: 5;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.brand-bridge {
    margin-left: -140px;
}
.brand-mountain-1 {
    position: relative;
    z-index: 50;
}
.NotFoundScene .brand-bridge,
.NotFoundScene .brand-mountain-1,
.NotFoundScene .brand-mountain-1,
.NotFoundScene .brand-illustration {
    display: none;
}
.NotFoundScene .brand-boat-container {
    -webkit-animation: boat_lost 30s linear infinite;
            animation: boat_lost 30s linear infinite;
}
/* flip the second mountain around */
.brand-mountain-2 {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -ms-filter: fliph; /*IE*/
    -webkit-filter: fliph;
            filter: fliph; /*IE*/
    margin-left: -170px;
}
.SuccessGroup {
    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: center;
        -ms-flex-align: center;
            align-items: center;
    color: #9CC177;
    padding: 4em;
}
.SuccessMark {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1em;
    border: 3px solid #9CC177;
    border-radius: 99px;
    color: #9CC177;
    line-height: 1;
}
.SuccessText {
    font-weight: bold;
    margin-top: 1em;
    text-align: center;
}
.ForgotForm,
.SuccessGroup {
    position: relative;
    z-index: 10;
}
.PulseEdit-header,
.PulseEdit-footer {
    width: 100%;
    margin: 0 auto;
    padding-left: 180px;
    padding-right: 180px;
}
.PulseEdit-content {
    max-width: 550px;
    margin-left: 180px;
}
.PulseButton {
  color: rgb(121, 130, 127);
  font-weight: 700;
  border-width: 2px;
  border-color: rgb(222, 228, 226);
}
.PulseEdit .input,
.PulseEdit .bordered,
.PulseEdit .border-bottom,
.PulseEdit .border-row-divider,
.PulseEdit .AdminSelect {
  border-width: 2px;
  border-color: rgb(222, 228, 226);
}
.PulseEdit .AdminSelect {
  padding: 1em;
}
.PulseEdit .input:focus,
.PulseEdit .input--focus {
  border-width: 2px;
  border-color: rgb(97, 167, 229) !important;
}
.PulseListItem button {
  font-family: "Lato", Helvetica, sans-serif;
}
.bg-grey-0 {
  background-color: rgb(252, 252, 253);
}
.PulseEditButton {
  opacity: 0;
  transition: opacity 0.3s linear;
}
.PulseListItem {
  overflow: hidden;
}
.PulseListItem:hover .PulseEditButton {
  opacity: 1;
}
.PulseListItem.PulseListItem--focused {
  border-color: #509EE3;
  box-shadow: 0 0 3px #509EE3;
}
.DangerZone:hover {
  border-color: #EF8C8C;
  transition: border .3s ease-in;
}
.DangerZone .Button--danger {
    opacity: 0.4;
    background: #FBFCFD;
    border: 1px solid #ddd;
    color: #444;
}
.DangerZone:hover .Button--danger {
    opacity: 1;
    background-color: #EF8C8C;
    border-color: #EF8C8C;
    color: #fff;
}
.Modal.WhatsAPulseModal {
  width: auto;
}
#react_qb_viz {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
/* @layout */
.QueryBuilder {
    transition: margin-right 0.35s;
 }
.QueryBuilder--showSideDrawer {
    margin-right: 300px;
}
.QueryHeader-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.QueryHeader-section {
    padding-right: 1em;
    margin-right: 1em;
    border-right: 1px solid rgba(0, 0, 0, .2);
}
.QueryHeader-section:last-child {
    border-right: none;
}
/*
.Icon-download,
.Icon-addToDash {
    fill: #919191;
    transition: fill .3s linear;
}

.Icon-download:hover,
.Icon-addToDash:hover {
    fill: var(--brand-color);
    transition: fill .3s linear;
}
*/
/* a section of the graphical query itself */
.Query-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.Query-section.Query-section--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.QueryName {
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 19.2px;
    font-size: 1.2rem;
}
.Query-label {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    color: rgb(174, 174, 174);
}
.Query-filters {
  max-width: 400px;
}
.Query-filterList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: hidden;
    white-space: nowrap;
    min-height: 55px;
}
.Query-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 0.75em;
    border: 2px solid transparent;
    border-radius: 4px;
}
.Query-filter.selected {
    border-color: #A989C5;
}
.Filter-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.Query-filter .input {
    border-radius: 0;
    border: none;
    font-size: inherit;
    background-color: transparent;
    width: 150px;
    padding: 0;
}
.TooltipFilterList .Query-filter {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
}
.TooltipFilterList .Query-filterList {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.TooltipFilterList .Query-section {
  margin-left: -8px;
  margin-left: -0.5rem;
}
/*
    @selectionmodule
*/
.SelectionModule {
    color: #509EE3;
}
.SelectionList {
    padding-top: 5px;
    overflow-y: auto;
    max-height: 340px;
}
.SelectionItems {
    max-width: 320px;
}
.SelectionItems.SelectionItems--open {
    opacity: 1;
    transition: opacity .3s linear;
    pointer-events: all;
}
.SelectionItems.SelectionItems--expanded {
    max-height: inherit;
}
.SelectionItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 12px 24px 12px 12px;
    padding: 0.75rem 1.5rem 0.75rem 0.75rem;
    background-color: #fff;
}
.SelectionItem:hover {
    background-color: currentColor;
}
.SelectionItem .Icon {
    margin-left: 8px;
    margin-left: 0.5rem;
    margin-right: 12px;
    margin-right: 0.75rem;
    color: currentcolor;
}
.SelectionItem .Icon-check {
    opacity: 0;
}
.SelectionItem .Icon-chevrondown {
    opacity: 1;
 }
.SelectionItem:hover .Icon {
    color: #fff !important;
}
.SelectionItem:hover .SelectionModule-display {
    color: #fff;
}
.SelectionItem:hover .SelectionModule-description {
    color: #fff;
}
.SelectionItem.SelectionItem--selected .Icon-check {
    opacity: 1;
}
.SelectionModule-display {
    color: currentColor;
    margin-bottom: 0.25em;
}
.SelectionModule-description {
    color: rgb(149, 149, 149);
    font-size: 12.8px;
    font-size: 0.8rem;
}
.Visualization {
    transition: background .3s linear;
}
.Visualization.Visualization--loading {
    transition: background .3s linear;
}
.Visualization.Visualization--error {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.Visualization--scalar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 128px;
    font-size: 8rem;
    font-weight: 200;
}
.Loading {
    background-color: rgba(255, 255, 255, .82);
}
/* query errors */
.QueryError {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.QueryError-iconWrapper {
    padding: 2em;
    margin-bottom: 2em;
    border: 4px solid #EF8C8C;
    border-radius: 99px;
}
.QueryError-image {
    background-repeat: no-repeat;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}
.QueryError-image--noRows {
  width: 120px;
  height: 120px;
  background-image: url('../app/assets/img/no_results.svg');
}
.QueryError-image--queryError {
  width: 120px;
  height: 120px;
  background-image: url('../app/assets/img/no_understand.svg');
}
.QueryError-image--serverError {
  width: 120px;
  height: 148px;
  background-image: url('../app/assets/img/blown_up.svg');
}
.QueryError-image--timeout {
  width: 120px;
  height: 120px;
  background-image: url('../app/assets/img/stopwatch.svg');
}
.QueryError-message {
  /* IE flexbox align-items:center bug workaround */
  /* https://github.com/philipwalton/flexbugs#2-column-flex-items-set-to-align-itemscenter-overflow-their-container */
  max-width: 100%;
}
.QueryError-messageText {
  line-height: 1.4;
}
.QueryError-adminEmail {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid rgb(197, 197, 197);
  margin-top: 16px;
  margin-top: 1rem;
  padding: 8px 32px 8px 32px;
  padding: 0.5rem 2rem 0.5rem 2rem;
}
.QueryError-adminEmail:before {
  content: "Admin Email";
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  background-color: white;
  padding-left: 8px;
  padding-left: 0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;

  position: absolute;
  top: -0.75em;
  left: 50%;
  margin-left: -41px; /* ugh */
}
.QueryError2 {
    padding-top: 64px;
    padding-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}
.QueryError2-details {
    max-width: 500px;
}
.QueryError2-detailBody {
    background-color: #f8f8f8;
    max-height: 240px;
    max-height: 15rem;
    overflow: auto;
}
/* GUI BUILDER */
.GuiBuilder {
    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;
    font-size: 0.9em;
    z-index: 2;
    background-color: #fff;

    border: 1px solid #e0e0e0;
}
/* for medium breakpoint only expand if data reference is not shown */
@media screen and (min-width: 60em) {
    .GuiBuilder {
        font-size: 1.0em;
    }
}
/* un-expanded (default) */
.GuiBuilder-row {
    border-bottom: 1px solid #e0e0e0;
}
.GuiBuilder-row:last-child {
    border-bottom-color: transparent;
}
.GuiBuilder-data {
    border-right: 1px solid #e0e0e0;
}
.GuiBuilder-filtered-by {
    border-right: 1px solid transparent;
}
.GuiBuilder-view {
    border-right: 1px solid #e0e0e0;
}
.GuiBuilder-sort-limit {
    border-left: 1px solid #e0e0e0;
}
/* expanded */
.GuiBuilder.GuiBuilder--expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.GuiBuilder.GuiBuilder--expand .GuiBuilder-row:last-child {
    border-right-color: transparent;
    border-bottom-color: #e0e0e0;
}
.GuiBuilder.GuiBuilder--expand .GuiBuilder-filtered-by {
    border-right-color: #e0e0e0;
}
.GuiBuilder-section {
    position: relative;
    min-height: 55px;
    min-width: 100px;
}
.GuiBuilder-section-label {
    background-color: white;
    position: absolute;
    top: -7px;
    left: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.QueryOption {
    font-weight: 700;
}
.QueryOption:hover {
    cursor: pointer;
}
/* @transitions */
.AddToDashSuccess {
    max-width: 260px;
    text-align: center;
}
/* DATA SECTION */
.GuiBuilder-data {
    z-index: 1; /* moved the arrow thingy above the filter outline */
}
/* FILTER BY SECTION */
.Filter-section-field,
.Filter-section-operator {
    color: #A989C5;
}
.Filter-section-field .QueryOption {
    color: #A989C5;
}
.Filter-section-operator .QueryOption {
    color: #A989C5;
    text-transform: lowercase;
}
.Filter-section-value .QueryOption {
    color: white;
    background-color: #A989C5;
    border: 1px solid rgb(118, 96, 138);
    border-radius: 6px;
    padding: 0.5em;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    margin-bottom: 0.2em;
}
.Filter-section-value {
    padding-right: 0.5em;
    padding-bottom: 0.25em;
}
.Filter-section-sort-field.selected .QueryOption,
.Filter-section-sort-direction.selected .QueryOption {
    color: inherit;
}
.FilterPopover .ColumnarSelector-row--selected,
.FilterPopover .PopoverHeader-item.selected {
    color: #A989C5 !important;
}
.FilterPopover .ColumnarSelector-row:hover {
    background-color: #A989C5 !important;
}
/* VIEW SECTION */
.View-section-aggregation,
.View-section-aggregation-target,
.View-section-breakout {
    color: #9CC177;
}
.View-section-aggregation.selected .QueryOption,
.View-section-aggregation-target.selected .QueryOption,
.View-section-breakout.selected .QueryOption {
    color: #9CC177;
}
/* SORT/LIMIT SECTION */
.GuiBuilder-sort-limit {
    min-width: 0px;
}
.EllipsisButton {
    font-size: 3em;
    position: relative;
    top: -12.8px;
    top: -0.8rem;
}
/* NATIVE */
.NativeQueryEditor .GuiBuilder-data {
    border-right: none;
}
/* VISUALIZATION SETTINGS */
.VisualizationSettings .GuiBuilder-section {
    border-right: none !important;
}
.ChartType-button {
    width: 38px;
    height: 38px;
    border-radius: 38px;
    background-color: white;
    border: 1px solid #ccdff6;
}
.ChartType-popover {
    min-width: 15em !important;
}
.ChartType--selected {
    color: white;
    background-color: rgb(74, 144, 226);
}
.ChartType--notSensible {
    opacity: 0.5;
}
.ColorWell {
    width: 18px;
    height: 18px;
    margin: 3px;
    margin-right: 4.8px;
    margin-right: 0.3rem;
}
.RunButton {
    z-index: 1;
    opacity: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .22);
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
    min-width: 8em;
    position: relative;
}
.RunButton.RunButton--hidden {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    opacity: 0;
}
/* DATA REFERENCE */
.SideDrawer {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #F9FBFC;
    overflow: hidden;
}
.SideDrawer--show {
    z-index: 0;
}
.DataReference-container {
    width: 300px;
}
.DataReference h1 {
    font-size: 20pt;
}
.DataReference-paneCount {
    padding-right: 0.6em;
}
/* object detail */
.ObjectDetail {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 32px;
    margin-bottom: 2rem;
    border: 1px solid #DEDEDE;
}
@media screen and (min-width: 120em) {
  /* prevent the object detail from getting too wide on large screens */
  .ObjectDetail { max-width: 1140px; }
}
.ObjectDetail-headingGroup {
    border-bottom: 1px solid #DEDEDE;
}
.ObjectDetail-infoMain {
    border-right: 1px solid #DEDEDE;
    margin-left: 38.4px;
    margin-left: 2.4rem;
    font-size: 16px;
    font-size: 1rem;
}
.ObjectJSON {
    max-height: 200px;
    overflow: scroll;
    padding: 1em;
    background-color: #F8F8F8;
    border: 1px solid #dedede;
    border-radius: 2px;
}
.PopoverBody.AddToDashboard {
    min-width: 25em;
}
.FieldList-grouping-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
}
.List-item--segment .Icon,
.List-item--segment .List-item-title {
  color: #A989C5;
}
.List-item--customfield .Icon,
.List-item--customfield .List-item-title {
  color: #509EE3;
}
.List-item:not(.List-item--disabled):hover .FieldList-grouping-trigger,
.List-item--selected .FieldList-grouping-trigger {
    visibility: visible;
    border-left: 2px solid rgba(0, 0, 0, .1);
    color: rgba(255, 255, 255, .5);
}
.QuestionTooltipTarget {
  color: rgb(225, 225, 225);
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 99px;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.7;

  cursor: pointer;
}
.QuestionTooltipTarget:after {
  content: "?";
  font-size: 13px;
  font-weight: bold;
}
.FilterRemove-field {
  border-radius: 99px;
  opacity: 0;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #A989C5;
  border: 1px solid #A989C5;
  transition: opacity .3s ease-out;
}
.FilterInput:hover .FilterRemove-field {
  opacity: 1;
}
/* need to do this ugliness to override the locally scoped font size from Scalar.css */
#react_qb_viz .ScalarValue {
  font-size: 5em;
}
.sql-code {
  font-size: 90%;
  line-height: 1.2em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  white-space: pre;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -o-pre-wrap;
  background-color: #F9FBFC;
  border: 1px solid #D5DBE3;
  border-radius: 4px;
}
.ParameterValuePickerNoPopover input {
    font-size: 16px;
    color: #727479;
    border: none;
}
.ParameterValuePickerNoPopover--selected input {
    font-weight: bold;
    color: #509EE3;
}
.ParameterValuePickerNoPopover input:focus {
    outline: none;
    color: #727479;
}
.ParameterValuePickerNoPopover input::-webkit-input-placeholder {
    color: rgb(149, 149, 149);
}
:root { /* ~ 42 px */
}
.SetupSteps {
    margin-top: 64px;
    margin-top: 4.000rem;
}
.SetupNav {
    border-bottom: 1px solid #f5f5f5;
}
.Setup-brandWordMark {
    font-size: 27.008px;
    font-size: 1.688rem;
}
.SetupStep {
    margin-bottom: 27.424px;
    margin-bottom: 1.714rem;
    border: 1px solid #D7D7D7;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.SetupStep.SetupStep--active {
    color: #509EE3;
}
.SetupStep.SetupStep--completed {
    color: #9CC177;
}
.SetupStep.SetupStep--todo {
    color: #509EE3;
    background-color: #EDF2F8;
    border-style: dashed;
}
.SetupStep-indicator {
    left: -1.5em;
    width: 3.000em;
    height: 3.000em;
    border-radius: 99px;
    border-color: rgb(198, 198, 198);
    font-weight: bold;
    line-height: 1;
    background-color: #fff;
    margin-top: -3px;
}
.SetupStep-check {
    color: #fff;
    display: none;
}
.SetupStep-title {
    color: currentColor; /* use the color of the parent to power the header text */
}
.SetupStep.SetupStep--active  .SetupStep-indicator {
    color: #509EE3;
}
.SetupStep.SetupStep--completed .SetupStep-indicator {
    border-color: #9CC177;
    background-color: #C8E1B0;
}
.SetupStep.SetupStep--completed .SetupStep-check {
    display: block;
}
.SetupStep.SetupStep--completed .SetupStep-number {
    display: none;
}
.SetupCompleted {
    text-align: center;
}
.SetupCompleted .SetupStep-title {
    font-size: 32px;
    font-size: 2rem;
    line-height: 32px;
    line-height: 2rem;
}
.SetupHelp {
    color: #8E9BA9;
}
.TutorialModal {
  width: 440px;
}
.XRayPageWrapper .ComparisonTable .Card-title,
.XRayPageWrapper .ComparisonContributor .Card-title {
  display: none;
}

/*# sourceMappingURL=styles.bundle.css.map?c6bebe38bdc89ba0799d3476d303903c*/