@charset "UTF-8";
/* Main styles for Zotonic site.
 *
 * This file is compiled by the zotonic filehandler.
 * The filehandler will find the 'Makefile' in this directory
 * and execute make to generate the css file `priv/lib/style.css`
 */
/*! autoprefixer: off */
:root {
  --safe-area-inset-top: 0px;
  --safe-area-inset-right: 0px;
  --safe-area-inset-bottom: 0px;
  --safe-area-inset-left: 0px;
}

@supports (padding-top: env(safe-area-inset-top)) {
  :root {
    --safe-area-inset-top: env(safe-area-inset-top, 0);
    --safe-area-inset-right: env(safe-area-inset-right, 0);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
    --safe-area-inset-left: env(safe-area-inset-left, 0);
  }
}
html, body {
  min-height: 100vh;
  max-height: 100vh;
  width: 100vw;
  padding: 0;
  margin: 0;
}

body {
  display: -ms-grid;
  -ms-grid-columns: 1fr minmax(200px, 260px) minmax(500px, 1500px) 1fr;
  -ms-grid-rows: 0 auto 1fr auto auto;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 260px) minmax(500px, 1500px) 1fr;
  grid-template-rows: 0 auto 1fr auto auto;
  background-color: #fffeff;
}
@media (min-width: 1200px) {
  body {
    -ms-grid-columns: 1fr minmax(200px, 400px) minmax(500px, 1500px) 1fr;
    grid-template-columns: 1fr minmax(200px, 400px) minmax(500px, 1500px) 1fr;
  }
}

#content-wrapper {
  width: 100%;
  -ms-grid-column-align: center;
  -ms-grid-column: 3;
  -ms-grid-row: 3;
  grid-column: 3;
  grid-row: 3;
  display: -ms-grid;
  -ms-grid-columns: minmax(0, 1fr);
  -ms-grid-rows: 1fr auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  background-color: #fffeff;
}
#content-wrapper main {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  grid-column: 1;
  grid-row: 1;
  background-color: inherit;
}
#content-wrapper footer {
  -ms-grid-column: 1;
  -ms-grid-row: 2;
  grid-column: 1;
  grid-row: 2;
}

#header-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#header-wrapper header {
  display: -ms-grid;
  -ms-grid-columns: 1fr minmax(200px, 1300px) 1fr;
  -ms-grid-rows: 82px;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 1300px) 1fr;
  grid-template-rows: 82px;
  position: relative;
  top: 0;
  transition: all 0.6s;
}
#header-wrapper header > nav {
  -ms-grid-column: 2;
  grid-column: 2;
  background-color: #fffeff;
}

.wide-content #header-wrapper header {
  -ms-grid-columns: 0 1fr 0;
  grid-template-columns: 0 1fr 0;
}

#nav-toggle {
  display: none;
}

