
.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;
}

@font-face {
  font-family: "CeraPro-Italic";
  src: url("/css/fonts/cera/Cera Pro Regular Italic.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Regular Italic.woff") format("woff"), url("/css/fonts/cera/Cera Pro Regular Italic.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "CeraPro-Medium";
  src: url("/css/fonts/cera/Cera Pro Medium.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Medium.woff") format("woff"), url("/css/fonts/cera/Cera Pro Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "CeraPro-Light";
  src: url("/css/fonts/cera/Cera Pro Light.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Light.woff") format("woff"), url("/css/fonts/cera/Cera Pro Light.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "CeraPro-Bold";
  src: url("/css/fonts/cera/Cera Pro Bold.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Bold.woff") format("woff"), url("/css/fonts/cera/Cera Pro Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "CeraPro-Black";
  src: url("/css/fonts/cera/Cera Pro Black.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Black.woff") format("woff"), url("/css/fonts/cera/Cera Pro Black.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "CeraPro-BlackItalic";
  src: url("/css/fonts/cera/Cera Pro Black Italic.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Black Italic.woff") format("woff"), url("/css/fonts/cera/Cera Pro Black Italic.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "CeraPro-Regular";
  src: url("/css/fonts/cera/Cera Pro Regular.woff2") format("woff2"), url("/css/fonts/cera/Cera Pro Regular.woff") format("woff"), url("/css/fonts/cera/Cera Pro Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

:root {
  --bgColor2: #fcfdff;
  --bgColor: #f4f7fd;
  --colorBlue: #002763;
  --colorBlueMedium: #146DFB;
  --colorBlueLight: #63a0ff;
  --colorBluePlaceHolder: #c8deff;
  --colorBlueBG: #BCD6FF;
  --colorGrey: #e8e8e8;
  --colorGreyLight: #eaeaea;
  --colorGreyDark: #444;
  --linkColor: #5788e7;
  --textColor: #0c1a2f;
  --errorColor: #FF6700;
  --successColor: #00af92;
  --warnColor: #FFA200;
  --inputFocus: #F09900;
}

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

input, select, textarea, label, button {
  outline: none;
}

input:focus, select:focus, textarea:focus, label:focus, button:focus {
  box-shadow: 0 0 3px #F09900;
  border-color: #F09900 !important;
}

button {
  background: none;
  border: 0;
}

button, .button {
  align-items: center;
  align-content: center;
  background: #63a0ff;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: "CeraPro-Bold";
  justify-content: center;
  outline: none;
  overflow: hidden;
  margin: .5rem 0 0;
  padding: 1em 1.5em;
  position: relative;
  text-decoration: none;
  transition: background .2s ease;
  z-index: 0;
  line-height: inherit;
}

button:hover, .button:hover {
  background: #3081ff;
  color: #fff;
}

button:active, button:focus, .button:active, .button:focus {
  background: #3081ff;
}

button + .button, button + button, .button + .button, .button + button {
  margin-left: 1em;
}

button.compact, .button.compact {
  font-family: "CeraPro-Medium";
  padding: .25rem .5rem;
  font-size: .88rem;
}

button.compact2, .button.compact2 {
  font-family: "CeraPro-Medium";
  padding: .5rem .5rem;
  font-size: .88rem;
}

button__plain, .button__plain {
  background: none;
  color: #63a0ff;
  font-family: "CeraPro-Regular", sans-serif;
  position: relative;
  transition: border .2s ease;
}

button__plain:active, button__plain:focus, button__plain:hover, .button__plain:active, .button__plain:focus, .button__plain:hover {
  background: none;
  border: 1px solid #63a0ff;
  color: #63a0ff;
}

button__notext, .button__notext {
  position: relative;
  overflow: hidden;
}

button__notext span, .button__notext span {
  position: absolute;
  right: -1000px;
}

button__grey, .button__grey {
  background: #eaeaea;
  color: #444;
  font-family: "CeraPro-Regular", sans-serif;
  transition: border .2s ease;
}

button__grey:hover, .button__grey:hover {
  background: #eaeaea;
  border: 1px solid #444;
  color: #444;
}

button__altgreen, .button__altgreen {
  background: #00af92;
}

button__altgreen:hover, .button__altgreen:hover {
  background: #009b81;
  color: #fff;
}

button__altgreen:active, button__altgreen:focus, .button__altgreen:active, .button__altgreen:focus {
  background: #008b74;
}

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 .5rem 0 0;
}

button.main_action:hover, .button.main_action:hover {
  background: #63a0ff;
  color: #fff;
}

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 .main_action:hover, .button_wrapper .main_action:hover {
  background: #63a0ff;
  color: #fff;
}

button_wrapper .alt_action, .button_wrapper .alt_action {
  align-items: center;
  border-left: 1px solid #63a0ff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  display: flex;
  padding: .145rem .5rem;
  height: 100%;
  justify-content: center;
}

button_wrapper .alt_action:hover, .button_wrapper .alt_action:hover {
  background: #63a0ff;
  color: #fff;
}

button_wrapper .alt_action:before, .button_wrapper .alt_action:before {
  font-family: 'Font Awesome 5 Pro';
}

button_wrapper .alt_options, .button_wrapper .alt_options {
  background: #fff;
  border: 1px solid #63a0ff;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 1.22rem;
  margin-right: .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: #63a0ff;
  display: block;
  padding: .5rem .5rem;
  overflow: hidden;
  text-align: center !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

button_wrapper .alt_options button:hover, .button_wrapper .alt_options button:hover {
  color: #fff;
  background: #63a0ff;
}

button_wrapper .alt_options button[disabled], .button_wrapper .alt_options button[disabled] {
  cursor: not-allowed;
}

button_warn, .button_warn {
  background: #FF6700;
}

button_warn:hover, button_warn:active, button_warn:focus, .button_warn:hover, .button_warn:active, .button_warn:focus {
  background: #e65d00;
}

input[type=text], input[type=number], input[type=date], select, textarea {
  color: #598ad6;
  border: 1px solid #BCD6FF;
  border-radius: 4px;
  padding: .5em .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=number]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #63a0ff;
  opacity: .75;
  margin: 0;
  padding: 0;
}

input[type=text]::placeholder, input[type=number]::placeholder, select::placeholder, textarea::placeholder {
  color: #63a0ff;
  opacity: .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="%2363a0ff" 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 .7em top 50%;
  background-repeat: no-repeat;
  background-size: .65em auto;
  border-radius: 4px;
  cursor: pointer;
  padding-right: 2em;
  position: relative;
}

select.hasCounty {
  color: #598ad6;
}

@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: "CeraPro-Medium";
}

.toggler {
  align-items: center;
  display: inline-flex;
  margin: 0 0 1rem;
}

.toggler .toggle {
  background: #eaeaea;
  border-radius: 2rem;
  border: 1px solid #cfcece;
  height: 2rem;
  margin-right: .5rem;
  padding: 1px;
  transition: background-color .5s ease, border-color .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 .25s ease, color .5s ease;
  width: calc(2rem - 4px);
}

.toggler .toggle:before:hover {
  background: #f9f9f9;
}

.toggler .toggle.is_checked {
  background: #63a0ff;
  border-color: #146DFB;
}

.toggler .toggle.is_checked:before {
  color: #63a0ff;
  margin-left: calc(100% - 2rem + 4px);
}

.toggler .toggle.is_checked:before:hover {
  background: #BCD6FF;
}

.toggler [type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  margin: 2rem;
}

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

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: .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: .5em .5em;
  min-width: 2rem;
  text-align: center;
  text-decoration: none;
}

.paginator .current_page {
  border-bottom: 1px solid #63a0ff;
  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 #d1def7;
  display: flex;
  flex-wrap: wrap;
  margin: 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 .5rem;
  width: 100%;
}

.card_title {
  border-bottom: 1px solid #e7eefb;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: #444;
  font-family: "CeraPro-Medium", sans-serif;
  text-decoration: none;
  padding: .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: "CeraPro-Regular", sans-serif;
  font-size: 90%;
  margin: 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_center > * {
  margin: 0 auto;
  width: 100%;
}

.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: #63a0ff;
  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: .5em 0;
  width: 100%;
}

.card_footer__actions .action.disabled {
  filter: grayscale(100%);
}

.card__blue {
  background: #BCD6FF;
  border: 1px solid #b2d0ff;
  color: #002763;
}

.card__grey {
  background: #eaeaea;
  border: 1px solid #e5e5e5;
  color: #444;
}

.card__grey .card_title, .card__grey .card_sub_header {
  color: #444;
  border-bottom: 1px solid #e5e5e5;
}

a.card, .dashboard_card {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #002763;
}

a.card .card_title, .dashboard_card .card_title {
  color: inherit;
}

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

body {
  align-content: flex-start;
  display: flex;
  color: #0c1a2f;
  font-family: "CeraPro-Regular", sans-serif;
  flex-wrap: wrap;
  max-width: 100vw;
  position: relative;
  justify-content: center;
}

a {
  color: #5788e7;
}

a:hover {
  color: #146DFB;
}

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

address {
  font-style: normal;
}

.error {
  color: #FF6700;
}

.success {
  color: #00af92;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding: .75rem 1.25rem .75rem;
  width: 100%;
}

header #site_title {
  align-items: flex-end;
  display: flex;
  color: #002763;
  flex-wrap: wrap;
  font-family: "CeraPro-Bold", sans-serif;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.35rem;
  text-decoration: none;
}

header #site_title:after {
  content: "Nebraska Resource and Referral System";
  display: block;
  font-size: .75rem;
  color: #325890;
  margin: 0 0 0 1rem;
  width: 100%;
}

header #site_title img {
  height: 2rem;
  margin-right: -16px;
}

@media only screen and (max-width: 1023px) {
  header #site_title {
    padding-bottom: .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: .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: "CeraPro-Bold", sans-serif;
  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: #002763;
  font-family: 'CeraPro-Medium', sans-serif;
  text-align: right;
}

nav a {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  color: #002763;
  display: inline-block;
  font-size: 1rem;
  padding: .25rem 0;
  text-decoration: none !important;
}

nav a:hover {
  border-color: #002763;
}

nav ul {
  display: inline-block;
  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 #002763;
    color: #002763 !important;
    padding: .5rem;
  }
  nav button:hover {
    background: none;
    color: #63a0ff !important;
  }
  nav button#open_nav {
    display: block;
  }
  nav button#close_nav {
    display: block;
    position: fixed;
    right: -308px;
    top: 1rem;
    transition: right .5s ease;
    z-index: 101;
  }
  nav ul {
    background: #e5efff;
    bottom: -4vh;
    box-shadow: -4px 0 4px rgba(0, 39, 99, 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 .5s ease;
    width: 300px;
    z-index: 100;
  }
  nav ul li {
    display: block;
    margin: 0 !important;
    padding: .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: #002763;
}

.text_blue {
  color: #002763;
}

#assessment_form {
  max-width: 800px;
}

