﻿@charset "UTF-8";
:root {
  --secondary-light: #e3f3f0 !important;
  --secondary-hover: #66cdbc !important; }

/* ------------------------------------------------------------------------------------------------------ */
.t-neutral {
  background-color: var(--neutral) !important;
  fill: var(--neutral) !important; }

.t-primary {
  background-color: var(--primary) !important;
  fill: var(--primary) !important; }

.t-primary h1, .t-primary h2, .t-primary h3, .t-primary p, .t-primary a {
  color: white; }

.t-primary-light {
  background-color: var(--primary-light) !important;
  fill: var(--primary-light) !important;
  color: white; }

.t-primary-light h1, .t-primary-light h2, .t-primary-light h3, .t-primary-light p, .t-primary-light a {
  color: white; }

.t-secondary {
  background-color: var(--secondary) !important;
  fill: var(--secondary) !important; }

.t-secondary h1, .t-secondary h2, .t-secondary h3, .t-secondary p, .t-secondary a {
  color: white; }

.t-secondary-light {
  background-color: var(--secondary-light) !important;
  fill: var(--secondary-light) !important; }

.t-secondary-light h1, .t-secondary-light h2, .t-secondary-light h3, .t-secondary-light p, .t-secondary-light a {
  color: white; }

.navbar-mobile .navbar-mobile-container > nav {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG); }

.scrollbar-slim::-webkit-scrollbar {
  width: 11px; }

.scrollbar-slim {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG); }

.scrollbar-slim::-webkit-scrollbar-track {
  background: var(--scrollbarBG); }

.scrollbar-slim::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG);
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG); }

/* general top level*/
body {
  font-size: 18px; }

p {
  line-height: 1.5em; }

q {
  quotes: "�" "�" "�" "�"; }

h1, h2, h3 {
  color: var(--primary);
  font-family: var(--custom-font, "Akzidenz Grotesk Regular");
  font-weight: normal; }

h2, h3 {
  line-height: 1.2; }

h1, h2 {
  margin-bottom: 24px; }

h3, h4, h5, h6 {
  margin-bottom: 18px; }

figure figcaption {
  margin-bottom: 24px; }

figure .info p {
  margin-bottom: 0px; }

section {
  margin-bottom: 40px; }

header {
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
  /* don't think this is needed as the header section gradient is the one on page */ }

header section {
  display: flex;
  position: absolute;
  z-index: 2000;
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
  width: 100%; }

header > section > figure {
  margin: 24px 24px 24px 90px; }

@media (max-width: 768px) {
  header > section > figure {
    margin: 24px; } }

/* section adjustments */
section.sub-layout {
  margin-bottom: 0px; }

section.sub-layout > section.highlight-section + section.intro-banner {
  margin-top: -40px; }

section.sub-layout > section:last-of-type.intro-banner {
  margin-bottom: 0px; }

section.sub-layout > section:last-of-type.highlight-section {
  margin-bottom: 0px; }

/* all unordered lists */
ul {
  list-style: disc;
  margin: 0px 0px 24px 20px; }

ul li {
  padding: 0 0 10px 0; }

button {
  border: none;
  background: none;
  outline: none;
  padding: 0px;
  margin: 0px; }