.navbar.navbar-grid {
  display: -ms-grid;
  -ms-grid-columns: 60px 1fr;
  -ms-grid-rows: 50px 32px;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 50px 32px;
}
.navbar.navbar-grid > label {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  grid-column: 1;
  grid-row: 1;
  display: block;
  position: absolute;
  left: 0;
  font-size: 30px;
  line-height: 30px;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.navbar.navbar-grid > label:hover {
  transform: rotate(-30deg);
}
.navbar.navbar-grid > div.home-link {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  text-align: center;
  overflow: hidden;
}
.navbar.navbar-grid > div.home-link a {
  overflow: hidden;
}
.navbar.navbar-grid > div.home-link a img {
  max-height: 70px;
  max-width: 100%;
}
.navbar.navbar-grid > .action-link {
  -ms-grid-column: 1/3;
  -ms-grid-row: 2;
  grid-column: 1/3;
  grid-row: 2;
  align-self: center;
  text-align: center;
  height: 100%;
}

/* Show main nav */
@media (min-width: 760px) {
  body:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: -1;
    background-size: cover;
  }
  #sidedrawer {
    -ms-grid-column: 2;
    -ms-grid-row: 3;
    grid-column: 2;
    grid-row: 3;
  }
  .navbar.navbar-grid {
    -ms-grid-columns: 0 1fr 60px;
    grid-template-columns: 0 1fr 60px;
  }
  .navbar.navbar-grid.no-user {
    -ms-grid-columns: 0 1fr auto;
    grid-template-columns: 0 1fr auto;
  }
  .navbar.navbar-grid > label {
    display: none;
  }
}
/* Show main nav as "hamburger" menu */
@media (max-width: 759px) {
  body {
    -ms-grid-columns: 0 0 1fr 0;
    -ms-grid-rows: 82px auto 1fr auto;
    grid-template-columns: 0 0 1fr 0;
    grid-template-rows: 82px auto 1fr auto;
  }
  #header-wrapper {
    display: block;
    color: #555;
  }
  .if-full-width {
    display: none !important;
  }
  #sidedrawer {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 50px;
    width: 300px;
    left: -300px;
    bottom: 0;
    overflow-y: auto;
    transition: 0.3s ease-in-out;
    background-color: #fffeff;
    border-right: 1px solid rgb(9, 94, 184);
  }
  #sidedrawer > div {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  #nav-toggle:checked ~ #sidedrawer {
    left: 0;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  #nav-toggle:checked ~ #header-wrapper #nav-label {
    transform: rotate(-90deg);
  }
  #nav-toggle:checked ~ #sidedrawer-bg {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  .navbar.navbar-grid {
    border: 0;
  }
  .navbar.navbar-grid > div.home-link {
    text-align: center;
  }
  .scrolled-down #header-wrapper header {
    top: -50px;
    box-shadow: none;
  }
  .scrolled-down #sidedrawer {
    top: 32px;
  }
  .scrolled-down .sticky {
    top: 32px;
    z-index: 101;
  }
  .scrolled-down #header-wrapper {
    height: 32px;
  }
}
/* Styling of special page parts
 */
html {
  font-size: 16px;
}

.clickable {
  cursor: pointer;
}
.clickable:hover {
  background-color: #badafc;
}

a.url {
  word-break: break-all;
}

h3 .link-more {
  font-size: 16px;
}
@media (min-width: 400px) {
  h3 .link-more {
    display: inline-block;
    margin-left: 1rem;
  }
}

img {
  max-width: 100%;
  height: auto;
}

#content .page-header {
  margin-top: 0;
  height: 30vw;
  max-height: 25rem;
  background-size: cover;
  background-position: center;
  padding-left: 0;
}
#content .page-header h1 {
  padding-top: 1.2rem;
  margin-top: 0;
  color: white;
}
@media (min-width: 1200px) {
  #content .page-header h1 {
    padding-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  #content h1 {
    font-size: 2rem;
  }
}
@media (min-width: 601px) and (max-width: 1200px) {
  #content h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  #content h1 {
    font-size: 4rem;
  }
}
#content .body {
  max-width: calc(55rem + 330px);
}
#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
  padding: 0 2rem;
  word-break: break-word;
}
#content h1 .text-muted,
#content h2 .text-muted,
#content h3 .text-muted,
#content h4 .text-muted,
#content h5 .text-muted,
#content h6 .text-muted {
  font-weight: normal;
}
#content .body h2,
#content .body h3,
#content .body h4 {
  clear: right;
}
#content .body h2 {
  padding-left: 2rem;
  margin-top: 2rem;
  max-width: 55rem;
}
#content .body h2:before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgb(9, 94, 184);
  content: " ";
  margin-right: 1.25rem;
  margin-left: -2.75rem;
  border-radius: 50%;
}
@media (max-width: 759px) {
  #content .body h2:before {
    margin-right: 0.4rem;
    margin-left: -1.75rem;
  }
}
#content .body h3 {
  padding-left: 2rem;
  margin-top: 2rem;
  max-width: 55rem;
}
#content .body h3:before {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: rgb(9, 94, 184);
  content: " ";
  margin-right: 1.25rem;
  margin-left: -2.55rem;
  border-radius: 50%;
}
@media (max-width: 759px) {
  #content .body h3:before {
    margin-right: 0.5rem;
    margin-left: -1.75rem;
  }
}
#content.rtl .body h2:before,
#content.rtl .body h3:before {
  margin-left: 1rem;
  margin-right: -1rem;
}
#content p,
#content ol,
#content ul,
#content dl {
  max-width: 55rem;
  padding: 0 2rem;
}
#content p p,
#content ol p,
#content ul p,
#content dl p {
  padding-left: 0;
}
#content .form-control {
  max-width: 55rem;
}
#content p.block-info {
  padding: 1rem;
}
#content .pregcalc {
  margin: 1rem 2rem;
  max-width: 51rem;
  padding: 1rem;
  border: 1px solid #93c5fa;
}
#content .pregcalc p {
  padding-left: 0;
}
#content .pregcalc select {
  width: auto;
  display: inline-block;
  margin-bottom: 1rem;
}
#content .admonition {
  border: 1px solid rgb(9, 94, 184);
  margin: 1rem 0 1rem 2rem;
  padding: 0;
  background-color: #93c5fa;
  overflow: hidden;
}
#content .admonition p {
  padding: 0 0 0 0.5rem;
  margin-bottom: 0.5rem;
}
#content .admonition p span.pre {
  background-color: rgba(249, 242, 244, 0.4);
}
#content .admonition .admonition-title {
  color: white;
  background-color: rgb(9, 94, 184);
  width: 100%;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