#assessment_form_wrapper {
  background: #f4f7fd;
}

#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: .5rem;
}

#assessment_form .assessment_section.deleting {
  opacity: .75;
}

#assessment_form .assessment_section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#assessment_form .assessment_section ul li {
  padding: .25rem 0 0 .5rem;
}

#assessment_form .assessment_section__title {
  font-family: "CeraPro-Medium";
}

#assessment_form .assessment_section .edit, #assessment_form .assessment_section .undelete {
  background: none;
  color: #63a0ff;
  font-size: .9rem;
  position: relative;
  transition: border .2s ease;
  padding: .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 #63a0ff;
  color: #63a0ff;
}

#assessment_form .assessment_section .assessment_questions {
  min-width: 100%;
}

#assessment_form .assessment_section.deleting {
  border-color: #FF6700;
}

#assessment_form .assessment_section.deleting .card_content, #assessment_form .assessment_section.deleting label {
  align-items: center;
  color: #FF6700;
  display: flex;
  justify-content: space-between;
  padding: .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 #eaeaea;
  border-radius: 4px;
  color: #0c1a2f;
  display: flex;
  align-items: flex-start;
  font-family: "CeraPro-Regular", sans-serif;
  margin: .5rem 0;
  padding: .75rem 1rem;
}

#assessment_form .category_list .label:hover {
  background: #BCD6FF;
  border: 1px solid #63a0ff;
  color: #002763;
}

