
.editr {
  border: 1px solid #e4e4e4;
  width: 100%;
}
.editr--toolbar {
  background: #f6f6f6;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  display: flex;
  height: 32px;
}
.editr--toolbar a {
  display: inline-block;
  width: 8vw;
  max-width: 32px;
  height: 32px;
  color: #333;
  fill: #333;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.editr--toolbar a:hover {
  background: rgba(0,0,0,0.1);
}
.editr--toolbar a:active {
  background: rgba(0,0,0,0.2);
}
.editr--toolbar a svg {
  width: 16px;
  height: 16px;
  margin: 8px auto;
}
.editr--toolbar a svg path {
  fill: inherit;
}
.editr--toolbar a.vw-btn-separator {
  width: 1px;
  margin: 0 8px;
}
.editr--toolbar a.vw-btn-separator:hover {
  background: initial;
  cursor: default;
}
.editr--toolbar a.vw-btn-separator i.vw-separator {
  border-left: 1px solid rgba(0,0,0,0.1);
  height: 100%;
  position: absolute;
  width: 1px;
}
.editr--toolbar .dashboard {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  text-align: left;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #f6f6f6;
}
.editr--content {
  min-height: 150px;
  padding: 12px 8px 16px 8px;
  line-height: 1.33;
  font-family: inherit;
  color: inherit;
  overflow-y: auto;
}
.editr--content[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: rgba(0,0,0,0.3);
  display: block; /* For Firefox */
}
.editr--content img {
  max-width: 100%;
}
.editr--content table {
  width: 100%;
  border-collapse: collapse;
}
.editr--content table th {
  text-align: left;
}
.editr--content table th,
.editr--content table td {
  border: 1px solid #ddd;
  padding: 2px;
}
.editr--content:focus {
  outline: 0;
}
.editr--content ul li,
.editr--content ol li {
  list-style-position: inside;
}
@media screen and (max-width: 320px) {
.editr--toolbar a {
    margin: 0 2px;
}
.editr--toolbar a.vw-btn-separator {
    display: none;
}
}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      transform: scale(1.05, 1.05);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

