/* _vars.scss */
/* _mixin.scss */
.print__wrapper {
  margin: 0; }

.print__link {
  font-size: 13.6px;
  font-size: 0.85rem;
  align-self: flex-start;
  padding: 8px 15px;
  margin-left: 0;
  margin-right: 10px;
  text-decoration: none;
  color: white;
  background: #7f1416;
  font-size: 16px;
  font-size: 1rem; }
  .print__link:hover, .print__link.active {
    background: #ab1b1e; }
  .print__link span {
    margin-left: 5px; }

.wysiwyg {
  margin-bottom: 4rem; }
  .wysiwyg .content h2, .wysiwyg .content h3, .wysiwyg .content h4, .wysiwyg .content h5, .wysiwyg .content h6 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    border: none;
    color: inherit;
    margin: 0 0 8px 0;
    margin: 0 0 0.5rem 0; }
  @media (max-width: 400px) {
    .wysiwyg {
      /* Hide table headers (but not display: none;, for accessibility) */ }
      .wysiwyg table, .wysiwyg thead, .wysiwyg tbody, .wysiwyg th, .wysiwyg td, .wysiwyg tr {
        display: block; }
      .wysiwyg thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px; }
      .wysiwyg td {
        border: none;
        position: relative; } }
  .wysiwyg ul {
    list-style-position: initial; }

/* _reusable.scss */
.button, .search-documents-link,
.form-submit, .page-search #search-form .form-submit, .addtocal,
.addtocal_menu, .past-events-link a, #join-group #button-join-group a, .page-group .confirmation #edit-cancel {
  background: gainsboro;
  background-image: linear-gradient(#fafafa, #fdfdfd 10%, gainsboro);
  background-repeat: no-repeat;
  color: #434343;
  margin: 0 0 0 0.3rem;
  padding: 5.6px 20px 5.6px;
  padding: 0.35rem 1.25rem 0.35rem;
  border-radius: 3px;
  border: 1px solid #ededed;
  border-bottom: 1px solid #cfcfcf; }
  .button:hover, .search-documents-link:hover,
  .form-submit:hover, .page-search #search-form .form-submit:hover, .addtocal:hover,
  .addtocal_menu:hover, .past-events-link a:hover, #join-group #button-join-group a:hover, .page-group .confirmation #edit-cancel:hover {
    background-image: linear-gradient(#e1e1e1, #e3e3e3 60%, #e1e1e1); }

.not-underlined-links, #contextual-navigation a:hover, #contextual-navigation a:active {
  position: relative;
  text-decoration: none; }
  .not-underlined-links:hover, #contextual-navigation a:hover, .not-underlined-links:active, #contextual-navigation a:active {
    text-decoration: none; }
    .not-underlined-links:hover:after, #contextual-navigation a:hover:after, .not-underlined-links:active:after, #contextual-navigation a:active:after {
      content: '';
      width: 100%;
      position: absolute;
      left: 0;
      bottom: 1px;
      border-width: 0 0 1px;
      border-style: solid; }

.underlined-links, .page-search .search-results a, .event-item a, .page-user .profile a, footer a {
  position: relative;
  text-decoration: none; }
  .underlined-links:after, .page-search .search-results a:after, .event-item a:after, .page-user .profile a:after, footer a:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 1px;
    border-width: 0 0 1px;
    border-style: solid; }
  .underlined-links:hover, .page-search .search-results a:hover, .event-item a:hover, .page-user .profile a:hover, footer a:hover, .underlined-links:active, .page-search .search-results a:active, .event-item a:active, .page-user .profile a:active, footer a:active {
    text-decoration: none; }
    .underlined-links:hover:after, .page-search .search-results a:hover:after, .event-item a:hover:after, .page-user .profile a:hover:after, footer a:hover:after, .underlined-links:active:after, .page-search .search-results a:active:after, .event-item a:active:after, .page-user .profile a:active:after, footer a:active:after {
      border-style: none; }

a.operation-icon {
  color: #cdd6db; }
  a.operation-icon:hover {
    color: #688394; }

abbr[title] {
  cursor: help;
  text-decoration: underline dotted;
  color: #688394; }

/* _layout.scss */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  padding: 0;
  margin: 0; }
  *:focus {
    outline: 0; }

html {
  font-size: 100%; }

body {
  background-color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  -webkit-font-smoothing: antialiased; }

.page-container {
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto; }
  .page-container > * {
    padding: 0 20px; }
  .page-container .page-container__center {
    grid-column-start: 2; }
  .page-container > footer {
    padding-bottom: 20px; }

[v-cloak] {
  display: none !important; }

#main-content {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: 27% 71%; }
  #main-content img {
    height: auto; }
  @media (min-width: 1000px) {
    #main-content {
      gap: 2%; } }

#main-content__first {
  /* Animate the collapsible elements */ }
  #main-content__first .details-wrapper {
    transition: all 2s; }
  #main-content__first .details-wrapper:not([open]) {
    max-height: 0;
    overflow: hidden; }
  #main-content__first details[open] .details-wrapper {
    max-height: 5000px;
    transition: all 2s; }

@media screen and (max-width: 1000px) {
  .page-container {
    grid-template-columns: 1fr; }
    .page-container .page-container__center {
      grid-column-start: 1; }
  #main-content {
    grid-template-columns: 100%; }
  footer {
    grid-template-columns: 1fr; }
  img {
    max-width: 100%;
    width: 100%; } }

/* _operation.scss */
#group-title {
  padding: 4px 0 0 0;
  padding: 0.25rem 0 0 0; }
  #group-title h1 {
    margin: 16px 0;
    margin: 1rem 0;
    font-size: 36.8px;
    font-size: 2.3rem;
    line-height: 28.8px;
    line-height: 1.8rem; }
  #group-title h1,
  #group-title h1 a {
    color: #7f1416; }
  #group-title h1 a:hover {
    text-decoration: underline; }

#operation-overview {
  clear: both;
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0; }
  #operation-overview h2 svg {
    width: 35px;
    height: 32px; }
  #operation-overview p {
    margin-top: 0; }
    #operation-overview p img {
      width: 90%;
      display: block;
      margin: 0.5em auto; }
  #operation-overview .operation-image {
    float: left;
    margin: 0 16px 16px 0;
    margin: 0 1rem 1rem 0; }

#operation-data {
  background-color: #cdd6db;
  color: #575757;
  padding: 16px 12.8px;
  padding: 1rem 0.8rem;
  font-size: 13.6px;
  font-size: 0.85rem; }
  #operation-data ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-position: inside; }
  #operation-data li {
    padding: 0 0 8px 0;
    padding: 0 0 0.5rem 0;
    font-size: 12.8px;
    font-size: 0.8rem; }
  #operation-data span {
    text-transform: uppercase;
    padding-right: 8px;
    padding-right: 0.5rem; }
  #operation-data h4 {
    border: none;
    text-transform: none;
    color: #575757;
    font-weight: normal;
    margin: 0 0 10px 0;
    margin: 0 0 0.625rem 0;
    font-size: 13.6px;
    font-size: 0.85rem; }

/* _document-card.scss */
.document-cards {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-position: inside;
  margin: 24px 0 32px 8px;
  margin: 1.5rem 0 2rem 0.5rem; }
  .document-cards .document-card {
    position: relative;
    float: left;
    width: 100%;
    color: #3e3e3e;
    background: #d0cdce;
    -webkit-background-clip: padding-box;
    /* for Safari */
    background-clip: padding-box;
    /* for IE9+, Firefox 4+, Opera, Chrome */ }
    .document-cards .document-card.local-file .information-card a {
      background-color: #688394; }
    .document-cards .document-card.local-file .image-card {
      padding: 7px 5px 0px 10px;
      padding: 0.4375rem 0.3125rem 0px 0.625rem; }
      .document-cards .document-card.local-file .image-card svg,
      .document-cards .document-card.local-file .image-card img {
        fill: #688394;
        width: 30px;
        height: 39px; }
    @media (max-width: 310px) {
      .document-cards .document-card {
        margin: 0 6% 6% 0; } }
    @media (max-width: 550px) {
      .document-cards .document-card {
        margin: 0 6% 4% 0; } }
    @media (max-width: 700px) {
      .document-cards .document-card {
        width: 47%; } }
    .document-cards .document-card.even {
      margin-right: 0; }
    .document-cards .document-card .image-card {
      position: absolute;
      top: -16px;
      left: -16px;
      background: white;
      pointer-events: none;
      padding: 7px 3px 0px 10px;
      padding: 0.4375rem 0.1875rem 0px 0.625rem;
      box-sizing: initial; }
      .document-cards .document-card .image-card svg,
      .document-cards .document-card .image-card img {
        fill: #575757;
        width: 32px;
        height: 39px; }
    .document-cards .document-card .information-card {
      display: table;
      width: 100%; }
      .document-cards .document-card .information-card a {
        display: table;
        width: 100%;
        background-color: #575757;
        color: white;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
        padding: 6px 0 6px 0;
        padding: 0.375rem 0 0.375rem 0;
        font-size: 12px;
        font-size: 0.75rem; }
        .document-cards .document-card .information-card a:hover, .document-cards .document-card .information-card a:active {
          text-decoration: none;
          background-color: #7f1416; }
        .document-cards .document-card .information-card a span {
          position: relative;
          left: 35px;
          display: block;
          margin: 0 38px 0 0; }
      .document-cards .document-card .information-card p {
        margin: 12.8px 8px 8px 24px;
        margin: 0.8rem 0.5rem 0.5rem 1.5rem;
        font-size: 13px;
        font-size: 0.8125rem;
        min-height: 32px;
        min-height: 2rem; }
    .document-cards .document-card .information-file {
      float: left;
      width: 100%;
      color: #575757;
      border-top: 1px dotted #575757;
      font-size: 12px;
      font-size: 0.75rem;
      padding: 5px 8px;
      padding: 0.3125rem 0.5rem; }
      .document-cards .document-card .information-file .size-type {
        float: left; }
        .document-cards .document-card .information-file .size-type a {
          color: #575757;
          text-transform: uppercase;
          font-weight: bold; }
          .document-cards .document-card .information-file .size-type a:hover, .document-cards .document-card .information-file .size-type a:active {
            text-decoration: none; }
      .document-cards .document-card .information-file .source {
        float: right; }

.browse-all-documents {
  text-transform: uppercase;
  font-weight: bold;
  color: #575757;
  display: block;
  margin: 0 0 16px 0;
  margin: 0 0 1rem 0;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 0 0 0 8px;
  padding: 0 0 0 0.5rem; }
  .browse-all-documents:hover, .browse-all-documents:active {
    text-decoration: none; }

.document-preview-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }
  .recent-documents .document-preview-list {
    grid-template-columns: 1fr; }
  @media (min-width: 1000px) {
    .document-preview-list {
      grid-template-columns: 1fr 1fr; } }
  .document-preview-list .document-preview {
    position: relative;
    color: #575757;
    padding: 10px;
    border: 1px solid #cdd6db;
    min-height: 170px;
    min-width: 100%; }
    .document-preview-list .document-preview.document-preview--draft {
      color: #a4a4a4; }
      .document-preview-list .document-preview.document-preview--draft h4 {
        color: #979797; }
      .document-preview-list .document-preview.document-preview--draft .group {
        color: #a4a4a4; }
      .document-preview-list .document-preview.document-preview--draft .thumbnail {
        opacity: .7; }
      .document-preview-list .document-preview.document-preview--draft .tags li {
        color: #a4a4a4;
        border-color: #a4a4a4; }
    .document-preview-list .document-preview .document-status {
      float: right;
      font-size: 8px;
      font-size: 0.5rem;
      line-height: 1;
      font-weight: bold;
      text-transform: uppercase; }
    .document-preview-list .document-preview a {
      text-decoration: none; }
    .document-preview-list .document-preview h4 {
      font-size: 16px;
      font-size: 1rem;
      color: #7f1416;
      text-transform: uppercase;
      font-weight: normal;
      margin: 0;
      line-height: 21px;
      max-height: 63px;
      overflow: hidden; }
    .document-preview-list .document-preview .operation-icon {
      float: right;
      margin-left: 5px; }
    .document-preview-list .document-preview .thumbnail {
      float: left;
      width: 150px;
      height: 150px;
      margin-right: 10px;
      position: relative;
      overflow: hidden;
      z-index: 1; }
      .document-preview-list .document-preview .thumbnail > * {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .document-preview-list .document-preview .thumbnail > img {
        transition: .2s all;
        background: white; }
      .document-preview-list .document-preview .thumbnail:hover > img {
        opacity: .05;
        filter: brightness(2);
        transform: scale(1.02); }
      .document-preview-list .document-preview .thumbnail .file-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 1px solid #575757;
        color: #575757;
        font-size: 12px;
        font-size: 0.75rem; }
        .document-preview-list .document-preview .thumbnail .file-info > * {
          margin: 5px auto; }
        .document-preview-list .document-preview .thumbnail .file-info .file-extension {
          background: #CCC;
          padding: 1px 3px; }
    .document-preview-list .document-preview .group {
      color: #575757;
      display: block; }
    .document-preview-list .document-preview .group, .document-preview-list .document-preview .document-date {
      margin-top: 3px;
      font-size: 12px;
      font-size: 0.75rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .document-preview-list .document-preview .tags {
      position: absolute;
      bottom: 5px;
      right: 5px;
      max-height: 40px;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin: 0;
      padding-left: 170px;
      overflow: hidden; }
      .document-preview-list .document-preview .tags li {
        font-size: 12px;
        font-size: 0.75rem;
        color: #575757;
        border: 1px solid #575757;
        border-radius: 6px;
        padding: 0 4px;
        margin: 1px;
        height: 18px;
        max-width: 220px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }

#featured-documents {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.33) 0px 3px 10px;
  border-radius: 5px;
  margin-bottom: 32px;
  margin-bottom: 2rem; }
  #featured-documents .featured-document-slider {
    background: #eee;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    width: 100%; }
    #featured-documents .featured-document-slider ul {
      width: 90000em;
      position: relative;
      z-index: 150; }
    #featured-documents .featured-document-slider li {
      width: 400px;
      float: left;
      min-height: 80px; }
  #featured-documents .jcarousel-pagination {
    position: relative;
    top: 10px;
    text-align: center; }
    #featured-documents .jcarousel-pagination a {
      color: white;
      text-decoration: none;
      display: inline-block;
      background: #ddd;
      border-radius: 20px;
      height: 10px;
      width: 10px;
      text-indent: -999em;
      margin-right: 3px;
      border: 1px solid #7f7f7f; }
      #featured-documents .jcarousel-pagination a.active {
        background: black; }
  #featured-documents .jcarousel-control-prev {
    background: #ddd;
    font-size: 28.8px;
    font-size: 1.8rem;
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    line-height: 100%;
    z-index: 200;
    border-radius: 5px 0 0 5px; }
    #featured-documents .jcarousel-control-prev.inactive {
      color: #ccc;
      background: #e9e9e9; }
  #featured-documents .jcarousel-control-next {
    background: #ddd;
    font-size: 28.8px;
    font-size: 1.8rem;
    color: black;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    line-height: 100%;
    z-index: 200;
    border-radius: 0 5px 5px 0; }
    #featured-documents .jcarousel-control-next.inactive {
      color: #ccc;
      background: #e9e9e9; }
  #featured-documents ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-position: inside; }
  #featured-documents li {
    overflow: hidden; }
    #featured-documents li .document-title {
      padding: 16px 0 0 0;
      padding: 1rem 0 0 0; }
      #featured-documents li .document-title h2 {
        color: #fff;
        margin: 0;
        font-size: 17.6px;
        font-size: 1.1rem;
        margin: 0 10.4px 0 0;
        margin: 0 0.65rem 0 0;
        border: none;
        display: inline-block; }
      #featured-documents li .document-title .size-type {
        font-size: 10.4px;
        font-size: 0.65rem;
        text-transform: uppercase;
        display: inline-block; }
      #featured-documents li .document-title a {
        font-weight: bold;
        color: black; }
    #featured-documents li .document-information {
      margin: 0 30px 0 45px; }
      #featured-documents li .document-information p {
        padding: 10.4px 0;
        padding: 0.65rem 0;
        font-size: 12.8px;
        font-size: 0.8rem;
        margin: 0;
        color: black; }
      #featured-documents li .document-information img {
        width: 100%;
        float: left;
        height: auto; }
      #featured-documents li .document-information .image-container {
        float: left;
        background: white;
        border-right: none;
        width: 100%;
        display: none;
        margin-top: 15px; }
        @media (min-width: 660px) {
          #featured-documents li .document-information .image-container {
            display: block;
            width: 25%; } }
      #featured-documents li .document-information .information-container {
        float: right;
        width: 100%;
        padding: 0 7.2px;
        padding: 0 0.45rem; }
        @media (min-width: 660px) {
          #featured-documents li .document-information .information-container {
            width: 75%; } }
  #featured-documents .image-document {
    max-height: 640px;
    max-height: 40rem; }

