@charset "UTF-8";
/* --- Downloads --- */
/* DigiAccess: readable file type on enlarged text */
.ms-da-line-spacing--range-25_50 .page-element .downloads-wrapper .filetype,
.ms-da-line-spacing--range-50_75 .page-element .downloads-wrapper .filetype,
.ms-da-line-spacing--range-75_100 .page-element .downloads-wrapper .filetype,
.ms-da-font-size--range-25_50 .page-element .downloads-wrapper .filetype,
.ms-da-font-size--range-50_75 .page-element .downloads-wrapper .filetype,
.ms-da-font-size--range-75_100 .page-element .downloads-wrapper .filetype {
  color: #000 !important;
}

/* DigiAccess: fix margin on mobile */
@media (max-width: 768px) {
  .ms-da-font-size--range-25_50 .page-element .downloads-wrapper .singlefile,
.ms-da-font-size--range-50_75 .page-element .downloads-wrapper .singlefile,
.ms-da-font-size--range-75_100 .page-element .downloads-wrapper .singlefile {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
}
.downloads-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.downloads-wrapper .downloadContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.downloads-wrapper .downloadContainer .singlefile {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33.333333%;
  margin-bottom: 30px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .downloads-wrapper .downloadContainer .singlefile {
    width: 50%;
  }
}
@media (max-width: 550px) {
  .downloads-wrapper .downloadContainer .singlefile {
    width: 100%;
  }
}
.downloads-wrapper .downloadContainer .singlefile .fileicon {
  position: relative;
  width: 60px;
  flex-shrink: 0;
}
.downloads-wrapper .downloadContainer .singlefile .fileicon svg {
  position: relative;
  z-index: 1;
}
.downloads-wrapper .downloadContainer .singlefile .fileicon .fileinfo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
.downloads-wrapper .downloadContainer .singlefile .fileicon .fileinfo .filetype {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-font);
}
.downloads-wrapper .downloadContainer .singlefile .fileicon .fileinfo .filesize {
  font-size: 10px;
  margin-top: 5px;
  color: var(--primary-font);
}
.downloads-wrapper .downloadContainer .singlefile .filemeta {
  margin: 5px 45px 0 15px;
  /* Flex child: allow shrinking below the intrinsic width of a long,
     space-less filename so it wraps instead of overflowing the column. */
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.downloads-wrapper .downloadContainer .singlefile .filemeta .filetitle {
  font-family: "Merriweather", serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.downloads-wrapper .downloadContainer .singlefile .filemeta .filedescription .description,
.downloads-wrapper .downloadContainer .singlefile .filemeta .filedescription .caption {
  display: block;
}
.downloads-wrapper .password {
  display: flex;
  flex-direction: column;
  border-color: var(--primary-color);
}
.downloads-wrapper .password label {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-color: inherit;
  margin-bottom: 5px;
  position: relative;
  font-weight: bold;
}
.downloads-wrapper .password input {
  border: none;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: inherit;
  border-radius: 0;
  height: 2.3rem;
  width: 100%;
  font-size: 20px;
}
.downloads-wrapper .password button {
  margin: 15px 0 0 0;
  padding: 5px 15px 5px 15px;
  text-transform: uppercase;
  border: none;
  line-height: 1.5;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 150ms;
  display: flex;
  align-self: flex-end;
  background-color: var(--primary-color);
  color: var(--primary-font);
}
.downloads-wrapper .password .download-alert {
  margin: -30px 0 0 0;
  font-weight: bold;
  color: var(--primary-color);
}
.downloads-wrapper.preview .fileicon svg {
  display: block !important;
}

.hidden-password {
  display: none;
}

/* --- Template 2 --- */
.is-template2,
.is-template-2 {
  /* ≤991px the headline draws the t2 accent bar as a left border; without
     an explicit color it falls back to currentColor (black). */
  /* Legacy parity: the t2 headline component emits no margin-bottom class,
     the legacy element had 45px (%headline-t2). */
}
@media (max-width: 991px) {
  .is-template2 .downloads-wrapper h2,
.is-template-2 .downloads-wrapper h2 {
    border-color: var(--secondary-color);
  }
}
.is-template2 .downloads-wrapper > .comp-headline,
.is-template-2 .downloads-wrapper > .comp-headline {
  margin-bottom: 45px;
}

/* --- Template 4: Open Sans file titles --- */
.is-template4 .downloads-wrapper,
.is-template-4 .downloads-wrapper {
  /* Legacy parity: t4 used a plain h2 with 1.3rem instead of the 45px component margin. */
}
.is-template4 .downloads-wrapper > .comp-headline,
.is-template-4 .downloads-wrapper > .comp-headline {
  margin-bottom: 1.3rem;
}
.is-template4 .downloads-wrapper .downloadContainer .singlefile .filemeta .filetitle,
.is-template-4 .downloads-wrapper .downloadContainer .singlefile .filemeta .filetitle {
  font-family: "Open Sans", sans-serif;
}