.vue-dropzone {
  border: 2px solid #E5E5E5;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.2px;
  color: #777;
  transition: background-color 0.2s linear;
}
.vue-dropzone:hover {
  background-color: #F6F6F6;
}
.vue-dropzone i {
  color: #CCC;
}
.vue-dropzone .dz-preview .dz-image {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.vue-dropzone .dz-preview .dz-image img:not([src]) {
  width: 200px;
  height: 200px;
}
.vue-dropzone .dz-preview .dz-image:hover img {
  transform: none;
  -webkit-filter: none;
}
.vue-dropzone .dz-preview .dz-details {
  bottom: 0;
  top: 0;
  color: white;
  background-color: rgba(33, 150, 243, 0.8);
  transition: opacity .2s linear;
  text-align: left;
}
.vue-dropzone .dz-preview .dz-details .dz-filename {
  overflow: hidden;
}
.vue-dropzone .dz-preview .dz-details .dz-filename span,
.vue-dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: none;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:hover span {
  background-color: transparent;
  border: none;
}
.vue-dropzone .dz-preview .dz-progress .dz-upload {
  background: #cccccc;
}
.vue-dropzone .dz-preview .dz-remove {
  position: absolute;
  z-index: 30;
  color: white;
  margin-left: 15px;
  padding: 10px;
  top: inherit;
  bottom: 15px;
  border: 2px white solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  opacity: 0;
}
.vue-dropzone .dz-preview:hover .dz-remove {
  opacity: 1;
}
.vue-dropzone .dz-preview .dz-success-mark,
.vue-dropzone .dz-preview .dz-error-mark {
  margin-left: auto;
  margin-top: auto;
  width: 100%;
  top: 35%;
  left: 0;
}
.vue-dropzone .dz-preview .dz-success-mark svg,
.vue-dropzone .dz-preview .dz-error-mark svg {
  margin-left: auto;
  margin-right: auto;
}
.vue-dropzone .dz-preview .dz-error-message {
  top: calc(15%);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  width: 100%;
}
.vue-dropzone .dz-preview .dz-error-message:after {
  bottom: -6px;
  top: initial;
  border-top: 6px solid #a92222;
  border-bottom: none;
}


.form[data-v-ebce4d12] {
  display: flex;
  align-content: flex-end;
}
.form label[data-v-ebce4d12] {
  margin-right: 1rem;
}
@charset "UTF-8";
/*! normalize.css v8.0.1 | 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;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * 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: bold;
}

/**
 * 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;
}

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --textColor: $textColor;
  --inputFocusShadowColor: #00d9ef;
  --inputFocusColor: #00a3b3;
  --buttonActiveBGColor: #b9b9b9;
  --buttonActiveColor: #fff;
  --buttonActiveShadowColor: #b9b9b9;
  --buttonBorderColor: #00d9ef;
  --buttonBGColor: #fff;
  --buttonColor: #00909f;
  --buttonHoverBGColor: #bcf9ff;
  --buttonHoverColor: #007a85;
  --buttonShadowColor: rgba(180, 180, 180, 0.5);
  --buttonPrimaryActiveBGColor: #007a85;
  --buttonPrimaryActiveColor: #fff;
  --buttonPrimaryActiveShadowColor: #007a85;
  --buttonPrimaryBGColor: #00a3b3;
  --buttonPrimaryColor: #fff;
  --buttonPrimaryBorderColor: #00a3b3;
  --buttonPrimaryHoverBGColor: #00b6c7;
  --buttonPrimaryHoverColor: #fff;
  --buttonPrimaryShadowColor: #007a85;
  --buttonSecondaryActiveBGColor: #2d0c4d;
  --buttonSecondaryActiveBorderColor: #2d0c4d;
  --buttonSecondaryActiveShadowColor: #2d0c4d;
  --buttonSecondaryActiveColor: #fff;
  --buttonSecondaryBGColor: #4e2574;
  --buttonSecondaryBorderColor: #4e2574;
  --buttonSecondaryColor: #fff;
  --buttonSecondaryHoverBGColor: #793bb4;
  --buttonSecondaryHoverBorderColor: #793bb4;
  --buttonSecondaryHoverColor: #fff;
  --buttonSecondaryShadowColor: #4e2574;
  --buttonWarnActiveBGColor: #a92500;
  --buttonWarnActiveBorderColor: #a92500;
  --buttonWarnActiveShadowColor: #a92500;
  --buttonWarnActiveColor: #fff;
  --buttonWarnBGColor: #dc3000;
  --buttonWarnBorderColor: #dc3000;
  --buttonWarnColor: #fff;
  --buttonWarnHoverBGColor: #ff4410;
  --buttonWarnHoverBorderColor: #ff4410;
  --buttonWarnHoverColor: #fff;
  --buttonWarnShadowColor: #a92500;
}

.submitWrapper {
  display: flex;
  align-items: center;
}

input, select, textarea, label {
  outline: none;
}
input:focus, select:focus, textarea:focus, label:focus {
  box-shadow: 0 0 3px var(--inputFocusShadowColor);
  border-color: var(--inputFocusShadowColor) !important;
}

label {
  font-weight: bold;
}
label.required:after {
  content: "*";
  color: #FFA200;
  font-weight: bold;
}

button {
  background: none;
  border: 0;
}

button, .button {
  align-items: center;
  align-content: center;
  background: var(--buttonBGColor);
  border: 1px solid var(--buttonBorderColor);
  border-radius: 4px;
  color: var(--buttonColor);
  cursor: pointer;
  display: inline-flex;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  justify-content: center;
  outline: none;
  overflow: hidden;
  margin: 0.5rem 0 0;
  padding: 1em 1.5em;
  position: relative;
  text-decoration: none;
  text-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 0;
  line-height: inherit;
}
button:hover, .button:hover {
  background: var(--buttonHoverBGColor);
  color: var(--buttonHoverColor);
}
button:active, .button:active {
  background: var(--buttonActiveBGColor);
  color: var(--buttonActiveColor);
  transform: scale(1.08) !important;
}
button:focus, .button:focus {
  box-shadow: 0 0 3px var(--buttonActiveShadowColor);
  transform: scale(1.05);
}
button__primary, .button__primary {
  background: var(--buttonPrimaryBGColor);
  border: 1px solid var(--buttonPrimaryBorderColor);
  color: var(--buttonPrimaryColor);
  border-color: rgba(0, 0, 0, 0);
}
button__primary:hover, .button__primary:hover {
  background: var(--buttonPrimaryHoverBGColor);
  color: var(--buttonPrimaryHoverColor);
}
button__primary:active, .button__primary:active {
  background: var(--buttonPrimaryActiveBGColor);
  color: var(--buttonPrimaryActiveColor);
}
button__primary:focus, .button__primary:focus {
  color: #fff;
  box-shadow: 0 0 3px var(--buttonPrimaryActiveShadowColor);
}
button__secondary, .button__secondary {
  background: var(--buttonSecondaryBGColor);
  border: 1px solid var(--buttonSecondaryBorderColor);
  color: var(--buttonSecondaryColor);
  border-color: rgba(0, 0, 0, 0);
}
button__secondary:hover, .button__secondary:hover {
  background: var(--buttonSecondaryHoverBGColor);
  color: var(--buttonSecondaryHoverColor);
}
button__secondary:active, .button__secondary:active {
  background: var(--buttonSecondaryActiveBGColor);
  color: var(--buttonSecondaryActiveColor);
}
button__secondary:focus, .button__secondary:focus {
  color: #fff;
  box-shadow: 0 0 3px var(--buttonSecondaryActiveShadowColor);
}
button__warn, .button__warn {
  background: var(--buttonWarnBGColor);
  border: 1px solid var(--buttonWarnBorderColor);
  color: var(--buttonWarnColor);
  border-color: rgba(0, 0, 0, 0);
}
button__warn:hover, .button__warn:hover {
  background: var(--buttonWarnHoverBGColor);
  color: var(--buttonWarnHoverColor);
}
button__warn:active, .button__warn:active {
  background: var(--buttonWarnActiveBGColor);
  color: var(--buttonWarnActiveColor);
}
button__warn:focus, .button__warn:focus {
  color: #fff;
  box-shadow: 0 0 3px var(--buttonWarnActiveShadowColor);
}
button + .button, button + button, .button + .button, .button + button {
  margin-left: 1em;
}
button.compact, .button.compact {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  font-size: 0.88rem;
}
button.compact2, .button.compact2 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  padding: 0.5rem 0.5rem;
  font-size: 0.88rem;
}
button__notext, .button__notext {
  position: relative;
  overflow: hidden;
}
button__notext span, .button__notext span {
  position: absolute;
  right: -1000px;
}
button__altgreen, .button__altgreen {
  background: #008972;
}
button__altgreen:hover, .button__altgreen:hover {
  background: #007561;
  color: #fff;
}
button__altgreen:active, button__altgreen:focus, .button__altgreen:active, .button__altgreen:focus {
  background: #006554;
}
button[disabled], .button[disabled] {
  filter: grayscale(1);
  cursor: not-allowed;
}
button.fab, button.fa, button.fas, .button.fab, .button.fa, .button.fas {
  font-family: "Font Awesome 5 Pro" !important;
}
button .fab, button .fa, button .fas, .button .fab, .button .fa, .button .fas {
  font-size: 200%;
  line-height: 0;
  margin: 0 0.5rem 0 0;
}
button_wrapper, .button_wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 0.5em;
  position: relative;
}
button_wrapper .main_action, .button_wrapper .main_action {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
button_wrapper .alt_action, .button_wrapper .alt_action {
  align-items: center;
  border-left: 1px solid #798add;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  display: flex;
  padding: 0.145rem 0.5rem;
  height: 100%;
  justify-content: center;
}
button_wrapper .alt_action:before, .button_wrapper .alt_action:before {
  font-family: "Font Awesome 5 Pro";
  height: 0.7rem;
  overflow: hidden;
}
button_wrapper .alt_options, .button_wrapper .alt_options {
  background: #fff;
  border: 1px solid #798add;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 1.22rem;
  margin-right: 0.5rem;
  padding: 0;
  position: absolute;
  left: 0;
  z-index: 1;
  max-width: 100%;
}
button_wrapper .alt_options button, .button_wrapper .alt_options button {
  border: 0;
  border-radius: 0;
  color: #00a3b3;
  display: block;
  padding: 0.5rem 0.5rem;
  overflow: hidden;
  text-align: center !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
button_wrapper .alt_options button[disabled], .button_wrapper .alt_options button[disabled] {
  cursor: not-allowed;
}
button_warn, .button_warn {
  background: #dc3000;
  color: var(--buttonWarnColor);
}
button_warn:hover, button_warn:active, button_warn:focus, .button_warn:hover, .button_warn:active, .button_warn:focus {
  background: #c32a00;
  color: var(--buttonWarnColor);
}

input[type=text], input[type=number], input[type=date], input[type=password], input[type=email], select, textarea {
  color: #1b646a;
  border: 1px solid #8edde2;
  border-radius: 4px;
  padding: 0.5em 0.75em;
}

::-webkit-calendar-picker-indicator {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%237ba1ec" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #00a3b3;
  opacity: 0.75;
  margin: 0;
  padding: 0;
}

input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, select::placeholder, textarea::placeholder {
  color: #00a3b3;
  opacity: 0.75;
  margin: 0;
  padding: 0;
}

input::-webkit-input-placeholder {
  line-height: normal !important;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4"><path fill="%23798add" d="M287 69.4a17.6 17.6 0 0 0-13-5.4H18.4c-5 0-9.3 1.8-12.9 5.4A17.6 17.6 0 0 0 0 82.2c0 5 1.8 9.3 5.4 12.9l128 127.9c3.6 3.6 7.8 5.4 12.8 5.4s9.2-1.8 12.8-5.4L287 95c3.5-3.5 5.4-7.8 5.4-12.8 0-5-1.9-9.2-5.5-12.8z"/></svg>');
  background-position: right 0.7em top 50%;
  background-repeat: no-repeat;
  background-size: 0.65em auto;
  border-radius: 4px;
  cursor: pointer;
  padding-right: 2em;
  position: relative;
}
select.hasCounty {
  color: #9aa0bc;
}
@media only screen and (max-width: 320px) {
  select {
    font-size: 1.2em;
  }
}
select[multiple] {
  background-image: none;
}
select[multiple] option:checked, select[multiple] option:active {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
}

.toggler {
  align-items: center;
  display: inline-flex;
  margin: 0 0 1rem;
}
.toggler .toggle {
  background: #b9b9b9;
  border-radius: 2rem;
  border: 1px solid #cfcfcf;
  height: 2rem;
  margin-right: 0.5rem;
  padding: 1px;
  transition: background-color 0.5s ease, border-color 0.5s ease;
  width: 4rem;
}
.toggler .toggle:before {
  align-items: center;
  background: #fff;
  border-radius: 100%;
  color: #444;
  content: attr(data-icon);
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-family: "Font Awesome 5 Pro";
  height: calc(2rem - 4px);
  transition: margin-left 0.25s ease, color 0.5s ease;
  width: calc(2rem - 4px);
}
.toggler .toggle:before:hover {
  background: #c8c8c8;
}
.toggler .toggle.is_checked {
  background: #798add;
  border-color: #5066d3;
}
.toggler .toggle.is_checked:before {
  color: #798add;
  margin-left: calc(100% - 2rem + 4px);
}
.toggler .toggle.is_checked:before:hover {
  background: #b6bfed;
}
.toggler [type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 2rem;
}

input[readonly], select[readonly], textarea[readonly] {
  background: #b9b9b9;
  color: #444;
  cursor: not-allowed;
  border-color: #c4c4c4;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 1200px;
}
table.narrow {
  min-width: 50%;
  max-width: 500px;
}
table thead th {
  color: #444;
  font-size: 90%;
  opacity: 0.66;
  padding: 1rem 2rem;
  text-align: center;
  text-transform: uppercase;
}
table thead th:first-child {
  text-align: left;
}
table thead th.sortable {
  cursor: pointer;
}
table tbody tr:last-child td {
  border-bottom: 1px solid #e8e8e8;
}
table tbody td {
  border-top: 1px solid #e8e8e8;
  padding: 1rem 2rem;
  text-align: center;
}
table tbody td:first-child {
  text-align: left;
}
table.empty_table td {
  padding: 2rem;
  text-align: center;
}

.paginator {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.paginator li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.paginator a, .paginator .page_gap {
  display: inline-block;
  padding: 0.5em 0.5em;
  min-width: 2rem;
  text-align: center;
  text-decoration: none;
}
.paginator .current_page {
  border-bottom: 1px solid #798add;
  font-weight: bold;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cards.inverted .card {
  background: #fff;
}
.cards.wide .card {
  width: 100%;
}

.card {
  align-items: center;
  align-content: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #c6f9fc;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.5em 0;
  padding: 0;
  position: relative;
  min-width: 100%;
}
.card__wide {
  flex-wrap: wrap;
  width: 100%;
}
.card__noflex {
  display: block;
  padding: 0;
}
.card__noflex .card_content {
  padding: 2.5rem 1rem 1.5rem;
}
.card_hero {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 8rem;
  margin: 0 0 0.5rem;
  width: 100%;
}
.card_title {
  border-bottom: 1px solid #dffbfd;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: #444;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  min-width: 100%;
}
.card_title_alt {
  background: rgba(0, 0, 0, 0.05);
}
.card_header_img {
  background-size: contain;
  background-repeat: no-repeat;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 273px;
  overflow: hidden;
  width: 100%;
}
.card_sub_header {
  color: #444;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 90%;
  margin: 0 0 0.25em;
}
.card p {
  font-weight: 200;
  margin: 0;
  min-width: 80%;
}
.card p + p {
  margin-top: 1rem;
}
.card_content {
  align-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 1rem;
  width: 100%;
}
.card_content_center {
  text-align: center;
}
.card_content h1, .card_content h2, .card_content h3, .card_content h4, .card_content h5 {
  margin-top: 0;
}
.card .icon {
  text-align: center;
  width: 3.5rem;
}
.card .icon_big {
  color: #798add;
  font-size: 3rem;
  margin-right: 1rem;
}
.card_footer {
  display: flex;
  justify-content: space-between;
  margin: 0 -1em -1em;
  padding: 1em 0 0;
  text-align: center;
  width: 100%;
}
.card_footer__actions .action {
  display: block;
  color: #fff;
  padding: 0.5em 0;
  width: 100%;
}
.card_footer__actions .action.disabled {
  filter: grayscale(100%);
}
.card__blue {
  background: #b6bfed;
  border: 1px solid #aeb8eb;
  color: #1c2a6e;
}
.card__grey {
  background: #b9b9b9;
  border: 1px solid #b4b4b4;
  color: #444;
}
.card__grey .card_title, .card__grey .card_sub_header {
  color: #444;
  border-bottom: 1px solid #b4b4b4;
}

a.card, .dashboard_card {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #007a85;
}
a.card:hover, .dashboard_card:hover {
  color: #00a3b3;
}
a.card .card_title, .dashboard_card .card_title {
  color: inherit;
}

html {
  font-size: 20px;
  position: relative;
  max-width: 100vw;
}

body {
  align-content: flex-start;
  display: flex;
  color: #14161e;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  flex-wrap: wrap;
  max-width: 100vw;
  position: relative;
  justify-content: center;
}

a {
  color: #00a3b3;
}
a:hover {
  color: #5066d3;
}

abbr {
  border: 0 !important;
  text-decoration: none !important;
}

address {
  font-style: normal;
}

.error {
  color: #dc3000;
  font-weight: 600;
}

.success {
  color: #008972;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding: 0.75rem 1.25rem 0.75rem;
  width: 100%;
}
header #site_title {
  align-items: flex-end;
  display: flex;
  color: #1c2a6e;
  flex-wrap: wrap;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.35rem;
  text-decoration: none;
}
header #site_title img {
  height: 3rem;
  margin-right: -16px;
}
@media only screen and (max-width: 1023px) {
  header #site_title {
    padding-bottom: 0.5rem;
  }
  header #site_title:after {
    display: none;
  }
}

img {
  max-width: 100%;
}

#mobilebackbutton {
  display: inline-block;
  display: none;
}
#mobilebackbutton .fas {
  font-size: 1.5rem;
}

#test_banner {
  background: orange;
  color: #fff;
  padding: 0.5rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 1000;
}
#test_banner + header {
  margin-top: 2rem;
}

#maintenance_banner {
  background: #FFA200;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  text-shadow: 0 0 3px #cc8200;
  padding: 1rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 1000;
}
#maintenance_banner + header {
  margin-top: 3rem;
  margin-top: 3rem;
}
@media only screen and (max-width: 768px) {
  #maintenance_banner + header {
    margin-top: 4.5rem;
  }
}
@media only screen and (max-width: 450px) {
  #maintenance_banner + header {
    margin-top: 5.5rem;
  }
}

nav {
  background: #fff;
  color: #1c2a6e;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  text-align: right;
}
nav a {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  color: #007a85;
  display: inline-block;
  font-size: 1rem;
  padding: 0.25rem 0;
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}
nav a:hover {
  border-color: #00d9ef;
}
nav ul {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
nav ul li + li {
  margin-left: 1rem;
}
nav button, nav #nav_toggle {
  display: none;
}
@media only screen and (max-width: 767px) {
  nav {
    text-align: left;
  }
  nav button {
    background: none;
    border: 1px solid #1c2a6e;
    color: #1c2a6e !important;
    padding: 0.5rem;
  }
  nav button:hover {
    background: none;
    color: #798add !important;
  }
  nav button#open_nav {
    display: block;
  }
  nav button#close_nav {
    display: block;
    position: fixed;
    right: -308px;
    top: 1rem;
    transition: right 0.5s ease;
    z-index: 101;
  }
  nav ul {
    background: #d6dcf5;
    bottom: -4vh;
    box-shadow: -4px 0 4px rgba(28, 42, 110, 0.3);
    height: 108vh;
    overflow: hidden;
    max-width: 300px;
    padding: calc(5rem + 4vh) 1rem calc(1rem + 4vh) 1rem;
    position: fixed;
    right: -308px;
    top: -4vh;
    transition: right 0.5s ease;
    width: 300px;
    z-index: 100;
  }
  nav ul li {
    display: block;
    margin: 0 !important;
    padding: 0.5rem 1rem;
  }
  nav input:checked + button#close_nav {
    right: 1rem;
  }
  nav input:checked + button + ul {
    display: block;
    right: 0px;
  }
}

p {
  line-height: 150%;
}

#app_wrapper {
  width: 100%;
}

.app_content {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 1rem;
  width: 100%;
}
.app_content_narrow {
  max-width: 600px;
}
.app_content__flex {
  display: flex;
  justify-content: space-between;
}
.app_content h2 {
  min-width: 100%;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-template-areas: "header header header header header header" "main main main main . sidebar" ". . . . . sidebar" "footer footer footer footer footer footer";
}

#loading {
  text-align: center;
  width: 100%;
}
#loading .loading_icon {
  color: #1c2a6e;
}

.text_blue {
  color: #1c2a6e;
}

.manage_account {
  margin: 0 auto;
  width: 90%;
}
.manage_account input {
  width: 100%;
}

#login {
  text-align: center;
  width: 100%;
}
#login input[type=text], #login input[type=password] {
  width: 90%;
}

center {
  display: block;
  width: 100%;
}

#assessment_form {
  max-width: 800px;
}
#assessment_form_wrapper {
  background: #edfdfe;
}
#assessment_form_wrapper .confirm_delete {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  min-width: auto;
}
#assessment_form .assessment_section {
  flex-wrap: wrap;
}
#assessment_form .assessment_section + .assessment_section {
  margin-top: 0.5rem;
}
#assessment_form .assessment_section.deleting {
  opacity: 0.75;
}
#assessment_form .assessment_section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#assessment_form .assessment_section ul li {
  padding: 0.25rem 0 0 0.5rem;
}
#assessment_form .assessment_section__title {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
}
#assessment_form .assessment_section .edit, #assessment_form .assessment_section .undelete {
  background: none;
  color: #798add;
  font-size: 0.9rem;
  position: relative;
  transition: border 0.2s ease;
  padding: 0.25rem;
}
#assessment_form .assessment_section .edit:active, #assessment_form .assessment_section .edit:focus, #assessment_form .assessment_section .edit:hover, #assessment_form .assessment_section .undelete:active, #assessment_form .assessment_section .undelete:focus, #assessment_form .assessment_section .undelete:hover {
  background: none;
  border: 1px solid #798add;
  color: #798add;
}
#assessment_form .assessment_section .assessment_questions {
  min-width: 100%;
}
#assessment_form .assessment_section.deleting {
  border-color: #dc3000;
}
#assessment_form .assessment_section.deleting .card_content, #assessment_form .assessment_section.deleting label {
  align-items: center;
  color: #dc3000;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  text-decoration: line-through;
}
#assessment_form .assessment_section.deleting .assessment_questions {
  display: none;
}
#assessment_form .assessment_section.deleting .undelete {
  margin: 0;
}
#assessment_form input[type=text], #assessment_form select, #assessment_form textarea {
  width: 100%;
}
#assessment_form .category_list {
  margin-top: 1rem;
}
#assessment_form .category_list .label {
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  color: #14161e;
  display: flex;
  align-items: flex-start;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
}
#assessment_form .category_list .label:hover {
  background: #b6bfed;
  border: 1px solid #798add;
  color: #1c2a6e;
}
#assessment_form .category_list .label.deleting {
  border: 1px solid #dc3000;
  color: #dc3000;
  opacity: 0.85;
}
#assessment_form .category_list .label.deleting label {
  color: #dc3000;
  text-decoration: line-through;
}
#assessment_form .category_list .label.deleting:hover {
  background: rgba(220, 48, 0, 0.2);
  opacity: 1;
}
#assessment_form .category_list .label input {
  margin-right: 0.5rem;
}
#assessment_form .category_list .label label {
  display: inline-block;
  width: 90%;
}
#assessment_form .category_list .label label:hover {
  cursor: grab;
}
#assessment_form .category_list .label label:active {
  cursor: grabbing;
}
#assessment_form .category_list button {
  font-size: 0.75rem;
  margin: 0 0.5rem 0 0;
  padding: 0.25rem;
}
#assessment_form .category_list span.deleting {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #dc3000;
  margin: 0 0.5rem 0 0;
  padding: 0.25rem;
}
#assessment_form .delete, #assessment_form .undelete {
  border: 0;
  color: #444;
  float: right;
  font-family: "Font Awesome 5 Pro";
  opacity: 0.5;
  padding: 0.25rem 0;
  transition: color 0.25s ease, opacity 0.25s ease;
}
#assessment_form .delete:hover, #assessment_form .undelete:hover {
  color: #dc3000;
  opacity: 1;
}
#assessment_form h2 {
  margin-top: 0;
}
#assessment_form button.compact {
  padding: 0.5rem 0.75rem;
}
#assessment_form .category_field_form .has_options {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#assessment_form .category_field_form .has_options.deleting input {
  border: 1px solid #963D00;
  color: #963D00;
  opacity: 0.85;
  text-decoration: line-through;
}
#assessment_form .category_field_form .has_options input {
  max-width: calc(100% - 1.5rem);
}
#assessment_form .category_field_form .has_options button {
  margin: 0;
}
#assessment_form label:hover {
  cursor: pointer;
}

#assessment_take_wrapper {
  background: #edfdfe;
}
@media print {
  #assessment_take_wrapper.respite section {
    padding: 2rem 0 0 0;
  }
}
#assessment_take_wrapper .icon {
  font-size: 1rem;
  margin: 0 0.5rem 0 0;
  width: auto;
}
#assessment_take_wrapper #assessment {
  width: 100%;
}
#assessment_take_wrapper #assessment_description .card {
  margin: 0 auto;
  max-width: 800px;
  min-width: auto;
}
#assessment_take_wrapper #assessment_description .card_content {
  display: block;
  text-align: center;
}
#assessment_take_wrapper #assessment_take {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
#assessment_take_wrapper #assessment_form {
  max-width: 66%;
  min-width: auto;
  order: 1;
  width: 100%;
  align-content: flex-start;
  align-items: flex-start;
}
#assessment_take_wrapper #assessment_form .card_content {
  display: block;
}
#assessment_take_wrapper #assessment_form.caregiver {
  max-width: 100%;
}
@media print {
  #assessment_take_wrapper #assessment_form.caregiver #assessment_search {
    display: none;
  }
  #assessment_take_wrapper #assessment_form.caregiver #assessment_score.low {
    color: #008972;
  }
  #assessment_take_wrapper #assessment_form.caregiver #assessment_score.medium {
    color: #f0dc00;
  }
  #assessment_take_wrapper #assessment_form.caregiver #assessment_score.high {
    color: #F09900;
  }
  #assessment_take_wrapper #assessment_form.caregiver #assessment_score.very_high {
    color: #dc3000;
  }
}
#assessment_take_wrapper #assessment_form.caregiver input {
  margin-left: 0;
}
#assessment_take_wrapper #assessment_form.caregiver td label {
  padding-left: 0;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score {
  color: #fff;
  padding: 1rem 1.5rem;
  text-align: center;
  margin: 1rem auto;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score #score_is, #assessment_take_wrapper #assessment_form.caregiver #assessment_score #score_explain {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  display: block;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score #score {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  display: block;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score.low {
  background: #008972;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score.medium {
  background: #f0dc00;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score.high {
  background: #F09900;
}
#assessment_take_wrapper #assessment_form.caregiver #assessment_score.very_high {
  background: #dc3000;
}
#assessment_take_wrapper #assessment_sections {
  align-content: flex-start;
  max-width: 32%;
  min-width: auto;
  order: 2;
  width: 100%;
}
#assessment_take_wrapper #assessment_sections a {
  text-decoration: none;
}
#assessment_take_wrapper #assessment_sections a:hover {
  text-decoration: underline;
}
#assessment_take_wrapper #assessment_sections h4 {
  margin: 0 0 0.5rem 0;
  width: 100%;
}
#assessment_take_wrapper #assessment_sections ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#assessment_take_wrapper #assessment_sections ul li {
  padding-left: 1.35rem;
}
#assessment_take_wrapper #assessment_sections ul li .fas, #assessment_take_wrapper #assessment_sections ul li .far {
  float: left;
  margin-right: 0.35rem;
  margin-left: -1.35rem;
}
#assessment_take_wrapper #assessment_sections ul li .fas.fa-square, #assessment_take_wrapper #assessment_sections ul li .far.fa-square {
  color: #444;
}
#assessment_take_wrapper #assessment_sections ul li .fas.fa-check-square, #assessment_take_wrapper #assessment_sections ul li .far.fa-check-square {
  color: #008972;
}
#assessment_take_wrapper #assessment_sections ul li.selected {
  font-weight: bold;
}
#assessment_take_wrapper #assessment_sections ul li.find_resources {
  padding-left: 0;
  text-align: center;
}
#assessment_take_wrapper #assessment_section_questions label {
  cursor: pointer;
  font-size: 100%;
  padding-left: 1rem;
}
#assessment_take_wrapper #assessment_section_questions label input {
  margin-left: -1rem;
}
#assessment_take_wrapper #assessment_section_questions .form_field {
  margin: 0;
}
#assessment_take_wrapper #assessment_section_questions .form_field:nth-child(2) {
  padding-top: 0.5rem;
}
#assessment_take_wrapper #assessment_section_questions .form_field + .form_field {
  margin-top: 0.5rem;
}
#assessment_take_wrapper #assessment_search_fields .form_field {
  max-width: 50%;
}
#assessment_take_wrapper #assessment_section_navigation {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  margin: 0.75rem 0 0 0;
}
#assessment_take_wrapper #assessment_section_navigation #assessment_section_navigation_prev {
  max-width: 49%;
}
#assessment_take_wrapper #assessment_section_navigation #assessment_section_navigation_prev .icon {
  margin-right: 0.5rem;
}
#assessment_take_wrapper #assessment_section_navigation #assessment_section_navigation_next {
  max-width: 49%;
}
#assessment_take_wrapper #assessment_section_navigation #assessment_section_navigation_next .icon {
  margin-left: 0.5rem;
}
#assessment_take_wrapper #assessment_section_navigation button {
  margin: 0 0.5rem 0 0;
  padding: 0.5rem;
}
#assessment_take_wrapper #assessment_section_navigation button .icon {
  margin-left: 0.5rem;
}
#assessment_take_wrapper #assessment_controls {
  order: 3;
  width: 100%;
}
#assessment_take_wrapper #assessment_controls button {
  margin: 0 0.5rem 0 0;
}
#assessment_take_wrapper #assessment_finish {
  background: #008972;
  margin-top: 1rem;
}
#assessment_take_wrapper #assessment_show_search {
  background: #008972;
  margin-top: 1rem !important;
}
#assessment_take_wrapper #assessment_print {
  max-width: 800px;
  margin: 0 auto;
  min-width: auto;
}
#assessment_take_wrapper #assessment_print * {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
#assessment_take_wrapper #assessment_print ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#assessment_take_wrapper #assessment_print li {
  display: block;
  margin: 0;
  padding: 0.125rem;
}
#assessment_take_wrapper #assessment_print li > ul {
  margin-bottom: 1rem;
}
#assessment_take_wrapper #assessment_print .section_title {
  display: block;
  font-size: 104%;
  font-weight: bold;
  margin: 0 0 0.25rem;
}
#assessment_take_wrapper #assessment_print li li {
  padding-left: 1.25rem;
}
#assessment_take_wrapper #assessment_print li li .check {
  display: inline-block;
  margin-left: -1.25rem;
}
@media only screen and (max-width: 720px) {
  #assessment_take_wrapper #assessment_form, #assessment_take_wrapper #assessment_sections {
    max-width: 100%;
    min-width: 100%;
  }
}
#assessment_take_wrapper.almatch #assessment_print {
  max-width: 1000px;
}
#assessment_take_wrapper #almatch_results {
  align-content: start;
  align-items: start;
}
#assessment_take_wrapper #almatch_results .column {
  max-width: calc(50% - 0.5rem);
}
#assessment_take_wrapper #almatch_results .column:nth-child(odd) {
  margin-left: 1rem;
}
#assessment_take_wrapper #almatch_results_header {
  width: 100%;
}
#assessment_take_wrapper #almatch_results_header img {
  margin: 0 0 1rem 0;
}
#assessment_take_wrapper #almatch_results #almatch_general_questions {
  background: #e5efff;
  border-radius: 16px;
  padding: 1rem;
}
#assessment_take_wrapper #almatch_results ol li {
  display: list-item;
}
#assessment_take_wrapper #almatch_results .response_section {
  margin: 1rem 0 0;
}
#assessment_take_wrapper #almatch_results .response_section .questionAndResponse + .questionAndResponse {
  margin-top: 1rem;
}
#assessment_take_wrapper #almatch_results .response_section .question {
  display: block;
  font-weight: bold;
}
#assessment_take_wrapper #almatch_results .response_section .response + .question {
  margin-top: 1rem;
}
#assessment_take_wrapper #almatch_results .response_section .response__comma:after {
  content: ", ";
  display: inline;
}
#assessment_take_wrapper #almatch_results .response_section .response__comma:last-child:after {
  content: "";
}
#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions {
  background: #e5efff;
  border-radius: 16px;
  margin: 1rem 0 0.25rem;
  padding: 1rem;
}
#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions h4 {
  margin: 0 0 0.25rem;
}
#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions li {
  padding: 0.125rem 0 0.35rem 0;
}
#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions li ul {
  margin: 0 0 0 0.5rem;
  list-style: circle !important;
}
#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions li ul li {
  padding: 0.125rem 0;
  list-style: circle !important;
}
@media only screen and (max-width: 720px) {
  #assessment_take_wrapper #almatch_results .column {
    width: 100%;
    min-width: 100%;
    max-width: none;
  }
}

@media print {
  #test_banner {
    display: none;
  }
  #assessment_take_wrapper {
    background: none;
  }
  #assessment_take_wrapper .assessment_back {
    display: none;
  }
  #assessment_take_wrapper .app_content {
    padding: 0;
  }
  #assessment_take_wrapper #banner_wrapper {
    display: none;
  }
  #assessment_take_wrapper #assessment_print * {
    -moz-column-break-inside: avoid;
         break-inside: avoid-column;
  }
  #assessment_take_wrapper h2:after, #assessment_take_wrapper h3:after {
    border: 2px solid #798add;
  }
  #almatch_general_questions, .response_section_other_questions {
    border: 1px solid #b6bfed;
  }
  .response_section_other_questions {
    padding-left: 0;
    padding-right: 0;
  }
  .almatch #assessment_print {
    max-width: none !important;
    border: 0;
  }
  #almatch_results {
    padding: 0 !important;
  }
}
#resource_audit_log_wrapper table {
  font-size: 88% !important;
}
#resource_audit_log_wrapper table span {
  display: block;
  margin-bottom: 0.25rem;
  padding-left: 0.25rem;
}
#resource_audit_log_wrapper table span.addition {
  border-left: 3px solid #008972;
}
#resource_audit_log_wrapper table span.delete {
  border-left: 3px solid #dc3000;
}
#resource_audit_log_wrapper table span.update {
  border-left: 3px solid #FFA200;
}
#resource_audit_log_wrapper tr.active {
  background: #fff4e0;
}
#resource_audit_log_wrapper .fa-exclamation-circle {
  color: #FFA200;
}
#resource_audit_log_wrapper .fa-check-circle {
  color: #008972;
}

#banner {
  align-content: center;
  background: #00a3b3;
  border-bottom: 4px solid #00a3b3;
  display: flex;
  color: #fff;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
  width: 100%;
}
#banner_bg {
  background: #00a3b3 url(/imgs/home_banner1.jpg) no-repeat top center;
  background: linear-gradient(0deg, rgba(0, 24, 26, 0.5) 0%, rgba(0, 24, 26, 0.5) 100%), url(/imgs/home_banner1.jpg) no-repeat top center;
  background-size: cover;
  background-position: center center;
  opacity: 0.65;
  position: absolute;
  filter: grayscale(0.75);
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#banner_wrapper {
  padding: 0;
}
#banner h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 0 4px black;
  width: 100%;
}
#banner #banner_content {
  border-radius: 4px;
  position: relative;
  text-align: center;
  width: 840px;
  z-index: 1;
}

#home_banner {
  align-content: center;
  background: #00a3b3;
  border-bottom: 4px solid #798add;
  display: flex;
  color: #fff;
  justify-content: start;
  position: relative;
  text-shadow: 0 0 3px black;
  width: 100%;
}
#home_banner_bg {
  background: #00a3b3 url(/imgs/home_banner1.jpg) no-repeat top center;
  background: radial-gradient(circle, rgba(97, 204, 204, 0) 50%, #007580 100%), url(/imgs/home_banner2.jpg) no-repeat top center;
  background: linear-gradient(0deg, #00181a 0%, rgba(97, 204, 204, 0) 50%, #007580 100%), url(/imgs/home_banner3.jpg) no-repeat top center;
  background: linear-gradient(0deg, rgba(0, 24, 26, 0.5) 0%, rgba(0, 24, 26, 0.5) 100%), url(/imgs/home_banner3.jpg) no-repeat top center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(/imgs/home_banner5.png) no-repeat top center;
  background: url(/imgs/home_banner5.1.png);
  background-size: cover;
  background-position: top right;
  width: 50%;
  z-index: 0;
}
#home_banner_wrapper {
  padding: 0;
}
#home_banner #home_cta_wrapper {
  margin: 0 auto;
  width: 50%;
}
#home_banner #home_cta {
  background: #263997;
  border: none;
  color: #fff;
  padding: 2rem;
}
#home_banner #home_cta h2 {
  margin-top: 0;
}
#home_banner #home_cta h2::after {
  background: #00d9ef;
}
#home_banner #home_cta p {
  margin: 0.75rem 0 1rem;
}
#home_banner #home_ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: space-between;
}
#home_banner #home_ctas .button + .button {
  margin-left: 0;
}
#home_banner #search_wrapper {
  border-radius: 4px;
  position: relative;
  text-align: center;
  width: 750px;
  z-index: 3;
}
#home_banner #search_wrapper h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin: 0 0 1rem -4rem;
  margin: 0 0 1rem;
  text-shadow: 0 0 4px black;
  width: 100%;
}
#home_banner #search_wrapper_form {
  align-content: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 4px #020308;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  display: grid;
  grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
  grid-template-areas: "category category category location location button";
}
#home_banner #search_wrapper #full_search {
  color: #fff;
  float: right;
  margin: 0.5rem 1rem 0 0;
  text-decoration: none;
}
#home_banner #search_wrapper #full_search:hover {
  color: #798add;
}
#home_banner #search_wrapper .searching_for_results {
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 4px #798add;
  color: #798add;
  list-style: none;
  margin: 0;
  max-height: 20vh;
  overflow-y: scroll;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 2.5rem;
  max-width: 100%;
  min-width: 100%;
}
#home_banner #search_wrapper .searching_for_results li {
  padding: 0.5em 1em;
}
#home_banner #search_wrapper .searching_for_results .selected {
  color: #fff;
  background: #798add;
}
#home_banner input {
  border: 0;
  border-bottom: 1px solid #798add;
  border-radius: 0;
  font-size: 1.25rem;
  height: 2.5rem;
  line-height: 0;
  margin: 0 1.5rem 0 0;
  padding-left: 2.25rem;
  width: 100%;
}
#home_banner button {
  border: 0 !important;
  font-size: 1.25rem;
  height: 2.5rem;
  line-height: 0;
  margin: 0;
  padding: 0.5rem 0.75rem;
  grid-area: button;
}
#home_banner #category_search {
  grid-area: category;
}
#home_banner #category_search .loading {
  left: auto !important;
}
#home_banner #location_search {
  grid-area: location;
}
#home_banner #category_search, #home_banner #location_search {
  position: relative;
  margin-right: 1rem;
}
#home_banner #category_search .icon, #home_banner #location_search .icon {
  color: #798add;
  display: block;
  font-size: 1.5rem;
  left: 0;
  margin: -0.25rem 0 0;
  min-width: 2.2rem;
  padding: 0.25rem;
  position: absolute;
  text-align: center;
  top: 0.35rem;
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  #home_banner #home_banner_bg {
    display: none;
  }
  #home_banner #home_cta_wrapper {
    width: 100%;
  }
}

#quick_categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#quick_categories_wrapper {
  margin: 2rem 0 4rem;
  padding: 0;
}
#quick_categories a {
  color: #1c2a6e;
}
#quick_categories .quick_category {
  border-radius: 4px;
  border: 1px solid rgba(121, 138, 221, 0.15);
  box-shadow: 0 0 2px rgba(121, 138, 221, 0.25);
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin: 2rem 0 0;
  overflow: hidden;
  padding: 1rem 0 1rem 4rem;
  position: relative;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  width: 23.8095238095%;
}
#quick_categories .quick_category:hover {
  background: #798add;
  box-shadow: 0 0 7px #7889dd;
  color: #fff;
}
#quick_categories .quick_category:hover .quick_category_icon {
  background: #1c2a6e;
}
#quick_categories .quick_category_icon {
  align-items: center;
  background: #798add;
  background: #1c2a6e;
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 2rem;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 3rem;
}
#quick_categories_more {
  display: block;
  font-size: 92%;
  margin: 2rem;
  text-align: center;
}
#quick_categories .icwa_icon:before {
  background: url(/imgs/icwa_resource_white_icon.png) no-repeat center center;
  background-size: 2rem;
  content: "";
  display: inline-block;
  height: 4rem;
  width: 4rem;
}
@media only screen and (max-width: 767px) {
  #quick_categories_wrapper {
    margin-bottom: 1.5rem;
  }
  #quick_categories .quick_category {
    margin: 0 0 1rem;
    width: 100%;
  }
  #quick_categories_more {
    margin: 0.5rem 1rem;
  }
}

#quick_category_search {
  position: relative;
}
#quick_category_search .loading {
  left: auto;
  right: 0;
  top: 0.5em;
  font-size: 1em;
  line-height: 1em;
  font-size: 21px;
  position: absolute;
  width: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#quick_category_search .searching_for_results {
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 4px #798add;
  color: #798add;
  list-style: none;
  margin: 0;
  max-height: 20vh;
  overflow-y: scroll;
  padding: 0;
  position: absolute;
  text-align: left;
  top: 2.25rem;
  min-width: 300px;
  z-index: 200;
}
#quick_category_search .searching_for_results li {
  padding: 0.5em 1em;
}
#quick_category_search .searching_for_results .selected {
  color: #fff;
  background: #798add;
}

#quick_links2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem 0;
}
#quick_links2 .quick_link {
  border-radius: 4px;
  box-shadow: 0 0 3px #f3f5fc;
  margin: 0 0 2rem 0;
  padding: 1rem;
  width: 23.8095238095%;
}
#quick_links2 .quick_link_header {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}
#quick_links2 .quick_link_go {
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  display: inline-block;
  display: none;
}

section {
  padding: 2rem 0;
}
@media only screen and (max-width: 1024px) {
  section {
    padding: 2rem 0;
  }
  section .buttons {
    display: block !important;
    grid-area: none !important;
    grid-row-start: 4 !important;
    grid-column-start: 3 !important;
    grid-column-end: 6 !important;
  }
  section .buttons > .button {
    width: auto !important;
  }
}
section h2, section h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  position: relative;
}
section h2:after, section h3:after {
  background: #767676;
  bottom: -0.65rem;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  z-index: 0;
  width: 3em;
}
section .header {
  grid-area: header;
  amax-height: 1.25em;
}
section .screenshot {
  background-position: center;
  background-size: cover;
  border-radius: 4px;
  grid-area: screenshot;
  margin-right: 1rem;
  min-height: 400px;
}
section .description {
  grid-area: description;
  margin: 0;
}
section .buttons {
  align-items: flex-end;
  display: flex;
  grid-area: buttons;
  justify-content: flex-start;
}
section .buttons > .button {
  width: 200px;
  max-height: 3.5rem;
}
section.grey, section.white {
  background: #d1d1d1;
  padding: 2rem;
}
section.grey h2, section.white h2 {
  color: #444;
}
section.grey .fakeImage, section.white .fakeImage {
  background: rgba(0, 0, 0, 0.25);
}
section.white {
  background: #fff;
}
section.blue {
  background: #b6bfed;
  padding: 2rem;
}
section.blue h2 {
  color: #5066d3;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  position: relative;
}
section.blue h2:after {
  background: #fff;
  bottom: -0.65rem;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  z-index: 0;
  width: 3em;
}
section.purple {
  background: #f3e6ff;
  padding: 2rem;
}
section.purple h2 {
  color: #4e2574;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  position: relative;
}
section.purple h2:after {
  background: #fff;
}
section.purple a {
  color: #4e2574;
}
section.purple a:hover {
  color: #793bb4;
}
section.teal {
  background: #cdfaff;
  padding: 2rem;
}
section.teal h2 {
  color: #007a85;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  position: relative;
}
section.teal h2:after {
  background: #fff;
}
section.teal a {
  color: #007a85;
}
section.teal a:hover {
  color: #00a3b3;
}
section .promo {
  margin: 0 auto;
  max-width: 1400px;
}
section .promo_left {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-template-areas: "header header header header screenshot screenshot" "description description description description screenshot screenshot" "description description description description screenshot screenshot " " buttons buttons . . screenshot screenshot";
}
@media only screen and (max-width: 1024px) {
  section .promo_left .buttons {
    grid-row-start: 4 !important;
    grid-column-start: 1 !important;
    grid-column-end: 4 !important;
  }
}
section .promo_right {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-template-areas: "screenshot screenshot header header header header" "screenshot screenshot description description description description" "screenshot screenshot description description description description" "screenshot screenshot . . buttons buttons";
}
section .promo_basic {
  grid-template-areas: "screenshot screenshot header header header header" "screenshot screenshot description description description description";
}
section .promo .screenshot {
  display: flex;
  align-items: center;
  justify-content: center;
}
section .promo_double {
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
}
section .promo_double > div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-template-areas: "thumb thumb header header header header" "thumb thumb description description description description" "thumb thumb description description description description" ". . . buttons buttons buttons ";
  width: 49%;
  max-width: 49%;
}
section .promo_double div:first-child h2::after {
  background-color: #4e2574;
}
section .promo_double div:nth-child(2) h2::after {
  background-color: #00a3b3;
}
section .promo_double .header {
  margin-top: 0;
}
section .promo_double .thumb {
  border-radius: 4px;
  grid-area: thumb;
  background-position: center;
  background-size: cover;
}
section .promo_double .buttons {
  justify-content: flex-end;
}
section .promo_center {
  text-align: center;
}
section .promo_center .header {
  color: #4e2574;
}
section .promo_center .subheader {
  color: #00a3b3;
}
section .promo_center .subheader:after {
  display: none;
}
@media only screen and (max-width: 1024px) {
  section .promo_left, section .promo_right, section .promo_double {
    display: block;
  }
  section .promo h2 {
    max-height: none;
  }
  section .promo_double {
    padding: 0 2rem;
    width: auto;
  }
  section .promo_double__first, section .promo_double > div {
    display: block;
    margin-bottom: 2rem;
    width: 100%;
    min-width: 100%;
  }
  section .promo_double__second {
    margin-bottom: 0 !important;
  }
  section .promo_double .thumb {
    height: 400px;
    margin-bottom: 1rem;
    width: 100%;
  }
}
section.quick_links {
  margin: 0 auto;
  max-width: 900px;
  padding: 1rem 1rem;
}
section.quick_links + .quick_links {
  padding-bottom: 2.5rem;
}
section.quick_links h3:after {
  display: none;
}
section.quick_links a {
  align-content: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  color: #14161e;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  padding: 1rem 0;
  text-decoration: none;
  transition: color 0.25s ease;
}
section.quick_links a + a {
  border-top: 0px;
}
section.quick_links a .arrow {
  align-content: center;
  align-items: center;
  display: inline-flex;
  justify-content: flex-end;
  transition: color 0.25s ease;
  min-height: 100%;
  width: 10%;
}
section.quick_links a:hover {
  color: #00a3b3;
  color: #5066d3;
}
section.quick_links a:hover .arrow {
  color: #00a3b3;
}
@media only screen and (max-width: 700px) {
  section.quick_links a {
    font-size: 1rem;
  }
}
section.quick_links.caregivers h3 {
  color: #007a85;
}
section.quick_links.providers h3 {
  color: #263997;
}
section.boxes {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1300px;
  padding: 1rem 1rem;
}
section.boxes h3 {
  text-align: center;
  width: 100%;
}
section.boxes h3:after {
  display: none;
}
section.boxes .box {
  border-radius: 0.25rem;
  padding: 0.5rem;
  width: calc(25% - 1rem);
}
section.boxes .box.blue {
  background: #dde2ff;
}
section.boxes .box.teal {
  background: #cdfaff;
}
section.boxes .box.purple {
  background: #f3e6ff;
}
section.boxes .box.yellow {
  background: #FFFAD8;
}
section.boxes .box.orange {
  background: #FFEDD8;
}
section.boxes .box .thumb {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.125rem;
  margin: 0 0 0.5rem;
  width: 100%;
  aspect-ratio: 1/1;
}
section.boxes .box {
  width: calc(50% - 1rem);
}
section.boxes .box .thumb {
  aspect-ratio: 3/1;
}

.services_callout_double {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1rem;
  grid-template-areas: "thumb thumb header header header header" "thumb thumb description description description description" "thumb thumb description description description description" ". . . . buttons buttons ";
  width: 49%;
}
.services_callout .fakeImage {
  float: left;
  grid-area: thumb;
  min-height: 8rem;
  min-width: 8rem;
}
.services_callout_header {
  color: #1c2a6e;
  grid-area: header;
  margin-top: 0;
}
.services_callout_description {
  grid-area: description;
  margin: 0;
}
.services_callout_buttons {
  align-items: flex-end;
  grid-area: buttons;
  justify-content: flex-end;
}

#dashboard {
  align-content: space-between;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 240px;
}
#dashboard_wrapper {
  background: #edfdfe;
}
#dashboard_login .card {
  margin: 0 auto;
  min-width: auto;
  width: 570px;
}
#dashboard_login #login_actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#dashboard_login #login_actions > * {
  flex: 1 1 0px;
}
#dashboard_login #login_actions div {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  text-align: center;
}
#dashboard_login .button {
  margin: 1rem auto 0;
}
#dashboard_login p:nth-child(3) {
  align-items: center;
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
}
#dashboard .card {
  display: block;
  min-width: auto;
  width: 48%;
}
#dashboard .card p {
  color: #14161e;
}
#dashboard .card_content {
  padding: 0;
}
#dashboard .card_title {
  padding: 0 0 0.25rem 0;
  margin-bottom: 0.25rem;
}
@media only screen and (max-width: 767px) {
  #dashboard .card {
    width: 100%;
    max-width: 100%;
  }
  #dashboard_login .card {
    width: 100%;
    max-width: 100%;
  }
  #dashboard_login #login_actions {
    display: block;
  }
  #dashboard_login #login_actions .button {
    display: block;
    text-align: center;
  }
  #dashboard_login #login_actions div {
    display: none;
  }
}

#manage_resources_wrapper {
  background: #edfdfe;
}
#manage_resources_wrapper .icon {
  border: 0;
  opacity: 0.6;
  padding: 0.35rem;
  font-size: 1.25rem;
  transition: opacity 0.25s ease;
}
#manage_resources_wrapper .icon:hover {
  opacity: 1;
}
#manage_resources a {
  text-decoration: none;
}
#manage_resources a:hover {
  text-decoration: underline;
}
#manage_resources .resource_location {
  font-size: 90%;
  opacity: 0.92;
}
@media only screen and (max-width: 900px) {
  #manage_resources table {
    max-width: 100%;
  }
  #manage_resources .resource_location,
  #manage_resources .resource_id,
  #manage_resources .resource_updated_at {
    display: none;
  }
}

#resource_form_wrapper {
  background: #edfdfe;
}
#resource_form_wrapper .form_steps {
  max-width: 800px;
}
#resource_form_wrapper .form_steps a {
  display: inline-flex;
  align-items: center;
  color: var(--textColor);
  text-decoration: none;
}
#resource_form_wrapper .app_content {
  max-width: 800px;
}
#resource_form input[type=text], #resource_form select, #resource_form textarea {
  width: 100%;
}
#resource_form .category_list {
  margin-top: 1rem;
}
#resource_form .category_list > label {
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  color: #14161e;
  font-family: "CeraPro-Regular", sans-serif;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
}
#resource_form .category_list > label.highlight {
  background: #edfdfe;
  color: #1c2a6e;
  font-family: "CeraPro-Medium", sans-serif;
}
#resource_form .category_list > label:hover {
  background: #b6bfed;
  border: 1px solid #798add;
  color: #1c2a6e;
}
#resource_form .category_list > label input {
  margin-right: 0.5rem;
}
#resource_form h2 {
  margin-top: 0;
}
#resource_form #mailing_address_is_the_same {
  margin: 0;
}
#resource_form .button__grey {
  margin: 0 0 0.35rem;
}
#resource_form .category_field__Checkboxes label, #resource_form .category_field__RadioButtons label {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #0c1a2f;
  font-family: "CeraPro-Regular", sans-serif;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
}
#resource_form .category_field__Checkboxes label.highlight, #resource_form .category_field__RadioButtons label.highlight {
  background: #edfdfe;
  color: #002763;
  font-family: "CeraPro-Medium", sans-serif;
}
#resource_form .county_select {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#resource_form .county_select_wrapper {
  border: 1px solid #b9b9b9;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: -0.5rem 0.5rem 0.5rem;
  padding: 0.5rem 1rem 1rem;
}
#resource_form .county_select label {
  padding-bottom: 1rem;
  width: 100%;
}
#resource_form .county_select select {
  height: 400px;
  max-width: 50%;
}
#resource_form .county_select .selected_counties {
  min-width: 50%;
  max-width: 50%;
  padding: 0 1rem;
}
#resource_form .county_select .selected_counties ul {
  padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
  #resource_form .county_select select {
    max-width: none;
    margin-bottom: 1rem;
  }
}
#resource_form .section > legend {
  margin-top: 1.5rem;
}
#resource_form .section legend + p {
  font-size: 90%;
}
#resource_form .section .form_field legend {
  margin-bottom: 0.5rem;
}
#resource_form .section .form_field legend:after {
  display: none;
}

#resource_categories_details_form_wrapper legend:not(.small) {
  margin-top: 1.5rem;
}

#resource_moderation_form .moderation_comparison {
  max-width: 50%;
  min-width: 50%;
  width: 50%;
}
#resource_moderation_form .modification_details {
  margin: 0.5rem 0 0 0;
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}
#resource_moderation_form .card_footer {
  margin: 0;
}
#resource_moderation_form .card_footer button {
  margin: 0;
  border-radius: 16px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 50%;
}
#resource_moderation_form .card_footer button.approve {
  color: #fff;
  background: #008972;
}
#resource_moderation_form .card_footer button.approve:hover {
  background: #00705d;
}
#resource_moderation_form .card_footer button.deny {
  color: #fff;
  background: #dc3000;
}
#resource_moderation_form .card_footer button.deny:hover {
  background: #c32a00;
}
#resource_moderation_form .card_footer button:first-child {
  border-bottom-right-radius: 0;
}
#resource_moderation_form .card_footer button:last-child {
  border-bottom-left-radius: 0;
}
#resource_moderation_form .card_footer button.approved, #resource_moderation_form .card_footer button.denied {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 100%;
}
#resource_moderation_form .complete {
  opacity: 0.5;
}

#resource_view {
  max-width: 1100px;
  margin: 0 auto;
}
#resource_view_wrapper {
  background: #edfdfe;
}
#resource_view .resource_view_is_private {
  border-radius: 1rem;
  border: 1px solid #FFA200;
  background: #ffc766;
  color: #b32700;
  font-family: "CeraPro-Bold", sans-serif;
  font-weight: bold;
  margin: 0 0 1rem;
  padding: 1rem;
  text-align: center;
}
#resource_view .resource_contact {
  display: flex;
  justify-content: space-between;
}
#resource_view .resource_contact .card_content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: auto;
  grid-gap: 0.25rem;
  grid-template-areas: "image image image image image image image" "addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical " "addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical " "addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical addressPhysical " "phonePrimary phonePrimary phonePrimary . phoneTollfree phoneTollfree phoneTollfree" "phoneTdd phoneTdd phoneTdd . phoneFax phoneFax phoneFax" "email email email . website website website" "icons icons icons icons icons icons icons";
}
#resource_view .resource_contact .card_content .resource_detail {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#resource_view .resource_contact .card_content .resource_icons {
  grid-area: icons;
}
#resource_view .resource_contact .card_content .resource_address_physical {
  grid-area: addressPhysical;
}
#resource_view .resource_contact .card_content .resource_address_mailing {
  grid-area: addressMailing;
}
#resource_view .resource_contact .card_content .resource_primary_phone {
  grid-area: phonePrimary;
}
#resource_view .resource_contact .card_content .resource_tollfree_phone {
  grid-area: phoneTollfree;
}
#resource_view .resource_contact .card_content .resource_tdd_phone {
  grid-area: phoneTdd;
}
#resource_view .resource_contact .card_content .resource_fax_phone {
  grid-area: phoneFax;
}
#resource_view .resource_contact .card_content .resource_email {
  grid-area: email;
}
#resource_view .resource_contact .card_content .resource_website {
  grid-area: website;
}
#resource_view .resource_details {
  max-width: 66%;
  min-width: 66%;
}
#resource_view .resource_map {
  max-width: 33%;
  min-width: 33%;
  overflow: hidden;
  position: relative;
}
#resource_view .resource_map iframe {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100px;
  min-width: 100%;
  height: 100px;
  min-height: 100%;
}
#resource_view .resource_detail {
  font-family: "CeraPro-Medium", sans-serif;
  margin: 1rem 0 0;
  width: 50%;
}
#resource_view .resource_detail:nth-child(1), #resource_view .resource_detail:nth-child(2) {
  margin: 0;
}
#resource_view .resource_card_category #category_field_responses_wrapper {
  width: 100%;
}
#resource_view .resource_card_category #category_field_responses_wrapper > div {
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  width: calc(49% - 1rem);
}
#resource_view .resource_card_category h3, #resource_view .resource_card_category h4 {
  margin-top: 0;
  width: 100%;
}
#resource_view .resource_card_category h4 {
  margin-bottom: 0;
}
#resource_view .resource_card_category .card_content {
  align-items: flex-start;
  justify-content: space-between;
}
#resource_view .child_categories {
  margin: 0 0;
  padding: 0;
  width: 100%;
}
#resource_view .child_categories li {
  display: inline-block;
  margin-right: 0.5rem;
}
#resource_view .child_categories li:before {
  content: "•";
  color: #798add;
  display: inline-block;
  padding: 0 0.25rem;
}
#resource_view .category_field {
  margin: 1rem 0 0 0;
  width: 49%;
}
#resource_view .category_field__response {
  font-size: 90%;
}
#resource_view .category_field__Checkboxes .response + .response, #resource_view .category_field__RadioButtons .response + .response {
  margin-top: 0.5rem;
}
#resource_view .category_field .daily_open_close_hours_wrapper {
  margin: 1rem 0;
  max-width: 160px;
}
#resource_view .category_field .daily_open_close_hours_wrapper .card_sub_header {
  display: block;
  font-weight: 500;
  min-width: 100px;
  width: 100px;
}
#resource_view .category_field .daily_open_close_hours_wrapper .form_fields + .form_fields {
  margin-top: 0.5rem;
}
#resource_view .category_field .answer {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-indent: 4rem;
  width: 2rem;
  height: 1rem;
  white-space: pre;
}
#resource_view .category_field .answer .fa-question {
  color: #444;
}
#resource_view .category_field .answer .fa-check {
  color: #008972;
}
#resource_view .category_field .answer .fa-times {
  color: #dc3000;
}
#resource_view .category_field .answer .fas::before {
  position: absolute;
  top: 0.15rem;
  left: -3.75rem;
}
@media only screen and (max-width: 767px) {
  #resource_view .resource_contact {
    display: block;
  }
  #resource_view .resource_contact .resource_details, #resource_view .resource_contact .resource_map {
    max-width: 100%;
    width: 100%;
  }
  #resource_view .resource_contact .resource_map {
    height: 300px;
  }
  #resource_view .resource_contact .card_content {
    display: block;
  }
  #resource_view .resource_contact .resource_detail {
    margin-bottom: 0.5rem;
  }
  #resource_view .category_field {
    width: 100%;
  }
}
#resource_view .special_indicators {
  width: auto;
  max-width: none;
  text-align: left;
}

.resource_image {
  grid-area: image;
  margin: 0 0 0.5rem;
  text-align: center;
  width: 100%;
}
.resource_image:has(img) {
  height: 100px;
}
.resource_image img {
  max-height: 100%;
}

#manage_resource_lists_wrapper {
  background: #edfdfe;
}
#manage_resource_lists_wrapper table {
  max-width: 800px;
  width: 100%;
}
#manage_resource_lists_wrapper .icon {
  border: 0;
  opacity: 0.6;
  padding: 0.35rem;
  font-size: 1.25rem;
  transition: opacity 0.25s ease;
}
#manage_resource_lists_wrapper .icon:hover {
  opacity: 1;
}
#manage_resource_lists_controls {
  margin: 0 auto;
  max-width: 800px;
}
#manage_resource_lists a {
  text-decoration: none;
}
#manage_resource_lists a:hover {
  text-decoration: underline;
}
#manage_resource_lists .resource_name {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  width: 100%;
}
#manage_resource_lists .resource_location {
  font-size: 92%;
}

#resource_list {
  max-width: 700px;
  margin: 0 auto;
}
#resource_list address {
  width: 100%;
}
#resource_list * {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
#resource_list .email .fas, #resource_list .print .fas {
  font-size: 1rem;
}
#resource_list .options {
  display: flex;
  justify-content: space-around;
  margin: 0 0 1rem;
}
@media print {
  #resource_list button, #resource_list input, #resource_list .toggler, #resource_list label, #resource_list .button {
    display: none;
  }
}
#resource_list .toggler {
  margin-left: 1rem;
}
#resource_list_quick_create {
  text-align: center;
}

#resource_lists_wrapper {
  background: #edfdfe;
}
#resource_lists_wrapper table a {
  color: #14161e;
  text-decoration: none;
}
#resource_lists_wrapper table tr:hover a {
  color: #00a3b3;
  text-decoration: underline;
}
#resource_lists_wrapper .icon {
  border: 0;
  opacity: 0.6;
  padding: 0.35rem;
  font-size: 1.25rem;
  transition: opacity 0.25s ease;
}
#resource_lists_wrapper .icon:hover {
  opacity: 1;
}

.resource_list_control, .resource_compare_control {
  display: flex;
  padding: 0.5rem 0 0 0;
}
.resource_list_control button, .resource_compare_control button {
  cursor: pointer;
  font-size: 84%;
  margin: 0;
  padding: 0.1em 0.3em;
}
.resource_list_control .remove_action, .resource_compare_control .remove_action {
  margin-right: 0.5rem;
}

.resource_lists_all {
  width: 100%;
}
.resource_lists_all button {
  width: 100%;
  padding: 0.25rem 0.5rem;
}
.resource_lists_all button + button {
  margin-left: 0;
}
.resource_lists_all .form_field {
  width: 100%;
}
.resource_lists_all .form_field input {
  width: 100%;
}
.resource_lists_all .list_options {
  max-height: 300px;
  min-height: 300px;
  overflow-y: scroll;
  padding-right: 0.75rem;
}

#category_list {
  margin: 0 auto;
  max-width: 500px;
}
#category_list_wrapper {
  background: #edfdfe;
}
#category_list_wrapper table a {
  color: #14161e;
  text-decoration: none;
}
#category_list_wrapper table tr:hover a {
  color: #00a3b3;
  text-decoration: underline;
}
#category_list_wrapper .icon {
  border: 0;
  opacity: 0.6;
  padding: 0.35rem;
  font-size: 1.25rem;
  transition: opacity 0.25s ease;
}
#category_list_wrapper .icon:hover {
  opacity: 1;
}
#category_list_wrapper .search .card_content .form_field + .form_field {
  margin: 0 0 0 1rem;
}

#category_browse {
  background: #edfdfe;
  margin: 0 auto;
  padding: 1rem 0;
}
#category_browse_wrapper {
  padding: 0;
}

#browse .app_content {
  display: flex;
}
#browse #category_search .category_children {
  max-height: none !important;
}
#browse .card {
  width: 100%;
}
#browse .card_content {
  width: 100%;
  align-content: flex-start;
  align-items: flex-start;
  min-height: 100%;
}

#browse_results {
  width: 100%;
}

#browse_results_wrapper {
  order: 2;
  max-width: 66%;
}
#browse_results_wrapper .card {
  align-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 800px) {
  #browse_results_wrapper {
    max-width: 100%;
  }
}

#category_sidebar {
  max-width: 32%;
  min-width: auto;
  width: 100%;
  order: 1;
}
@media only screen and (max-width: 800px) {
  #category_sidebar {
    max-width: 100%;
    min-width: 100%;
  }
}

#category_welcome {
  max-width: 66%;
  min-width: auto;
  order: 0;
}
#category_welcome .card_content {
  display: block;
}
#category_welcome h3 {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 800px) {
  #category_welcome {
    max-width: 100%;
    min-width: 100%;
  }
}

#category_view_wrapper {
  background: #edfdfe;
  padding: 2rem 0;
}
#category_view_wrapper .app_content #content {
  display: grid;
  grid-template-columns: 32% 32% 2% 34%;
  grid-template-areas: " main main . side ";
  grid-template-rows: auto;
}
#category_view_wrapper .card.main {
  align-content: flex-start;
  align-items: flex-start;
  grid-area: main;
  margin-right: 1rem;
}
#category_view_wrapper .card.main .card_content {
  align-content: flex-start;
  align-items: flex-start;
}
#category_view_wrapper .card.main h2 {
  margin-top: 0;
}
#category_view_wrapper .card.side {
  align-content: flex-start;
  align-items: flex-start;
  grid-area: side;
}
#category_view_wrapper .card.side .card_content {
  display: block;
}

#categories_browse {
  margin: 0 auto;
  padding: 1rem 0;
  max-width: 800px;
}
#categories_browse_wrapper {
  background: #edfdfe;
  padding: 0;
}
#categories_browse ul.child_categories {
  margin: 0;
  padding: 0;
  width: 100%;
}
#categories_browse ul.child_categories li {
  display: inline-block;
  margin-right: 0.5rem;
}
#categories_browse ul.child_categories li:before {
  content: "•";
  color: #798add;
  display: inline-block;
  padding: 0 0.25rem;
}

#category_form {
  max-width: 800px;
}
#category_form_wrapper {
  background: #edfdfe;
}
#category_form_wrapper .form_steps {
  max-width: 800px;
}
#category_form input[type=text], #category_form select, #category_form textarea {
  width: 100%;
}
#category_form .category_list .label {
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  color: #14161e;
  display: block;
  align-items: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
}
#category_form .category_list .label:hover {
  background: #b6bfed;
  border: 1px solid #798add;
  color: #1c2a6e;
}
#category_form .category_list .label.deleting {
  border: 1px solid #dc3000;
  color: #dc3000;
  opacity: 0.85;
}
#category_form .category_list .label.deleting label {
  color: #dc3000;
  text-decoration: line-through;
}
#category_form .category_list .label.deleting:hover {
  background: rgba(220, 48, 0, 0.2);
  opacity: 1;
}
#category_form .category_list .label input {
  margin-right: 0.5rem;
}
#category_form .category_list .label label {
  display: inline-block;
}
#category_form .category_list .label label:hover {
  cursor: grab;
}
#category_form .category_list .label label:active {
  cursor: grabbing;
}
#category_form .category_list button {
  font-size: 0.75rem;
  margin: 0 0.5rem 0 0;
  padding: 0.25rem;
}
#category_form .category_list span.deleting {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #dc3000;
  margin: 0 0.5rem 0 0;
  padding: 0.25rem;
}
#category_form .category_list .delete, #category_form .category_list .undelete {
  border: 0;
  color: #444;
  float: right;
  font-family: "Font Awesome 5 Pro";
  opacity: 0.5;
  padding: 0.25rem 0;
  transition: color 0.25s ease, opacity 0.25s ease;
}
#category_form .category_list .delete:hover, #category_form .category_list .undelete:hover {
  color: #dc3000;
  opacity: 1;
}
#category_form h2 {
  margin-top: 0;
}
#category_form #new_subcategory {
  max-width: 80%;
}
#category_form button.compact {
  padding: 0.5rem 0.75rem;
}
#category_form .category_fields_form {
  background: #edfdfe;
  border-radius: 4px;
  padding: 0.5rem 0.5rem 1rem;
}
#category_form .category_fields_form .label {
  background: #fff;
  margin-top: 0;
}
#category_form .category_field_form {
  border: 1px solid #b9b9b9;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: -0.5rem 0.5rem 0.5rem;
  padding: 0.5rem 1rem 1rem;
}
#category_form .category_field_form .has_options {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#category_form .category_field_form .has_options.deleting input {
  border: 1px solid #963D00;
  color: #963D00;
  opacity: 0.85;
  text-decoration: line-through;
}
#category_form .category_field_form .has_options input {
  max-width: calc(100% - 1.5rem);
}
#category_form .category_field_form .has_options button {
  margin: 0;
}
#category_form label:hover {
  cursor: crosshair;
}
#category_form .category_section {
  margin-bottom: 1rem;
}
#category_form .category_section.deleted {
  color: #FF6700;
  text-decoration: line-through;
}
#category_form .section_title {
  margin-left: 1.5rem;
  position: relative;
}
#category_form .section_title.uncategorized {
  margin-left: 0;
}
#category_form .section_title .delete, #category_form .section_title .edit {
  background: none;
  border: 0;
  color: #b9b9b9;
  right: 0;
  top: 50%;
  margin-top: 0;
  padding: 0;
  position: absolute;
}
#category_form .section_title .delete:hover, #category_form .section_title .edit:hover {
  color: #dc3000;
}
#category_form .section_title .edit {
  right: 1.5rem;
}
#category_form .section_title .handle {
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: row-resize;
}
#category_form .section_title .section_help_text {
  display: block;
  font-size: 90%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  margin: 0.25rem 0;
  width: 100%;
}
#category_form .add_form_field_controls_wrapper {
  border-radius: 8px;
  padding: 0.5rem 1rem 0;
}
#category_form .add_form_field_controls .button {
  margin: 0 0 0.5rem;
}

#compare {
  margin: 0 auto;
  padding: 1rem 0;
}
#compare_wrapper {
  background: #edfdfe;
  padding: 0;
}
#compare h3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#compare h3 .comparing {
  min-width: 100%;
}
#compare h3 .comparing_to {
  min-width: 10%;
  max-width: 10%;
  text-align: center;
}
#compare .resource_name {
  min-width: 42%;
  max-width: 42%;
}
#compare table thead {
  background: none;
}
#compare table thead th {
  color: #fff;
  opacity: 1;
  position: sticky;
  top: 0;
  z-index: 2;
  background: none;
}
#compare table thead th:nth-child(even) {
  background: #0096a4;
}
#compare table thead th:nth-child(odd) {
  background: #009fae;
}
#compare table thead th:first-child {
  position: relative;
}
#compare table .section_title {
  text-align: left;
}
#compare table .section_title td {
  color: #1c2a6e;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  padding: 1rem 0.5rem;
}
#compare table tbody tr:hover td {
  background: rgba(240, 153, 0, 0.2);
}
#compare table td:nth-child(even) {
  background: #f7f7f7;
}
#compare table td:nth-child(odd) {
  background: #fcfcfc;
}
#compare table td:first-child {
  background: #fff;
}

.icon {
  font-size: 2.75rem;
  display: block;
  margin: 0 1rem 0 0;
}
@media only screen and (max-width: 320px) {
  .icon {
    font-size: 2.5rem;
  }
  .icon.small {
    font-size: 1rem;
  }
}
.icon.blue {
  color: #1c2a6e;
}
.icon.lightBlue {
  color: #798add;
}
.icon.grey {
  color: #e8e8e8;
}
.icon.small {
  font-size: 1rem;
}
.icon_stack {
  display: inline-block;
  position: relative;
}
.icon_stack .icon_child {
  background: #fff;
  border-radius: 100%;
  bottom: 0;
  display: block;
  font-size: 1.5rem;
  line-height: 1em;
  overflow: hidden;
  position: absolute;
  right: 12px;
  text-align: center;
  -webkit-text-stroke: 1px #fff;
  width: auto;
}
.icon_stack.small .icon {
  font-size: 1.25rem;
}
.icon_stack.small .icon:last-child {
  font-size: 0.75rem;
}

.fab, .fas, .fa {
  text-decoration: none !important;
}
.fab:hover, .fas:hover, .fa:hover {
  text-decoration: none !important;
}
.fab:hover:before, .fas:hover:before, .fa:hover:before {
  text-decoration: none !important;
}
.fab:before, .fas:before, .fa:before {
  text-decoration: none !important;
}

.special_indicators {
  padding: 0.65rem 0 0;
  text-align: left;
  width: 100%;
  max-width: 40%;
}
.special_indicators .special_indicator {
  height: 1.25em;
  width: 1.25em;
  overflow: hidden;
  white-space: nowrap;
}
.special_indicators .special_indicator + .special_indicator {
  margin-left: 0.5em;
}
.special_indicators .special_indicator.icwa {
  background: url(/imgs/icwa_resource.png) center center no-repeat;
  display: inline-block;
  height: 16px;
  width: 16px;
}
.special_indicators .special_indicator.eligibility_requirements {
  color: #dc3000;
}
.special_indicators .special_indicator.is_accessible {
  color: #1c2a6e;
}
.special_indicators .special_indicator.respite_tree {
  display: inline-block;
  height: 1rem;
  width: 1rem;
  background: url(/images/icons/respitetree.png) no-repeat center center;
  background-size: cover;
}
.special_indicators .special_indicator span {
  display: inline-block;
  width: 0;
  overflow: hidden;
}

#modal {
  background: rgba(28, 42, 110, 0.5);
  color: #14161e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
}
#modal .card {
  max-width: 400px;
  min-width: 400px;
  max-height: 98vh;
  overflow-y: scroll;
}
#modal .card_content {
  padding: 3rem 1rem;
}
#modal .close_modal {
  font-size: 1rem;
  height: auto;
  margin: 0;
  padding: 0.25rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

ul.plain, ol.plain {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
ul li, ol li {
  padding: 0.25rem 0;
}

form > div > legend:first-child {
  margin-top: 0;
}
form.form_card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dffbfd;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  width: 100%;
}
form .note {
  font-size: 88%;
}
form .note.error {
  color: #dc3000;
  display: inline-block;
  padding: 0.25rem;
}
form .form_message {
  margin: 1rem 0;
}
form .form_message.success:before {
  content: "\f00c";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  margin: 0 0.5rem;
}
form .form_message.error:before {
  content: "\f071";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  margin: 0 0.5rem;
}
form .daily_open_close_hours_wrapper {
  border-radius: 4px;
  display: inline-block;
}
form .daily_open_close_hours .form_fields {
  justify-content: flex-start;
}
form .daily_open_close_hours .form_fields > div {
  width: auto;
}
form .daily_open_close_hours .form_fields label, form .daily_open_close_hours .form_fields .to {
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 0.5em 0.75em;
}
form .daily_open_close_hours .form_fields label {
  min-width: 140px;
  width: 140px;
}
form .daily_open_close_hours .form_fields input {
  min-width: 4rem;
  max-width: 6rem;
  width: 100%;
}
form .daily_open_close_hours .to {
  max-width: 100px;
}
@media only screen and (max-width: 767px) {
  form .daily_open_close_hours .form_fields label {
    min-width: inherit;
    width: auto;
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
  }
  form .daily_open_close_hours .form_fields > div {
    display: inline-block;
  }
  form .daily_open_close_hours .form_fields input {
    min-width: 2.5rem;
    max-width: 2.5rem;
    width: 2.5rem;
  }
  form .daily_open_close_hours .form_fields .to {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
form .category_field__Range {
  display: flex;
  flex-wrap: wrap;
}
form .category_field__Range legend {
  width: 100%;
}
form .category_field__Range > div {
  margin-right: 1.5rem;
}
form .category_field__Range > div input {
  max-width: 4rem;
}
form #save {
  min-width: 8rem;
}

.form_steps {
  display: flex;
  justify-content: space-around;
  margin: 0 auto 1rem;
  padding: 0 0 0.75rem;
  height: auto;
  position: relative;
  text-align: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  overflow-x: scroll;
}
.form_steps:after {
  background: #e8e8e8;
  bottom: 13px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .form_steps:after {
    display: none;
  }
}
.form_steps_progress_indicator {
  background: #1c2a6e;
  bottom: 13px;
  content: "";
  display: block;
  height: 2px;
  left: 0%;
  position: absolute;
  transition: width 0.5s ease;
  width: 0;
  z-index: 1;
}
.form_steps .step {
  display: inline-block;
  font-size: 80%;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.65rem;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
.form_steps .step:after {
  background: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 100%;
  bottom: -24px;
  align-items: center;
  display: flex;
  justify-content: center;
  content: "";
  height: 20px;
  line-height: 1.1rem;
  width: 20px;
  padding-top: 0.1rem;
  position: absolute;
  left: calc(50% - 10px);
  z-index: 1;
}
.form_steps .step.active {
  font-family: "CeraPro-Medium", sans-serif;
}
.form_steps .step.active:after {
  background: #00a3b3;
  border: 2px solid #1c2a6e;
  color: red;
}
.form_steps .step.complete:after {
  border-color: #263997 !important;
  background: #263997;
  color: #fff;
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 80%;
  font-weight: bold;
}

.form_field + .form_field, .form_field + .form_fields {
  margin-top: 1rem;
}

.form_fields {
  display: flex;
  justify-content: space-between;
}
.form_fields + .form_fields, .form_fields + .form_field {
  margin-top: 1rem;
}
.form_fields > div {
  width: 99%;
}
.form_fields > div + div {
  margin-left: 1rem;
}
@media only screen and (max-width: 767px) {
  .form_fields {
    display: block;
  }
  .form_fields > div {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 1rem;
  }
}

.form_actions {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}

.update_type {
  font-size: 0.7rem;
  line-height: 1.25rem;
}
.update_type:before {
  align-items: center;
  border-radius: 100%;
  color: #fff;
  display: inline-flex;
  height: 1rem;
  justify-content: center;
  width: 1rem;
}
.update_type_pending:before {
  background: blue;
}
.update_type_delete:before {
  background: red;
}
.update_type_create:before {
  background: green;
}
.update_type_update:before {
  background: yellow;
}

legend {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  margin: 1.75rem 0 1.25rem;
  position: relative;
  text-transform: capitalize;
}
legend:first-child {
  margin-top: 0;
}
legend:after {
  background: #798add;
  bottom: -0.65rem;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  z-index: 0;
  width: 3em;
}
legend.small {
  font-size: 0.9rem;
}
legend.small:after {
  background: #798add;
  bottom: -0.45rem;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  z-index: 0;
  width: 3em;
}

label {
  color: #005961;
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  padding: 0.2rem 0;
  font-size: 90%;
}

.label {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
}

.form_controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#search {
  background: #edfdfe;
  margin: 0 auto;
  padding: 2rem 0;
}
#search_wrapper {
  padding: 0;
}
#search_wrapper .app_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
}
#search_wrapper .paginator + .card {
  margin-top: 1rem;
}
#search_filters {
  align-items: flex-start;
  align-content: flex-start;
  min-width: 32%;
  width: 32%;
  height: 100%;
}
#search_filters h2 {
  margin-top: 0;
}
#search_filters input[type=text], #search_filters select {
  margin: 0 0 0.5rem;
  width: 100%;
}
#search_filters .button {
  margin-left: auto;
  margin-right: auto;
}
#search_filters .card_content {
  display: block;
}
#search_results {
  width: 66%;
}
#search_results .card:first-child {
  margin-top: 0;
}
#search_results .highlight {
  border-color: #798add;
}
#search_results .compare_resources {
  background: #fff;
  border: 1px solid #c6f9fc;
  border-radius: 16px;
  box-shadow: 0 4px 4px #cad1f2;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  position: fixed;
  bottom: 0.5rem;
  width: 90%;
  left: 5%;
}
#search_results .compare_resources button {
  font-size: 90%;
  margin: 0;
}
#search_footer {
  min-width: 100%;
}
#search #openSearchFilters {
  display: none;
}
#search .resource_list_control {
  width: 58%;
}
#search .resource_list_control .main_action {
  min-width: 180px;
}
#search .search_buttons {
  text-align: center;
}
@media only screen and (max-width: 867px) {
  #search_filters {
    min-width: 100%;
    width: 100%;
  }
  #search #openSearchFilters {
    display: block;
    margin: 1rem auto;
  }
  #search .collapsed {
    height: 5.5rem;
    overflow: hidden;
  }
  #search_results {
    width: 100%;
  }
}

#category_search .form_field + .form_field {
  margin-top: 0.5rem;
}

#category_select {
  border: 1px solid #8edde2;
  border-radius: 4px;
  max-height: 400px;
  height: 100%;
  margin: 0 0 1em 0;
  overflow-y: scroll;
  max-width: 100%;
}
#category_select input {
  display: none;
}
#category_select .category_parent {
  background: #e8fcfe;
}
#category_select .category_parent:nth-child(odd) {
  background: #e3fcfd;
}
#category_select .category_parent + .category_parent {
  border-top: 1px solid #d5fafd;
}
#category_select .category_parent label {
  padding: 0.35rem 0.75rem;
}
#category_select .category_children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}
#category_select .category_children label span {
  margin: 0 0.5em 0 0.5em;
}
#category_select input:checked + label {
  background: #00b6c7;
  color: #fff;
}
#category_select input:checked + label + .category_children,
#category_select label.has_checked_child + .category_children {
  max-height: 1000px;
}
#category_select label:focus, #category_select label:hover {
  background: #798add;
  border: 0;
  box-shadow: none;
  color: #fff;
}

#browse {
  background: #edfdfe;
  margin: 0 auto;
  padding: 1rem 0;
}
#browse_wrapper {
  padding: 0;
}
#browse_wrapper .app_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
}
#browse_wrapper .paginator {
  margin: 0 0 1rem;
}
#browse_results {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#browse_results .resource_column {
  width: 31%;
}
@media only screen and (max-width: 799px) {
  #browse_results .resource_column {
    width: 49%;
  }
}
@media only screen and (max-width: 650px) {
  #browse_results .resource_column {
    width: 100%;
  }
}
#browse_results .resource_link {
  display: block;
  padding: 0.5rem 0;
}

.timerSpinner {
  border: 2px solid #798add;
  border-radius: 100%;
  display: block;
  height: 0.72rem;
  margin-left: 0.5rem;
  width: 0.72rem;
  -webkit-clip-path: polygon(0 0, 50% 0, 50% 50%, 60% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 0, 50% 50%, 60% 0, 100% 0, 100% 100%, 0 100%);
  animation: spinner 5s linear infinite;
}
@keyframes spinner {
  25% {
    -webkit-clip-path: polygon(0 0, 50% 0, 50% 50%, 100% 50%, 100% 50%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 0, 50% 50%, 100% 50%, 100% 50%, 100% 100%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 100%, 0 100%);
  }
  75% {
    -webkit-clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%, 0 50%, 0 50%, 0 50%);
            clip-path: polygon(0 0, 50% 0, 50% 50%, 0 50%, 0 50%, 0 50%, 0 50%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 50% 0, 50% 50%, 50% 0, 50% 0, 50% 0, 50% 0);
            clip-path: polygon(0 0, 50% 0, 50% 50%, 50% 0, 50% 0, 50% 0, 50% 0);
  }
}

.button__plain:hover .timerSpinner {
  border-color: #fff;
}

footer {
  background: #007a85;
  color: #fff;
  line-height: 1.5rem;
  padding: 3rem 0;
  width: 100%;
}
footer.embed {
  background: #edfdfe;
  color: #1c2a6e;
  padding: 0 0 1rem;
}
footer .app_content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
footer .column {
  width: calc(33% - 0.5rem);
}
footer .column .header {
  border-bottom: 1px solid #00d9ef;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  line-height: 1.25rem;
  margin: 0 0 0.5rem;
  text-decoration: none;
}
footer svg {
  fill: #fff;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer #partners {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer #partners .header {
  width: 100%;
}
footer #partners svg {
  min-width: 100%;
  width: 100%;
}
footer #partners img {
  width: 49%;
}
footer #partners a + a {
  margin-top: 1rem !important;
}
footer #copyright {
  margin: 1rem 0;
  text-align: center;
  width: 100%;
}
footer #funding_statement {
  margin: 1rem auto;
  max-width: 1200px;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  footer #partners {
    display: block;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  footer .app_content {
    display: block;
  }
  footer .column {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  footer #partners {
    display: block;
    height: auto;
  }
}

#accordion {
  margin: 1rem 0;
  min-width: 100%;
}
#accordion .accordion_section {
  min-width: 100%;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
  border-left: 1px solid #cad1f2;
  border-right: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(1) > button {
  background-color: #7183db;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(2) > button {
  background-color: #687bd9;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(3) > button {
  background-color: #6074d7;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(4) > button {
  background-color: #586dd5;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(5) > button {
  background-color: #5066d3;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(6) > button {
  background-color: #485fd1;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(7) > button {
  background-color: #4058cf;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(8) > button {
  background-color: #3851cd;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(9) > button {
  background-color: #324bc8;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(10) > button {
  background-color: #3048c0;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(11) > button {
  background-color: #2e45b8;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(12) > button {
  background-color: #2c42af;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(13) > button {
  background-color: #2a3fa7;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(14) > button {
  background-color: #283c9f;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(15) > button {
  background-color: #263997;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(16) > button {
  background-color: #24368f;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(17) > button {
  background-color: #223387;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(18) > button {
  background-color: #20307f;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(19) > button {
  background-color: #1e2d76;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section:nth-child(20) > button {
  background-color: #1c2a6e;
}
#accordion .accordion_section:last-child {
  border-bottom: 1px solid #cad1f2;
}
#accordion .accordion_section > button {
  background: #798add;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0.5rem 0.25rem;
  width: 100%;
  text-align: left;
}
#accordion .accordion_section > button:hover {
  background: #8998e1;
}
#accordion .accordion_details {
  display: block;
  height: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0.5rem;
  transition: max-height 1s linear;
}
#accordion .open + .accordion_details {
  max-height: 100000px;
  height: auto;
}
#accordion button .fas {
  font-size: 1rem;
  margin-right: 0.25rem;
}

#reports_wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#reports_wrapper form label {
  min-width: 100%;
}
#reports_wrapper form label.child_category {
  border-left: 1px solid #444;
  margin: 0 0 0 0.25rem;
  padding-left: 0.5rem;
}
#reports_wrapper form .card {
  align-items: flex-start;
  align-content: flex-start;
  max-width: 48%;
  min-width: auto !important;
}
#reports_wrapper form #reportGo {
  min-width: 100%;
  margin: 0 0 1rem;
}

.fakeImage {
  background: rgba(28, 42, 110, 0.1);
  background: rgba(121, 138, 221, 0.5);
}

/* delete after cards are defined */
.provider_contact {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: min-content 1fr;
  grid-auto-rows: auto;
  grid-gap: 0.25rem;
  grid-template-areas: "address address address . first first first" "address address address . second second second" "address address address . third third third";
  width: 100%;
}
.provider_contact address {
  grid-area: address;
}
.provider_contact .provider_contact_details_info {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.provider_contact .provider_contact_details_info:nth-child(2) {
  grid-area: first;
}
.provider_contact .provider_contact_details_info:nth-child(3) {
  grid-area: second;
}
.provider_contact .provider_contact_details_info:nth-child(4) {
  grid-area: third;
}
@media only screen and (max-width: 767px) {
  .provider_contact {
    display: block;
  }
  .provider_contact_details {
    width: 100%;
  }
  .provider_contact_details_info {
    margin-top: 0.5rem;
    max-width: 300px;
  }
}

.provider_contact1 {
  display: flex;
  font-size: 92%;
  justify-content: space-between;
  min-width: 100%;
  opacity: 0.8;
}
.provider_contact1 address {
  display: inline-block;
  width: 40%;
}
.provider_contact1_details {
  width: 44%;
}
.provider_contact1_details_info {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.provider_contact1_details_info + .search_result_details_contact_info {
  margin-top: 0.25rem;
}
.provider_contact1_details_info a {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .provider_contact1 {
    display: block;
  }
  .provider_contact1_details {
    width: 100%;
  }
  .provider_contact1_details_info {
    margin-top: 0.5rem;
    max-width: 300px;
  }
}

#contact_wrapper #content, #about_wrapper #content {
  margin: 0 auto;
  width: 800px;
  max-width: 100%;
}
#contact_wrapper #content table, #about_wrapper #content table {
  max-width: 100vw;
}
#contact_wrapper form, #about_wrapper form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contact_wrapper form > div, #about_wrapper form > div {
  width: 49%;
}
#contact_wrapper form .form_submit, #about_wrapper form .form_submit {
  margin-top: 1rem;
  width: 100%;
}
#contact_wrapper form input, #contact_wrapper form select, #contact_wrapper form textarea, #about_wrapper form input, #about_wrapper form select, #about_wrapper form textarea {
  max-width: 400px;
  width: 100%;
}
#contact_wrapper form textarea, #about_wrapper form textarea {
  height: 289px;
}
@media only screen and (max-width: 800px) {
  #contact_wrapper form, #about_wrapper form {
    display: block;
  }
}