/* _search.scss */
header .search {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  padding: 12.8px 0;
  padding: 0.8rem 0;
  color: #000;
  font-size: 12.8px;
  font-size: 0.8rem; }

.page-search #search-form {
  background: #cdd6db;
  margin: 16px 0 0 0;
  margin: 1rem 0 0 0;
  padding: 32px 32px 24px;
  padding: 2rem 2rem 1.5rem; }
  .page-search #search-form label {
    text-transform: uppercase;
    font-weight: normal;
    color: #575757;
    font-size: 12px;
    font-size: 0.75rem; }
  .page-search #search-form .form-type-checkbox label {
    text-transform: none;
    color: #242424; }
  .page-search #search-form .form-item-keys label {
    display: none; }
  .page-search #search-form .form-type-textfield .form-text {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 5.6px 8px 5.6px;
    padding: 0.35rem 0.5rem 0.35rem;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 3px inset; }
  @media (max-width: 480px) {
    .page-search #search-form .form-type-textfield #edit-keys {
      width: 73%;
      max-width: 350px; } }
  .page-search #search-form .form-submit {
    float: right;
    margin: 4px 0 0 0;
    margin: 0.25rem 0 0 0; }
    @media (max-width: 480px) {
      .page-search #search-form .form-submit {
        float: none;
        margin: 0 0 0 4px;
        margin: 0 0 0 0.25rem; } }
  .page-search #search-form #edit-advanced {
    margin: 16px 0 0 0;
    margin: 1rem 0 0 0; }
    .page-search #search-form #edit-advanced .criterion {
      float: none;
      margin-right: 0; }
      @media (max-width: 859px) {
        .page-search #search-form #edit-advanced .criterion {
          float: left;
          margin-right: 2em; } }
    .page-search #search-form #edit-advanced .checkboxlist {
      float: left;
      margin-right: 2em; }
    .page-search #search-form #edit-advanced .fieldset-title {
      position: relative;
      top: -2px;
      text-transform: uppercase;
      font-weight: bold;
      color: #575757;
      text-decoration: none;
      font-size: 12px;
      font-size: 0.75rem; }
  .page-search #search-form .collapsible:after,
  .page-search #search-form .collapsed:after {
    content: ''; }

.page-search .search-results {
  padding: 0;
  margin: 0; }
  .page-search .search-results .title {
    margin: 0 0 4px 0;
    margin: 0 0 0.25rem 0; }
  .page-search .search-results .search-snippet-info {
    padding: 0; }
    .page-search .search-results .search-snippet-info strong {
      background-color: #fff7e6;
      padding: 0 5px;
      border-radius: 5px; }
  .page-search .search-results .search-snippet {
    margin-bottom: 1.5rem; }
  .page-search .search-results a {
    white-space: nowrap;
    color: #485b67;
    font-size: 16px;
    font-size: 1rem; }

.page-search .item-list .pager {
  color: black;
  margin: 60px 0 12px 0;
  margin: 3.75rem 0 0.75rem 0; }
  .page-search .item-list .pager a:link, .page-search .item-list .pager a:visited, .page-search .item-list .pager a:hover, .page-search .item-list .pager a:active {
    color: black; }
  .page-search .item-list .pager a:hover, .page-search .item-list .pager a:active {
    text-decoration: none; }

.facets {
  margin: 0 0 24px 0;
  margin: 0 0 1.5rem 0; }
  .facets ul li {
    list-style: none;
    margin: 0; }
  .facets .leaf {
    list-style: none;
    list-style-image: none;
    margin: 0px 0px 0.25em 0; }
  .facets .facet {
    vertical-align: top;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px; }
    .facets .facet .clearfix {
      margin-bottom: 14px; }
    .facets .facet a {
      color: #2d62f9;
      font-size: 13.6px;
      font-size: 0.85rem; }
    .facets .facet input[type=search] {
      width: 100%;
      border: 1px solid #575757;
      border-radius: 20px;
      padding: 2px 10px;
      margin-bottom: 10px;
      box-sizing: border-box; }
    .facets .facet label, .facets .facet input[type=search] {
      font-size: 13.6px;
      font-size: 0.85rem;
      font-weight: normal;
      color: #242424; }
    .facets .facet h4 {
      padding: 0 0 0 0; }
      @media (max-width: 600px) {
        .facets .facet h4 {
          padding: 0 10px 0 0; } }
    @media (max-width: 600px) {
      .facets .facet {
        width: 50%; } }
    @media (max-width: 980px) {
      .facets .facet {
        width: 100%; } }
    .facets .facet .facetapi-limit-link {
      display: block;
      margin-bottom: 24px;
      margin-bottom: 1.5rem; }
  .facets .facet:first-child {
    width: 100%;
    float: none; }
  .facets .form-type-textfield .form-text {
    width: 65%;
    float: left; }
  .facets .form-submit {
    width: 30%;
    text-align: center;
    padding-left: 0;
    padding-right: 0; }

.reset-filters {
  color: #2d62f9;
  font-weight: normal; }

.all-documents {
  text-align: center;
  font-size: 13.6px;
  font-size: 0.85rem;
  padding: 0 0 22px; }
  .all-documents a {
    color: #000; }

#main-menu .mega-menu > li:hover > ul.search-input-row {
  display: flex; }

@media screen and (min-width: 980px) {
  #main-menu .nav-items.search-input-row {
    line-height: 50px;
    height: 50px;
    padding: 0 1em; }
    #main-menu .nav-items.search-input-row + .nav-items {
      margin-top: 50px; } }

#main-menu .nav-items.search-input-row label {
  white-space: nowrap;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis; }
  @media screen and (max-width: 979px) {
    #main-menu .nav-items.search-input-row label {
      padding: 10px 10px 0 10px; } }

@media screen and (max-width: 519px) {
  #main-menu .nav-items.search-input-row li + li {
    width: 100%;
    text-align: center;
    padding: 10px 20px; }
    #main-menu .nav-items.search-input-row li + li:last-child {
      padding-top: 0; } }

@media screen and (min-width: 520px) and (max-width: 979px) {
  #main-menu .nav-items.search-input-row li + li {
    padding: 10px;
    display: inline-block;
    width: 100%;
    text-align: right; } }

@media screen and (min-width: 980px) {
  #main-menu .nav-items.search-input-row li + li {
    width: auto !important;
    margin-left: 10px; } }

#main-menu .nav-items.search-input-row .search-input {
  width: 100% !important; }
  #main-menu .nav-items.search-input-row .search-input input {
    width: 100%;
    padding: 4px 10px;
    font-size: 18px;
    border: 1px solid #cdd6db;
    color: black;
    box-sizing: border-box;
    border-radius: 17px; }

#main-menu .nav-items.search-input-row .algolia-logo img {
  width: 130px; }

#main-menu .search-result-title,
#main-menu .search-result-title div {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis; }

#main-menu .search-no-results li {
  width: 100% !important;
  text-align: center;
  padding: 60px 10px; }
  #main-menu .search-no-results li > * {
    display: block;
    padding: 1rem 0.5rem !important; }
  #main-menu .search-no-results li span {
    color: black;
    text-transform: uppercase;
    white-space: normal; }
  #main-menu .search-no-results li a {
    display: block;
    justify-content: center !important;
    text-align: center; }

@media screen and (max-width: 979px) {
  .search-input {
    padding: 10px !important; }
  .mobile-hide {
    display: none !important; }
  #cluster-search-mega-menu > ul.search-filtered-by-index > li:first-child > ul {
    display: block !important; }
  #cluster-search-mega-menu > ul.search-filtered-by-index > li + li {
    display: none; } }

#main-menu .mega-menu li#cluster-search-mega-menu > a {
  display: flex; }
  #main-menu .mega-menu li#cluster-search-mega-menu > a i.fa-search {
    margin-right: 5px; }

.no-results {
  width: 100%;
  text-align: center;
  padding: 50px 0; }
  .no-results, .no-results a {
    color: #575757; }

.search-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  color: #575757; }

ul.pagination {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0; }
  ul.pagination li {
    margin: 0; }
    ul.pagination li span, ul.pagination li a {
      padding: 0 5px; }
    ul.pagination li a {
      color: #575757; }

ul.search-display {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0; }
  ul.search-display li {
    margin: 0; }
    ul.search-display li > * {
      padding: 0 5px; }
    ul.search-display li a {
      text-decoration: none;
      color: #688394; }
      ul.search-display li a[href] {
        color: #94a8b4; }
        ul.search-display li a[href]:hover {
          color: #688394; }

#dashboard-menu {
  display: grid;
  gap: 20px;
  margin-bottom: 1rem;
  grid-template-columns: 1fr; }
  #dashboard-menu a {
    text-decoration: none;
    display: block;
    margin: 2px 0;
    padding: 10px; }
    #dashboard-menu a:hover {
      text-decoration: none; }
  #dashboard-menu summary {
    margin: 0 0 0.25rem 0;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 1px solid #d7d7d7;
    color: #313131;
    padding-bottom: 0.4rem;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none; }
    #dashboard-menu summary:after {
      content: ' \2013';
      /* n-dash */
      font-weight: bold; }
  #dashboard-menu .form-wrapper[open] summary {
    border-bottom: 2px solid #717171; }
    #dashboard-menu .form-wrapper[open] summary:after {
      content: ' +';
      font-weight: bold; }
  #dashboard-menu .dashboard-menu__operations {
    display: grid;
    grid-template-columns: 1fr; }
    #dashboard-menu .dashboard-menu__operations a {
      color: white;
      background: #242424; }
      #dashboard-menu .dashboard-menu__operations a:hover {
        background: black; }
      #dashboard-menu .dashboard-menu__operations a.geographic-region {
        color: black;
        background: white; }
  #dashboard-menu .dashboard-menu__links {
    display: grid;
    grid-template-columns: 1fr; }
    #dashboard-menu .dashboard-menu__links a {
      color: #575757;
      background: #ebeef0;
      font-weight: bold; }
      #dashboard-menu .dashboard-menu__links a:hover, #dashboard-menu .dashboard-menu__links a.active, #dashboard-menu .dashboard-menu__links a.is-active {
        background: #cdd6db; }
    #dashboard-menu .dashboard-menu__links .optgroup {
      list-style: none;
      list-style-position: inside;
      line-height: 20px;
      margin: 5px 0 5px 15px;
      padding: 0; }
      #dashboard-menu .dashboard-menu__links .optgroup label {
        font-size: 13.6px;
        font-size: 0.85rem;
        font-weight: normal;
        color: #242424; }
  #dashboard-menu .dashboard-menu__list {
    display: grid;
    grid-template-columns: 1fr; }
    #dashboard-menu .dashboard-menu__list ul {
      margin: 0;
      padding: 0;
      list-style-type: square;
      margin-left: 5px; }
      #dashboard-menu .dashboard-menu__list ul ul {
        list-style-type: circle;
        margin-top: 6px; }
    #dashboard-menu .dashboard-menu__list a {
      color: black;
      display: inline;
      font-size: 0.85rem;
      padding: 0; }
      #dashboard-menu .dashboard-menu__list a:hover {
        text-decoration: underline; }
      #dashboard-menu .dashboard-menu__list a.archived {
        opacity: .6; }
      #dashboard-menu .dashboard-menu__list a.button--black {
        background: black;
        color: white;
        font-weight: bold; }
        #dashboard-menu .dashboard-menu__list a.button--black:hover, #dashboard-menu .dashboard-menu__list a.button--black.active {
          background: #4d4d4d; }
    #dashboard-menu .dashboard-menu__list li {
      margin-left: 20px; }
  #dashboard-menu a.button--black {
    background: black;
    color: white;
    font-weight: bold; }
    #dashboard-menu a.button--black:hover, #dashboard-menu a.button--black.active {
      background: #4d4d4d; }

.facets .facet h4 {
  padding: 0 10px 0 0;
  margin: 0 0 0.5rem 0; }

/* _header.scss */
.front-page #logo-shelter-cluster {
  padding: 16px 20px 0; }

#logo-shelter-cluster img {
  height: 76px;
  max-width: 75%; }

header ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-position: inside; }

header a {
  text-decoration: none;
  color: black; }

