/* Lora */
@font-face {
  font-display: swap;
  font-family: "Lora";
  font-weight: 500;
  src: url("../fonts/Lora-Medium.woff2") format("woff2"), url("../fonts/Lora-Medium.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Lora";
  font-weight: 700;
  src: url("../fonts/Lora-Bold.woff2") format("woff2"), url("../fonts/Lora-Bold.woff") format("woff");
}
/* Mulish */
@font-face {
  font-display: swap;
  font-family: "Muli";
  font-weight: 400;
  src: url("../fonts/Muli-Regular.woff2") format("woff2"), url("../fonts/Muli-Regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Muli";
  font-weight: 500;
  src: url("../fonts/Muli-Medium.woff2") format("woff2"), url("../fonts/Muli-Medium.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Muli";
  font-weight: 700;
  src: url("../fonts/Muli-Bold.woff2") format("woff2"), url("../fonts/Muli-Bold.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Muli";
  font-weight: 900;
  src: url("../fonts/Muli-ExtraBold.woff2") format("woff2"), url("../fonts/Muli-ExtraBold.woff") format("woff");
}
:root {
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --primary-corporate-blue: #0A2642;
    --primary-corporate-blue-semitransparent: #0A264230;
    --primary-digital-blue: #0200B9;
    --primary-white: #FFFFFF;
    --secondary-blue-lagoon: #006778;
    --secondary-light-grey: #F4F4F4;
    --secondary-medium-grey: #737779;
    --secondary-border-medium-grey: #73777930;
    --secondary-purple: #723AB3;
    --border-color: #C1C1C1;
    --mulish: "Muli", sans-serif;
    --lora: "Lora", serif;
    --font-size: 1.6rem;
    --line-height: 2.4rem;
    --fixed-font-size: 1.8rem;
    --fixed-line-height: 2.4rem;
    --h1-font-size: 3.4rem;
    --h1-line-height: 3.8rem;
    --h2-font-size: 2.8rem;
    --h2-line-height: 3.2rem;
    --h3-font-size: 2.8rem;
    --h3-line-height: 3.2rem;
    --h4-font-size: 2.4rem;
    --h4-line-height: 2.8rem;
    --navbar-height: 6rem;
    --market-prices-and-search-height: 5.5rem;
    --logo-height: 3.4rem;
    --max-width: 118rem;
    --max-width-inner: 126rem;
    --max-width-narrow: 73rem;
    --container-padding: 2rem;
    --container-padding-negative: -2rem;
    --header-padding: 4rem;
    --section-spacing: 3rem;
}

@media screen and (min-width: 768px) {
  :root {
    --h1-font-size: 4.5rem;
    --h1-line-height: 5.0rem;
    --h2-font-size: 3.4rem;
    --h2-line-height: 3.8rem;
    --container-padding: 3.5rem;
    --container-padding-negative: -3.5rem;
    --header-padding: 6rem;
    --section-spacing: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --font-size: 1.8rem;
    --line-height: 2.8rem;
    --h1-font-size: 5.0rem;
    --h1-line-height: 6.0rem;
    --h2-font-size: 4.0rem;
    --h2-line-height: 5.0rem;
    --h3-font-size: 3.4rem;
    --h3-line-height: 4.6rem;
    --h4-font-size: 2.8rem;
    --h4-line-height: 3.6rem;
    --header-padding: 7rem;
    --section-spacing: 6rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}
*::-moz-selection {
  background: var(--secondary-blue-lagoon);
  color: var(--primary-white);
  filter: alpha(opacity=100);
  opacity: 1;
}
*::selection {
  background: var(--secondary-blue-lagoon);
  color: var(--primary-white);
  filter: alpha(opacity=100);
  opacity: 1;
}

:root {
  font-size: 62.5%;
  height: 100%;
  overflow-x: hidden;
}

html {
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
  scroll-padding: var(--navbar-height);
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: var(--primary-white);
  font-family: var(--mulish);
  font-size: var(--font-size);
  font-variant-ligatures: none;
  font-weight: 400;
  line-height: var(--line-height);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body img[src^="https://www.images-home.com"] {
  display: none;
}

article,
aside,
canvas,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
img,
main,
nav,
picture,
svg,
section,
video {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

p {
  font-size: var(--font-size);
  line-height: var(--line-height);
  overflow-wrap: break-word;
  width: inherit;
}
p:not(:last-child) {
  margin-bottom: 1rem;
}
p.fine-print {
  font-size: 1.4rem;
  line-height: 1.8rem;
}
p.fine-print.fine-print--add-space-above {
  margin-top: 3.5rem;
}

a:not(.button) {
  color: var(--primary-digital-blue);
}
a:not(.button):visited {
  color: var(--primary-digital-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-family: var(--lora);
  font-weight: 500;
  overflow-wrap: break-word;
  text-align: left;
  width: inherit;
}

h1 {
  font-weight: 700;
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  margin-bottom: 2rem;
}

h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  margin-bottom: 2rem;
}

h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  margin-bottom: 3rem;
}
h4.introduction {
  font-weight: 700;
  text-align: left;
  color: var(--primary-corporate-blue);
}

h6 {
  font-family: var(--mulish);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
h6:not(:first-of-type) {
  margin-top: 2rem;
}

ol, ul {
  list-style-position: outside;
  padding-left: 2rem;
  margin: 1.5rem 0;
}

@media screen and (min-width: 768px) {
  h1,
  h2,
  h3,
  p.sub-header {
    text-align: center;
  }
  h3, h4 {
    margin-bottom: 4rem;
  }
  h4.introduction {
    text-align: center;
  }
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}

.no-wrap {
  white-space: nowrap;
}

body {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header {
  align-items: center;
  background-color: var(--primary-corporate-blue);
  color: var(--primary-white);
  display: flex;
  flex-direction: row;
  height: var(--navbar-height);
  padding: 0 var(--container-padding);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  min-height: auto;
  margin: 0;
  margin-top: var(--navbar-height);
  width: 100%;
}

footer {
  background-color: var(--primary-corporate-blue);
  color: var(--primary-white);
  padding: var(--container-padding);
  width: 100%;
}

header > nav {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}

#header-logo {
  display: block;
}
#header-logo img {
  height: var(--logo-height);
}

/* Desktop menu */
#header-menu {
  align-items: center;
  display: none;
  flex-direction: row;
  gap: 1rem;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
}
#header-menu > li {
  position: relative;
}
#header-menu > li .dropdown-menu {
  background-color: var(--primary-white);
  box-shadow: 0 3px 15px 0 rgba(2, 0, 185, 0.15);
  display: flex;
  flex-direction: column;
  left: -2rem;
  padding: 1rem;
  position: absolute;
  opacity: 0;
  top: 100%;
  transition: opacity 200ms 250ms;
  visibility: collapse;
}
#header-menu > li .dropdown-menu > a {
  color: var(--primary-corporate-blue);
  font-size: var(--fixed-font-size);
  padding: 1.5rem 2rem;
  text-decoration: none;
  white-space: nowrap;
}
#header-menu > li .dropdown-menu > a[aria-current=page] {
  font-weight: 700;
}
#header-menu > li .dropdown-menu > a:hover {
  background-color: var(--secondary-light-grey);
  color: var(--primary-digital-blue);
}
#header-menu > li > a {
  color: var(--primary-white);
  font-size: var(--fixed-font-size);
  line-height: 2.2rem;
  padding: 0 0.5rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}