#content .docutils.container {
  padding-right: 0;
  padding-left: 0;
  margin-left: 0;
  margin-right: 0;
  width: auto;
}
#content .docutils .code-block-caption {
  padding-left: 2rem;
  background: #f9f2f4;
  border-top: 1px solid #ccc;
  color: #777777;
}
#content pre {
  padding-left: 2rem;
  overflow-x: auto;
  word-break: normal;
  word-wrap: normal;
}
#content span.pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
  word-break: break-all;
}
#content .table-wrapper {
  overflow: auto;
}
#content table {
  table-layout: fixed;
  border: 0;
  margin: 1rem 0 1rem 2rem;
}
#content table tr:nth-child(odd) td {
  background-color: #93c5fa;
}
#content table tr td, #content table tr th {
  border: 0;
  padding: 0.3rem;
}
#content table tr td p, #content table tr th p {
  padding: 0;
}
#content table tr td pre, #content table tr th pre {
  padding-left: 10px;
}
#content table tr th {
  font-weight: bold;
  border-bottom: 1px solid rgb(9, 94, 184);
}
#content .summary {
  font-size: 1.2rem;
}
#content .alert {
  margin-top: 2rem;
}
#content figure {
  margin: 0 1rem 1rem 1rem;
  border-bottom: 1px solid rgb(9, 94, 184);
}
#content figure img,
#content figure video {
  width: 100%;
  height: auto;
}
#content figure.pull-right {
  clear: right;
}
#content figure.pull-left {
  clear: left;
}
#content figure.body-media-medium {
  display: inline-block;
  width: 300px;
  max-width: 50%;
}
#content figure.body-media-medium img {
  border: 1px solid #d0d0d0;
}
#content figure.body-media-large {
  display: block;
  width: 100%;
  margin: 0 0 2rem 0;
}
#content figure.body-media-large img,
#content figure.body-media-large video {
  max-width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  #content figure.body-media-small, #content figure.body-media-medium {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}