#button-menu-dropdown {
  display: inline-block;
  background: black;
  background-image: linear-gradient(#1f1f1f, #212121 10%, black);
  background-repeat: no-repeat;
  color: white;
  margin: 0 0 8px 0;
  margin: 0 0 0.5rem 0;
  padding: 8px 20px 8px;
  padding: 0.5rem 1.25rem 0.5rem;
  border-radius: 3px;
  border: 1px solid #121212;
  border-bottom: 1px solid black; }
  #button-menu-dropdown:hover {
    background-image: linear-gradient(#050505, #080808 60%, #050505); }
  @media (max-width: 100px) {
    #button-menu-dropdown {
      display: none; } }

#user-profile-container {
  float: right;
  position: relative;
  padding: 0 0 60px 0;
  padding: 0 0 3.75rem 0;
  font-size: 13.6px;
  font-size: 0.85rem; }
  #user-profile-container > * {
    display: inline-block; }
  @media (max-width: 800px) {
    #user-profile-container {
      padding: 16px 0 32px 0;
      padding: 1rem 0 2rem 0; } }
  #user-profile-container .profile-item {
    float: left;
    margin: 0; }
    #user-profile-container .profile-item a {
      color: #222;
      text-decoration: underline;
      font-size: 13.6px;
      font-size: 0.85rem; }
    #user-profile-container .profile-item:first-child:after {
      content: '/';
      padding: 0 8px 0 8px;
      padding: 0 0.5rem 0 0.5rem; }

header #search-block-form {
  padding: 0rem 0 20px;
  padding: 0rem 0 1.25rem; }

#site-options-bar {
  background: #688394;
  font-size: 14.4px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  color: #536876; }
  #site-options-bar span {
    color: #fff; }
  #site-options-bar a {
    color: #fff;
    text-decoration: underline; }
    #site-options-bar a:hover {
      text-decoration: none; }
  #site-options-bar .active {
    color: #fff;
    text-decoration: none; }
  #site-options-bar .svg {
    fill: #fff;
    position: relative;
    top: 2px; }

#site-branding {
  align-content: center;
  height: 160px; }
  @media screen and (min-width: 800px) {
    #site-branding {
      display: grid;
      grid-template-columns: 1fr 1fr; } }
  #site-branding #logo-shelter-cluster {
    display: flex;
    align-items: center; }

.front-page #site-branding {
  background: url(../images/homepage-header.jpg) no-repeat 0% top;
  background-size: cover; }
  @media screen and (max-width: 1600px) {
    .front-page #site-branding {
      margin: 0 -20px; } }

#bandwidth-selector-icon {
  height: 13px;
  width: 13px; }

#bandwidth-selector {
  float: none;
  padding: 4px 0 4px 0;
  padding: 0.25rem 0 0.25rem 0; }
  @media (max-width: 600px) {
    #bandwidth-selector {
      float: left; } }

#language-selector {
  margin-right: 20px; }
  #language-selector ul {
    display: none;
    position: absolute;
    z-index: 9999;
    margin-left: -10px;
    padding-top: 5px;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1); }
    #language-selector ul li {
      margin: 0;
      padding: 0;
      min-width: 100px; }
    #language-selector ul a {
      display: block;
      padding: 7px 10px;
      transition: all 0.3s ease;
      color: black;
      background-color: #cdd6db; }
      #language-selector ul a:hover {
        color: white;
        background-color: #688394; }
  #language-selector span {
    font-weight: bold;
    white-space: nowrap;
    color: #222;
    cursor: pointer; }
  #language-selector:hover label {
    color: #688394; }
  #language-selector:hover ul {
    display: block; }

/* _navigation.scss */
#user-menu {
  display: flex;
  justify-content: end;
  align-self: center;
  margin-right: 20px;
  margin-top: -8px; }
  @media screen and (min-width: 980px) {
    #user-menu {
      margin-top: 0;
      margin-right: 40px; } }
  .front-page #user-menu .user-menu-links, .front-page #user-menu .language-selector {
    background: #eeeeee;
    border: solid 1px #688394;
    border-radius: 5px; }
  #user-menu .language-selector {
    text-align: right; }
    #user-menu .language-selector b {
      padding: 10px 10px 0 10px;
      display: block; }
    #user-menu .language-selector > div {
      padding: 0 10px; }
      #user-menu .language-selector > div select {
        width: 100%; }
  #user-menu .user-menu-links {
    display: flex;
    align-items: center; }
    #user-menu .user-menu-links li {
      padding: 10px; }
  #user-menu a {
    font-weight: bold;
    color: #242424; }
    #user-menu a:hover {
      color: #688394; }

.shelter-local-tasks ul:not(.contextual-links) {
  padding: 0;
  list-style-type: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  background: #eeeeee;
  border: solid 1px #688394; }
  .shelter-local-tasks ul:not(.contextual-links) li {
    width: 100%;
    margin: 0; }
    .shelter-local-tasks ul:not(.contextual-links) li a {
      display: grid;
      justify-content: center;
      text-decoration: none;
      justify-self: stretch;
      text-transform: uppercase;
      padding: 10px;
      color: black;
      width: 100%; }
      .shelter-local-tasks ul:not(.contextual-links) li a:hover {
        color: #688394;
        background: white; }

.shelter-local-tasks .contextual {
  top: 100px; }

#main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0; }

#main-menu .mega-menu {
  position: relative;
  background: black;
  color: white;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  z-index: 300;
  max-height: 0;
  transition: max-height 0.3s ease-in;
  overflow: hidden;
  margin-bottom: 1rem; }
  #main-menu .mega-menu.open {
    display: block;
    max-height: 2000px; }
  @media screen and (min-width: 980px) {
    #main-menu .mega-menu {
      display: grid;
      max-height: none;
      overflow: visible; } }
  #main-menu .mega-menu li {
    width: 100%; }
    #main-menu .mega-menu li a {
      display: grid;
      color: white;
      justify-self: stretch;
      text-decoration: none;
      text-transform: uppercase;
      width: 100%;
      justify-content: center; }
      @media screen and (min-width: 980px) {
        #main-menu .mega-menu li a {
          font-size: 0.8rem;
          border-right: 1px solid white; } }
      #main-menu .mega-menu li a:hover {
        text-decoration: none; }
  #main-menu .mega-menu > li {
    transition: all 0.3s ease; }
    #main-menu .mega-menu > li:first-child a {
      position: relative; }
      #main-menu .mega-menu > li:first-child a::before {
        content: "";
        position: absolute;
        z-index: 2;
        bottom: 0;
        width: 90%;
        left: 5%;
        border-bottom: 1px solid white; }
        @media screen and (min-width: 980px) {
          #main-menu .mega-menu > li:first-child a::before {
            content: none; } }
    #main-menu .mega-menu > li a {
      padding: 10px 0; }
    #main-menu .mega-menu > li:hover {
      background: #688394;
      color: white; }
  #main-menu .mega-menu > li > ul {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    background-color: #ebeef0; }
    @media screen and (min-width: 980px) {
      #main-menu .mega-menu > li > ul {
        display: grid;
        visibility: hidden;
        position: absolute;
        opacity: 0;
        left: 0;
        right: 0;
        top: 35px; } }
    #main-menu .mega-menu > li > ul > li > a {
      font-size: 1rem; }
  @media screen and (min-width: 980px) {
    #main-menu .mega-menu > li:hover > ul {
      transition-delay: .3s;
      visibility: visible;
      opacity: 1; } }
  #main-menu .mega-menu ul a {
    border: none;
    color: black;
    padding: 10px 0;
    padding-left: 0.75rem;
    justify-content: flex-start;
    transition: all 0.3s ease; }
    #main-menu .mega-menu ul a:hover {
      background: #688394;
      color: white; }
  #main-menu .mega-menu ul ul {
    display: none; }
    @media screen and (min-width: 980px) {
      #main-menu .mega-menu ul ul {
        display: block; } }
  #main-menu .mega-menu li:last-child a {
    border-right: 0; }

#mobile_menu_toggle {
  position: absolute;
  clip: rect(0, 0, 0, 0); }

label[for="mobile_menu_toggle"] {
  position: absolute;
  top: 40px;
  right: 1em;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -999em;
  cursor: pointer;
  z-index: 4; }

label[for="mobile_menu_toggle"] span {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -2px;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #7F1416;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: background 0.3s; }
  .front-page label[for="mobile_menu_toggle"] span {
    background-color: white; }

label[for="mobile_menu_toggle"] span:before,
label[for="mobile_menu_toggle"] span:after {
  content: '';
  top: -6px;
  right: 0;
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #7F1416;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition: transform 0.3s; }
  .front-page label[for="mobile_menu_toggle"] span:before, .front-page
  label[for="mobile_menu_toggle"] span:after {
    background-color: white; }

label[for="mobile_menu_toggle"] span:after {
  top: 6px; }

label[for="mobile_menu_toggle"].open span {
  background: transparent; }
  label[for="mobile_menu_toggle"].open span:before {
    transform: translateX(4px) translateY(-3px) rotate(45deg); }
  label[for="mobile_menu_toggle"].open span:after {
    transform: translateX(4px) translateY(2px) rotate(-45deg); }

@media screen and (min-width: 980px) {
  #mobile_menu_toggle,
  label[for="mobile_menu_toggle"] {
    display: none; } }

#mobile_menu_toggle:checked ~ .list-container {
  max-height: 2000px; }

#nav-shelter > .list-container > .nav-items > .expanded > ul > li a, #nav-shelter > .list-container > .nav-items > .expanded > ul > li span {
  display: block;
  background: transparent;
  color: black;
  text-transform: uppercase;
  white-space: normal;
  min-width: 130px;
  min-width: 8.125rem;
  transition: all 0.3s ease; }
  @media screen and (min-width: 980px) {
    #nav-shelter > .list-container > .nav-items > .expanded > ul > li a, #nav-shelter > .list-container > .nav-items > .expanded > ul > li span {
      font-size: 12.8px;
      font-size: 0.8rem;
      padding: 16px 8px;
      padding: 1rem 0.5rem; } }

#nav-shelter > .list-container > .nav-items > .expanded > ul > li a:hover, #nav-shelter > .list-container > .nav-items > .expanded > ul > li a:active,
#nav-shelter > .list-container > .nav-items > .expanded > ul > li a .active {
  background-color: #688394;
  color: white; }

@media screen and (min-width: 980px) {
  #nav-shelter > .list-container > .nav-items > .expanded > ul > li > a, #nav-shelter > .list-container > .nav-items > .expanded > ul > li > span {
    padding: 16px 8px;
    padding: 1rem 0.5rem; } }

#nav-shelter > .list-container > .nav-items > .expanded > ul > li ul {
  display: none; }
  @media screen and (min-width: 980px) {
    #nav-shelter > .list-container > .nav-items > .expanded > ul > li ul {
      display: block; }
      #nav-shelter > .list-container > .nav-items > .expanded > ul > li ul a {
        padding: 8px;
        padding: 0.5rem; } }

@media screen and (min-width: 980px) {
  #nav-shelter .list-container > .nav-items {
    display: table;
    width: 100%; }
  #nav-shelter .list-container > .nav-items > .nav-item {
    display: table-cell; }
    #nav-shelter .list-container > .nav-items > .nav-item > a {
      position: relative; }
      #nav-shelter .list-container > .nav-items > .nav-item > a:before {
        content: none; }
      #nav-shelter .list-container > .nav-items > .nav-item > a:after {
        content: '|';
        position: absolute;
        z-index: 2;
        font-size: 20.8px;
        font-size: 1.3rem;
        top: 2px;
        top: 0.125rem;
        right: -3px;
        right: -0.1875rem;
        color: white; }
    #nav-shelter .list-container > .nav-items > .nav-item:last-child > a:after, #nav-shelter .list-container > .nav-items > .nav-item.last > a:after {
      content: ''; }
  #nav-shelter > .list-container > .nav-items > .expanded > ul {
    display: none;
    position: absolute;
    width: 100%;
    padding: 0 1em;
    top: 30px;
    left: 0;
    z-index: 1000; }
  #nav-shelter > .list-container > .nav-items > .expanded > ul > li {
    width: 20%;
    float: left;
    background: transparent;
    margin-bottom: 1em; }
    #nav-shelter > .list-container > .nav-items > .expanded > ul > li > a, #nav-shelter > .list-container > .nav-items > .expanded > ul > li > span {
      font-size: 16px;
      font-size: 1rem;
      padding: 16px 8px;
      padding: 1rem 0.5rem; }
    #nav-shelter > .list-container > .nav-items > .expanded > ul > li.within-group {
      width: 25%; }
  #nav-shelter .list-container > .nav-items:not(.disable-hover) > li:hover > ul,
  #nav-shelter .list-container > .nav-items > li.force-visible > ul {
    display: block;
    display: flex;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1); }
  #nav-shelter > .list-container > .nav-items > .expanded > ul > li ul {
    background: #ebeef0;
    display: block; } }

/* _secondary-nav.scss */
#secondary-nav {
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0; }
  #secondary-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-position: inside; }
    #secondary-nav ul li {
      list-style: none;
      padding: 0;
      margin: 0 0 4px 0;
      margin: 0 0 0.25rem 0; }
      #secondary-nav ul li a {
        width: 100%;
        text-decoration: none;
        display: block;
        background: #ebeef0;
        color: #575757;
        font-weight: bold;
        padding: 8px 16px 8px;
        padding: 0.5rem 1rem 0.5rem;
        font-size: 14.4px;
        font-size: 0.9rem; }
        #secondary-nav ul li a:hover {
          background: #cdd6db; }
        #secondary-nav ul li a.active {
          background: #cdd6db; }

/* _content.scss */
body {
  top: 0 !important; }

hr {
  margin: 1rem 0; }

.content h1 {
  color: #7f1416;
  font-size: 2.3rem;
  line-height: 1.8rem;
  margin: 1rem 0; }

.content p, .content ol, .content ul {
  margin: 0 0 1em 0; }

.content ul, .content ol, .content blockquote {
  padding-left: 2em; }

.content table td, .content table th {
  border: 1px solid #d7d7d7;
  padding: 8px;
  padding: 0.5rem; }

.content li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem; }

.content .field-type-file {
  padding-top: 16px;
  padding-top: 1rem; }

#main-content .related-page-navigation h3 {
  border-bottom: none;
  margin-bottom: 0px; }