#header-menu > li > a[aria-current=page] {
  font-weight: 700;
}
#header-menu > li > a::after {
  content: url(../images/icons/arrow-down-white.svg);
  display: inline-block;
  margin-left: 1rem;
  transition: transform 300ms ease-in-out 0ms;
  width: 1.5rem;
}
#header-menu > li:hover > a::after, #header-menu > li:focus-within > a::after, #header-menu > li > a:focus::after {
  transform: rotate(-180deg);
}
#header-menu > li:hover > a + .dropdown-menu, #header-menu > li:focus-within > a + .dropdown-menu, #header-menu > li > a:focus + .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1100px) and (hover: hover) {
  #header-menu {
    display: flex;
  }
}
@media screen and (min-width: 1200px) {
  #header-menu {
    gap: 2rem;
  }
}
/* Fixes for menu positioning */
@media screen and (max-width: 1200px) {
  #header-menu > li .dropdown-menu {
    left: unset;
    right: 0;
  }
}
/* Side menu */
#overlay {
  background-color: hsla(221, 60%, 4%, 0.66);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 100ms, opacity 100ms ease;
  visibility: hidden;
  z-index: 50;
}

#side-slider {
  background-color: var(--primary-white);
  box-shadow: -5px 0px 10px 0 var(--primary-corporate-blue-semitransparent);
  bottom: 0;
  display: block;
  max-width: 40rem;
  min-height: 100vh;
  overflow-y: auto;
  padding: 8rem 3rem 2rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.4s linear;
  visibility: hidden;
  width: 10rem;
  z-index: 100;
}

