/*!**********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./assets/scss/main.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.woff2") format("woff2"), url("/assets/fonts/Poppins-SemiBold.woff") format("woff"), url("/assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.woff2") format("woff2"), url("/assets/fonts/Poppins-Medium.woff") format("woff"), url("/assets/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Light.woff2") format("woff2"), url("/assets/fonts/Poppins-Light.woff") format("woff"), url("/assets/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.woff2") format("woff2"), url("/assets/fonts/Poppins-Bold.woff") format("woff"), url("/assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.woff2") format("woff2"), url("/assets/fonts/Poppins-Regular.woff") format("woff"), url("/assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/**
 * Foundation for Sites
 * Version 6.9.0
 * https://get.foundation
 * Licensed under MIT Open Source
 */
/*
  All a user has to do to change the calendar size is
  change the font-size on the container and everything
  magically resizes accordingly. Relative units ftw!
*/
.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: black;
  position: absolute;
  width: 15.625em;
  display: flex;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid gray;
  border-radius: 0.263921875em;
  overflow: hidden;
  background: white;
  box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
}
.qs-datepicker-container * {
  box-sizing: border-box;
}

.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.qs-hidden {
  display: none;
}

.qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
}
.qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}
.qs-overlay .qs-overlay-year {
  border: none;
  background: transparent;
  border-bottom: 1px solid white;
  border-radius: 0;
  color: white;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.qs-overlay .qs-submit {
  border: 1px solid white;
  border-radius: 0.263921875em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}
.qs-overlay .qs-submit.qs-disabled {
  color: gray;
  border-color: gray;
  cursor: not-allowed;
}
.qs-overlay .qs-overlay-month-container {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}
.qs-overlay .qs-overlay-month {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  background: lightgray;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.qs-controls.qs-blur {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.263921875em;
  transition: background 0.15s;
}
.qs-arrow:hover.qs-left:after {
  border-right-color: black;
}
.qs-arrow:hover.qs-right:after {
  border-left-color: black;
}
.qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}
.qs-arrow:after {
  content: "";
  border: 0.390625em solid transparent;
  position: absolute;
  top: 50%;
  transition: border 0.2s;
}
.qs-arrow.qs-left:after {
  border-right-color: gray;
  right: 50%;
  transform: translate(25%, -50%);
}
.qs-arrow.qs-right:after {
  border-left-color: gray;
  left: 50%;
  transform: translate(-25%, -50%);
}

.qs-month-year {
  font-weight: bold;
  transition: border 0.2s;
  border-bottom: 1px solid transparent;
}
.qs-month-year:not(.qs-disabled-year-overlay) {
  cursor: pointer;
}
.qs-month-year:not(.qs-disabled-year-overlay):hover {
  border-bottom: 1px solid gray;
}
.qs-month-year:focus, .qs-month-year:active:focus {
  outline: none;
}

.qs-month {
  padding-right: 0.5ex;
}

.qs-year {
  padding-left: 0.5ex;
}

.qs-squares {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3125em;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.qs-squares.qs-blur {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

.qs-square {
  width: calc(100% / 7);
  height: 1.5625em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s;
  border-radius: 0.263921875em;
}
.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: orange;
}

.qs-current {
  font-weight: bold;
  text-decoration: underline;
}

/*
  3 possibilities:
    1. Single, active date.
    2. Daterange start selection.
    3. Daterange end selection.
*/
.qs-active,
.qs-range-start,
.qs-range-end {
  background: lightblue;
}

.qs-range-start:not(.qs-range-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-range-middle {
  background: rgb(212.0841121495, 234.5887850467, 241.9158878505);
}
.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
  border-radius: 0;
}
.qs-range-middle.qs-range-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.qs-range-middle.qs-range-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-range-end:not(.qs-range-0) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-disabled,
.qs-outside-current-month {
  opacity: 0.2;
}

.qs-disabled {
  cursor: not-allowed;
}

.qs-empty {
  cursor: default;
}

.qs-day {
  cursor: default;
  font-weight: bold;
  color: gray;
}

.qs-event {
  position: relative;
}
.qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
}
.row::before, .row::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.column, .columns {
  float: left;
  width: 100%;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column, .columns, .column:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.small-centered {
  margin-left: auto;
  margin-right: auto;
}
.small-centered, .small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}

.small-uncentered, .small-push-0, .small-pull-0 {
  position: static;
  margin-right: 0;
  margin-left: 0;
}
.small-uncentered, .small-uncentered:last-child:not(:first-child), .small-push-0, .small-push-0:last-child:not(:first-child), .small-pull-0, .small-pull-0:last-child:not(:first-child) {
  float: left;
  clear: none;
}
.small-uncentered:last-child:not(:first-child), .small-push-0:last-child:not(:first-child), .small-pull-0:last-child:not(:first-child) {
  float: right;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .medium-centered {
    margin-left: auto;
    margin-right: auto;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered, .medium-push-0, .medium-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncentered, .medium-uncentered:last-child:not(:first-child), .medium-push-0, .medium-push-0:last-child:not(:first-child), .medium-pull-0, .medium-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .medium-uncentered:last-child:not(:first-child), .medium-push-0:last-child:not(:first-child), .medium-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .large-centered {
    margin-left: auto;
    margin-right: auto;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered, .large-push-0, .large-pull-0 {
    position: static;
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncentered, .large-uncentered:last-child:not(:first-child), .large-push-0, .large-push-0:last-child:not(:first-child), .large-pull-0, .large-pull-0:last-child:not(:first-child) {
    float: left;
    clear: none;
  }
  .large-uncentered:last-child:not(:first-child), .large-push-0:last-child:not(:first-child), .large-pull-0:last-child:not(:first-child) {
    float: right;
  }
}
.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.grid-container {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.fluid {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.grid-container.full {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  padding-left: 0;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.25rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.25rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.25rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.25rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.25rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.25rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.25rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.25rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.25rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.25rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.25rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1.25rem / 2);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1.25rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1.25rem / 2);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1.25rem / 2);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1.25rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1.25rem / 2);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1.25rem / 2);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1.25rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1.25rem / 2);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1.25rem / 2);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1.25rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1.25rem / 2);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.875rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.875rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.875rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.875rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.875rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.875rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.875rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.875rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.875rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.875rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.875rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.875rem / 2);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.875rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.875rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.875rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.875rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.875rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.875rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.875rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.875rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.875rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.875rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.875rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.875rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.25rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.25rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.25rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.25rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.25rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.25rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.25rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.25rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

[data-whatinput=mouse] button {
  outline: 0;
}
button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  padding: 0.85em 1em;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .button.small-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .button.medium-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button.medium-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .button.medium-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .button.large-only-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .button.large-down-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button.large-expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button:hover, .button:focus {
  background-color: rgb(19.55, 102.85, 158.1);
  color: #fefefe;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: rgb(18.4, 96.8, 148.8);
  color: #fefefe;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: rgb(94.4, 94.4, 94.4);
  color: #fefefe;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: rgb(34.2386266094, 187.3613733906, 91.3030042918);
  color: #0a0a0a;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: rgb(204, 139.2, 0);
  color: #0a0a0a;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: rgb(165.0996015936, 58.6103585657, 42.1003984064);
  color: #fefefe;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: rgb(11.5, 60.5, 93);
  color: rgb(11.5, 60.5, 93);
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: rgb(127.5, 87, 0);
  color: rgb(127.5, 87, 0);
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: rgb(103.187250996, 36.6314741036, 26.312749004);
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #1779ba;
}
.button.clear:hover, .button.clear:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: rgb(11.5, 60.5, 93);
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: rgb(21.3991416309, 117.1008583691, 57.0643776824);
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: rgb(127.5, 87, 0);
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: rgb(103.187250996, 36.6314741036, 26.312749004);
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  color: #cacaca;
}

::-moz-placeholder {
  color: #cacaca;
}

::placeholder {
  color: #cacaca;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: rgb(249, 236.1, 234.1);
}
.is-invalid-input:not(:focus)::-webkit-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.switch {
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 2rem;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 20px;
  background: #cacaca;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  transform: translate3d(0, 0, 0);
  border-radius: 15px;
  background: #fefefe;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #3a5fcd;
}
input:checked ~ .switch-paddle::after {
  left: 2.3125rem;
}
input:focus-visible ~ .switch-paddle {
  background: rgb(181.8, 181.8, 181.8);
}
input:focus-visible ~ .switch-paddle::after {
  background: #fefefe;
}
input:checked:focus-visible ~ .switch-paddle {
  background: rgb(19.55, 102.85, 158.1);
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.3125rem;
  left: 0.3125rem;
  width: 0.875rem;
  height: 0.875rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.8125rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.125rem;
  height: 1.125rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2.0625rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.8125rem;
}

.switch {
  margin-bottom: 0;
  display: flex;
}
.switch .example {
  color: #323232;
  font-weight: normal;
  margin-left: 20px;
}
.switch img {
  margin-left: 5px;
}

.switch-paddle {
  width: 5rem;
}
.switch-paddle .switch-active {
  left: 0.625rem;
}

input:checked ~ .switch-paddle::after {
  left: 3.375rem;
}

select {
  -webkit-appearance: none;
  height: 2.375rem;
}

p {
  margin-top: 0;
}
p.small {
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin-top: 0.3125rem;
}

.page-container {
  margin-top: 1.25rem;
  margin-bottom: 5rem;
}

.page {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .page {
    margin-top: 0;
  }
}
.page__header {
  margin-bottom: 20px;
}
.page__content {
  background-color: #fff;
  padding: 0.9375rem 1.5625rem 3.75rem;
  margin-bottom: 1.25rem;
}
.page h3 {
  margin: 30px 0 20px;
}