#assessment_form .category_list .label.deleting {
  border: 1px solid #FF6700;
  color: #FF6700;
  opacity: .85;
}

#assessment_form .category_list .label.deleting label {
  color: #FF6700;
  text-decoration: line-through;
}

#assessment_form .category_list .label.deleting:hover {
  background: rgba(255, 103, 0, 0.2);
  opacity: 1;
}

#assessment_form .category_list .label input {
  margin-right: .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: .75rem;
  margin: 0 .5rem 0 0;
  padding: .25rem;
}

#assessment_form .category_list span.deleting {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #FF6700;
  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: .5;
  padding: .25rem 0;
  transition: color .25s ease, opacity .25s ease;
}

#assessment_form .delete:hover, #assessment_form .undelete:hover {
  color: #FF6700;
  opacity: 1;
}

#assessment_form h2 {
  margin-top: 0;
}

#assessment_form button.compact {
  padding: .5rem .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: #f4f7fd;
}

@media print {
  #assessment_take_wrapper.respite section {
    padding: 2rem 0 0 0;
  }
}

#assessment_take_wrapper .icon {
  font-size: 1rem;
  margin: 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: #00af92;
  }
  #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: #FF6700;
  }
}

#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: "CeraPro-Bold";
  font-size: 1.8rem;
  display: block;
}

#assessment_take_wrapper #assessment_form.caregiver #assessment_score #score {
  font-family: "CeraPro-Black";
  font-size: 3rem;
  display: block;
}

#assessment_take_wrapper #assessment_form.caregiver #assessment_score.low {
  background: #00af92;
}

#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: #FF6700;
}

#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 .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: .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: #00af92;
}

#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: .5rem;
}

#assessment_take_wrapper #assessment_section_questions .form_field + .form_field {
  margin-top: .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: .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: .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: .5rem;
}

#assessment_take_wrapper #assessment_section_navigation button {
  margin: 0 .5rem 0 0;
  padding: .5rem;
}

#assessment_take_wrapper #assessment_section_navigation button .icon {
  margin-left: .5rem;
}

#assessment_take_wrapper #assessment_controls {
  order: 3;
  width: 100%;
}

#assessment_take_wrapper #assessment_controls button {
  margin: 0 .5rem 0 0;
}

#assessment_take_wrapper #assessment_finish {
  background: #00af92;
  margin-top: 1rem;
}

#assessment_take_wrapper #assessment_show_search {
  background: #00af92;
  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: .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 .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% - .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 .25rem;
  padding: 1rem;
}

#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions h4 {
  margin: 0 0 .25rem;
}

#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions li {
  padding: 0.125rem 0 .35rem 0;
}

#assessment_take_wrapper #almatch_results .response_section .response_section_other_questions li ul {
  margin: 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 #63a0ff;
  }
  #almatch_general_questions, .response_section_other_questions {
    border: 1px solid #BCD6FF;
  }
  .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: .25rem;
  padding-left: .25rem;
}

#resource_audit_log_wrapper table span.addition {
  border-left: 3px solid #00af92;
}

#resource_audit_log_wrapper table span.delete {
  border-left: 3px solid #FF6700;
}

#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: #00af92;
}

.controls {
  position: fixed;
  opacity: .5;
  right: 0;
  bottom: 0;
  background-color: #efefef;
  width: 30vw;
  padding: 20px;
  transition: .3s ease-out;
  transform: translatey(87%);
}

.controls .close {
  font-size: .7em;
}

.controls:hover {
  opacity: 1;
}

.controls.active {
  opacity: 1;
  transform: translatey(0);
}

.controls .active {
  color: tomato;
}

.controls .main-grid {
  height: 30vh;
  margin: 10px 0;
  grid-template-rows: repeat(6, 1fr);
  grid-gap: 2%;
}

