html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

h1 {
  margin: 0.67em 0;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input {
  line-height: normal;
}

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

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.row,
.column,
.columns {
  margin-bottom: 1.5rem;
}

.row:only-child {
  margin-bottom: 0;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
  /* For devices larger than 550px */
}

@media (min-width: 550px) {

  .column,
  .columns {
    margin-left: 2%;
    margin-bottom: 0;
  }

  .column:first-child,
  .column:only-child,
  .columns:first-child,
  .columns:only-child {
    margin-left: 0;
  }

  .column.eight,
  .columns.eight {
    width: 65.3333333334%;
  }

  .column.twelve,
  .columns.twelve {
    width: 100%;
    margin-left: 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
}

h1 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}

h2 {
  font-size: 2.1rem;
  line-height: 2.8rem;
}

h4 {
  font-size: 2.0rem;
  line-height: 2.4rem;
}

h5 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 3.3rem;
    line-height: 4.0rem;
  }

  h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
* {
  -ms-overflow-style: none;
}

html {
  height: 100%;
  /* font-size: 62.5%; */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  box-sizing: border-box;
  height: 100%;
  font-size: 1.4em;
  line-height: 2.0rem;
  font-weight: 400;
  font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
  color: #1a1a1a;
  background-color: #f4f6f8;
  margin: 0;
  padding: 0;
  text-align: center;
  fill: currentColor;
  text-transform: initial;
  letter-spacing: initial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  /* color: #637381; */
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #007ace;
  -webkit-transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1);
  transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1);
}

a:hover {
  color: #084e8a;
  outline: none;
}

a:focus {
  color: #084e8a;
  outline: none;
}

a:active {
  color: #084e8a;
  outline: none;
}

svg,
path {
  fill: currentColor;
}

.cross-svg-icon-svg path {
  fill: #d72c0d;
}
/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: disc outside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
  margin-left: 2.0rem;
  margin-bottom: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 0 0 0 3rem;
}

/* li {
  color: #637381;
} */

section {
  display: block;
  width: 100%;
  max-width: 1036px;
  text-align: left;
  margin: 0 auto;
}

@media (min-width: 550px) {
  section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    flex-direction: row;
  }
}

section+section {
  padding-top: 2rem;
  border-top: .1rem solid #d3dbe2;
}

section aside {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 2.0rem;
  box-sizing: border-box;
}

@media (min-width: 550px) {
  section aside {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 24.0rem;
    flex: 1 0 24.0rem;
  }
}

/* section aside h2 {
  margin: 0;
  padding: 2.0rem 0;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.6em;
} */

section aside p {
  color: #707070;
  line-height: 1.4;
}

section article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 550px) {
  section article {
    -webkit-box-flex: 2;
    -ms-flex: 2 1 48.0rem;
    flex: 2 1 48.0rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 2.0rem;
  }
}

section .card {
  display: inline-block;
  width: 100%;
  color: #1a1919;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 2.0rem;
  background-color: #ffffff;
  border-radius: 12px !important;
}

@media (min-width: 550px) {
  section .card {
    box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
    margin-bottom: 2.0rem;
  }
}