.app-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  background-color: #111;
  text-align: center;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .app-menu {
    width: 13.125rem;
  }
}
.app-menu.is-minimized {
  width: 3.125rem;
}
.app-menu.is-minimized .sidebar-close-expand-logo {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 15px;
}
.app-menu.is-minimized .sidebar-close-expand-button {
  margin-right: 0;
}
.app-menu.is-minimized .sidebar-close-expand-logo__logo {
  display: none;
}
.app-menu.is-minimized .app-menu__link {
  padding: 5px;
  text-align: center;
  margin-bottom: 10px;
}
.app-menu.is-minimized .app-menu__link img {
  width: 25px;
}
.app-menu.is-minimized .app-menu__link__title {
  display: none;
}
.app-menu__contents {
  padding: 5px;
}
.app-menu .sidebar-close-expand-logo {
  display: flex;
}
.app-menu .sidebar-close-expand-logo__logo {
  flex: 1;
}
.app-menu .sidebar-close-expand-logo__logo img {
  width: 100%;
  height: auto;
}
.app-menu .sidebar-close-expand-button {
  width: 35px;
  padding: 5px;
  background-color: #111111;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
.app-menu .sidebar-close-expand-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px; /* circle size */
  height: 46px;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  background: rgba(255, 255, 255, 0.12); /* halo fill */
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18); /* subtle ring */
  pointer-events: none; /* don't block clicks */
  transition: opacity 120ms ease, transform 120ms ease;
}
.app-menu .sidebar-close-expand-button:hover::after,
.app-menu .sidebar-close-expand-button:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.app-menu .sidebar-close-expand-button:focus-visible {
  outline: none; /* optional, since we added a visible focus state */
}
.app-menu .app-menu__contents__subtitle {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
}
.app-menu .app-menu-logo {
  display: inline-block;
  padding: 5px;
}
.app-menu .app-menu-logo img {
  width: auto;
  height: 24px;
  object-fit: contain;
}
@media print, screen and (min-width: 40em) {
  .app-menu .app-menu-logo img.logo--temp-stick {
    height: 43px;
  }
}
.app-menu .app-menu-logo img.logo--large {
  height: 60px;
}
.app-menu .app-menu-main {
  position: relative;
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  .app-menu .app-menu-main {
    width: 200px;
    padding: 0.3125rem 0.625rem;
  }
}
.app-menu__links {
  display: flex;
  padding: 0;
  width: calc(100% + 15px);
}
@media print, screen and (min-width: 64em) {
  .app-menu__links {
    flex-direction: column;
  }
}
.app-menu__link {
  display: block;
  font-size: 0.625rem;
  width: 20%;
  height: 55px;
  padding: 7px 5px 5px;
  background-color: #fff;
  border-left: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  color: #111;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
.app-menu__link[data-for=logout] {
  display: none;
}
@media print, screen and (min-width: 64em) {
  .app-menu__link[data-for=logout] {
    display: block;
  }
}
.app-menu__link i, .app-menu__link img {
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
}
@media print, screen and (min-width: 64em) {
  .app-menu__link {
    text-align: left;
    color: #eee;
    width: 100%;
    height: auto;
    background-color: #000;
    border: none;
    border-left: 3px solid transparent;
    padding: 15px 5px 15px 20px;
    margin-left: -10px;
    font-size: 0.75rem;
  }
  .app-menu__link i, .app-menu__link img {
    font-size: 14px;
    width: 20px;
    height: auto;
  }
  .app-menu__link .app-menu__link__title {
    display: inline-block;
    margin-left: 6px;
  }
}
.app-menu__link:first-child {
  border-left: none;
}
.app-menu__link.is-active {
  background-color: #bfbfbf;
}
@media print, screen and (min-width: 64em) {
  .app-menu__link.is-active {
    background-color: #000;
    border-left: 3px solid #4dcd2e;
  }
}
.app-menu__link__title {
  display: block;
}
.app-menu__link__notifications-count {
  display: inline-block;
  padding: 0.3125rem 0.5rem;
  line-height: 12px;
  font-size: 12px;
  border-radius: 15px;
  margin-right: 0.3125rem;
  margin-left: -0.375rem;
}
.app-menu__link__notifications-count--loading {
  background-color: black;
  color: black;
}
.app-menu__link__notifications-count.has-no-notifications {
  background-color: #d0d0d0;
  color: black;
}
.app-menu__link__notifications-count.has-notifications {
  color: white;
  background-color: #a53131;
}
.app-menu__mobile-notifications-badge {
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  display: flex;
  align-items: center;
}
.app-menu__mobile-notifications-badge__icon {
  display: block;
  color: white;
  margin-right: 0.3125rem;
  font-size: 18px;
  line-height: 22px;
}
.app-menu__mobile-notifications-badge__badge {
  display: block;
  padding: 0.3125rem 0.5rem;
  line-height: 12px;
  font-size: 12px;
  border-radius: 15px;
}
.app-menu__mobile-notifications-badge__badge.has-no-notifications {
  background-color: #d0d0d0;
  color: black;
}
.app-menu__mobile-notifications-badge__badge.has-notifications {
  color: white;
  background-color: #a53131;
}
@media print, screen and (min-width: 64em) {
  .app-menu__mobile-notifications-badge {
    display: none;
  }
}
.app-menu .app-menu-toggle {
  background: #111;
  color: white;
  cursor: pointer;
  display: block;
  position: absolute;
  right: -14px;
  text-align: center;
  top: 14px;
  font-size: 13px;
  z-index: 999;
  font-style: normal;
  text-decoration: none;
  font-weight: normal;
  border-radius: 0 4px 4px 0;
  width: 25px;
  padding: 8px 5px;
}

.dashboard-active-sensor__group {
  margin-top: 20px;
}
.dashboard-active-sensor__group select {
  font-size: 14px;
  line-height: 16px;
  height: 32px;
  background-color: #111;
  border: #222 1px solid;
  color: white;
}
.dashboard-active-sensor__group select:default, .dashboard-active-sensor__group select:focus, .dashboard-active-sensor__group select:active {
  background-color: #111;
  border: #555;
  color: white;
}

.dashboard-active-sensor-handle {
  cursor: pointer;
  position: absolute;
  left: -40px;
  top: 10px;
  background-color: #111;
  z-index: 999;
  padding: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.dashboard-active-sensor {
  width: 500px;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #111;
  box-shadow: rgba(50, 50, 50, 0.3) -3px 3px 15px;
  padding: 20px;
  color: white;
  transition: transform ease-in 0.2s;
  transform: translate3d(490px, 0, 0);
  z-index: 9;
}
.dashboard-active-sensor.is-active {
  transform: translate3d(0, 0, 0);
}
.dashboard-active-sensor .dashboard-active-sensor-content {
  overflow-y: auto;
  padding-bottom: 20px;
}
.dashboard-active-sensor .dashboard-active-sensor__readings-date-range {
  background-color: #111;
  border: #222 1px solid;
  color: white;
}
.dashboard-active-sensor .dashboard-active-sensor__readings-date-range:default, .dashboard-active-sensor .dashboard-active-sensor__readings-date-range:focus, .dashboard-active-sensor .dashboard-active-sensor__readings-date-range:active {
  background-color: #111;
  border: #555;
  color: white;
}
.dashboard-active-sensor .custom-date-range-start,
.dashboard-active-sensor .custom-date-range-end {
  background-color: #111;
  border: #555;
  color: white;
}
.dashboard-active-sensor__readings-date-range__custom {
  display: none;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 0.625rem;
}
.dashboard-active-sensor__readings-date-range__custom.is-active {
  display: flex;
}
.dashboard-active-sensor__readings-date-range__custom__error {
  display: none;
  width: 100%;
  text-align: right;
  color: #ee0000;
  margin-top: 0.625rem;
}
.dashboard-active-sensor__readings-date-range__custom__error.is-active {
  display: block;
}
.dashboard-active-sensor__readings-date-range__custom__start, .dashboard-active-sensor__readings-date-range__custom__end {
  width: calc(50% - 20px);
}
@media print, screen and (min-width: 40em) {
  .dashboard-active-sensor__readings-date-range__custom__start, .dashboard-active-sensor__readings-date-range__custom__end {
    width: 8.75rem;
  }
}
.dashboard-active-sensor__readings-date-range__custom__start input, .dashboard-active-sensor__readings-date-range__custom__end input {
  margin-bottom: 0;
}
.dashboard-active-sensor__readings-date-range__custom__start {
  margin-right: 0.625rem;
}
.dashboard-active-sensor__readings-date-range__custom__end {
  margin-left: 0.625rem;
}
.dashboard-active-sensor__readings-date-range__custom__button {
  margin-top: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .dashboard-active-sensor__readings-date-range__custom__button {
    margin-top: 1.5625rem;
    margin-left: 0.625rem;
  }
}

.dashboard-active-sensor .dashboard-active-sensor__sensor-groups {
  max-height: 200px;
  overflow-y: auto;
  /* For WebKit browsers */
}
.dashboard-active-sensor .dashboard-active-sensor__sensor-groups ::-webkit-scrollbar {
  width: 6px; /* Thin scrollbar */
}
.dashboard-active-sensor .dashboard-active-sensor__sensor-groups ::-webkit-scrollbar-track {
  background: #1c1c1c; /* Match dark background */
}
.dashboard-active-sensor .dashboard-active-sensor__sensor-groups ::-webkit-scrollbar-thumb {
  background-color: #444; /* Darker thumb */
  border-radius: 10px;
  border: 1px solid #2c2c2c; /* Slight contrast for thumb */
}
.dashboard-active-sensor .dashboard-active-sensor__sensor-groups {
  /* Optional: Hover effect for the thumb */
}
.dashboard-active-sensor .dashboard-active-sensor__sensor-groups ::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}
.dashboard-active-sensor .dashboard-active-sensor__sensor-groups {
  /* Firefox-specific (if needed) */
  scrollbar-width: thin;
  scrollbar-color: #444 #1c1c1c;
}
.dashboard-active-sensor .select-group .group-list-item {
  color: #eaeaea;
}
.dashboard-active-sensor .select-group .group-list-item:nth-child(odd) {
  background-color: #151414;
}
.dashboard-active-sensor .select-group .group-list-item:nth-child(even) {
  background-color: #0a0a0a;
}

.dashboard-enterprise {
  display: flex;
}

.reading {
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  margin-left: -5px;
  margin-top: -5px;
  padding: 3px;
}
.reading--OKAY {
  background-color: #259d0a;
  color: white;
}
.reading--WARNING {
  background-color: #eed202;
  color: black;
}
.reading--ACTIVE {
  background-color: #ee0000;
  color: white;
}

.alerts-list-item {
  padding: 2px;
  margin-left: 2px;
}
.alerts-list-item::after {
  margin-left: 2px;
}
.alerts-list-item:first-child {
  margin-left: 0;
}
.alerts-list-item--OKAY {
  background-color: #a1da93;
  color: black;
}
.alerts-list-item--WARNING {
  background-color: rgba(238, 210, 2, 0.3);
  color: black;
}
.alerts-list-item--ACTIVE {
  background-color: rgba(238, 0, 0, 0.3);
  color: black;
}

.dashboard-enterprise {
  position: relative;
}
.dashboard-enterprise input[type=checkbox] {
  margin-bottom: 0;
}

.reading-charts-tabs {
  margin-top: 20px;
  margin-bottom: 0;
}

h3 {
  font-size: 16px;
  color: #8d8d8d;
  margin: 0 0 10px;
}

.data-grid-actions {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 3px;
  font-size: 14px;
}

.data-grid-action-label {
  margin: 0 20px 0 40px;
  font-style: italic;
  color: #2f3136;
}

.data-grid-row__cell[data-for=name] {
  cursor: pointer;
}

.data-grid-action {
  display: flex;
  align-items: center;
}
.data-grid-action [data-action=checkall] {
  margin-right: 10px;
}

.dashboard-lite__chart {
  margin-bottom: 20px;
}

.dashboard-active-sensor__alerts {
  margin-top: 20px;
}
.dashboard-active-sensor__alerts table {
  font-size: 12px;
}
.dashboard-active-sensor__alerts table th {
  text-align: left;
}
.dashboard-active-sensor__alerts table tr:nth-child(even) td, .dashboard-active-sensor__alerts table tr:nth-child(even) th {
  background-color: #222;
}
.dashboard-active-sensor__alerts table td, .dashboard-active-sensor__alerts table th {
  padding: 5px 7px;
}

.reading-charts-tab {
  font-size: 12px;
  display: inline-block;
  padding: 10px 15px;
  color: #d0d0d0;
  border-color: #444;
  border-style: solid;
  cursor: pointer;
  background-color: #111;
  border-left-width: 1px;
  border-top-width: 1px;
}
.reading-charts-tab.is-active {
  background-color: #444;
}
.reading-charts-tab:last-child {
  border-right-width: 1px;
}

.dashboard-lite__chart {
  display: none;
  margin-top: -1px;
}
.dashboard-lite__chart.is-active {
  display: block;
  border-top: 1px solid #444;
  padding-top: 10px;
}

.dashboard-lite__chart {
  position: relative;
  background-color: #eaeaea;
  padding: 5px;
}

.dashboard-lite__chart__no-readings {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  text-align: center;
  padding-top: 3.75rem;
}
.dashboard-lite__chart__no-readings.is-active {
  display: block;
}

.dashboard-enterprise-per-page {
  font-size: 12px;
  text-transform: uppercase;
  text-align: right;
}
.dashboard-enterprise-per-page select {
  display: inline-block;
  width: auto;
  margin-left: 10px;
  font-size: 14px;
  line-height: 16px;
  height: 32px;
}

.data-grid-breadcrumbs {
  display: flex;
  align-items: center;
}

.dashboard-enterprise-options {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.dashboard-enterprise-options .filters-list {
  margin-right: 20px;
  margin-bottom: 0;
}
.dashboard-enterprise-options [data-for=sensor_search] {
  display: inline-block;
}
.dashboard-enterprise-options [data-for=search_button] {
  display: inline-block;
  cursor: pointer;
}
.dashboard-enterprise-options select {
  margin-bottom: 0;
}
.dashboard-enterprise-options .download-csv {
  margin-left: auto;
}

.sensor-search {
  margin-right: 10px;
}

input[data-for=sensor_search] {
  font-size: 14px;
  padding: 5px;
  line-height: 16px;
  width: 240px;
  height: 28px;
  margin-bottom: 0;
}

.tc-current-reading-container {
  width: 100%;
}
.tc-current-reading-container[data-for=tcTemp] .tc-current-reading__label,
.tc-current-reading-container[data-for=tcTemp] .tc-current-reading__heading, .tc-current-reading-container[data-for=temp] .tc-current-reading__label,
.tc-current-reading-container[data-for=temp] .tc-current-reading__heading {
  background-color: #ee0000;
}
.tc-current-reading-container[data-for=humidity] .tc-current-reading__label,
.tc-current-reading-container[data-for=humidity] .tc-current-reading__heading {
  background-color: #3a5fcd;
}

.dashboard-lite__current-readings.is-tc {
  width: 100%;
  margin-top: -15px;
}

.tc-current-reading {
  display: flex;
  background-color: #444;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 100%;
  align-items: center;
  margin: 0 0 5px;
}
.tc-current-reading__heading {
  display: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  padding: 3px 10px;
}
.tc-current-reading__label {
  display: flex;
  font-size: 12px;
  width: 90px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  padding: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 50px;
  justify-content: center;
  align-items: center;
}
.tc-current-reading__label img {
  width: 13px;
  margin-right: 3px;
}
.tc-current-reading__label img[data-for=unit] {
  width: 17px;
}
.tc-current-reading__label i {
  margin-right: 3px;
}
.tc-current-reading__time {
  font-size: 14px;
  color: white;
  padding: 0 10px;
}
.tc-current-reading[data-for=tcTemp] .tc-current-reading__label,
.tc-current-reading[data-for=tcTemp] .tc-current-reading__heading, .tc-current-reading[data-for=temperature] .tc-current-reading__label,
.tc-current-reading[data-for=temperature] .tc-current-reading__heading {
  background-color: #ee0000;
}
.tc-current-reading[data-for=humidity] .tc-current-reading__label,
.tc-current-reading[data-for=humidity] .tc-current-reading__heading {
  background-color: #3a5fcd;
}
.tc-current-reading__value {
  color: white;
  font-size: 22px;
  font-weight: 400;
  flex: 1;
  padding-left: 10px;
}
@media print, screen and (min-width: 40em) {
  .tc-current-reading__value {
    font-size: 26px;
  }
}
.tc-current-reading__stats {
  display: flex;
  margin: 5px;
}
.tc-current-reading__stat {
  text-align: center;
  margin: 0 8px;
  width: 60px;
}
.tc-current-reading__stat:first-child {
  margin-left: 0;
}
.tc-current-reading__stat:last-child {
  margin-right: 0;
}
.tc-current-reading__stat[data-for=average] {
  display: none;
}
@media print, screen and (min-width: 40em) {
  .tc-current-reading__stat[data-for=average] {
    display: block;
  }
}
.tc-current-reading__stat__label {
  color: #c8c8c8;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.tc-current-reading__stat__value {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
}

.tc-current-reading-time {
  transition: all 0.4s ease-out;
  width: auto;
  font-weight: 600;
  font-size: 14px;
  margin: 5px 0;
  color: #d0d0d0;
  background-color: transparent;
}
.tc-current-reading-time.animate {
  background-color: #323232;
  color: white;
}

.tc-current-reading__value,
.tc-current-reading__stat__value {
  transition: all 0.4s ease-out;
  background-color: #444;
  color: white;
}
.tc-current-reading__value.animate,
.tc-current-reading__stat__value.animate {
  background-color: #8d8d8d;
  color: #323232;
}

.data-grid-row.is-selected td {
  background-color: rgba(58, 95, 205, 0.4);
}

#active-sensor-scrollview {
  scrollbar-width: thin;
  scrollbar-color: #444 #1c1c1c;
  padding-right: 5px;
}

.reading-value {
  cursor: pointer;
  background-color: transparent;
  color: black;
}
.reading-value--ACTIVE {
  /* Total cycle = pulse (≈2 s) + hold (≈10 s) = 12 s */
  animation: pulseHold 3s infinite ease-in-out;
}

@keyframes pulseHold {
  /* 0%–8.33% (≈1 s): fade from transparent→red */
  0% {
    background-color: transparent;
    color: black;
  }
  8.33% {
    background-color: red;
    color: white;
  }
  /* 8.33%–16.66% (≈1 s): fade from red→transparent */
  16.66% {
    background-color: transparent;
    color: black;
  }
  /* Instant jump at 16.67% to red/white, then hold until 100% */
  25% {
    background-color: red;
    color: white;
  }
  100% {
    background-color: red;
    color: white;
  }
}
.manage-columns-flyout {
  background-color: #fff;
  padding: 8px 13px;
  box-shadow: rgba(0, 0, 0, 0.2) 4px 8px 8px;
}

[data-action=manage_columns] {
  font-size: 18px !important;
  background-color: #021f79;
  color: #f1f1f1 !important;
}
[data-action=manage_columns].is-active {
  background-color: #fff;
  color: #3a5fcd !important;
  border-bottom: 1px solid #fff !important;
}

.manage-columns-item {
  position: relative;
  margin-bottom: 10px;
  padding: 2px;
}
.manage-columns-item input {
  margin-bottom: 0;
}
.manage-columns-item .label-text {
  padding: 0 5px;
  font-size: 14px;
  color: #323232;
}
.manage-columns-item .handle {
  position: absolute;
  right: 0;
  top: 3px;
  color: #d0d0d0;
  cursor: pointer;
}

.manage-columns-list .sortable-placeholder {
  border: 2px dashed #d0d0d0;
  background-color: #fafafa;
  height: 32px;
  margin-bottom: 10px;
}

.manage-columns-list .sortable-ghost {
  opacity: 0.8;
  background-color: #3a5fcd;
}
.manage-columns-list .sortable-ghost .label-text {
  color: #fff !important;
}

.manage-columns-item.sortable-chosen {
  opacity: 0.6;
}

.data-grid-row[data-for=sensor] {
  cursor: pointer;
}

.dashboard__container {
  width: 100%;
}

.scrollable-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px; /* a little breathing room under the scroll bar */
  margin-bottom: 5px; /* separate it from the actions/pagination below */
}

/* Optional: give the native scrollbar a light, subtle thumb */
.scrollable-container::-webkit-scrollbar {
  height: 8px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: transparent;
}

.scrollable-container::-webkit-scrollbar-thumb {
  background-color: rgba(150, 150, 150, 0.5);
  border-radius: 5px;
}

.data-grid-row__cell {
  border-left: 1px solid #f1f1f1;
}
.data-grid-row__cell:first-child, .data-grid-row__cell:last-child {
  border-left: 0;
}

tr:not(.is-header) td.data-grid-row__cell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #000;
  width: 3px;
}
tr:not(.is-header):nth-child(odd) td.data-grid-row__cell::after {
  background-color: #d0d0d0;
}
tr:not(.is-header):nth-child(even) td.data-grid-row__cell::after {
  background-color: #e8e8e8;
}

/* 1. Base peek-aboo on every cell */
.data-grid-row__cell {
  position: relative; /* so z-index and absolute children work */
  white-space: nowrap; /* don’t wrap to a new line */
  overflow: hidden; /* clip anything past the bounds */
}
.data-grid-row__cell[data-action=manage_columns] {
  text-overflow: initial;
}

.cell-tooltip {
  font-size: 14px;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 1000;
  /* ensure the arrow can show outside the box */
  overflow: visible;
}

.cell-tooltip::before {
  content: "";
  position: absolute;
  /* vertically center the arrow on the tooltip */
  top: 50%;
  /* move it just outside the left edge */
  left: -8px;
  transform: translateY(-50%);
  /* make a left-pointing triangle */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(0, 0, 0, 0.8);
}