.controls h3 {
  margin: 0 0 10px 0;
}

.box {
  align-items: center;
  background-color: tomato;
  display: flex;
  justify-content: center;
}

.box.selected {
  background-color: #ff47e3;
}

.box:hover {
  background-color: #ff3814;
}

#sectionControls button:first-child {
  display: none;
}

#banner {
  align-content: center;
  background: #002763;
  border-bottom: 4px solid #63a0ff;
  display: flex;
  color: #fff;
  justify-content: center;
  padding: 5rem 0;
  position: relative;
  width: 100%;
}

#banner_bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(/imgs/home_banner6.jpg) no-repeat top center;
  background-size: cover;
  background-position: center center;
  opacity: .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: "CeraPro-Black";
  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: #002763;
  border-bottom: 4px solid #63a0ff;
  display: flex;
  color: #fff;
  justify-content: center;
  height: 32rem;
  position: relative;
  width: 100%;
}

#home_banner_bg {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url(/imgs/home_banner6.jpg) no-repeat top center;
  background-size: cover;
  background-position: center center;
  opacity: .65;
  position: absolute;
  filter: grayscale(0.75);
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#home_banner_wrapper {
  padding: 0;
}

#home_banner #search_wrapper {
  align-items: center;
  display: flex;
  border-radius: 4px;
  position: relative;
  text-align: center;
  width: 750px;
  z-index: 1;
}

#home_banner #search_wrapper h1 {
  font-family: "CeraPro-Black";
  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 black;
  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: .5rem 1rem 0 0;
  text-decoration: none;
}

#home_banner #search_wrapper #full_search:hover {
  color: #63a0ff;
}

#home_banner #search_wrapper .searching_for_results {
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 4px #63a0ff;
  color: #63a0ff;
  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: .5em 1em;
}

#home_banner #search_wrapper .searching_for_results .selected {
  color: #fff;
  background: #63a0ff;
}

#home_banner input {
  border: 0;
  border-bottom: 1px solid #63a0ff;
  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: .5rem .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: #63a0ff;
  display: block;
  font-size: 1.5rem;
  left: 0;
  margin: -.25rem 0 0;
  min-width: 2.2rem;
  padding: .25rem;
  position: absolute;
  text-align: center;
  top: .35rem;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  #home_banner {
    padding: 4rem 0;
  }
  #home_banner #search_wrapper {
    max-width: 90%;
  }
  #home_banner #search_wrapper_form {
    display: block;
  }
  #home_banner #search_wrapper_form input {
    margin-bottom: 1rem;
  }
  #home_banner #search_wrapper h1 {
    font-size: 2rem;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #home_banner {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  #home_banner #home_search_component {
    margin: 0 auto;
    text-align: center;
  }
  #home_banner #search_wrapper {
    margin: 0 auto;
  }
  #home_banner #search_wrapper > div {
    width: 100%;
  }
  #home_banner #search_wrapper_form {
    display: block;
  }
}

#quick_categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#quick_categories_wrapper {
  margin: 2rem 0 4rem;
  padding: 0;
}

#quick_categories a {
  color: #002763;
}

#quick_categories .quick_category {
  border-radius: 4px;
  border: 1px solid rgba(99, 160, 255, 0.15);
  box-shadow: 0 0 2px rgba(99, 160, 255, 0.25);
  cursor: pointer;
  display: inline-block;
  font-family: "CeraPro-Medium";
  margin: 2rem 0 0;
  overflow: hidden;
  padding: 1rem 0 1rem 4rem;
  position: relative;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
  width: calc(100% / 4.2);
}

#quick_categories .quick_category:hover {
  background: #63a0ff;
  box-shadow: 0 0 7px #62a0ff;
  color: #fff;
}

#quick_categories .quick_category:hover .quick_category_icon {
  background: #002763;
}

#quick_categories .quick_category_icon {
  align-items: center;
  background: #63a0ff;
  background: #002763;
  bottom: 0;
  color: #fff;
  display: flex;
  font-size: 2rem;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  transition: background-color .2s ease, color .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: .5rem 1rem;
  }
}

#quick_category_search {
  position: relative;
}

#quick_category_search .loading {
  left: auto;
  right: 0;
  top: .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 #63a0ff;
  color: #63a0ff;
  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: .5em 1em;
}

#quick_category_search .searching_for_results .selected {
  color: #fff;
  background: #63a0ff;
}

#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 #c9deff;
  margin: 0 0 2rem 0;
  padding: 1rem;
  width: calc(100% / 4.2);
}

#quick_links2 .quick_link_header {
  font-family: "CeraPro-Medium";
}

#quick_links2 .quick_link_go {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  display: inline-block;
  display: none;
}

section {
  padding: 4rem 0;
}

@media only screen and (max-width: 1024px) {
  section {
    padding: 2rem 0;
  }
  section .buttons {
    display: flex !important;
    flex-wrap: wrap;
  }
  section .buttons > .button {
    width: auto !important;
  }
}

section h2, section h3 {
  font-family: "CeraPro-Bold";
  position: relative;
}

section h2:after, section h3:after {
  background: #63a0ff;
  bottom: -.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: #dddede;
  padding: 2rem;
}

section.grey h2, section.white h2 {
  color: #444;
}

section.grey h2:after, section.white h2:after {
  background: #fff;
  bottom: -.65rem;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  z-index: 0;
  width: 3em;
}