.video-container {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  background: black; }

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#main-content__first,
#main-content__second {
  padding: 16px 0 0 0;
  padding: 1rem 0 0 0; }
  #main-content__first h2,
  #main-content__second h2 {
    margin-top: 0;
    border-bottom: 2px solid #575757;
    text-transform: uppercase;
    color: #575757;
    font-size: 16px;
    font-size: 1rem;
    padding: 0 0 3.2px 0;
    padding: 0 0 0.2rem 0;
    margin: 0 0 24px 0;
    margin: 0 0 1.5rem 0; }
    #main-content__first h2 svg,
    #main-content__second h2 svg {
      width: 50px; }
  #main-content__first h3,
  #main-content__second h3 {
    border-bottom: 2px solid #717171;
    text-transform: uppercase;
    color: #575757;
    padding: 0 0 6.4px 0;
    padding: 0 0 0.4rem 0;
    margin: 0 0 16px 0;
    margin: 0 0 1rem 0;
    font-size: 16px;
    font-size: 1rem; }
    #main-content__first h3 svg circle,
    #main-content__first h3 svg path,
    #main-content__second h3 svg circle,
    #main-content__second h3 svg path {
      fill: #3e3e3e; }
    #main-content__first h3 img, #main-content__first h3 svg,
    #main-content__second h3 img,
    #main-content__second h3 svg {
      display: inline;
      vertical-align: middle;
      height: 21px;
      margin: 0 4px 0 0;
      margin: 0 0.25rem 0 0; }
    #main-content__first h3 #key-information-icon,
    #main-content__second h3 #key-information-icon {
      width: 38px; }
  #main-content__first h4,
  #main-content__second h4 {
    margin: 0 0 8px 0;
    margin: 0 0 0.5rem 0; }

#contextual-navigation {
  font-size: 12.8px;
  font-size: 0.8rem;
  margin-bottom: 6.4px;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 10; }
  #contextual-navigation a {
    color: #7f1416;
    text-decoration: none; }

.edit-link {
  float: right;
  text-transform: none;
  font-weight: normal; }

.collapsible,
.collapsed {
  cursor: pointer; }

.collapsed {
  border-bottom: 1px solid #d7d7d7 !important; }

.collapsible:after {
  content: ' \2013';
  /* n-dash */
  font-weight: bold; }

.collapsed:after {
  content: ' +';
  font-weight: bold; }

.collapsible:hover:after,
.collapsed:hover:after {
  transition: color 0.3s ease;
  color: #000; }

/* Group content display mode */
#main-content__second .node--group_content {
  margin-bottom: 2rem; }
  #main-content__second .node--group_content .node--group_content--content {
    color: #575757;
    font-size: 0.8rem; }
  #main-content__second .node--group_content h2 {
    border-bottom: none;
    text-transform: none;
    margin: 0 0 0.5rem 0; }
  #main-content__second .node--group_content a {
    text-decoration: none;
    color: #688394; }
    #main-content__second .node--group_content a:hover {
      text-decoration: underline;
      color: #485b67; }

.pager {
  text-align: center;
  margin: 3rem 0; }
  .pager ul {
    margin: 0;
    padding: 0; }
    .pager ul li {
      display: inline-block;
      margin: 0 1rem; }
      .pager ul li.is-active a {
        text-decoration: underline;
        color: #485b67; }
      .pager ul li a {
        text-decoration: none;
        color: #688394; }
        .pager ul li a:hover {
          text-decoration: underline;
          color: #485b67; }

/* Misc. */
.field--name-field-news-date {
  margin-bottom: 1rem; }

.field--name-field-images img {
  max-width: 100%; }

div.paragraph {
  margin-bottom: 2rem; }

#main-content__second .paragraph--type--image-and-text p img {
  width: 90%;
  display: block;
  margin: 0.5em auto; }

#main-content__second .paragraph--type--image-and-text .field--name-field-image {
  float: left;
  margin: 0 16px 16px 0;
  margin: 0 1rem 1rem 0; }

#main-content__second article {
  display: inline-block;
  width: 100%; }

/* _discussions.scss */
#shelter-discussions {
  position: relative;
  top: 16px;
  top: 1rem;
  color: #688394;
  margin: 0 0 40px 0;
  margin: 0 0 2.5rem 0;
  border-radius: 0 0.1875rem; }
  #shelter-discussions h3 {
    margin: 12px 0 4px 0;
    margin: 0.75rem 0 0.25rem 0;
    font-size: 13.6px;
    font-size: 0.85rem;
    color: #313131; }
  #shelter-discussions a {
    color: #688394; }
    #shelter-discussions a:hover, #shelter-discussions a:active {
      text-decoration: none; }
  #shelter-discussions .see-all {
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11.2px;
    font-size: 0.7rem;
    margin: 0 0 0 15px;
    margin: 0 0 0 0.9375rem;
    text-indent: -15px;
    text-indent: -0.9375rem; }
    #shelter-discussions .see-all:before {
      position: absolute;
      left: 0;
      top: -4px;
      content: '+';
      font-size: 17.6px;
      font-size: 1.1rem; }
    #shelter-discussions .see-all:hover, #shelter-discussions .see-all:active {
      text-decoration: none; }
      #shelter-discussions .see-all:hover:before, #shelter-discussions .see-all:active:before {
        border-style: none; }

#discussions-items {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-size: 14px;
  font-size: 0.875rem; }
  #discussions-items .discussions-item {
    width: 100%;
    margin: 0 0 10px 0;
    margin: 0 0 0.625rem 0; }
    #discussions-items .discussions-item:last-child {
      margin: 0; }
  #discussions-items .replies {
    color: #3e4e58;
    float: left;
    width: 25%; }
  #discussions-items .information {
    float: left;
    width: 73%;
    margin: 0 0 0 2%; }
    #discussions-items .information .topic {
      display: block;
      padding: 0 0 3.2px 0;
      padding: 0 0 0.2rem 0; }
    #discussions-items .information .date {
      font-size: 12.8px;
      font-size: 0.8rem; }
  #discussions-items .new {
    display: block;
    color: #f00; }

#main-content__first .discussions-group-teaser .views-element-container .discussions-item {
  margin-bottom: 1rem; }

#main-content__first .discussions-group-teaser .views-element-container h2 {
  border-bottom: none;
  text-transform: none;
  margin: 0 0 0.5rem 0; }

#main-content__first .discussions-group-teaser .views-element-container a {
  text-decoration: none;
  color: #688394; }
  #main-content__first .discussions-group-teaser .views-element-container a:hover {
    text-decoration: underline;
    color: #485b67; }

#main-content__first .discussions-group-teaser .views-element-container .summary {
  display: none; }

#main-content__first .discussions-group-teaser .see-all {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11.2px;
  font-size: 0.7rem;
  margin: 0 0 0 15px;
  margin: 0 0 0 0.9375rem;
  text-indent: -15px;
  text-indent: -0.9375rem; }
  #main-content__first .discussions-group-teaser .see-all:before {
    position: absolute;
    left: 0;
    top: -4px;
    content: '+';
    font-size: 17.6px;
    font-size: 1.1rem; }
  #main-content__first .discussions-group-teaser .see-all:hover, #main-content__first .discussions-group-teaser .see-all:active {
    text-decoration: none; }
    #main-content__first .discussions-group-teaser .see-all:hover:before, #main-content__first .discussions-group-teaser .see-all:active:before {
      border-style: none; }

#main-content__second .replies, .discussions-group-teaser .replies {
  color: #3e4e58;
  display: block;
  width: 100px;
  float: left; }

#main-content__second .information, .discussions-group-teaser .information {
  margin-left: 100px; }

#main-content__second .date, .discussions-group-teaser .date {
  font-size: 12.8px;
  font-size: 0.8rem;
  color: #688394;
  margin-bottom: 0.5rem; }

#main-content__second .new, .discussions-group-teaser .new {
  color: #f00;
  display: block;
  font-size: 12.8px;
  font-size: 0.8rem; }

.node--type-discussion #main-content__second header {
  float: right;
  color: #575757;
  margin: 0 0 10px 10px;
  background: #cdd6db;
  padding: 5px; }
  .node--type-discussion #main-content__second header svg {
    margin-left: 5px; }
  .node--type-discussion #main-content__second header a {
    color: #575757;
    text-decoration: none; }
    .node--type-discussion #main-content__second header a:active, .node--type-discussion #main-content__second header a:hover {
      color: black;
      text-decoration: none; }

.node--type-discussion .comments-wrapper {
  margin-top: 50px; }

.node--type-discussion .comment .content {
  min-height: 32px;
  min-height: 2rem;
  margin: 1em 0; }

.node--type-discussion .comment .submitted {
  font-size: 12.8px;
  font-size: 0.8rem; }

.node--type-discussion .comment-comment-node-discussion-form .field--name-comment-body label {
  display: none; }

.node--type-discussion .comment-comment-node-discussion-form .form-actions {
  margin-top: 1em; }
  .node--type-discussion .comment-comment-node-discussion-form .form-actions .button, .node--type-discussion .comment-comment-node-discussion-form .form-actions .search-documents-link,
  .node--type-discussion .comment-comment-node-discussion-form .form-actions .form-submit, .node--type-discussion .comment-comment-node-discussion-form .form-actions .page-search #search-form .form-submit, .page-search #search-form .node--type-discussion .comment-comment-node-discussion-form .form-actions .form-submit, .node--type-discussion .comment-comment-node-discussion-form .form-actions .addtocal,
  .node--type-discussion .comment-comment-node-discussion-form .form-actions .addtocal_menu, .node--type-discussion .comment-comment-node-discussion-form .form-actions .past-events-link a, .past-events-link .node--type-discussion .comment-comment-node-discussion-form .form-actions a, .node--type-discussion .comment-comment-node-discussion-form .form-actions #join-group #button-join-group a, #join-group #button-join-group .node--type-discussion .comment-comment-node-discussion-form .form-actions a, .node--type-discussion .comment-comment-node-discussion-form .form-actions .page-group .confirmation #edit-cancel, .page-group .confirmation .node--type-discussion .comment-comment-node-discussion-form .form-actions #edit-cancel {
    margin: 0;
    cursor: pointer; }

.event-item {
  background: #dadee4;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  padding: 12.8px;
  padding: 0.8rem; }
  .event-item a {
    color: #688394; }

.node--type-event a {
  color: #031957; }

.node--type-event .field {
  margin-bottom: 16px;
  margin-bottom: 1rem; }

.node--type-event .field__label {
  text-transform: uppercase;
  color: #888;
  font-size: 11.2px;
  font-size: 0.7rem;
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem; }

.node--type-event .event_location {
  margin-top: 0;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  background: #ddd;
  padding: 12px;
  padding: 0.75rem;
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  @media screen and (min-width: 769px) {
    .node--type-event .event_location {
      display: grid;
      grid-auto-flow: column;
      grid-gap: 0 20px; } }
  .node--type-event .event_location .field-items {
    margin: 0; }

ul.addtocal_menu {
  border: none;
  margin-left: 8px !important; }

.calendar-links {
  display: flex;
  margin-top: 5px;
  gap: 5px; }
  .calendar-links .ical {
    color: #575757;
    font-size: 11px;
    border-radius: 3px;
    padding: 1px 3px;
    line-height: 1;
    border: 2px solid #575757;
    opacity: .8; }
    .calendar-links .ical:hover {
      opacity: 1; }
    .calendar-links .ical a {
      color: #575757;
      text-decoration: none; }

.event-card .event-description img {
  height: auto !important;
  max-width: 100%; }

/* _coordination.scss */
#shelter-coordination-team {
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0;
  color: #7f1416;
  margin-top: 80px; }
  @media screen and (min-width: 769px) {
    #shelter-coordination-team {
      margin-top: 0px; } }
  #shelter-coordination-team summary {
    cursor: pointer;
    color: #7f1416;
    border-bottom: 2px solid #7f1416;
    margin-top: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 24px 0;
    margin: 0 0 1.5rem 0; }
    #shelter-coordination-team summary span {
      padding: 0 0 0 8px;
      padding: 0 0 0 0.5rem; }
    #shelter-coordination-team summary svg {
      width: 50px; }
  #shelter-coordination-team h4 {
    color: #7f1416;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px dashed #7f1416;
    padding: 0 0 4px 0;
    padding: 0 0 0.25rem 0;
    font-size: 13px;
    font-size: 0.8125rem; }

#coordination-items {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 5px; }
  @media (min-width: 700px) {
    #coordination-items {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1080px) {
    #coordination-items {
      grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1300px) {
    #coordination-items {
      grid-template-columns: repeat(4, 1fr); } }
  #coordination-items .coordination-item {
    display: flex;
    margin: 0 0 16px 0;
    margin: 0 0 1rem 0; }
  #coordination-items .avatar {
    width: 25%;
    text-align: center;
    padding: 5px 0 0 0;
    padding: 0.3125rem 0 0 0; }
    #coordination-items .avatar svg {
      width: 60px;
      width: 3.75rem;
      height: 60px;
      height: 3.75rem;
      fill: #600f11; }
    #coordination-items .avatar img {
      max-width: 80px;
      max-width: 5rem;
      width: 100%;
      height: 100%;
      padding: 0 5px 0; }
  #coordination-items .information {
    width: 73%;
    margin: 0 0 0 2%;
    font-size: 14.4px;
    font-size: 0.9rem;
    line-height: 18px;
    line-height: 1.125rem; }
    #coordination-items .information .job-title {
      display: block; }
    #coordination-items .information .telephone {
      display: block;
      text-decoration: none;
      color: #7f1416; }
    #coordination-items .information a {
      color: #7f1416; }
      #coordination-items .information a:hover, #coordination-items .information a:active {
        text-decoration: none; }

/* _calendar.scss */
.addressfield-container-inline span {
  display: inline; }