section .card p {
  color: #1a1919;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
main:after,
.row:after,
.cf {
  content: "";
  display: table;
  clear: both;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-width {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

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

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

.red {
  color: #ED6347;
}

.grey {
  color: #DFE4E8;
}

.overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

[class^="icon-"],
[class*=" icon-"] {
  position: relative;
  display: inline-block;
}

[class^="icon-"]:after,
[class*=" icon-"]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  min-width: 1.6rem;
  min-height: 1.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  /* IE requires pixels. Using cover/contain/rem values cause blurry edges */
}

[class^="icon-"].icon-arrow-left:after,
[class*=" icon-"].icon-arrow-left:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15.35'%3E%3Cpath fill='rgb(145,158,171)' d='M3.5,10.12H16.09a1,1,0,0,0,0-2H3.5l5-5A1,1,0,0,0,7.08,1.73l0,0L.38,8.42a1,1,0,0,0,0,1.41L7.05,16.5a1,1,0,1,0,1.42-1.41l-5-5Z' transform='translate(-0.09 -1.44)'/%3E%3C/svg%3E");
}

[class^="icon-"].icon-arrow-right:after,
[class*=" icon-"].icon-arrow-right:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15.35'%3E%3Cpath fill='rgb(145,158,171)' d='M13.68,8.11H1.09a1,1,0,0,0,0,2H13.68l-5,5a1,1,0,0,0,1.39,1.44l0,0L16.8,9.82a1,1,0,0,0,0-1.41L10.13,1.74A1,1,0,1,0,8.71,3.15l5,5Z' transform='translate(-0.09 -1.44)'/%3E%3C/svg%3E");
}

[class^="icon-"].icon-question:after,
[class*=" icon-"].icon-question:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle fill='%23ffffff' cx='10' cy='10' r='9' /%3E%3Cpath fill='rgb(145,158,171)' d='M10 0c-5.514 0-10 4.486-10 10s4.486 10 10 10 10-4.486 10-10-4.486-10-10-10m0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8m0-4c-.553 0-1 .447-1 1 0 .553.447 1 1 1 .553 0 1-.447 1-1 0-.553-.447-1-1-1m0-10c-1.654 0-3 1.346-3 3 0 .552.447 1 1 1 .553 0 1-.448 1-1 0-.551.448-1 1-1s1 .449 1 1c0 .322-.149.617-.409.808-1.011.74-1.591 1.808-1.591 2.929v.263c0 .553.447 1 1 1 .553 0 1-.447 1-1v-.263c0-.653.484-1.105.773-1.317.768-.564 1.227-1.468 1.227-2.42 0-1.654-1.346-3-3-3'/%3E%3C/svg%3E");
}

[class^="icon-"].icon-locked:after,
[class*=" icon-"].icon-locked:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M3 9h14v10H3V9z'/%3E%3Cpath fill='rgb(145,158,171)' d='M17 8c.553 0 1 .447 1 1v10c0 .553-.447 1-1 1H3c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1h1V6c0-3.31 2.69-6 6-6s6 2.69 6 6v2h1zM4 18h12v-8H4v8zM6 6v2h8V6c0-2.206-1.794-4-4-4S6 3.794 6 6zm4 10c.553 0 1-.447 1-1v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 .553.447 1 1 1z'/%3E%3C/svg%3E");
}