#content figure figcaption {
  font-size: 0.9rem;
  padding: 5px 0;
  font-style: italic;
  text-align: right;
  color: #666;
}
#content .page-relations {
  padding-top: 3.3rem;
}
#content .page-relations .connections > h3 {
  font-weight: normal;
}
#content .share {
  text-align: center;
  padding: 1rem;
}
#content .block-aside {
  margin: 0 1rem 1rem 1rem;
  border-left: 1px solid rgb(9, 94, 184);
  display: inline-block;
  clear: right;
  float: right;
  width: 300px;
  max-width: 50%;
}
@media (max-width: 600px) {
  #content .block-aside {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}

.longread .longread__toc {
  padding: 0 2rem;
  margin: 1rem 0;
}
.longread .longread__toc ol {
  margin: 5px 0;
}
.longread .longread__toc .toc-level-2 {
  font-size: 0.95em;
}
.longread .longread__toc.foldout {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgb(9, 94, 184);
  z-index: 102;
  padding: 2rem 10px;
}
.longread .longread__toc.foldout .longread__toc__hide {
  position: fixed;
  right: 1px;
  top: 1px;
  padding: 5px 10px;
  font-size: 20px;
  background-color: white;
  cursor: pointer;
}
.longread .longread__toc.foldout p,
.longread .longread__toc.foldout ol {
  max-width: 40rem !important;
}
.longread .longread__toc.foldout > p,
.longread .longread__toc.foldout ol.toc-level-1 {
  margin: 0 auto;
}
.longread .longread__toc.foldout > p {
  margin-bottom: 20px;
}
.longread h2,
.longread h3,
.longread h4,
.longread h5,
.longread h6 {
  clear: none !important;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  background-color: #fff;
  top: 0;
  cursor: pointer;
}
@media (max-width: 759px) {
  .longread h2,
  .longread h3,
  .longread h4,
  .longread h5,
  .longread h6 {
    top: 82px;
  }
  .scrolled-down .longread h2,
  .scrolled-down .longread h3,
  .scrolled-down .longread h4,
  .scrolled-down .longread h5,
  .scrolled-down .longread h6 {
    top: 32px;
  }
}
.longread h2:after,
.longread h3:after,
.longread h4:after,
.longread h5:after,
.longread h6:after {
  position: absolute;
  right: 4px;
  content: "≡";
}

.navbar .home-link {
  font-size: 1.8rem;
  line-height: 50px;
  padding-right: 50px;
}
.navbar .home-link a {
  text-decoration: none;
}
.navbar .home-link a img {
  display: inline-block;
  vertical-align: top;
  height: 40px;
  margin: 5px 5px 5px 0;
  border-radius: 50%;
}
.navbar a.action-link {
  display: block;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  background-color: rgb(9, 94, 184);
  height: 32px;
  line-height: 32px;
}
.navbar a.action-link:hover, .navbar a.action-link.active {
  text-decoration: none;
  background-color: #074587;
  color: white;
}

#sidedrawer {
  border-right: 1px solid #93c5fa;
}
#sidedrawer .search-form {
  margin: 2rem 1rem;
}
#sidedrawer .search-form > input {
  border-radius: 20px;
  border: 1px solid rgb(9, 94, 184);
  padding: 0 10px;
}
#sidedrawer .logo {
  margin-top: 10px;
  padding-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
}
#sidedrawer .logo a {
  text-decoration: none;
}
#sidedrawer .logo a img {
  max-width: 200px;
  padding-left: 10px;
  margin: 0 auto;
  border-radius: 50%;
}
#sidedrawer .nav-stacked > li > a {
  padding-left: 2.2rem;
  color: #666;
}
#sidedrawer .nav-stacked > li > a:hover, #sidedrawer .nav-stacked > li > a.active {
  color: rgb(9, 94, 184);
  background-color: inherit;
}
#sidedrawer .nav-stacked .selected > a {
  color: rgb(9, 94, 184);
}
#sidedrawer .nav-stacked .featured > a,
#sidedrawer .nav-stacked .featured.selected > a {
  background-color: rgb(9, 94, 184);
  color: white;
}
#sidedrawer .nav-stacked .featured > a:hover, #sidedrawer .nav-stacked .featured > a.active,
#sidedrawer .nav-stacked .featured.selected > a:hover,
#sidedrawer .nav-stacked .featured.selected > a.active {
  background-color: #074587;
  color: white;
}
#sidedrawer .nav-stacked .featured > a:before,
#sidedrawer .nav-stacked .featured.selected > a:before {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: white;
  content: " ";
  margin-top: 0.3rem;
  margin-left: -1.5rem;
  margin-right: 0.5rem;
  border-radius: 50%;
}
#sidedrawer .nav-stacked .divider {
  border-bottom: 1px solid #93c5fa;
}
#sidedrawer .nav-stacked .social-icons {
  padding-left: 2rem;
}
#sidedrawer .nav-stacked .social-icons > div {
  margin: 1rem 0;
}
#sidedrawer .nav-stacked .social-icons a {
  color: #666;
  padding: 0.2rem 0.5rem;
}
#sidedrawer .nav-stacked .social-icons a .fa {
  font-size: 1.5rem;
}
#sidedrawer .nav-stacked .social-icons a:hover {
  text-decoration: none;
  color: rgb(9, 94, 184);
}
#sidedrawer > div > .nav-stacked > li > a {
  font-size: 1.2rem;
}
#sidedrawer > div > .nav-stacked .nav-stacked > li > a {
  padding-left: 3.2rem;
}
#sidedrawer > div > .nav-stacked .nav-stacked .nav-stacked > li > a {
  padding-left: 4.2rem;
}
#sidedrawer > div > .nav-stacked .nav-stacked .nav-stacked .nav-stacked > li > a {
  padding-left: 5.2rem;
}