.side-menu {
  border-bottom: 1px solid rgba(225, 225, 225, 0.4);
  position: relative;
}
.side-menu label {
  cursor: pointer;
  display: block;
  padding: 2rem 0;
  width: 100%;
}
.side-menu label::after {
  content: url(../images/icons/arrow-down.svg);
  display: inline-block;
  position: absolute;
  right: 0;
  transform: rotate(-180deg);
  transition: transform 300ms ease-in-out 0ms;
  width: 1.5rem;
}
.side-menu input {
  display: none;
}
.side-menu input:checked + label {
  font-weight: 700;
}
.side-menu input:checked + label::after {
  transform: rotate(0deg);
}
.side-menu input:checked ~ .collapsible-menu {
  display: block;
}
.side-menu .collapsible-menu {
  animation: menu-animate 300ms ease-in-out forwards;
  display: none;
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0 0 2rem;
}
.side-menu .collapsible-menu li {
  margin-bottom: 0.5rem;
}
.side-menu a {
  color: var(--primary-corporate-blue) !important;
  font-size: var(--font-size);
  line-height: var(--fixed-line-height);
  text-decoration: none;
  transition: opacity 200ms;
}
.side-menu a:hover {
  opacity: 0.5;
}

/* Hamburger icon */
#hamburger-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 4rem;
  position: relative;
  width: 4rem;
}
#hamburger-icon > span, #hamburger-icon > span::before, #hamburger-icon > span::after {
  background-color: var(--primary-white);
  border-radius: 2px;
  display: block;
  height: 3px;
  position: relative;
  width: 100%;
}
#hamburger-icon > span {
  display: block;
  transition: all 0.4s ease;
}
#hamburger-icon > span::before, #hamburger-icon > span::after {
  content: "";
  position: absolute;
  top: -10px;
}
#hamburger-icon > span::after {
  top: 10px;
}

#open-side-menu-checkbox {
  display: none;
}
#open-side-menu-checkbox + label {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding-left: 1rem;
  z-index: 200;
}
#open-side-menu-checkbox:checked + label #hamburger-icon {
  background-color: var(--primary-white);
}
#open-side-menu-checkbox:checked + label #hamburger-icon > span, #open-side-menu-checkbox:checked + label #hamburger-icon > span::before, #open-side-menu-checkbox:checked + label #hamburger-icon > span::after {
  background-color: var(--primary-corporate-blue);
}
#open-side-menu-checkbox:checked + label #hamburger-icon > span {
  transform: rotate(135deg);
}
#open-side-menu-checkbox:checked + label #hamburger-icon > span::before, #open-side-menu-checkbox:checked + label #hamburger-icon > span::after {
  top: 0;
  transform: rotate(90deg);
}
#open-side-menu-checkbox:checked ~ #side-slider {
  visibility: visible;
  width: 100%;
}
#open-side-menu-checkbox:checked ~ #overlay {
  filter: blur(3px);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1100px) and (hover: hover) {
  #open-side-menu-checkbox + label, #side-slider {
    display: none;
  }
}
#market-prices-and-search {
  align-items: center;
  background-color: var(--primary-white);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--max-width-inner);
  padding: 1.4rem var(--container-padding);
  width: 100%;
}
#market-prices-and-search-container {
  box-shadow: 0px 2px 3px #DFDFFF;
}
#market-prices-and-search section {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  min-width: 15rem;
}
#market-prices-and-search .market-code,
#market-prices-and-search .market-price {
  font-size: 1.8rem;
  line-height: 1.8rem;
}
#market-prices-and-search .market-price {
  color: var(--primary-digital-blue);
  display: inline-block;
  font-family: var(--lora);
  font-weight: 500;
  margin-left: 1rem;
}

