@charset "UTF-8";
/* =========================================================================
   #SASS-VARIABLES
   ========================================================================= */
/* Dimensions
   ========================================================================= */
/**
 * List of strings describing a media query breakpoint and their associated
 * min-widths in em. Expand this list where needed. All breakpoints should be
 * em-based unless you have a very good reason not to.
 *
 * The $breakpoints can be used for all media queries you write, but are
 * automated in the respond-to mixin as defined in _mixins.scss.
 */
/* Colors
   ========================================================================= */
/**
 * We're using http://chir.ag/projects/name-that-color/ for variable names
 */
/**
 * The color scales were generated via https://cloudflare.design/color/
 * Go to the "Palx" menu item, enter a base color and it will generate a
 * whole palette, including a light to dark scale of the color you entered.
 */
/**
 * You ideally shouldn't use these color names directly. Instead write a
 * rule to use the display-color with a level of shading. Our color scale
 * is made of 10 shades, from light to dark.
 *
 * Note that sass lists aren't arrays, the smallest `n` is 1, not 0.
 *
 * Usage example:
 * `nth($display-color-scale, 10)` will result in $c--voodoo being used.
 */
/* =========================================================================
   #SASS-MIXINS
   ========================================================================= */
/**
 * Applying hover, active and focus state in one go.
 * Idea from Harry Roberts and Chris Eppstein.
 */
/* fixed aspect ratio */
/**
 * Aspect ratio with min height, children can make the
 * container higher when needed.
 *
 * Only works for viewport-filling content.
 */
/* Media Queries
   ========================================================================= */
/**
 * Adds css that only applies for a viewport wider than $breakpoint to your
 * ruleset. This is only for simple min-width media queries. Min-width because
 * we are using a mobile first approach. And no other media queries, because
 * those are either highly specific and don't require a mixin, or have their
 * own mixin that fits their use case more (i.e. retina). Sass allows nesting of
 * media queries, so combine them through that, no need to write a new query.
 *
 * The $breakpoints map is in _variables.scss.
 *
 * Usage: Inside your selector
 * @include respond-to('ideal') {
 *   padding: 2em;
 * }
 *
 */
/**
 * Only applies css for retina screens
 */
/**
 * Only applies css for a specific screen orientation (landscape or portrait)
 */
/**
 * Forms
 */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* =========================================================================
   #SASS-MIXINS
   ========================================================================= */
/**
 * Applying hover, active and focus state in one go.
 * Idea from Harry Roberts and Chris Eppstein.
 */
/* fixed aspect ratio */
/**
 * Aspect ratio with min height, children can make the
 * container higher when needed.
 *
 * Only works for viewport-filling content.
 */
/* Media Queries
   ========================================================================= */
/**
 * Adds css that only applies for a viewport wider than $breakpoint to your
 * ruleset. This is only for simple min-width media queries. Min-width because
 * we are using a mobile first approach. And no other media queries, because
 * those are either highly specific and don't require a mixin, or have their
 * own mixin that fits their use case more (i.e. retina). Sass allows nesting of
 * media queries, so combine them through that, no need to write a new query.
 *
 * The $breakpoints map is in _variables.scss.
 *
 * Usage: Inside your selector
 * @include respond-to('ideal') {
 *   padding: 2em;
 * }
 *
 */
/**
 * Only applies css for retina screens
 */
/**
 * Only applies css for a specific screen orientation (landscape or portrait)
 */
/**
 * Forms
 */
/* =========================================================================
   #BASE-STYLES
   ========================================================================= */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 100%;
}