footer {
  margin-top: 1rem;
  border-top: 1px solid #93c5fa;
  padding-top: 1rem;
  padding-bottom: 0;
}
footer .footer-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
footer .footer-items .footer-item {
  flex-grow: 1;
  width: 50%;
  opacity: 0.9;
}
footer .footer-items .footer-item:hover {
  opacity: 1;
}
footer .footer-items .footer-item h4 {
  font-size: 16px;
  padding: 0.2rem 1rem !important;
  margin: 0;
}
footer .footer-items .footer-item p {
  font-size: 0.8rem;
  padding: 0.2rem 1rem !important;
  margin: 0;
}
@media (min-width: 800px) {
  footer .footer-items .footer-item {
    width: 25%;
    max-width: 25%;
  }
}
@media (min-width: 1500px) {
  footer .footer-items .footer-item {
    width: 25%;
    max-width: 25%;
  }
}
footer > span {
  float: right;
  margin-left: 1rem;
  padding: 0.2rem 1rem;
  text-align: right;
  font-size: 0.8rem;
  color: rgb(9, 94, 184);
}
footer > span a {
  color: rgb(9, 94, 184);
}

.list-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.list-items .list-item {
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 800px) {
  .list-items .list-item {
    width: 50%;
    max-width: 50%;
  }
}
@media (min-width: 1500px) {
  .list-items .list-item {
    width: 33%;
    max-width: 33%;
  }
}

.rtl .list-item .list-item-image-default {
  background-position: left 0.5rem;
}

.list-item {
  display: -ms-grid;
  -ms-grid-columns: 33% 1fr;
  -ms-grid-rows: auto auto;
  display: grid;
  grid-template-columns: 33% 1fr;
  grid-template-rows: auto 1fr;
  margin-bottom: 2rem;
  border-bottom: 1px solid #93c5fa;
  overflow: hidden;
  min-height: 6rem;
}
.list-item .list-item-image {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-column: 1;
  grid-row: 1/3;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url("/lib/images/logo-dot.png");
}
.list-item .list-item-image-default {
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-column: 1;
  grid-row: 1/3;
  background-size: 20px;
  background-position: right 0.5rem;
  background-repeat: no-repeat;
  background-image: url("/lib/images/logo-dot.png");
}
.list-item h3 {
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  grid-column: 2;
  grid-row: 1;
  font-size: 20px;
  padding: 0.2rem 1rem !important;
  margin: 0;
}
.list-item p {
  -ms-grid-column: 2;
  -ms-grid-row: 2;
  grid-column: 2;
  grid-row: 2;
  padding: 0.2rem 1rem !important;
}

.connections {
  position: relative;
  border-top: 1px solid #93c5fa;
  padding-bottom: 2rem;
}
.connections.paged {
  padding-top: 2.5rem;
  margin-top: 3rem;
}
.connections .page-count {
  position: absolute;
  border: 1px solid #93c5fa;
  font-weight: bold;
  top: -15px;
  left: 1rem;
  padding: 0.2rem 1rem;
  background-color: #fffeff;
}
.connections .page-count span {
  font-weight: normal;
  color: #666;
}
.connections .list-item h3 {
  font-size: 20px;
}
.connections .list-item p {
  font-size: 14px;
}