[class^="icon-"].icon-locked:after.disabled:after,
[class^="icon-"].icon-locked:after:disabled:after,
[class*=" icon-"].icon-locked:after.disabled:after,
[class*=" icon-"].icon-locked:after:disabled:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fff' d='M3 9h14v10H3V9z'/%3E%3Cpath fill='rgb(196,205,213)' d='M17 8c.553 0 1 .447 1 1v10c0 .553-.447 1-1 1H3c-.553 0-1-.447-1-1V9c0-.553.447-1 1-1h1V6c0-3.31 2.69-6 6-6s6 2.69 6 6v2h1zM4 18h12v-8H4v8zM6 6v2h8V6c0-2.206-1.794-4-4-4S6 3.794 6 6zm4 10c.553 0 1-.447 1-1v-2c0-.553-.447-1-1-1s-1 .447-1 1v2c0 .553.447 1 1 1z'/%3E%3C/svg%3E");
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* .button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  position: relative;
  display: inline-block;
  min-height: 2rem;
  min-width: 3.6rem;
  margin: 0;
  padding: .7rem 1.6rem;
  background: -webkit-linear-gradient(top, #6371c7, #5563c1);
  background: linear-gradient(180deg, #6371c7, #5563c1);
  border: .1rem solid #3f4eae;
  box-shadow: inset 0 1px 0 0 #6774c8, 0 1px 0 0 rgba(22, 29, 37, 0.05), 0 0 0 0 transparent;
  color: #fff;
  fill: #fff;
  border-radius: .3rem;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  -webkit-transition-property: background, border, box-shadow;
  transition-property: background, border, box-shadow;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: cubic-bezier(0.64, 0, 0.35, 1);
  transition-timing-function: cubic-bezier(0.64, 0, 0.35, 1);
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
  text-transform: none;
  font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
  font-weight: normal;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
} */

/* .button.link,
  button.link,
  input[type="submit"].link,
  input[type="reset"].link,
  input[type="button"].link {
    background: transparent;
    border: 0;
    box-shadow: none;
    text-decoration: none;
    color: #5c6ac4;
    -webkit-transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1);
    transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1); }
      .button.disabled, .button:disabled, .button:disabled:hover, .button:disabled:focus, 
  button.disabled,
  button:disabled,
  button:disabled:hover,
  button:disabled:focus,
  input[type="submit"].disabled,
  input[type="submit"]:disabled,
  input[type="submit"]:disabled:hover,
  input[type="submit"]:disabled:focus,
  input[type="submit"]:disabled:active,
  input[type="reset"].disabled,
  input[type="reset"]:disabled,
  input[type="reset"]:disabled:hover,
  input[type="reset"]:disabled:focus,
  input[type="reset"]:disabled:active,
  input[type="button"].disabled,
  input[type="button"]:disabled,
  input[type="button"]:disabled:hover,
  input[type="button"]:disabled:focus,
  input[type="button"]:disabled:active {
    cursor: not-allowed;
    fill: #919eab;
    background: #f4f6f8;
    color: #919eab;
    border: 1px solid #c4cdd5;
    box-shadow: none; } */

/* .button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  text-decoration: none;
  color: #fff;
  fill: #fff;
  outline: 0;
  border-color: #202e78;
  box-shadow: inset 0 1px 0 0 #6f7bcb, 0 1px 0 0 rgba(22, 29, 37, 0.05), 0 0 0 1px #202e78;
} */

/* .button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  text-decoration: none;
  color: #fff;
  fill: #fff;
  background: -webkit-linear-gradient(top, #3f4eae, #3f4eae);
  background: linear-gradient(180deg, #3f4eae, #3f4eae);
  border-color: #38469b;
  box-shadow: inset 0 0 0 0 transparent, 0 1px 0 0 rgba(22, 29, 37, 0.05), 0 0 1px 0 #38469b;
} */

/* .button.secondary,
button.secondary,
input[type="submit"].secondary,
input[type="reset"].secondary,
input[type="button"].secondary {
  fill: #637381;
  color: #212b36;
  background: -webkit-linear-gradient(top, #fff, #f9fafb);
  background: linear-gradient(180deg, #fff, #f9fafb);
  border: 1px solid #c4cdd5;
  box-shadow: 0 1px 0 0 rgba(22, 29, 37, 0.05);
}

.button.secondary:hover,
button.secondary:hover,
input[type="submit"].secondary:hover,
input[type="reset"].secondary:hover,
input[type="button"].secondary:hover {
  fill: #637381;
  color: #212b36;
  background: -webkit-linear-gradient(top, #f9fafb, #f4f6f8);
  background: linear-gradient(180deg, #f9fafb, #f4f6f8);
  border-color: #c4cdd5;
}

.button.secondary:focus,
button.secondary:focus,
input[type="submit"].secondary:focus,
input[type="reset"].secondary:focus,
input[type="button"].secondary:focus {
  fill: #637381;
  color: #212b36;
  border-color: #5c6ac4;
  outline: 0;
  box-shadow: 0 0 0 1px #5c6ac4;
}

.button.secondary:active,
button.secondary:active,
input[type="submit"].secondary:active,
input[type="reset"].secondary:active,
input[type="button"].secondary:active {
  fill: #637381;
  color: #212b36;
  background: -webkit-linear-gradient(top, #f4f6f8, #f4f6f8);
  background: linear-gradient(180deg, #f4f6f8, #f4f6f8);
  border-color: #c4cdd5;
  box-shadow: 0 0 0 0 transparent, inset 0 1px 1px 0 rgba(99, 115, 129, 0.1), inset 0 1px 4px 0 rgba(99, 115, 129, 0.2);
}

.button.link,
button.link,
input[type="submit"].link,
input[type="reset"].link,
input[type="button"].link {
  background: transparent;
  border: 0;
  box-shadow: none;
  text-decoration: none;
  color: #5c6ac4;
  -webkit-transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1);
  transition: color 0.24s cubic-bezier(0.64, 0, 0.35, 1);
}

.button.disabled,
.button:disabled,
.button:disabled:hover,
.button:disabled:focus,
.button:disabled:active,
button.disabled,
button:disabled,
button:disabled:hover,
button:disabled:focus,
button:disabled:active,
input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="submit"]:disabled:hover,
input[type="submit"]:disabled:focus,
input[type="submit"]:disabled:active,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="reset"]:disabled:hover,
input[type="reset"]:disabled:focus,
input[type="reset"]:disabled:active,
input[type="button"].disabled,
input[type="button"]:disabled,
input[type="button"]:disabled:hover,
input[type="button"]:disabled:focus,
input[type="button"]:disabled:active {
  cursor: not-allowed;
  fill: #919eab;
  background: #f4f6f8;
  color: #919eab;
  border: 1px solid #c4cdd5;
  box-shadow: none;
}

.button-group {
  margin-right: 5px; 
}
  .button-group .button,
  .button-group button {
    float: left;
    border-right-width: 0;
    border-radius: 0; } */

        /* .button-group .button:first-child,
    .button-group button:first-child {
      border-top-left-radius: .3rem;
      border-bottom-left-radius: .3rem; }
    .button-group .button:last-child
    /* ,.button-group button:last-child  */
    /* {
      border-right-width: .1rem;
      border-top-right-radius: .3rem;
      border-bottom-right-radius: .3rem; } */
/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  position: relative;
  padding: .5rem 1rem;
  background-color: #fff;
  border: .1rem solid #c4cdd5;
  border-radius: .3rem;
  color: #31373d;
  box-sizing: border-box;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  min-width: 7.5rem;
  vertical-align: baseline;
  height: auto;
  margin: 0;
  max-width: 100%;
  font-family: -apple-system, "BlinkMacSystemFont", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", sans-serif;
  box-shadow: 0 0 0 1px transparent, 0 1px 0 0 rgba(22, 29, 37, 0.05);
  box-sizing: border-box;
  -webkit-transition: box-shadow 0.2s cubic-bezier(0.64, 0, 0.35, 1);
  transition: box-shadow 0.2s cubic-bezier(0.64, 0, 0.35, 1);
}