#search-form {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-basis: 100%;
  justify-content: flex-end;
}
#search-form input {
  height: 3.4rem;
}
#search-form input[type=text] {
  background: url(../images/icons/search.svg) no-repeat scroll 6px 7px;
  border: 1px solid var(--primary-corporate-blue);
  border-radius: 5px 0 0 5px;
  flex-grow: 1;
  padding-left: 3rem;
}
#search-form input[type=text]:focus {
  box-shadow: inset 0 0 2px var(--primary-corporate-blue);
  outline: none;
}
#search-form input[type=submit] {
  background-color: var(--primary-corporate-blue);
  border: 1px solid var(--primary-corporate-blue);
  border-radius: 0 5px 5px 0;
  color: var(--primary-white);
  padding: 0 1.5rem;
}
#search-form input[type=submit]:focus {
  opacity: 0.8;
  outline: none;
}

@media screen and (min-width: 768px) {
    #market-prices-and-search {
        justify-content: center;
        padding: 1.2rem var(--container-padding);
    }
  #search-form {
    flex-basis: auto;
  }
  #search-form input[type=text] {
    max-width: 30rem;
  }
}
@media screen and (min-width: 1024px) {
  #market-prices-and-search {
    gap: 3.5rem;
  }
  #market-prices-and-search section {
    min-width: 20rem;
  }
  #market-prices-and-search .market-code,
  #market-prices-and-search .market-price {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
}
footer > nav {
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}

.footer-copyright {
  font-size: 1.4rem;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 0 1.5rem;
  width: 100%;
}

.footer-statement-and-terms {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  max-width: var(--max-width);
  width: 100%;
}
.footer-statement-and-terms a {
  color: var(--primary-white) !important;
  font-size: 1.4rem;
  line-height: 1.4rem;
  opacity: 0.5;
  text-decoration: none;
}
.footer-statement-and-terms a:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .footer-statement-and-terms {
    flex-direction: row;
    gap: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer-copyright {
    padding: 0 0 2rem;
  }
}
/* Headers with background image */
.header-with-image {
  height: 32.5rem;
  width: 100%;
}
.header-with-image__inner {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--primary-white);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 144rem;
  padding: var(--header-padding) var(--container-padding);
  width: 100%;
}
.header-with-image--article .header-with-image__inner {
  max-width: 120rem;
}
.header-with-image:not(.header-with-image--always-seen) {
  margin-bottom: var(--section-spacing);
}

.header-text-only {
  align-items: center;
  color: var(--primary-corporate-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--header-padding) var(--container-padding);
  width: 100%;
}
.header-text-only--image-replacement {
  display: none;
}
.header-text-only + .container, .header-text-only + .section {
  margin-top: 0;
  padding-top: 0;
}

.lightgrey-background {
  background-color: var(--secondary-light-grey);
}

.corporate-blue-background {
  background-color: var(--primary-corporate-blue);
  color: var(--primary-white);
}

/* Content container */
.container {
  margin: 0 auto;
  max-width: var(--max-width-inner);
  padding: var(--section-spacing) var(--container-padding) 4rem;
  width: 100%;
}