/* Styles for the search page, defined in templates/search.tpl
 */
body.search .search-results {
  margin-top: 4rem;
}

#survey-question form {
  margin-top: 2rem;
  padding: 1rem;
}
#survey-question form .help-block {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#survey-question form legend {
  padding-left: 0;
}
#survey-question form div.form-group,
#survey-question form div.control-group {
  margin-bottom: 1rem;
  padding-left: 0;
}
#survey-question form .controls .checkbox,
#survey-question form .controls .radio {
  margin-left: 2rem;
}
#survey-question form .row {
  max-width: 40rem;
}
#survey-question form .row select.form-control {
  width: 100%;
  min-width: 5rem;
}
#survey-question form h1,
#survey-question form h2,
#survey-question form h3,
#survey-question form h4,
#survey-question form h5,
#survey-question form h6,
#survey-question form p {
  padding-left: 0;
}
#survey-question form .form-group {
  margin-bottom: 2rem;
}
#survey-question form input[name=postal_code],
#survey-question form .input-small {
  max-width: 10rem;
}
#survey-question form input[name=first_name],
#survey-question form input[name=last_name],
#survey-question form input[name=city],
#survey-question form input[name="state/ province"],
#survey-question form input[name=email],
#survey-question form .input-medium {
  max-width: 27rem;
}
#survey-question form .block-text h2 {
  margin-top: 0;
}
#survey-question form legend {
  margin-bottom: 22px;
}
#survey-question form button {
  max-width: 100%;
  word-wrap: normal;
  white-space: normal;
  text-align: left;
}
#survey-question form button[name=todonation] {
  margin-top: 2rem;
}
#survey-question form .survey-thurstone .btn {
  text-indent: -20px;
  padding-left: 24px;
  background-color: rgb(9, 94, 184);
  color: white;
}
#survey-question form .survey-thurstone .btn:before {
  padding-right: 2px;
  display: inline;
}
#survey-question form .survey-thurstone .btn:hover {
  background-color: #074587;
}
#survey-question form select.form-control {
  width: auto;
}
#survey-question form .form-actions {
  margin-top: 4rem;
}
#survey-question form .form-actions .btn-primary {
  margin-left: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#content #donate-cc-form {
  margin-top: 2rem;
}
#content legend {
  padding-left: 2rem;
  border-bottom: 1px solid #93c5fa;
}
#content .alert {
  margin: 1rem 2rem;
}
#content form .z_invalid {
  display: none;
}
#content form.z_form_invalid .z_invalid {
  display: block;
}
#content form .form-group {
  padding-left: 2rem;
  padding-right: 1rem;
  margin-left: 0;
  margin-right: 0;
}

#survey-question {
  margin-top: 2em;
}

.form-survey .btn {
  white-space: normal;
}
.form-survey .has-error {
  border-left: 2px solid rgb(9, 94, 184);
  padding-left: 6px !important;
  margin-left: -8px !important;
}
.form-survey .has-error .help-block, .form-survey .has-error .control-label, .form-survey .has-error .radio, .form-survey .has-error .checkbox, .form-survey .has-error .radio-inline, .form-survey .has-error .checkbox-inline,
.form-survey .has-error .form-control, .form-survey .has-error .form-control:focus {
  color: rgb(9, 94, 184);
}
.form-survey .has-success .help-block, .form-survey .has-success .control-label, .form-survey .has-success .radio, .form-survey .has-success .checkbox, .form-survey .has-success .radio-inline, .form-survey .has-success .checkbox-inline,
.form-survey .has-success .form-control, .form-survey .has-success .form-control:focus {
  color: #333333;
}
.form-survey .survey-yesno div label.radio-inline {
  display: block;
  margin-left: 0 !important;
  font-weight: normal;
  margin: 10px 0;
}