#manage {
  margin: 1rem 0;
}
#manage .form_field + .form_field {
  margin: 0 0 0 1rem;
}
#manage_resources {
  width: 100%;
}
#manage table {
  width: 100%;
}
@media only screen and (max-width: 800px) {
  #manage .manage_search .card_content {
    display: block;
  }
  #manage .form_field {
    display: block;
    margin: 0 0 1rem 0;
  }
  #manage .form_field + .form_field {
    margin-left: 0;
  }
}

@media print {
  nav {
    display: none;
  }
  header #site_title img {
    margin: 0 !important;
  }
  #banner {
    background: none;
    color: #1c2a6e;
    padding: 1rem;
  }
  #banner h1 {
    margin: 0;
    text-shadow: none;
  }
  #banner_bg {
    display: none;
  }
  section {
    padding: 1rem 0;
  }
  footer {
    background: none;
    color: #1c2a6e;
    padding: 1rem;
  }
  footer .app_content {
    display: none;
  }
  #test_banner + header {
    margin-top: 1rem !important;
  }
}
.medium-editor-anchor-preview, .medium-editor-toolbar {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  z-index: 2000;
}
@keyframes medium-editor-image-loading {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes medium-editor-pop-upwards {
  0% {
    opacity: 0;
    transform: matrix(0.97, 0, 0, 1, 0, 12);
  }
  20% {
    opacity: 0.7;
    transform: matrix(0.99, 0, 0, 1, 0, 2);
  }
  40% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, -1);
  }
  100% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.medium-editor-anchor-preview {
  left: 0;
  line-height: 1.4;
  max-width: 280px;
  position: absolute;
  text-align: center;
  top: 0;
  word-break: break-all;
  word-wrap: break-word;
  visibility: hidden;
}