.section {
  margin-left: auto;
  margin-right: auto;
}
.section.section--narrow {
  max-width: var(--max-width-narrow);
}
.section.section--wp-content {
  max-width: var(--max-width-narrow);
}
.section.section--social-networks {
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: var(--section-spacing);
}
.section.section--social-networks > a > img {
  height: 1.3rem;
  margin-left: 1.5rem;
}
.section.section-divider hr {
  background-color: var(--border-color);
  height: 0;
  margin: 0;
}
.section:not(:last-of-type) {
  margin-bottom: var(--section-spacing);
}

.controls {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.controls .button {
  width: 100%;
}

.go-back {
  font-weight: 700;
  margin-bottom: var(--section-spacing);
}
.go-back a {
  color: var(--primary-digital-blue);
  display: inline-block;
  margin-left: 1rem;
  text-decoration: underline;
}
.go-back a::before {
  content: url(../images/icons/arrow-down-digital-blue.svg);
  display: inline-block;
  left: -1rem;
  position: relative;
  transform: rotate(90deg);
  width: 1.5rem;
}

.historical-data-link {
  margin-top: var(--container-padding);
}

@media screen and (min-width: 768px) {
  .header-with-image {
    height: 39rem;
  }
  .header-with-image__inner {
    height: 39rem;
  }
  .container:not(.container--inner) {
    padding-bottom: 5rem;
  }
  .controls {
    flex-direction: row;
    justify-content: center;
  }
  .controls .button {
    width: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .header-with-image {
    height: 67rem;
  }
  .header-with-image__inner {
    height: 67rem;
  }
  .container:not(.container--inner) {
    padding-bottom: 8rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-with-image {
    background-size: contain;
  }
}
@media screen and (max-height: 900px) {
  .go-back {
    margin-bottom: 2rem;
  }
  .header-with-image {
    background-size: auto;
    max-height: 34rem !important;
  }
  .header-with-image__inner {
    max-height: 34rem;
  }
  .header-with-image--article {
    display: none;
  }
}
@media screen and (max-height: 550px) {
  .go-back {
    margin-bottom: 1rem;
  }
  .header-with-image {
    max-height: 17rem !important;
  }
  .header-with-image:not(.header-with-image--always-seen) {
    display: none;
  }
  .header-with-image__inner {
    max-height: 17rem !important;
    padding: 5rem var(--header-padding);
  }
  .header-text-only--image-replacement {
    display: flex;
  }
}
/* People */
.person-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 0;
  margin: 0 var(--container-padding-negative) var(--section-spacing);
  padding: 0 0 100%; /* Together with height renders image as a square */
  width: calc(100% + 2 * var(--container-padding));
}

.person-name,
.person-title,
.news-title {
  margin-bottom: 2rem;
  text-align: left;
}

.person-title p {
  color: var(--secondary-medium-grey);
  font-size: 1.8rem;
  line-height: 2.2rem;
}

.person-info {
  text-align: left;
}
.person-info:not(:last-of-type) {
  margin-bottom: 1rem;
}

.news-date-and-source {
  color: var(--secondary-medium-grey);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin: 2rem 0 !important;
}

@media screen and (min-width: 768px) {
  .person-image {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .person-title p {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  .news-date-and-source {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .person-name,
  .news-title,
  .person-title {
    margin-bottom: 3rem;
  }
  .person-title p {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
  .news-date-and-source {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin: 3rem 0 !important;
  }
}
@media screen and (min-width: 768px) and (max-height: 1200px) {
  .person-image {
    max-width: 50rem;
    padding-bottom: 50rem;
  }
}
@media screen and (min-width: 768px) and (max-height: 900px) {
  .person-image {
    margin-bottom: 2rem;
    max-width: 35rem;
    padding-bottom: 35rem;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .person-image {
    margin-bottom: 1rem;
    max-width: 25rem;
    padding-bottom: 25rem;
  }
}
.accordion {
  border-bottom: 0.3px solid var(--secondary-border-medium-grey);
  margin: 0 var(--container-padding-negative);
  width: calc(100% + 2 * var(--container-padding));
}
.accordion:first-child {
  border-top: 0.3px solid var(--secondary-border-medium-grey);
}
.accordion > *, .accordion > p {
  margin-bottom: 0;
  margin-top: 0;
  padding: 1.5rem 1.5rem 0;
}
.accordion > summary, .accordion > *:last-child {
  padding-bottom: 1.5rem;
}
.accordion > ul {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.accordion summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding-right: 4rem;
  position: relative;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: url(../images/icons/arrow-down-digital-blue.svg);
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 300ms ease-in-out;
  width: 1.5rem;
}
.accordion[open] summary {
  background-color: var(--secondary-light-grey);
  color: var(--primary-digital-blue);
}
.accordion[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

@media screen and (min-width: 768px) {
  .accordion {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.button {
  border-radius: 6rem;
  color: var(--primary-white);
  cursor: pointer;
  display: inline-block;
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  padding: 1rem 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-align: center;
  text-decoration: none;
  transition: all 100ms ease;
  white-space: nowrap;
}
.button.button--corporate-blue {
  background-color: var(--primary-corporate-blue);
  border: 1px solid var(--primary-corporate-blue);
}
.button.button--corporate-blue:hover {
  background-color: var(--primary-white);
  color: var(--primary-corporate-blue);
}
.button.button--digital-blue {
  background-color: var(--primary-digital-blue);
  border: 1px solid var(--primary-digital-blue);
}
.button.button--digital-blue:hover {
  background-color: var(--primary-white);
  color: var(--primary-digital-blue);
}
.button.button--purple {
  background-color: var(--secondary-purple);
  border: 1px solid var(--secondary-purple);
}
.button.button--purple:hover {
  background-color: var(--primary-white);
  color: var(--secondary-purple);
}
.button:disabled {
  cursor: default;
  opacity: 0.2;
}

.yourir-active {
  background-color: transparent;
}

.yourir-change .yourir-positive,
.yourir-change .yourir-negative,
.yourir-pct-change .yourir-positive,
.yourir-pct-change .yourir-negative {
  color: inherit;
}

.chart-high .yourir-chart-price {
  stroke: var(--primary-corporate-blue);
  stroke-width: 2px;
}
.chart-high .yourir-widget-price-chart1 {
  margin-bottom: 30px;
}
.chart-high .yourir-chart-yaxis-label {
  font-size: 13px;
}
.chart-high .yourir-chart-xaxis-label {
  font-size: 13px;
}
.chart-high .yourir-chart-panel-border-bottom {
  stroke: #d3cac9;
  stroke-width: 1px;
}
.chart-high .yourir-nav-chart .yourir-chart-panel {
  height: 3em;
}
.chart-high .yourir-nav-chart-gadget {
  stroke: var(--primary-corporate-blue);
  stroke-width: 5px;
  stroke-linecap: round;
}

.chart-high {
  margin-left: -1.3rem;
}

.share-info {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.share-info .share-price {
  color: var(--primary-digital-blue);
  font-family: var(--lora);
  font-size: 8rem;
  font-weight: 500;
  line-height: 8rem;
  margin-bottom: 1rem;
}
.share-info .share-change {
  font-size: 3rem;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.share-info .share-year-change {
  color: var(--secondary-medium-grey);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.share-info h6.share-year-change {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

@media screen and (max-width: 365px) {
  .yourir-chart {
    padding-left: 35px;
  }
}
@media screen and (min-width: 540px) {
  .share-info {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 3rem;
  }
  .share-info > :last-child {
    text-align: right;
  }
}
@media screen and (min-width: 1024px) {
  .share-info {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
  }
  .share-info > :last-child {
    text-align: left;
  }
  .share-info .share-price {
    font-size: 12rem;
    line-height: 12rem;
  }
  .share-info .share-change {
    font-size: 4rem;
    line-height: 4rem;
  }
  .share-info .share-year-change {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
  .share-info h6.share-year-change {
    font-size: 2rem;
  }
}
.image {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
.image.max-width-image {
  height: 0;
  margin: 3rem var(--container-padding-negative);
  padding: 0 0 83%; /* Together with height renders image as a proportional rectangle */
  width: calc(100% + 2 * var(--container-padding));
}
.image.max-width-image:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .image.max-width-image {
    height: auto;
    margin: 4rem 0;
    padding: 0;
    width: 100%;
  }
  .image.max-width-image:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .image.max-width-image {
    margin: 6rem 0;
  }
  .image.max-width-image:first-child {
    margin-top: 0;
  }
}
.table, .table-mobile {
  border-collapse: collapse;
  margin-bottom: 3rem;
}
.table caption, .table-mobile caption {
  font-family: var(--mulish);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
  margin-bottom: 3rem;
  text-align: left;
}
.table caption p, .table-mobile caption p {
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  margin-top: 1rem;
}
.table thead, .table-mobile thead {
  background-color: #DFDFFF;
}
.table tr, .table-mobile tr {
  border-bottom: 0.3px solid var(--secondary-border-medium-grey);
}
.table td:nth-child(2), .table td:last-child, .table-mobile td:nth-child(2), .table-mobile td:last-child {
  white-space: nowrap;
}
.table th, .table td, .table-mobile th, .table-mobile td {
  padding: 1.5rem 2rem;
  text-align: left;
  vertical-align: top;
}
.table .table-inner-header *, .table-mobile .table-inner-header * {
  white-space: normal;
}
.table .table-inner-header * h6, .table-mobile .table-inner-header * h6 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.table {
  display: none;
  margin-left: auto;
  margin-right: auto;
}
.table .table-inner-header td {
  padding: 3rem 0;
}

.table-mobile {
  margin: 0 var(--container-padding-negative) 3rem;
}
.table-mobile caption {
  margin: 0 var(--container-padding) 2rem;
  text-align: left;
}
.table-mobile tbody {
  border-top: 3px solid #DFDFFF;
}
.table-mobile th, .table-mobile td {
  padding: 1.5rem var(--container-padding);
  white-space: normal !important;
}
.table-mobile .table-inner-header {
  border-bottom: 3px solid #DFDFFF;
}
.table-mobile .table-inner-header td {
  padding: 3rem var(--container-padding);
}

@media screen and (min-width: 768px) {
  .table {
    display: table;
  }
  .table-mobile {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .table th {
    white-space: nowrap;
  }
}
.section.section--tiles, .section.section--team-tiles, .section.section--director-tiles, .section.section--download-tiles, .section.section--resources-tiles {
  align-items: stretch;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  justify-content: space-between;
}
.section.section--tiles {
  max-width: 70rem;
}
.section.section--team-tiles .tile > :last-child, .section.section--director-tiles .tile > :last-child {
  padding: 1rem;
}
.section.section--team-tiles .tile > :last-child h4, .section.section--director-tiles .tile > :last-child h4 {
  font-size: 2rem;
  line-height: 2.4rem;
}
.section.section--team-tiles .tile > :last-child p, .section.section--director-tiles .tile > :last-child p {
  font-size: 1.4rem;
  line-height: 1.8rem;
}
.section.section--download-tiles {
  justify-content: space-evenly;
}

.tile {
  background-color: var(--primary-white);
  border: 0.3px solid var(--secondary-border-medium-grey);
  border-radius: 0 1rem 1rem 0;
  display: flex;
  flex: 1 1 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  text-decoration: none;
}
.tile.tile--news {
  border-radius: 0 0 1rem 1rem;
  flex-direction: column;
  margin: 0 auto;
  max-width: 35rem;
}
.tile.tile--news > :first-child {
  height: 25rem;
  min-height: 25rem;
  min-width: inherit;
}
.tile.tile--news > :last-child {
  height: -moz-fit-content;
  height: fit-content;
}
.tile > :first-child {
  background-position: center 0%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  flex: 0 0;
  height: 12.7rem;
  min-width: 12.7rem;
}
.tile > :last-child {
  align-items: flex-start;
  color: var(--primary-corporate-blue);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 12.7rem;
  justify-content: center;
  padding: 2rem;
}
.tile > :last-child h4 {
  font-family: var(--lora);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin: 0;
}
.tile > :last-child p.title,
.tile > :last-child p.date-and-source {
  color: var(--secondary-medium-grey);
  font-family: var(--mulish);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 0.5rem 0 0;
}
.tile > :last-child p.date-and-source,
.tile > :last-child p.text {
  display: -webkit-box;
  margin: 1.5rem 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.tile > :last-child .download-link {
  color: var(--primary-digital-blue);
  font-size: var(--font-size);
  font-weight: 700;
  line-height: var(--line-height);
  margin: 0.5rem 0 0;
  text-decoration: underline;
}
.tile:hover {
  box-shadow: 0px 3px 15px rgba(2, 0, 185, 0.15);
}
.tile:hover > :last-child h4 {
  color: var(--primary-digital-blue);
  text-decoration: underline;
}

.download-tile,
.website-tile {
  background-color: var(--primary-white);
  border: 0.3px solid var(--secondary-border-medium-grey);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.download-tile h4,
.website-tile h4 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin: 0 0 1rem;
}
.download-tile .download-date,
.website-tile .download-date {
  color: var(--secondary-medium-grey);
  font-size: 1.4rem;
  line-height: 1.8rem;
  margin: 0;
}
.download-tile .download-link,
.website-tile .download-link {
  align-items: flex-end;
  color: var(--primary-digital-blue);
  display: flex;
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.2rem;
  margin: 2rem 0 0;
  text-decoration: underline;
}
.download-tile .download-link-with-text,
.website-tile .download-link-with-text {
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin: 2rem 0 0;
}
.download-tile .download-link-with-text a,
.website-tile .download-link-with-text a {
  color: var(--primary-digital-blue);
  font-weight: 700;
  text-decoration: underline;
}
.download-tile:hover,
.website-tile:hover {
  box-shadow: 0px 3px 15px rgba(2, 0, 185, 0.15);
}

@media screen and (min-width: 768px) {
  .section.section--tiles {
    gap: 3.5rem;
    grid-template-columns: repeat(auto-fill, 32.3rem);
  }
  .section.section--team-tiles, .section.section--director-tiles {
    gap: 1.5rem;
  }
  .section.section--team-tiles .tile > :last-child, .section.section--director-tiles .tile > :last-child {
    min-height: 6.5rem;
  }
  .section.section--team-tiles {
    grid-template-columns: repeat(auto-fill, 20rem);
  }
  .section.section--team-tiles .tile {
    max-width: 20rem;
    width: 20rem;
  }
  .section.section--team-tiles .tile > :first-child {
    height: 20rem;
    min-height: 20rem;
  }
  .section.section--director-tiles {
    grid-template-columns: repeat(auto-fill, 15rem);
  }
  .section.section--director-tiles .tile {
    max-width: 15rem;
    width: 15rem;
  }
  .section.section--director-tiles .tile > :first-child {
    height: 15rem;
    min-height: 15rem;
  }
  .section.section--download-tiles, .section.section--resources-tiles {
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .tile {
    border-radius: 0 0 1rem 1rem;
    flex: 1 0 auto;
    flex-direction: column;
    max-width: 32.3rem;
    width: 32.3rem;
  }
  .tile > :first-child {
    height: 25rem;
    min-height: 25rem;
    min-width: inherit;
  }
  .tile.tile--person > :first-child {
    height: 32rem;
    min-height: 32rem;
  }
  .tile > :last-child {
    align-items: flex-start;
    height: auto;
    justify-content: start;
    min-height: 6.5rem;
    padding: 2rem 1.5rem;
  }
  .tile > :last-child p.title {
    margin-top: 1.5rem;
  }
  .tile > :last-child .download-link {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .section.section--download-tiles {
    gap: 4rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .section.section--resources-tiles {
    gap: 3.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .tile > :last-child {
    min-height: 9.5rem;
    padding: 3rem 1.5rem;
  }
  .tile > :last-child h4 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .section.section--tiles {
    gap: 4rem;
    grid-template-columns: repeat(auto-fill, 37rem);
    max-width: unset;
  }
  .tile {
    max-width: 37rem;
    width: 37rem;
  }
  .tile > :first-child {
    height: 28rem;
    min-height: 28rem;
  }
}


