@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,400,400i,500,600,700,800%7CInter+Mono:400,600);
html, body {
  color: #505050;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  height: 100%;
}

a, input, textarea {
  color: #505050;
}

 /* The font style on `html, body` above was being overridden by a user agent
    stylesheet. This make button text match other elements.  */
button {
  font-family: 'Inter', sans-serif;
}

input:not([type]):not([role="combobox"]),
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  border: 1px solid #D3DEE5;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 0.2em;
  transition: border-color 80ms linear;
}

input:not([type]):not([role="combobox"]):focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #1E7BED;
  outline: none;
}

.button {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  border: none;
  color: var(--gray-dark);
  padding: 8px 18px;
  display: inline-block;
  cursor: pointer;
  line-height: normal;
  text-decoration: none;
  transition: all linear 80ms;
  vertical-align: middle;
  border-width: 2px;
  border-style: solid;
  border-radius: 0;
}

.button:hover {
  filter: brightness(1.1);
}

.button:active {
  filter: brightness(1.2);
}

.button:focus {
  outline: none;
  box-shadow: none;
}

.button:visited {
  text-decoration: none;
}

.button--blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
}

.button--grayline {
  background: white;
  border: 1px solid var(--blue-medium);
}

.button--red {
  background-color: var(--red);
  border-color: var(--red);
  color: white;
}

.button--teal {
  background-color: var(--teal);
  border-color: var(--teal);
  color: white;
}

.button--yellow {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: white;
}

.button--link {
  background: none;
  color: var(--blue);
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  vertical-align: inherit;
}

.button--full-width {
  width: 100%;
}

.button--is-disabled {
  border-color: var(--blue-medium);
  background: var(--blue-medium);
  color: rgba(var(--gray-dark), 0.3);
}

.button--is-disabled:hover {
  border-color: var(--blue-medium);
  background: var(--blue-medium);
  color: rgba(var(--gray-dark), 0.3);
  filter: none;
  cursor: not-allowed;
}

.button--bordered {
  background-color: white;
  border-style: solid;
  border-width: 2px;
  border-color: black;
}

.button--bordered:hover {
  filter: brightness(1.3);
}

.button--bordered:focus {
  border-style: solid;
  border-width: 2px;
}

.button--bordered--blue {
  border-color: var(--blue);
  color: var(--blue);
}

.button--bordered--red {
  border-color: var(--red);
  color: var(--red);
}

.button--anchor-like {
  background: unset;
  border: unset;
  border-bottom: 2px solid transparent;
  color: var(--blue);
  cursor: pointer;
  font-size: 15px;
  padding: unset;
  transition: border-bottom-color 80ms linear;
}

.browser--ie11 .button--anchor-like {
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.button--anchor-like:focus,
.button--anchor-like:hover {
  border-bottom-color: currentColor;
  outline: none;
}

.button--anchor-like--is-disabled {
  color: var(--gray);
}

.button--anchor-like--is-disabled:focus,
.button--anchor-like--is-disabled:hover {
  border-bottom-color: rgba(0, 0, 0, 0);
  outline: none;
  color: var(--gray);
  cursor: not-allowed;
  filter: none;
}

.button-list + .button-list {
  margin-left: 12px;
}

:root {
  --best-friend-blue: #54bbff;
  --blue: #1E7BED;
  --blue-dark: #26496C;
  --blue-medium: #D3DEE5;
  --blue-pale: #EEF7FF;
  --green: #6FDBA9;
  --green-medium: #B9EFD5;
  --green-pale: #F0FBF6;
  --red: #FD9786;
  --red-medium: #FFAB9D;
  --red-pale: #FEF4F2;
  --teal: #6FCFDB;
  --teal-medium: #B7E7EE;
  --teal-pale: #F0FAFB;
  --violet: #414FCC;
  --violet-medium: #B9BDEF;
  --violet-pale: #ECEDF9;
  --yellow: #FECB6E;
  --yellow-medium: #FFDA97;
  --yellow-pale: #FEF9EF;
  --black: #000000;
  --gray-light: #A4A4A4;
  --gray-dark: #505050;
  --gray-medium: #F1EDED;
  --gray: #E5E5E5;
  --white: #FFFFFF;
}

:root {
  --thin: 100;
  --extraLight: 200;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extraBold: 800;
}

.layout--central-column {
  margin: 0 auto;
  max-width: 1200px;
  padding: 32px;
}

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

.layout--text-column {
  margin: 0 auto;
  max-width: 600px;
}

.select * {
  cursor: pointer;
}

.select.is-focused:not(.is-open) > .Select-control {
  border-color: #1E7BED;
}

.select.is-open > .Select-control .Select-arrow {
  border-bottom-color: #505050;
}

.select .Select-arrow,
.select.is-open .Select-arrow,
.select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #505050;
}

.select .Select-control {
  border-color: #505050;
  border-radius: 0;
  border-width: 2px;
}

.select .Select-input {
  height: 30px;
}

.select .Select-menu-outer {
  border-color: #505050;
  border-width: 1px 2px 2px 2px;
}

.select .Select-option,
.select.has-value.Select--single
  > .Select-control .Select-value .Select-value-label,
.select.has-value.is-pseudo-focused.Select--single
  > .Select-control .Select-value .Select-value-label {
  color: #505050;
  white-space: nowrap;
}

.select .Select-option.is-focused {
  background-color: #EEF7FF;
  color: #505050;
}

.select .Select-placeholder {
  color: #505050;
  line-height: 32px;
}

/* select-light provides blue_medium borders */

.select--light.is-open > .Select-control .Select-arrow {
  border-bottom-color: #D3DEE5;
}

.select--light .Select-arrow,
.select--light.is-open .Select-arrow,
.select--light .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #D3DEE5;
}

.select--light .Select-control {
  border-color: #D3DEE5;
}

.select--light .Select-menu-outer {
  border-color: #D3DEE5;
}

/* Opt-in element styling for pure document ("non app") markup. Place the
   document-style class on the furthest parent that contains "typeset" content.
   Within, use sections for doc hierarchy rather than h* tags other than 1 (h2+
   are more or less legacy now with the new outlining algorithm).
*/

.document-style {
  font-weight: 300;
  line-height: 1.5;
}

.document-style a:not(.button) {
  border-bottom: 1px solid transparent;
  color: #1E7BED;
  text-decoration: none;
  transition: all 100ms linear;
}

.document-style a:not(.button):hover {
  border-bottom-color: #1E7BED;
}

.document-style a:not(.button):active {
  border-bottom-color: #414FCC;
  color: #414FCC;
}

.document-style h1 {
  border-bottom: 2px solid currentColor;
  font-size: 15px;
  font-weight: 600;
  margin: 1em 0;
  padding-bottom: 5px;
}

.document-style p {
  font-size: 15px;
  margin: 1em 0;
}

.document-style section {
  margin-bottom: 2em;
}

/* Specific repeated text styles */

.text--link {
  border-bottom: 1px solid transparent;
  color: #1E7BED;
  text-decoration: none;
  transition: all 100ms linear;
}

.text--link:hover {
  border-bottom-color: #1E7BED;
}

.text--link:active {
  border-bottom-color: #414FCC;
  color: #414FCC;
}

.text--code {
  display: inline-block;
  font-family: monospace;
  font-style: normal;
  padding: 0 3px;
  font-size: 1.15em;
}

.text--note {
  font-size: 15px;
  font-weight: 300;
  margin: 0px 0px 18px 0px;
  line-height: 1.5;
}


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