/* base */

.base {
  font: 400 14px/1.5 "Open Sans", sans-serif !important;
  color: #333E48;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: always;
  overflow-x: hidden;
  background: white;
  min-height: 100vh;
}

.text-reset,
.button,
.button--disabled,
.button--stretched,
.month-calendar__button,
.button--white,
.button--black,
.button--snow,
.button--red,
.button--red-dark,
.button--gray,
.button--gray-dark,
.button--gray-light,
.button--primary,
.button--secondary,
.button--placeholder,
.form-edit,
.form-edit--disabled,
.dropdown,
.white-dropdown,
.pager__page {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  font-size: 1em;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
}

.text-reset::-ms-expand,
.button::-ms-expand,
.button--disabled::-ms-expand,
.button--stretched::-ms-expand,
.month-calendar__button::-ms-expand,
.button--white::-ms-expand,
.button--black::-ms-expand,
.button--snow::-ms-expand,
.button--red::-ms-expand,
.button--red-dark::-ms-expand,
.button--gray::-ms-expand,
.button--gray-dark::-ms-expand,
.button--gray-light::-ms-expand,
.button--primary::-ms-expand,
.button--secondary::-ms-expand,
.button--placeholder::-ms-expand,
.form-edit::-ms-expand,
.form-edit--disabled::-ms-expand,
.dropdown::-ms-expand,
.white-dropdown::-ms-expand,
.pager__page::-ms-expand {
  display: none;
}