/* Forms and input definitions */
.label-floating {
  position: relative;
  padding-top: 22px;
}
.label-floating label,
.label-floating label.control-label {
  position: absolute;
  top: 0;
  display: none;
  padding: 0;
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  color: #777777;
}
.label-floating input:not(:placeholder-shown) + label,
.label-floating textarea:not(:placeholder-shown) + label {
  display: block;
}
.label-floating select + label.control-label {
  display: block;
}
.label-floating input:focus + label,
.label-floating textarea:focus + label,
.label-floating select:focus + label {
  color: rgb(9, 94, 184);
}
.label-floating input.field-title {
  font-size: 34px;
  height: 46px;
}
.label-floating textarea.field-summary {
  font-size: 20px;
}
.label-floating textarea.field-collapse:placeholder-shown,
.label-floating textarea.field-summary:placeholder-shown {
  height: 37px;
}
.label-floating.has-error input,
.label-floating.has-error select,
.label-floating.has-error textarea, .label-floating.invalid input,
.label-floating.invalid select,
.label-floating.invalid textarea {
  padding: 0 2px;
  border-bottom: 2px solid #d9534f;
}
.label-floating.has-error label,
.label-floating.has-error input::placeholder,
.label-floating.has-error textarea::placeholder, .label-floating.invalid label,
.label-floating.invalid input::placeholder,
.label-floating.invalid textarea::placeholder {
  color: #d9534f;
}
.label-floating input:not(:placeholder-shown):invalid + label,
.label-floating textarea:not(:placeholder-shown):invalid + label,
.label-floating .did-submit :invalid + label {
  color: rgb(9, 94, 184);
}
.label-floating input:not(:placeholder-shown):invalid,
.label-floating textarea:not(:placeholder-shown):invalid,
.label-floating .did-submit :invalid {
  padding: 0 2px;
  border-bottom: 2px solid #d9534f;
}

.form-group label.control-label {
  font-weight: bold;
  color: #333333;
}

body .form-control,
.form-control-small {
  padding: 0 2px 1px 2px;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: rgba(250, 250, 250, 0.5);
}
body .form-control:focus,
.form-control-small:focus {
  padding: 0 2px;
  border-bottom: 2px solid rgb(9, 94, 184);
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: rgba(255, 255, 235, 0.7);
}

.form-control.form-control-small {
  width: 15em;
  display: inline-block;
}

label input[type=checkbox],
label input[type=radio] {
  margin-right: 2px;
}

label.checkbox,
label.radio {
  font-weight: normal;
}
label.checkbox input[type=checkbox],
label.checkbox input[type=radio],
label.radio input[type=checkbox],
label.radio input[type=radio] {
  position: relative;
  margin-left: 0;
  margin-top: 0;
}

#content .labels label,
.modal-content-scrollable .labels label {
  background-color: rgb(9, 94, 184);
  padding: 0.2rem 1rem;
  color: white;
  border-radius: 1rem;
  cursor: pointer;
}

.cat-portrait .list-items {
  margin-top: 5rem;
  border-top: 1px solid #93c5fa;
  padding-top: 2rem;
}

.dialog-page-header {
  margin: -15px -15px 0 -15px;
}
.dialog-page-header img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 1rem 0;
}

.qa ol li {
  margin-bottom: 0.5rem;
}

.modal-scrollable .modal-body {
  display: grid;
  max-height: 85vh;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 15px auto;
}
.modal-scrollable .modal-body .modal-content-scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  grid-column: 1;
  grid-row: 1;
  margin: -15px;
  padding: 15px;
}
.modal-scrollable .modal-body .modal-footer {
  grid-column: 1;
  grid-row: 3;
  background-color: white;
  margin-bottom: -15px;
}

.social-icons {
  padding: 0 0 1rem 0;
}
.social-icons .btn {
  height: 4rem;
  width: 4rem;
  padding: 0.6rem;
  font-size: 2rem;
}

.modal-overlay.modal-overlay-level-1 {
  z-index: 1032;
}

.modal-overlay.modal-overlay-level-2 {
  z-index: 1033;
}

.modal-overlay.modal-overlay-level-3 {
  z-index: 1034;
}