#all-events,
#box-calendar {
  position: relative;
  width: 100%;
  background-color: #eee;
  color: #000;
  border-radius: 0.1875rem; }
  #all-events a,
  #box-calendar a {
    color: #031957; }
  #all-events .event-card,
  #box-calendar .event-card {
    padding: 0 0 4px 0;
    padding: 0 0 0.25rem 0;
    line-height: 16px;
    line-height: 1rem;
    border-radius: 7px;
    border-bottom: 1px solid #ddd;
    padding-top: 7px;
    margin-bottom: 9px;
    clear: right;
    display: table;
    width: 100%; }
    #all-events .event-card .event-title,
    #box-calendar .event-card .event-title {
      background: #ddd;
      position: relative;
      border-radius: 10px 10px 0 0;
      box-shadow: rgba(100, 100, 100, 0.23) 0px -7px 5px; }
      #all-events .event-card .event-title .arrow,
      #box-calendar .event-card .event-title .arrow {
        font-size: 28.8px;
        font-size: 1.8rem;
        color: #000;
        font-weight: bold;
        position: absolute;
        top: 10px;
        left: 10px; }
      #all-events .event-card .event-title a,
      #box-calendar .event-card .event-title a {
        color: #000;
        width: 100%;
        display: block;
        padding: 12px 0 12px 28px;
        padding: 0.75rem 0 0.75rem 1.75rem;
        margin-bottom: 5px;
        text-transform: capitalize;
        border-bottom: 1px solid #ccc; }
        #all-events .event-card .event-title a:hover, #all-events .event-card .event-title a:active,
        #box-calendar .event-card .event-title a:hover,
        #box-calendar .event-card .event-title a:active {
          text-decoration: none; }
    #all-events .event-card .information-item,
    #box-calendar .event-card .information-item {
      margin-bottom: 7px;
      padding: 0 12px;
      padding: 0 0.75rem; }
    #all-events .event-card .response,
    #box-calendar .event-card .response {
      padding: 0 5px; }
    #all-events .event-card .label,
    #box-calendar .event-card .label {
      position: relative;
      display: block; }
      #all-events .event-card .label .map-link,
      #box-calendar .event-card .label .map-link {
        position: absolute;
        right: 0; }
  #all-events .all-events,
  #all-events .previous-events,
  #box-calendar .all-events,
  #box-calendar .previous-events {
    text-align: center;
    font-size: 13.6px;
    font-size: 0.85rem;
    padding: 0 0 10px; }
    #all-events .all-events a,
    #all-events .previous-events a,
    #box-calendar .all-events a,
    #box-calendar .previous-events a {
      color: #000; }

#date-calendar {
  text-indent: -36px;
  text-indent: -2.25rem;
  margin: 0 10px 0 50px;
  margin: 0 0.625rem 0 3.125rem;
  padding: 8px 0 8px 0;
  padding: 0.5rem 0 0.5rem 0;
  text-align: center;
  font-weight: bold; }
  #date-calendar sup {
    position: relative;
    vertical-align: top;
    vertical-align: 1.6px;
    vertical-align: 0.1rem; }

#calendar-pin-icon {
  position: absolute;
  top: -35px;
  left: 15px;
  z-index: 10;
  fill: #7f1416;
  width: 62px;
  height: 59px;
  margin: 6px 0px 6px 0px;
  margin: 0.375rem 0px 0.375rem 0px;
  padding: 0 5px 5px 0;
  padding: 0 0.3125rem 0.3125rem 0;
  border-radius: 15px;
  box-sizing: initial; }

#all-events {
  position: relative;
  background-color: #fff; }
  #all-events .future-event-card {
    position: relative;
    background-color: #eee; }
    #all-events .future-event-card .table-wrapper {
      display: table;
      height: 100px;
      width: 100%;
      table-layout: fixed; }
    #all-events .future-event-card .event-information {
      display: block;
      width: auto; }
      @media (max-width: 640px) {
        #all-events .future-event-card .event-information {
          display: table-cell;
          vertical-align: top; } }
    #all-events .future-event-card .event-map {
      display: block;
      width: 100%; }
      @media (max-width: 640px) {
        #all-events .future-event-card .event-map {
          display: table-cell;
          width: 300px; } }
      #all-events .future-event-card .event-map div {
        width: 100%;
        padding: 3px 7px 1px 0; }
      #all-events .future-event-card .event-map img {
        width: 100%;
        height: auto;
        border: 1px solid #888; }
  #all-events .past-event-card {
    opacity: 0.5;
    background: #fcfcfc; }
    #all-events .past-event-card:hover {
      opacity: 1; }
    #all-events .past-event-card .event-title {
      background: #999; }

div.street-block,
div.addressfield-container-inline {
  display: inline; }

div.addressfield-container-inline::after {
  clear: none;
  display: inline; }

/* _join_group.scss */
#join-group {
  background-color: #cdd6db;
  color: #575757;
  padding: 12px;
  padding: 0.75rem;
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0;
  position: relative;
  text-align: center; }
  #join-group p {
    display: inline-block;
    margin: 0 0 7px 0;
    font-size: 14.4px;
    font-size: 0.9rem; }
  #join-group #button-join-group {
    padding: 7px 0 7px;
    display: inline-block;
    margin-left: 7px; }
    #join-group #button-join-group a {
      margin-left: 0;
      text-decoration: none; }

.page-group .confirmation #edit-cancel {
  text-decoration: none;
  background: #cdd6db; }

/* _admin-content.scss */
#add-content,
#admin-links,
#add-page-to-menu {
  display: grid;
  background: black;
  padding: 5px;
  margin-bottom: 2px;
  font-size: 0.9rem; }
  #add-content ul,
  #admin-links ul,
  #add-page-to-menu ul {
    list-style-type: none; }
  #add-content #add-content-container,
  #admin-links #add-content-container,
  #add-page-to-menu #add-content-container {
    color: white; }
    #add-content #add-content-container div:first-child,
    #admin-links #add-content-container div:first-child,
    #add-page-to-menu #add-content-container div:first-child {
      padding-top: 20px;
      margin-top: 3px;
      border-top: 1px solid #4d4d4d; }
    #add-content #add-content-container > div,
    #admin-links #add-content-container > div,
    #add-page-to-menu #add-content-container > div {
      margin-top: 15px; }
      #add-content #add-content-container > div + div,
      #admin-links #add-content-container > div + div,
      #add-page-to-menu #add-content-container > div + div {
        border-top: 1px solid #4d4d4d;
        padding-top: 15px; }
  #add-content summary,
  #admin-links summary,
  #add-page-to-menu summary {
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    padding: 5px 0;
    cursor: pointer; }
  #add-content h3,
  #admin-links h3,
  #add-page-to-menu h3 {
    font-size: 14.4px;
    font-size: 0.9rem; }
  #add-content a,
  #admin-links a,
  #add-page-to-menu a {
    text-decoration: none;
    color: white; }
  #add-content .editor-menu-grouped,
  #admin-links .editor-menu-grouped,
  #add-page-to-menu .editor-menu-grouped {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style-type: none; }
    #add-content .editor-menu-grouped > li,
    #admin-links .editor-menu-grouped > li,
    #add-page-to-menu .editor-menu-grouped > li {
      display: grid;
      grid-template-columns: 30px 1fr;
      width: 100%;
      padding-left: 10px; }
      #add-content .editor-menu-grouped > li.first.last,
      #admin-links .editor-menu-grouped > li.first.last,
      #add-page-to-menu .editor-menu-grouped > li.first.last {
        grid-column: span 2; }
  #add-content .editor-menu-individual,
  #admin-links .editor-menu-individual,
  #add-page-to-menu .editor-menu-individual {
    list-style: none;
    padding: 0;
    display: grid;
    grid-gap: 20px;
    grid-column-gap: 10px;
    grid-template-columns: repeat(auto-fill, 77px);
    justify-content: space-evenly; }
    #add-content .editor-menu-individual i.fas,
    #admin-links .editor-menu-individual i.fas,
    #add-page-to-menu .editor-menu-individual i.fas {
      display: block;
      margin-bottom: 10px; }
    #add-content .editor-menu-individual li,
    #admin-links .editor-menu-individual li,
    #add-page-to-menu .editor-menu-individual li {
      margin: 0;
      text-align: center; }

#dashboard-menu #add-page-to-menu summary {
  border-bottom: 0; }

#dashboard-menu #add-page-to-menu .form-wrapper[open] summary {
  border-bottom: 1px solid #4d4d4d; }

#dashboard-menu #add-page-to-menu .form-actions {
  margin: 5px 0 0 0; }
  #dashboard-menu #add-page-to-menu .form-actions .form-item-parent {
    max-width: 70%;
    float: left; }
    #dashboard-menu #add-page-to-menu .form-actions .form-item-parent select {
      padding: 0.35rem 1.25rem 0.35rem;
      background-repeat: no-repeat;
      color: #434343;
      background-image: linear-gradient(#fafafa, #fdfdfd 10%, gainsboro);
      border-radius: 3px;
      border: 1px solid #ededed;
      border-bottom: 1px solid #cfcfcf;
      max-width: 100%; }
  #dashboard-menu #add-page-to-menu .form-actions .button, #dashboard-menu #add-page-to-menu .form-actions .search-documents-link,
  #dashboard-menu #add-page-to-menu .form-actions .form-submit, #dashboard-menu #add-page-to-menu .form-actions .addtocal,
  #dashboard-menu #add-page-to-menu .form-actions .addtocal_menu, #dashboard-menu #add-page-to-menu .form-actions .past-events-link a, .past-events-link #dashboard-menu #add-page-to-menu .form-actions a, #dashboard-menu #add-page-to-menu .form-actions #join-group #button-join-group a, #join-group #button-join-group #dashboard-menu #add-page-to-menu .form-actions a, #dashboard-menu #add-page-to-menu .form-actions .page-group .confirmation #edit-cancel, .page-group .confirmation #dashboard-menu #add-page-to-menu .form-actions #edit-cancel {
    max-width: 25%; }

/* _active_responses.scss */
#active-responses {
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0; }
  @media (max-width: 900px) {
    #active-responses {
      margin: 0 0 24px 0;
      margin: 0 0 1.5rem 0; } }
  #active-responses h1 {
    font-size: 28.8px;
    font-size: 1.8rem;
    margin: 0 0 8px 0;
    margin: 0 0 0.5rem 0;
    font-weight: normal; }
  #active-responses ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-position: inside;
    margin-bottom: 16px;
    margin-bottom: 1rem; }
  #active-responses .hot-responses {
    width: 100%;
    text-align: center; }
    #active-responses .hot-responses .hot-responses-link {
      position: relative;
      display: block;
      margin-bottom: 0; }
    #active-responses .hot-responses a {
      display: block;
      text-align: left;
      text-decoration: none;
      color: white;
      font-weight: bold;
      width: 100%;
      border: 1px solid #04314c;
      background-color: #04314c;
      transition: all 0.3s ease;
      padding: 8px 40px 8px 8px;
      padding: 0.5rem 2.5rem 0.5rem 0.5rem;
      margin: 0 0 4px 0;
      margin: 0 0 0.25rem 0;
      box-shadow: rgba(0, 0, 0, 0.09) 2px 2px 1px; }
      #active-responses .hot-responses a:hover, #active-responses .hot-responses a:active {
        background-color: #07507c;
        color: #fff; }
      @media (max-width: 800px) {
        #active-responses .hot-responses a {
          width: 100%; } }
    #active-responses .hot-responses div {
      float: left; }
    #active-responses .hot-responses svg {
      position: absolute;
      top: 5px;
      right: 10px;
      width: 24px; }
      #active-responses .hot-responses svg path,
      #active-responses .hot-responses svg circle,
      #active-responses .hot-responses svg polygon {
        fill: white; }

.front-page #site-branding {
  height: 260px; }

.front-page #site-options-bar, .front #site-options-bar {
  margin-bottom: 0; }

.front-page #user-profile-container, .front #user-profile-container {
  position: absolute;
  right: 5%;
  top: 85px;
  color: white;
  background-color: #eee;
  border: solid 1px #688394;
  border-radius: 5px;
  padding: 1px 2px 5px 10px; }
  .front-page #user-profile-container #login-link a, .front-page #user-profile-container #logout-link a, .front #user-profile-container #login-link a, .front #user-profile-container #logout-link a {
    color: #222; }
    .front-page #user-profile-container #login-link a:hover, .front-page #user-profile-container #logout-link a:hover, .front #user-profile-container #login-link a:hover, .front #user-profile-container #logout-link a:hover {
      color: #688394; }
  @media (max-width: 800px) {
    .front-page #user-profile-container, .front #user-profile-container {
      right: 45px;
      top: 48px; } }

.front-page .video-container, .front .video-container {
  margin: 8px 0 24px 0;
  margin: 0.5rem 0 1.5rem 0; }

.front-page #site-branding, .front #site-branding {
  margin: 0; }
  .front-page #site-branding .page-margin, .front #site-branding .page-margin {
    background: url(../images/homepage-header.jpg) no-repeat 0% top;
    height: 160px; }
    @media (max-width: 800px) {
      .front-page #site-branding .page-margin, .front #site-branding .page-margin {
        background-position: top center; } }
  .front-page #site-branding #logo-shelter-cluster .svg, .front #site-branding #logo-shelter-cluster .svg {
    top: -5px;
    left: 5%;
    max-width: 75%; }
    @media (max-width: 800px) {
      .front-page #site-branding #logo-shelter-cluster .svg, .front #site-branding #logo-shelter-cluster .svg {
        top: 28px;
        left: 35px;
        max-width: 92%; } }
  .front-page #site-branding .search, .front #site-branding .search {
    bottom: 0px;
    right: 5%; }
    @media (max-width: 800px) {
      .front-page #site-branding .search, .front #site-branding .search {
        bottom: 38px;
        right: 45px; } }
  .front-page #site-branding #shelter-cluster polygon, .front #site-branding #shelter-cluster polygon {
    fill: white; }
  .front-page #site-branding #shelter-cluster path, .front #site-branding #shelter-cluster path {
    fill: white; }
  .front-page #site-branding #shelter-cluster .second-color, .front #site-branding #shelter-cluster .second-color {
    fill: #cfd0d2; }

.front-page .main-content, .front .main-content {
  width: 100%;
  display: inline-block;
  vertical-align: top; }
  .front-page .main-content h2, .front .main-content h2 {
    font-weight: normal; }
  @media (max-width: 900px) {
    .front-page .main-content, .front .main-content {
      width: 53%; } }
  @media (max-width: 1100px) {
    .front-page .main-content, .front .main-content {
      width: 60%; } }

.front-page #twitter-timeline, .front #twitter-timeline {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
  text-align: center; }

.front-page .posters, .front .posters {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0; }
  .front-page .posters .poster, .front .posters .poster {
    width: 100%;
    float: left;
    margin: 0 0 16px 0;
    margin: 0 0 1rem 0; }
    .front-page .posters .poster img, .front .posters .poster img {
      width: 100%;
      height: auto;
      float: left; }
    @media (max-width: 500px) {
      .front-page .posters .poster, .front .posters .poster {
        margin: 0 0 16px 16px;
        margin: 0 0 1rem 1rem;
        width: 46%; } }

@media screen and (min-width: 769px) {
  html.flexbox .front .home-main {
    display: flex;
    justify-content: space-between; }
  html.flexbox .front .side-column {
    display: flex;
    flex-direction: column; }
  html.flexbox .front .side-column [data-set="twitter-timeline"] {
    flex: 1; }
  html.flexbox .front #twitter-timeline iframe {
    height: 100% !important; }
  html.flexbox .front .main-column:after {
    content: '' !important; } }