select, 
input[type="number"] {
  min-width: unset;
}

/* input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #5c6ac4;
  box-shadow: inset 0 0 0 0 transparent, 0 0 0 .1rem #5c6ac4;
  outline: none;
} */

input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="url"]:disabled,
input[type="password"]:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  background-color: #F4F6F8;
  border: .1rem solid #DFE4E8;
  color: #C4CDD5;
}

/* input[type="email"][type=search],
input[type="number"][type=search],
input[type="search"][type=search],
input[type="text"][type=search],
input[type="tel"][type=search],
input[type="url"][type=search],
input[type="password"][type=search],
textarea[type=search],
select[type=search] {
  padding-left: 3.0rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='rgb(149,167,183)' d='M8 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm9.707 4.293l-4.82-4.82C13.585 10.493 14 9.296 14 8c0-3.313-2.687-6-6-6S2 4.687 2 8s2.687 6 6 6c1.296 0 2.492-.415 3.473-1.113l4.82 4.82c.195.195.45.293.707.293s.512-.098.707-.293c.39-.39.39-1.023 0-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  /* IE requires pixels. Using cover/contain/rem values cause blurry edges */
  /* background-position: top .8rem left .8rem; */
/* } */

input[type="search"][type="search"] {
  padding-left: 30px;
}

