/***
    Please follow these guidelines:

    1. Prefix classes with 'app-' when defining new classes.
    2. Use `!` to indicate important which is proritised when applying CSS rules. Below is an example.

    CSS
    .app-\!-my-class {
      color: white !important;
    }
    HTML
    <div class="app-!-my-class"></div>

/* Global variables */
:root {
  --theme: #1d70b8;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

* {
  font-family: 'Roboto-Regular', sans-serif !important;
}

.app-\!-header-border-bottom {
  border-bottom: 10px solid var(--theme) !important;
}

.app-width-container {
  max-width: 1280px;
  margin-right: 15px;
  margin-left: 15px
}

@supports(margin: max(calc(0px))) {
  .app-width-container {
    margin-right: max(15px, calc(15px + env(safe-area-inset-right)));
    margin-left: max(15px, calc(15px + env(safe-area-inset-left)))
  }
}

@media(min-width: 40.0625em) {
  .app-width-container {
    margin-right: 30px;
    margin-left: 30px
  }

  @supports(margin: max(calc(0px))) {
    .app-width-container {
      margin-right: max(30px, calc(15px + env(safe-area-inset-right)));
      margin-left: max(30px, calc(15px + env(safe-area-inset-left)))
    }
  }
}

@media(min-width: 1160px) {
  .app-width-container {
    margin-right: auto;
    margin-left: auto
  }

  @supports(margin: max(calc(0px))) {
    .app-width-container {
      margin-right: auto;
      margin-left: auto
    }
  }
}

.app-copy-button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: .875rem;
  line-height: 1.1428571429;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  min-width: 110px;
  padding: 3px 10px;
  border: 1px solid #00823b;
  color: #00823b;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 0 0 #00703c;
  box-shadow: 0 2px 0 0 #00703c;
  text-align: center;
  text-decoration: none;
  cursor: pointer
}

@media print {
  .app-copy-button {
    font-family: sans-serif
  }
}

@media(min-width: 40.0625em) {
  .app-copy-button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25
  }
}

@media print {
  .app-copy-button {
    font-size: 14pt;
    line-height: 1.2
  }
}

.app-copy-button:focus:not(:hover) {
  color: #0b0c0c;
  background-color: #fd0;
  -webkit-box-shadow: 0 2px 0 0 #0b0c0c;
  box-shadow: 0 2px 0 0 #0b0c0c
}

.app-copy-button:active,
.app-copy-button:focus {
  padding: 2px 10px;
  border: 2px solid #fd0;
  outline: 2px solid rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none
}

.app-copy-button:active {
  margin-top: 2px;
  -webkit-box-shadow: none;
  box-shadow: none
}

.app-\!-position-relative {
  position: relative !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.app-\!-colour--white {
  color: #FFFFFF !important;
}

.app-masthead {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--theme);
  color: #fff;
  background-color: var(--theme);
}

@media(min-width: 40.0625em) {
  .app-masthead {
    padding-top: 30px
  }
}

@media(min-width: 40.0625em) {
  .app-masthead {
    padding-bottom: 30px
  }
}

.app-masthead__title {
  color: #fff;
  margin-bottom: 20px
}

@media(min-width: 40.0625em) {
  .app-masthead__title {
    margin-bottom: 30px
  }
}

.app-masthead__description {
  font-family: arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 0
}

@media print {
  .app-masthead__description {
    font-family: sans-serif
  }
}

@media(min-width: 40.0625em) {
  .app-masthead__description {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25
  }
}

@media print {
  .app-masthead__description {
    font-size: 18pt;
    line-height: 1.15
  }
}

.app-masthead__image {
  display: none
}

@media(min-width: 48.0625em) {
  .app-masthead__image {
    display: block;
    width: 100%;
    margin-top: 15px
  }
}

code {
  padding: 0 5px;
  color: #d13118;
  background-color: #f3f2f1;
}