section.grey .fakeImage, section.white .fakeImage {
  background: rgba(0, 0, 0, 0.25);
}

section.grey .button, section.white .button {
  background: #888;
}

section.grey .button:hover, section.grey .button:active, section.white .button:hover, section.white .button:active {
  background: #777;
}

section.white {
  background: #fff;
}

section.blue {
  background: #BCD6FF;
  padding: 2rem;
}

section.blue h2 {
  color: #146DFB;
  font-family: "CeraPro-Bold";
  position: relative;
}

section.blue h2:after {
  background: #fff;
  bottom: -.65rem;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  z-index: 0;
  width: 3em;
}

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_double {
  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 ";
  width: 49%;
}

section .promo_double .header {
  margin-top: 0;
}

section .promo_double .thumb {
  grid-area: thumb;
  background-position: center;
  background-size: cover;
}

section .promo_double .buttons {
  justify-content: flex-end;
}

@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;
  }
  section .promo_double__first, section .promo_double > div {
    display: block;
    margin-bottom: 2rem;
    width: 100%;
  }
  section .promo_double__second {
    margin-bottom: 0 !important;
  }
  section .promo_double .thumb {
    height: 400px;
    margin-bottom: 1rem;
    width: 100%;
  }
}

.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: #002763;
  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: #f4f7fd;
}

#dashboard_login .card {
  margin: 0 auto;
  max-width: 50%;
  min-width: auto;
  width: 50%;
}

#dashboard_login .button {
  margin: 0 auto;
}

#dashboard_login p:nth-child(3) {
  text-align: center;
  width: 100%;
}

#dashboard .card {
  display: block;
  min-width: auto;
  width: 48%;
}

#dashboard .card p {
  color: #0c1a2f;
}

#dashboard .card_content {
  padding: 0;
}

#dashboard .card_title {
  padding: 0 0 .25rem 0;
  margin-bottom: .25rem;
}

@media only screen and (max-width: 767px) {
  #dashboard .card {
    width: 100%;
    max-width: 100%;
  }
  #dashboard_login .card {
    width: 100%;
    max-width: 100%;
  }
}

#manage_resources_wrapper {
  background: #f4f7fd;
}

#manage_resources_wrapper .icon {
  border: 0;
  opacity: .6;
  padding: .35rem;
  font-size: 1.25rem;
  transition: opacity .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: .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: #f4f7fd;
}

#resource_form_wrapper .form_steps {
  max-width: 800px;
}

#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 #eaeaea;
  border-radius: 4px;
  color: #0c1a2f;
  font-family: "CeraPro-Regular", sans-serif;
  margin: .5rem 0;
  padding: .75rem 1rem;
}

#resource_form .category_list > label.highlight {
  background: #f4f7fd;
  color: #002763;
  font-family: "CeraPro-Medium", sans-serif;
}

#resource_form .category_list > label:hover {
  background: #BCD6FF;
  border: 1px solid #63a0ff;
  color: #002763;
}

#resource_form .category_list > label input {
  margin-right: .5rem;
}

#resource_form h2 {
  margin-top: 0;
}

#resource_form #mailing_address_is_the_same {
  margin: 0;
}

#resource_form .button__grey {
  margin: 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: #f4f7fd;
  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 #eaeaea;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: -.5rem .5rem .5rem;
  padding: .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: .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: .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 {
  background: #00af92;
}

#resource_moderation_form .card_footer button.approve:hover {
  background: #00967d;
}

#resource_moderation_form .card_footer button.deny {
  background: #FF6700;
}

#resource_moderation_form .card_footer button.deny:hover {
  background: #e65d00;
}

#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: .5;
}

#resource_view {
  max-width: 1100px;
  margin: 0 auto;
}

#resource_view_wrapper {
  background: #f4f7fd;
}

#resource_view .resource_view_is_private {
  border-radius: 1rem;
  border: 1px solid #FFA200;
  background: #ffc766;
  color: #d65700;
  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: .25rem;
  grid-template-areas: "addressPhysical addressPhysical addressPhysical . addressMailing addressMailing addressMailing" "addressPhysical addressPhysical addressPhysical . addressMailing addressMailing addressMailing" "addressPhysical addressPhysical addressPhysical . addressMailing addressMailing addressMailing" "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 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: .5rem;
}

#resource_view .child_categories li:before {
  content: "•";
  color: #63a0ff;
  display: inline-block;
  padding: 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 .daily_open_close_hours_wrapper .card_sub_header {
  display: block;
  min-width: 100px;
  width: 100px;
}

#resource_view .category_field .daily_open_close_hours_wrapper .form_fields {
  display: inline-grid;
  grid-template-areas: "subhead day open to close";
}

#resource_view .category_field .daily_open_close_hours_wrapper .form_fields .card_sub_header {
  grid-area: subhead;
}

#resource_view .category_field .daily_open_close_hours_wrapper .form_fields .day {
  grid-area: day;
}

#resource_view .category_field .daily_open_close_hours_wrapper .form_fields .open {
  grid-area: open;
}

#resource_view .category_field .daily_open_close_hours_wrapper .form_fields .to {
  grid-area: to;
}

#resource_view .category_field .daily_open_close_hours_wrapper .form_fields .close {
  grid-area: close;
}

#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: #00af92;
}

#resource_view .category_field .answer .fa-times {
  color: #FF6700;
}