input[type="search"][type=search] {
  background-position: top .5rem left .5rem;
}

::-webkit-input-placeholder {
  color: #9e9e9e;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="radio"],
input[type="checkbox"],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  min-height: 3.4rem;
} */

.side-elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

select, 
input[type="number"] {
  min-width: unset;
}

input[type="number"] {
  min-width: 4rem;
}

select {
  padding-right: 3.2rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='rgb(99,115,129)' d='M13 8l-3-3-3 3h6zm-.1 4L10 14.9 7.1 12h5.8z' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
  background-size: 21px 21px;
  /* IE requires pixels. Using cover/contain/rem values cause blurry edges */
  background-repeat: no-repeat;
  background-position: right 0.7rem top 0.7rem;
  box-shadow: 0 0 0 1px transparent, 0 1px 0 0 rgba(22, 29, 37, 0.05);
}

select:disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='rgb(145,158,171)' d='M13 8l-3-3-3 3h6zm-.1 4L10 14.9 7.1 12h5.8z' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
  box-shadow: none;
}

textarea {
  min-height: 6.5rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
}

label,
legend {
  display: block;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  position: relative;
  display: inline-block;
  height: 1.6rem;
  width: 1.6rem;
  border: .1rem solid #c4cdd5;
  background: -webkit-linear-gradient(top, #fff, #f9fafb);
  background: linear-gradient(180deg, #fff, #f9fafb);
  box-shadow: 0 0 0 1px transparent, 0 1px 0 0 rgba(22, 29, 37, 0.05);
  margin: 0 1rem 0 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: text-bottom;
}

input[type="checkbox"]:checked:after,
input[type="radio"]:checked:after {
  content: '';
  position: absolute;
}

/* input[type="checkbox"]:active,
input[type="radio"]:active {
  border: .1rem solid #5c6ac4;
  box-shadow: 0 0 0 .1rem #5c6ac4;
} */

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: none;
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  cursor: not-allowed;
  background-color: #fafbfc;
  border: .1rem solid #ebeef0;
  box-shadow: none;
  color: #c3cfd8;
}

input[type="checkbox"] {
  border-radius: .3rem;
}

input[type="checkbox"]:disabled:checked:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' enable-background='new 0 0 24 24'%3E%3Cpath fill='rgb(196,205,213)' d='M23.6 5L22 3.4c-.5-.4-1.2-.4-1.7 0L8.5 15l-4.8-4.7c-.5-.4-1.2-.4-1.7 0L.3 11.9c-.5.4-.5 1.2 0 1.6l7.3 7.1c.5.4 1.2.4 1.7 0l14.3-14c.5-.4.5-1.1 0-1.6z'/%3E%3C/svg%3E");
}

input[type="checkbox"]:checked:after {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' enable-background='new 0 0 24 24'%3E%3Cpath fill='rgb(92,106,196)' d='M23.6 5L22 3.4c-.5-.4-1.2-.4-1.7 0L8.5 15l-4.8-4.7c-.5-.4-1.2-.4-1.7 0L.3 11.9c-.5.4-.5 1.2 0 1.6l7.3 7.1c.5.4 1.2.4 1.7 0l14.3-14c.5-.4.5-1.1 0-1.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  /* IE requires pixels. Using cover/contain/rem values cause blurry edges */
  top: .1rem;
  left: .1rem;
}

input[type="radio"] {
  border-radius: .8rem;
}

input[type="radio"]:checked:after {
  width: .8rem;
  height: .8rem;
  background-color: #5c6ac4;
  border-radius: .5rem;
  top: .3rem;
  left: .3rem;
}

label {
  display: block;
  color: #212B35;
  font-weight: normal;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* table {
  width: 100%;
}

table tbody tr:nth-child(odd) {
  background: #fafbfc;
}

table tbody tr:last-child td {
  border-bottom-width: 0;
}

table th,
table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
}