/* accordian*/
.accordian-item {
  border-top: 1px solid #c8d1d5; }

.accordian-item:last-of-type {
  border-bottom: 1px solid #c8d1d5; }

.accordian-item > button {
  display: flex;
  cursor: pointer;
  width: 100%; }

.accordian-item > button h3 {
  font-family: var(--custom-font, "Akzidenz Grotesk Regular");
  width: 100%;
  padding: 12px 0px;
  margin: 0px;
  font-size: 32px;
  line-height: 32px;
  display: flex;
  text-align: left; }

.accordian-item > button .accordian-indicator {
  padding: 12px 0px; }

.accordian-item > button .accordian-indicator > span {
  position: relative;
  display: inline-block;
  padding: 0;
  border: 1px solid #782168;
  border-radius: 18px;
  line-height: 33px;
  width: 32px;
  height: 32px;
  font-size: 14px;
  background-image: url("/Static/Thomas Miller/images/arr-down-black-8.png");
  background-repeat: no-repeat;
  background-position: 50% 55%;
  border: 1px solid #c0c0c0 !important; }

.accordian-item > button.active .accordian-indicator > span {
  transform: rotateX(180deg); }

.accordian-item > button:hover .accordian-indicator > span {
  background-image: url("/Static/Thomas Miller/images/arr-down-white-8.png");
  background-color: var(--primary-hover);
  border-color: var(--primary-hover) !important; }

.accordian-item .accordian-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.accordian-item .accordian-content.active {
  max-height: 10000px;
  opacity: 1; }

/* audio bar */
.audio-bar {
  margin-bottom: 0px;
  min-height: 100px; }

.audio-bar iframe {
  width: 100%; }

/* document styles */
.document-sub-layout > .highlight-section {
  position: sticky;
  top: 0px;
  z-index: 100; }

.document-sub-layout .accordian-item {
  border-top: none;
  border-bottom: 1px solid #c8d1d5; }

.document-header {
  display: flex; }

.document-header * {
  transition: all 0.3s; }

.document-filter {
  margin-bottom: 24px; }

.document-filter form input {
  margin-bottom: 0px !important; }

.document-header figure {
  height: 240px;
  margin: 0px 40px 0px 0px; }

.document-header figure img {
  height: 100%; }

.document-header h1 {
  font-size: 72px;
  margin-bottom: 0px; }

.document-header h2 {
  font-size: 32px; }

.document-header p {
  font-size: 14px;
  transition: all 0.3s; }

.document-chapter {
  margin-left: 40px;
  border-left: 1px solid #c8d1d5;
  padding-left: 24px;
  flex-grow: 1; }

.document-chapter h3 {
  font-size: 16px;
  color: black;
  font-family: "Akzidenz Grotesk Light"; }

.document-chapter .chapter-key {
  font-size: 12px;
  margin-bottom: 4px;
  display: block; }

/* document tools */
.document-tools {
  margin-left: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  height: 50px; }
  .document-tools button {
    cursor: pointer; }

.document-tools > div svg {
  height: 20px;
  /*width: 100%;*/
  fill: var(--primary); }

.document-tools > div > a {
  display: inline-block;
  text-align: center; }

.document-tools > div > button > span, .document-tools > div > a > span {
  display: block;
  font-size: 16px;
  color: black;
  font-family: "Akzidenz Grotesk Light"; }

.document-tools > div {
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px; }

.document-tools > div:hover svg {
  fill: var(--secondary); }

.document-tools > div:hover span {
  color: var(--secondary); }

.document-tools > div:not(:first-child) {
  border-left: 1px solid #c8d1d5; }

.chapter-view .document-header figure {
  height: 64px;
  margin: 0px 40px 0px 0px;
  flex-shrink: 0; }

/* document chapter selected */
.chapter-view .document-header figure {
  height: 64px;
  margin: 0px 40px 0px 0px; }

.chapter-view .document-header h1 {
  font-size: 24px;
  margin-bottom: 0px; }

.chapter-view .document-header h2 {
  font-size: 14px;
  margin-bottom: 0px; }

.chapter-view .highlight-section {
  padding-top: 20px;
  padding-bottom: 20px; }

.chapter-item {
  border-top: 1px solid #c8d1d5; }

.chapter-item > button {
  cursor: pointer;
  width: 100%; }

.chapter-item > button h3 {
  cursor: pointer;
  font-family: var(--custom-font, "Akzidenz Grotesk Regular");
  width: 100%;
  padding: 10px 0px;
  margin: 0px;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  text-align: left;
  color: var(--neutral); }

.chapter-item > button h3 span {
  padding: 4px 8px; }

.chapter-link::after {
  content: "";
  color: var(--secondary);
  /* chevron indicator */
  border-style: solid;
  border-width: .14em .14em 0 0;
  display: inline-block;
  height: 0.4em;
  width: 0.4em;
  position: relative;
  top: 0px;
  left: 2px;
  vertical-align: middle;
  transform: rotate(45deg);
  padding: 0;
  margin: 0;
  cursor: pointer; }

/*
.chapter-item > button h3 span.chapter-link {
    position: relative;
    display: inline-block;
    padding: 0;
    width: 32px;
    font-size: 14px;
    background-image: url('/Static/Thomas Miller/images/arr-down-black-8.png');
    background-repeat: no-repeat;
    background-position: 50% 55%;
    transform: rotate(270deg);
}
*/
.chapter-item > button h3 span.chapter-title {
  flex: 1; }

.chapter-header h2 {
  font-size: 48px;
  margin-bottom: 8px; }

.chapter-key {
  background-color: var(--primary);
  color: white;
  font-size: 16px;
  width: 72px;
  padding: 4px 8px; }

.chapter-header .chapter-key, .result-item .chapter-key {
  display: block;
  margin-bottom: 4px; }

.chapter-header button {
  border-top: 1px solid #c8d1d5;
  border-radius: 0px;
  width: 100%;
  display: flex;
  margin-bottom: 8px; }

.chapter-header button:hover {
  color: var(--secondary); }

.chapter-header button span {
  font-size: 16px;
  line-height: 36px; }

.chapter-header button svg {
  height: 20px;
  fill: var(--secondary); }

.chapter-header button > div {
  display: none;
  padding-top: 4px; }

.chapter-header button.active div:last-child {
  display: block; }

.chapter-header button:not(.active) div:first-child {
  display: block; }

.chapter-navigation {
  display: flex;
  margin-top: 40px; }

.chapter-navigation a.button-block {
  display: block;
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 10px 8px;
  text-decoration: none;
  background-color: var(--secondary);
  margin-right: 24px;
  width: 140px;
  /* reconsider for other languages */ }

.section-list .section-item, .section-list .section-item h3 {
  font-family: "Akzidenz Grotesk Light"; }

.section-list span.highlight, .result-list span.highlight {
  background-color: var(--secondary);
  color: white;
  padding: 0px 2px; }

.section-list .section-anchor {
  display: block;
  margin-top: -104px;
  height: 104px;
  visibility: hidden;
  pointer-events: none; }

.section-list .mention-indicator {
  padding: 16px 0px;
  height: 10px;
  margin-right: 20px; }

.section-list .mention-indicator svg {
  height: 24px;
  fill: var(--neutral-80);
  transform: rotateY(180deg); }

.section-list .accordian-content-footer {
  padding-top: 12px;
  margin-bottom: 40px;
  display: flex;
  justify-content: end; }

.section-list .accordian-content-footer a {
  font-size: 16px;
  color: var(--secondary); }

.section-list .accordian-content-footer a:not(:first-child) {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid #c8d1d5; }

.result-list .result-item, .result-list .result-item h3 {
  font-family: "Akzidenz Grotesk Light"; }

.result-list h3 {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 4px; }

.result-list .result-item > p {
  margin-bottom: 4px;
  font-weight: bold;
  color: var(--secondary); }

.result-list .result-item a {
  color: inherit; }

.result-list .result-item a:hover {
  color: var(--secondary); }

.result-list .result-item div p {
  font-family: "Akzidenz Grotesk Light"; }

.result-list .result-item div p::before {
  content: open-quote; }

.result-list .result-item div p::after {
  content: close-quote; }

.result-list .result-item .chapter-link {
  font-size: 24px; }

/* links*/
a {
  color: var(--primary); }

a:active, a:focus, a:hover {
  color: var(--primary-hover); }

a h1:hover, a h2:hover, a h3:hover {
  color: var(--primary-hover); }

a.button {
  font-size: 12px;
  padding: 6px 28px;
  margin: 0px 0px 12px 0px;
  border: 1px solid;
  border-radius: 20px;
  display: inline-block; }

a.button, a.button.is-active:hover {
  color: #404040;
  border-color: #c0c0c0;
  background-color: transparent; }

a.button:active, a.button:focus, a.button:hover, a.button.is-active {
  color: #ffffff;
  background-color: var(--primary-hover);
  border-color: var(--primary-hover); }

.t-primary a.button, .t-secondary a.button, .t-neutral a.button {
  color: #fff;
  border-color: #fff; }

a.button-block-white {
  font-weight: bold;
  font-size: 16px;
  margin: 0px 0px 12px 0px;
  border-radius: 4px;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  width: 100%;
  background-color: var(--primary);
  color: #fff; }

a.button-block-white:active, a.button-block-white:focus, a.button-block-white:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: #fff !important; }

a.button-block-white img {
  height: 32px;
  padding-right: 16px; }

/* navbar search */
.navbar-top .navbar-search {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  margin-left: 16px; }

.navbar-top .navbar-search input {
  transition: all .3s ease-in-out;
  cursor: pointer;
  width: 86px;
  padding: 0px 16px;
  height: 32px;
  border: none;
  background: #000;
  color: white;
  /* border: none; */
  margin-top: 6px; }

.navbar-top .navbar-search input::placeholder {
  color: #fff; }

.navbar-top .navbar-search button {
  outline: none;
  border: none;
  padding: 0px;
  transition: all .3s ease-in-out;
  cursor: pointer; }

.c-svg {
  width: 24px;
  height: 24px;
  fill: #545454;
  transition: all .3s ease-in-out; }

.navbar-top .navbar-search input:focus, .navbar-top .navbar-search input:valid {
  cursor: text;
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 250px; }

.navbar-top .navbar-search input:focus::placeholder {
  color: #b7c6d3; }

.navbar-top .navbar-search input:invalid {
  border: none; }

@media (max-width: 480px) {
  .navbar-top .navbar-search {
    display: none; } }

/* navigation mobile */
.navbar-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: 1001;
  width: 0%;
  height: 100%;
  background: transparent; }

.navbar-mobile.is-active {
  background: rgba(0, 0, 0, 0.2);
  transition: all .3s ease-in-out;
  width: 100%;
  height: 100%; }

.navbar-mobile.is-active .navbar-mobile-container {
  right: 0;
  background-color: #313c46; }

.navbar-mobile .navbar-mobile-container > nav {
  margin: 148px 24px 24px 24px;
  height: calc(100% - 172px);
  overflow: auto; }

.navbar-mobile .navbar-mobile-container > nav nav {
  margin-left: 24px; }

.navbar-mobile .navbar-mobile-container > nav a {
  color: #ffffff;
  font-size: 1.2em; }

.navbar-mobile .navbar-mobile-container > nav nav a {
  color: #989da2;
  font-size: 0.9em; }

.navbar-mobile .navbar-mobile-container {
  box-shadow: 0 4px 4px var(--secondary);
  height: 100%;
  position: fixed;
  min-width: 288px;
  max-width: 320px;
  right: -360px;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  top: 0; }

.navbar-mobile .navbar-mobile-container a {
  float: none;
  color: #989da2;
  padding: 0px 0px 16px 0px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 0.9em;
  margin-right: 24px; }

.burger-button {
  width: 32px;
  height: 32px;
  position: relative;
  margin-top: 8px;
  padding: 0px;
  cursor: pointer; }

.burger-button .b1 {
  top: 8px; }

.burger-button .b2.x1, .burger-button .x2 {
  top: 16px; }

.burger-button .b2.x1, .burger-button .x2 {
  top: 16px; }

.burger-button .b3 {
  top: 24px; }

.burger-button.is-active .b1 {
  width: 0;
  left: 50%;
  top: 50%; }

.burger-button.is-active .x1 {
  transform: rotate(45deg); }

.burger-button.is-active .x2 {
  transform: rotate(-45deg); }

.burger-button.is-active .b3 {
  width: 0;
  left: 50%;
  top: 50%; }

.burger-button:hover span {
  background-color: #b7c6d3; }

.burger-button span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  margin-top: -2px; }

/* navigation*/
.navbar-top, .navbar-main {
  width: 100%;
  display: flex;
  justify-content: flex-end; }

.navbar-top a, .navbar-main a {
  float: left;
  color: white;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none; }

.navbar-top {
  height: 42px;
  background-color: #000;
  z-index: 1000; }

.navbar-top {
  position: relative;
  z-index: 4000;
  padding-right: 24px; }

.navbar-top > a {
  margin-left: 16px; }

/* Emergency link */
.navbar-top a.favourite {
  /* background-color: var(--primary); */
  background-color: #c50000; }

.navbar-top a.favourite:hover {
  /* background-color: var(--primary-hover);*/
  background-color: #ce2626;
  border-bottom: none; }

.navbar-top a, .navbar-top button {
  flex-shrink: 0;
  font-size: 0.9em; }

.navbar-main {
  margin: 24px; }

.navbar-main a, .navbar-main button {
  font-size: 1.5em; }

.navbar-main a:hover {
  color: #b7c6d3 !important; }

.navbar-main:not(.is-active) .dropdown, .navbar-main:not(.is-active) a:not(.burger-button) {
  display: none; }

@media (max-width: 1024px) {
  .navbar-main.is-active .dropdown, .navbar-main.is-active a:not(.burger-button) {
    display: none; } }

/* top navbar dropdown */
.navbar-top a:hover, .navbar-top .dropdown:hover button {
  color: white !important;
  border-bottom: 3px solid var(--secondary-hover); }

.navbar-top .dropdown {
  float: left;
  padding-right: 16px;
  position: relative; }

.navbar-top .dropdown button {
  border: none;
  outline: none;
  color: white;
  padding: 12px 24px 7px 24px;
  /* TODO: find alternative to 7px padding change */
  font-family: inherit;
  margin: 0;
  border-radius: 0px;
  background-image: url("/Static/Thomas Miller/images/arr-down-green-8.png");
  background-position: 100%;
  background-repeat: no-repeat; }

.navbar-top .dropdown-content {
  display: none;
  position: absolute;
  background-color: #000;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 4000;
  width: calc(100% - 16px); }

.navbar-top .dropdown-content a {
  float: none;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 3px solid #000; }

.navbar-top .dropdown-content a:hover {
  color: white !important;
  background-color: var(--secondary-hover); }

.navbar-top .dropdown:hover .dropdown-content {
  display: block; }

/* main navbar dropdown*/
.navbar-main .dropdown {
  float: left;
  padding-right: 16px;
  position: relative; }

.navbar-main .dropdown-content {
  display: none;
  position: absolute;
  background-color: #313c46;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 720px;
  /*min-height: 240px;*/
  top: 46px; }

.navbar-main div.dropdown:nth-last-of-type(1) .dropdown-content {
  left: -480px; }

.navbar-main div.dropdown:nth-last-of-type(2) .dropdown-content {
  left: -260px; }

.navbar-main .dropdown-content .grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: auto;
  -ms-grid-columns: 45% 55%;
  -ms-grid-rows: auto;
  margin: 24px; }

.navbar-main .dropdown-content figure {
  width: 240px;
  font-size: 0.8em; }

.navbar-main .dropdown-content a {
  float: none;
  color: #989da2;
  padding: 0px 0px 16px 0px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-size: 16px;
  margin-right: 24px; }

.navbar-main .dropdown-content .sub-nav {
  border-right: 1px solid #5a636b;
  margin-right: 24px; }

.navbar-main .dropdown-content .sub-nav-detail {
  position: relative;
  grid-column: 2;
  -ms-grid-column: 2;
  grid-row: 1;
  -ms-grid-row: 1;
  opacity: 1; }

.navbar-main .dropdown-content .sub-nav-detail ~ .sub-nav-detail {
  opacity: 0;
  background-color: #313c46; }

.navbar-main .dropdown-content .sub-nav-detail div {
  width: 100%;
  height: 100%;
  background-color: #313c46; }

.navbar-main .dropdown:hover {
  color: #b7c6d3 !important; }

.navbar-main .dropdown-content a:hover {
  color: #fff; }

.navbar-main .dropdown:hover a {
  color: #b7c6d3 !important;
  background-color: #313c46; }

.navbar-main .dropdown:hover .dropdown-content {
  display: block; }

.hero-row-data {
  margin: 60px 0px 0px 0px; }

.hero-row-data .opac-1 {
  height: 160px;
  padding: 24px; }

.hero-row-data .opac-1:first-of-type {
  padding: 24px 24px 24px 0px; }

/* Removes chevron from a text on the homepage stats bar - display: inline-block; */
.hero-row-data .chev-r span:after {
  color: #b06c96;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: none;
  height: 10px;
  position: relative;
  top: 8px;
  vertical-align: top;
  width: 10px;
  transform: rotate(45deg);
  padding: 0;
  margin: 0;
  left: 2px;
  cursor: pointer; }

@media all and (max-width: 1279px) {
  .hero-row-data .opac-1:first-of-type {
    padding-left: 24px; } }

/* media container */
figure .media-container {
  position: relative;
  min-height: 240px;
  /* quick fix due to no vimeo preview */ }

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

/* office time*/
.office-time {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #696e6e;
  /*change to colour*/
  padding-top: 8px;
  margin-top: 16px; }

.office-time a {
  text-transform: capitalize;
  display: block;
  color: #fff;
  font-size: 1.0em;
  font-weight: 400;
  line-height: 1.5em;
  width: auto; }

.office-time a span {
  display: block;
  font-size: 0.9em; }

.office-time span::after {
  color: #b06c96;
  border-style: solid;
  border-width: .2em .2em 0 0;
  content: "";
  display: inline-block;
  left: 1.45em;
  position: relative;
  transform: rotate(-45deg);
  vertical-align: top;
  transform: rotate(45deg);
  padding: 0;
  margin: 0;
  left: 2px;
  cursor: pointer;
  top: .5em;
  left: 4px;
  width: 0.5em;
  height: 0.5em; }

@media all and (max-width: 550px) {
  .office-time {
    flex-direction: column;
    padding-top: 8px; }
  .office-time a {
    padding-bottom: 4px; }
  .office-time a span {
    float: right;
    width: 65%; } }

/* office */
.office-info {
  display: flex; }

.office-detail {
  width: 25%;
  margin-right: 24px; }

.office-map {
  width: calc(75% - 24px); }

@media (max-width: 1024px) {
  .office-detail {
    width: 40%;
    margin-right: 24px; }
  .office-map {
    width: calc(60% - 24px); } }

@media (max-width: 768px) {
  .office-info {
    display: block; }
  .office-detail {
    width: auto; }
  .office-map {
    width: auto; } }

/* World map*/
.world-map-full {
  margin-bottom: 0px; }

.world-map-full header {
  /* background: #40c1ac; */
  background: var(--primary) !important; }

.world-map-full header img {
  float: left;
  margin-right: 24px; }

.world-map-full header h3 {
  color: #fff; }

.world-map-full .cont-info-box {
  opacity: 0;
  z-index: 100 !important; }

.world-map-full .cont-info-box:hover {
  opacity: 1;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

.world-map-full .o-wrapper::after {
  background-image: url("/Static/Thomas Miller/images/ocean-full-1600.png"); }

.world-map-full .map-inner-wrap .cont-info-box {
  box-shadow: 2px 2px 8px 0 rgba(32, 53, 69, 0.1); }

.world-map-full .map-inner-wrap .cont-info-box header {
  padding: 15px 24px 15px 24px;
  background-color: var(--primary) !important; }

.world-map-full .map-inner-wrap .cont-info-box .cont-info {
  padding: 24px 0 24px 0px;
  overflow-y: auto;
  height: 90%; }

.world-map-full .map-inner-wrap .cont-info-box .cont-info p {
  line-height: 1.2em;
  margin: 0; }

.world-map-full .map-inner-wrap .cont-info-box .cont-info p a {
  display: block;
  padding: 10px 24px 10px 24px; }

.world-map-full .map-inner-wrap .cont-info-box .cont-info p a:hover {
  color: var(--primary-hover);
  background-color: #f0f6fa; }

@media all and (max-width: 64em) {
  /* reduces spaces, fonts */
  .world-map-full header img {
    display: none; }
  .world-map-full .map-inner-wrap .cont-info-box header h3 {
    font-size: 26px; }
  .world-map-full .map-inner-wrap .cont-info-box .cont-info {
    padding: 24px 20px 24px 20px; }
  /* stacks contact tiles into a single column */
  .world-map-full .o-wrapper {
    background-color: transparent; }
  .world-map-full .map-inner-wrap .map-bg-wrapper {
    display: none; }
  .world-map-full section {
    margin-bottom: 20px; }
  .world-map-full .map-inner-wrap h1 {
    margin: 0 0 10px 0; }
  .world-map-full .map-inner-wrap .cont-info-box header {
    padding: 15px 20px 15px 20px; }
  .world-map-full .map-inner-wrap .cont-info-box {
    position: static;
    opacity: 1;
    z-index: 0;
    width: 100%; } }

/* highlight section*/
.highlight-section {
  margin-top: -40px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f4f4f4;
  margin-bottom: 40px;
  transition: height 0.3s; }

.highlight-section > section:last-of-type {
  margin-bottom: 0px; }

/* miscellaneous*/
.s-editorial h1 {
  line-height: 60px;
  font-weight: 400;
  font-size: 60px; }

.page-summary.has-overflow::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 75%); }

.filters-border-bottom .c-button--tag:hover, .filters-border-bottom .c-button--tag.is-active {
  background-color: #f2933f; }

.filters-border-bottom .c-button--tag.is-active:hover {
  background-color: #000000; }

.filters-border-bottom .c-button--tag.is-active:hover::after {
  background-color: #000000;
  background-image: url("/Static/Thomas Miller/images/svgs/icon-cross-white.svg");
  transform: rotate(45deg); }

.filters-border-bottom .c-button--tag:hover::after, .filters-border-bottom .c-button--tag.is-active::after {
  background-color: transparent;
  background-image: url("/Static/Thomas Miller/images/svgs/icon-check-white.svg");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain; }

option {
  font-family: var(--custom-font, "Akzidenz Grotesk Regular", sans-serif);
  /* third option due to issue with Firefox */ }

select.datepicker {
  background-image: url("/Static/Thomas Miller/images/icon-cal-green.png") !important;
  background-position-y: 16px !important; }

a.logo img {
  max-width: 158px;
  max-height: 48px; }

.s-editorial ul {
  list-style: disc;
  /* quick fix for whack a mole style setting on all html */
  margin: 0px 0px 24px 20px; }

.s-editorial ul.docs {
  margin: 0 0 10px; }

@media (min-width: 1300px) {
  .carousel .box-carousel {
    min-height: 540px; } }

.carousel .box-carousel {
  opacity: 0.9; }

@media (min-width: 1300px) {
  .banner .box-banner {
    min-height: 540px; } }

.office-sub-layout h3 {
  margin-bottom: 24px; }

.svg-icon {
  background-color: transparent !important;
  float: right; }

.svg-icon svg {
  height: 40px; }

.related-header h2 {
  line-height: 36px;
  font-weight: 400;
  font-size: 36px; }

.anchor-points {
  margin-top: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  display: flex; }

.anchor-points .anchor-title {
  width: 100px;
  font-weight: bold; }

.anchor-points .anchor-list {
  margin-left: 0px; }

.anchor-points li {
  margin-right: 20px; }

.anchor-points li a {
  color: #746f6f; }

.anchor-points li a:hover {
  color: #746f6f !important;
  border-bottom: 3px solid var(--secondary-hover); }

/* general flex style grid*/
.grid-wrapper .grid {
  /* Forces equal cell heights */
  display: flex;
  flex-wrap: wrap;
  margin: -22px; }

.grid-wrapper .grid-cell {
  /* Sets default column count */
  width: calc(100% / 4);
  /* calc() method */ }

.grid-wrapper .grid {
  /* Creates an equal outer gap */
  padding: 24px 0 0 24px; }

.grid-wrapper .grid-cell {
  /* Creates gaps */
  border: 0 solid transparent;
  border-width: 0 24px 24px 0; }

.grid-wrapper .grid {
  /* Pulls grid cells hard against edges */
  margin: -24px; }

.grid-wrapper {
  /* Prevents odd margin behavior */
  overflow: hidden;
  clear: both; }

.grid-wrapper .grid-cell {
  /* Prevents background bleed */
  background-clip: padding-box; }

/* related (shared)*/
.related-item-detail h3 {
  font-weight: bold !important;
  font-family: var(--custom-font, "Akzidenz Grotesk Regular"); }

.related-item-detail h3::after {
  content: "";
  color: var(--secondary);
  /* chevron indicator */
  border-style: solid;
  border-width: .14em .14em 0 0;
  display: inline-block;
  height: 0.4em;
  width: 0.4em;
  position: relative;
  top: 0px;
  left: 2px;
  vertical-align: middle;
  transform: rotate(45deg);
  padding: 0;
  margin: 0;
  cursor: pointer; }

.related-item img:hover {
  filter: contrast(108%) brightness(104%); }

/* related carousel */
.related-carousel-section {
  position: relative;
  height: 540px; }

.related-carousel-section .intro-banner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: opacity 2s ease-in-out;
  -moz-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out; }

.related-carousel-section .intro-banner.is-active {
  opacity: 1;
  z-index: 100;
  -webkit-transition: opacity 2s ease-in-out;
  -moz-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out; }

.related-carousel-section .pips {
  bottom: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 101; }

.related-carousel-section .pips nav {
  width: 50%; }

.related-carousel-section .pips a, .related-carousel-section .pips a.is-active:hover {
  font-size: 40px;
  padding: 8px;
  color: #888; }

.related-carousel-section .pips a:hover, .related-carousel-section .pips a.is-active {
  color: var(--primary-hover); }

/* related publication*/
.related-publication-section .related-item {
  margin: 0px 32px 0px 32px; }

.related-publication-section h3 {
  font-size: 20px;
  padding: 0;
  margin: 0 0 2px; }

.related-publication-section .related-item-detail {
  position: relative;
  padding: 28px 0px 24px 0px; }

.related-publication-section .related-item-preview {
  border: 1px solid #f0f0f0; }

.related-publication-section .related-item-detail .date {
  font-size: 14px;
  margin: 0 0 18px; }

@media (max-width: 1024px) {
  .related-publication-section .grid-wrapper .grid-cell {
    width: 50% !important; } }

@media (max-width: 768px) {
  .related-publication-section .grid-wrapper .grid-cell {
    width: 100% !important; } }

/* related favicon*/
.related-favicon-section .related-item {
  margin-bottom: 48px;
  margin-right: 24px;
  width: calc(50% - 24px);
  display: flex; }

.related-favicon-section h3 {
  font-size: 24px;
  line-height: 24px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  font-weight: 400;
  margin-bottom: 5px; }

.related-favicon-section .related-item-preview {
  width: 35%; }

.related-favicon-section .related-item-detail img {
  margin-bottom: 20px; }

.related-favicon-section .related-item-detail {
  width: 65%;
  padding: 0px 28px 28px 28px; }

.related-favicon-section .related-item-detail p {
  line-height: 1.4em !important;
  margin-bottom: 18px !important; }

@media (max-width: 1024px) {
  .related-favicon-section .related-item {
    width: calc(50% - 12px) !important;
    margin-right: 12px !important; } }

@media (max-width: 768px) {
  .related-favicon-section .related-item {
    width: 100% !important;
    margin-right: 0px !important; } }

/* related general*/
.related-general-section .related-item {
  border-right: 1px solid #f0f0f0;
  height: 100%; }

.related-general-section h3 {
  font-size: 20px;
  padding: 0;
  margin: 0 0 10px 0;
  line-height: 1.2 !important; }

.related-general-section .related-item-detail {
  position: relative;
  padding: 28px; }

.related-general-section .related-item-detail p {
  font-size: 16px; }

.related-general-section .related-item-detail .date {
  font-size: 14px;
  margin: 0 0 18px; }

.related-general-section .related-item-detail .triangle {
  position: absolute;
  top: -9px;
  left: 24px;
  border-color: transparent transparent #fff;
  border-style: solid;
  border-width: 0 9px 9px;
  border-image: initial;
  z-index: 100; }

.related-general-section .related-item-summary {
  position: relative;
  max-height: 12em;
  overflow: hidden; }

.related-general-section .related-item-summary::after {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 50%);
  bottom: 0;
  right: 0;
  content: ' ';
  position: absolute;
  width: 25%;
  height: 20px;
  background-color: transparent;
  pointer-events: none; }

.related-general-section .grid-wrapper .grid-cell {
  border-width: 0 0px 24px 0; }

@media (max-width: 1024px) {
  .related-general-section .grid-wrapper .grid-cell {
    width: 50% !important; } }

@media (max-width: 768px) {
  .related-general-section .grid-wrapper .grid-cell {
    width: 100% !important; } }

/* related simple*/
.related-simple-section .related-item {
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
  background: #fff;
  height: calc(100% - 4px);
  /* to allow for drop shadow */
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  margin-right: 1px;
  margin-left: 1px; }

.related-simple-section .svg-icon svg {
  height: 56px;
  margin: 0 10px 10px 0; }

.related-simple-section h3 {
  font-size: 24px;
  line-height: 28px;
  color: white;
  padding: 24px;
  min-height: 106px;
  font-family: var(--custom-font, "Akzidenz Grotesk Regular");
  font-weight: 400;
  margin-bottom: 0; }

.related-simple-section h3:hover {
  color: var(--secondary-light); }

.related-simple-section .related-item-detail {
  padding: 20px 24px 0px 24px;
  font-size: 16px; }

.related-simple-section a.tile-link {
  font-size: 16px;
  display: block;
  position: relative;
  width: 100%;
  padding: 10px 28px 28px 28px;
  margin-top: auto; }

/* adds chevron*/
.related-simple-section a.tile-link:after {
  content: "";
  color: var(--secondary);
  border-style: solid;
  border-width: .14em .14em 0 0;
  display: inline-block;
  height: 0.4em;
  width: 0.4em;
  position: absolute;
  top: 18px;
  right: 28px;
  vertical-align: middle;
  transform: rotate(45deg);
  padding: 0;
  margin: 0;
  cursor: pointer; }

@media (max-width: 1024px) {
  .related-simple-section .grid-wrapper .grid-cell {
    width: 50% !important; }
  .related-simple-section h3 {
    min-height: 90px; }
  .related-simple-section .o-wrapper {
    padding-left: 0px;
    padding-right: 0px; } }

@media (max-width: 768px) {
  .related-simple-section .grid-wrapper .grid-cell {
    width: 100% !important; } }

/* People and contacts */
.contact-list .contact-item {
  width: 50%; }

.contact-simple-list .contact-item {
  width: 33.33%;
  margin-bottom: 24px; }

.contact-list .contact-detail h3, .contact-simple-list .contact-detail h3 {
  margin-bottom: 0px; }

.contact-detail p:first-of-type {
  margin: 0 0 24px; }

.contact-detail p {
  font-size: 16px;
  margin: 0px; }

.contact-info {
  display: flex; }

.contact-list .contact-info figure {
  margin-right: 24px;
  flex-shrink: 0; }

/* authors */
.authors {
  margin-top: 0px; }

.author-detail {
  display: flex; }

.author-detail figure {
  flex-shrink: 0;
  width: 70px; }

.author-detail figure img {
  width: 50px;
  border-radius: 30px;
  overflow: hidden; }

.author-detail h4 {
  margin-bottom: 0px; }

.author-detail p {
  font-size: 14px; }

.authors p span {
  width: 70px;
  display: inline-block;
  opacity: 0; }

/* overwrite buttons */
.contact-office-list a.button {
  font-size: 14px;
  padding: 10px 28px; }

/* breaks two column into a single column*/
@media all and (max-width: 1024px) {
  .contact-list .contact-item {
    width: 100%; } }

/* reduces image to allow more text in and adjust spacing*/
@media all and (max-width: 550px) {
  .contact-list figure {
    width: 120px; }
  .contact-list .o-wrapper {
    padding-right: 0px;
    padding-left: 0px; }
  .contact-list .contact-detail p:first-of-type {
    margin: 0 0 10px; }
  .contact-list .contact-item {
    min-height: 200px;
    padding-bottom: 15px; } }

/* reduces image to allow more text*/
@media all and (max-width: 480px) {
  .contact-list .o-wrapper {
    padding-right: 0px;
    padding-left: 0px; }
  .contact-list .contact-info {
    flex-direction: column; }
  .contact-list figure {
    width: 120px;
    margin-right: 0px;
    margin-bottom: 20px; }
  .contact-list .contact-detail {
    padding-bottom: 25px; }
  .contact-list .contact-info figure img {
    margin-bottom: 0px; } }

.contact-sub-layout h1 {
  margin-bottom: 8px; }

.contact-sub-layout figure {
  float: right;
  margin-left: 40px; }

.contact-sub-layout .contact-detail {
  margin-bottom: 24px; }

@media (max-width: 1024px) {
  .contact-sub-layout figure {
    width: 240px; } }

@media (max-width: 768px) {
  .contact-sub-layout figure {
    width: 180px; } }

/* search result page - people */
@media all and (max-width: 849px) {
  .employee-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px; }
  .contact-list .contact-info figure img {
    margin-bottom: 24px; }
  .employee-row > div:last-child > div > div > img {
    width: 140px;
    margin-bottom: 10px; } }

/* ship finder */
.find-ship h2, .finder-result-section h2 {
  line-height: 36px;
  font-weight: 400;
  font-size: 36px; }

.find-ship .find-ship-options {
  background: #f4f4f4;
  display: flex; }

.find-ship .find-ship-options form {
  margin: 24px;
  width: calc(50% - 48px); }

.find-ship .find-ship-options input {
  margin: 0px; }

.find-ship #shipSearchForm input {
  background-image: url("/Static/Thomas Miller/images/ic-label.png"); }

.find-ship #correspondentSearchForm input {
  background-image: url("/Static/Thomas Miller/images/ic-people.png"); }

#correspondentSearchForm {
  position: relative; }

@media (max-width: 480px) {
  .find-ship .find-ship-options {
    display: block;
    background-color: transparent; }
  .find-ship .find-ship-options form {
    width: 100%;
    margin: 0px 0px 24px 0px; } }

.finder-item {
  width: calc(33.3% - 24px); }

.finder-ship-item {
  width: calc(33.3% - 24px); }

.finder-item .accordian-item {
  border-bottom: none;
  border-top: none; }

.finder-item .accordian-item > button {
  text-align: left;
  font-size: 18px;
  padding-bottom: 4px;
  position: relative; }

.finder-item .accordian-item > button .accordian-indicator {
  padding: 0px;
  margin-left: 8px; }

.finder-item .accordian-item > button .accordian-indicator > span {
  width: 20px;
  height: 20px;
  background-size: 50%; }

.finder-item .accordian-content > p span {
  margin-left: 12px;
  margin-bottom: 0px !important; }

.finder-item .accordian-content > p span:last-of-type {
  margin-bottom: 12px !important; }

.finder-item .finder-item-detail {
  background-image: url("/Static/Thomas Miller/images/svgs/ic-people.svg");
  background-repeat: no-repeat;
  background-size: 36px;
  background-position-x: calc(100% - 16px); }

.finder-item .finder-item-detail-points > p:first-of-type {
  font-size: 18px;
  margin-bottom: 8px; }

.finder-ship-item .finder-item-detail {
  background-image: url("/Static/Thomas Miller/images/svgs/ic-label.svg"); }

.finder-result-section .finder-item, .finder-result-section .finder-ship-item {
  box-shadow: 3px 3px 5px 1px #ccc;
  margin-bottom: 24px;
  margin-right: 24px; }

.finder-result-section h3 {
  font-size: 28px;
  line-height: 30px;
  color: white;
  padding: 28px;
  min-height: 116px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  font-weight: 400; }

.finder-result-section .finder-ship-item h3 {
  font-size: 28px;
  min-height: 96px; }

.finder-result-section .finder-item-detail {
  padding: 0px 28px 28px 28px;
  color: var(--neutral-80); }

.finder-result-section .finder-item-detail > div {
  margin-bottom: 24px; }

.finder-result-section .finder-item-detail p {
  margin: 0px;
  font-size: 16px; }

.finder-result-section .finder-item-detail p > b {
  display: block; }

.finder-result-section .finder-item-detail p > span {
  display: block;
  color: #8f8f8f;
  margin-bottom: 10px; }

.finder-result-section .finder-item-detail-points p b {
  display: inline-block;
  width: 24px; }

.finder-result-section .finder-item-detail-points p > span {
  display: block;
  margin-left: 24px; }

.finder-result-section .finder-item-detail-points p > span:first-of-type {
  display: inline;
  margin-left: 0px; }

.finder-result-section .finder-item-detail p b.bluecard-option {
  display: flex;
  color: darkblue;
  cursor: pointer; }

.finder-result-section .finder-item-detail .bluecard-item {
  font-size: smaller;
  margin-bottom: 0px; }

@media (max-width: 1024px) {
  .finder-result-section .finder-item, .finder-result-section .finder-item {
    width: calc(50% - 12px) !important;
    margin-right: 12px !important; } }

@media (max-width: 768px) {
  .finder-result-section .finder-item {
    width: 100% !important;
    margin-right: 0px !important; } }

/* contact point component*/
.contact-point {
  background-color: #f1f1f1; }

.contact-point h3 {
  font-size: 30px;
  line-height: 30px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  font-weight: 400;
  color: white;
  padding: 15px;
  margin-bottom: 0px; }

.contact-point h4 {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  margin-bottom: 12px;
  text-align: left; }

.contact-point .contact-point-detail {
  padding: 24px; }

/* office point component*/
.office-point h3 {
  font-size: 30px;
  line-height: 30px;
  font-family: var(--custom-font, "Akzidenz Grotesk Regular");
  font-weight: 400;
  color: white;
  padding: 28px;
  margin-bottom: 0px; }

.office-point h4 {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--custom-font, "Akzidenz Grotesk Regular");
  margin-bottom: 12px; }

.office-point img {
  border-radius: 72px;
  max-width: initial;
  /* reset 100% */ }

.office-point .office-point-detail {
  border-left: 1px solid #ced2d6;
  border-right: 1px solid #ced2d6;
  padding: 24px; }

.office-point .office-point-detail p:last-child {
  margin-bottom: 0px; }

.office-point select {
  border-top: 1px solid #ced2d6;
  width: 100%;
  padding: 20px 30px 20px 24px;
  font-size: 14px; }

/* office section*/
/* expert component*/
.expert {
  background-color: #f1f1f1; }

.expert h3 {
  font-size: 30px;
  line-height: 30px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  font-weight: 400;
  color: white;
  padding: 15px; }

.expert .expert-detail > h4 {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  margin-left: 24px;
  margin-bottom: 0px;
  flex: 2; }

.expert img {
  border-radius: 72px;
  max-width: initial; }

.expert .expert-detail {
  display: flex;
  padding: 0 24px 24px 24px; }

.expert .expert-title {
  padding: 0 24px 0px 24px;
  margin-bottom: 24px; }

.expert .expert-contact-detail {
  padding: 0 24px 0px 24px;
  margin-bottom: 24px; }

.expert .expert-contact-detail h4 {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--custom-font, "Akzidenz Grotesk Light");
  text-align: left;
  margin-bottom: 0px; }

.expert .expert-contact-detail > a {
  font-size: 14px; }

.expert > a {
  border-top: 1px solid #ced2d6;
  width: 100%;
  padding: 20px 30px 20px 24px;
  font-size: 14px;
  position: relative;
  display: block; }

.expert > a:after {
  content: "";
  color: var(--secondary);
  border-style: solid;
  border-width: .14em .14em 0 0;
  display: inline-block;
  height: 0.4em;
  width: 0.4em;
  position: absolute;
  top: 25px;
  right: 28px;
  vertical-align: middle;
  transform: rotate(45deg);
  padding: 0;
  margin: 0;
  cursor: pointer; }

.breadcrumb {
  font-size: 14px; }

.breadcrumb-list a {
  color: #746f6f; }

.breadcrumb-list a:not(:first-child):before {
  content: "/ "; }

/* highlight banner*/
.highlight-banner {
  height: 800px;
  position: relative;
  overflow: hidden; }

.highlight-banner h1 {
  font-size: 4em; }

.highlight-banner footer {
  position: absolute;
  bottom: 0px;
  padding-bottom: 120px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent); }

.highlight-banner a.button {
  font-size: 16px;
  padding: 10px 30px;
  border: 1px solid #c0c0c0;
  color: white; }

@media all and (max-width: 550px) {
  /* removes padding to allow more space for services in the accordion */
  .related-favicon-section .o-wrapper {
    padding-right: 0px;
    padding-left: 0px; }
  .highlight-banner {
    /*height: 920px;*/ }
  .highlight-banner h1 {
    /*font-size: 2.3em;
		margin-bottom: 15px;*/ }
  .hero-row-data .opac-1 {
    height: 220px; }
  .hero-row-data {
    margin: 30px 0px 0px 0px; }
  .hero-row-data .o-wrapper div:nth-of-type(2),
  .hero-row-data .o-wrapper div:nth-of-type(3) {
    height: 160px; }
  .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 40px; }
  .related-publication-section h2 {
    font-size: 20px !important; }
  .anchor-points {
    flex-direction: column; }
  .anchor-points .anchor-title {
    margin-bottom: 20px; } }

@media (max-width: 480px) {
  .highlight-banner h1 {
    font-size: 2em !important; }
  .image-banner h1 {
    font-size: 3em; }
  h2 {
    font-size: 30px !important;
    line-height: 1.1em; }
  h3 {
    font-size: 26px !important;
    line-height: 1.1em; }
  .related-item-detail h3 {
    font-weight: normal !important; } }

@media all and (max-width: 370px) {
  /* adds padding for teaser copy on mobile screens */
  .highlight-banner {
    /*height: 1000px;*/ }
  .hero-row-data .opac-1 {
    height: 250px; } }

/* general banner layout*/
.banner-top {
  position: relative;
  overflow: hidden;
  color: white;
  background-size: cover;
  margin-top: 0px; }

.banner-top footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent); }

.banner-top h1, .image-banner h2, .image-banner h3, .image-banner p, .image-banner a {
  color: white; }

/* Page banner generic*/
.image-banner {
  height: 320px; }

.image-banner h1 {
  font-size: 5em; }

@media all and (max-width: 1366px) {
  .highlight-banner {
    height: 700px; }
  .image-banner {
    height: 320px !important; }
  .image-banner h1 {
    font-size: 4.0em;
    margin-bottom: 24px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 50px; } }

@media all and (max-width: 1280px) {
  .highlight-banner {
    height: 570px; }
  .highlight-banner h1 {
    font-size: 3.0em;
    margin-bottom: 15px; }
  .image-banner h1 {
    font-size: 4.0em;
    margin-bottom: 24px; }
  header > section > figure {
    margin: 24px 24px 24px 24px; }
  .navbar-main a, .navbar-main button {
    font-size: 1.3em; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 40px; }
  .banner-top .hero-row-data .opac-1 {
    height: 210px; } }

@media all and (max-width: 1024px) {
  .highlight-banner {
    height: 550px; }
  .highlight-banner h1 {
    font-size: 2.8em;
    margin-bottom: 15px; }
  /* Smaller tablet */
  .image-banner {
    height: 250px !important; }
  .image-banner h1 {
    font-size: 3.5em;
    margin-bottom: 24px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 40px; } }

@media all and (max-width: 739px) {
  .banner-top {
    background-position: 44% 0%;
    background-size: 280%;
    background-repeat: no-repeat; }
  .highlight-banner {
    height: 600px; }
  .highlight-banner h1 {
    font-size: 2.4em;
    margin-bottom: 15px; }
  .image-banner {
    height: 220px; }
  .image-banner h1 {
    font-size: 3.0em !important;
    margin-bottom: 24px; }
  .banner-top .hero-row-data .o-wrapper div:nth-of-type(2),
  .banner-top .hero-row-data .o-wrapper div:nth-of-type(3) {
    height: 120px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 36px; }
  .navbar-top {
    padding-right: 0px; }
  .navbar-top > a:not(.favourite) {
    display: none; }
  .logo-swipe .logo-item {
    justify-content: flex-start;
    flex: 0 0 30%; }
  ul.docs li {
    padding: 14px 20px 30px 20px; } }

@media all and (max-width: 549px) {
  .highlight-banner {
    height: 670px; }
  .highlight-banner h1 {
    font-size: 2.3em;
    margin-bottom: 15px; }
  .image-banner {
    height: 250px; }
  .image-banner h1 {
    font-size: 3.0em !important;
    margin-bottom: 24px; }
  a.logo img {
    max-width: 90px;
    max-height: 100%; }
  .office-time {
    display: none; }
  .banner-top .hero-row-data .opac-1 {
    height: 220px; }
  .banner-top .hero-row-data {
    margin: 30px 0px 0px 0px; }
  .banner-top .hero-row-data .o-wrapper div:nth-of-type(2),
  .banner-top .hero-row-data .o-wrapper div:nth-of-type(3) {
    height: 120px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 34px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.no-margins {
    line-height: 1.3em; } }

@media all and (max-width: 375px) {
  .highlight-banner {
    height: 670px; }
  .image-banner {
    height: 200px !important; }
  .image-banner h1 {
    font-size: 2.6em !important; }
  .banner-top .hero-row-data .opac-1 {
    height: 240px; }
  .banner-top .hero-row-data .o-wrapper div:nth-of-type(2),
  .banner-top .hero-row-data .o-wrapper div:nth-of-type(3) {
    height: 140px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.fs-large {
    font-size: 30px; }
  .banner-top .hero-row-data .o-wrapper .opac-1 p.no-margins {
    line-height: 1.3em; }
  .related-simple-section h3 {
    font-size: 22px;
    line-height: 26px;
    min-height: 90px; } }

/* image slim banner*/
.image-slim-banner {
  height: 160px;
  position: relative;
  overflow: hidden; }

.image-slim-banner h1 {
  font-size: 2.5em;
  margin-bottom: 12px; }

.image-slim-banner footer {
  background: none; }

/* intro banner*/
.intro-banner {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 540px;
  -ms-grid-columns: 100%;
  -ms-grid-rows: 540px;
  margin-top: 0px; }

.intro-banner > figure {
  background-size: cover;
  background-position: 50% 50%;
  height: 100%;
  width: 100%;
  margin: 0px;
  grid-column: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row: 1; }

.intro-banner > figure img {
  display: none; }

.intro-banner .o-wrapper {
  grid-column: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  width: 100%; }

.intro-banner .intro {
  background-color: rgba(255, 255, 255, 0.85);
  height: 100%;
  width: 50%; }

.intro-banner .intro-detail {
  padding: 40px; }

.intro-banner .intro-detail figure {
  float: right;
  margin-left: 40px; }

.intro-detail a.button {
  font-size: 16px;
  padding: 10px 30px;
  border: 1px solid #c0c0c0; }

.intro-banner h2 {
  font-size: 36px; }

@media (max-width: 1280px) {
  .intro-banner .intro {
    width: 75%; } }

@media (max-width: 768px) {
  .intro-banner .intro {
    width: calc(100% + 48px);
    margin-left: -24px; }
  .intro-banner .intro-detail {
    padding-right: 24px;
    padding-left: 24px; } }

@media (max-width: 640px) {
  .intro-banner .intro {
    width: 100%; }
  .intro-inset-banner {
    grid-template-rows: 750px !important;
    -ms-grid-rows: 750px !important; }
  .related-box-carousel .intro {
    margin-left: 0px; }
  .related-box-carousel .o-wrapper {
    padding-right: 0px !important;
    padding-left: 0px !important; } }

/* intro inset banner*/
.intro-inset-banner .intro {
  background-color: var(--primary-80);
  color: white; }

.intro-inset-banner h2 {
  color: white; }

.intro-inset-banner .intro {
  height: calc(100% - 80px);
  margin-top: 40px; }

.intro-inset-banner .button {
  color: #fff;
  border-color: #fff; }

@media (max-width: 768px) {
  .intro-inset-banner .intro {
    height: calc(100%);
    margin-top: 0px;
    margin-left: 0px; }
  .intro-inset-banner .o-wrapper {
    padding-right: 0px;
    padding-left: 0px; } }

/* intro section*/
.intro-section .intro-item {
  height: 100%; }

.intro-section h3 {
  font-size: 30px;
  padding: 0;
  margin: 0px 0px 24px 0px;
  font-weight: normal; }

.intro-section .intro-item-detail {
  margin-left: 20%;
  margin-top: -296px;
  padding: 28px;
  padding-top: 296px;
  height: calc(100% - 48px); }

.intro-section .intro-item-detail .date {
  font-size: 14px;
  margin: 0 0 18px; }

.intro-section .intro-item figure {
  position: relative;
  width: 80%;
  box-shadow: 8px 8px 26px rgba(0, 0, 0, 0.4); }

.intro-section .intro-item figcaption {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: white;
  margin: 0px;
  text-align: right; }

.intro-section .intro-item figcaption .number-big {
  font-size: 64px;
  line-height: 64px; }

.intro-section .intro-item figcaption p {
  margin: 0px; }

.intro-section .grid-wrapper .grid-cell {
  width: 50%; }

.intro-section .intro-item-detail {
  margin-left: 80px; }

@media (max-width: 1024px) {
  .intro-section .grid-wrapper .grid {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column; }
  .intro-section .grid-wrapper .grid-cell {
    width: 100%; }
  .intro-section .grid-wrapper .grid-cell img {
    width: 100%; }
  .intro-section .intro-item-detail {
    margin-left: 0%; }
  .intro-section .intro-item figure {
    width: 100%; }
  .intro-section .intro-item figcaption {
    bottom: 24px;
    left: 24px; }
  .intro-section .intro-item figcaption {
    text-align: left; } }

@media (max-width: 480px) {
  .intro-section .intro-item figcaption .number-big,
  .intro-wide-section .intro-item figcaption .number-big {
    font-size: 50px;
    line-height: 50px; } }

/* intro wide section*/
.intro-wide-section .intro-item {
  height: 100%; }

.intro-wide-section .intro-item figure {
  position: relative;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.4);
  float: left;
  margin-bottom: 30px;
  margin-right: 30px;
  width: 75%; }

.intro-wide-section .intro-item .intro-item-detail {
  padding-top: 40px;
  padding-left: 80px; }

.intro-wide-section .intro-item-detail > div {
  padding: 24px;
  min-height: 530px; }

.intro-wide-section h3 {
  font-size: 36px;
  padding: 0;
  margin: 0px 0px 24px 0px;
  font-weight: normal; }

.intro-wide-section .intro-item-detail .date {
  font-size: 14px;
  margin: 0 0 18px; }

.intro-wide-section .intro-item figcaption {
  position: absolute;
  bottom: 12px;
  right: 16px;
  color: white;
  margin: 0px; }

.intro-wide-section .intro-item figcaption .number-big {
  font-size: 64px;
  line-height: 64px; }

.intro-wide-section .intro-item figcaption p {
  margin: 0px; }

/*
.intro-wide-section .intro-item-detail {
    margin-left: 10%;
    margin-top: -480px;
    padding: 28px;
    padding-top: 48px;
    padding-left: 816px;
    min-height: 520px;
    height: calc(100% - 48px);
}

.intro-wide-section .intro-item figure {
}
*/
@media all and (max-width: 1024px) {
  .intro-wide-section .intro-item .intro-item-detail {
    padding-top: 40px;
    padding-left: 0px; }
  .intro-wide-section .intro-item figure {
    margin-bottom: 30px;
    width: 100%; }
  .intro-wide-section .intro-item figcaption {
    bottom: 24px;
    left: 24px; } }

@media all and (max-width: 480px) {
  .intro-wide-section .intro-item figcaption .number-big {
    font-size: 50px;
    line-height: 50px; } }

/* publication sub-layout*/
.publication-sub-layout figure img {
  border: 1px solid #f0f0f0; }

/* paging from GRP */
.u-rotate-180 {
  transform: rotate(180deg); }

.u-align-center {
  text-align: center !important; }

.u-mt\+ {
  margin-top: 60px !important; }

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

.o-inline-list--tiny .o-inline-list__item {
  margin-right: .47059rem; }

.o-inline-list__item {
  margin-right: 1.76471rem;
  display: inline-block; }

.c-button--primary {
  background-color: var(--primary);
  color: #fff; }

.c-button {
  font-family: Arial,sans-serif;
  border: 3px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-size: 100%;
  padding: 8.5px 17px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  vertical-align: middle;
  will-change: transform; }

.u-link--button:focus, .u-link--button:hover {
  background-color: var(--primary);
  color: #fff; }

.c-button--white:focus, .c-button--white:hover {
  background-color: #fff;
  color: var(--primary); }

.c-button--icon-only svg {
  fill: currentColor;
  height: 1em;
  vertical-align: middle;
  width: 1em;
  will-change: transform; }

/* content filter section*/
.content-filter a.button {
  font-size: 14px; }

.content-filter select {
  outline: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #c4cad4;
  border-radius: 0;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 1em 1em .3em 0;
  margin: 0;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #666;
  background-position: calc(100% - 8px) calc(1em + 8px), calc(100% - 3px) calc(1em + 8px), 100% 0;
  background-repeat: no-repeat;
  background-image: url("/Static/Thomas Miller/images/arr-down-green-8.png"); }

.content-filter-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap; }

.content-filter-options div {
  width: calc(25% - 24px); }

.content-filter label {
  margin-bottom: 12px; }

@media (max-width: 1024px) {
  .content-filter-options div {
    width: calc(33% - 24px); } }

@media (max-width: 768px) {
  .content-filter-options div {
    width: calc(50% - 24px); } }

@media (max-width: 480px) {
  .content-filter-options div {
    width: calc(100%); } }

/* partner list, aka logo-swipe*/
.clearfix::after {
  content: "";
  clear: both;
  display: table; }

.logo-swipe .logo-item {
  float: left;
  margin-right: 10px;
  height: 80px;
  width: auto; }

.logo-swipe .logo-item img {
  height: 100%;
  width: auto; }

.partner-list .scEmptyPlaceholder {
  /* make placeholder visible if no items */
  width: 100%; }

footer.layout-footer {
  background-color: #323c46;
  padding: 70px 0;
  color: #afb2b4;
  align-items: flex-start;
  font-size: 16px; }

footer.layout-footer h4 {
  color: #fff; }

footer.layout-footer nav a {
  display: block;
  color: #afb2b4 !important;
  margin-bottom: 10px; }

footer.layout-footer nav a:hover {
  color: #ffffff !important; }

footer.layout-footer .copyright {
  font-size: 14px;
  border-top: 1px solid #415364; }

footer.layout-footer .copyright p {
  margin-top: 24px; }

footer.layout-footer .layout-footer-group {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px; }

footer.layout-footer .layout-footer-group figure {
  width: 190px; }

footer.layout-footer .layout-footer-group select {
  width: 240px; }

footer.layout-footer .layout-footer-group div {
  margin-left: 40px;
  width: calc(35% - 40px); }

footer.layout-footer .layout-footer-group div:nth-of-type(3) {
  width: calc(45% - 40px); }

footer.layout-footer .layout-footer-group div:first-of-type {
  margin-left: 0px; }

footer.layout-footer a.button-block {
  display: block;
  color: white;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  background-color: var(--secondary) !important;
  margin-bottom: 40px; }

footer.layout-footer a.button-block:hover {
  background-color: var(--secondary-hover) !important;
  opacity: 0.9; }

footer.layout-footer nav.social-links a {
  margin-right: 12px;
  float: left; }

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same widthas the container:*/
  top: 100%;
  left: 0;
  right: 0; }

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4; }

/* new auto-suggest (awesomplete) */
.awesomplete {
  width: 100%; }

.awesomplete > ul {
  z-index: 1000 !important; }

.awesomplete > ul {
  border-radius: 0px !important;
  margin: 0px !important;
  background-color: white !important;
  /* border: 1px solid var(--neutral) !important; */
  /* box-shadow: 0 1px 1px var(--secondary) !important; */
  /* border: none !important; */
  text-shadow: none !important;
  transition: none !important; }

.awesomplete > ul > li {
  padding: 6px 24px !important;
  border-bottom: 1px solid var(--neutral-light);
  font-size: 1.6rem !important;
  font-weight: normal !important;
  color: var(--neutral-80); }

.awesomplete > ul > li:hover {
  background-color: var(--neutral-light-80) !important;
  color: black !important; }

.awesomplete mark {
  background: none !important;
  color: var(--primary) !important; }

.awesomplete li[aria-selected="true"] mark {
  color: var(--primary-hover) !important; }

.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; }

.autocomplete-active {
  /*when navigating through the items using thearrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff; }

/* sharing */
.sharing {
  position: -webkit-sticky;
  position: sticky;
  top: 30px; }

.sharing p {
  margin: 0 0 10px;
  color: #154887;
  font-weight: 700;
  font-family: var(--custom-font, "Akzidenz Grotesk Regular"); }

.sharing a {
  margin-right: 10px; }

/* LEGACY */
.row.footer .btn {
  color: #fff;
  font-size: 16px;
  padding: 10px 13px 10px 13px;
  margin: 0 0 40px; }

.newsletter-signup p {
  line-height: 1.4em;
  margin-bottom: 20px !important;
  font-size: 16px; }

footer select.classic option {
  background: #313c46;
  color: #fff; }

footer select.classic {
  color: #ffffff;
  border-bottom: 1px solid #b5b5b5;
  background-image: url("/Static/Thomas Miller/images/arr-down-white-8.png");
  background-color: transparent; }

.employee-row > div:last-child {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */ }

.employee-row figure {
  display: block;
  width: 140px;
  margin-right: 30px;
  flex-shrink: 0; }

@media all and (max-width: 480px) {
  .employee-row figure {
    width: 90px; } }

.employee-row figure img {
  width: 100% !important;
  height: auto; }

.employee-row {
  margin-bottom: 40px !important; }

/**************************************
PARTNER LOGOS
***************************************/
.logo-items {
  justify-content: space-between;
  padding: 0;
  display: flex; }

.logo-swipe .logo-item {
  float: none;
  width: 14%;
  text-align: center;
  margin: 0 10px 30px 0; }

.logo-swipe .logo-item img {
  height: 100%;
  width: auto; }

.logo-items .arr-left, .logo-items .arr-right {
  display: none;
  /*keep existing code in case we need carousel*/ }

@media all and (max-width: 1024px) {
  .logo-items {
    justify-content: flex-start;
    flex-wrap: wrap; }
  .logo-swipe .logo-item {
    flex: 0 0 20%; } }

@media (max-width: 46.24em) {
  .logo-items {
    flex-direction: row !important; }
  .download-section .o-wrapper {
    padding-right: 0;
    padding-left: 0; }
  ul.docs li a {
    margin-bottom: 20px !important; }
  ul.docs li.doc-list-item > p.date {
    margin-bottom: 10px !important; } }

@media all and (max-width: 480px) {
  .logo-swipe .logo-item {
    justify-content: center;
    flex: 0 0 40%; } }

@media all and (max-width: 800px) {
  footer.layout-footer .layout-footer-group {
    flex-direction: column; }
  footer.layout-footer {
    padding: 30px 0; }
  footer.layout-footer .layout-footer-group div,
  footer.layout-footer .layout-footer-group div:nth-of-type(3),
  footer.layout-footer .layout-footer-group div:first-of-type {
    margin-left: 0px;
    margin-top: 20px;
    width: calc(100% - 40px); }
  footer.layout-footer .layout-footer-group div:first-of-type {
    margin-bottom: 20px; }
  footer.layout-footer .layout-footer-group select,
  footer.layout-footer a.button-block {
    width: 300px; } }

/* Table style */
.s-editorial-container table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 2px solid #d6d6d6;
  width: 100%; }

.s-editorial-container table th,
.s-editorial-container table td {
  padding: 0.8em;
  border: 1px solid #d6d6d6;
  vertical-align: text-top;
  font-size: 0.9em; }

.s-editorial-container tr:first-child td,
.s-editorial-container table th {
  background: #f2f2f2;
  text-align: left !important; }

.s-editorial-container tr:first-child td span,
.s-editorial-container tr:first-child td p,
.s-editorial-container table th span
.s-editorial-container table th p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2em !important; }

.s-editorial-container table td p {
  margin-bottom: 10px;
  text-align: left !important; }

.download-button a {
  top: 10px; }

.add-to-favourite-component {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  list-style: none;
  margin: 20px 0 40px 0;
  padding: 0; }
  .add-to-favourite-component li {
    margin: 0;
    padding: 0; }
  .add-to-favourite-component h2 {
    text-align: left;
    margin: 0;
    padding-bottom: 40px;
    font-weight: 200;
    font-size: 1.6rem;
    height: 30px; }
  .add-to-favourite-component .remove-bt {
    background: transparent;
    border: 0;
    cursor: pointer; }

li button.add-to-favourite-component__add-to-bt, li button.add-to-favourite-component__add-to-bt--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26.14 24.86'%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill:%234cb9a8;}%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M6.9,27.27l1.54-9L1.9,11.9l9-1.31,4-8.18,4,8.18,9,1.31-6.53,6.37,1.54,9L15,23ZM15,21.33l6.09,3.2L19.9,17.75,24.82,13,18,12,15,5.8l-3,6.16-6.8,1,4.92,4.8L8.89,24.53Z' transform='translate(-1.9 -2.41)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100px;
  height: 40px;
  border: 0 !important;
  background-color: transparent;
  cursor: pointer;
  margin: 0 10px 10px 10px; }
  li button.add-to-favourite-component__add-to-bt span, li button.add-to-favourite-component__add-to-bt--disabled span {
    position: relative;
    top: 100%;
    width: 100px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 0.9rem; }

li button.add-to-favourite-component__add-to-bt--disabled {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26.14 24.86'%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill:%234cb9a8;}%3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='26.14 9.5 17.11 8.18 13.07 0 9.03 8.18 0 9.5 6.54 15.87 4.99 24.86 13.07 20.61 21.15 24.86 19.61 15.87 26.14 9.5'/%3E%3C/svg%3E");
  display: none; }

li button.add-to-favourite-component__add-to-bt.hide {
  display: none; }

li button.add-to-favourite-component__add-to-bt--disabled.show {
  display: block; }

.favourites {
  margin: 0;
  padding: 0;
  text-align: left;
  list-style: none;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 1px solid lightgray;
  display: none; }
  .favourites.favourites-visible {
    display: flex;
    width: 100%; }
  .favourites .favourite-item {
    font-weight: 100;
    margin-right: 10px;
    border-top: 1px solid lightgray;
    display: flex;
    justify-content: space-between; }
    .favourites .favourite-item a {
      text-decoration: none;
      padding: 15px 5px;
      display: inline-block; }
    .favourites .favourite-item span {
      margin-right: 20px;
      padding: 5px 10px;
      background-color: rgba(25, 65, 126, 0.719);
      color: white !important; }
  .favourites label {
    flex: 1;
    cursor: pointer; }
  .favourites input {
    display: none; }
  .favourites input + label:before {
    content: "⬜️";
    margin-right: 10px; }
  .favourites input:checked + label:before {
    content: "🌮"; }
  .favourites .add-items {
    margin-top: 20px; }
    .favourites .add-items input {
      padding: 10px;
      outline: 0;
      border: 1px solid rgba(0, 0, 0, 0.1); }

.document-tools .dropdown-content.favourites-component {
  top: 96px; }

.favourites-component {
  position: absolute;
  left: 10vw;
  background-color: white;
  width: 80vw;
  padding: 40px;
  box-shadow: -2px 2px 13px -4px rgba(0, 0, 0, 0.89);
  transition: all .5s ease-in-out; }
  .favourites-component.show-favourites {
    display: flex;
    flex-direction: column;
    transition: transform 0.8s ease-out;
    height: auto;
    transform: scaleY(1);
    transform-origin: top; }
  .favourites-component.hide-favourites {
    display: none;
    transform: scaleY(0); }
  .favourites-component .close-favourites {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 3rem;
    padding: 10px;
    cursor: pointer;
    font-family: sans-serif;
    transform: rotate(45deg); }
  .favourites-component .favourites-container h2, .favourites-component .search-history-container h2 {
    text-align: left;
    margin: 0;
    padding-bottom: 60px;
    font-weight: 200;
    font-size: 1.8rem;
    height: 30px; }
  .favourites-component .search-history-container {
    border-bottom: 1px solid lightgray;
    margin-bottom: 50px; }
  .favourites-component .remove-bt {
    background: transparent;
    border: 0;
    cursor: pointer; }

.sticky-header__actions {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center; }

button.show-favourites {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQzN0JDRkJBMUY5RTExRUI4NjM5RjU4NzFCQTg5QzIwIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQzN0JDRkJCMUY5RTExRUI4NjM5RjU4NzFCQTg5QzIwIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDM3QkNGQjgxRjlFMTFFQjg2MzlGNTg3MUJBODlDMjAiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDM3QkNGQjkxRjlFMTFFQjg2MzlGNTg3MUJBODlDMjAiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5joe6iAAACTUlEQVR42uyXy0tUURzHfRW0i2jlqtBU8rFNSnAYyEdI0Epa+CdEusuENCFFgkHRf8BFi1aBCqXI6CIDt+OQWPloUxuJBIXs4fT5wXfgernXO/eOM2488OF3PPf3POfM715LM5lMyVmMspIzGpED31943WFEta/II+khyXdFq5hK7yJuGZoXbasHYE8MFCUwFcYQrTApWrVW8IqfwgFMiAOtFS4wlTUj7EynZtq6dw2b25qeFaziQfgFCcdaQmtDYRyVenUusr+AuAa1cEPYPG7bS6W9Lv1xxGNIwgZ8FjbfQf+P7+8YYzunO1AD16HcofcPvsJbGPMoYEx2tbp4x2zxvY38BCskMeJuILPQB1dNAd5I2TLf9Mo6O3j2HXHPsVtV2iVL5oEKugxPPLcao0Zt10Vow+FqPv0Yf9ZkFuC3HRP+1jwvlx7EdVmWMIznEdRsl+DQHfSky1WNWIYr0IVRMkLQOfgBMey/5PRzkmJMhnNhKs8lqG/FPpVX4uRnQFC7QN+CggY2EBkuwpFeCEFjT7qLJwXNtXM1wTqOAr+RpLMum+gtk62z53WwFuJumW6dbCN/gVjbvARpV0K3EaP6s59KPzgep2VjtltRAzdKflTABsQLm+p1aGOF9Rn7ICCBdFZX270V9YwbJPdxPo1MQadehVViSmsp6ezLpj6frb4pmZTuK3hGZdsOnUcEtFfjMPTAQ5dtpMDZrOe1lSmf22yJ9JDASx1FV1DFvg0EJxUKOIjj9yFbZgviObRj+zd05zr/F+Y0x38BBgCurexFfFs7DAAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  padding: 20px;
  background-size: 30px;
  padding-left: 40px;
  cursor: pointer; }

.favourites-view, .chapter-favourites {
  cursor: pointer; }

.search-history-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0px 0px 24px 0; }

.search-history-item {
  display: flex;
  list-style: none;
  transition: all .5s ease-in-out; }
  .search-history-item:hover {
    transform: scale(1.1); }

.search-history-item a {
  padding: 5px 10px;
  border-radius: 15px;
  text-decoration: none;
  margin-right: 10px;
  border: 1px solid lightgray; }
  .search-history-item a:hover {
    background-color: white; }