#resource_view .category_field .answer .fas::before {
  position: absolute;
  top: .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: .5rem;
  }
  #resource_view .category_field {
    width: 100%;
  }
}

#resource_view .special_indicators {
  width: auto;
  max-width: none;
  text-align: left;
}

#manage_resource_lists_wrapper {
  background: #f4f7fd;
}

#manage_resource_lists_wrapper table {
  max-width: 800px;
  width: 100%;
}

#manage_resource_lists_wrapper .icon {
  border: 0;
  opacity: .6;
  padding: .35rem;
  font-size: 1.25rem;
  transition: opacity .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: "CeraPro-Medium";
  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_lists_wrapper {
  background: #f4f7fd;
}

#resource_lists_wrapper table a {
  color: #0c1a2f;
  text-decoration: none;
}

#resource_lists_wrapper table tr:hover a {
  color: #5788e7;
  text-decoration: underline;
}

#resource_lists_wrapper .icon {
  border: 0;
  opacity: .6;
  padding: .35rem;
  font-size: 1.25rem;
  transition: opacity .25s ease;
}

#resource_lists_wrapper .icon:hover {
  opacity: 1;
}

.resource_list_control, .resource_compare_control {
  display: flex;
  padding: .5rem 0 0 0;
}

.resource_list_control button, .resource_compare_control button {
  background: none;
  border: 1px solid #63a0ff;
  cursor: pointer;
  font-family: "Cerapro-regular", sans-serif;
  font-size: 84%;
  margin: 0;
  padding: .1em .3em;
}

.resource_list_control .remove_action, .resource_compare_control .remove_action {
  margin-right: .5rem;
}

.resource_lists_all {
  width: 100%;
}

.resource_lists_all button {
  width: 100%;
  padding: .25rem .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: .75rem;
}

#category_list {
  margin: 0 auto;
  max-width: 500px;
}

#category_list_wrapper {
  background: #f4f7fd;
}

#category_list_wrapper table a {
  color: #0c1a2f;
  text-decoration: none;
}

#category_list_wrapper table tr:hover a {
  color: #5788e7;
  text-decoration: underline;
}

#category_list_wrapper .icon {
  border: 0;
  opacity: .6;
  padding: .35rem;
  font-size: 1.25rem;
  transition: opacity .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: #f4f7fd;
  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_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: #f4f7fd;
  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: #f4f7fd;
  padding: 0;
}

#categories_browse ul.child_categories {
  margin: 0;
  padding: 0;
  width: 100%;
}

#categories_browse ul.child_categories li {
  display: inline-block;
  margin-right: .5rem;
}

#categories_browse ul.child_categories li:before {
  content: "•";
  color: #63a0ff;
  display: inline-block;
  padding: 0 .25rem;
}

#category_form {
  max-width: 800px;
}

#category_form_wrapper {
  background: #f4f7fd;
}

#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 #eaeaea;
  border-radius: 4px;
  color: #0c1a2f;
  display: block;
  align-items: center;
  font-family: "CeraPro-Regular", sans-serif;
  margin: .5rem 0;
  padding: .75rem 1rem;
}

#category_form .category_list .label:hover {
  background: #BCD6FF;
  border: 1px solid #63a0ff;
  color: #002763;
}

#category_form .category_list .label.deleting {
  border: 1px solid #FF6700;
  color: #FF6700;
  opacity: .85;
}

#category_form .category_list .label.deleting label {
  color: #FF6700;
  text-decoration: line-through;
}

#category_form .category_list .label.deleting:hover {
  background: rgba(255, 103, 0, 0.2);
  opacity: 1;
}

#category_form .category_list .label input {
  margin-right: .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: .75rem;
  margin: 0 .5rem 0 0;
  padding: .25rem;
}

#category_form .category_list span.deleting {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #FF6700;
  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: .5;
  padding: .25rem 0;
  transition: color .25s ease, opacity .25s ease;
}

#category_form .category_list .delete:hover, #category_form .category_list .undelete:hover {
  color: #FF6700;
  opacity: 1;
}

#category_form h2 {
  margin-top: 0;
}

#category_form #new_subcategory {
  max-width: 80%;
}

#category_form button.compact {
  padding: .5rem .75rem;
}

#category_form .category_fields_form {
  background: #f4f7fd;
  border-radius: 4px;
  padding: .5rem .5rem 1rem;
}

#category_form .category_fields_form .label {
  background: #fff;
  margin-top: 0;
}

#category_form .category_field_form {
  border: 1px solid #eaeaea;
  border-top: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: -.5rem .5rem .5rem;
  padding: .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 {
  background: none;
  color: #eaeaea;
  right: 0;
  top: 50%;
  margin-top: 0;
  padding: 0;
  position: absolute;
}

#category_form .section_title .delete:hover {
  color: #FF6700;
}

#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: "CeraPro-Regular", sans-serif;
  margin: .25rem 0;
  width: 100%;
}

#category_form .add_form_field_controls_wrapper {
  border-radius: 8px;
  padding: .5rem 1rem 0;
}

#category_form .add_form_field_controls .button {
  margin: 0 0 .5rem;
}

#compare {
  margin: 0 auto;
  padding: 1rem 0;
}

#compare_wrapper {
  background: #f4f7fd;
  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: #003382;
}

#compare table thead th:nth-child(odd) {
  background: #00378c;
}

#compare table thead th:first-child {
  position: relative;
}

#compare table .section_title {
  text-align: left;
}