table th {
  font-weight: normal;
  border-bottom: .1rem solid #d3dbe2;
} */

/* table th:hover {
  cursor: pointer;
} */

/* Tags
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tag {
  position: relative;
  display: inline-block;
  border-radius: .3rem;
  margin-right: .5rem;
  padding: 0 1rem;
  line-height: 2.8rem;
  vertical-align: middle;
}

.tag.grey {
  background-color: #dfe3e8;
  color: #212b36;
}

/* Tabs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  box-shadow: inset 0 -1px 0 0 #dfe3e8;
}

.tabs li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 1.6rem;
}

.tabs li a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3.6rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  /* color: #637381; */
  padding-top: .3rem;
  border-bottom: .3rem solid transparent;
}

.tabs li a:hover {
  outline: none;
  color: #212b36;
  border-color: #dfe3e8;
  text-decoration: none;
}

.tabs li.active a,
.tabs li:first-child:last-child a {
  color: #212b36;
  cursor: default;
  text-decoration: none;
  border-color: #5c6ac4;
}

/* Notice Banners
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  padding: 1.6rem;
  color: #31373d;
  margin: -2.0rem -2.0rem 4.0rem -2.0rem;
  padding-left: 6.0rem;
  text-align: left;
  border-radius: 0 0 3px 3px;
  background-color: #f4f6f8;
  box-shadow: inset 0 3px 0 0 #637381, inset 0 0 0 0 transparent, 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
}

@media (min-width: 550px) {
  .alert {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 0 2.0rem 0;
  }
}

.alert:before,
.alert:after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 3rem;
  height: 3rem;
}

.alert:before {
  z-index: 1;
  border-radius: 50%;
  background: #dfe3e8;
}

.alert:after {
  z-index: 2;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020.03%2020%22%3E%3Ctitle%3Etext%3C%2Ftitle%3E%3Cpath%20d%3D%22M1.65%2C18.33A2.22%2C2.22%2C0%2C0%2C0%2C4%2C18.85L13%2C14%2C6%2C7%2C1.13%2C16a2.22%2C2.22%2C0%2C0%2C0%2C.52%2C2.33%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M6.71%2C6.29a1%2C1%2C0%2C0%2C0-1.59.23l-4.87%2C9-.06.13a3.22%2C3.22%2C0%2C0%2C0%2C4.13%2C4.13l.13-.06%2C9-4.85a1%2C1%2C0%2C0%2C0%2C.23-1.59ZM3.58%2C17.93A1.22%2C1.22%2C0%2C0%2C1%2C2.05%2C16.4L6.24%2C8.66l5.1%2C5.1ZM15%2C4a1%2C1%2C0%2C0%2C1%2C1%2C1%2C1%2C1%2C0%2C0%2C0%2C2%2C0%2C1%2C1%2C0%2C0%2C1%2C1-1%2C1%2C1%2C0%2C0%2C0%2C0-2%2C1%2C1%2C0%2C0%2C1-1-1%2C1%2C1%2C0%2C0%2C0-2%2C0%2C1%2C1%2C0%2C0%2C1-1%2C1%2C1%2C1%2C0%2C0%2C0%2C0%2C2M1%2C4A1%2C1%2C0%2C0%2C1%2C2%2C5%2C1%2C1%2C0%2C0%2C0%2C4%2C5%2C1%2C1%2C0%2C0%2C1%2C5%2C4%2C1%2C1%2C0%2C0%2C0%2C5%2C2%2C1%2C1%2C0%2C0%2C1%2C4%2C1%2C1%2C1%2C0%2C0%2C0%2C2%2C1%2C1%2C1%2C0%2C0%2C1%2C1%2C2%2C1%2C1%2C0%2C0%2C0%2C1%2C4M19%2C16a1%2C1%2C0%2C0%2C1-1-1%2C1%2C1%2C0%2C0%2C0-2%2C0%2C1%2C1%2C0%2C0%2C1-1%2C1%2C1%2C1%2C0%2C0%2C0%2C0%2C2%2C1%2C1%2C0%2C0%2C1%2C1%2C1%2C1%2C1%2C0%2C0%2C0%2C2%2C0%2C1%2C1%2C0%2C0%2C1%2C1-1%2C1%2C1%2C0%2C0%2C0%2C0-2M12%2C9a1%2C1%2C0%2C0%2C0%2C.71-.29l1-1a1%2C1%2C0%2C1%2C0-1.41-1.41l-1%2C1A1%2C1%2C0%2C0%2C0%2C12%2C9m6.68.05-3%2C1A1%2C1%2C0%2C0%2C0%2C16.25%2C12l.06%2C0%2C3-1A1%2C1%2C0%2C0%2C0%2C18.75%2C9l-.06%2C0m-10-4.1a1%2C1%2C0%2C0%2C0%2C1.27-.63l1-3A1%2C1%2C0%2C0%2C0%2C9.05.68l-1%2C3a1%2C1%2C0%2C0%2C0%2C.63%2C1.26%22%20fill%3D%22%23212b36%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  /* IE requires pixels. Using cover/contain/rem values cause blurry edges */
  background-position: center;
}