.user-login-container,
.forgot-password-container {
  display: flex;
  width: 100%;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .user-login-container,
  .forgot-password-container {
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}

.user-login-input {
  display: flex;
  margin-bottom: 15px;
}
.user-login-input input {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .user-login-input[data-for=password] {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
  }
}
.user-login-input__icon {
  width: 45px;
  padding-top: 5px;
}
.user-login-input__input {
  flex: 1;
}
.user-login-input__password-toggle {
  width: 35px;
  padding-top: 2px;
}
.user-login-input .forgot-password-button {
  color: #008CBA;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 5px 0;
  margin-top: 5px;
}

.user-login-show-hide-password {
  padding: 10px;
  color: #8d8d8d;
  cursor: pointer;
}
.user-login-show-hide-password.is-active {
  color: #008CBA;
}

.user-login-heading {
  font-size: 1.25rem;
  line-height: 1.2em;
  margin: 0 0 1rem;
}

.user-login-heading-message {
  font-size: 1rem;
  line-height: 1.2em;
  margin: 0 0 1rem;
  color: #3a5fcd;
}

.user-login-input-heading {
  font-size: 0.875rem;
  color: #323232;
  padding-left: 45px;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 40em) {
  .user-login-input-heading {
    font-size: 0.85rem;
  }
}

.user-login,
.forgot-password {
  width: 100%;
  max-width: 37.5rem;
  margin: 3.125rem auto 0;
}
@media print, screen and (min-width: 40em) {
  .user-login,
  .forgot-password {
    margin-top: 0;
  }
}
.user-login__header,
.forgot-password__header {
  margin-bottom: 20px;
}
.user-login__form,
.forgot-password__form {
  background-color: #fff;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.user-login__form input[type=email],
.user-login__form input[type=password],
.forgot-password__form input[type=email],
.forgot-password__form input[type=password] {
  margin-bottom: 0;
}
.user-login__form__forgot-password,
.forgot-password__form__forgot-password {
  font-size: 13px;
}
.user-login .button,
.forgot-password .button {
  margin-bottom: 0;
}
.user-login__actions,
.forgot-password__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.user-login__actions .login-button,
.forgot-password__actions .login-button {
  margin: 20px auto 25px;
}
@media print, screen and (min-width: 40em) {
  .user-login__actions .login-button,
  .forgot-password__actions .login-button {
    margin: inherit;
    margin-right: 30px;
  }
}
.user-login__actions__remember-me,
.forgot-password__actions__remember-me {
  width: 11.875rem;
  align-items: center;
  display: none;
}
@media print, screen and (min-width: 40em) {
  .user-login__actions__remember-me,
  .forgot-password__actions__remember-me {
    display: flex;
    margin-left: -9.375rem;
  }
}
.user-login__actions__remember-me .switch,
.forgot-password__actions__remember-me .switch {
  margin-bottom: 0;
  margin-right: 5px;
}
@media print, screen and (min-width: 40em) {
  .user-login__actions__remember-me .switch,
  .forgot-password__actions__remember-me .switch {
    margin-right: 10px;
  }
}
.user-login__actions__new-user .new-user-button,
.forgot-password__actions__new-user .new-user-button {
  font-size: 0.875rem;
}

.forgot-password__email {
  flex: 1;
  height: 2.25rem !important;
}
.forgot-password__submit {
  width: 11.25rem;
  margin-left: 0.9375rem;
}
.forgot-password__message {
  width: 100%;
  margin: 0.625rem 0;
}

.forgot-password-modal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.forgot-password-modal__email {
  width: 100%;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 40em) {
  .forgot-password-modal__email {
    flex: 1;
    height: 2.25rem !important;
    margin-bottom: 0;
  }
}
.forgot-password-modal__email-again {
  display: none;
}
.forgot-password-modal__submit {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .forgot-password-modal__submit {
    width: 11.25rem;
    margin-left: 0.9375rem;
  }
}
.forgot-password-modal__message {
  width: 100%;
  margin: 0.625rem 0;
}

.alerts-container {
  max-width: 75rem;
  margin-bottom: 2.5rem;
}
.alerts-container .edit-account-timezone i {
  font-size: 16px;
}

.alerts-shortcodes__label, .alerts-shortcodes__shortcode {
  display: inline-block;
}
.alerts-shortcodes__shortcode {
  font-size: 0.875rem;
  background-color: #e2e2e2;
  padding: 5px;
  margin: 0 5px 5px;
}

.alerts-example {
  font-size: 1rem;
  margin: 15px 0;
  color: #fff;
  background-color: #0079fe;
  border-radius: 0.9375rem;
  padding: 1.25rem;
}
.alerts-example__label {
  font-weight: bold;
  font-size: 0.75rem;
  margin: 0 0 0.3125rem;
}
.alerts-example__message {
  font-size: 0.875rem;
}

.alerts-modal-save {
  display: flex;
  margin-top: 0.625rem;
}
.alerts-modal-save__button {
  width: 6.25rem;
}
.alerts-modal-save__message {
  flex: 1;
}

.notifications {
  max-width: 75rem;
}

.alert-form {
  border-radius: 3px;
}
.alert-form__title {
  margin-top: 0;
  margin-bottom: 0;
}
.alert-form {
  max-width: 50rem;
  background-color: #fff;
  padding: 1.25rem;
}
.alert-form .setting[data-for=always_active] {
  margin-top: 1.875rem;
}
.alert-form select[name="sensors[]"] {
  height: 12.5rem;
}
.alert-form .settings-group--trigger {
  margin-bottom: 3.125rem;
}
.alert-form .settings-group--trigger .setting {
  margin-bottom: 0.3125rem;
}
.alert-form .settings-group--trigger .setting__range__number__input {
  font-size: 3.125rem;
  color: #ee0000;
  padding: 0 0.625rem;
  width: 7.8125rem;
  height: 3.4375rem;
  margin-bottom: 0.9375rem;
}
.alert-form .settings-group--trigger .setting__range__number__label {
  color: #ee0000;
  display: inline-block;
  vertical-align: top;
}
.alert-form .settings-group__inline {
  display: flex;
  justify-content: space-between;
}
.alert-form .settings-group__inline__trigger .setting {
  width: 100%;
}
.alert-form .settings-group__inline__trigger p {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.alert-form__active-when__day {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.alert-form__active-when__day__switch {
  margin-right: 0.625rem;
}
.alert-form__active-when__day__time {
  flex: 1;
}
@media print, screen and (max-width: 39.99875em) {
  .alert-form__active-when__day__time {
    display: flex;
    justify-content: space-around;
  }
  .alert-form__active-when__day__time select {
    width: 49%;
    font-size: 0.8125rem;
  }
}
@media print, screen and (min-width: 40em) {
  .alert-form__active-when__start-hour, .alert-form__active-when__end-hour {
    display: inline-block;
    margin-right: 0.625rem;
    margin-bottom: 0;
    width: auto;
  }
}
.alert-form__contacts-select {
  margin-bottom: 0.9375rem;
}
.alert-form__contacts {
  overflow-y: auto;
  max-height: 18.75rem;
}
.alert-form__contacts__add-contact {
  margin-top: 0.625rem;
}
.alert-form__contact {
  position: relative;
  padding: 0.625rem;
  border: 1px solid #d0d0d0;
}
@media print, screen and (min-width: 40em) {
  .alert-form__contact {
    display: flex;
    align-items: center;
  }
}
.alert-form__contact__remove {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .alert-form__contact__remove {
    position: initial;
    width: 1.875rem;
    margin-left: -0.3125rem;
  }
}
.alert-form__contact__remove__button {
  color: #ee0000;
  font-size: 1.25rem;
  padding: 0.4375rem;
  cursor: pointer;
}
.alert-form__contact__name {
  font-size: 1rem;
  font-weight: bold;
  flex: 1;
}
.alert-form__contact:nth-child(odd) {
  background-color: #f1f1f1;
}
.alert-form__contact:nth-child(even) {
  background-color: #fff;
}
.alert-form__contact__email, .alert-form__contact__text {
  align-self: flex-end;
  display: inline-block;
  margin-right: 1.5625rem;
}
.alert-form__contact__email:last-child, .alert-form__contact__text:last-child {
  margin-right: 0;
}
.alert-form__contact__email input, .alert-form__contact__text input {
  margin-bottom: 0;
}
.alert-form .customize-alert-button {
  margin-bottom: 0.625rem;
}
.alert-form .customize-alert-button,
.alert-form .customize-alert-message {
  display: none;
}
.alert-form .customize-alert-button.is-active,
.alert-form .customize-alert-message.is-active {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .alert-form__test-alert {
    display: flex;
  }
}
.alert-form__test-alert__message {
  flex: 1;
  padding-left: 0.625rem;
}
.alert-form__trigger[data-for=connection] .alert-form__trigger-value, .alert-form__trigger[data-for=battery] .alert-form__trigger-value, .alert-form__trigger[data-for=power] .alert-form__trigger-value {
  display: none;
}
.alert-form__trigger[data-for=temperature] .alert-form__trigger-value {
  color: #ee0000;
}
.alert-form__trigger[data-for=temperature] .alert-form__trigger-value input {
  color: #ee0000;
}
.alert-form__trigger[data-for=probe_temp] .alert-form__trigger-value {
  color: #ee0000;
}
.alert-form__trigger[data-for=probe_temp] .alert-form__trigger-value input {
  color: #ee0000;
}
.alert-form__trigger[data-for=dew_point] .alert-form__trigger-value {
  color: #ee0000;
}
.alert-form__trigger[data-for=dew_point] .alert-form__trigger-value input {
  color: #ee0000;
}
.alert-form__trigger[data-for=heat_index] .alert-form__trigger-value {
  color: #ee0000;
}
.alert-form__trigger[data-for=heat_index] .alert-form__trigger-value input {
  color: #ee0000;
}
.alert-form__trigger[data-for=humidity] .alert-form__trigger-value {
  color: #3a5fcd;
}
.alert-form__trigger[data-for=humidity] .alert-form__trigger-value input {
  color: #3a5fcd;
}
.alert-form__trigger-condition {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.alert-form__trigger-condition__type {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 48em) {
  .alert-form__trigger-condition__type {
    width: 220px;
    margin-bottom: 0;
  }
}
.alert-form__trigger-condition__type select {
  margin-bottom: 0;
}
.alert-form__trigger-condition__condition {
  width: calc(100% - 40px);
}
@media screen and (min-width: 48em) {
  .alert-form__trigger-condition__condition {
    width: 160px;
  }
}
.alert-form__trigger-condition__condition select {
  margin-bottom: 0;
}
.alert-form__trigger-condition__is {
  width: 2.5rem;
  text-align: center;
  font-weight: bold;
}
.alert-form__trigger-value .setting__range {
  display: flex;
  align-items: center;
}
.alert-form__trigger-value .setting__range__number {
  display: flex;
  align-items: flex-start;
  margin-right: 0.625rem;
}
.alert-form__trigger-value .setting__range__number input {
  font-size: 3.125rem;
  line-height: 3.125rem;
  width: 8.75rem;
  height: 4.0625rem;
  margin-right: 0.3125rem;
  padding: 0 0 0 5px;
}
.alert-form__trigger-value .setting__range__input {
  flex: 1;
}
.alert-form__connection-sensitivity {
  display: none;
}
.alert-form__connection-sensitivity.is-active {
  display: block;
}

.alert-form__trigger-description {
  display: none;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.alert-form__trigger-description.is-active {
  display: block;
}

.alert-form-alert-mode-radio-label {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-weight: 600;
  cursor: pointer;
}
.alert-form-alert-mode-radio-label input[type=radio] {
  margin-left: 10px;
}

.alert-form-alert-mode-radio-description {
  font-size: 12px;
  color: #8d8d8d;
  line-height: 1.4em;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 40em) {
  .alert-form-alert-mode-radio-description {
    font-size: 14px;
  }
}

.alert-form .settings-group {
  margin-bottom: 30px;
}

.alert-form-alert-mode-example {
  margin-bottom: 30px;
}
.alert-form-alert-mode-example__image {
  display: none;
}
.alert-form-alert-mode-example__image.is-active {
  display: block;
}

.alert-form-sensitivity-prelabel {
  font-size: 14px;
  line-height: 1.2em;
}

.alert-form-sensitivity-label__text {
  font-size: 14px;
  line-height: 1.2em;
  margin-bottom: 5px;
}
.alert-form-sensitivity-label__subtext {
  color: #8d8d8d;
  font-size: 14px;
  line-height: 1.2em;
}

.alert-form-selected-sensors {
  margin-top: 1.25rem;
}
.alert-form-selected-sensors__sensor {
  display: flex;
  border: 1px solid #d0d0d0;
  padding: 0.625rem;
  align-items: center;
}
.alert-form-selected-sensors__sensor:nth-child(odd) {
  background-color: #f1f1f1;
}
.alert-form-selected-sensors__sensor__name {
  font-size: 1rem;
  font-weight: bold;
}
.alert-form-selected-sensors__sensor__remove {
  margin-right: 0.9375rem;
}
.alert-form-selected-sensors__sensor__remove__button {
  cursor: pointer;
  font-size: 20px;
  padding: 0.3125rem;
  color: #ee0000;
  font-weight: bold;
}

.send-test-alert__contact {
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.send-test-alert__contact:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 64em) {
  .lite-list__row__col.buttons .button--inline {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 90em) {
  .lite-list__row__col.buttons .button--inline {
    margin-bottom: 0;
  }
}

.account-display-preferences__preference {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 40em) {
  .account-display-preferences__preference {
    margin-bottom: 10px;
  }
}
.account-display-preferences__preference select {
  margin-bottom: 0;
}
.account-display-preferences__timezone-select {
  display: none;
  margin-top: 10px;
}
.account-display-preferences__timezone-select.is-active {
  display: block;
}

.account-wrapper {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.account-container {
  display: flex;
  flex-wrap: wrap;
  transition: transform 0.4s ease-out;
  justify-content: space-between;
}
@media screen and (min-width: 50em) {
  .account-container {
    justify-content: normal;
    flex-wrap: nowrap;
  }
}

.account-sidebar {
  width: 100%;
  margin-right: 15px;
}
@media screen and (min-width: 50em) {
  .account-sidebar {
    max-width: 12.5rem;
    padding-right: 0.625rem;
    margin-right: 0.625rem;
  }
}
.account-sidebar .account-sidebar-logout {
  margin-top: 1.25rem;
}
.account-sidebar .account-sidebar-logout a {
  border-radius: 0;
}
.account-sidebar-items {
  background-color: #fff;
}
.account-sidebar-item {
  position: relative;
  display: block;
  font-size: 1rem;
  width: 100%;
  padding: 0.9375rem 0.625rem;
  text-align: left;
  color: #323232;
  cursor: pointer;
  border-bottom: 1px solid #d0d0d0;
}
.account-sidebar-item:after {
  position: absolute;
  top: 15px;
  right: 10px;
  display: block;
  font-family: "Font Awesome 5 Pro";
  content: "\f054";
  color: #8d8d8d;
  font-weight: normal;
}
@media screen and (min-width: 50em) {
  .account-sidebar-item:after {
    display: none;
  }
}
.account-sidebar-item.is-active {
  font-weight: bold;
  color: black;
}
.account-sidebar-item.is-active .icon {
  color: #008CBA;
}
.account-sidebar-item .icon {
  display: inline-block;
  width: 1.5625rem;
}

.account-email-reports__contacts, .account-email-reports__sensors {
  margin: 0.9375rem 0;
}
.account-email-reports__contact-count {
  display: block;
  font-weight: bold;
  color: #323232;
}
@media print, screen and (min-width: 40em) {
  .account-email-reports__contact-count {
    display: inline-block;
  }
}
.account-email-reports__contact, .account-email-reports__sensor {
  display: flex;
  border: 1px solid #d0d0d0;
  padding: 0.625rem;
  align-items: center;
}
.account-email-reports__contact:nth-child(odd), .account-email-reports__sensor:nth-child(odd) {
  background-color: #f1f1f1;
}
.account-email-reports__contact__name, .account-email-reports__sensor__name {
  font-size: 1rem;
  font-weight: bold;
}
.account-email-reports__contact__remove, .account-email-reports__sensor__remove {
  margin-right: 0.9375rem;
}
.account-email-reports__contact__remove__button, .account-email-reports__sensor__remove__button {
  cursor: pointer;
  font-size: 20px;
  padding: 0.3125rem;
  color: #ee0000;
  font-weight: bold;
}
.account-email-reports .setting[data-for=daily_reports],
.account-email-reports .setting[data-for=weekly_reports] {
  margin-bottom: 1.875rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #d0d0d0;
}

.account-section-back-button {
  padding: 7px 9px;
  background-color: #d0d0d0;
  color: #323232;
  border-radius: 25px;
  margin-right: 10px;
}
@media screen and (min-width: 50em) {
  .account-section-back-button {
    display: none;
  }
}

.account-content {
  margin-left: 15px;
}
@media screen and (min-width: 50em) {
  .account-content {
    flex: 1;
    max-width: 60rem;
    margin-left: 0;
  }
}

.account-content-section {
  display: none;
}
.account-content-section.is-active {
  display: block;
}
.account-content-section .section-title {
  color: #323232;
}

.account-content-section {
  background-color: #fff;
  padding: 0.625rem;
}
@media screen and (min-width: 50em) {
  .account-content-section {
    padding: 1.25rem;
  }
}
.account-content-section[data-for=loading] {
  height: 200px;
}

.account-reset-password {
  display: flex;
  align-items: center;
}
.account-reset-password__button {
  width: 11.25rem;
}
.account-reset-password__message {
  flex: 1;
  padding-left: 0.625rem;
  color: #3a5fcd;
}

.group-settings__sensor-groups {
  display: flex;
  align-items: center;
}
.group-settings__sensor-groups__label {
  margin-right: 1.25rem;
}

.account-sub-users__create-user {
  display: flex;
  align-items: center;
}
.account-sub-users__create-user__message {
  flex: 1;
  color: #8d8d8d;
  padding-left: 10px;
}
.account-sub-users__master-user {
  margin-bottom: 1.875rem;
  border: 1px solid #d0d0d0;
}
.account-sub-users__master-user__user {
  font-weight: bold;
  background-color: #f1f1f1;
  padding: 0.9375rem;
}
.account-sub-users__users {
  margin: 0.9375rem 0;
}
.account-sub-users__users__user {
  display: flex;
  border: 1px solid #d0d0d0;
  padding: 0.625rem;
  align-items: center;
}
.account-sub-users__users__user:nth-child(odd) {
  background-color: #f1f1f1;
}
.account-sub-users__users__user__name {
  font-size: 1rem;
  font-weight: bold;
  max-width: calc(100% - 120px);
  overflow: hidden;
  flex: 1;
}
.account-sub-users__users__user__read-only {
  width: 5.625rem;
}
.account-sub-users__users__user__remove {
  margin-right: 0.9375rem;
}
.account-sub-users__users__user__remove__button {
  cursor: pointer;
  font-size: 20px;
  padding: 0.3125rem;
  color: #ee0000;
  font-weight: bold;
}

.account-reports-download-list h4 {
  color: #323232;
  margin: 0 0 0.9375rem;
}
.account-reports-download-list .account-reports-download-list-item {
  display: list-item;
  margin-left: 1.875rem;
  margin-bottom: 0.625rem;
}
.account-reports-download-list .account-reports-download-list-item:last-child {
  margin-bottom: 0.9375rem;
}

.account-api-key {
  padding: 0.625rem;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  font-weight: bold;
  border: 0.0625rem solid #d0d0d0;
  overflow-wrap: break-word;
}
.account-api-key--hidden {
  background-color: #d0d0d0;
  color: #323232;
}
.account-api-key-actions {
  display: flex;
}
.account-api-key-actions__action {
  margin-right: 0.625rem;
}

.account-history-content .lite-list__row,
.account-history-content .lite-list__header {
  align-items: flex-start;
}
.account-history-content .lite-list__row__col,
.account-history-content .lite-list__header__col {
  margin-right: 10px;
}
.account-history-content .lite-list__row__col:last-child,
.account-history-content .lite-list__header__col:last-child {
  margin-right: 0;
}
.account-history-content .lite-list__row__col[data-for=event],
.account-history-content .lite-list__header__col[data-for=event] {
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .account-history-content .lite-list__row__col[data-for=event],
  .account-history-content .lite-list__header__col[data-for=event] {
    flex: 1;
  }
}
.account-history-content .lite-list__row:nth-child(even) {
  background-color: #f1f1f1;
}

.history-toggle-button {
  line-height: 20px;
  text-align: left;
}

.history-item-updated {
  margin-top: 20px;
  border-top: 1px dashed #888;
  display: none;
}
.history-item-updated.is-active {
  display: block;
}
.history-item-updated__item {
  padding: 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #888;
}
.history-item-updated__item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.history-item-updated__item__heading {
  font-weight: bold;
  margin-bottom: 10px;
  color: #021f79;
}
.history-item-updated__item__before-value, .history-item-updated__item__after-value {
  font-size: 14px;
  font-weight: bold;
}
.history-item-updated__item__updated-to {
  font-size: 14px;
  color: #323232;
  margin-top: 8px;
  margin-bottom: 8px;
}
.history-item-updated__item li {
  padding-left: 10px;
  margin-bottom: 10px;
}
.history-item-updated__item li:last-child {
  margin-bottom: 0;
}
.history-item-updated__item li li {
  padding-left: 10px;
}

.account-display-preferences__include,
.account-csv-settings__include {
  display: flex;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 16px;
  justify-items: center;
  align-items: center;
}
.account-display-preferences__include input,
.account-csv-settings__include input {
  margin-bottom: 0;
}
.account-display-preferences__include:nth-child(even),
.account-csv-settings__include:nth-child(even) {
  background-color: #f1f1f1;
}
.account-display-preferences__include__label,
.account-csv-settings__include__label {
  cursor: pointer;
}
.account-display-preferences__include__checkbox,
.account-csv-settings__include__checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.account-display-preferences__include__checkbox input[type=checkbox],
.account-csv-settings__include__checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
}

.sensor {
  display: flex;
  flex-wrap: wrap;
  max-width: 75rem;
}
.sensor h3 {
  color: #323232;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 0.0625rem solid #8d8d8d;
  margin: 0.3125rem 0 0.9375rem;
}
.sensor .sensor-settings {
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .sensor .sensor-settings {
    width: calc(60% - 50px);
    margin-right: 3.125rem;
    flex: 1;
  }
}
.sensor .sensor-settings__header {
  display: flex;
  justify-content: space-between;
  justify-items: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 64em) {
  .sensor .sensor-settings__header {
    margin-bottom: 10px;
  }
}
.sensor .sensor-settings__header h2 {
  font-size: 18px;
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .sensor .sensor-settings__header h2 {
    font-size: 24px;
  }
}
.sensor .sensor-settings__select-heading {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
.sensor .sensor-settings__sensor-select {
  margin-bottom: 1.25rem;
}
.sensor .sensor-settings__content {
  background-color: #fff;
  min-height: 300px;
  padding: 1.25rem;
}
.sensor .sensor-details {
  width: 100%;
  margin-top: 18px;
}
@media print, screen and (min-width: 64em) {
  .sensor .sensor-details {
    margin-top: 0;
    width: 40%;
  }
}
.sensor .sensor-details .fa-battery-full,
.sensor .sensor-details .fa-battery-three-quarters,
.sensor .sensor-details .fa-battery-quarter,
.sensor .sensor-details .fa-battery-slash {
  font-size: 2rem;
  vertical-align: middle;
}
.sensor .sensor-details .fa-battery-slash {
  color: #ee0000;
}
.sensor .sensor-notifications {
  width: 100%;
  margin-top: 1.875rem;
}

.sensor-details__rssi-range {
  font-size: 0.875rem;
  color: #323232;
}

.sensor-settings-last-network-icon {
  vertical-align: middle;
  margin-left: 10px;
}

.sensor-setting-alert-conditions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.625rem;
}

.sensor-setting-alert-condition {
  width: calc(50% - 0.625rem);
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 43.75em) {
  .sensor-setting-alert-condition {
    width: calc(25% - 0.3125rem);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 43.75em) and (min-width: 64em) {
  .sensor-setting-alert-condition {
    width: calc(50% - 0.625rem);
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 43.75em) and (min-width: 85.375em) {
  .sensor-setting-alert-condition {
    width: calc(25% - 0.3125rem);
    margin-bottom: 0;
  }
}

.sensor-connection-sensitivity__notice {
  font-size: 0.875rem;
  border: 0.0625rem solid #d0d0d0;
  padding: 0.3125rem;
  margin-bottom: 0.9375rem;
}

.sensor-details-network__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #323232;
  font-size: 1rem;
  font-weight: normal;
  border-bottom: 0.0625rem solid #8d8d8d;
  margin: 1.875rem 0 1.25rem;
  padding: 0 0 7px;
}
.sensor-details-network__heading {
  line-height: 16px;
}
.sensor-details-network .sensor-details-network__last-rssi {
  font-size: 13px;
}
.sensor-details-network .sensor-details-network__last-used {
  font-size: 13px;
}
.sensor-details-network .sensor-settings-update-wifi-btn {
  font-size: 15px;
  cursor: pointer;
  padding: 5px 30px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form {
  max-width: 50rem;
  background-color: #fff;
  padding: 1.25rem;
}
.contact-form__legacy-upgrade {
  background-color: #ffeecb;
  border: 1px solid #eed202;
  padding: 0.625rem;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.contact-form__legacy-upgrade p {
  margin: 0 0 0.9375rem;
}
.contact-form__send-test, .contact-form__send-invitation {
  display: flex;
  align-items: center;
  margin: 0.625rem 0;
}
.contact-form__send-test__button, .contact-form__send-invitation__button {
  padding-right: 0.625rem;
}
.contact-form__send-test__message, .contact-form__send-invitation__message {
  flex: 1;
}

.contacts__lite-list {
  max-width: 75rem;
}
@media screen and (min-width: 50em) {
  .contacts__lite-list .lite-list__row__col[data-for=name] {
    width: 240px;
  }
}
.contacts__lite-list [data-for=contact-actions] {
  display: flex;
  justify-content: space-evenly;
}
.contacts__lite-list [data-for=contact-actions] .edit-contact-button, .contacts__lite-list [data-for=contact-actions] .delete-contact-button {
  width: 50%;
}
.contacts__lite-list .button {
  margin-bottom: 0;
}

.notifications-filters {
  display: flex;
}
.notifications-filters-heading {
  font-size: 12px;
  margin-bottom: 5px;
}
.notifications-filters .notifications-filter {
  padding: 0.3125rem;
  border-radius: 0.3125rem;
  position: relative;
}
.notifications-filters .notifications-filter.has-checked .notifications-filter-button {
  background-color: #f08a24;
  border: 1px solid #f08a24;
  color: white;
}
.notifications-filters .notifications-filter.is-active {
  background-color: #fff;
}
.notifications-filters .notifications-filter.is-active::before {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -7px;
}
.notifications-filters .notifications-filter.is-active .notifications-filter-popout {
  display: block;
}
.notifications-filters .notifications-filter-button {
  cursor: pointer;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid #8d8d8d;
  border-radius: 0.3125rem;
}
.notifications-filters .notifications-filter-button i {
  width: 15px;
}
.notifications-filters .notifications-filter-popout {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  background-color: #fff;
  width: 15.625rem;
  padding: 0.625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 4px 5px;
}
.notifications-filters .notifications-filter-popout-list {
  max-height: 200px;
  overflow: auto;
}
.notifications-filters .notifications-filter-popout-buttons {
  padding-top: 10px;
}
.notifications-filters .notifications-filter-popout label {
  display: block;
  font-size: 0.875rem;
  cursor: pointer;
  margin-bottom: 0.4375rem;
}
.notifications-filters .notifications-filter-popout label:last-child {
  margin-bottom: 0;
}
.notifications-filters .notifications-filter-popout input[type=checkbox] {
  margin-bottom: 0;
  vertical-align: middle;
}

.notifications-page .template-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.notifications-page .template-header h1 {
  margin-bottom: 0;
}

.notifications-settings-button {
  background-color: transparent;
  color: #008CBA;
  width: 20px;
  font-size: 20px;
  display: inline-block;
  margin-left: 5px;
}
@media print, screen and (min-width: 40em) {
  .notifications-settings-button {
    margin-left: 0;
  }
}

.contact-settings-container {
  margin-top: 1.25rem;
}

.contact-settings {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .contact-settings {
    margin-top: 0;
  }
}
.contact-settings__header {
  margin-bottom: 20px;
}
.contact-settings__form {
  background-color: #fff;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.contact-settings__text-number-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.contact-settings__text-number-container input {
  margin-bottom: 0;
}
.contact-settings__text-number-prefix {
  display: block;
  width: 1.875rem;
  text-align: center;
}
.contact-settings .button {
  margin-bottom: 0;
}
.contact-settings__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.contact-settings__actions .contact-settings__message {
  padding-left: 10px;
  flex: 1;
}
.contact-settings__consent-action {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 0.9375rem;
}
.contact-settings__consent-action .switch {
  margin-bottom: 0;
}
.contact-settings__consent-action label {
  text-align: left;
  padding-left: 0.625rem;
}

.service-status {
  padding-top: 2.5rem;
}
.service-status__header {
  margin-bottom: 1.875rem;
}
.service-status__header__logo {
  margin-bottom: 1.875rem;
}
.service-status__header__service-status {
  margin-bottom: 1.875rem;
}
.service-status__header__last-updated {
  color: #d0d0d0;
  font-size: 0.875rem;
  margin-bottom: 0.3125rem;
}
.service-status__header__last-updated-timer {
  width: 100%;
  min-height: 3px;
  background-color: #323232;
}
.service-status__header__last-updated-timer__animated {
  transition: width 1s linear;
  width: 0;
  min-height: 3px;
  background-color: #3a5fcd;
}
.service-status__services {
  background-color: #d0d0d0;
  border-radius: 0.625rem;
  margin-bottom: 6.25rem;
}
.service-status__service {
  border-bottom: 1px solid #323232;
  padding: 1.25rem;
}
.service-status__service:last-child {
  border-bottom: 0;
}
.service-status__service__name {
  font-size: 1.125rem;
  color: #323232;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
.service-status__service__status--okay {
  color: #259d0a;
}
.service-status__service__status--outage {
  color: #f08a24;
}
.service-status__service__status-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.25rem;
}

.service-status-message {
  border-radius: 5px;
  padding: 0.9375rem 1.5625rem;
  font-size: 1.25rem;
}
.service-status-message--okay {
  color: white;
  background-color: #259d0a;
}
.service-status-message--outage {
  color: black;
  background-color: #f08a24;
}

.new-sub-user-container,
.reset-password-container {
  margin-top: 1.25rem;
}

.new-sub-user,
.reset-password {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .new-sub-user,
  .reset-password {
    margin-top: 0;
  }
}
.new-sub-user__header,
.reset-password__header {
  margin-bottom: 20px;
}
.new-sub-user__form,
.reset-password__form {
  background-color: #fff;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.new-sub-user__text-number-container,
.reset-password__text-number-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.new-sub-user__text-number-container input,
.reset-password__text-number-container input {
  margin-bottom: 0;
}
.new-sub-user__text-number-prefix,
.reset-password__text-number-prefix {
  display: block;
  width: 1.875rem;
  text-align: center;
}
.new-sub-user .button,
.reset-password .button {
  margin-bottom: 0;
}
.new-sub-user__actions,
.reset-password__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.new-sub-user__actions .new-sub-user__message,
.reset-password__actions .new-sub-user__message {
  padding-left: 10px;
  flex: 1;
}
.new-sub-user__consent-action,
.reset-password__consent-action {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 0.9375rem;
}
.new-sub-user__consent-action .switch,
.reset-password__consent-action .switch {
  margin-bottom: 0;
}
.new-sub-user__consent-action label,
.reset-password__consent-action label {
  text-align: left;
  padding-left: 0.625rem;
}

.oauth-container {
  margin-top: 1.25rem;
}

.oauth {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .oauth {
    margin-top: 0;
  }
}
.oauth__header {
  margin-bottom: 20px;
}
.oauth__form {
  background-color: #fff;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.oauth__text-number-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.oauth__text-number-container input {
  margin-bottom: 0;
}
.oauth__text-number-prefix {
  display: block;
  width: 1.875rem;
  text-align: center;
}
.oauth .button {
  margin-bottom: 0;
}
.oauth .button[name=authorize][data-for=okay] {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 40em) {
  .oauth .button[name=authorize][data-for=okay] {
    margin-bottom: 0;
  }
}
.oauth__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.oauth__actions .oauth__message {
  padding-left: 10px;
  flex: 1;
}
.oauth__consent-action {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 0.9375rem;
}
.oauth__consent-action .switch {
  margin-bottom: 0;
}
.oauth__consent-action label {
  text-align: left;
  padding-left: 0.625rem;
}

.onboarding-assistance {
  position: absolute;
  left: 0;
  bottom: -40px;
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.onboarding-container {
  margin-top: 1.25rem;
}

.content-container.onboarding {
  position: relative;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto 30px;
  background-color: #fff;
  padding: 0 20px 20px;
}
@media print, screen and (min-width: 40em) {
  .content-container.onboarding {
    margin-top: 0;
  }
}
.content-container.onboarding__header {
  margin-bottom: 20px;
}
.content-container.onboarding .onboarding-scan-qr-code {
  margin-bottom: 30px;
}
.content-container.onboarding button[data-for=connect_manually] {
  font-size: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.content-container.onboarding button[data-for=connect_manually_connected] {
  margin-top: 40px;
  margin-bottom: 50px;
}
.content-container.onboarding button.scan-qr-code-btn,
.content-container.onboarding button[data-for=connect_manually_connected] {
  display: flex;
  font-weight: bold;
  font-size: 18px;
  padding: 12px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 320px;
}
.content-container.onboarding button.scan-qr-code-btn img,
.content-container.onboarding button[data-for=connect_manually_connected] img {
  width: 25px;
  vertical-align: center;
}
.content-container.onboarding .scan-qr-code-btn__icon {
  padding-right: 10px;
}
.content-container.onboarding .onboarding-wifi-password {
  padding: 20px 0;
}
.content-container.onboarding .onboarding-wifi-select-use-custom-ssid {
  display: flex;
  align-items: center;
}
.content-container.onboarding .onboarding-wifi-select-use-custom-ssid .switch {
  width: 100px;
}
.content-container.onboarding .onboarding-wifi-select-use-custom-ssid label {
  font-size: 1rem;
  text-align: left;
  margin-left: 10px;
  flex: 1;
}
.content-container.onboarding .onboarding-wifi-select.is-disabled .onboarding-wifi-select__select {
  background-color: #8d8d8d;
  color: #d0d0d0;
}
.content-container.onboarding .onboarding-wifi-select-use-custom-ssid {
  margin-bottom: 20px;
}
.content-container.onboarding .onboarding-wifi-select-use-custom-ssid .switch-paddle {
  margin-left: 0;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password.is-active {
  color: #008CBA;
}
.content-container.onboarding .onboarding-wifi-custom-ssid {
  display: none;
}
.content-container.onboarding .onboarding-wifi-custom-ssid.is-active {
  display: block;
}
.content-container.onboarding .onboarding-wifi-password-input {
  display: flex;
  align-items: center;
}
.content-container.onboarding .onboarding-wifi-password-input__input {
  flex: 1;
}
.content-container.onboarding .onboarding-wifi-password-input__input input {
  margin-bottom: 0;
}
.content-container.onboarding .onboarding-wifi-password-input__password-toggle {
  width: 35px;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password {
  padding: 5px;
  color: #8d8d8d;
  cursor: pointer;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password img[data-for=eye_open] {
  display: none;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password img[data-for=eye_closed] {
  display: block;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password.is-active {
  color: #008CBA;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password.is-active img[data-for=eye_open] {
  display: block;
}
.content-container.onboarding .onboarding-wifi-password-show-hide-password.is-active img[data-for=eye_closed] {
  display: none;
}
.content-container.onboarding .onboarding-wifi-select-loading {
  margin-top: -20px;
  margin-bottom: 20px;
  visibility: hidden;
}
.content-container.onboarding .onboarding-wifi-select-loading.is-active {
  visibility: visible;
}
.content-container.onboarding .onboarding-wifi-select-loading img {
  animation: spin 1s infinite linear;
}
.content-container.onboarding .onboarding-wifi-select {
  margin-bottom: 20px;
}
.content-container.onboarding .onboarding-wifi-select__select {
  display: flex;
  color: #000;
  width: 100%;
  padding: 15px;
  background-color: #f1f1f1;
  margin-bottom: 10px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  align-items: center;
}
.content-container.onboarding .onboarding-wifi-select__select__text {
  text-align: left;
  flex: 1;
}
.content-container.onboarding .onboarding-wifi-select__select__has-password {
  width: 30px;
  margin-left: 10px;
}
.content-container.onboarding .onboarding-wifi-select__select.is-active {
  background-color: #3a5fcd;
  color: #fff;
}
.content-container.onboarding .onboarding-wifi-select__select:last-child {
  border-bottom: 0;
}
.content-container.onboarding label[for=wifi_password],
.content-container.onboarding label[for=custom_ssid] {
  text-align: left;
  font-size: 14px;
}
.content-container.onboarding .onboarding-wifi-password-note {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}
.content-container.onboarding button[data-for=temp_stick_connect_to_wifi] {
  font-size: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: bold;
}

.onboarding-wifi-select-forget-btn {
  display: none;
  margin-top: 25px;
  color: #ee0000;
  font-weight: bold;
  padding: 5px;
  border: 0;
  font-size: 14px;
  cursor: pointer;
}
.onboarding-wifi-select-forget-btn img {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}
.onboarding-wifi-select-forget-btn.is-active {
  display: inline-block;
}

button.sensor-wifi-settings-done-button {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.sensor-wifi-settings__wifi-list {
  text-align: center;
}
.sensor-wifi-settings__wifi-list__item {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}
.sensor-wifi-settings__wifi-list__item-label {
  font-size: 14px;
  font-weight: bold;
  color: #323232;
  margin-bottom: 10px;
}
.sensor-wifi-settings__done {
  margin-top: 50px;
}
.sensor-wifi-settings__edit-button {
  font-weight: bold;
}
.sensor-wifi-settings__edit-button[data-action=edit] {
  padding: 20px;
  font-size: 16px;
  border: 1px solid #3a5fcd;
  background-color: #3a5fcd;
  color: #fff;
  width: 100%;
  display: block;
  cursor: pointer;
  border-radius: 15px;
}
.sensor-wifi-settings__edit-button[data-action=edit][data-for=wlanB] {
  border: 1px solid #d0d0d0;
  background-color: #d0d0d0;
  color: #000;
}
.sensor-wifi-settings__edit-button[data-action=add] {
  padding: 20px;
  font-size: 16px;
  color: #008CBA;
  width: 100%;
  display: block;
  cursor: pointer;
}

.onboarding-save-sensor-message {
  display: none;
  color: #323232;
}
.onboarding-save-sensor-message.is-active {
  display: block;
  margin-top: 20px;
}
.onboarding-save-sensor-message.is-error {
  color: #ee0000;
}

.onboarding-about-sensor {
  display: none;
  border-top: 1px solid #888;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}
.onboarding-about-sensor.is-active {
  display: flex;
  margin-top: 50px;
}
.onboarding-about-sensor__id {
  margin-bottom: 10px;
  margin-right: 30px;
}

.onboarding-browser-app-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.onboarding-browser-app-links__link {
  padding: 0 10px;
}

.onboarding-step {
  text-align: center;
  display: none;
  opacity: 0;
}
.onboarding-step.is-active {
  display: block;
  opacity: 1;
}

.onboarding-heading {
  position: relative;
  display: flex;
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0;
  margin-bottom: 20px;
  align-items: center;
}
.onboarding-heading__title {
  flex: 1;
  color: #323232;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}
.onboarding-heading__close {
  position: absolute;
  width: 30px;
  top: 5px;
  right: -5px;
}

button[data-for=onboarding-back] {
  position: relative;
  color: #d0d0d0;
  background-color: transparent;
  font-size: 24px;
  padding: 5px;
  margin-bottom: 0;
  left: -5px;
  display: none;
}
button[data-for=onboarding-back].is-active {
  display: inline-block;
}
button[data-for=onboarding-back]:hover, button[data-for=onboarding-back]:active, button[data-for=onboarding-back]:focus {
  background-color: transparent;
  color: #d0d0d0;
}

button[data-for=onboarding-close] {
  color: #d0d0d0;
  background-color: transparent;
  font-size: 26px;
  padding: 5px;
  margin-bottom: 0;
}
button[data-for=onboarding-close]:hover, button[data-for=onboarding-close]:active, button[data-for=onboarding-close]:focus {
  background-color: transparent;
  color: #d0d0d0;
}

.onboarding-select-model-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.onboarding-select-model-list .onboarding-select-model-list-item {
  text-align: center;
  width: calc(50% - 20px);
}
@media print, screen and (min-width: 40em) {
  .onboarding-select-model-list .onboarding-select-model-list-item {
    width: calc(50% - 50px);
  }
}
.onboarding-select-model-list .onboarding-select-model-list-item__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (min-width: 28.125em) {
  .onboarding-select-model-list .onboarding-select-model-list-item__title {
    font-size: 22px;
  }
}
.onboarding-select-model-list .onboarding-select-model-list-item__image {
  margin-bottom: 15px;
}
.onboarding-select-model-list .onboarding-select-model-list-item__image img {
  width: auto;
  object-fit: contain;
  height: 270px;
}
@media screen and (min-width: 28.125em) {
  .onboarding-select-model-list .onboarding-select-model-list-item__image img {
    height: 310px;
  }
}
.onboarding-select-model-list .onboarding-select-model-list-item__select button {
  font-size: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  max-width: 300px;
}
.onboarding-select-model-list .onboarding-select-model-list-item__select__note {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
}

.onboarding-guide {
  max-width: 500px;
  margin: 0 auto;
}

.onboarding-guide-heading {
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  margin-bottom: 20px;
}

.onboarding-guide-instruction-smaller {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
.onboarding-guide-instruction-smaller li {
  margin-bottom: 15px;
  font-size: 14px;
  margin-left: 0;
  padding-left: 0;
}
.onboarding-guide-instruction-smaller li:last-child {
  margin-bottom: 0;
}

.onboarding-guide-instruction-large {
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 20px;
}
.onboarding-guide-instruction-large li {
  margin-bottom: 20px;
  font-size: 16px;
  margin-left: 0;
  padding-left: 0;
}
.onboarding-guide-instruction-large li:last-child {
  margin-bottom: 0;
}

.onboarding-guide-instruction {
  font-size: 16px;
  text-align: left;
  margin-bottom: 20px;
}
.onboarding-guide-instruction li {
  margin-bottom: 15px;
  font-size: 15px;
  margin-left: 0;
  padding-left: 0;
}
.onboarding-guide-instruction li:last-child {
  margin-bottom: 0;
}

ol.onboarding-guide-instruction {
  padding-left: 20px;
}

.onboarding-guide-instruction-image {
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 40em) {
  .onboarding-guide-instruction-image {
    max-width: 320px;
  }
}

.onboarding-guide-next {
  margin: 30px 0;
}

button.onboarding-guide-next-btn {
  width: 100%;
  font-size: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 400px;
}

button.onboarding-guide-help-btn {
  font-size: 18px;
  font-weight: bold;
  color: #3a5fcd;
}

.onboarding-loading {
  margin: 0 auto;
  text-align: center;
}
.onboarding-loading__animation {
  margin-bottom: 20px;
}
.onboarding-loading__animation img {
  width: 100%;
  max-width: 200px;
}
.onboarding-loading__text {
  color: #3a5fcd;
  font-size: 18px;
  font-weight: 600;
}

.onboarding-step[data-for=connected_name_sensor] label {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.onboarding-step[data-for=connected_name_sensor] input[type=text] {
  font-size: 18px;
  padding: 15px 10px;
  margin-bottom: 30px;
}
.onboarding-step[data-for=connected_name_sensor] button[data-for=save_sensor_name] {
  font-size: 18px;
  font-weight: bold;
  padding: 12px 20px;
}
.onboarding-step[data-for=connected_name_sensor] .onboarding-name-sensor-btn-container__loading,
.onboarding-step[data-for=connected_name_sensor] .onboarding-name-sensor-btn-container__btn {
  display: none;
}
.onboarding-step[data-for=connected_name_sensor] .onboarding-name-sensor-btn-container__loading.is-active,
.onboarding-step[data-for=connected_name_sensor] .onboarding-name-sensor-btn-container__btn.is-active {
  display: block;
}
.onboarding-step[data-for=connected_name_sensor] .onboarding-loading__animation img {
  width: 100px;
}

img[data-for=v1-pull-batteries] {
  object-fit: contain;
  width: auto;
  height: 200px;
}
@media screen and (min-width: 28.125em) {
  img[data-for=v1-pull-batteries] {
    height: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  img[data-for=v1-pull-batteries] {
    height: 300px;
  }
}

img[data-for=v2-reset-button] {
  object-fit: contain;
  width: auto;
  height: 300px;
}
@media screen and (min-width: 28.125em) {
  img[data-for=v2-reset-button] {
    height: 320px;
  }
}
@media print, screen and (min-width: 40em) {
  img[data-for=v2-reset-button] {
    height: 350px;
  }
}

img[data-for=v2-server-mode] {
  object-fit: contain;
  width: auto;
  height: 200px;
}
@media screen and (min-width: 25em) {
  img[data-for=v2-server-mode] {
    height: 300px;
  }
}
@media screen and (min-width: 28.125em) {
  img[data-for=v2-server-mode] {
    height: 360px;
  }
}

.onboarding-tc-type-image-select {
  margin: 0 auto;
  cursor: pointer;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.onboarding-tc-type-select {
  display: inline-block;
  width: calc(33% - 5px);
  padding: 5px;
  border: 2px solid transparent;
}
.onboarding-tc-type-select .button.button--medium {
  font-size: 11px !important;
  padding: 3px;
}
@media screen and (min-width: 37.5em) {
  .onboarding-tc-type-select {
    width: calc(33% - 10px);
    padding: 10px 20px;
  }
  .onboarding-tc-type-select .button.button--medium {
    font-size: 14px !important;
    padding: 6px;
  }
}
.onboarding-tc-type-select.is-selected {
  border: 2px solid #23921b;
}
.onboarding-tc-type-select h3 {
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  margin: 10px 0;
}
@media screen and (min-width: 37.5em) {
  .onboarding-tc-type-select h3 {
    font-size: 18px;
  }
}
.onboarding-tc-type-select h4 {
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 25em) {
  .onboarding-tc-type-select h4 {
    font-size: 14px;
  }
}
.onboarding-tc-type-select img {
  display: block;
  width: 100%;
  height: auto;
}
.onboarding-tc-type-select .onboarding-tc-type-select__button {
  width: 100%;
}
.onboarding-tc-type-select .button[data-action=select_probe_type] {
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 25em) {
  .onboarding-tc-type-select .button[data-action=select_probe_type] {
    font-size: 16px;
  }
}

.onboarding-tc-type-different-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.onboarding-tc-type-different-select {
  max-width: 400px;
}

.onboarding-tc-type-select__selected {
  font-size: 16px;
  color: #23921b;
  font-weight: 600;
}
.onboarding-tc-type-select__selected img {
  display: inline-block;
  width: 26px;
}

[type=range] {
  -webkit-appearance: none;
  background: transparent;
  margin: 12px 0;
  width: 100%;
}
[type=range]::-moz-focus-outer {
  border: 0;
}
[type=range]:focus {
  outline: 0;
}
[type=range]:focus::-webkit-slider-runnable-track {
  background: #eceff1;
}
[type=range]:focus::-ms-fill-lower {
  background: #eceff1;
}
[type=range]:focus::-ms-fill-upper {
  background: #eceff1;
}
[type=range]::-webkit-slider-runnable-track {
  cursor: default;
  height: 8px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  background: #eceff1;
  border: 2px solid #cfd8dc;
  border-radius: 0;
}
[type=range]::-webkit-slider-thumb {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  background: #3a5fcd;
  border: 2px solid #eceff1;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: default;
  height: 24px;
  width: 24px;
  -webkit-appearance: none;
  margin-top: -10px;
}
[type=range]::-moz-range-track {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  cursor: default;
  height: 8px;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
  background: #eceff1;
  border: 2px solid #cfd8dc;
  border-radius: 0;
  height: 4px;
}
[type=range]::-moz-range-thumb {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  background: #3a5fcd;
  border: 2px solid #eceff1;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: default;
  height: 24px;
  width: 24px;
}
[type=range]::-ms-track {
  cursor: default;
  height: 8px;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 100%;
  background: transparent;
  border-color: transparent;
  border-width: 12px 0;
  color: transparent;
}
[type=range]::-ms-fill-lower {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  background: #eceff1;
  border: 2px solid #cfd8dc;
  border-radius: 0;
}
[type=range]::-ms-fill-upper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  background: #eceff1;
  border: 2px solid #cfd8dc;
  border-radius: 0;
}
[type=range]::-ms-thumb {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), 0 0 0 rgba(12.75, 12.75, 12.75, 0.2);
  background: #3a5fcd;
  border: 2px solid #eceff1;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: default;
  height: 24px;
  width: 24px;
  margin-top: 2px;
}
[type=range]:disabled::-webkit-slider-thumb, [type=range]:disabled::-moz-range-thumb, [type=range]:disabled::-ms-thumb, [type=range]:disabled::-webkit-slider-runnable-track, [type=range]:disabled::-ms-fill-lower, [type=range]:disabled::-ms-fill-upper {
  cursor: not-allowed;
}

.setting {
  margin-bottom: 1.25rem;
}
.setting--conditional {
  display: none;
}
.setting--conditional.is-active {
  display: block;
}
.setting__description {
  color: #8d8d8d;
  font-size: 0.875rem;
  margin-top: 0.3125rem;
  margin-bottom: 1.25rem;
}
.setting__label {
  font-size: 0.875rem;
  margin-bottom: 0.3125rem;
}
.setting__input {
  margin: 0.625rem 0;
}
.setting input,
.setting select {
  margin: 0;
}
.setting__switch {
  display: flex;
  align-items: center;
}
.setting__switch__value {
  padding-right: 0.625rem;
}
.setting__switch__label {
  font-size: 0.925rem;
  line-height: 1.15rem;
  font-weight: bold;
  flex: 1;
}
.setting__range__labels {
  display: flex;
  justify-content: space-between;
}
.setting__range__labels__label {
  color: #323232;
  font-weight: bold;
}
.setting__range__number__input {
  display: inline-block;
  width: 5rem;
  margin-bottom: 0;
}
.setting__range__number__label {
  display: inline-block;
  vertical-align: middle;
}
.setting__range__input {
  flex: 1;
}
.setting__range__label {
  font-size: 1.125rem;
  padding-left: 0.625rem;
}
.setting__value--range {
  display: flex;
  align-items: center;
}
.setting__value--range .setting__value__range {
  flex: 1;
}
.setting__value--range .setting__value__label {
  font-size: 1.125rem;
  padding-left: 0.625rem;
  width: 50px;
  text-align: right;
}
.setting-disclaimer {
  font-size: 0.875rem;
}
.setting-divider {
  margin: 1.875rem 0;
  border-bottom: 0.0625rem solid #d0d0d0;
}
.setting__dropdown {
  display: flex;
  align-items: center;
}
.setting__dropdown__select {
  width: auto;
  margin-right: 0.625rem !important;
}
.setting__dropdown__prelabel {
  color: #323232;
  margin-right: 10px;
}
.setting__dropdown__label {
  color: #323232;
  flex: 1;
}
.setting__dropdown.disabled .setting__dropdown__select {
  background-color: white;
  color: #d0d0d0;
}
.setting__dropdown.disabled .setting__dropdown__label {
  color: #d0d0d0;
}

.overlay {
  position: relative;
}
.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay--blurred {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.overlay--blurred::after {
  background-color: rgba(208, 208, 208, 0.6);
}
@keyframes loading-overlay {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 51% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.loading-overlay {
  position: relative;
}
.loading-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(228, 228, 228, 0), rgba(200, 200, 200, 0.6), rgba(228, 228, 228, 0.1));
  background-size: 600% 600%;
  animation: loading-overlay 3s ease infinite;
}

.data-grid__data {
  flex: 1;
}
.data-grid__grid-container {
  overflow: auto;
  max-width: 100%;
}
.data-grid__grid {
  width: 100%;
}
.data-grid .data-grid-row.is-header {
  background-color: #3a5fcd !important;
}
.data-grid .data-grid-row.is-header td {
  color: #d0d0d0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.data-grid .data-grid-row.is-header td:hover {
  color: #f1f1f1;
}
.data-grid .data-grid-row.is-header td.is-sorted {
  color: #f1f1f1;
  font-weight: 600;
}
.data-grid .data-grid-row.is-header td.is-sorted .sort-arrow {
  margin-left: 3px;
}
.data-grid .data-grid-row:nth-child(odd) {
  background-color: #d0d0d0;
}
.data-grid .data-grid-row__toggle {
  width: 20px;
  text-align: center;
}
.data-grid .data-grid-row__toggle input[type=checkbox] {
  margin: 0;
  line-height: 1.2em;
}
.data-grid .data-grid-row__cell {
  font-size: 0.875rem;
  padding: 0.4375rem;
  line-height: 1.2em;
}
.data-grid .data-grid-row__name {
  text-align: left;
  color: #0C7CBB;
  cursor: pointer;
}
.data-grid__actions {
  display: flex;
  background-color: #eaeaea;
  border-top: 1px solid #ccc;
  padding: 5px;
}
.data-grid__actions input[type=checkbox], .data-grid__actions label {
  margin: 0;
  line-height: 1.2em;
  cursor: pointer;
}
.data-grid__action {
  color: #848484;
  margin-right: 20px;
}
.data-grid__action-label {
  display: inline-block;
  width: auto;
}
.data-grid__action-button {
  text-decoration: underline;
  color: #0C7CBB;
}
.data-grid__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.data-grid__pagination-button {
  display: inline-block;
  color: #909090;
  width: 40px;
  padding: 5px 10px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align: center;
}
.data-grid__pagination-button:first-child {
  border-left: 1px solid #ccc;
}
.data-grid__pagination-button.is-active {
  background-color: #3a5fcd;
  color: #fff;
}
.data-grid__next-page, .data-grid__previous-page {
  width: auto;
}
.data-grid .tooltip {
  width: 200px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.4) 3px 3px 8px;
  padding: 10px;
}
.data-grid__create-group {
  margin: 0.625rem 0;
}
.data-grid__create-group-form {
  display: none;
  margin-top: 1.25rem;
}
.data-grid__create-group-form.is-active {
  display: block;
}

.data-grid-template__title {
  width: 180px;
}
.data-grid-template__header {
  display: flex;
  align-items: center;
}
.data-grid-template__header__actions {
  width: 300px;
}
.data-grid-template .create-item-button {
  margin-bottom: 0;
}

.data-grid-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}
.data-grid-top-bar input,
.data-grid-top-bar select,
.data-grid-top-bar button {
  margin-bottom: 0;
}
.data-grid-top-bar__group-settings {
  display: flex;
  margin-bottom: 0.625rem;
  align-items: center;
}
@media print, screen and (min-width: 64em) {
  .data-grid-top-bar__group-settings {
    align-items: normal;
  }
}
.data-grid-top-bar__group-settings__button {
  width: 9.375rem;
}
.data-grid-top-bar__group-settings__group-name {
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: bold;
  flex: 1;
}
.data-grid-top-bar__options {
  display: grid;
  grid-template-columns: auto 11.25rem;
  grid-column-gap: 0.625rem;
}
.data-grid-top-bar__results-per-page select {
  width: 100%;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.data-grid-actions .selected-count {
  margin: 0 10px;
  color: #323232;
}

.data-grid-action {
  padding-left: 5px;
}
.data-grid-action input[type=checkbox] {
  margin-bottom: 0;
}

.data-grid-breadcrumbs .breadcrumb.current {
  position: relative;
  font-size: 1.125rem;
}
.data-grid-breadcrumbs .breadcrumb {
  padding: 5px;
  cursor: pointer;
  margin-left: 3px;
  font-size: 0.9375rem;
}

.sensor-details__row {
  display: flex;
  background-color: #f1f1f1;
  margin-bottom: 0;
  padding: 0.625rem;
  align-items: center;
}
.sensor-details__row:nth-child(even) {
  background-color: #fff;
}
.sensor-details__label {
  font-size: 0.875rem;
  width: 11.25rem;
  font-weight: bold;
  padding-right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .sensor-details__label {
    font-size: 1rem;
  }
}
.sensor-details__value {
  flex: 1;
  vertical-align: middle;
}
.sensor-details__separator {
  margin: 15px 0;
  border-bottom: 1px solid #eaeaea;
  min-height: 1px;
}
.sensor-details__description {
  font-size: 0.875rem;
}

body.has-modal {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.modal {
  display: none;
  padding: 0.625rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 10px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
@media print, screen and (min-width: 40em) {
  .modal {
    padding: 1.25rem;
  }
}
.modal-content {
  position: relative;
  max-width: 800px;
  max-height: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.modal-header {
  display: flex;
  margin: 0.625rem 1.25rem 0;
  padding: 0.625rem 0;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #0a0a0a;
}
.modal-header__title {
  flex: 1;
  padding-right: 0.625rem;
  color: #3a5fcd;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: normal;
  margin-bottom: 0;
}
.modal__close {
  cursor: pointer;
  font-size: 1.125rem;
  color: #0a0a0a;
  padding: 0.3125rem 0.625rem;
  margin-right: -0.625rem;
}
.modal.is-open {
  display: block;
}
.modal__content {
  background-color: #fff;
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  padding: 0.9375rem 1.25rem 1.875rem;
}
.modal .modal-nav-previous,
.modal .modal-nav-next {
  display: none;
}
@media screen and (min-width: 64em) {
  .modal .modal-nav-previous.is-active,
  .modal .modal-nav-next.is-active {
    display: block;
  }
  .modal .modal-nav-previous,
  .modal .modal-nav-next {
    position: absolute;
    top: calc(50% - 0.9375rem);
    padding: 0.9375rem;
  }
  .modal .modal-nav-previous::before,
  .modal .modal-nav-next::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: normal;
    color: #fff;
    font-size: 1.75rem;
  }
}
.modal .modal-nav-previous {
  left: -3.125rem;
}
.modal .modal-nav-previous::before {
  content: "\f053";
}
.modal .modal-nav-next {
  right: -3.125rem;
}
.modal .modal-nav-next::before {
  content: "\f054";
}

.modal input, .modal select, .modal p {
  margin-bottom: 0;
}
.modal .form-modal__row {
  margin-bottom: 25px;
}
@keyframes lite-list-loading {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 51% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.lite-list {
  font-size: 14px;
  margin-bottom: 30px;
  width: 100%;
}
.lite-list--loading {
  position: relative;
}
.lite-list--loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(228, 228, 228, 0), rgba(200, 200, 200, 0.6), rgba(228, 228, 228, 0.1));
  background-size: 600% 600%;
  animation: lite-list-loading 3s ease infinite;
}
.lite-list__no-contacts {
  padding: 10px;
}
.lite-list__header, .lite-list__row {
  display: flex;
  justify-content: space-between;
  text-align: left;
  max-width: 100%;
}
@media screen and (min-width: 50em) {
  .lite-list__header, .lite-list__row {
    min-height: 3.75rem;
    align-items: center;
  }
}
.lite-list__header__col, .lite-list__row__col {
  word-wrap: break-word;
  padding: 5px;
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=name], .lite-list__header__col[data-for=user], .lite-list__header__col[data-for=sensor], .lite-list__header__col[data-for=alert], .lite-list__header__col[data-for=time], .lite-list__header__col[data-for=created], .lite-list__row__col[data-for=name], .lite-list__row__col[data-for=user], .lite-list__row__col[data-for=sensor], .lite-list__row__col[data-for=alert], .lite-list__row__col[data-for=time], .lite-list__row__col[data-for=created] {
    width: 180px;
  }
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=email], .lite-list__header__col[data-for=condition], .lite-list__header__col[data-for=sensors], .lite-list__header__col[data-for=groups], .lite-list__row__col[data-for=email], .lite-list__row__col[data-for=condition], .lite-list__row__col[data-for=sensors], .lite-list__row__col[data-for=groups] {
    width: 200px;
  }
}
.lite-list__header__col[data-for=condition], .lite-list__row__col[data-for=condition] {
  text-transform: capitalize;
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=event], .lite-list__row__col[data-for=event] {
    width: 280px;
  }
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=phone], .lite-list__header__col[data-for=active], .lite-list__header__col[data-for=carrier], .lite-list__header__col[data-for=status], .lite-list__row__col[data-for=phone], .lite-list__row__col[data-for=active], .lite-list__row__col[data-for=carrier], .lite-list__row__col[data-for=status] {
    width: 140px;
  }
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=delete], .lite-list__row__col[data-for=delete] {
    width: 30px;
  }
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=action], .lite-list__header__col[data-for=actions], .lite-list__row__col[data-for=action], .lite-list__row__col[data-for=actions] {
    flex: 1;
    text-align: right;
  }
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=alert-action], .lite-list__row__col[data-for=alert-action] {
    width: 18.75rem;
  }
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=contact-actions], .lite-list__row__col[data-for=contact-actions] {
    width: 15rem;
  }
}
.lite-list__header__col[data-for=checkbox] input[type=checkbox], .lite-list__row__col[data-for=checkbox] input[type=checkbox] {
  margin-bottom: 0;
}
@media screen and (min-width: 50em) {
  .lite-list__header__col[data-for=checkbox], .lite-list__row__col[data-for=checkbox] {
    width: 1.25rem;
  }
}
.lite-list__header {
  display: none;
  background-color: #eaeaea;
  border-bottom: 1px solid #ccc;
  padding: 0.625rem;
}
@media screen and (min-width: 50em) {
  .lite-list__header {
    display: flex;
  }
}
.lite-list__header__col {
  color: #909090;
}
.lite-list__row {
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 0.9375rem 1.25rem 0.625rem;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
}
.lite-list__row:nth-child(even) {
  background-color: #f1f1f1;
}
@media screen and (min-width: 50em) {
  .lite-list__row {
    flex-direction: row;
    padding: 0.625rem;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .lite-list__row {
    border-radius: 0;
  }
}
.lite-list__row__col[data-for=name], .lite-list__row__col[data-for=sensor], .lite-list__row__col[data-for=alert], .lite-list__row__col[data-for=user] {
  font-weight: bold;
}
.lite-list__row__col.buttons {
  margin-top: 8px;
}
.lite-list__row-label {
  font-size: 0.8rem;
  font-weight: normal;
  display: inline-block;
  width: 80px;
}
@media screen and (min-width: 50em) {
  .lite-list__row-label {
    display: none;
  }
}
.lite-list a.lite-list__button,
.lite-list button.lite-list__button {
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
}
.lite-list a.lite-list__button[data-action=edit], .lite-list a.lite-list__button.edit-button, .lite-list a.lite-list__button.pause-button, .lite-list a.lite-list__button.enable-button, .lite-list a.lite-list__button.edit-contact-button,
.lite-list button.lite-list__button[data-action=edit],
.lite-list button.lite-list__button.edit-button,
.lite-list button.lite-list__button.pause-button,
.lite-list button.lite-list__button.enable-button,
.lite-list button.lite-list__button.edit-contact-button {
  color: #000;
}
.lite-list a.lite-list__button[data-action=delete], .lite-list a.lite-list__button.delete-button, .lite-list a.lite-list__button.delete-contact-button,
.lite-list button.lite-list__button[data-action=delete],
.lite-list button.lite-list__button.delete-button,
.lite-list button.lite-list__button.delete-contact-button {
  color: #000;
}

.better-select {
  position: relative;
}
.better-select-selected {
  color: #0a0a0a;
  background-color: #fff;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZlcnNpb249JzEuMScgd2lkdGg9JzMyJyBoZWlnaHQ9JzI0JyB2aWV3Qm94PScwIDAgMzIgMjQnPjxwb2x5Z29uIHBvaW50cz0nMCwwIDMyLDAgMTYsMjQnIHN0eWxlPSdmaWxsOiAjMGEwYTBhJz48L3BvbHlnb24+PC9zdmc+");
  background-position: right 0.3125rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  border: 1px solid #cacaca;
}
.better-select-selected .better-select-item__offline-label {
  display: none;
}
.better-select-items {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 99;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #fff;
  border: 1px solid #cacaca;
  box-shadow: #909090 0 0.3125rem 0.5rem;
}
.better-select-items.is-open {
  display: block;
}
.better-select-items .better-select-item {
  cursor: pointer;
}
.better-select-items .better-select-item:not(.is-selected):hover, .better-select-items .better-select-item:not(.is-selected):active, .better-select-items .better-select-item:not(.is-selected):focus {
  background-color: #cacaca;
}
.better-select-item {
  display: flex;
  font-size: 0.875rem;
  line-height: 1.125rem;
  padding: 0.5625rem 0.5625rem;
  margin-bottom: 0.3125rem;
  width: 100%;
  text-align: left;
  color: black;
}
@media print, screen and (min-width: 40em) {
  .better-select-item {
    font-size: 0.9375rem;
  }
}
.better-select-item:last-child {
  margin-bottom: 0;
}
.better-select-item.is-selected {
  background-color: #3a5fcd;
  color: #fff;
}
.better-select-item__label {
  flex: 1;
}
.better-select-item__offline-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  background-color: #ee0000;
  color: #fff;
  border-radius: 0.3125rem;
  padding: 0 0.1875rem;
}

.inline-editing {
  display: flex;
  align-items: center;
}
.inline-editing__input {
  margin-right: 15px;
}
.inline-editing__controls {
  line-height: 0;
}
.inline-editing__controls button {
  font-size: 1.625rem;
  line-height: 1.625rem;
  margin-right: 0.3125rem;
}
.inline-editing__controls button:last-child {
  margin-right: 0;
}

.inline-editing-error {
  color: red;
  font-size: 0.75rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-item {
  padding: 0.3125rem 0.9375rem;
}
.pagination-item--previous, .pagination-item--next {
  cursor: pointer;
}
.pagination-item--page {
  cursor: pointer;
}
.pagination-item--current {
  background-color: #3a5fcd;
  color: #fff;
}
.pagination-item.disabled {
  color: #8d8d8d;
}

.data-grid__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-top: 1px solid #c5c5c5;
  background-color: #fff;
  font-size: 0.875rem;
}
.data-grid__footer .data-grid__info {
  color: #323232;
  margin-right: 20px;
}
.data-grid__footer .data-grid__info:last-child {
  margin-right: 0;
}
.data-grid__footer .data-grid__sensors-per-page {
  display: flex;
  align-items: center;
  margin-right: 20px;
  width: auto;
}
.data-grid__footer .data-grid__sensors-per-page__label {
  width: 80px;
}
.data-grid__footer .data-grid__sensors-per-page select {
  width: 50px;
  margin-left: 0.25rem;
  margin-bottom: 0;
  padding: 0.25rem 0.5rem;
  font-size: inherit;
  line-height: 1.4;
  border: 1px solid #c5c5c5;
  border-radius: 0.1875rem;
  background-color: #fff;
  cursor: pointer;
}
.data-grid__footer .data-grid__pagination {
  display: flex;
  align-items: center;
}
.data-grid__footer .data-grid__pagination-button {
  color: #323232;
  margin: 0 0.25rem;
  padding: 0 0.375rem;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border: 0;
  width: auto;
}
.data-grid__footer .data-grid__pagination-button.data-grid__first-page {
  padding-left: 3px;
  border-left: 3px solid #323232;
}
.data-grid__footer .data-grid__pagination-button.data-grid__first-page:disabled {
  border-left-color: #8d8d8d;
}
.data-grid__footer .data-grid__pagination-button.data-grid__first-page:hover:not(:disabled) {
  border-left-color: #3a5fcd;
}
.data-grid__footer .data-grid__pagination-button.data-grid__last-page {
  padding-right: 3px;
  border-right: 3px solid #323232;
}
.data-grid__footer .data-grid__pagination-button.data-grid__last-page:disabled {
  border-right-color: #8d8d8d;
}
.data-grid__footer .data-grid__pagination-button.data-grid__last-page:hover:not(:disabled) {
  border-right-color: #3a5fcd;
}
.data-grid__footer .data-grid__pagination-button:hover:not(:disabled) {
  color: #3a5fcd;
}
.data-grid__footer .data-grid__pagination-button:disabled {
  cursor: default;
  color: #8d8d8d;
}

.send-test-alert__contacts {
  margin: 1.875rem 0;
}
.send-test-alert__contact {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid #d0d0d0;
}
.send-test-alert__contact:last-child {
  border-bottom: none;
}
.send-test-alert__contact__send-alert-toggle {
  width: 6.25rem;
}
.send-test-alert__contact__send-alert-toggle .setting {
  margin-bottom: 0;
}
.send-test-alert__contact__name {
  flex: 1;
}
.send-test-alert__contact__methods {
  display: flex;
  width: 15.625rem;
  justify-content: flex-end;
  align-items: center;
}
.send-test-alert__contact__method {
  color: #d0d0d0;
  margin-right: 1.25rem;
  font-size: 0.875rem;
}
.send-test-alert__contact__method:last-child {
  margin-right: 0;
}
.send-test-alert__contact__method i {
  font-size: 1.25rem;
  padding-left: 0.3125rem;
}
.send-test-alert__contact__method.is-active {
  color: #259d0a;
}

.site-messages-container .site-messages {
  margin-bottom: 0.9375rem;
}
.site-messages-container .site-message {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  color: #fff;
  background-color: #3a5fcd;
  opacity: 1;
  transition: all 500ms;
  border-radius: 0.3125rem;
}
.site-messages-container .site-message li {
  margin: 0.3125rem 0;
}
.site-messages-container .site-message--read-only {
  background-color: #8d8d8d;
}
.site-messages-container .site-message--success {
  background-color: #468f32;
}
.site-messages-container .site-message--error {
  background-color: #a53131;
}
.site-messages-container .site-message--offline {
  font-size: 0.875rem;
  background-color: #f08a24;
  color: white;
}
.site-messages-container .site-message--warning {
  background-color: #ffeecb;
  border: 1px solid #eed202;
  color: #000;
}
.site-messages-container .site-message--warning a,
.site-messages-container .site-message--warning .site-message__close__button {
  color: #000;
}
.site-messages-container .site-message--warning a {
  text-decoration: underline;
}
.site-messages-container .site-message__content {
  padding: 0.625rem;
}
.site-messages-container .site-message:last-child {
  margin-bottom: 0;
}
.site-messages-container .site-message__close {
  margin-right: 10px;
  margin-top: 10px;
}
.site-messages-container .site-message__close__button {
  cursor: pointer;
  color: #fff;
}
.site-messages-container .site-message.animate-close {
  overflow: hidden;
  margin-bottom: 0;
}

.inline-list-item {
  display: inline-block;
  font-size: 0.8125rem;
  margin-right: 0.3125rem;
  margin-bottom: 0.125rem;
  vertical-align: middle;
}
.inline-list-item:last-child {
  margin-right: 0;
}
.inline-list-item--grey {
  background-color: #d0d0d0;
  color: #000;
  padding: 0.125rem 0.3125rem;
}

.filters-list {
  display: flex;
  margin-bottom: 0.625rem;
}
.filters-list-heading {
  font-size: 12px;
  margin-bottom: 5px;
}
.filters-list .filters-list-item {
  padding: 0.3125rem;
  border-radius: 0.3125rem;
  position: relative;
}
.filters-list .filters-list-item.has-checked .filters-list-item-button {
  background-color: #f08a24;
  border: 1px solid #f08a24;
  color: white;
}
.filters-list .filters-list-item.is-active {
  background-color: #fff;
}
.filters-list .filters-list-item.is-active::before {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -7px;
}
.filters-list .filters-list-item.is-active .filters-list-item-popout {
  display: block;
  z-index: 999;
}
.filters-list .filters-list-item-button {
  cursor: pointer;
  font-size: 14px;
  padding: 5px 10px;
  border: 1px solid #8d8d8d;
  border-radius: 0.3125rem;
}
.filters-list .filters-list-item-button i {
  width: 15px;
}
.filters-list .filters-list-item-popout {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 0;
  background-color: #fff;
  width: 18.75rem;
  padding: 0.625rem;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 4px 5px;
}
.filters-list .filters-list-item-popout-list {
  max-height: 40vh;
  overflow: auto;
}
.filters-list .filters-list-item-popout-buttons {
  padding-top: 10px;
}
.filters-list .filters-list-item-popout label {
  display: block;
  font-size: 0.875rem;
  cursor: pointer;
  margin-bottom: 0.4375rem;
}
.filters-list .filters-list-item-popout label:last-child {
  margin-bottom: 0;
}
.filters-list .filters-list-item-popout input[type=checkbox] {
  margin-bottom: 0;
  vertical-align: middle;
}

.form-row-save {
  display: flex;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}
@media print, screen and (min-width: 40em) {
  .form-row-save {
    align-items: center;
  }
}
.form-row-save__button {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .form-row-save__button {
    padding-right: 10px;
    width: auto;
  }
}
.form-row-save__button__submit {
  width: 100%;
  margin-bottom: 0;
}
.form-row-save__message {
  margin-top: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .form-row-save__message {
    flex: 1;
    margin-top: 0;
  }
}

.inline-label {
  font-size: 0.75rem;
  font-weight: normal;
  display: inline-block;
  background-color: #d0d0d0;
  padding: 0.1875rem 0.4375rem;
  margin: 0 0.3125rem;
  border-radius: 0.625rem;
  text-align: center;
}
.inline-label a {
  font-size: inherit;
  text-decoration: underline;
}
.inline-label--full-width {
  width: 100%;
}
.inline-label--success {
  background-color: #468f32;
  color: white;
}
.inline-label--warning {
  background-color: #ffeecb;
  font-weight: bold;
}
.inline-label--no-margin {
  margin-left: 0;
  margin-right: 0;
}

.icon-text-list {
  width: 100%;
  font-size: 0.9375rem;
}
.icon-text-list-item {
  display: flex;
  margin-bottom: 1.25rem;
}
.icon-text-list-item:last-child {
  margin-bottom: 0;
}
.icon-text-list-item__icon {
  margin-right: 0.625rem;
}
.icon-text-list-item__text {
  flex: 1;
}
.icon-text-list-item__text__label {
  display: block;
  margin-bottom: 0.3125rem;
}
.icon-text-list-item__text__value {
  font-weight: bold;
}

.c-margin-xsm {
  margin-bottom: 0.4375rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-xsm {
    margin-bottom: 0.4375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-xsm {
    margin-bottom: 0.4375rem;
  }
}

.c-margin-top-xsm {
  margin-top: 0.4375rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-top-xsm {
    margin-top: 0.4375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-top-xsm {
    margin-top: 0.4375rem;
  }
}

.c-margin-sm {
  margin-bottom: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-sm {
    margin-bottom: 0.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-sm {
    margin-bottom: 0.75rem;
  }
}

.c-margin-top-sm {
  margin-top: 0.75rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-top-sm {
    margin-top: 0.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-top-sm {
    margin-top: 0.75rem;
  }
}

.c-margin-md {
  margin-bottom: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-md {
    margin-bottom: 1.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-md {
    margin-bottom: 1.25rem;
  }
}

.c-margin-top-md {
  margin-top: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-top-md {
    margin-top: 1.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-top-md {
    margin-top: 1.25rem;
  }
}

.c-margin-lg {
  margin-bottom: 1.875rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-lg {
    margin-bottom: 1.875rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-lg {
    margin-bottom: 1.875rem;
  }
}

.c-margin-top-lg {
  margin-top: 1.875rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-top-lg {
    margin-top: 1.875rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-top-lg {
    margin-top: 1.875rem;
  }
}

.c-margin-xlg {
  margin-bottom: 3.125rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-xlg {
    margin-bottom: 3.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-xlg {
    margin-bottom: 3.125rem;
  }
}

.c-margin-top-xlg {
  margin-top: 3.125rem;
}
@media print, screen and (min-width: 40em) {
  .c-margin-top-xlg {
    margin-top: 3.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .c-margin-top-xlg {
    margin-top: 3.125rem;
  }
}

.groups-sidebar {
  min-width: 300px;
  width: 300px;
  background-color: #fff;
  border-right: 1px solid #dee2e6;
  padding: 1rem;
  margin-right: 10px;
  overflow: visible;
}
.groups-sidebar .folder-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.groups-sidebar .folder-item {
  padding: 0.3125rem 0;
  position: relative;
}
.groups-sidebar .folder-item .folder-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.groups-sidebar .folder-item .folder-header i {
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: transform 0.2s ease;
  color: #6c757d;
}
.groups-sidebar .folder-item .folder-header:hover .folder-actions {
  display: block;
}
.groups-sidebar .folder-item .folder-header .folder-actions {
  display: none;
  right: 0;
  position: absolute;
  text-align: right;
  width: 100px;
  background-color: #fff;
}
.groups-sidebar .folder-item .folder-header .folder-actions i {
  color: #323232 !important;
  font-size: 1.25rem;
  margin-right: 5px;
  cursor: pointer;
}
.groups-sidebar .folder-item .folder-header .folder-actions i:hover {
  color: #007bff !important;
}
.groups-sidebar .folder-item .folder-header .folder-actions i[data-action=delete_group] {
  color: #bd0000 !important;
}
.groups-sidebar .folder-item .folder-header .folder-actions i[data-action=delete_group]:hover {
  color: #ff0707 !important;
}
.groups-sidebar .folder-item .folder-header .folder-actions i.is-disabled {
  cursor: default;
  color: #d0d0d0 !important;
}
.groups-sidebar .folder-item .folder-header .folder-actions i.is-disabled:hover {
  color: #d0d0d0 !important;
}
.groups-sidebar .folder-item .folder-header .folder-label {
  flex: 1;
  font-size: 0.875rem;
  color: #343a40;
}
.groups-sidebar .folder-item .folder-list {
  display: none;
  margin-left: 0.625rem;
  padding-left: 0.5rem;
  overflow: visible;
}
.groups-sidebar .folder-item.open > .folder-list {
  display: block;
}
.groups-sidebar .folder-item.is-active > .folder-header i.far {
  color: #007bff;
}
.groups-sidebar .folder-item.is-active > .folder-header .folder-label {
  font-weight: 600;
}
.groups-sidebar .folder-item .account-entries, .groups-sidebar .folder-item .item-entries {
  margin-top: -2px;
  padding-top: 0;
  display: none;
  max-height: 150px;
  overflow: auto;
}
.groups-sidebar .folder-item .account-entries.show, .groups-sidebar .folder-item .item-entries.show {
  display: block;
}
.groups-sidebar .folder-item .account-entry, .groups-sidebar .folder-item .item-entry {
  font-size: 0.875rem;
  color: #404649;
  margin-left: 8px;
  padding-left: 10px;
}
.groups-sidebar .folder-item .account-entry.more-toggle, .groups-sidebar .folder-item .item-entry.more-toggle {
  cursor: pointer;
  font-weight: bold;
}
.groups-sidebar .folder-item .account-entry .account-name, .groups-sidebar .folder-item .item-entry .account-name {
  cursor: pointer;
}
.groups-sidebar .folder-item .account-entry .sensor-name, .groups-sidebar .folder-item .item-entry .sensor-name {
  cursor: pointer;
}
.groups-sidebar .folder-item .account-entry.no-accounts, .groups-sidebar .folder-item .account-entry.no-items, .groups-sidebar .folder-item .item-entry.no-accounts, .groups-sidebar .folder-item .item-entry.no-items {
  color: #bbb !important;
}
.groups-sidebar .folder-item .account-entry img, .groups-sidebar .folder-item .item-entry img {
  height: 20px;
}
.groups-sidebar .folder-item .account-count, .groups-sidebar .folder-item .item-count {
  font-size: 0.75rem;
  color: #8d8d8d;
  margin-left: 7px;
}
.groups-sidebar .folder-item .account-count::before, .groups-sidebar .folder-item .item-count::before {
  content: "(";
}
.groups-sidebar .folder-item .account-count::after, .groups-sidebar .folder-item .item-count::after {
  content: ")";
}
.groups-sidebar .folder-item.new-group {
  font-size: 0.875rem;
  margin-left: 12px;
  padding-left: 10px;
  border-left: 1px dashed #d2dee5;
}
.groups-sidebar .folder-item.new-group .folder-header {
  font-style: italic;
  color: #a9b8be;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.groups-sidebar .folder-item.new-group .folder-header:hover {
  color: #505960;
}
.groups-sidebar .folder-item.new-group[data-for="0"] {
  background-color: #f1f1f1;
  border-left: none;
  padding-left: 5px;
  margin-left: 0;
}
.groups-sidebar .folder-item.new-group[data-for="0"] .folder-header {
  color: #7f8d93;
}
.groups-sidebar .folder-item.new-group input[type=text].new-group-input {
  font-size: 0.9375rem;
  line-height: 1.0625rem;
  height: 1.75rem;
  padding: 0.4375rem;
  margin-bottom: 0;
  flex: 1;
}
.groups-sidebar .folder-item .confirm-icon,
.groups-sidebar .folder-item .cancel-icon {
  margin-left: 5px;
  cursor: pointer;
  padding: 7px 5px;
  opacity: 0.8;
  text-align: center;
  font-size: 0.875rem;
  line-height: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.groups-sidebar .folder-item .confirm-icon:hover,
.groups-sidebar .folder-item .cancel-icon:hover {
  opacity: 1;
}
.groups-sidebar .folder-item .confirm-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px'><circle cx='8px' cy='8px' r='8px' fill='%23259d0a'/></svg>");
  color: white;
}
.groups-sidebar .folder-item .cancel-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px'><circle cx='8px' cy='8px' r='8px' fill='%23d0d0d0'/></svg>");
  color: black;
}
.groups-sidebar .folder-header {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.groups-sidebar .new-group-input {
  flex: 1;
}
.groups-sidebar .confirm-icon,
.groups-sidebar .cancel-icon {
  margin-left: 0.5rem;
  cursor: pointer;
}

/* make the spacer invisible */
.folder-item.spacer {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* styling while creating inline */
.folder-item.new-group.creating {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0.25rem;
  margin: 5px 0;
}

/* ensure the input inherits that white background too */
.folder-item.new-group.creating input.new-group-input {
  background-color: #fff;
}

.group-details {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.breadcrumb.current {
  position: relative;
}

.edit-group-button {
  padding: 5px;
  cursor: pointer;
  color: #8d8d8d;
  margin-left: 3px;
  font-size: 1rem;
}
.edit-group-button:hover {
  color: #3a5fcd;
}

.group-inline-edit {
  position: absolute;
  top: 0;
  left: 0;
  width: 22.5rem;
}
.group-inline-edit input[type=text] {
  font-size: 0.9375rem;
  line-height: 1.0625rem;
  height: 1.75rem;
  padding: 0.4375rem;
  margin-bottom: 0;
  flex: 1;
  width: 13.75rem;
  display: inline-block;
}
.group-inline-edit .confirm-icon,
.group-inline-edit .cancel-icon {
  margin-left: 0.3125rem;
  cursor: pointer;
  opacity: 0.8;
  width: 20px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.3125rem;
  border-radius: 20px;
}
.group-inline-edit .confirm-icon:hover,
.group-inline-edit .cancel-icon:hover {
  opacity: 1;
}
.group-inline-edit .confirm-icon {
  background-color: #259d0a;
  color: white;
}
.group-inline-edit .cancel-icon {
  background-color: #d0d0d0;
  color: black;
}

.parent-breadcrumbs {
  border-radius: 3px;
  border: 1px solid #d0d0d0;
  padding: 5px;
  cursor: pointer;
}

.parent-tree-selector {
  padding: 10px;
  max-height: 200px;
  overflow: auto;
  border: 1px solid #d0d0d0;
  margin-top: -1px;
}
.parent-tree-selector .groups-tree {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.parent-tree-selector .groups-tree li {
  cursor: pointer;
  margin-bottom: 5px;
}
.parent-tree-selector .groups-tree li .group-label {
  display: block;
  padding: 2px;
}
.parent-tree-selector .groups-tree li .group-label:hover {
  background-color: #f1f1f1;
  color: #3a5fcd;
  font-weight: bolder;
}
.parent-tree-selector .groups-tree li li {
  margin-top: 5px;
  padding-top: 5px;
  padding-left: 10px;
  margin-left: 15px;
  border-left: #d2dee5 dashed 1px;
}
.parent-tree-selector .groups-tree li li:last-child {
  margin-bottom: 10px;
}

.groups-container select {
  margin-bottom: 10px;
}

.selected-groups {
  max-height: 150px;
  overflow: auto;
  margin-bottom: 10px;
}
.selected-groups .group-pill {
  display: inline-flex;
  font-size: 14px;
  background-color: #f1f1f1;
  border: 1px solid #d0d0d0;
  padding: 8px;
  border-radius: 5px;
  align-items: center;
  margin-right: 10px;
  font-weight: 600;
}
.selected-groups .group-pill .remove-group {
  cursor: pointer;
  color: #ee0000;
  font-size: 24px;
  margin-left: 0.3125rem;
}

.data-grid .group-pill {
  display: inline-flex;
  font-size: 12px;
  background-color: #f1f1f1;
  border: 1px solid #d0d0d0;
  padding: 5px;
  border-radius: 5px;
  align-items: center;
  margin-right: 5px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 2px;
}
.data-grid .group-pill.is-active {
  color: white;
  background-color: #007bff;
  border-color: #005bbe;
}

.groups-update-notice {
  margin-bottom: 10px;
  list-style: none;
  padding: 0;
}

.groups-update-notice-group:not(:first-child) {
  margin-top: 12px;
  padding-top: 12px;
}

.groups-update-notice-content {
  max-height: 150px;
  overflow: auto;
}

.groups-update-notice-heading {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #eaeaea;
  font-size: 14px;
  color: #323232;
  margin-bottom: 10px;
}

.groups-update-notice-item-name {
  font-weight: 600;
  margin: 0 0 0.5em;
  display: block;
}

.groups-update-notice-item {
  position: relative;
  margin-bottom: 0.25em;
  font-size: 14px;
}
.groups-update-notice-item--removed {
  color: #ee0000;
}
.groups-update-notice-item--added {
  color: #259d0a;
}

.folder-header {
  border: 1px dashed rgba(0, 123, 255, 0);
}

.folder-header.droppable-target {
  transition: background-color 150ms ease, border-color 150ms ease;
  background-color: #d4e0ea;
  border: 1px dashed rgba(0, 123, 255, 0);
}

/* the one you’re actually over */
.folder-header.droppable-over {
  background-color: #b7ceec;
  border-color: #007bff;
}

.account-remove-zone, .item-remove-zone {
  display: none;
}
.account-remove-zone.is-active, .item-remove-zone.is-active {
  display: block;
}
.account-remove-zone, .item-remove-zone {
  border: 2px dashed #bbb;
  border-radius: 8px;
  background: repeating-linear-gradient(45deg, #f5f5f5, #f5f5f5 12px, transparent 12px, transparent 24px);
  padding: 10px;
  text-align: center;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
  margin: 10px 0;
}
.account-remove-zone .account-remove-zone-name, .item-remove-zone .account-remove-zone-name {
  color: #e74c3c;
}

.account-remove-zone:hover, .item-remove-zone:hover {
  background-color: rgba(200, 200, 200, 0.15);
}

.account-remove-zone.drag-over, .item-remove-zone.drag-over {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: #e74c3c;
  color: #e74c3c;
}

.folder-item {
  position: relative;
}

.group-line {
  display: block;
  position: absolute;
  left: 8px;
  top: 28px;
  width: 1px;
  background-color: rgba(0, 123, 255, 0.1);
  z-index: 0;
}

.folder-item .group-line[data-level="1"] {
  background-color: rgba(100, 100, 100, 0.4);
}
.folder-item .group-line[data-level="2"] {
  background-color: rgba(100, 100, 100, 0.3);
}
.folder-item .group-line[data-level="3"] {
  background-color: rgba(100, 100, 100, 0.2);
}
.folder-item .group-line[data-level="4"] {
  background-color: rgba(100, 100, 100, 0.1);
}

.folder-item.is-active > .account-entries .fa-user {
  color: rgba(0, 123, 255, 0.8) !important;
}
.folder-item.is-active > .group-line[data-level="1"] {
  background-color: rgba(0, 123, 255, 0.4);
}
.folder-item.is-active > .group-line[data-level="2"] {
  background-color: rgba(0, 123, 255, 0.3);
}
.folder-item.is-active > .group-line[data-level="3"] {
  background-color: rgba(0, 123, 255, 0.2);
}
.folder-item.is-active > .group-line[data-level="4"] {
  background-color: rgba(0, 123, 255, 0.1);
}

/* Smooth growth when we bump min-height via JS */
.groups-sidebar .folder-item.item-entries.show {
  transition: min-height 220ms ease-in;
}

.groups-sidebar {
  min-height: calc(100vh - 100px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  max-width: 100%;
}

body {
  font-family: "Poppins", "Roboto", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background-color: #e8e8e8;
}
body.login, body.floating-form, body.floating-page {
  background-color: #000;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
@media print, screen and (min-width: 64em) {
  body {
    padding-top: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

.content-container {
  width: 100%;
  margin: 0;
}

.app-container {
  display: flex;
  height: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

.app-contents {
  width: calc(100% - 13.125rem);
  max-width: calc(100% - 13.125rem);
  padding: 1.25rem 1.25rem 3.125rem;
  overflow-x: hidden;
}
@media print, screen and (min-width: 40em) {
  .app-contents .app-contents {
    width: calc(100% - 13.125rem);
    max-width: calc(100% - 13.125rem);
  }
}
.app-contents.is-minimized {
  width: calc(100% - 3.125rem);
  max-width: calc(100% - 3.125rem);
  padding-bottom: 100px;
}
.app-contents.is-minimized .contents-logo {
  display: inline-block;
  margin-left: -20px;
  margin-top: -20px;
  padding-top: 5px;
  padding-bottom: 12px;
  padding-right: 10px;
  border-bottom-right-radius: 10px;
  background-color: #111;
  margin-bottom: 15px;
}
.app-contents.is-minimized .contents-logo img {
  width: 150px;
}
.app-contents .contents-logo {
  display: none;
}

h1 {
  font-size: 1.625rem;
}
@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-size: 24px;
  margin: 0 0 0.5rem;
}

h4.section-title {
  font-size: 0.95rem;
  font-weight: normal;
  color: #777;
  margin: 5px 0 12px;
  border-bottom: 1px solid #999;
  padding-bottom: 5px;
}

.text-divider {
  border-top: #d0d0d0 2px solid;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.text-divider__text {
  display: inline-block;
  margin: 0 auto;
  transform: translateY(-20px);
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
}

.divider {
  margin: 0.9375rem 0 1.5625rem 0;
  border-top: 0.0625rem solid #ccc;
}
.divider--thick {
  border-top-color: #000;
  border-top-width: 1px;
}
.divider--margin-md {
  margin-top: 25px;
  margin-bottom: 30px;
}
.divider--margin-lg {
  margin-top: 35px;
  margin-bottom: 40px;
}

hr {
  border: solid #DDDDDD;
  border-width: 1px 0 0;
  clear: both;
  height: 0;
  margin: 1.25rem 0 1.1875rem;
}

a {
  color: #008CBA;
  line-height: inherit;
  text-decoration: none;
  font-size: 15px;
}

a.button {
  text-decoration: none;
}

.button {
  background-color: #3a5fcd;
  color: #fff;
  margin-bottom: 0;
  border-radius: 3px;
  font-weight: 600;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .button {
    width: auto;
  }
}
.button:hover, .button:active, .button:focus {
  background-color: #1d3e9f;
}
.button--naked {
  background-color: inherit;
  color: inherit;
}
.button--naked:hover, .button--naked:active, .button--naked:focus {
  background-color: inherit;
  color: inherit;
}
.button--link {
  background-color: inherit;
  color: #008CBA;
  padding: 0;
  line-height: inherit;
}
.button--link:hover, .button--link:active, .button--link:focus {
  background-color: inherit;
  color: #008CBA;
}
.button--tiny {
  font-size: 0.75rem;
  line-height: 0.875rem;
  padding: 0.125rem 0.4375rem;
}
.button--small {
  font-size: 0.875rem;
  line-height: 1rem;
  padding: 0.25rem 0.75rem;
}
.button--medium {
  font-size: 0.875rem;
  line-height: 1.125rem;
  padding: 0.5625rem 1.125rem;
}
.button--large {
  font-size: 24px;
  line-height: 28px;
  padding: 5px 7px;
}
.button--red {
  background-color: #ee0000;
  color: white;
}
.button--red:hover, .button--red:active, .button--red:focus {
  background-color: #bb0000;
}
.button--orange {
  background-color: #f08a24;
  color: white;
}
.button--orange:hover, .button--orange:active, .button--orange:focus {
  background-color: rgb(210.5769230769, 112.5, 14.4230769231);
}
.button--teal {
  background-color: #008CBA;
  color: white;
}
.button--teal:hover, .button--teal:active, .button--teal:focus {
  background-color: rgb(0, 101.6129032258, 135);
}
.button--delete {
  font-size: 12px;
  color: red;
  background-color: transparent;
  margin: 0;
}
.button--delete:hover, .button--delete:active, .button--delete:focus {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
.button--black {
  background-color: #202020;
  color: #dfdfdf;
}
.button--black:hover, .button--black:active, .button--black:focus {
  background-color: #000;
  color: #fff;
}
.button--light-gray {
  background-color: #d0d0d0;
  color: #333;
}
.button--light-gray:hover, .button--light-gray:active, .button--light-gray:focus {
  background-color: rgb(182.5, 182.5, 182.5);
  color: #292929;
}
.button.gray, .button--gray {
  background-color: #5f5f5f;
  color: #eaeaea;
}
.button.gray:hover, .button.gray:active, .button.gray:focus, .button--gray:hover, .button--gray:active, .button--gray:focus {
  background-color: #191919;
  color: #fff;
}
.button[disabled] {
  background-color: #c0c0c0;
  color: #4f4f4f;
}
.button--inline {
  display: inline-block;
  width: auto;
  margin-right: 0.625rem;
  margin-bottom: 0;
  vertical-align: baseline;
}
.button--inline:last-child {
  margin-right: 0;
}

.setting-save {
  display: flex;
  align-items: center;
  margin-top: 1.875rem;
  flex-wrap: wrap;
}
.setting-save--no-margin {
  margin-top: 0;
}
.setting-save__button {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .setting-save__button {
    width: auto;
  }
}
.setting-save__message {
  width: 100%;
  margin-top: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .setting-save__message {
    flex: 1;
    padding-left: 0.625rem;
    margin-top: 0;
  }
}

.settings-row {
  margin-bottom: 25px;
}
.settings-row.is-hidden {
  display: none;
}
.settings-row__hidden-settings {
  display: none;
}
.settings-row__hidden-settings.is-active {
  display: block;
}

input[type=number].alert-number-select {
  width: 80px;
  display: inline;
}

select,
input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
  font-size: 0.875rem;
}
@media print, screen and (min-width: 40em) {
  select,
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password] {
    font-size: 0.9375rem;
  }
}
select,
input[type=text],
input[type=tel],
input[type=email],
input[type=password] {
  line-height: 1.125rem;
}

select[multiple] {
  -webkit-appearance: listbox;
}

label {
  font-size: 0.8rem;
  color: #4d4d4d;
}
@media print, screen and (min-width: 40em) {
  label {
    font-size: 0.85rem;
  }
}

.form-modal input,
.form-modal select {
  margin-bottom: 0;
}
.form-modal__row {
  margin-bottom: 15px;
}
.form-modal__description {
  font-size: 12px;
  margin: 5px 0 10px;
}

.error-message {
  display: none;
  color: red;
  font-size: 14px;
  padding: 5px;
}
.error-message.is-visible, .error-message.is-active {
  display: block;
}

.modal .error-message {
  display: none;
  margin-left: 10px;
}
.modal .error-message.is-visible {
  display: inline-block !important;
}

.save-spinner {
  width: 50px;
}

body {
  position: relative;
}
body.has-modal {
  overflow: hidden;
}

@media print, screen and (min-width: 40em) {
  .template-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
  }
}
.template-header h1 {
  margin-bottom: 7px;
}
@media print, screen and (min-width: 40em) {
  .template-header h1 {
    margin-right: 1.125rem;
    margin-bottom: 0;
  }
}
.template-header .create-item-button {
  margin-bottom: 18px;
}
@media print, screen and (min-width: 40em) {
  .template-header .create-item-button {
    margin-bottom: 0;
  }
}

.select2-dropdown .select2-search__field {
  font-size: 0.875rem;
  line-height: 0.875rem;
  height: 1.875rem;
  padding: 0.3125rem;
  margin-bottom: 0.3125rem;
}
.select2-dropdown .select2-results__option {
  font-size: 0.875rem;
}
.select2-dropdown .select2-results__option[role=group] {
  margin: 0.625rem 0;
}

.success-message {
  padding: 10px 15px;
  font-size: 14px;
  color: #4F8A10;
  background-color: #DFF2BF;
}

.qs-datepicker .qs-square {
  font-size: 1rem;
}

.text--red {
  color: #ee0000;
}
.text--blue {
  color: #3a5fcd;
}
.text--light-grey {
  color: #d0d0d0;
}
.text--grey {
  color: #8d8d8d;
}
.text--black {
  color: black;
}
.text--semibold {
  font-weight: 600;
}
.text--bold {
  font-weight: bold;
}
.text--italic {
  font-style: italic;
}
.text--small {
  font-size: 0.925rem;
}
.text--smaller {
  font-size: 0.7rem;
}
.text--larger {
  font-size: 1.2em;
}
.text--orange {
  color: #f08a24;
}
.text--green {
  color: #468f32;
}

.padding--small {
  padding: 0.3125rem;
}
.padding--medium {
  padding: 0.625rem;
}
.padding--large {
  padding: 0.9375rem;
}

.text-center {
  text-align: center;
}

@media print, screen and (min-width: 40em) {
  .medium-text-center {
    text-align: center;
  }
}

.margin--small {
  margin-bottom: 0.3125rem;
}
.margin--medium {
  margin-bottom: 0.625rem;
}
.margin--large {
  margin-bottom: 2.1875rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.3em;
  font-weight: normal;
}
h1.page-title, h1.title, h2.page-title, h2.title, h3.page-title, h3.title, h4.page-title, h4.title, h5.page-title, h5.title, h6.page-title, h6.title {
  font-size: 1.5rem;
  font-weight: lighter;
  margin-bottom: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  h1.page-title, h1.title, h2.page-title, h2.title, h3.page-title, h3.title, h4.page-title, h4.title, h5.page-title, h5.title, h6.page-title, h6.title {
    font-size: 2rem;
  }
}
h1.section-title, h2.section-title, h3.section-title, h4.section-title, h5.section-title, h6.section-title {
  font-size: 1.25rem;
  color: #888;
  font-weight: normal;
  margin: 0.1875rem 0 0.9375rem;
  border-bottom: 1px solid rgb(123.25, 123.25, 123.25);
  padding-bottom: 0.4375rem;
}
h1.heading--regular, h2.heading--regular, h3.heading--regular, h4.heading--regular, h5.heading--regular, h6.heading--regular {
  font-weight: normal;
}
h1.heading--smaller, h2.heading--smaller, h3.heading--smaller, h4.heading--smaller, h5.heading--smaller, h6.heading--smaller {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
h1.heading--larger, h2.heading--larger, h3.heading--larger, h4.heading--larger, h5.heading--larger, h6.heading--larger {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 0.625rem;
}

h4 {
  font-size: 1rem;
  font-weight: normal;
  color: #323232;
  margin-bottom: 0.625rem;
}

h5 {
  font-size: 1rem;
}

.disclaimer {
  font-size: 0.8125rem;
  margin: 0.3125rem 0;
}

.disclaimer-link {
  font-size: 0.8125rem;
  color: #323232;
  text-decoration: underline;
  margin: 0.625rem 0;
}

.floating-page .floating-container {
  margin: 1.25rem 0;
}
.floating-page {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
}
@media print, screen and (min-width: 40em) {
  .floating-page {
    margin-top: 0;
  }
}
.floating-page__header {
  margin-bottom: 20px;
}
.floating-page__content {
  background-color: #fff;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.background--lightest-grey {
  background-color: #f1f1f1;
}
.background--black {
  background-color: #000;
}

.message--error {
  padding: 10px;
  background-color: #a53131;
  color: white;
}

.select-group .group-list {
  max-height: 210px;
  overflow-y: auto;
}
.select-group .group-list-item {
  display: block;
  font-size: 14px;
  padding: 3px;
  margin-bottom: 3px;
  cursor: pointer;
}
.select-group .group-list-item:last-child {
  margin-bottom: 0;
}
.select-group .group-list-item:nth-child(even) {
  background-color: #d0d0d0;
}

.data-grid-row__cell .group-name {
  margin-right: 5px;
  font-size: 12px;
  padding: 2px 4px;
  background-color: #c1c8ce;
  color: black;
  border-radius: 3px;
}
.data-grid-row__cell .group-name:last-child {
  margin-right: 0;
}

.manage-accounts-container {
  display: flex;
  flex-wrap: wrap;
}
.manage-accounts-container .manage-accounts-content {
  flex: 1;
}

.manage-sensors-container {
  display: flex;
}
.manage-sensors-container .manage-sensors-grid {
  flex: 1;
}

.account-search input[data-for=search] {
  font-size: 14px;
  padding: 5px;
  line-height: 16px;
  width: 240px;
  height: 28px;
  margin-bottom: 0;
}

.dashboard-enterprise-per-page {
  margin-left: 10px;
}

.api-keys-table {
  width: 100%;
  margin-bottom: 15px;
}
.api-keys-table td, .api-keys-table th {
  text-align: left;
  padding: 5px;
}
.api-keys-table th {
  border-bottom: 1px solid #8d8d8d;
}
.api-keys-table tr:nth-child(even) {
  background-color: #d0d0d0;
}

.modal-save {
  display: flex;
  align-items: center;
}
.modal-save .modal-save__button {
  margin-right: 20px;
}
.modal-save button {
  margin-bottom: 0;
}

.text--left {
  text-align: left;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}

.monospace-dt {
  display: inline-block;
}

.dt-char {
  display: inline-block;
  width: 1ch;
  text-align: center; /* or right/left, whichever lines up best */
}

.text--overflow {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* container spacing */
.role-description {
  margin-top: 0.5rem;
}

/* reset bullets */
.role-capabilities {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* each item: align icon + text */
.role-capabilities li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.25rem;
  line-height: 1.4;
  font-size: 0.95rem;
  color: #333;
}
.role-capabilities li i {
  color: #259d0a;
}

.accounts-container {
  font-size: 14px;
  margin-top: 10px;
}

.accounts-container .scrolling-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 4px;
}

.account-item {
  display: block;
  margin: 2px 0;
}

.add-sub-user,
.edit-sub-user {
  background-color: #fff;
  padding: 25px;
  max-width: 800px;
}

.battery-icon {
  width: 20px;
}

/*# sourceMappingURL=main.css.map*/