@media screen and (max-width: 400px) {
  .front .main-column {
    padding-top: 0; } }

#block-views-homepage2-block-1 > .content {
  padding-bottom: 0;
  min-height: 0; }

#twitter-timeline {
  display: none; }

.front .twitter-timeline-main {
  display: block; }

@media (min-width: 1000px) {
  #twitter-timeline {
    display: flex;
    flex: 1; } }

@media screen and (min-width: 769px) {
  .front .twitter-timeline-main {
    display: none; } }

iframe {
  width: 100% !important; }

.home-dashboard {
  text-align: center; }
  .home-dashboard .row-figures {
    margin: 2em 0; }
    @media screen and (max-width: 400px) {
      .home-dashboard .row-figures p {
        text-align: right;
        width: 50%;
        float: left;
        clear: left; }
      .home-dashboard .row-figures .big-figure {
        margin-left: 1em;
        float: left; } }
    @media screen and (min-width: 401px) {
      .home-dashboard .row-figures {
        display: flex; }
        .home-dashboard .row-figures > * {
          flex: 1; } }
  .home-dashboard .row-pies {
    margin: 2em 0; }
    @media screen and (min-width: 401px) {
      .home-dashboard .row-pies > * {
        float: left;
        width: 50%; } }
  .home-dashboard .row-bars {
    margin: 2em 0; }
    @media screen and (min-width: 401px) {
      .home-dashboard .row-bars > * {
        float: left;
        width: 33%; } }
    .home-dashboard .row-bars .cluster-chart-wrapper {
      height: 350px; }
  .home-dashboard .footer {
    clear: both; }
  .home-dashboard small {
    font-weight: normal;
    font-style: italic;
    color: #575757; }
  .home-dashboard .header p {
    margin-top: -.5em;
    color: #575757; }
  .home-dashboard h4 {
    font-weight: normal;
    margin-bottom: 1em; }
  .home-dashboard .big-figure {
    display: block;
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 1em; }

.user-form input {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.user-form .dashboard-menu__links li {
  margin-bottom: 0;
  list-style: none; }

.user-form h1 {
  margin-bottom: 2rem; }

.page-user .form-text {
  float: none;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  max-width: 100%; }

.page-user .form-item .description {
  width: 100%; }
  @media (max-width: 700px) {
    .page-user .form-item .description {
      width: 70%; } }

.page-user #user-profile-links-container ul {
  list-style: none;
  padding-left: 0; }

.page-user #user-profile-links-container a {
  color: #575757; }

.page-user #user-profile-links-container .active a {
  font-weight: bold; }

.page-user .profile .history {
  background: #ebeef0;
  padding: 16px 16px 1.6px;
  padding: 1rem 1rem 0.1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem; }

.page-user .profile a {
  color: #688394; }

.page-user .profile .avatar {
  width: 120px;
  height: 120px;
  float: left; }
  .page-user .profile .avatar img {
    width: 100px;
    height: auto;
    border-radius: 50%; }
  .page-user .profile .avatar .svg {
    width: 100px;
    height: 100px; }

.page-user .profile .name {
  font-size: 48px;
  font-size: 3rem;
  display: block; }

.page-user .profile .field-label {
  margin: 20px 0 .2em 0;
  font-weight: bold; }

.page-user .profile .telephone {
  display: inline-block; }
  .page-user .profile .telephone + .telephone {
    margin-left: 10px; }

#page #user-login .hybridauth-widget .hybridauth-icon {
  background-image: url("../images/humanitarian-id-logo.svg");
  height: 50px;
  width: 300px; }

#login-link {
  background: url("../images/humanitarianid.png") right center no-repeat;
  height: 25px;
  vertical-align: center;
  padding: 5px 30px 0 0; }
  #login-link a {
    white-space: nowrap;
    color: #222;
    font-weight: bold; }
    #login-link a:hover {
      color: #688394; }

#logout-link, #signup-link {
  height: 25px;
  vertical-align: center;
  padding: 5px 10px 0 20px; }
  #logout-link a, #signup-link a {
    white-space: nowrap;
    color: #222;
    font-weight: bold; }
    #logout-link a:hover, #signup-link a:hover {
      color: #688394; }

.user-picture img {
  border-radius: 50%; }

/* _footer.scss */
footer {
  color: #575757;
  border-top: 1px solid #ebeff3;
  background-color: #ebeff3;
  padding-bottom: 5rem; }
  footer #footer-nav {
    grid-column-start: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 2px 0 5px -1px rgba(0, 0, 0, 0.05); }
    footer #footer-nav section {
      padding: 1rem 0 1rem 1.5625rem; }
    footer #footer-nav a {
      color: #575757;
      white-space: nowrap; }
    footer #footer-nav .geographic-regions-menu {
      margin: 20px; }
      footer #footer-nav .geographic-regions-menu li {
        font-weight: bold;
        margin: 20px 0; }
        footer #footer-nav .geographic-regions-menu li a.is-active {
          text-decoration: none;
          font-weight: bold;
          color: #688394;
          border: 0; }
        footer #footer-nav .geographic-regions-menu li ul {
          list-style: none;
          margin: 0 0 0 1rem; }
      footer #footer-nav .geographic-regions-menu ul {
        display: flex;
        flex-wrap: wrap; }
        footer #footer-nav .geographic-regions-menu ul li {
          font-weight: normal;
          margin: 0 10px 0 0; }
  footer #footer__logos {
    padding: 1rem 0 1rem 1.5625rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 2px 1px -1px rgba(0, 0, 0, 0.05);
    background-color: white;
    grid-column-start: 2;
    display: grid;
    gap: 40px;
    justify-items: center;
    padding: 40px; }
    footer #footer__logos h3 {
      font-weight: 100; }
    footer #footer__logos ul {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-around; }
      footer #footer__logos ul li {
        list-style: none; }
      footer #footer__logos ul.contributors {
        padding: 20px; }
        footer #footer__logos ul.contributors .contributor {
          padding: 20px; }
        footer #footer__logos ul.contributors img {
          max-width: 250px; }
      footer #footer__logos ul.appstores {
        width: 50%; }
        footer #footer__logos ul.appstores a::after {
          content: none; }
        footer #footer__logos ul.appstores img {
          height: 50px;
          vertical-align: bottom; }
  footer h3 {
    text-transform: uppercase;
    font-size: 13.6px;
    font-size: 0.85rem;
    margin: 0 0 8px;
    margin: 0 0 0.5rem; }
  footer #active-clusters-list {
    background-color: #cdd6db; }
  footer #regions-list {
    background-color: #c4cfd5; }
  footer a {
    color: #575757;
    white-space: nowrap; }
  footer .see-all {
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11.2px;
    font-size: 0.7rem;
    margin: 0 0 0 15px;
    margin: 0 0 0 0.9375rem;
    text-indent: -15px;
    text-indent: -0.9375rem; }
    footer .see-all:before {
      position: absolute;
      left: 0;
      top: -4px;
      content: '+';
      font-size: 16px;
      font-size: 1rem;
      padding: 0 5px 0 0;
      padding: 0 0.3125rem 0 0; }
    footer .see-all:hover, footer .see-all:active {
      text-decoration: none; }
      footer .see-all:hover:before, footer .see-all:active:before {
        border-style: none; }
  footer .general-information {
    padding-top: 30px; }
  footer ul li {
    position: relative;
    margin: 0 0;
    padding: 0 0 4px 0;
    padding: 0 0 0.25rem 0;
    font-size: 13.6px;
    font-size: 0.85rem; }
  footer #active-clusters-list .item-list li {
    margin: 0 0 4px 13px;
    margin: 0 0 0.25rem 0.8125rem; }
  footer #active-clusters-list .complete-list {
    padding: 0 8px 8px;
    padding: 0 0.5rem 0.5rem; }

@media screen and (max-width: 1000px) {
  footer #footer-nav {
    grid-template-columns: 1fr; } }

.document-table {
  margin-bottom: 1rem;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin: 0 0 24px 0;
  margin: 0 0 1.5rem 0;
  font-size: 14.4px;
  font-size: 0.9rem; }
  .document-table thead th {
    border-bottom: 0;
    padding: .5rem; }
  .document-table thead th:last-child {
    text-align: left; }
  @media (max-width: 600px) {
    .document-table {
      font-size: 16px;
      font-size: 1rem; } }
  .document-table a {
    color: #031958;
    font-weight: normal; }
    .document-table a.operation-icon {
      color: #688394; }
      .document-table a.operation-icon:hover {
        color: #3e4e58; }
  .document-table td {
    padding: 8px 0;
    padding: 0.5rem 0;
    border: none !important; }
  .document-table thead {
    background: #7f1416; }
    .document-table thead th {
      padding-top: 8px;
      padding-top: 0.5rem;
      padding-bottom: 8px;
      padding-bottom: 0.5rem;
      color: white; }
      .document-table thead th a {
        color: white; }
    .document-table thead th:nth-child(2) {
      padding: 8px 8px;
      padding: 0.5rem 0.5rem; }
    .document-table thead th:last-child {
      text-align: center; }
  .document-table .even {
    background: #eef1f2; }
  .document-table .odd {
    background: #f7f8f9; }
  .document-table .information-title {
    padding: 7.2px 8px;
    padding: 0.45rem 0.5rem; }
    .document-table .information-title p {
      margin: 4px 0 0 0;
      text-transform: uppercase;
      font-size: 12px;
      font-size: 0.75rem;
      color: #575757; }
    .document-table .information-title .group {
      text-transform: uppercase;
      font-size: 12px;
      font-size: 0.75rem;
      color: #575757;
      text-decoration: none; }
    .document-table .information-title .tags h3 {
      position: absolute !important;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px 1px 1px 1px); }
    .document-table .information-title .tags ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      margin-top: 10px; }
      .document-table .information-title .tags ul li {
        font-size: 12px;
        font-size: 0.75rem;
        color: #575757;
        border: 1px solid #575757;
        border-radius: 6px;
        padding: 0 4px;
        margin: 1px;
        height: 18px; }
  .document-table .information-file {
    font-size: 13.6px;
    font-size: 0.85rem;
    white-space: nowrap; }
    .document-table .information-file, .document-table .information-file a {
      color: #688394;
      text-decoration: none; }
    .document-table .information-file a:hover {
      color: #3e4e58; }
  .document-table .document-groups {
    margin: 0.75em 0;
    text-transform: uppercase;
    font-size: 12px;
    font-size: 0.75rem; }
    .document-table .document-groups a {
      color: black;
      text-transform: uppercase; }
  .document-table .size-type {
    font-size: 13.6px;
    font-size: 0.85rem;
    color: black; }
    .document-table .size-type a {
      font-size: 9.6px;
      font-size: 0.6rem;
      font-weight: bold;
      color: black;
      text-transform: uppercase; }
  .document-table .publication-date {
    min-width: 100px; }
    .document-table .publication-date span {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 13.6px;
      font-size: 0.85rem;
      color: #688394; }
  @media (max-width: max-width 600px) {
    .document-table {
      display: block; }
      .document-table thead, .document-table tbody, .document-table th, .document-table td, .document-table tr {
        display: block; }
      .document-table thead th {
        text-align: left !important;
        border: none;
        padding: 3.2px 8px !important;
        padding: 0.2rem 0.5rem !important; }
        .document-table thead th:last-child {
          padding-bottom: 12px !important;
          padding-bottom: 0.75rem !important; }
      .document-table td {
        border: none;
        position: relative; }
      .document-table .publication-date span {
        text-align: left; } }
  .document-table .recent-document-date {
    color: #688394;
    font-size: 13.6px;
    font-size: 0.85rem;
    float: right; }

.event-preview-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }
  .upcoming-events .event-preview-list {
    grid-template-columns: 1fr; }
  @media (min-width: 1000px) {
    .event-preview-list {
      grid-template-columns: 1fr 1fr; } }
  .event-preview-list .event-preview {
    position: relative;
    width: 100%;
    color: #575757;
    padding: 10px;
    border: 1px solid #cdd6db;
    min-height: 170px; }
    .event-preview-list .event-preview.event-preview--past {
      color: #a4a4a4; }
      .event-preview-list .event-preview.event-preview--past h4 {
        color: #979797; }
      .event-preview-list .event-preview.event-preview--past .group {
        color: #a4a4a4; }
      .event-preview-list .event-preview.event-preview--past .thumbnail img {
        opacity: .7; }
    .event-preview-list .event-preview a {
      text-decoration: none; }
    .event-preview-list .event-preview h4 {
      font-size: 16px;
      font-size: 1rem;
      color: #04314c;
      text-transform: uppercase;
      font-weight: normal;
      margin: 0;
      line-height: 21px;
      max-height: 42px;
      overflow: hidden; }
    .event-preview-list .event-preview .operation-icon {
      float: right;
      margin-left: 5px; }
    .event-preview-list .event-preview .thumbnail {
      float: right;
      margin-left: 10px;
      line-height: 0; }
      .event-preview-list .event-preview .thumbnail img {
        max-width: 30vw;
        width: 150px;
        height: 150px; }
    .event-preview-list .event-preview .group {
      color: #575757;
      display: block; }
    .event-preview-list .event-preview .group, .event-preview-list .event-preview .event-date {
      margin-top: 3px;
      font-size: 12px;
      font-size: 0.75rem;
      overflow: hidden;
      text-overflow: ellipsis; }
    .event-preview-list .event-preview .group {
      white-space: nowrap; }
    .event-preview-list .event-preview .event-location {
      margin-top: 7px;
      font-size: 14.4px;
      font-size: 0.9rem;
      line-height: 19.2px;
      line-height: 1.2rem;
      max-height: 76.8px;
      max-height: 4.8rem;
      overflow: hidden; }
    .event-preview-list .event-preview .group ~ .event-location {
      max-height: 57.6px;
      max-height: 3.6rem; }

.document-table.document-table--event thead {
  background: #04314c; }

.document-table.document-table--event .event-location {
  min-width: 100px;
  font-size: 13.6px;
  font-size: 0.85rem;
  color: #688394; }

.document-table.document-table--event .event-date {
  min-width: 100px;
  white-space: nowrap;
  text-align: center;
  font-size: 13.6px;
  font-size: 0.85rem;
  color: #688394; }

@media (min-width: 768px) {
  .doc-details {
    float: left;
    width: 70%; }
  .doc-download {
    float: right;
    width: 30%; } }

.doc-details {
  margin-bottom: 1em;
  color: #575757; }
  .doc-details > div {
    margin-bottom: 0.5em; }
  .doc-details a {
    color: #7f1416;
    text-decoration: none;
    word-wrap: break-word; }
    .doc-details a:hover {
      text-decoration: underline; }
  .doc-details .doc-attr-label {
    display: inline-block;
    width: 20%;
    min-width: 80px;
    max-width: 100px;
    vertical-align: top; }
  .doc-details .doc-attr-value {
    display: inline-block;
    width: 65%; }

.doc-details .field-name-og-group-ref,
.doc-details .field-name-og-group-ref div {
  display: inline-block; }

.doc-tags a {
  display: inline-block;
  margin: 0 0.67em 0 0;
  font-size: 0.9em; }

.doc-download {
  text-align: center; }

.doc-preview {
  width: 100%;
  padding: 0.25em;
  min-height: 200px;
  text-align: center;
  background: #cdd6db url(../images/svg/icons/file.svg) center center no-repeat;
  background-size: 50px;
  border: 1px solid #688394; }
  .doc-preview img {
    max-width: 200px;
    height: auto;
    background: white; }

.doc-button a {
  display: block;
  margin: 0.5em 0 0;
  padding: 0.5em;
  width: 100%;
  text-decoration: none; }
  .doc-button a:hover {
    text-decoration: underline; }

.doc-description {
  clear: both; }

.doc-description p:first-child {
  margin-top: 0; }

.document-tag {
  border: 1px solid;
  border-radius: 6px;
  padding: 0px 4px;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 2px;
  font-size: 0.75rem; }

.doc-translations .field--name-field-document-translations > .field__label {
  margin-bottom: 0.5rem;
  font-weight: bold; }

.doc-translations .field--name-field-language {
  display: inline-block; }

.doc-translations .paragraph--type--document-translations {
  margin-bottom: 0.5rem; }

.doc-extra-files .doc-attr-value span {
  display: none; }
  .doc-extra-files .doc-attr-value span.file {
    margin-bottom: 10px;
    margin-left: 10px;
    display: list-item; }
    .doc-extra-files .doc-attr-value span.file::before {
      display: none; }

.cluster-upload-message {
  background-color: #FFC6B9;
  color: #7f1416;
  font-weight: bold;
  padding: 10px 20px 10px 40px; }

.throbber {
  background-image: url("../images/throbber.gif");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 10px 10px; }

body.document-upload-ondrag {
  background-color: #FFC6B9; }

@media screen and (min-width: 769px) {
  .preview-block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem; } }

.preview-block {
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0;
  width: 100%; }
  .preview-block > h4 {
    color: white;
    padding: .5rem .5rem .5rem 40px;
    text-transform: uppercase; }
  .preview-block.recent-documents > h4 {
    background: #7f1416 url("../images/document-white.png") 1rem 50% no-repeat; }
  .preview-block.upcoming-events > h4 {
    background: #04314c url("../images/clock-white.png") 1rem 50% no-repeat; }
  .preview-block > .list {
    margin: 10px 0; }
  .preview-block > .footer {
    text-align: center;
    font-size: 13.6px;
    font-size: 0.85rem;
    padding: 0 0 22px; }
    .preview-block > .footer a {
      color: #000;
      background: url("../images/plus-red.png") 0 50% no-repeat;
      margin-top: 15px;
      padding-left: 12px;
      text-transform: uppercase; }

#main-content__second .factsheet-full > .date {
  grid-area: date;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  color: #7f1416;
  font-weight: bold;
  font-size: 25.6px;
  font-size: 1.6rem; }
  #main-content__second .factsheet-full > .date > *:not(.print__wrapper) {
    margin-left: 10px; }
  #main-content__second .factsheet-full > .date a:not(.print__link) {
    font-size: 13.6px;
    font-size: 0.85rem;
    color: #7f1416;
    text-decoration: underline; }

#main-content__second .factsheet-full > .photo {
  grid-area: photo;
  background-size: cover;
  background-position: center;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: right;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }

#main-content__second .factsheet-full > .highlights {
  grid-area: highlights;
  border: 3px solid #7f1416;
  padding: 10px;
  border-radius: 4px; }
  #main-content__second .factsheet-full > .highlights h3 {
    background-color: #7f1416;
    border: none;
    color: white;
    margin: -11px -10px 16px;
    margin: -0.6875rem -0.625rem 1rem;
    padding: 8px 10px; }
    #main-content__second .factsheet-full > .highlights h3 path {
      fill: white; }

#main-content__second .factsheet-full > .details {
  grid-area: details; }
  #main-content__second .factsheet-full > .details h3 {
    margin: 24px 0 16px;
    margin: 1.5rem 0 1rem; }

#main-content__second .factsheet-full > .map {
  grid-area: map;
  line-height: 0; }
  #main-content__second .factsheet-full > .map img {
    width: 100%;
    height: auto; }

#main-content__second .factsheet-full > .aside {
  grid-area: aside;
  display: flex;
  flex-direction: column;
  background: #e8e8e8;
  padding: 10px;
  border-radius: 4px; }
  #main-content__second .factsheet-full > .aside > * {
    margin-bottom: 24px;
    margin-bottom: 1.5rem; }
  #main-content__second .factsheet-full > .aside h3 {
    margin: 0 -10px 16px;
    margin: 0 -0.625rem 1rem;
    padding: 0 10px 6.4px;
    padding: 0 0.625rem 0.4rem; }

@media (max-width: 699px) {
  #main-content__second .factsheet-full > .photo {
    padding-bottom: 50%;
    margin: 10px 0; }
  #main-content__second .factsheet-full > .map {
    margin: 10px 0; } }