body {
  min-height: 100%;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.3em;
  background-color: #faf9fa;
  color: #222222;
}
@media (min-width: 61.5em) {
  body {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: normal;
}

h1 {
  font-size: 1.5em;
  font-weight: bold;
}

h2 {
  font-size: 1.2em;
  line-height: 1.2;
  font-weight: bold;
}

a {
  color: #4e3850;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 120ms ease;
}
a.inverted {
  color: #c9c2c9;
}
a.inverted:hover, a.inverted:active, a.inverted:focus {
  color: #c9c2c9;
  border-bottom: 2px solid #c9c2c9;
  transition: border-color 120ms ease;
}
a:hover, a:active, a:focus {
  color: #4e3850;
  border-bottom: 2px solid #4e3850;
  transition: border-color 120ms ease;
}

img {
  max-width: 100%;
}

button {
  cursor: pointer;
}

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

cite,
address {
  font-style: normal;
}

svg.inline {
  position: relative;
  top: 0.125em;
  height: 1em;
  width: 1em;
}

.u-list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
  /**
   * Safari drops list semantics if `list-style: none` is used.
   * This hack re-adds them by adding a zero-width space as before element.
   * https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html
   */
}
.u-list-reset:before {
  content: "​";
  position: absolute;
}

.u-button-reset {
  display: inline-block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
}
.u-button-reset:hover, .u-button-reset:active, .u-button-reset:focus {
  box-shadow: none;
  cursor: pointer;
}
.u-button-reset:focus {
  outline: auto;
}

button {
  padding: 0.35em 0.65em;
  background-color: #4e3850;
  color: #efedef;
  border: 0;
  border-radius: 0.2em;
  box-shadow: 0 1px 0 1px #938594, 0 1px 2px 0 #938594;
  transition: box-shadow 150ms ease-out;
}
button:hover, button:active, button:focus {
  outline: none;
  box-shadow: 0 1px 0 1px #938594, 0 1px 2px 0 #938594, 0 0 0 0.25em #b9b0ba;
  transition: box-shadow 150ms ease-out;
}

button[disabled] {
  opacity: 0.5;
  cursor: auto;
}
button[disabled]:hover, button[disabled]:active, button[disabled]:focus {
  box-shadow: 0 1px 0 1px #938594, 0 1px 2px 0 #938594;
}

.button--inverted {
  background-color: #e3e0e3;
  color: #4e3850;
  box-shadow: 0 1px 0 1px #a89ca8, 0 1px 2px 0 #a89ca8;
}

.button--compressed {
  position: relative;
  font-size: 0.75em;
  display: flex;
  align-items: center;
}
.button--compressed svg {
  font-size: 1.2em;
}