.medium-editor-anchor-preview a {
  color: #fff;
  display: inline-block;
  margin: 5px 5px 10px;
}

.medium-editor-placeholder-relative:after, .medium-editor-placeholder:after {
  content: attr(data-placeholder) !important;
  white-space: pre;
  padding: inherit;
  margin: inherit;
  font-style: italic;
}

.medium-editor-anchor-preview-active {
  visibility: visible;
}

.medium-editor-dragover {
  background: #ddd;
}

.medium-editor-image-loading {
  animation: medium-editor-image-loading 1s infinite ease-in-out;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  height: 40px;
  width: 40px;
}

.medium-editor-placeholder {
  position: relative;
}

.medium-editor-placeholder:after {
  position: absolute;
  left: 0;
  top: 0;
}

.medium-editor-placeholder-relative, .medium-editor-placeholder-relative:after {
  position: relative;
}

.medium-toolbar-arrow-over:before, .medium-toolbar-arrow-under:after {
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -8px;
  position: absolute;
  width: 0;
}

.medium-toolbar-arrow-under:after {
  border-width: 8px 8px 0;
}

.medium-toolbar-arrow-over:before {
  border-width: 0 8px 8px;
  top: -8px;
}

.medium-editor-toolbar {
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
}

.medium-editor-toolbar ul {
  margin: 0;
  padding: 0;
}