@media (min-width: 700px) {
  #main-content__second .factsheet-full {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 6fr 5fr;
    grid-template-rows: max-content max-content max-content min-content;
    grid-template-areas: "date date" "photo map" "highlights aside" "details aside"; }
    #main-content__second .factsheet-full.factsheet-no-sidebar {
      grid-template-areas: "date date" "photo map" "highlights highlights" "details details"; } }

@media (min-width: 900px) {
  #main-content__second .factsheet-full {
    grid-template-columns: 6fr 1fr 4fr;
    grid-template-areas: "date date date" "photo photo map" "highlights aside aside" "details aside aside"; }
    #main-content__second .factsheet-full.factsheet-no-sidebar {
      grid-template-areas: "date date date" "photo photo map" "highlights highlights highlights" "details details details"; } }

@media (min-width: 980px) and (max-width: 1199px) {
  #main-content__second .factsheet-full {
    grid-template-columns: 6fr 5fr;
    grid-template-areas: "date date" "photo map" "highlights aside" "details aside"; }
    #main-content__second .factsheet-full.factsheet-no-sidebar {
      grid-template-areas: "date date" "photo map" "highlights highlights" "details details"; } }

#main-content__second .factsheet-chart-indicators h4 {
  color: #575757;
  margin-top: 20px; }
  #main-content__second .factsheet-chart-indicators h4:first-child {
    margin-top: 0; }

#main-content__second .factsheet-chart-indicators .label {
  font-weight: normal;
  text-align: center;
  color: #575757;
  font-size: 13.6px;
  font-size: 0.85rem; }
  #main-content__second .factsheet-chart-indicators .label ~ .label {
    margin-top: 10px; }

#main-content__second .factsheet-chart-indicators strong {
  display: block;
  text-align: center;
  white-space: nowrap;
  font-weight: normal;
  font-size: 32px;
  font-size: 2rem; }

#main-content__second .factsheet-chart-indicators div {
  text-align: center; }

#main-content__second .factsheet-chart-indicators .indicator-funding {
  display: flex;
  align-items: center;
  justify-content: space-around; }
  #main-content__second .factsheet-chart-indicators .indicator-funding > * {
    width: 50%; }

#main-content__second .factsheet-chart-indicators-people {
  text-align: center;
  margin: 30px 0; }
  #main-content__second .factsheet-chart-indicators-people > * {
    width: 50%;
    float: left; }

#main-content__second .cluster-chart-wrapper.fs_cat_chart {
  min-height: 200px; }

.factsheet-preview-list {
  display: flex;
  flex-wrap: wrap; }
  .recent-documents .factsheet-preview-list {
    display: block; }
    .recent-documents .factsheet-preview-list .document-preview {
      width: 100%;
      margin: 0 auto 10px; }
      .recent-documents .factsheet-preview-list .document-preview:last-child {
        margin-bottom: 0; }
      .recent-documents .factsheet-preview-list .document-preview:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden; }

.factsheet-preview {
  position: relative;
  color: #575757;
  width: 400px;
  margin: 0 20px 20px 0;
  padding: 10px;
  border: 1px solid #cdd6db;
  min-height: 218px; }
  .factsheet-preview .document-status {
    font-size: 8px;
    font-size: 0.5rem;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase; }
  .factsheet-preview a {
    text-decoration: none; }
  .factsheet-preview h4 {
    font-size: 16px;
    font-size: 1rem;
    color: #7f1416;
    text-transform: uppercase;
    font-weight: normal;
    margin: 0;
    line-height: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .factsheet-preview h4 div {
      display: inline; }
  .factsheet-preview .operation-icon {
    float: right;
    margin-left: 5px; }
  .factsheet-preview .thumbnail {
    float: left;
    width: 150px;
    height: 150px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1; }
    .factsheet-preview .thumbnail > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .factsheet-preview .thumbnail > img {
      transition: .2s all; }
    .factsheet-preview .thumbnail:hover > img:last-of-type {
      opacity: 0;
      filter: brightness(2);
      transform: scale(1.02); }
  .factsheet-preview .subtitle {
    font-size: 12px;
    font-size: 0.75rem; }
  .factsheet-preview .subtitle + .summary {
    height: 105px; }
  .factsheet-preview .summary {
    font-size: 12px;
    font-size: 0.75rem;
    position: relative;
    height: 125px;
    overflow: hidden; }
    .factsheet-preview .summary:after {
      content: "";
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 20px;
      background: linear-gradient(0, white, rgba(255, 255, 255, 0)); }
    .factsheet-preview .summary > :first-child {
      margin-top: 0; }
  .factsheet-preview .indicators {
    clear: both;
    height: 46px;
    line-height: 18px;
    padding: 10px 0 0 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    font-size: 12px;
    font-size: 0.75rem;
    text-align: center; }
    .factsheet-preview .indicators li {
      margin: 0 8px; }
    .factsheet-preview .indicators strong {
      display: block;
      white-space: nowrap;
      font-size: 16px;
      font-size: 1rem;
      color: #7f1416;
      font-weight: normal; }

.cluster-chart-wrapper {
  max-width: 100%; }

.field--name-field-content .field--name-field-section-description {
  margin-bottom: 1em; }

.paragraph--type--photo-gallery.paragraph--view-mode--full {
  margin-bottom: 2.5em; }

.field--name-field-photos {
  display: flex;
  flex-wrap: wrap; }
  .field--name-field-photos > div {
    margin: 0 0 1px 1px !important;
    line-height: 0; }
    .field--name-field-photos > div * {
      display: inline-block;
      margin: 0;
      padding: 0;
      min-height: 0;
      border: 0;
      line-height: 0; }
      .field--name-field-photos > div *:before, .field--name-field-photos > div *:after {
        display: none; }

.mfp-title a {
  color: #f3f3f3; }

form.webform-submission-form {
  margin-bottom: 3rem; }
  form.webform-submission-form .webform-progress {
    margin-top: 2rem;
    margin-bottom: 2rem; }
  form.webform-submission-form .form-item {
    margin-top: 1rem;
    margin-bottom: 2rem; }
  form.webform-submission-form label {
    display: block;
    margin-bottom: .3rem;
    font-weight: bold; }
  form.webform-submission-form .description {
    margin-top: .3rem;
    font-size: 11.2px;
    font-size: 0.7rem;
    color: #8c8c8c; }
  form.webform-submission-form input, form.webform-submission-form textarea, form.webform-submission-form select {
    padding: 5px 7px; }
  form.webform-submission-form legend {
    padding-left: 0;
    padding-right: 0;
    font-weight: bold; }
  form.webform-submission-form .fieldset-wrapper .form-item {
    /* e.g. checkbox items */
    margin-top: .5em;
    margin-bottom: 0; }
  form.webform-submission-form .fieldset-wrapper label {
    display: inline;
    font-weight: normal; }

.paragraphs-items .content {
  min-height: initial; }

.paragraphs-items .field-collection-container {
  border-bottom: none; }

.paragraphs-items .paragraphs-item-images .field-name-field-images .field-items {
  margin: -10px; }
  .paragraphs-items .paragraphs-item-images .field-name-field-images .field-items > .field-item {
    display: inline-block;
    padding: 10px; }
    .paragraphs-items .paragraphs-item-images .field-name-field-images .field-items > .field-item img {
      max-width: 100%;
      height: auto; }

.paragraphs-items .field-name-field-links .field-item {
  display: list-item;
  margin: 0 0 .5em 30px; }

.paragraphs-items .entity-paragraphs-item table {
  min-width: 70%; }
  .paragraphs-items .entity-paragraphs-item table thead th {
    background-color: #7f1416;
    border-color: #7f1416;
    color: white; }

.paragraphs-items .field-name-field-publications .field-name-field-publication-image {
  float: right;
  margin: 0 0 20px 20px; }

.paragraphs-items .field-name-field-short-publications > .field-items {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  text-align: center; }
  .paragraphs-items .field-name-field-short-publications > .field-items .field-collection-view {
    border-bottom: none; }

.paragraphs-items .field-name-field-team-members > .field-items {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
  .paragraphs-items .field-name-field-team-members > .field-items .field-collection-view {
    border-bottom: none; }
    .paragraphs-items .field-name-field-team-members > .field-items .field-collection-view .content {
      display: flex; }
  .paragraphs-items .field-name-field-team-members > .field-items .field-name-field-team-photo img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin-right: 10px; }

.paragraph--type--short-publications .field--name-field-short-publications {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  text-align: center; }

@media screen and (min-width: 769px) {
  .paragraph--type--label-and-link .field--name-field-label-and-link-items {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr; }
    .paragraph--type--label-and-link .field--name-field-label-and-link-items .paragraph--type--label-and-link-item {
      margin-bottom: 0px; } }

.paragraph--type--label-and-link .field--name-field-label-and-link-items .paragraph--type--label-and-link-item {
  margin-bottom: 20px;
  position: relative; }
  .paragraph--type--label-and-link .field--name-field-label-and-link-items .paragraph--type--label-and-link-item .field--name-field-image img {
    max-width: 100%;
    vertical-align: bottom; }
  .paragraph--type--label-and-link .field--name-field-label-and-link-items .paragraph--type--label-and-link-item .field--name-field-text {
    position: absolute;
    bottom: 0;
    z-index: 10;
    color: #fff;
    padding: 30px 10px 10px;
    display: block;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.68) 50%, black 74%, black 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.68) 50%, black 74%, black 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.68) 50%, black 74%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03000000', endColorstr='#000000',GradientType=0 ); }

.paragraph--type--image-and-text {
  display: inline-block;
  width: 100%; }

.paragraph--type--publications .paragraph--type--publications-item {
  display: flex;
  justify-content: space-between; }
  .paragraph--type--publications .paragraph--type--publications-item:not(:last-child) {
    border-bottom: 1px dotted #D3D7D9;
    padding-bottom: 2rem; }

.group-content-followers {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }
  @media (min-width: 1000px) {
    .group-content-followers {
      grid-template-columns: 1fr 1fr; } }
  .group-content-followers article {
    min-height: 100px;
    display: flex; }
    .group-content-followers article .field--name-user-picture {
      margin-right: 1rem; }
      .group-content-followers article .field--name-user-picture img {
        width: 100%;
        height: auto;
        border-radius: 50%; }
    .group-content-followers article .user-info {
      line-height: 1.125rem;
      font-size: 0.9rem; }
      .group-content-followers article .user-info .field--name-field-role-or-title {
        font-style: italic; }
      .group-content-followers article .user-info a {
        color: #7f1416; }

fieldset {
  margin: 10px 0 30px; }
  fieldset legend {
    padding: 0 5px; }

.accordion-item {
  border-radius: 0;
  border: none !important;
  background: none !important;
  border-top: 1px solid #ccc !important; }

.ui-accordion-content {
  border: none;
  padding-top: 0 !important;
  padding-right: 0 !important; }

.tabledrag-toggle-weight-wrapper {
  display: none; }

form .field-multiple-table td.field-multiple-drag {
  padding: 0; }

form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
  margin: 0;
  padding: 0; }

a.tabledrag-handle .handle {
  width: 100%;
  height: 97%;
  margin: -2px 0 0 0;
  padding: 10px 10px; }

form .field-multiple-table .form-item {
  max-width: 97%; }

#user-profile-form table {
  width: 100%; }

#user-profile-form #edit-picture .fieldset-wrapper {
  display: flex; }
  #user-profile-form #edit-picture .fieldset-wrapper > * + * {
    margin-left: 1em; }