#compare table .section_title td {
  color: #002763;
  font-family: 'CeraPro-Medium', sans-serif;
  padding: 1rem .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: #002763;
}

.icon.lightBlue {
  color: #63a0ff;
}

.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: .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: .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: .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: #FF6700;
}

.special_indicators .special_indicator.is_accessible {
  color: #002763;
}

.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(0, 39, 99, 0.5);
  color: #0c1a2f;
  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: .25rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

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

ul li, ol li {
  padding: .25rem 0;
}

form > div > legend:first-child {
  margin-top: 0;
}

form.form_card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e7eefb;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  width: 100%;
}

form .note {
  font-size: 88%;
}

form .note.error {
  color: #FF6700;
  display: inline-block;
  padding: .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 .5rem;
}

form .form_message.error:before {
  content: "\F12A";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  margin: 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: .5em .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: .25rem;
    padding-right: .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 .75rem;
  height: auto;
  position: relative;
  text-align: center;
  width: 100%;
}

.form_steps:after {
  background: #e8e8e8;
  bottom: 9px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
}

.form_steps_progress_indicator {
  background: #002763;
  bottom: 9px;
  content: "";
  display: block;
  height: 2px;
  left: 0%;
  position: absolute;
  transition: width .5s ease;
  width: 0;
  z-index: 1;
}

.form_steps .step {
  display: inline-block;
  font-size: 80%;
  padding: .25rem .5rem;
  margin-bottom: .65rem;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
  width: 25%;
}

.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;
  width: 20px;
  position: absolute;
  left: calc( 50% - 20px);
  z-index: 1;
}

.form_steps .step.active {
  font-family: "CeraPro-Medium", sans-serif;
}

.form_steps .step.active:before2 {
  background: #002763;
  bottom: -16px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  width: 1000%;
  right: 50%;
}

.form_steps .step.active:after {
  background: #63a0ff;
  border: 2px solid #002763;
  color: #fff;
}

.form_steps .step.complete:after {
  background: #002763;
  color: #fff;
  content: "\F00C";
  font-family: "Font Awesome 5 Pro";
  font-size: 80%;
}

.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: .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: "CeraPro-Bold";
  margin: 1.75rem 0 1.25rem;
  position: relative;
  text-transform: capitalize;
}

legend:first-child {
  margin-top: 0;
}

legend:after {
  background: #63a0ff;
  bottom: -.65rem;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  z-index: 0;
  width: 3em;
}

legend.small {
  font-size: .9rem;
}

legend.small:after {
  background: #63a0ff;
  bottom: -.45rem;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  z-index: 0;
  width: 3em;
}

label {
  color: #002763;
  display: block;
  font-family: "CeraPro-Regular", sans-serif;
  padding: .2rem 0;
  font-size: 90%;
}

.label {
  display: inline-block;
  font-family: "CeraPro-Medium", sans-serif;
}

#search {
  background: #f4f7fd;
  margin: 0 auto;
  padding: 4rem 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%;
}

#search_filters h2 {
  margin-top: 0;
}

#search_filters input[type=text], #search_filters select {
  margin: 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: #63a0ff;
}

#search_results .compare_resources {
  background: #fff;
  border: 1px solid #d1def7;
  border-radius: 16px;
  box-shadow: 0 4px 4px #c8deff;
  display: flex;
  justify-content: center;
  padding: .5rem;
  position: fixed;
  bottom: .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;
}

@media only screen and (max-width: 767px) {
  #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: .5rem;
}

#category_select {
  border: 1px solid #BCD6FF;
  border-radius: 4px;
  max-height: 400px;
  margin: 0 0 1em 0;
  overflow-y: scroll;
  max-width: 100%;
}

#category_select input {
  display: none;
}

#category_select .category_parent {
  background: #f7f7f7;
  background: #f0f4fc;
}

#category_select .category_parent:nth-child(odd) {
  background: #ebf1fb;
}

#category_select .category_parent + .category_parent {
  border-top: 1px solid #dee7f9;
}

#category_select .category_parent label {
  padding: .35rem .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 .5em 0 .5em;
}

#category_select input:checked + label {
  background: #95b2ec;
  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: #63a0ff;
  border: 0;
  box-shadow: none;
  color: #fff;
}

#browse {
  background: #f4f7fd;
  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: .5rem 0;
}

.timerSpinner {
  border: 2px solid #63a0ff;
  border-radius: 100%;
  display: block;
  height: .72rem;
  margin-left: .5rem;
  width: .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: #002763;
  color: #fff;
  line-height: 1.5rem;
  padding: 3rem 0;
  width: 100%;
}

footer.embed {
  background: #f4f7fd;
  color: #002763;
  padding: 0 0 1rem;
}

footer .app_content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

footer .column {
  width: calc(33% - .5rem);
}

footer .column .header {
  border-bottom: 1px solid #63a0ff;
  font-family: "CeraPro-Bold", sans-serif;
  font-size: 1.25rem;
  margin: 0 0 .75rem;
}

footer a {
  color: #BCD6FF;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer address {
  font-style: normal;
  line-height: 1.25rem;
  margin: 0 0 .5rem;
  text-decoration: none;
}

footer svg {
  fill: #fff;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer #partners {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

footer #partners .header {
  width: 100%;
}

footer #partners svg {
  min-width: 100%;
  width: 100%;
}

footer #partners img {
  width: 49%;
}

footer #partners a {
  text-align: center;
}