.medium-editor-toolbar li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.medium-editor-toolbar li button {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 1.33;
  margin: 0;
  padding: 15px;
  text-decoration: none;
}

.medium-editor-toolbar li button:focus {
  outline: 0;
}

.medium-editor-toolbar li .medium-editor-action-underline {
  text-decoration: underline;
}

.medium-editor-toolbar li .medium-editor-action-pre {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
  font-weight: 100;
  padding: 15px 0;
}

.medium-editor-toolbar-active {
  visibility: visible;
}

.medium-editor-sticky-toolbar {
  position: fixed;
  top: 1px;
}

.medium-editor-relative-toolbar {
  position: relative;
}

.medium-editor-toolbar-active.medium-editor-stalker-toolbar {
  animation: medium-editor-pop-upwards 160ms forwards linear;
}

.medium-editor-action-bold {
  font-weight: bolder;
}

.medium-editor-action-italic {
  font-style: italic;
}

.medium-editor-toolbar-form {
  display: none;
}

.medium-editor-toolbar-form a, .medium-editor-toolbar-form input {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.medium-editor-toolbar-form .medium-editor-toolbar-form-row {
  line-height: 14px;
  margin-left: 5px;
  padding-bottom: 5px;
}

.medium-editor-toolbar-form .medium-editor-toolbar-input, .medium-editor-toolbar-form label {
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  padding: 6px;
  width: 316px;
  display: inline-block;
}

.medium-editor-toolbar-form .medium-editor-toolbar-input:focus, .medium-editor-toolbar-form label:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  outline: 0;
}