.data-collection-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .data-collection-list li {
    margin-bottom: 1rem; }
  .data-collection-list a p:last-child {
    margin-bottom: 1.5rem; }
  .data-collection-list a {
    text-decoration: none;
    color: black; }
    .data-collection-list a:hover h4, .data-collection-list a:active h4 {
      text-decoration: underline; }

.form-item {
  margin-bottom: 1rem; }

label {
  display: block;
  font-weight: bold; }

.description {
  font-size: 0.85em; }

#dashboard-menu .group-follow-wrapper a.cant-follow {
  background: #fc0000;
  color: white; }
  #dashboard-menu .group-follow-wrapper a.cant-follow:hover, #dashboard-menu .group-follow-wrapper a.cant-follow.active {
    background: #ff3030; }

#dashboard-menu .group-follow-wrapper a.follow {
  background: #7f1416;
  color: white; }
  #dashboard-menu .group-follow-wrapper a.follow:hover, #dashboard-menu .group-follow-wrapper a.follow.active {
    background: #ab1b1e; }

#dashboard-menu .group-follow-wrapper a.un-follow {
  background: #04314c;
  color: white; }
  #dashboard-menu .group-follow-wrapper a.un-follow:hover, #dashboard-menu .group-follow-wrapper a.un-follow.active {
    background: #07507c; }

.anon-follow {
  padding: 10px;
  border: 3px solid #7f1416;
  border-radius: 4px;
  font-size: 13.6px;
  font-size: 0.85rem;
  margin-bottom: 1rem; }
  .anon-follow a {
    margin: 10px 0; }
    .anon-follow a.follow {
      width: 100%;
      font-weight: bold;
      padding: 8px 16px 8px;
      padding: 0.5rem 1rem 0.5rem;
      font-size: 14.4px;
      font-size: 0.9rem;
      border: 0;
      border-radius: 0;
      margin: 0;
      color: white;
      background: #7f1416; }
      .anon-follow a.follow:hover, .anon-follow a.follow.active {
        background: #ab1b1e; }
  .anon-follow form {
    margin-top: 20px; }
    .anon-follow form .form-item {
      margin: 0; }
    .anon-follow form label {
      font-weight: normal; }
    .anon-follow form input[type=email] {
      width: 100%;
      margin: 10px 0;
      padding: 5px; }
    .anon-follow form input[type=submit] {
      width: 100%;
      font-weight: bold;
      padding: 8px 16px 8px;
      padding: 0.5rem 1rem 0.5rem;
      font-size: 14.4px;
      font-size: 0.9rem;
      border: 0;
      border-radius: 0;
      margin: 0;
      color: white;
      background: #7f1416; }
      .anon-follow form input[type=submit]:hover, .anon-follow form input[type=submit].active {
        background: #ab1b1e; }

.comments-wrapper {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 2px solid #575757; }
  .comments-wrapper article.comment {
    border-top: 1px solid #cdd6db; }
    .comments-wrapper article.comment header {
      float: right;
      color: #575757;
      margin: 0 0 10px 10px;
      background: #cdd6db;
      padding: 5px; }
      .comments-wrapper article.comment header svg {
        margin-left: 5px; }
      .comments-wrapper article.comment header a {
        color: #575757;
        text-decoration: none; }
        .comments-wrapper article.comment header a:active, .comments-wrapper article.comment header a:hover {
          color: black;
          text-decoration: none; }
    .comments-wrapper article.comment:target {
      background-color: #ffffdd; }
  .comments-wrapper .links li {
    padding: 0; }
  .comments-wrapper .links a {
    text-decoration: none; }

span[class*="file--"] > svg.svg-inline--fa {
  position: relative;
  left: -5px; }

span[class*="file--"]:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f15b";
  opacity: 0; }

span[class*="file--"].file--x-office-spreadsheet:before {
  content: "\f1c3"; }

span[class*="file--"].file--x-office-document:before {
  content: "\f1c2"; }

span[class*="file--"].file--x-office-presentation:before {
  content: "\f1c4"; }

span[class*="file--"].file--text-x-script:before {
  content: "\f1c9"; }

span[class*="file--"].file--text-html:before {
  content: "\f1c9"; }

span[class*="file--"].file--text-plain:before {
  content: "\f15c"; }

span[class*="file--"].file--application-pdf:before {
  content: "\f1c1"; }

span[class*="file--"].file--audio:before {
  content: "\f1c7"; }

span[class*="file--"].file--video:before {
  content: "\f1c8"; }

span[class*="file--"].file--text:before {
  content: "\f15c"; }

span[class*="file--"].file--image:before {
  content: "\f1c5"; }

.messages__wrapper {
  padding: 0 0 0 8px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

[dir="rtl"] .messages__wrapper {
  padding: 0 8px 0 0; }

.messages:first-child {
  margin-top: 28px; }

.messages:last-child {
  margin-bottom: 13px; }

.messages {
  padding: 15px 20px 15px 35px;
  /* LTR */
  word-wrap: break-word;
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  /* LTR */
  border-radius: 2px;
  background: no-repeat 10px 17px;
  /* LTR */
  overflow-wrap: break-word; }

[dir="rtl"] .messages {
  padding-right: 35px;
  padding-left: 20px;
  text-align: right;
  border-width: 1px 0 1px 1px;
  background-position: right 10px top 17px; }

.messages + .messages {
  margin-top: 1.538em; }

.messages__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.messages__item + .messages__item {
  margin-top: 0.769em; }

/* See .color-success in Seven's colors.css */
.messages--status {
  color: #325e1c;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  /* LTR */
  background-color: #f3faef;
  background-image: url(../images/check.svg);
  box-shadow: -8px 0 0 #77b259;
  /* LTR */ }

[dir="rtl"] .messages--status {
  margin-left: 0;
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  box-shadow: 8px 0 0 #77b259; }

/* See .color-warning in Seven's colors.css */
.messages--warning {
  color: #734c00;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  /* LTR */
  background-color: #fdf8ed;
  background-image: url(../images/warning.svg);
  box-shadow: -8px 0 0 #e09600;
  /* LTR */ }

[dir="rtl"] .messages--warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  box-shadow: 8px 0 0 #e09600; }

/* See .color-error in Seven's colors.css */
.messages--error {
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  /* LTR */
  background-color: #fcf4f2;
  background-image: url(../images/error.svg);
  box-shadow: -8px 0 0 #e62600;
  /* LTR */ }

[dir="rtl"] .messages--error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  box-shadow: 8px 0 0 #e62600; }

.messages--error p.error {
  color: #a51b00; }

.group-preview-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }
  .group-preview-list .group-preview {
    position: relative;
    color: #575757;
    padding: 10px;
    border: 1px solid #cdd6db;
    min-width: 100%; }
    .group-preview-list .group-preview .teaser {
      font-size: 12px;
      font-size: 0.75rem;
      margin-bottom: 10px; }
    .group-preview-list .group-preview a {
      text-decoration: none; }
    .group-preview-list .group-preview h4 {
      font-size: 16px;
      font-size: 1rem;
      text-transform: uppercase;
      font-weight: normal;
      margin: 0 !important; }
      .group-preview-list .group-preview h4 a {
        color: #7f1416; }
    .group-preview-list .group-preview .result-type {
      color: #575757;
      display: block;
      margin-bottom: 10px;
      margin-top: 3px;
      font-size: 12px;
      font-size: 0.75rem; }
    .group-preview-list .group-preview .tags {
      display: grid; }
      .group-preview-list .group-preview .tags .tags-label {
        font-size: 12px;
        font-size: 0.75rem;
        color: #575757; }
      .group-preview-list .group-preview .tags .group-tags span {
        font-size: 12px;
        font-size: 0.75rem;
        color: #575757;
        border: 1px solid #575757;
        border-radius: 6px;
        padding: 0 4px;
        margin: 1px;
        height: 18px;
        white-space: nowrap;
        display: inline-block; }

.taxonomy-term-page.facets {
  display: flex;
  flex-direction: column; }
  .taxonomy-term-page.facets .field_associated_regions {
    order: -1; }

.document-reviews-wrapper {
  display: inline-block;
  width: 100%;
  margin-top: 1.5rem; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list {
    display: flex; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list .horizontal-tab-button {
      width: 50%;
      text-align: center;
      text-transform: uppercase;
      background-color: white;
      border: 1px solid rgba(100, 150, 240, 0.25);
      font-size: 14px;
      font-weight: 300; }
      .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list .horizontal-tab-button a {
        color: #6495ed;
        height: 50px;
        text-align: center;
        padding: 20px 0; }
      .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list .horizontal-tab-button a:hover {
        background-color: white; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list .selected {
      background: #6495ed; }
      .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list .selected a {
        color: #f0f8ff; }
      .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-list .selected a:hover {
        background: #6495ed; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .form-wrapper {
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .form-wrapper summary {
      padding: 10px 20px;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 300; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .form-wrapper p {
      background: white;
      padding: 15px 0 15px 20px;
      margin: 0;
      color: #2f333c;
      font-weight: 300;
      font-size: 14px;
      font-style: normal; }
      .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .form-wrapper p svg {
        width: 15px;
        margin-right: 5px; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores summary + details {
    border-top: 1px solid rgba(100, 150, 240, 0.25);
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores details  {
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores details[open] {
    padding-bottom: 0;
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores details[open] summary {
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores details[open] p {
      padding: 10px 0 10px 20px;
      text-transform: none; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-green {
    background: #f0fff0; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-green summary {
      color: #3cb371; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-green p.rank-green svg {
      fill: #3cb371; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-green p.rank-red svg {
      fill: #f08080; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-green p.rank-orange svg {
      fill: #ffa600; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-red {
    background: #fff0f5; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-red summary {
      color: #f08080; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-red p.rank-green svg {
      fill: #3cb371; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-red p.rank-red svg {
      fill: #f08080; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-red p.rank-orange svg {
      fill: #ffa600; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-orange {
    background: #fff5e5; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-orange summary {
      color: #ffa600; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-orange p.rank-green svg {
      fill: #3cb371; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-orange p.rank-red svg {
      fill: #f08080; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .rank-orange p.rank-orange svg {
      fill: #ffa600; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .unscored summary {
    color: #6495ed; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .unscored p.unscored {
    background: white; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-scores .unscored p.unscored svg {
      fill: #6495ed; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper {
    color: #6495ed;
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper summary {
      padding: 10px 20px;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 300; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper p {
      background: white;
      padding: 15px 0 15px 20px;
      margin: 0;
      color: #2f333c;
      font-weight: 300;
      text-transform: capitalize;
      font-size: 14px;
      font-style: normal; }
      .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper p svg {
        width: 15px;
        fill: #6495ed;
        margin-right: 5px; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .rank-green div, .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .rank-red div, .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .rank-orange div, .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .unscored div {
      padding: 15px 0 15px 20px;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 300; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .rank-green div {
      color: #3cb371;
      background: #f0fff0; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .rank-red div {
      color: #f08080;
      background: #fff0f5; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .rank-orange div {
      color: #ffa600;
      background: #fff5e5; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews .form-wrapper .unscored div {
      background: white; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews summary + div {
    border-top: 1px solid rgba(100, 150, 240, 0.25);
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews div  {
    border-bottom: 1px solid rgba(100, 150, 240, 0.25); }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews [open] {
    padding-bottom: 0;
    border-bottom: none; }
    .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .document-reviews [open] summary {
      padding-bottom: 20px; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .horizontal-tabs-pane {
    padding: 0; }
  .document-reviews-wrapper .horizontal-tabs .horizontal-tabs-panes .horizontal-tabs-pane:nth-child(3) {
    background-color: #f0f8ff; }

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block; }

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: black;
  color: white;
  text-align: left;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: normal;
  font-size: 0.85rem;
  /* Position the tooltip text */
  position: absolute;
  z-index: 400;
  bottom: 125%;
  left: 50%;
  margin-left: -125px;
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s; }

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent; }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1; }

.tooltip-question-mark {
  background-color: black;
  color: white;
  line-height: 15px;
  width: 15px;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  margin-left: 5px;
  font-size: 12px; }