.wrap {
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

* + p {
  margin-top: 21px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

a {
  text-decoration: none;
}

a,
a:hover,
a:visited {
  color: inherit;
}

.relative,
.front {
  position: relative;
}

.front {
  z-index: 1;
}

.flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (max-width: 39.9375em) {
  .flex-nowrap-for-small {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.link {
  cursor: pointer;
  text-decoration: underline;
}

.link,
.link:visited,
.link:hover {
  color: #E31615;
}

.link:hover {
  text-decoration: none;
}

.hoverable {
  cursor: pointer;
}

.nowrap {
  white-space: nowrap;
}

.footer,
.header,
.section,
.section--adjacent,
.section--short,
.home-sign-in,
.search-form,
.top-bar {
  padding: 29px 25px;
}

@media screen and (min-width: 40em) {
  .footer,
  .header,
  .section,
  .section--adjacent,
  .section--short,
  .home-sign-in,
  .search-form,
  .top-bar {
    padding: 42px 63px;
  }
}

@media screen and (min-width: 75em) {
  .footer,
  .header,
  .section,
  .section--adjacent,
  .section--short,
  .home-sign-in,
  .search-form,
  .top-bar {
    padding: 75px;
  }
}

.muted,
.button--disabled,
.form-edit--disabled {
  opacity: 0.4;
  cursor: default !important;
}

.block {
  display: block;
}

.ensp {
  display: inline-block;
  width: 1em;
}

.w100 {
  min-width: 100%;
}

.blur {
  filter: blur(5px);
  opacity: 0.75;
}

/* shared/accordion/accordion */

@media screen and (max-width: 39.9375em) {
  .accordion {
    border-top: 1px solid #E3E5E6;
    border-bottom: 1px solid #E3E5E6;
    margin-left: -21px;
    margin-right: -21px;
  }
}

@media screen and (min-width: 40em) {
  .accordion {
    border: 1px solid #E3E5E6;
    border-radius: 0.25em;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  }
}

.accordion__item {
  padding: 21px;
  cursor: pointer;
  border-top: 1px solid #E3E5E6;
}

.accordion__item.on .icon-plus ,
.accordion__item .icon-minus {
  display: none;
}

.accordion__item.on .icon-minus {
  display: inline-block;
}

app-accordion-item:first-child .accordion__item {
  border-top: none;
}

.accordion__extra {
  border-top: 1px solid #E3E5E6;
  padding: 21px;
  background: #F8F8F8;
  display: none;
}

.accordion__item.on + .accordion__extra {
  display: block;
}

/* shared/background/background */

.background-white {
  background: white;
}

.background-black {
  background: black;
}

.background-snow {
  background: #F8F8F8;
}

.background-red {
  background: #E31615;
}

.background-red-dark {
  background: #A20B35;
}

.background-gray {
  background: #A5ACB0;
}

.background-gray-dark {
  background: #333E48;
}

.background-gray-light {
  background: #E3E5E6;
}

.background-primary {
  background: #A20B35;
}

.background-secondary {
  background: #E31615;
}

.background-grey-dark,
.wrap {
  background: linear-gradient(90deg, #43525E, #333E48);
}

.background-grey-light {
  background: linear-gradient(90deg, #E3E5E6, #EBF0F2);
}

.background-red-pattern,
.header,
.popup__info {
  background: url(/assets/shared/background/red.jpg) center;
  background-size: cover;
}

/* shared/bar-graph/bar-graph */

app-bar-graph {
  display: block;
  padding-bottom: 35%;
  position: relative;
}

.bar-graph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* shared/bar/bar */

app-bar {
  display: block;
}

.bar {
  background: #E3E5E6;
}

.bar,
.bar__filled {
  display: block;
  height: 1.3em;
  border-radius: 0.5em;
}

.bar__filled {
  background: #E31615;
}

/* shared/button/button */

.button,
.button--disabled,
.button--stretched,
.month-calendar__button,
.button--white,
.button--black,
.button--snow,
.button--red,
.button--red-dark,
.button--gray,
.button--gray-dark,
.button--gray-light,
.button--primary,
.button--secondary,
.button--placeholder {
  cursor: pointer;
  padding: 0.65em 1.5em 0.75em;
  border-radius: 0.2em;
  border: 1px solid;
  display: inline-block;
  text-align: center;
}

.button:focus,
.button--disabled:focus,
.button--stretched:focus,
.month-calendar__button:focus,
.button--white:focus,
.button--black:focus,
.button--snow:focus,
.button--red:focus,
.button--red-dark:focus,
.button--gray:focus,
.button--gray-dark:focus,
.button--gray-light:focus,
.button--primary:focus,
.button--secondary:focus,
.button--placeholder:focus {
  box-shadow: 0 0 0.5em 0.1em #ffde00;
}

.button:active,
.button--disabled:active,
.button--stretched:active,
.month-calendar__button:active,
.button--white:active,
.button--black:active,
.button--snow:active,
.button--red:active,
.button--red-dark:active,
.button--gray:active,
.button--gray-dark:active,
.button--gray-light:active,
.button--primary:active,
.button--secondary:active,
.button--placeholder:active {
  box-shadow: none;
}

.button--disabled {
  cursor: not-allowed !important;
}

.button--stretched,
.month-calendar__button {
  width: 100%;
}

@media screen and (max-width: 39.9375em) {
  .button--stretched-for-small {
    width: 100%;
  }
}

.button--white {
  border-color: white;
  background: white;
}

.button--white,
.button--white:visited,
.button--white:hover {
  color: white;
}

.button--black {
  border-color: black;
  background: black;
}

.button--black,
.button--black:visited,
.button--black:hover {
  color: white;
}

.button--snow {
  border-color: #F8F8F8;
  background: #F8F8F8;
}

.button--snow,
.button--snow:visited,
.button--snow:hover {
  color: white;
}

.button--red {
  border-color: #E31615;
  background: #E31615;
}

.button--red,
.button--red:visited,
.button--red:hover {
  color: white;
}

.button--red-dark {
  border-color: #A20B35;
  background: #A20B35;
}

.button--red-dark,
.button--red-dark:visited,
.button--red-dark:hover {
  color: white;
}

.button--gray {
  border-color: #A5ACB0;
  background: #A5ACB0;
}

.button--gray,
.button--gray:visited,
.button--gray:hover {
  color: white;
}

.button--gray-dark {
  border-color: #333E48;
  background: #333E48;
}

.button--gray-dark,
.button--gray-dark:visited,
.button--gray-dark:hover {
  color: white;
}

.button--gray-light {
  border-color: #E3E5E6;
  background: #E3E5E6;
}

.button--gray-light,
.button--gray-light:visited,
.button--gray-light:hover {
  color: white;
}

.button--primary {
  border-color: #A20B35;
  background: #A20B35;
}

.button--primary,
.button--primary:visited,
.button--primary:hover {
  color: white;
}

.button--secondary {
  border-color: #E31615;
  background: #E31615;
}

.button--secondary,
.button--secondary:visited,
.button--secondary:hover {
  color: white;
}

.button--white {
  background: white;
  border-color: white;
}

.button--white,
.button--white:visited,
.button--white:hover {
  color: #A20B35;
}

.button--placeholder {
  padding-left: 0;
  padding-right: 0;
  visibility: hidden;
}

.button--placeholder:before {
  content: "|";
}

.button-tag {
  background: white;
  display: inline-block;
  padding: 0 2.5em 0 0.75em;
  border: 1px solid #E3E5E6;
  border-radius: 0.2em;
  white-space: nowrap;
  max-width: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  line-height: 2.1;
  position: relative;
}

.button-tag .icon-close-o {
  color: #A20B35;
  font-size: 1.3em;
  position: absolute;
  top: 0.3em;
  right: 0.25em;
}

/* shared/card/card */

.card,
.card--selectable,
.overlay__card,
.popup__content,
.sign-up-sidebar {
  display: block;
  border-radius: 0.2em;
  padding: 29px 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #F8F8F8;
  border: 1px solid #E3E5E6;
}

@media screen and (max-width: 39.9375em) {
  .card.small-bleed,
  .small-bleed.card--selectable,
  .small-bleed.overlay__card,
  .small-bleed.popup__content,
  .small-bleed.sign-up-sidebar {
    margin-left: -25px;
    margin-right: -25px;
    width: calc(100% + 50.4px) !important;
    border: none;
    box-shadow: none;
  }
}

@media screen and (max-width: 39.9375em) {
  .card.small-bleed--up,
  .small-bleed--up.card--selectable,
  .small-bleed--up.overlay__card,
  .small-bleed--up.popup__content,
  .small-bleed--up.sign-up-sidebar {
    margin-top: -29.4px;
  }
}

.card--selectable {
  cursor: pointer;
  padding: 21px;
  box-shadow: none;
  border: none;
  background: #E3E5E6;
}

.card--selectable > span {
  display: block;
}

:checked + .card--selectable {
  background: #E31615;
  color: white;
}

:checked + .card--selectable .svg-fill {
  fill: white;
}

/* shared/container/container */

.container,
.small-container,
.tiny-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.small-container {
  max-width: 420px;
}

.tiny-container {
  max-width: 320px;
}

/* shared/footer/footer */

.footer {
  color: white;
}

@media screen and (min-width: 40em) {
  .footer {
    padding-top: 42px;
    padding-bottom: 42px;
  }
}

.footer__logo {
  background: url(/assets/shared/footer/logo.png);
  background-size: 145px;
  height: 30px;
  width: 145px;
  display: inline-block;
}

.footer__menu {
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (min-width: 40em) {
  .footer__menu {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }

  .footer__menu li + li:before {
    content: "|";
    margin: 0 1.03em;
  }
}

/* shared/form/form */

.drag-and-drop {
  text-align: center;
  border: 1px dashed #A5ACB0;
  padding: 10% 21px;
}

.form-fieldset {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid #E3E5E6;
}

.form-errors,
.form-notification {
  padding: 21px 0;
  border-top: 2px solid #E31615;
  border-bottom: 2px solid #E31615;
}

.form-errors__title {
  font-size: 1.2em;
  color: #E31615;
}

.form-errors .icon,
.form-notification .icon,
.form-errors .tiny-icon,
.form-notification .tiny-icon,
.form-errors .small-icon,
.form-notification .small-icon,
.form-errors .medium-icon,
.form-notification .medium-icon,
.form-errors .big-icon,
.form-notification .big-icon {
  font-size: 2em;
}

.form-errors ul,
.form-notification ul {
  font-weight: 600;
  list-style: disc;
  padding-left: 5em;
}

.form-errors li,
.form-notification li {
  margin-top: 0.5em;
}

.form-notification {
  border-top-color: inherit;
  border-bottom-color: inherit;
}

.form-label {
  display: block;
}

.form-label + * {
  margin-top: 10.5px;
}

.form-edit,
.form-edit--disabled,
.white-dropdown,
.dropdown {
  width: 100%;
  text-align: left;
  padding: 0.5em 0.7em 0.75em;
  border: 1px solid #A5ACB0;
  background: white;
  border-radius: 0.2em;
  display: block;
  vertical-align: middle;
}

@media screen and (max-width: 39.9375em) {
  .form-edit,
  .form-edit--disabled,
  .white-dropdown,
  .dropdown {
    font-size: 1.142857143em;
  }
}

.form-edit--disabled {
  background: none;
}

.form-edit.ng-invalid.ng-dirty,
.ng-invalid.ng-dirty.form-edit--disabled,
.ng-invalid.ng-dirty.dropdown {
  border: 1px solid #E31615;
  box-shadow: 0 0 1px 2px rgba(227, 22, 21, .5) !important;
}

.form-toggle {
  display: inline-block;
  width: 5.6em;
  padding: 0.4em 1.4em 0.5em;
  background: #E3E5E6;
  border-radius: 10em;
  position: relative;
  font-style: normal;
  text-align: right;
  cursor: pointer;
}

.form-toggle:before {
  content: 'No';
}

.form-toggle:after {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0.4em;
  height: 1.6em;
  width: 1.6em;
  display: block;
  background: #A5ACB0;
  border-radius: 50%;
}

:checked + .form-toggle {
  text-align: left;
}

:checked + .form-toggle:before {
  content: "Yes";
}

:checked + .form-toggle:after {
  background: #E31615;
  left: auto;
  right: 0.4em;
}

.form-radio-hide,
.form-checkbox-hide {
  position: absolute;
  opacity: 0;
}

.form-checkbox {
  display: inline-block;
  height: 1.45em;
  width: 1.45em;
  border: 1px solid #A5ACB0;
  border-radius: 0.2em;
  vertical-align: middle;
  cursor: pointer;
  background: white center no-repeat;
}

:checked + .form-checkbox {
  background-image: url(/assets/shared/form/check.svg);
  background-size: 1em;
}

.form-edit-tip,
.form-edit-tip--right {
  display: inline-block;
  padding: 0.5em 0.75em 0;
}

.form-edit-tip ~ .form-edit,
.form-edit-tip--right ~ .form-edit,
.form-edit-tip ~ .form-edit--disabled,
.form-edit-tip--right ~ .form-edit--disabled,
.form-edit-tip ~ .dropdown,
.form-edit-tip ~ .white-dropdown,
.form-edit-tip--right ~ .white-dropdown ,
.form-edit-tip--right ~ .dropdown {
  margin-top: -2.15em;
  padding-left: 3em;
}

.form-edit-tip--right {
  float: right;
  margin-bottom: -2.15em;
}

@media screen and (max-width: 39.9375em) {
  .form-edit-tip--right {
    margin-bottom: -2.35em;
    padding-top: 1em;
  }
}

.form-edit-tip--right ~ .form-edit,
.form-edit-tip--right ~ .form-edit--disabled,
.form-edit-tip--right ~ .white-dropdown ,
.form-edit-tip--right ~ .dropdown {
  padding-left: 0.7em;
  padding-right: 3em;
  margin-top: 0;
}

.form-edit-tip .icon,
.form-edit-tip--right .icon,
.form-edit-tip .tiny-icon,
.form-edit-tip--right .tiny-icon,
.form-edit-tip .small-icon,
.form-edit-tip--right .small-icon,
.form-edit-tip .medium-icon,
.form-edit-tip--right .medium-icon,
.form-edit-tip .big-icon,
.form-edit-tip--right .big-icon {
  font-size: 1.5em;
}

.white-dropdown,
.dropdown {
  display: block !important;
  background: url(/assets/shared/form/chevron.svg) no-repeat;
  background-position: calc(100% - 1em) 50%;
  background-size: 0.8em;
}

.white-dropdown {
  background-color: white;
}

* + .white-dropdown,
* + .dropdown {
  margin-top: 10.5px;
}

.dropdown.inline-select {
  margin-top: 0;
  display: inline-block !important;
  border: none;
  text-align: left;
  padding: 0;
  padding-right: 1em;
  background-position: 100% 50%;
}

.dropdown-arrow {
  border: none !important;
  height: 0.8em !important;
  width: 0.8em !important;
  background: url(/assets/shared/form/chevron.svg) center no-repeat;
  background-size: 0.8em;
}

.dropdown-panel {
  background: white;
  padding: 1em 0 !important;
  margin-top: -1.35em;
  box-shadow: 0 0 1em 0.1em rgba(0, 0, 0, 0.15) !important;
}

.mat-option {
  height: auto !important;
  line-height: inherit !important;
  font-size: 1em;
  padding: 1.2em 1.85em;
}

.mat-option:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}

.mat-theme-loaded-marker {
  display: none;
}

/* shared/formatted/formatted */

.formatted ol {
  counter-reset: list;
}

.formatted ol h2:before,
.formatted ol h3:before,
.formatted ol h4:before,
.formatted ol h5:before,
.formatted ol h6:before {
  counter-increment: list;
  content: counter(list) ". ";
}

@media screen and (max-width: 39.9375em) {
  .formatted p > img {
    margin-left: -25px;
    max-width: calc(100% + 50px);
  }
}

/* shared/gutter/gutter */

.gutter {
  margin-left: -10.5px;
  margin-right: -10.5px;
  margin-bottom: -21px;
}

.gutter > * {
  margin-left: 10.5px;
  margin-right: 10.5px;
  margin-bottom: 21px;
  margin-top: 0;
}

.gutter > .small-1 {
  width: calc(8.33333% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-2 {
  width: calc(16.66667% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-3 {
  width: calc(25% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-4 {
  width: calc(33.33333% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-5 {
  width: calc(41.66667% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-6 {
  width: calc(50% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-7 {
  width: calc(58.33333% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-8 {
  width: calc(66.66667% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-9 {
  width: calc(75% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-10 {
  width: calc(83.33333% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-11 {
  width: calc(91.66667% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

.gutter > .small-12 {
  width: calc(100% - 21px);
}

.gutter > .small-shrink {
  width: auto;
}

@media screen and (min-width: 40em) {
  .gutter > .medium-1 {
    width: calc(8.33333% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-2 {
    width: calc(16.66667% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-3 {
    width: calc(25% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-4 {
    width: calc(33.33333% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-5 {
    width: calc(41.66667% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-6 {
    width: calc(50% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-7 {
    width: calc(58.33333% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-8 {
    width: calc(66.66667% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-9 {
    width: calc(75% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-10 {
    width: calc(83.33333% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-11 {
    width: calc(91.66667% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .gutter > .medium-12 {
    width: calc(100% - 21px);
  }

  .gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-1 {
    width: calc(8.33333% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-2 {
    width: calc(16.66667% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-3 {
    width: calc(25% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-4 {
    width: calc(33.33333% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-5 {
    width: calc(41.66667% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-6 {
    width: calc(50% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-7 {
    width: calc(58.33333% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-8 {
    width: calc(66.66667% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-9 {
    width: calc(75% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-10 {
    width: calc(83.33333% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-11 {
    width: calc(91.66667% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .gutter > .large-12 {
    width: calc(100% - 21px);
  }

  .gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-1 {
    width: calc(8.33333% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-2 {
    width: calc(16.66667% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-3 {
    width: calc(25% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-4 {
    width: calc(33.33333% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-5 {
    width: calc(41.66667% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-6 {
    width: calc(50% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-7 {
    width: calc(58.33333% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-8 {
    width: calc(66.66667% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-9 {
    width: calc(75% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-10 {
    width: calc(83.33333% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-11 {
    width: calc(91.66667% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .gutter > .xlarge-12 {
    width: calc(100% - 21px);
  }

  .gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-1 {
    width: calc(8.33333% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-2 {
    width: calc(16.66667% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-3 {
    width: calc(25% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-4 {
    width: calc(33.33333% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-5 {
    width: calc(41.66667% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-6 {
    width: calc(50% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-7 {
    width: calc(58.33333% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-8 {
    width: calc(66.66667% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-9 {
    width: calc(75% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-10 {
    width: calc(83.33333% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-11 {
    width: calc(91.66667% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .gutter > .xxlarge-12 {
    width: calc(100% - 21px);
  }

  .gutter > .xxlarge-shrink {
    width: auto;
  }
}

.tiny-gutter {
  margin-left: -5.25px;
  margin-right: -5.25px;
  margin-bottom: -10.5px;
}

.tiny-gutter > * {
  margin-left: 5.25px;
  margin-right: 5.25px;
  margin-bottom: 10.5px;
  margin-top: 0;
}

.tiny-gutter > .small-1 {
  width: calc(8.33333% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-2 {
  width: calc(16.66667% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-3 {
  width: calc(25% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-4 {
  width: calc(33.33333% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-5 {
  width: calc(41.66667% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-6 {
  width: calc(50% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-7 {
  width: calc(58.33333% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-8 {
  width: calc(66.66667% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-9 {
  width: calc(75% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-10 {
  width: calc(83.33333% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-11 {
  width: calc(91.66667% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

.tiny-gutter > .small-12 {
  width: calc(100% - 10.5px);
}

.tiny-gutter > .small-shrink {
  width: auto;
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-1 {
    width: calc(8.33333% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-2 {
    width: calc(16.66667% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-3 {
    width: calc(25% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-4 {
    width: calc(33.33333% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-5 {
    width: calc(41.66667% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-6 {
    width: calc(50% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-7 {
    width: calc(58.33333% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-8 {
    width: calc(66.66667% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-9 {
    width: calc(75% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-10 {
    width: calc(83.33333% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-11 {
    width: calc(91.66667% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .tiny-gutter > .medium-12 {
    width: calc(100% - 10.5px);
  }

  .tiny-gutter > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-1 {
    width: calc(8.33333% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-2 {
    width: calc(16.66667% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-3 {
    width: calc(25% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-4 {
    width: calc(33.33333% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-5 {
    width: calc(41.66667% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-6 {
    width: calc(50% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-7 {
    width: calc(58.33333% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-8 {
    width: calc(66.66667% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-9 {
    width: calc(75% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-10 {
    width: calc(83.33333% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-11 {
    width: calc(91.66667% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .tiny-gutter > .large-12 {
    width: calc(100% - 10.5px);
  }

  .tiny-gutter > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-1 {
    width: calc(8.33333% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-2 {
    width: calc(16.66667% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-3 {
    width: calc(25% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-4 {
    width: calc(33.33333% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-5 {
    width: calc(41.66667% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-6 {
    width: calc(50% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-7 {
    width: calc(58.33333% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-8 {
    width: calc(66.66667% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-9 {
    width: calc(75% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-10 {
    width: calc(83.33333% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-11 {
    width: calc(91.66667% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .tiny-gutter > .xlarge-12 {
    width: calc(100% - 10.5px);
  }

  .tiny-gutter > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-1 {
    width: calc(8.33333% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-2 {
    width: calc(16.66667% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-3 {
    width: calc(25% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-4 {
    width: calc(33.33333% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-5 {
    width: calc(41.66667% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-6 {
    width: calc(50% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-7 {
    width: calc(58.33333% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-8 {
    width: calc(66.66667% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-9 {
    width: calc(75% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-10 {
    width: calc(83.33333% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-11 {
    width: calc(91.66667% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .tiny-gutter > .xxlarge-12 {
    width: calc(100% - 10.5px);
  }

  .tiny-gutter > .xxlarge-shrink {
    width: auto;
  }
}

.gutter-y,
.medium-gutter-y {
  margin-bottom: -17.85px;
}

.gutter-y > *,
.medium-gutter-y > * {
  display: block;
  margin-bottom: 17.85px;
  margin-top: 0;
}

@media screen and (min-width: 40em) {
  .medium-gutter-y {
    margin-bottom: -42px;
  }

  .medium-gutter-y > * {
    margin-bottom: 42px;
  }
}

.medium-gutter-x {
  margin-left: -21px;
  margin-right: -21px;
  margin-bottom: -21px;
}

.medium-gutter-x > * {
  margin-left: 21px;
  margin-right: 21px;
  margin-bottom: 21px;
  margin-top: 0;
}

.medium-gutter-x > .small-1 {
  width: calc(8.33333% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-2 {
  width: calc(16.66667% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-3 {
  width: calc(25% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-4 {
  width: calc(33.33333% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-5 {
  width: calc(41.66667% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-6 {
  width: calc(50% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-7 {
  width: calc(58.33333% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-8 {
  width: calc(66.66667% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-9 {
  width: calc(75% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-10 {
  width: calc(83.33333% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-11 {
  width: calc(91.66667% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

.medium-gutter-x > .small-12 {
  width: calc(100% - 42px);
}

.medium-gutter-x > .small-shrink {
  width: auto;
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-1 {
    width: calc(8.33333% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-2 {
    width: calc(16.66667% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-3 {
    width: calc(25% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-4 {
    width: calc(33.33333% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-5 {
    width: calc(41.66667% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-6 {
    width: calc(50% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-7 {
    width: calc(58.33333% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-8 {
    width: calc(66.66667% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-9 {
    width: calc(75% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-10 {
    width: calc(83.33333% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-11 {
    width: calc(91.66667% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .medium-gutter-x > .medium-12 {
    width: calc(100% - 42px);
  }

  .medium-gutter-x > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-1 {
    width: calc(8.33333% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-2 {
    width: calc(16.66667% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-3 {
    width: calc(25% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-4 {
    width: calc(33.33333% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-5 {
    width: calc(41.66667% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-6 {
    width: calc(50% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-7 {
    width: calc(58.33333% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-8 {
    width: calc(66.66667% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-9 {
    width: calc(75% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-10 {
    width: calc(83.33333% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-11 {
    width: calc(91.66667% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .medium-gutter-x > .large-12 {
    width: calc(100% - 42px);
  }

  .medium-gutter-x > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-1 {
    width: calc(8.33333% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-2 {
    width: calc(16.66667% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-3 {
    width: calc(25% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-4 {
    width: calc(33.33333% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-5 {
    width: calc(41.66667% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-6 {
    width: calc(50% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-7 {
    width: calc(58.33333% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-8 {
    width: calc(66.66667% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-9 {
    width: calc(75% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-10 {
    width: calc(83.33333% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-11 {
    width: calc(91.66667% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .medium-gutter-x > .xlarge-12 {
    width: calc(100% - 42px);
  }

  .medium-gutter-x > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-1 {
    width: calc(8.33333% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-2 {
    width: calc(16.66667% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-3 {
    width: calc(25% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-4 {
    width: calc(33.33333% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-5 {
    width: calc(41.66667% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-6 {
    width: calc(50% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-7 {
    width: calc(58.33333% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-8 {
    width: calc(66.66667% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-9 {
    width: calc(75% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-10 {
    width: calc(83.33333% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-11 {
    width: calc(91.66667% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .medium-gutter-x > .xxlarge-12 {
    width: calc(100% - 42px);
  }

  .medium-gutter-x > .xxlarge-shrink {
    width: auto;
  }
}

/* shared/header/header */

.header {
  color: white;
  border-bottom: 2px solid #E31615;
}

@media screen and (min-width: 40em) {
  .header {
    padding-top: 31.5px;
    padding-bottom: 29.4px;
  }
}

.header__logo {
  margin: 0.25em 0;
  background: url(/assets/shared/header/logo.png) no-repeat;
  background-size: 100%;
  height: 2.72321em;
  width: 12.32143em;
  display: inline-block;
}

@media screen and (max-width: 89.9375em) {
  .header__logo {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 63.9375em) {
  .header__logo {
    font-size: 0.6em;
  }
}

.header-dropdown {
  position: absolute;
  top: -4.5em;
  right: 0;
  color: white;
}

/* shared/icons/icons */

.icon,
.tiny-icon,
.small-icon,
.medium-icon,
.big-icon {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

.icon:before,
.tiny-icon:before,
.small-icon:before,
.medium-icon:before,
.big-icon:before {
  font-family: icon !important;
  font-style: normal;
  font-weight: normal !important;
  vertical-align: top;
}

.tiny-icon {
  font-size: 0.75em;
}

.small-icon {
  font-size: 1.3em;
}

.medium-icon {
  font-size: 2.4em;
}

@media screen and (min-width: 40em) {
  .medium-icon {
    font-size: 2.8em;
  }
}

@media screen and (min-width: 64em) {
  .medium-icon {
    font-size: 3.2em;
  }
}

@media screen and (min-width: 75em) {
  .medium-icon {
    font-size: 3.6em;
  }
}

@media screen and (min-width: 90em) {
  .medium-icon {
    font-size: 4em;
  }
}

.big-icon {
  font-size: 3.22em;
}

@media screen and (min-width: 40em) {
  .big-icon {
    font-size: 4.44em;
  }
}

@media screen and (min-width: 64em) {
  .big-icon {
    font-size: 5.66em;
  }
}

@media screen and (min-width: 75em) {
  .big-icon {
    font-size: 6.88em;
  }
}

@media screen and (min-width: 90em) {
  .big-icon {
    font-size: 8.1em;
  }
}

.icon-abr:before {
  font-size: 0.7em;
  padding-top: 0.2em;
  display: inline-block;
}

.icon-wrap {
  display: inline-block;
  border-radius: 0.2em;
  border: 1px solid #E3E5E6;
  font-size: 0.9em;
  text-align: center;
  padding: 0.8em 0;
  min-width: 2.8em;
}

.icon-flipped {
  transform: rotate(180deg);
}

.icon-strike-through {
  position: relative;
}

.icon-strike-through:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  width: 100%;
  border-bottom: #A20B35 2px solid;
  height: 2px;
  transform: rotate(-45deg);
  margin-top: -2px;
}

.svg-fill {
  fill: #333E48;
}

/* shared/list/list */

.list-disc li,
.list-disc--o li,
.help-feature-list li {
  position: relative;
  padding-left: 21px;
}

.list-disc li:before,
.list-disc--o li:before,
.help-feature-list li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  height: 5px;
  width: 5px;
  border: 1px solid #E31615;
  border-radius: 2px;
  background: #E31615;
}

.list-disc li + li,
.list-disc--o li + li,
.help-feature-list li + li {
  margin-top: 10.5px;
}

.list-disc--o li:before {
  background: none;
}

.list-numeric,
.list-numeric--compact {
  counter-reset: list-numeric;
}

.list-numeric > li,
.list-numeric--compact > li {
  position: relative;
  padding-left: 21px;
}

.list-numeric > li + li,
.list-numeric--compact > li + li {
  margin-top: 21px;
}

.list-numeric > li:before,
.list-numeric--compact > li:before {
  font-family: Sanchez, sans-serif;
  content: counter(list-numeric) ". ";
  counter-increment: list-numeric;
  position: absolute;
  top: 0.05em;
  left: 0;
}

.list-numeric--compact > li + li {
  margin-top: 0.5em;
}

.list-dashed > li {
  position: relative;
  padding-left: 21px;
}

.list-dashed > li + li {
  margin-top: 0.5em;
}

.list-dashed > li:before {
  content: '-';
  position: absolute;
  top: -0.05em;
  left: 0;
}

/* shared/map/map */

app-map {
  display: block;
  background: rgba(0, 0, 0, 0.02);
  padding-bottom: 100%;
}

@media screen and (max-width: 39.9375em) {
  app-map {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media screen and (min-width: 40em) {
  app-map {
    border: 1px solid #E3E5E6;
    border-radius: 0.2em;
    padding-bottom: 59.4011976%;
  }
}

/* shared/menu/menu */

.menu {
  display: -ms-flexbox;
  display: flex;
  margin-left: -21px;
  margin-right: -21px;
  margin-bottom: -42px;
}

.menu > * {
  margin-left: 21px;
  margin-right: 21px;
  margin-bottom: 42px;
  margin-top: 0;
}

.menu > .small-1 {
  width: calc(8.33333% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-2 {
  width: calc(16.66667% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-3 {
  width: calc(25% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-4 {
  width: calc(33.33333% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-5 {
  width: calc(41.66667% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-6 {
  width: calc(50% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-7 {
  width: calc(58.33333% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-8 {
  width: calc(66.66667% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-9 {
  width: calc(75% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-10 {
  width: calc(83.33333% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-11 {
  width: calc(91.66667% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

.menu > .small-12 {
  width: calc(100% - 42px);
}

.menu > .small-shrink {
  width: auto;
}

@media screen and (min-width: 40em) {
  .menu > .medium-1 {
    width: calc(8.33333% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-2 {
    width: calc(16.66667% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-3 {
    width: calc(25% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-4 {
    width: calc(33.33333% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-5 {
    width: calc(41.66667% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-6 {
    width: calc(50% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-7 {
    width: calc(58.33333% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-8 {
    width: calc(66.66667% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-9 {
    width: calc(75% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-10 {
    width: calc(83.33333% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-11 {
    width: calc(91.66667% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 40em) {
  .menu > .medium-12 {
    width: calc(100% - 42px);
  }

  .menu > .medium-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-1 {
    width: calc(8.33333% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-2 {
    width: calc(16.66667% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-3 {
    width: calc(25% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-4 {
    width: calc(33.33333% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-5 {
    width: calc(41.66667% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-6 {
    width: calc(50% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-7 {
    width: calc(58.33333% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-8 {
    width: calc(66.66667% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-9 {
    width: calc(75% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-10 {
    width: calc(83.33333% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-11 {
    width: calc(91.66667% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 64em) {
  .menu > .large-12 {
    width: calc(100% - 42px);
  }

  .menu > .large-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-1 {
    width: calc(8.33333% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-2 {
    width: calc(16.66667% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-3 {
    width: calc(25% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-4 {
    width: calc(33.33333% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-5 {
    width: calc(41.66667% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-6 {
    width: calc(50% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-7 {
    width: calc(58.33333% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-8 {
    width: calc(66.66667% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-9 {
    width: calc(75% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-10 {
    width: calc(83.33333% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-11 {
    width: calc(91.66667% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 75em) {
  .menu > .xlarge-12 {
    width: calc(100% - 42px);
  }

  .menu > .xlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-1 {
    width: calc(8.33333% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-2 {
    width: calc(16.66667% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-3 {
    width: calc(25% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-4 {
    width: calc(33.33333% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-5 {
    width: calc(41.66667% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-6 {
    width: calc(50% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-7 {
    width: calc(58.33333% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-8 {
    width: calc(66.66667% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-9 {
    width: calc(75% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-10 {
    width: calc(83.33333% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-11 {
    width: calc(91.66667% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

@media screen and (min-width: 90em) {
  .menu > .xxlarge-12 {
    width: calc(100% - 42px);
  }

  .menu > .xxlarge-shrink {
    width: auto;
  }
}

.menu .menu__icon {
  font-size: 1.5em;
  margin-right: 0.25em;
}

/* shared/month-calendar/month-calendar */

.month-calendar .popup__arrow {
  display: none;
}

@media screen and (min-width: 40em) {
  .month-calendar .popup__content {
    width: 30em;
    background: white;
  }
}

.month-calendar__year {
  margin: 0 42px;
  color: #333E48;
  width: 2.5em;
}

.month-calendar__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #A20B35;
}

.month-calendar__header .icon:before,
.month-calendar__header .tiny-icon:before,
.month-calendar__header .small-icon:before,
.month-calendar__header .medium-icon:before,
.month-calendar__header .big-icon:before {
  font-size: 0.75em;
  vertical-align: -0.1em;
}

.month-calendar__button {
  border: none !important;
  color: #A20B35;
}

.month-calendar__button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.month-calendar__button--current {
  color: white;
}

.month-calendar__button--current,
.month-calendar__button--current:hover {
  background: #A20B35;
}

/* shared/overlay/overlay */

app-overlay {
  display: none;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.overlay--visible {
  display: block;
}

.overlay__card {
  position: absolute;
}

@media screen and (max-width: 39.9375em) {
  .overlay__card {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

@media screen and (min-width: 40em) {
  .overlay__card {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 550px;
  }
}

.overlay__close {
  position: absolute;
  top: 21px;
  right: 21px;
  cursor: pointer;
}

/* shared/pager/pager */

app-pager {
  display: block;
}

.pager {
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-left: -0.25em;
  margin-right: -0.25em;
}

@media screen and (min-width: 40em) {
  .pager {
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
}

.pager__page {
  width: 1em;
}

.pager__page,
.pager__total,
.pager__button {
  border: 1px solid #A5ACB0;
  margin: 0 0.25em;
  padding: 0.7em 0.3em;
  border-radius: 0.2em;
  min-width: 2.9em;
  text-align: center;
}

.pager__button {
  background: #A5ACB0;
  border-color: #A5ACB0;
}

.pager__button,
.pager__button:hover,
.pager__button:visited {
  color: white;
}

.pager__total {
  border-color: white;
  padding-left: 0;
  margin-left: 0;
}

/* shared/popup/popup */

app-tooltip,
app-popup-content {
    display: none;
}

.popup {
  position: relative;
  display: inline;
}

.popup__bleed {
  margin: -30px -26px;
}

.popup__bleed ~ .popup__close {
  color: white;
  margin-top: -0.35em;
}

.popup__header {
  padding: 25px;
}

@media screen and (max-width: 39.9375em) {
  .popup__header {
    background: #333E48;
    color: white;
  }
}

.popup__info {
  color: white;
  padding: 1em 25px;
  display: block;
}

@media screen and (min-width: 40em) {
  .popup__info {
    border: 1px solid #E3E5E6;
    border-bottom: none;
    background: #f2f2f2;
    color: inherit;
  }
}

.popup__list,
.popup__list--center {
  border-top: 1px solid #E3E5E6;
}

.popup__list a,
.popup__list app-overlay-trigger,
.popup__list--center a ,
.popup__list--center app-overlay-trigger {
  display: block;
  padding: 1em 25px;
  cursor: pointer;
}

.popup__list li,
.popup__list--center li {
  display: block;
  border-bottom: 1px solid #E3E5E6;
}

.popup__list li.active,
.popup__list--center li.active {
  color: #E31615;
}

.popup__list--center {
  text-align: center;
  font-weight: 600;
}

.popup__trigger {
  cursor: pointer;
}

.popup__trigger .icon-chevron {
  font-size: 0.75em !important;
  margin-left: 0.5em;
}

.popup--enabled .popup__trigger .icon-chevron {
  transform: rotate(180deg);
}

.popup__close {
  position: absolute;
  z-index: 5;
  top: 2.5em;
  right: 25px;
  cursor: pointer;
}

@media screen and (min-width: 40em) {
  .popup__close {
    display: none;
  }
}

.popup__arrow {
  display: block;
  width: 0;
  height: 0;
  top: -0.75em;
  left: 50%;
  position: absolute;
  height: 1em;
  width: 1em;
  background: #F8F8F8;
  transform: rotate(45deg);
  transform-origin: 0 0;
  border-left: 1px solid #E3E5E6;
  border-top: 1px solid #E3E5E6;
}

@media screen and (max-width: 39.9375em) {
  .popup__arrow {
    display: none;
  }
}

.popup__content {
  font: 400 14px/1.5 "Open Sans", sans-serif !important;
  color: #333E48;
  z-index: 10;
  display: none;
}

@media screen and (max-width: 39.9375em) {
  .popup__content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}

@media screen and (min-width: 40em) {
  .popup__content {
    position: absolute;
    top: 100%;
    margin-top: 1.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 22em;
  }
}

.popup__content .icon,
.popup__content .tiny-icon,
.popup__content .small-icon,
.popup__content .medium-icon,
.popup__content .big-icon {
  font-size: 1em !important;
}

.popup--enabled .popup__content {
  display: block;
}

.popup__content--left {
  left: 0;
  transform: none;
}

.popup__content--left .popup__arrow {
  display: none;
}

.popup__content--right {
  right: 0;
  left: auto;
  transform: none;
}

.popup__content--right .popup__arrow {
  display: none;
}

/* shared/section/section */

.section--adjacent {
  padding-top: 0;
}

.section--short {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 39.9375em) {
  .section.small-bleed,
  .small-bleed.section--adjacent,
  .small-bleed.section--short,
  .section.medium-bleed,
  .medium-bleed.section--adjacent,
  .medium-bleed.section--short,
  .medium-bleed.home-sign-in,
  .medium-bleed.search-form,
  .small-bleed.home-sign-in,
  .small-bleed.search-form {
    margin-left: -25px;
    margin-right: -25px;
    box-shadow: none;
    border: none;
  }
}

@media screen and (max-width: 39.9375em) {
  .section.small-bleed--down,
  .small-bleed--down.section--adjacent,
  .small-bleed--down.section--short,
  .small-bleed--down.home-sign-in,
  .small-bleed--down.search-form {
    margin-bottom: -29px;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .section.medium-bleed,
  .medium-bleed.section--adjacent,
  .medium-bleed.section--short,
  .medium-bleed.home-sign-in,
  .medium-bleed.search-form {
    margin-left: -63px;
    margin-right: -63px;
    box-shadow: none;
    border: none;
  }
}

.small-section {
  padding: 25px;
}

/* shared/separator/separator */

hr,
.separator {
  border: none;
  border-top: 1px solid #E3E5E6;
}

.separator--big {
    margin: 2.5rem 0;
}

hr + *,
* + hr,
.separator + *,
* + .separator {
  margin-top: 21px;
}

.vertical-separator {
  border-left: 1px solid #E3E5E6;
}

.horizontal-separator {
  border-top: 1px solid #E3E5E6;
  margin: 0 25px -25px 25px;
}

/* shared/spacing/spacing */

* + .spacing,
.formatted * + h1,
.formatted * + h2,
.formatted * + h3,
.formatted * + h4,
.formatted * + h5,
.formatted * + h6,
.formatted * + ol,
* + .medium-spacing,
.formatted ol * + li,
* + .large-spacing,
* + .steps__step {
  margin-top: 21px;
}

* + .small-spacing {
  margin-top: 10.5px !important;
}

* + .tiny-spacing,
* + app-bar {
  margin-top: 5.25px !important;
}

@media screen and (min-width: 40em) {
  * + .medium-spacing,
  .formatted ol * + li,
  * + .large-spacing,
  * + .steps__step {
    margin-top: 31.5px !important;
  }
}

@media screen and (min-width: 64em) {
  * + .large-spacing,
  * + .steps__step {
    margin-top: 52.5px !important;
  }
}

/* shared/steps/steps */

.steps {
  border-left: 1px solid #A5ACB0;
  counter-reset: steps;
  margin-left: 1em;
}

.steps__step {
  counter-increment: steps;
  padding-left: 21px;
  position: relative;
}

.steps__step:before {
  content: "";
  display: inline-block;
  background: #333E48 url(/assets/shared/steps/check.svg) center no-repeat;
  background-size: 1em;
  color: white;
  position: absolute;
  top: -0.25em;
  left: -1em;
  width: 2em;
  line-height: 2em;
  min-height: 2em;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
}

.steps__step:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 2em;
  height: 3em;
  background: white;
  top: -0.75em;
  left: -1em;
}

.steps__step--current:before {
  background: #E31615;
  content: counter(steps);
}

.steps__step--current ~ .steps__step .steps__name ,
.steps__step--current ~ .steps__step .steps__desc {
  opacity: 0.5;
}

.steps__step--current ~ .steps__step:before {
  content: counter(steps);
  background: #333E48;
}

.steps__step--current .steps__name {
  font-weight: 600;
}

/* shared/table/table */

.table {
  width: 100%;
}

.table b,
.table strong {
  font-weight: 600;
}

.table > tbody > tr {
  border-top: 1px solid #E3E5E6;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
  padding: 8.4px 14px;
}

@media screen and (max-width: 39.9375em) {
  .table > tbody > tr > td,
  .table > tbody > tr > th {
    padding: 25px;
  }
}

.table thead {
  background: #E3E6E7;
  font-size: 1.142857143em;
}

.table thead td,
.table thead th {
  padding: 14px 14px 17.5px;
}

.table__shrink,
.table__shrink--pull-right {
  white-space: nowrap;
  width: 1%;
}

.table__shrink--pull-right {
  padding-right: 0 !important;
}

.table__chevron {
  transform: rotate(-90deg);
}

.table__chevron--expanded {
  transform: rotate(0);
}

.table__extra {
  padding: 0 !important;
  background: #F8F8F8;
}

.table__pull-left {
  padding-left: 0.5em !important;
}

.table-wrap {
  border: 1px solid #E3E5E6;
  border-top: none;
}

@media screen and (max-width: 39.9375em) {
  .table-wrap {
    margin-left: -26px;
    margin-right: -26px;
  }
}

.small-table,
.small-table--centered {
  margin-left: -0.5em;
  text-align: left;
}

.small-table th,
.small-table--centered th {
  text-align: left;
  font-weight: 600;
}

.small-table th,
.small-table--centered th,
.small-table td,
.small-table--centered td {
  padding: 0.25em 0.5em;
}

.small-table--centered {
  margin-left: auto;
  margin-right: auto;
}

.medium-table {
  margin-left: -0.5em;
}

.medium-table th,
.medium-table td {
  padding: 10.5px 0.5em;
}

[appsortableheaders] {
  cursor: pointer;
  white-space: nowrap;
}

[appsortableheaders] .icon,
[appsortableheaders] .tiny-icon,
[appsortableheaders] .small-icon,
[appsortableheaders] .medium-icon,
[appsortableheaders] .big-icon {
  margin-left: 0.5em;
  color: #E31615;
}

[appsortableheaders] .icon-sort-asc {
  visibility: hidden;
}

[appsortableheaders] .icon-sort-desc {
  display: none;
}

[appsortableheaders] .table__sort--asc .icon-sort-asc {
  visibility: visible;
}

[appsortableheaders] .table__sort--desc .icon-sort-asc {
  display: none;
}

[appsortableheaders] .table__sort--desc .icon-sort-desc {
  display: inline-block;
}

/* shared/tabs/tabs */

.tabs {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
}

.tabs__tab,
.tabs__tab--active,
.tabs__tab--underline,
.tabs__tab--right {
  padding: 25px;
}

.tabs__tab--active {
  color: #E31615;
  background: #F8F8F8;
}

.tabs__tab--underline {
  color: #E31615;
  position: relative;
}

.tabs__tab--underline:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: #E31615 3px solid;
}

.tabs__tab--right {
  -ms-flex: 1 0 0px;
      flex: 1 0 0;
  text-align: right;
  padding-right: 0;
}

.tabs__icon {
  font-size: 1.8em;
  vertical-align: -0.15em;
}

@media screen and (max-width: 39.9375em) {
  .tabs {
    margin-left: -25px;
    margin-right: -25px;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .tabs {
    margin-left: -63px;
    margin-right: -63px;
  }

  .tabs__tab,
  .tabs__tab--active,
  .tabs__tab--underline,
  .tabs__tab--right {
    padding-left: 63px;
    padding-right: 63px;
  }
}

@media screen and (min-width: 40em) {
  .tabs {
    font-size: 1.285714286em;
  }
}

.alt-tabs {
  text-align: center;
  padding-top: 6px;
  white-space: nowrap;
}

.alt-tabs ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.alt-tabs li {
  padding: 12.5px 0;
  position: relative;
}

@media screen and (min-width: 64em) {
  .alt-tabs li {
    padding-right: 25px;
    padding-left: 25px;
  }
}

.alt-tabs li.active {
  color: #E31615;
}

.alt-tabs li.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 6px solid;
}

.alt-tabs .icon,
.alt-tabs .tiny-icon,
.alt-tabs .small-icon,
.alt-tabs .medium-icon,
.alt-tabs .big-icon {
  font-size: 1.8em;
}

.alt-tabs .icon + span,
.alt-tabs .tiny-icon + span,
.alt-tabs .small-icon + span,
.alt-tabs .medium-icon + span,
.alt-tabs .big-icon + span {
  display: block;
  margin-top: 0.5em;
}

/* shared/tag/tag */

.tag,
.tag--white,
.tag--black,
.tag--snow,
.tag--red,
.tag--red-dark,
.tag--gray,
.tag--big,
.tag--gray-dark,
.tag--gray-light,
.tag--primary,
.tag--secondary {
  display: inline-block;
  border-radius: 10em;
  border: 1px solid;
  padding: 0.25em 0.85em;
}

.tag--stretched {
  width: 100%;
  text-align: center;
}

.tag--white {
  background: white;
  border-color: white;
}

.tag--white,
.tag--white:visited,
.tag--white:hover {
  color: white;
}

.tag--black {
  background: black;
  border-color: black;
}

.tag--black,
.tag--black:visited,
.tag--black:hover {
  color: white;
}

.tag--snow {
  background: #F8F8F8;
  border-color: #F8F8F8;
}

.tag--snow,
.tag--snow:visited,
.tag--snow:hover {
  color: white;
}

.tag--red {
  background: #E31615;
  border-color: #E31615;
}

.tag--red,
.tag--red:visited,
.tag--red:hover {
  color: white;
}

.tag--red-dark {
  background: #A20B35;
  border-color: #A20B35;
}

.tag--red-dark,
.tag--red-dark:visited,
.tag--red-dark:hover {
  color: white;
}

.tag--gray,
.tag--big {
  background: #A5ACB0;
  border-color: #A5ACB0;
}

.tag--gray,
.tag--big,
.tag--gray:visited,
.tag--big:visited,
.tag--gray:hover,
.tag--big:hover {
  color: white;
}

.tag--gray-dark {
  background: #333E48;
  border-color: #333E48;
}

.tag--gray-dark,
.tag--gray-dark:visited,
.tag--gray-dark:hover {
  color: white;
}

.tag--gray-light {
  background: #E3E5E6;
  border-color: #E3E5E6;
}

.tag--gray-light,
.tag--gray-light:visited,
.tag--gray-light:hover {
  color: #333E48;
}

.tag--primary {
  background: #A20B35;
  border-color: #A20B35;
}

.tag--primary,
.tag--primary:visited,
.tag--primary:hover {
  color: white;
}

.tag--secondary {
  background: #E31615;
  border-color: #E31615;
}

.tag--secondary,
.tag--secondary:visited,
.tag--secondary:hover {
  color: white;
}

.tag--active {
  background: #E31615;
  border-color: #E31615;
}

.tag--big {
  font-weight: 600;
}

@media screen and (min-width: 75em) {
  .tag--big {
    padding: 0.6em 2.75em 0.85em;
  }
}

/* shared/text/text */

.text-align-middle {
  vertical-align: middle;
}

.text-bigger {
  font-size: 1.13714em;
}

@media screen and (min-width: 40em) {
  .text-bigger {
    font-size: 1.17429em;
  }
}

@media screen and (min-width: 64em) {
  .text-bigger {
    font-size: 1.21143em;
  }
}

@media screen and (min-width: 75em) {
  .text-bigger {
    font-size: 1.24857em;
  }
}

@media screen and (min-width: 90em) {
  .text-bigger {
    font-size: 1.28571em;
  }
}

.text-lead {
  font-size: 1.3em;
  font-weight: 600;
}

.text-small {
  font-size: 0.95em;
  letter-spacing: -0.01em;
}

.text-smaller {
  font-size: 0.85em;
  letter-spacing: -0.01em;
}

.text-sub {
  opacity: 0.65;
}

.text-white {
  color: white !important;
}

.text-black {
  color: black !important;
}

.text-snow {
  color: #F8F8F8 !important;
}

.text-red {
  color: #E31615 !important;
}

.text-red-dark {
  color: #A20B35 !important;
}

.text-gray {
  color: #A5ACB0 !important;
}

.text-gray-dark {
  color: #333E48 !important;
}

.text-gray-light {
  color: #E3E5E6 !important;
}

.text-primary {
  color: #A20B35 !important;
}

.text-secondary {
  color: #E31615 !important;
}

/* shared/title/title */

.button,
.button--disabled,
.button--stretched,
.month-calendar__button,
.button--white,
.button--black,
.button--snow,
.button--red,
.button--red-dark,
.button--gray,
.button--gray-dark,
.button--gray-light,
.button--primary,
.button--secondary,
.button--placeholder,
.form-errors__title,
.menu,
.table thead,
.tabs,
h1,
.title,
h2,
.medium-title,
h3,
.small-title,
h4,
.smaller-title,
.help-feature-list,
h5,
.tiny-title,
.form-label,
h6,
.text-title,
.history__line:after {
  font-family: Sanchez, sans-serif;
  line-height: 1.25;
}

h1,
.title {
  font-size: 1.88571em;
}

@media screen and (min-width: 40em) {
  h1,
  .title {
    font-size: 2.27143em;
  }
}

@media screen and (min-width: 64em) {
  h1,
  .title {
    font-size: 2.65714em;
  }
}

@media screen and (min-width: 75em) {
  h1,
  .title {
    font-size: 3.04286em;
  }
}

@media screen and (min-width: 90em) {
  h1,
  .title {
    font-size: 3.42857em;
  }
}

h2,
.medium-title {
  font-size: 1.71429em;
  letter-spacing: 0.006em;
}

@media screen and (min-width: 40em) {
  h2,
  .medium-title {
    font-size: 1.92857em;
  }
}

@media screen and (min-width: 64em) {
  h2,
  .medium-title {
    font-size: 2.14286em;
  }
}

@media screen and (min-width: 75em) {
  h2,
  .medium-title {
    font-size: 2.35714em;
  }
}

@media screen and (min-width: 90em) {
  h2,
  .medium-title {
    font-size: 2.57143em;
  }
}

h3,
.small-title {
  font-size: 1.54286em;
}

@media screen and (min-width: 40em) {
  h3,
  .small-title {
    font-size: 1.58571em;
  }
}

@media screen and (min-width: 64em) {
  h3,
  .small-title {
    font-size: 1.62857em;
  }
}

@media screen and (min-width: 75em) {
  h3,
  .small-title {
    font-size: 1.67143em;
  }
}

@media screen and (min-width: 90em) {
  h3,
  .small-title {
    font-size: 1.71429em;
  }
}

h4,
.smaller-title,
.help-feature-list {
  font-size: 1.13714em;
}

@media screen and (min-width: 40em) {
  h4,
  .smaller-title,
  .help-feature-list {
    font-size: 1.17429em;
  }
}

@media screen and (min-width: 64em) {
  h4,
  .smaller-title,
  .help-feature-list {
    font-size: 1.21143em;
  }
}

@media screen and (min-width: 75em) {
  h4,
  .smaller-title,
  .help-feature-list {
    font-size: 1.24857em;
  }
}

@media screen and (min-width: 90em) {
  h4,
  .smaller-title,
  .help-feature-list {
    font-size: 1.28571em;
  }
}

h5,
.tiny-title,
.form-label {
  font-size: 1.142857143em;
}

/* shared/top-bar/top-bar */

.top-bar {
  padding-top: 0;
  padding-bottom: 0;
  color: white;
  line-height: 3.5;
}

.top-bar__menu {
  display: -ms-flexbox;
  display: flex;
}

.top-bar__menu > li + li {
  margin-left: 2em;
}

@media screen and (min-width: 64em) {
  .top-bar__menu {
    display: none;
  }
}

.top-bar__logo {
  background: url(/assets/shared/top-bar/logo.png) center no-repeat;
  background-size: contain;
  height: 17px;
  width: 84px;
  display: inline-block;
  vertical-align: middle;
}

.top-bar .icon,
.top-bar .tiny-icon,
.top-bar .small-icon,
.top-bar .medium-icon,
.top-bar .big-icon {
  font-size: 1.5em;
}

/* account/account */

@media screen and (max-width: 39.9375em) {
  .account-grid-wrap {
    margin-left: -25px;
    margin-right: -25px;
  }

  .account-grid-wrap > .grid-x > div + div {
    margin-top: -21px;
  }

  .account-grid-wrap .card,
  .account-grid-wrap .card--selectable,
  .account-grid-wrap .overlay__card,
  .account-grid-wrap .popup__content,
  .account-grid-wrap .sign-up-sidebar {
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .account-grid-wrap .card + .card:before,
  .account-grid-wrap .card--selectable + .card:before,
  .account-grid-wrap .overlay__card + .card:before,
  .account-grid-wrap .popup__content + .card:before,
  .account-grid-wrap .sign-up-sidebar + .card:before,
  .account-grid-wrap .card + .card--selectable:before,
  .account-grid-wrap .card--selectable + .card--selectable:before,
  .account-grid-wrap .overlay__card + .card--selectable:before,
  .account-grid-wrap .popup__content + .card--selectable:before,
  .account-grid-wrap .sign-up-sidebar + .card--selectable:before,
  .account-grid-wrap .card + .overlay__card:before,
  .account-grid-wrap .card--selectable + .overlay__card:before,
  .account-grid-wrap .overlay__card + .overlay__card:before,
  .account-grid-wrap .popup__content + .overlay__card:before,
  .account-grid-wrap .sign-up-sidebar + .overlay__card:before,
  .account-grid-wrap .card + .popup__content:before,
  .account-grid-wrap .card--selectable + .popup__content:before,
  .account-grid-wrap .overlay__card + .popup__content:before,
  .account-grid-wrap .popup__content + .popup__content:before,
  .account-grid-wrap .sign-up-sidebar + .popup__content:before,
  .account-grid-wrap .card + .sign-up-sidebar:before,
  .account-grid-wrap .card--selectable + .sign-up-sidebar:before,
  .account-grid-wrap .overlay__card + .sign-up-sidebar:before,
  .account-grid-wrap .popup__content + .sign-up-sidebar:before,
  .account-grid-wrap .sign-up-sidebar + .sign-up-sidebar:before {
    content: "";
    display: block;
    border-top: 1px solid #E3E5E6;
    margin-top: -29px;
    margin-bottom: 29px;
  }
}

/* home/home */

.home-sign-in {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #F8F8F8;
  border: 1px solid #E3E5E6;
}

@media screen and (min-width: 75em) {
  .home-sign-in {
    padding: 60.9px 65.1px;
  }
}

/* search/search */

.search-state {
  font-family: Sanchez, sans-serif;
  position: absolute;
  right: 0;
  z-index: 5;
  top: 30%;
}

.search-state .dropdown.inline-select {
  width: 8em;
}

@media screen and (max-width: 63.9375em) {
  .search-state {
    top: -65px;
    color: white;
    border: 1px solid;
    border-radius: 0.2em;
    padding: 0.3em 0.6em 0.5em;
  }

  .search-state .icon,
  .search-state .tiny-icon,
  .search-state .small-icon,
  .search-state .medium-icon,
  .search-state .big-icon {
    display: none;
  }

  .search-state .dropdown-arrow {
    background-image: url(/assets/search/chevron.svg);
  }
}

@media screen and (min-width: 40em) {
  .search-state {
    font-size: 1.285714286em;
  }

  .search-state .icon,
  .search-state .tiny-icon,
  .search-state .small-icon,
  .search-state .medium-icon,
  .search-state .big-icon {
    font-size: 1.8em;
  }
}

.search-form {
  box-shadow: 0 4px 7px 1px rgba(0, 0, 0, 0.075);
  background: #F8F8F8;
  position: relative;
}

@media screen and (min-width: 40em) {
  .search-form {
    padding-top: 31.5px;
    padding-bottom: 31.5px;
  }
}

.search-form__refine {
  text-align: right;
}

@media screen and (min-width: 64em) {
  .search-form__refine {
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
  }
}

.history {
  counter-reset: history;
  padding-left: 15.75px;
  padding-bottom: 1em;
  overflow: hidden;
}

@media screen and (min-width: 64em) {
  .history {
    padding-left: 0;
    margin-left: -42px;
  }
}

.history table {
  width: 100%;
}

.history td {
  padding: 0 42px 42px;
}

.history tr:last-child td {
  padding-bottom: 0;
}

.history__shrink {
  white-space: nowrap;
  width: 1%;
}

.history__line {
  border-left: 1px solid #A5ACB0;
  position: relative;
}

.history__line:before {
  content: "";
  position: absolute;
  top: -0.5em;
  left: -1.5em;
  width: 3em;
  height: 3em;
  background: white;
  display: block;
}

tr:last-child .history__line:before {
  height: 1000em;
}

.history__line:after {
  counter-increment: history;
  content: counter(history);
  position: absolute;
  top: 0;
  left: -1em;
  display: inline-block;
  background: #333E48;
  color: white;
  line-height: 2em;
  width: 2em;
  text-align: center;
  border-radius: 50%;
}

.history__bordered {
  border-left: 1px solid #E3E5E6;
}

/* sign-up/sign-up */

@media screen and (min-width: 64em) {
  .sign-up-sidebar {
    padding: 42px;
  }
}

.sign-up-sidebar-container {
  display: block;
  padding-top: 21px;
}

.sign-up-sidebar,
.sign-up-sidebar .steps__step:after {
  background: #E3E5E6;
}

/* help/help */

.help-sidebar ul {
  margin-top: -21px;
  margin-bottom: 105px;
}

.help-sidebar a {
  display: block;
  padding: 21px 0;
  border-bottom: 1px solid #A5ACB0;
}

.help-sidebar .icon,
.help-sidebar .tiny-icon,
.help-sidebar .small-icon,
.help-sidebar .medium-icon,
.help-sidebar .big-icon {
  font-size: 1.5em;
  min-width: 1.5em;
  text-align: center;
  margin-right: 0.25em;
}

.help-sidebar .active {
  font-weight: 600;
}

.help-sidebar .active .icon,
.help-sidebar .active .tiny-icon,
.help-sidebar .active .small-icon,
.help-sidebar .active .medium-icon,
.help-sidebar .active .big-icon {
  color: #E31615;
}

.help-feature-list {
  padding-left: 21px;
}

@media screen and (min-width: 64em) {
  .help-feature-list {
    padding-left: 42px;
  }

  .help-feature-list > li + li {
    margin-top: 42px !important;
  }
}

.help-feature-list__mark {
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #E31615;
  font-size: 0.8em;
  vertical-align: 0.1em;
}

.help-feature-list__major:before {
  top: -0.4em !important;
  left: -1.5em !important;
  height: 2em !important;
  width: 2em !important;
  background: url(/assets/help/star.svg) center no-repeat !important;
  background-size: cover !important;
  border: none !important;
}

.help-feature-list ul {
  padding-top: 21px;
  font-size: 0.8em;
}

.sticky {
  position: fixed;
}

.sticky.bottom {
  position: absolute;
}

input, select {
  box-shadow: none !important;
  outline: none !important;
}

.touched:invalid {
  border: 1px solid #E31615;
  box-shadow: 0 0 1px 2px rgba(227, 22, 21, .5) !important;
}

.sign-up-form fieldset {
  display: none;
}

.error {
  color: #E31615;
  display: none;
  margin-top: 14px;
}

.backenderror {
  border: 1px solid #E31615;
  box-shadow: 0 0 1px 2px rgba(227, 22, 21, .5) !important;
	
}

#error{
	 border: 1px solid #E31615;
	 box-shadow: 0 0 1px 2px rgba(227, 22, 21, .5) !important;
}

.circle-stack {
  display: inline-block;
  position: relative;
}

.fa-circle-thin,
.points-indicator {
  position: absolute;
  top: 0;
  left: 0;
}

.fa-circle {
  font-size: 22px;
}


.level-0{
	color:#ECEBEB;
}

.level-1{
	color:#FF0000;
}

.level-2{
	color:#FF7F50;
}
.level-3{
	color:#FF4500;
}
.level-4{
	color:#FFD700;
}
.level-5{
	color:#FFA500;
}
.level-6{
	color:#FFFFE0;
}
.level-7{
	color:#FFDAB9;
}
.level-8{
	color:#7CFC00;
}
.level-9{
	color:#FA8072;
}
.level-10{
	color:#FFA07A;
}

.points-indicator {
  color: #0a0a0a;
  font-weight: bold;
  font-size: 10px;
  line-height: 18px;
  display: inline-block;
  width: 100%;
  text-align: center;
}



.hoverable.col > app-table-expand-trigger.icon.icon-chevron.text-red-dark.table__chevron {
    transition: transform 0.2s ease-in-out;
}

.hoverable.col.clicked > app-table-expand-trigger.icon.icon-chevron.text-red-dark.table__chevron {
    transform: rotate(0deg);
}

td.never {
    display: none;
} 
 