.alert.notice {
  background-color: #e0f5f5;
  box-shadow: inset 0 3px 0 0 #47c1bf, inset 0 0 0 0 transparent, 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
}

.alert.notice:before {
  background: #b7ecec;
}

.alert.notice:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Ctitle%3Etext%3C%2Ftitle%3E%3Cpath%20d%3D%22M2%2C3H13V7h6l-2%2C4%2C2%2C4H8V11H3%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M16.1%2C11.45%2C17.38%2C14H9V12h4a1%2C1%2C0%2C0%2C0%2C1-1V8h3.38l-1.27%2C2.55a1%2C1%2C0%2C0%2C0%2C0%2C.9ZM2.69%2C4H12v6H4L2.69%2C4Zm15.43%2C7%2C1.77-3.55A1%2C1%2C0%2C0%2C0%2C19%2C6H14V3a1%2C1%2C0%2C0%2C0-1-1H2.25L2%2C.78a1%2C1%2C0%2C1%2C0-2%2C.43l4%2C18a1%2C1%2C0%2C0%2C0%2C2-.43H6L4.47%2C12H7v3a1%2C1%2C0%2C0%2C0%2C1%2C1H19a1%2C1%2C0%2C0%2C0%2C.89-1.45L18.12%2C11Z%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%2300848e%22%2F%3E%3C%2Fsvg%3E");
}

.alert.error {
  background-color: #fbeae5;
  box-shadow: inset 0 3px 0 0 #ed6347, inset 0 0 0 0 transparent, 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15);
}

.alert.error:before {
  background: #fead9a;
}

.alert.error:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Ctitle%3Etext%3C%2Ftitle%3E%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M10%2C0A10%2C10%2C0%2C1%2C0%2C20%2C10%2C10%2C10%2C0%2C0%2C0%2C10%2C0Zm0%2C2.5a7.46%2C7.46%2C0%2C0%2C1%2C4.34%2C1.39L3.89%2C14.34A7.49%2C7.49%2C0%2C0%2C1%2C10%2C2.5Zm0%2C15a7.46%2C7.46%2C0%2C0%2C1-4.34-1.39L16.11%2C5.66A7.49%2C7.49%2C0%2C0%2C1%2C10%2C17.5Z%22%20fill%3D%22%23bf0711%22%2F%3E%3C%2Fsvg%3E");
}

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
  display: block;
  position: relative;
  width: 100%;
  min-height: 20.0rem;
  text-align: center;
  background-color: #ddd;
  padding-top: 4.5rem;
  box-sizing: border-box;
}

/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  margin: 4.0rem 0;
  text-align: center;
  width: 100%;
}