.reset-button, .button--flat.button--complimentary.button--inverted:hover, .button--flat.button--complimentary.button--inverted:active, .button--flat.button--complimentary.button--inverted:focus, .button--flat.button--complimentary.button--inverted, .button--flat.button--inverted:hover, .button--flat.button--inverted:active, .button--flat.button--inverted:focus, .button--flat.button--inverted, .button--flat:hover, .button--flat:active, .button--flat:focus, .button--flat {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.button--flat.button--inverted:hover, .button--flat.button--inverted:active, .button--flat.button--inverted:focus {
  background-color: #a89ca8;
}
.button--flat.button--complimentary.button--inverted {
  background-color: #8BA59F;
}
.button--flat.button--complimentary.button--inverted:hover, .button--flat.button--complimentary.button--inverted:active, .button--flat.button--complimentary.button--inverted:focus {
  background-color: #B7C7C3;
}

.button--linkish {
  padding: 0 0.2em;
  color: #4e3850;
  background-color: transparent;
  border-bottom: 2px solid #4e3850;
  border-radius: 0;
  box-shadow: none;
}
.button--linkish:hover, .button--linkish:active, .button--linkish:focus {
  box-shadow: none;
  color: #4e3850;
}

.button--linkish--inverted {
  padding: 0 0.2em;
  color: #e3e0e3;
  background-color: transparent;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  box-shadow: none;
}
.button--linkish--inverted:hover, .button--linkish--inverted:active, .button--linkish--inverted:focus {
  box-shadow: none;
  color: #faf9fa;
}

.button--complimentary {
  background-color: #669c8f;
  color: #222222;
  border: 0;
  border-radius: 0.2em;
  box-shadow: 0 1px 0 1px #709088, 0 1px 2px 0 #709088;
  transition: box-shadow 150ms ease-out;
}
.button--complimentary:hover, .button--complimentary:active, .button--complimentary:focus {
  outline: none;
  box-shadow: 0 1px 0 1px #709088, 0 1px 2px 0 #709088, 0 0 0 0.25em #A3B7B2;
  transition: box-shadow 150ms ease-out;
}
.button--complimentary--linear:hover, .button--complimentary--linear:active, .button--complimentary--linear:focus {
  background: #709088;
}

.button--complimentary--inverted {
  background-color: #DAE2E0;
  color: #34423F;
  box-shadow: 0 1px 0 1px #8BA59F, 0 1px 2px 0 #8BA59F;
}

.button--reduced, .button--reduced:hover, .button--reduced:active, .button--reduced:focus {
  display: flex;
  align-items: center;
  font-size: 0.85em;
  padding: 0.3em 0.8em 0.3em 0.3em;
}
.button--reduced svg, .button--reduced:hover svg, .button--reduced:active svg, .button--reduced:focus svg {
  font-size: 1.4em;
  margin: 0 0.3em 0 0;
}

.button--linear, .button--linear:hover, .button--linear:active, .button--linear:focus {
  display: flex;
  align-items: center;
  font-size: 0.85em;
  padding: 0.3em 0.8em 0.3em 0.3em;
}
.button--linear svg, .button--linear:hover svg, .button--linear:active svg, .button--linear:focus svg {
  font-size: 1.4em;
  margin: 0 0.3em 0 0;
}
.button--linear, .button--linear:hover, .button--linear:active, .button--linear:focus {
  box-shadow: none;
  border-radius: 0;
}
.button--linear:hover, .button--linear:active, .button--linear:focus {
  background: #938594;
}

.back-button {
  display: flex;
  align-items: center;
  padding: 0.3em;
  height: 100%;
}

[aria-busy]::before {
  content: "";
  display: block;
  height: 3px;
}

[aria-busy=true]::before {
  background-image: linear-gradient(to right, #786779 0%, #a89ca8 50%, #786779 100%);
  background-size: 50% auto;
  -webkit-animation: uploading 0.75s linear infinite;
          animation: uploading 0.75s linear infinite;
}

label {
  display: block;
  padding-bottom: 0.15em;
  font-weight: bold;
}

input:not([type=radio]):not([type=checkbox]),
select,
textarea {
  width: 100%;
}

input:not([type=radio]):not([type=checkbox]):not([type=file]),
textarea {
  padding: 0.4em;
  border: 1px solid #a89ca8;
}
input:not([type=radio]):not([type=checkbox]):not([type=file]):hover, input:not([type=radio]):not([type=checkbox]):not([type=file]):active, input:not([type=radio]):not([type=checkbox]):not([type=file]):focus,
textarea:hover,
textarea:active,
textarea:focus {
  border: 1px solid #b9b0ba;
  outline: none;
  box-shadow: 0 1px 0 1px #938594, 0 1px 2px 0 #938594, 0 0 0 0.25em #b9b0ba;
}

input[type=radio] {
  margin-right: 0.25em;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.input {
  padding: 0.5em 1em;
}

.form__actions {
  display: flex;
  justify-content: space-between;
  margin: 1em 0 0;
  padding: 1em;
  border-top: 2px solid currentColor;
}

.field-group__line {
  display: flex;
  align-items: baseline;
}

.rounded-box__title {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #b9b0ba;
  padding: 0.5em 1em;
  border-radius: 1em 1em 0 0;
  font-weight: bold;
}
.rounded-box__title h3 {
  font-weight: bold;
}

.rounded-box__wrapper {
  padding: 1em;
  border-radius: 0 0 1em 1em;
  background-color: #e3e0e3;
}

@-webkit-keyframes uploading {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

@keyframes uploading {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}