/* modal overlay - full screen dialog - below normal dialog */
.modal-overlay {
  position: fixed;
  z-index: 1031;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
  padding: 12px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal-overlay > div {
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
}
.modal-overlay .modal-overlay-close {
  position: fixed;
  z-index: 2033;
  right: 0px;
  top: 0;
  padding: 12px 20px 4px;
  font-size: 48px;
  font-weight: 100;
  line-height: 1;
  cursor: pointer;
}
.modal-overlay .modal-overlay-close:hover {
  text-decoration: none;
}
.modal-overlay .sticky {
  position: sticky;
  top: 0;
  z-index: 1032;
}
.modal-overlay .sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1032;
  padding: 10px;
  background-color: white;
}
.modal-overlay .sticky-bottom > div {
  max-width: 52rem;
  margin: 0 auto;
}
.modal-overlay .overlay-content-wrapper {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.modal-overlay .overlay-content-wrapper .overlay-content {
  overflow: hidden;
  padding: 6px 12px;
}
.modal-overlay .overlay-content-wrapper .overlay-content .body {
  max-width: 52rem;
  margin: 0 auto;
}

body.overlay-open,
body.modal-open {
  overflow: hidden;
}

.notice-wrap {
  position: fixed;
  width: 250px;
  z-index: 9999;
}

.notice-item {
  height: auto;
  padding: 6px 6px 0 6px;
  display: block;
  position: relative;
  margin: 0 0 12px 0;
  font-size: 14px;
}

.notice-item-close {
  position: absolute;
  font-family: Arial;
  font-size: 11px;
  font-weight: bold;
  right: 6px;
  top: 0;
  cursor: pointer;
}

/* CSS for bridge connection status */
.z-bridge-warning {
  position: fixed;
  visibility: hidden;
  bottom: 0;
  right: -999px;
  opacity: 0;
  animation: bridge-warn-display 5s;
}

.z-bridge-ok {
  display: none;
}

html.ui-state-bridge-disconnected .z-bridge-warning {
  visibility: visible;
  right: 5px;
  opacity: 1;
}
html.ui-state-bridge-connected .z-bridge-ok {
  display: block;
}

@keyframes bridge-warn-display {
  0% {
    opacity: 0;
    right: -999px;
  }
  25% {
    opacity: 0;
    right: -200px;
  }
  50% {
    opacity: 0.5;
    right: 5px;
  }
  100% {
    opacity: 1;
    right: 5px;
  }
}
.page-page_home #content .featured {
  display: flex;
  flex-wrap: wrap;
}
.page-page_home #content .featured .featured-item {
  flex-grow: 1;
}
.page-page_home #content .featured .featured-item img {
  width: 100%;
  height: auto;
}
@media (min-width: 600px) and (max-width: 759px) {
  .page-page_home #content .featured .featured-item {
    max-width: 50%;
  }
}
@media (min-width: 1000px) {
  .page-page_home #content .featured .featured-item {
    max-width: 50%;
  }
}
.page-page_home #content div.title {
  height: 100%;
  background-color: #010f1c;
  color: #fffeff;
  font-size: 2.1rem;
}
.page-page_home #content div.title p {
  margin: 0 0 1rem 0;
  max-width: 100rem;
}
@media (min-width: 420px) and (max-width: 1024px) {
  .page-page_home #content div.title {
    font-size: 3rem;
  }
  .page-page_home #content div.title p {
    margin: 0 0 1rem 0;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .page-page_home #content div.title {
    font-size: 4rem;
  }
  .page-page_home #content div.title p {
    margin: 0 0 1rem 0;
  }
}
@media (min-width: 1200px) {
  .page-page_home #content div.title {
    font-size: 5rem;
  }
  .page-page_home #content div.title p {
    margin: 0 0 3rem 0;
  }
}
.page-page_home #content div.title a {
  color: rgb(9, 94, 184);
}
.page-page_home #content div.title a:hover {
  text-decoration: none;
  border-bottom: 3px solid rgb(9, 94, 184);
}
.page-page_home #content .list-items {
  margin-top: 3rem;
}