footer #copyright {
  margin: 1rem 0;
  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 #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
  border-left: 1px solid #c9deff;
  border-right: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(1) > button {
  background-color: #599aff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(2) > button {
  background-color: #4f94ff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(3) > button {
  background-color: #448dff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(4) > button {
  background-color: #3a87ff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(5) > button {
  background-color: #3081ff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(6) > button {
  background-color: #267bff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(7) > button {
  background-color: #1c75ff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(8) > button {
  background-color: #116eff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(9) > button {
  background-color: #0768ff;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(10) > button {
  background-color: #0063fc;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(11) > button {
  background-color: #005ff2;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(12) > button {
  background-color: #005be8;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(13) > button {
  background-color: #0057dd;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(14) > button {
  background-color: #0053d3;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(15) > button {
  background-color: #004fc9;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(16) > button {
  background-color: #004bbf;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(17) > button {
  background-color: #0047b5;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(18) > button {
  background-color: #0043aa;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(19) > button {
  background-color: #003fa0;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section:nth-child(20) > button {
  background-color: #003b96;
}

#accordion .accordion_section:last-child {
  border-bottom: 1px solid #c9deff;
}

#accordion .accordion_section > button {
  background: #63a0ff;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: .5rem .25rem;
  width: 100%;
  text-align: left;
}

#accordion .accordion_section > button:hover {
  background: #77acff;
}

#accordion .accordion_details {
  display: block;
  height: 0;
  interpolate-size: allow-keywords;
  overflow: clip;
}

#accordion .open + .accordion_details {
  padding: .5rem;
  height: auto;
}

#accordion button .fas {
  font-size: 1rem;
  margin-right: .25rem;
}

#almatch_form_select {
  align-content: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem auto;
  max-width: 800px;
  min-width: auto;
}

#almatch_form_select label {
  margin: 0 .5rem 0 0;
}

#almatch_form_select button {
  padding-bottom: .5rem;
  padding-top: .5rem;
  margin: 0 .5rem;
}

#almatch_wrapper table {
  min-width: 100%;
}

#almatch_wrapper .app_content {
  padding: 1rem;
}

#almatch_wrapper .manage_search label {
  margin: 0 1rem 0 0;
}

#almatch_wrapper.almatch_facilitymappings .resource_owners span:after {
  content: ", ";
}

#almatch_wrapper.almatch_facilitymappings .resource_owners span:last-child:after {
  content: "";
}

#almatch_form_wrapper legend {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 1359px) {
  #al_match_nav {
    margin: 1rem 0 0 0;
  }
}

#al_match_nav a {
  padding: 0 1rem 0 0;
}

#assessment_take_wrapper.almatch #assessment_section_questions {
  position: relative;
}

#assessment_take_wrapper.almatch #assessment_section_questions h4 {
  margin: .5rem 0 .25rem;
}

#assessment_take_wrapper.almatch #assessment_section_questions .form_field + .form_field {
  margin-top: 1.5rem;
}

#assessment_take_wrapper.almatch #assessment_section_questions #assessment_section_navigation {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#assessment_take_wrapper.almatch #assessment_section_questions #assessment_section_navigation #assessment_section_navigation_next__almatch {
  margin-left: 0;
}

#assessment_take_wrapper.almatch #assessment_section_questions #assessment_section_navigation #assessment_section_navigation_next__almatch .icon {
  margin-left: .5rem;
}

#assessment_take_wrapper.almatch #assessment_section_navigation2 {
  margin: 4rem auto 4rem;
  text-align: center;
}

#assessment_take_wrapper.almatch #assessment_section_navigation2 #assessment_show_search__almatch {
  margin-top: 2rem;
}

#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 .25rem;
  padding-left: .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(0, 39, 99, 0.1);
  background: rgba(99, 160, 255, 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: .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: .5rem;
    max-width: 300px;
  }
}

.provider_contact1 {
  display: flex;
  font-size: 92%;
  justify-content: space-between;
  min-width: 100%;
  opacity: .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: .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: .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: #002763;
    padding: 1rem;
  }
  #banner h1 {
    margin: 0;
    text-shadow: none;
  }
  #banner_bg {
    display: none;
  }
  section {
    padding: 1rem 0;
  }
  footer {
    background: none;
    color: #002763;
    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: .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 #BCD6FF;
  border-radius: 4px;
  min-height: 300px;
  padding: .5em .75em;
}

.medium-editor-toolbar-actions li button {
  border-radius: 0;
  border-right: 1px solid #4f94ff;
  border-left: 1px solid #77acff;
}

.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 #BCD6FF;
  border-radius: 4px;
  box-shadow: 0 4px 4px #BCD6FF;
}

.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: .75rem .5rem;
}

.medium-editor-toolbar-form .medium-editor-toolbar-save {
  border-left: 0;
  border-right: 1px solid #4f94ff;
}

.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 #77acff;
}

.medium-editor-toolbar-form .medium-editor-toolbar-save, .medium-editor-toolbar-form .medium-editor-toolbar-close {
  background: #63a0ff;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0;
  padding: 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: .9rem;
  font-style: italic;
  padding: 2rem 1rem;
}

#content_page {
  max-width: 800px;
  padding: 2rem 2rem;
}

#content_page h1 {
  color: #002763;
  font-family: "CeraPro-Bold", sans-serif;
}

.comma_separated:after {
  content: ", \00a0";
  display: inline-block;
}

.comma_separated:last-child:after {
  display: none;
}

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