.medium-editor-toolbar-form a {
  display: inline-block;
  font-size: 24px;
  font-weight: bolder;
  margin: 0 10px;
  text-decoration: none;
}

.medium-editor-toolbar-form-active {
  display: block;
}

.medium-editor-toolbar-actions:after {
  clear: both;
  content: "";
  display: table;
}

.medium-editor-element {
  word-wrap: break-word;
  min-height: 30px;
}

.medium-editor-element img {
  max-width: 100%;
}

.medium-editor-element sub {
  vertical-align: sub;
}

.medium-editor-element sup {
  vertical-align: super;
}

.medium-editor-hidden {
  display: none;
}

.medium-editor-element {
  border: 1px solid #b6bfed;
  border-radius: 4px;
  min-height: 300px;
  padding: 0.5em 0.75em;
}

.medium-editor-toolbar-actions li button {
  border-radius: 0;
  border-right: 1px solid #687bd9;
  border-left: 1px solid #8998e1;
}
.medium-editor-toolbar-actions li:first-child button {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 0;
}
.medium-editor-toolbar-actions li:last-child button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 0;
}

.medium-editor-toolbar-form {
  background: #fff;
  border: 1px solid #b6bfed;
  border-radius: 4px;
  box-shadow: 0 4px 4px #b6bfed;
}
.medium-editor-toolbar-form.medium-editor-toolbar-form-active {
  display: flex;
  align-content: center;
}
.medium-editor-toolbar-form.medium-editor-toolbar-form-active input {
  padding: 0.75rem 0.5rem;
}
.medium-editor-toolbar-form .medium-editor-toolbar-save {
  border-left: 0;
  border-right: 1px solid #687bd9;
}
.medium-editor-toolbar-form .medium-editor-toolbar-close {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 0;
  border-left: 1px solid #8998e1;
}
.medium-editor-toolbar-form .medium-editor-toolbar-save, .medium-editor-toolbar-form .medium-editor-toolbar-close {
  background: #798add;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0;
  padding: 0 0.5rem;
  width: 2rem;
}

.resource_updated_at {
  font-size: 88%;
  white-space: nowrap;
}

#updated_resources {
  min-width: 100%;
}
#updated_resources table {
  min-width: 100%;
}
#updated_resources #searchForms {
  display: flex;
}
#updated_resources #searchForms form {
  display: flex;
}
#updated_resources #updateReportForm {
  margin-left: 1rem;
}
#updated_resources #updateReportForm input[type=text] {
  max-width: 7.5rem;
}

#resource_moderation_form .card_content b, #resource_moderation_form .card_content span {
  display: block;
  width: 100%;
}

#resource_disclaimer {
  font-size: 0.9rem;
  font-style: italic;
  padding: 2rem 1rem;
}

#content_page {
  max-width: 800px;
  padding: 2rem 2rem;
}
#content_page h1 {
  color: #1c2a6e;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 800;
}

.comma_separated:after {
  content: ",  ";
  display: inline-block;
}
.comma_separated:last-child:after {
  display: none;
}

.is_licensure_field_message {
  display: inline-block;
  font-style: italic;
  padding: 0.2rem 0;
}

#announcement {
  display: flex;
  justify-content: center;
  background: #007a85;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  width: 100%;
}
#announcement span {
  background: #007a85;
  display: block;
  max-width: 1200px;
}
@media only screen and (max-width: 800px) {
  #announcement {
    font-size: 1rem;
    font-weight: 600;
  }
}

#user_profile_wrapper .app_content {
  max-width: 800px;
}
