/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      P A G E   A N D   L A Y O U T   S T Y L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
* {
  padding: 0;
  margin: 0;
  font-size: 100%; }

html {
  font-size: 16px; }

body {
  color: #636466;
  font-family: "Montserrat", -apple-system, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  background: white; }

html.font-0 {
  font-size: 16px; }

html.font-1 {
  font-size: 19.2px; }

html.font-2 {
  font-size: 22.4px; }

h1 {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 3rem;
  margin: 16px 0 8px 0; }

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem; }

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem; }

h4 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.625rem; }

h5 {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem; }

p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #636466;
  font-weight: 400; }

ul, ol {
  margin-left: 24px;
  padding-left: 16px; }

li {
  padding-left: 8px; }

blockquote {
  padding: 1rem;
  border-left: 8px solid #BDBDBD; }

blockquote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.4rem; }

blockquote cite {
  font-size: 0.85rem;
  font-weight: 200; }

abbr, abbr[data-original-title], abbr[title] {
  text-decoration: none;
  cursor: none; }

.entry {
  min-height: 600px; }

a {
  color: #0f79bf; }
  a:hover {
    color: #0852A1; }

input.form-control {
  border: 1px solid #0f79bf;
  padding: 24px;
  vertical-align: top;
  min-height: 50px;
  background-color: white; }
  input.form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5); }
  input.form-control::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5); }
  input.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5); }
  input.form-control:focus, input.form-control:focus {
    outline: none;
    background-color: #E6F2F9;
    border: none; }

select.form-control {
  border: 1px solid #0f79bf;
  min-height: 50px; }

input, select, textarea {
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  padding: 12px;
  width: 100%; }
  input:focus, select:focus, textarea:focus {
    border-color: #0f79bf !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(15, 121, 191, 0.25); }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	L A Y O U T

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
header {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: white;
  height: 134px;
  z-index: 1000;
  width: 100%;
  transition: height 0.5s ease-in-out, background 0.5s ease-in-out; }
  header .navbar {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    height: 100px; }
    header .navbar .navbar-brand {
      flex: 1 1 0;
      min-width: 180px; }
    header .navbar .navbar-left {
      flex: 3 1 auto;
      text-align: left; }
    header .navbar .navbar-right {
      flex: 3 1 auto;
      text-align: right; }
    header .navbar ul {
      list-style-type: none; }
      header .navbar ul li a {
        color: #0f79bf;
        cursor: pointer;
        font-size: 1rem;
        font-weight: 400;
        border-bottom: 2px solid transparent;
        padding-bottom: 4px;
        transition: all 0.5s ease-in-out; }
    header .navbar .menu-header {
      float: right;
      flex: 3 1 auto; }
    header .navbar .dropdown-menu {
      border: none;
      box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1), 0px -3px 6px rgba(0, 0, 0, 0.05);
      opacity: 0;
      transition: all 0.5s ease-in-out;
      position: absolute; }
      header .navbar .dropdown-menu li {
        padding-left: 0; }
        header .navbar .dropdown-menu li a {
          border-bottom: none; }
      header .navbar .dropdown-menu .dropdown-item:focus, header .navbar .dropdown-menu .dropdown-item:hover {
        background-color: #E6F2F9;
        color: #0852A1; }
      header .navbar .dropdown-menu.show {
        opacity: 1; }
      header .navbar .dropdown-menu .dropdown-close {
        display: none; }
    header .navbar .dropdown-item {
      height: 34px; }
    header .navbar .dropdown-toggle::after {
      vertical-align: unset;
      border: none;
      width: 14px;
      height: 14px;
      background: transparent url(../assets/images/icons/icon-nav-expand-darkblue.svg) no-repeat; }
    header .navbar .menu-item.show .dropdown-toggle::after {
      background-image: url(../assets/images/icons/icon-nav-collapse-bold-darkblue.svg); }
    header .navbar .navbar-toggler .navbar-toggler-icon {
      background-image: url(../assets/images/icons/icon-hamburger-blue.svg);
      background-repeat: no-repeat; }
    header .navbar .navbar-toggler.search-toggler .navbar-toggler-icon {
      background-image: url(../assets/images/icons/icon-search-blue.svg); }
    header .navbar .navbar-toggler:focus {
      outline: none; }
  header .ribbon {
    background-color: #0f79bf;
    font-size: 13px;
    font-weight: 500;
    height: 34px;
    transition: height 0.5s ease-in-out; }
  @media (max-width: 992px) {
    header .navbar .navbar-right {
      flex-grow: unset; }
    header .ribbon .ribbon-container .ribbon-item.right {
      display: none; } }
  @media (max-width: 992px) {
    header {
      position: relative;
      top: 0;
      background-color: white; }
      header .navbar-toggler .navbar-toggler-icon {
        background-image: url(../assets/images/icons/icon-hamburger-blue.svg); }
      header .navbar-collapse {
        background-color: white;
        flex-direction: column;
        position: absolute;
        top: 100px;
        width: calc(100% - 8px);
        margin: 0 auto;
        left: 8px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 16px;
        border-radius: 0 0 8px 8px;
        display: -ms-grid;
        display: grid;
            grid-template-areas: "search" "menu"; }
        header .navbar-collapse .menu-header {
          width: 100%;
          padding: 16px;
          grid-area: menu;
          position: relative; }
          header .navbar-collapse .menu-header ul {
            margin: 0; }
          header .navbar-collapse .menu-header li {
            padding: 8px 0; }
          header .navbar-collapse .menu-header .dropdown, header .navbar-collapse .menu-header .dropleft, header .navbar-collapse .menu-header .dropright, header .navbar-collapse .menu-header .dropup {
            position: unset; }
          header .navbar-collapse .menu-header .dropdown-menu {
            position: absolute;
            top: -64px;
            left: 0;
            padding-top: 40px;
            max-width: 300px;
            overflow: hidden; }
            header .navbar-collapse .menu-header .dropdown-menu li {
              padding-bottom: 0; }
            header .navbar-collapse .menu-header .dropdown-menu .dropdown-close {
              display: block;
              content: "";
              height: 32px;
              width: 32px;
              cursor: pointer;
              border: none;
              background-size: 16px;
              background: transparent url(../assets/images/icons/icon-cross-blue.svg) no-repeat center;
              right: 8px;
              top: 8px;
              position: absolute; }
            header .navbar-collapse .menu-header .dropdown-menu .dropdown-item {
              white-space: normal;
              display: inline-block; }
        header .navbar-collapse .searchform {
          grid-area: search;
          line-height: 1.2;
          max-width: unset; } }
  @media (max-width: 992px) {
      header .navbar-collapse .menu-header {
    -ms-grid-row: 2;
    -ms-grid-column: 1; }
      header .navbar-collapse .searchform {
    -ms-grid-row: 1;
    -ms-grid-column: 1; } }

.scrolled header {
  position: fixed;
  top: 0;
  background-color: white;
  height: 100px;
  transition: height 0s, background 0.5s ease-in-out; }
  .scrolled header .ribbon {
    opacity: 0;
    height: 0;
    transition: none; }
  .scrolled header .navbar-toggler-icon {
    background-image: url(../assets/images/icons/icon-hamburger-blue.svg); }

.scrolled.admin-bar header {
  top: 32px; }

.scrolled .main-content {
  margin-top: 134px; }

@media (max-width: 992px) {
  .scrolled.admin-bar header {
    top: 0; } }

.logo {
  width: 180px;
  min-height: 60px;
  display: block;
  transition: transform 0.5s ease-in-out;
  background: transparent url(../assets/images/logos/logo-betsy-colour.svg) no-repeat; }
  .logo .logo-image {
    display: none; }

.main-content {
  min-height: 600px;
  padding-top: 134px; }

.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 1300px; }

footer {
  background-color: #636466; }
  footer a {
    color: white; }
    footer a:hover {
      color: #D3D3D3; }
  footer .footer-nav ul {
    display: flex;
    list-style-type: none;
    min-width: 100px;
    flex-wrap: wrap;
    padding: 0 0 32px 0;
    margin: 0; }
    footer .footer-nav ul li {
      padding-bottom: 8px;
      padding-right: 16px; }
      footer .footer-nav ul li a {
        color: white;
        cursor: pointer;
        font-size: 0.75rem;
        font-weight: 700;
        border-bottom: 2px solid transparent;
        padding-bottom: 4px;
        transition: border 0.5s ease-in-out; }
        footer .footer-nav ul li a:hover {
          border-bottom: 2px solid #A5D7F3;
          text-decoration: none; }
    footer .footer-nav ul.sub-menu {
      padding-left: 0;
      margin-left: 0;
      padding-top: 8px;
      flex-direction: column; }
      footer .footer-nav ul.sub-menu li {
        padding-left: 0; }
        footer .footer-nav ul.sub-menu li a {
          font-weight: 400; }
  footer .footer-container {
    display: flex;
    min-height: 300px;
    justify-content: space-between;
    padding-top: 40px;
    color: white;
    flex-wrap: wrap; }
    footer .footer-container .footer-item {
      font-size: 0.625rem;
      min-width: 230px; }
      footer .footer-container .footer-item.left {
        flex: 5 5 0;
        min-width: 230px; }
      footer .footer-container .footer-item.right {
        flex: 1 1 0; }
  footer .ribbon {
    background-color: #4B4C4E;
    font-size: 0.625rem;
    width: 100%;
    padding: 10px; }
  footer .hon-code {
    display: flex;
    font-weight: 400;
    max-width: 300px;
    float: right; }
    footer .hon-code .hon-code-logo {
      height: 50px;
      width: 40px;
      min-width: 40px;
      background: transparent url(../assets/images/logos/logo-honcode.png) no-repeat;
      background-size: 40px;
      display: block; }
    footer .hon-code .info {
      padding: 0 4px; }
  footer .partnerships {
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap; }
    footer .partnerships .principal, footer .partnerships .partners {
      display: flex;
      flex-wrap: wrap; }
    footer .partnerships label {
      text-align: left;
      margin: 16px; }
    footer .partnerships .logo-ncfh {
      margin-right: 8px;
      margin-bottom: 4px;
      min-width: 180px;
      height: 60px;
      display: block;
      transition: transform 0.5s ease-in-out;
      background: transparent url(../assets/images/logos/logo-betsy-white.svg) no-repeat 0 50%; }
    footer .partnerships .logo-wdhs {
      margin-right: 8px;
      min-width: 120px;
      height: 60px;
      display: block;
      transition: transform 0.5s ease-in-out;
      background: transparent url(../assets/images/logos/logo-wdhs-white.svg) no-repeat 0 50%; }
    footer .partnerships .logo-deakin {
      margin-right: 8px;
      min-width: 60px;
      height: 60px;
      display: block;
      transition: transform 0.5s ease-in-out;
      background: transparent url(../assets/images/logos/logo-deakin-white.svg) no-repeat 0 50%; }
  footer .copyright {
    color: #BDBDBD; }

.login h1 a {
  background-image: url(../assets/images/logos/logo-betsy-colour.svg); }

.post-password-backdrop {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  padding-top: 200px;
  background-color: #EAEAEA; }
  .post-password-backdrop .logo {
    margin-bottom: 60px; }
  .post-password-backdrop .post-password-form {
    margin: 0 auto;
    width: clamp(300px, 300px, 300px);
    font-size: 1rem; }

.password-required {
  overflow: hidden;
  max-width: 100vh; }

.print-only {
  display: none; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	P A G E S

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	C O M P O N E N T S

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.ribbon {
  display: flex;
  color: white;
  font-size: 13px; }
  .ribbon .ribbon-container {
    display: flex; }
    .ribbon .ribbon-container .ribbon-item {
      flex-grow: 1;
      margin: auto 0; }
      .ribbon .ribbon-container .ribbon-item.right {
        display: flex;
        text-align: right;
        justify-content: flex-end; }
    .ribbon .ribbon-container .ribbon-button {
      color: white;
      display: block;
      padding-left: 32px;
      font-size: 12px; }
      .ribbon .ribbon-container .ribbon-button a {
        color: white; }
      .ribbon .ribbon-container .ribbon-button .label {
        padding-left: 8px; }

.searchform {
  border: 1px solid #BDBDBD;
  padding: 8px;
  max-width: 350px;
  width: 100%;
  line-height: 0;
  background-color: rgba(255, 255, 255, 0.2); }
  .searchform input[type="text"] {
    border: none;
    width: calc(100% - 24px - 4px*2);
    padding: 0;
    vertical-align: top;
    height: 24px;
    background-color: transparent; }
    .searchform input[type="text"]:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .searchform input[type="text"]::-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .searchform input[type="text"]::placeholder {
      color: rgba(0, 0, 0, 0.5); }
    .searchform input[type="text"]:focus, .searchform input[type="text"]:focus {
      outline: none;
      box-shadow: none; }

.btn-search {
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  background: transparent url(../assets/images/icons/icon-search-grey.svg) no-repeat; }

.btn, .su-button, .wp-block-button, .qsm-quiz-container .qsm-pagination .qsm-btn, #cookie-law-info-bar .cli-plugin-button, .btn-primary, .button {
  border-radius: 0;
  text-shadow: none;
  color: white !important;
  background-color: #0f79bf;
  min-width: 120px;
  display: inline-block;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  outline: none;
  padding: 0.76rem 1rem;
  text-transform: uppercase; }
  .btn:hover, .su-button:hover, .wp-block-button:hover, .qsm-quiz-container .qsm-pagination .qsm-btn:hover, #cookie-law-info-bar .cli-plugin-button:hover, .btn-primary:hover, .button:hover {
    color: white;
    background-color: #0852A1; }
  .btn .wp-block-button__link, .su-button .wp-block-button__link, .wp-block-button .wp-block-button__link, .qsm-quiz-container .qsm-pagination .qsm-btn .wp-block-button__link, #cookie-law-info-bar .cli-plugin-button .wp-block-button__link, .btn-primary .wp-block-button__link, .button .wp-block-button__link {
    text-decoration: none;
    padding: 0;
    font-size: 1rem; }
    .btn .wp-block-button__link:not(.has-background), .su-button .wp-block-button__link:not(.has-background), .wp-block-button .wp-block-button__link:not(.has-background), .qsm-quiz-container .qsm-pagination .qsm-btn .wp-block-button__link:not(.has-background), #cookie-law-info-bar .cli-plugin-button .wp-block-button__link:not(.has-background), .btn-primary .wp-block-button__link:not(.has-background), .button .wp-block-button__link:not(.has-background) {
      background-color: transparent; }

.btn-outlined, .wp-block-button.is-style-outline {
  background-color: rgba(255, 255, 255, 0.2);
  color: #0f79bf;
  border: 1px solid #0f79bf; }
  .btn-outlined:hover, .wp-block-button.is-style-outline:hover {
    background-color: rgba(15, 121, 191, 0.5); }
  .btn-outlined .wp-block-button__link, .wp-block-button.is-style-outline .wp-block-button__link {
    color: #0f79bf;
    border: none; }
  .btn-outlined .white, .wp-block-button.is-style-outline .white {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid #0f79bf; }
    .btn-outlined .white:hover, .wp-block-button.is-style-outline .white:hover {
      background-color: rgba(255, 255, 255, 0.5); }

.scroll-indicator {
  background: transparent url(../assets/images/icons/icon-chevron-down-white.svg) no-repeat bottom;
  z-index: 10;
  height: 35px;
  width: 55px;
  margin: 0px auto;
  opacity: 0.4;
  transition: opacity 0.5s ease-in-out;
  animation-name: downarrow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: calc(50% - 27.5px); }

@keyframes downarrow {
  from {
    transform: translateY(-120px); }
  to {
    transform: translateY(-80px); } }

.toolbar {
  margin: -140px auto 48px;
  z-index: 10;
  padding: 32px;
  background-color: white;
  border-radius: 12px;
  max-width: 900px;
  display: flex;
  position: relative;
  justify-content: space-evenly;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); }
  @media (max-height: 750px) {
    .toolbar {
      margin-top: -120px; } }
  @media (max-height: 550px) {
    .toolbar {
      margin-top: 16px; } }
  .toolbar .tool {
    flex: 1 1 0px;
    text-align: center;
    padding: 0 24px; }
    .toolbar .tool .icon {
      margin: 0 auto;
      height: 64px;
      width: 64px;
      background: transparent url(../assets/images/icons/icon-herofeatures-directory-blue.svg) no-repeat center;
      transition: background 0.25s ease-in-out; }
    .toolbar .tool .title {
      font-weight: 700;
      font-size: 1.25rem;
      line-height: 1.3;
      color: #0f79bf;
      transition: color 0.25s ease-in-out; }
    .toolbar .tool .details {
      padding-top: 4px;
      font-weight: 400;
      font-size: 0.875rem;
      line-height: 1.4;
      text-align: center;
      color: #636466;
      transition: color 0.25s ease-in-out; }
    .toolbar .tool.directory .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-directory-blue.svg); }
    .toolbar .tool.health-check .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-healthcheck-blue.svg); }
    .toolbar .tool.safety .icon {
      background-image: url(../assets/images/icons/icon-safetyshop-blue.svg); }
    .toolbar .tool.study .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-study-blue.svg); }
    .toolbar .tool.enrol .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-enrol-blue.svg); }
    .toolbar .tool.gearup .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-gearup-blue.svg); }
    .toolbar .tool.research .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-our-research-blue.svg); }
    .toolbar .tool.publications .icon {
      background-image: url(../assets/images/icons/icon-herofeatures-publications-blue.svg); }
    .toolbar .tool.sun .icon {
      background-image: url(../assets/images/icons/icon-sun-blue.svg); }
    .toolbar .tool.wateringcan .icon {
      background-image: url(../assets/images/icons/icon-wateringcan-blue.svg); }
    .toolbar .tool.leaf .icon {
      background-image: url(../assets/images/icons/icon-leaf-blue.svg); }
    .toolbar .tool.shop .icon {
      background-image: url(../assets/images/icons/icon-shop-blue.svg); }
    .toolbar .tool.drip .icon {
      background-image: url(../assets/images/icons/icon-drip-blue.svg); }
    .toolbar .tool.tree .icon {
      background-image: url(../assets/images/icons/icon-tree-blue.svg); }
    .toolbar .tool.grow .icon {
      background-image: url(../assets/images/icons/icon-grow-blue.svg); }
    .toolbar .tool.hand .icon {
      background-image: url(../assets/images/icons/icon-hand-blue.svg); }
    .toolbar .tool.award .icon {
      background-image: url(../assets/images/icons/icon-award-blue.svg); }
    .toolbar .tool.film .icon {
      background-image: url(../assets/images/icons/icon-film-blue.svg); }
    .toolbar .tool.balloon .icon {
      background-image: url(../assets/images/icons/icon-balloon-blue.svg); }
    .toolbar .tool.tv .icon {
      background-image: url(../assets/images/icons/icon-tv-blue.svg); }
    .toolbar .tool.compass .icon {
      background-image: url(../assets/images/icons/icon-compass-blue.svg); }
    .toolbar .tool.mailbox .icon {
      background-image: url(../assets/images/icons/icon-mailbox-blue.svg); }
    .toolbar .tool.signs .icon {
      background-image: url(../assets/images/icons/icon-signs-blue.svg); }
    .toolbar .tool.share .icon {
      background-image: url(../assets/images/icons/icon-share-blue.svg); }
    .toolbar .tool.path .icon {
      background-image: url(../assets/images/icons/icon-path-blue.svg); }
    .toolbar .tool.flag .icon {
      background-image: url(../assets/images/icons/icon-flag-blue.svg); }
    .toolbar .tool.books .icon {
      background-image: url(../assets/images/icons/icon-books-blue.svg); }
    .toolbar .tool.people .icon {
      background-image: url(../assets/images/icons/icon-people-blue.svg); }
    .toolbar .tool.person .icon {
      background-image: url(../assets/images/icons/icon-person-blue.svg); }
    .toolbar .tool.betsy .icon {
      background-image: url(../assets/images/icons/icon-betsy-blue.svg); }
    .toolbar .tool:hover {
      text-decoration: none; }
      .toolbar .tool:hover .title {
        color: #0852A1; }
      .toolbar .tool:hover .details {
        color: #4B4C4E; }
      .toolbar .tool:hover.directory .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-directory-darkblue.svg); }
      .toolbar .tool:hover.health-check .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-healthcheck-darkblue.svg); }
      .toolbar .tool:hover.safety .icon {
        background-image: url(../assets/images/icons/icon-safetyshop-darkblue.svg); }
      .toolbar .tool:hover.study .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-study-darkblue.svg); }
      .toolbar .tool:hover.enrol .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-enrol-darkblue.svg); }
      .toolbar .tool:hover.gearup .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-gearup-darkblue.svg); }
      .toolbar .tool:hover.research .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-our-research-darkblue.svg); }
      .toolbar .tool:hover.publications .icon {
        background-image: url(../assets/images/icons/icon-herofeatures-publications-darkblue.svg); }
      .toolbar .tool:hover.sun .icon {
        background-image: url(../assets/images/icons/icon-sun-darkblue.svg); }
      .toolbar .tool:hover.wateringcan .icon {
        background-image: url(../assets/images/icons/icon-wateringcan-darkblue.svg); }
      .toolbar .tool:hover.leaf .icon {
        background-image: url(../assets/images/icons/icon-leaf-darkblue.svg); }
      .toolbar .tool:hover.shop .icon {
        background-image: url(../assets/images/icons/icon-shop-darkblue.svg); }
      .toolbar .tool:hover.drip .icon {
        background-image: url(../assets/images/icons/icon-drip-darkblue.svg); }
      .toolbar .tool:hover.tree .icon {
        background-image: url(../assets/images/icons/icon-tree-darkblue.svg); }
      .toolbar .tool:hover.grow .icon {
        background-image: url(../assets/images/icons/icon-grow-darkblue.svg); }
      .toolbar .tool:hover.hand .icon {
        background-image: url(../assets/images/icons/icon-hand-darkblue.svg); }
      .toolbar .tool:hover.award .icon {
        background-image: url(../assets/images/icons/icon-award-darkblue.svg); }
      .toolbar .tool:hover.film .icon {
        background-image: url(../assets/images/icons/icon-film-darkblue.svg); }
      .toolbar .tool:hover.balloon .icon {
        background-image: url(../assets/images/icons/icon-balloon-darkblue.svg); }
      .toolbar .tool:hover.tv .icon {
        background-image: url(../assets/images/icons/icon-tv-darkblue.svg); }
      .toolbar .tool:hover.compass .icon {
        background-image: url(../assets/images/icons/icon-compass-darkblue.svg); }
      .toolbar .tool:hover.mailbox .icon {
        background-image: url(../assets/images/icons/icon-mailbox-darkblue.svg); }
      .toolbar .tool:hover.signs .icon {
        background-image: url(../assets/images/icons/icon-signs-darkblue.svg); }
      .toolbar .tool:hover.share .icon {
        background-image: url(../assets/images/icons/icon-share-darkblue.svg); }
      .toolbar .tool:hover.path .icon {
        background-image: url(../assets/images/icons/icon-path-darkblue.svg); }
      .toolbar .tool:hover.flag .icon {
        background-image: url(../assets/images/icons/icon-flag-darkblue.svg); }
      .toolbar .tool:hover.books .icon {
        background-image: url(../assets/images/icons/icon-books-darkblue.svg); }
      .toolbar .tool:hover.people .icon {
        background-image: url(../assets/images/icons/icon-people-darkblue.svg); }
      .toolbar .tool:hover.person .icon {
        background-image: url(../assets/images/icons/icon-person-darkblue.svg); }
      .toolbar .tool:hover.betsy .icon {
        background-image: url(../assets/images/icons/icon-betsy-darkblue.svg); }
  @media (max-width: 768px) {
    .toolbar {
      margin-left: 8px;
      margin-right: 8px;
      padding: 24px 8px; }
      .toolbar .tool {
        padding: 0 8px; }
        .toolbar .tool .title {
          font-size: 0.875rem;
          line-height: 1.4; }
        .toolbar .tool .details {
          font-size: 0.75rem;
          line-height: 1.4; } }

.tiles {
  display: -ms-grid;
  display: grid;
  justify-content: space-between;
  flex-wrap: wrap;
  align-self: flex-end;
  padding: 8px 0 48px 0;
  overflow: hidden;
  gap: 16px;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  margin: -8px; }

.tiles > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; }

.tiles > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3; }

.tiles > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5; }

.tiles > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7; }
  .tiles .tile {
    flex: 1 1 0;
    color: #333333;
    background-color: white;
    text-decoration: none;
    display: -ms-grid;
    display: grid;
    position: relative;
    -ms-grid-rows: 200px auto auto auto 20px;
    grid-template-rows: 200px auto auto auto 20px;
        grid-template-areas: "feature-image" "subject" "title" "excerpt" "date";
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
    border-radius: 8px;
    padding-bottom: 16px; }
    .tiles .tile .feature-image {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      width: 100%;
      height: 200px;
      margin-bottom: 16px;
      background-size: cover;
      background-position: center;
      z-index: 10;
      position: relative;
      background-image: url(../assets/images/heros/placeholder-600.jpg);
      grid-area: feature-image; }
      .tiles .tile .feature-image::before {
        width: 100%;
        height: 200px;
        margin-bottom: 16px;
        position: relative;
        top: 0;
        z-index: 11;
        top: 0;
        display: block;
        content: ""; }
    .tiles .tile .subject {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
      color: #333333;
      font-size: 0.875rem;
      font-weight: 400;
      display: block;
      text-transform: uppercase;
      padding: 16px 16px 0 16px;
      grid-area: subject; }
      .tiles .tile .subject .subject-link {
        color: #333333; }
        .tiles .tile .subject .subject-link:after {
          content: "|";
          padding: 0 4px; }
        .tiles .tile .subject .subject-link:last-of-type:after {
          content: ""; }
    .tiles .tile .title {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
      color: #0f79bf;
      font-size: 1.125rem;
      line-height: 1.625rem;
      font-weight: 700;
      transition: color 0.25s ease-in-out;
      display: block;
      max-height: 3.25rem;
      height: 3.25rem;
      overflow: hidden;
      padding: 0 16px;
      grid-area: title; }
    .tiles .tile .excerpt {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
      font-size: 0.875rem;
      line-height: 1.375rem;
      font-weight: 200;
      display: block;
      overflow: hidden;
      word-break: break-word;
      max-height: 4.125rem;
      height: 4.125rem;
      padding: 0 16px;
      grid-area: excerpt; }
    .tiles .tile .date {
      -ms-grid-row: 5;
      -ms-grid-column: 1;
      font-size: 0.6rem;
      font-weight: 200;
      padding: 4px 16px;
      grid-area: date; }
    .tiles .tile:hover {
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); }
      .tiles .tile:hover .title {
        color: #0852A1; }
      .tiles .tile:hover .feature-image::before {
        background-color: rgba(15, 121, 191, 0.5); }
    .tiles .tile.tile-placeholder {
      opacity: 0.2; }
      .tiles .tile.tile-placeholder .feature-image::before {
        background-repeat: no-repeat;
        display: inline-block;
        position: relative;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        animation-name: placeholder-shimmer;
        animation-timing-function: linear; }

@keyframes placeholder-shimmer {
  0% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 10%); }
  10% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0) 20%); }
  20% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0) 30%); }
  30% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0) 40%); }
  40% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0) 50%); }
  50% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 60%); }
  60% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 70%); }
  70% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 80%); }
  80% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0) 90%); }
  90% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 90%, rgba(255, 255, 255, 0) 100%); }
  100% {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 90%, rgba(255, 255, 255, 0) 100%); } }
  .tiles .tile.type-tribe_events {
    -ms-grid-rows: 200px auto auto auto 20px;
    grid-template-rows: 200px auto auto auto 20px;
        grid-template-areas: "feature-image" "subject" "title" "date" "excerpt";
    -ms-grid-rows: 200px auto auto 30px auto;
    grid-template-rows: 200px auto auto 30px auto; }
    .tiles .tile.type-tribe_events .date {
      font-size: 1.2rem;
      font-weight: 700; }
    .tiles .tile.type-tribe_events.past:before {
      content: "Finished";
      position: absolute;
      top: 8px;
      left: 8px;
      font-size: 0.8rem;
      background-color: white;
      border-radius: 4px;
      padding: 4px;
      z-index: 20; }
  .tiles.query-publications .tile {
    -ms-grid-rows: 0 42px 108px auto auto auto 20px;
    grid-template-rows: 0 42px 108px auto auto auto 20px; }
    .tiles.query-publications .tile .feature-image {
      display: none; }
    .tiles.query-publications .tile .subject, .tiles.query-publications .tile .title {
      height: unset;
      max-height: unset;
      overflow: hidden; }
    .tiles.query-publications .tile .excerpt {
      padding-top: 12px;
      height: unset;
      max-height: unset; }
  @media only screen and (max-width: 768px) {
    .tiles {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      margin: 0; }
      .tiles .tile {
        margin: 0; } }
  @media only screen and (max-width: 576px) {
    .tiles {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }
      .tiles .tile {
        margin: 8px 0; } }

.tile-loader .show-more {
  text-transform: uppercase;
  font-size: 0.875rem;
  color: inherit;
  margin-top: -10px;
  display: block; }

.tile-loader .tiles {
  display: flex;
  -ms-grid-columns: unset;
  grid-template-columns: unset; }
  .tile-loader .tiles .tile {
    min-width: 250px;
    margin: 8px 8px; }

.featured-service {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 96px;
  text-align: center;
  color: white;
  min-height: 360px; }
  .featured-service h4 {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 2.25rem;
    line-height: 1.5;
    word-break: normal;
    position: relative;
    z-index: 10; }
  .featured-service .details {
    font-weight: 500;
    font-size: 1rem;
    margin: 16px 0;
    position: relative;
    z-index: 10; }
  .featured-service .btn-outlined {
    border-color: white;
    position: relative;
    z-index: 10; }
    .featured-service .btn-outlined:hover {
      background-color: rgba(255, 255, 255, 0.5); }
  .featured-service::before {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.05) 80%); }
  @media only screen and (max-width: 576px) {
    .featured-service {
      padding: 96px 4px;
      min-width: 300px;
      flex-basis: 0; }
      .featured-service h4 {
        font-size: 1.5rem; } }

/* Tablet Landscape */
@media screen and (max-width: 1060px) {
  #primary {
    width: 67%; }
  #secondary {
    width: 30%;
    margin-left: 3%; } }

/* Tabled Portrait */
@media screen and (max-width: 768px) {
  #primary {
    width: 100%; }
  #secondary {
    width: 100%;
    margin: 0;
    border: none; } }

.flex-block {
  min-height: 200px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  .flex-block > div, .flex-block > figure, .flex-block > img {
    flex: 1 1 0px; }

.special-tile {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 220px;
  min-width: 250px;
  display: block;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  padding: 32px 16px;
  position: relative;
  margin: 16px 8px;
  font-size: 1.875rem;
  line-height: 2.125rem;
  border-radius: 8px;
  flex: 1 1 0; }
  .special-tile .title, .special-tile h4 {
    position: relative;
    z-index: 10;
    color: white; }
  .special-tile::before {
    height: 220px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 80%);
    border-radius: 8px; }
  .special-tile:hover {
    text-decoration: none; }
    .special-tile:hover::before {
      background-color: rgba(15, 121, 191, 0.5);
      background: black;
      background: linear-gradient(180deg, rgba(7, 63, 122, 0.8) 0%, rgba(7, 63, 122, 0.6) 100%); }
  .special-tile.a {
    color: white; }

a.special-tile {
  color: white; }

.info-block {
  padding: 32px;
  background-color: #E6F2F9;
  margin: 32px 0;
  border-radius: 8px; }

.team-member-block {
  padding: 32px 32px 48px 32px;
  border-radius: 8px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
  position: relative;
  text-align: center;
  max-width: 400px;
  margin: 8px;
  min-width: 320px; }
  .team-member-block .photo {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    margin: 0 auto;
    padding: 10px;
    background-size: cover;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; }
  .team-member-block .name {
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0852A1; }
    .team-member-block .name.placeholder {
      color: #BDBDBD; }
  .team-member-block .title {
    font-size: 1rem; }
  .team-member-block .subtitle {
    color: #BDBDBD;
    font-size: 0.8rem; }
  .team-member-block .bio {
    padding: 16px 0; }
  .team-member-block .social-links {
    justify-content: center;
    bottom: 20px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    width: 100%; }

.widget {
  margin-bottom: 48px; }
  .widget > * {
    padding: 16px; }

.entry-tools .widget > * {
  padding: 0; }

.social-links {
  justify-content: flex-end;
  display: flex;
  list-style-type: none; }
  .social-links li a, .social-links > a {
    height: 30px;
    width: 30px;
    background: transparent url(../assets/images/icons/icon-facebook-white.svg) no-repeat;
    display: block;
    cursor: pointer;
    margin: 0 4px; }
  .social-links .facebook {
    background-image: url(../assets/images/icons/icon-facebook-white.svg); }
  .social-links .twitter {
    background-image: url(../assets/images/icons/icon-twitter-white.svg); }
  .social-links .youtube {
    background-image: url(../assets/images/icons/icon-youtube-white.svg); }
  .social-links .linkedin {
    background-image: url(../assets/images/icons/icon-linkedin-white.svg); }
  .social-links .instagram {
    background-image: url(../assets/images/icons/icon-instagram-white.svg); }
  .social-links .website {
    background-image: url(../assets/images/icons/icon-website-white.svg); }
  .social-links .researchgate {
    background-image: url(../assets/images/icons/icon-researchgate-white.svg); }
  .social-links .orcidid {
    background-image: url(../assets/images/icons/icon-orcidid-white.svg); }
  .social-links.coloured .facebook {
    background-image: url(../assets/images/icons/icon-facebook-blue.svg); }
  .social-links.coloured .twitter {
    background-image: url(../assets/images/icons/icon-twitter-blue.svg); }
  .social-links.coloured .youtube {
    background-image: url(../assets/images/icons/icon-youtube-blue.svg); }
  .social-links.coloured .linkedin {
    background-image: url(../assets/images/icons/icon-linkedin-blue.svg); }
  .social-links.coloured .instagram {
    background-image: url(../assets/images/icons/icon-instagram-blue.svg); }
  .social-links.coloured .website {
    background-image: url(../assets/images/icons/icon-website-blue.svg); }
  .social-links.coloured .researchgate {
    background-image: url(../assets/images/icons/icon-researchgate-blue.svg); }
  .social-links.coloured .orcidid {
    background-image: url(../assets/images/icons/icon-orcidid-blue.svg); }

.related-posts-widget {
  padding: 16px; }

.subscribe-widget, .shop-widget, .graphic-tile-widget, .subscribe-block {
  background: transparent url(../assets/images/heros/wheat-harvest.jpg) no-repeat center;
  margin: 0;
  padding: 16px;
  color: white;
  text-align: center;
  background-size: cover;
  position: relative;
  min-height: 200px; }
  .subscribe-widget p, .shop-widget p, .graphic-tile-widget p, .subscribe-block p {
    color: white; }
  .subscribe-widget .icon, .shop-widget .icon, .graphic-tile-widget .icon, .subscribe-block .icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-size: 50px; }
  .subscribe-widget input, .shop-widget input, .graphic-tile-widget input, .subscribe-block input {
    margin: 16px 0; }
  .subscribe-widget > *, .shop-widget > *, .graphic-tile-widget > *, .subscribe-block > * {
    position: relative;
    z-index: 10; }
  .subscribe-widget:before, .shop-widget:before, .graphic-tile-widget:before, .subscribe-block:before {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    display: block;
    content: "";
    background: rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 80%); }

.subscribe-block {
  background-image: none; }
  .subscribe-block:before {
    display: none;
    background: none;
    content: unset; }
  .subscribe-block .subscribe-block-body {
    width: 300px;
    margin: 0 auto; }

.shop-widget {
  background: transparent url(../assets/images/heros/wire-fence.jpg) no-repeat center;
  margin: 0;
  padding: 16px;
  color: white;
  text-align: center;
  background-size: cover; }

.icon {
  height: 30px;
  width: 30px;
  display: block;
  background-repeat: no-repeat;
  padding: 4px;
  display: block;
  cursor: pointer;
  margin: 0 4px;
  background-size: 30px; }
  .icon.print {
    background-image: url(../assets/images/icons/icon-print-white.svg); }
  .icon.listen {
    background-image: url(../assets/images/icons/icon-listen-white.svg); }
  .icon.mailbox {
    background-image: url(../assets/images/icons/icon-mailbox-white.svg); }
  .icon.safetyshop {
    background-image: url(../assets/images/icons/icon-safetyshop-white.svg); }
  .icon.cross {
    background-image: url(../assets/images/icons/icon-cross-white.svg); }
  .icon.blue.cross {
    background-image: url(../assets/images/icons/icon-cross-blue.svg); }
  .icon.black.cross {
    background-image: url(../assets/images/icons/icon-cross-black.svg); }
  .icon.mini {
    height: 15px;
    width: 15px;
    background-size: 15px; }

.contact, .citation {
  padding: 0 0 16px 0; }
  .contact a, .citation a {
    display: block; }
  .contact .name, .contact .title, .citation .name, .citation .title {
    color: #0f79bf;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2; }
    .contact .name:hover, .contact .title:hover, .citation .name:hover, .citation .title:hover {
      color: #0852A1; }
  .contact .details, .citation .details {
    color: #636466; }
  .contact .phone, .contact .website, .contact .email, .contact .fax, .citation .phone, .citation .website, .citation .email, .citation .fax {
    color: #0f79bf;
    padding-left: 24px;
    background-size: 16px;
    background-position: left center;
    background-repeat: no-repeat; }
    .contact .phone:hover, .contact .website:hover, .contact .email:hover, .contact .fax:hover, .citation .phone:hover, .citation .website:hover, .citation .email:hover, .citation .fax:hover {
      color: #0852A1; }
  .contact .phone, .citation .phone {
    background-image: url(../assets/images/icons/icon-phone-blue.svg); }
    .contact .phone:hover, .citation .phone:hover {
      background-image: url(../assets/images/icons/icon-phone-darkblue.svg); }
  .contact .website, .citation .website {
    background-image: url(../assets/images/icons/icon-globe-blue.svg); }
    .contact .website:hover, .citation .website:hover {
      background-image: url(../assets/images/icons/icon-globe-darkblue.svg); }
  .contact .email, .citation .email {
    background-image: url(../assets/images/icons/icon-mail-blue.svg); }
    .contact .email:hover, .citation .email:hover {
      background-image: url(../assets/images/icons/icon-mail-darkblue.svg); }
  .contact .fax, .citation .fax {
    background-image: url(../assets/images/icons/icon-fax-blue.svg); }
    .contact .fax:hover, .citation .fax:hover {
      background-image: url(../assets/images/icons/icon-fax-darkblue.svg); }

.citation {
  background-color: #E6F2F9;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px; }
  .citation .title {
    display: inline;
    font-size: 1rem;
    font-weight: 400; }
  .citation > * {
    font-size: 1rem;
    font-weight: 400; }
  .citation .author:after {
    content: " "; }
  .citation .date:after, .citation .title:after, .citation .reference:after {
    content: ". "; }
  .citation .publisher {
    font-style: italic; }
    .citation .publisher:after {
      content: ", "; }
  .citation:before {
    content: "Citation";
    font-size: 0.8rem;
    color: #0f79bf;
    display: block;
    padding-bottom: 4px; }
  .citation .website {
    margin-top: 8px; }
  .citation .date:after {
    content: "). "; }
  .citation .date:before {
    content: "("; }

.calendar-event {
  padding-left: 48px;
  display: block;
  color: #636466;
  background-size: 32px;
  background: transparent url(../assets/images/icons/icon-calendar-blue.svg) no-repeat left 10px; }
  .calendar-event .date {
    font-size: 1.125rem;
    font-weight: 700; }
  .calendar-event .name, .calendar-event .title {
    font-size: 1rem; }
  .calendar-event .details {
    font-size: 0.625rem; }
  .calendar-event:hover {
    text-decoration: none;
    background-image: url(../assets/images/icons/icon-calendar-darkblue.svg); }
    .calendar-event:hover .date {
      color: #0852A1;
      text-decoration: underline; }
    .calendar-event:hover .name, .calendar-event:hover .title, .calendar-event:hover .details {
      color: #636466; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	S H O R T C O D E S

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.entry .su-accordion, .main-content .su-accordion {
  padding-top: 16px;
  border-top: 1px solid #BDBDBD; }

.entry .su-spoiler-style-fancy, .main-content .su-spoiler-style-fancy {
  border: none;
  border-radius: 0;
  color: #0f79bf; }
  .entry .su-spoiler-style-fancy .su-spoiler-title, .main-content .su-spoiler-style-fancy .su-spoiler-title {
    background-color: transparent;
    border: none;
    border-radius: 0; }
    .entry .su-spoiler-style-fancy .su-spoiler-title:focus, .main-content .su-spoiler-style-fancy .su-spoiler-title:focus {
      border: none;
      outline: none; }
  .entry .su-spoiler-style-fancy.su-spoiler-icon-plus .su-spoiler-icon::before, .main-content .su-spoiler-style-fancy.su-spoiler-icon-plus .su-spoiler-icon::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: transparent url(../assets/images/icons/icon-nav-collapse-bold-darkblue.svg) no-repeat center;
    background-size: 16px; }
  .entry .su-spoiler-style-fancy.su-spoiler-icon-plus.su-spoiler-closed .su-spoiler-icon::before, .main-content .su-spoiler-style-fancy.su-spoiler-icon-plus.su-spoiler-closed .su-spoiler-icon::before {
    background-image: url(../assets/images/icons/icon-nav-expand-darkblue.svg);
    content: ''; }
  .entry .su-spoiler-style-fancy .su-spoiler-content, .main-content .su-spoiler-style-fancy .su-spoiler-content {
    border-bottom: 1px solid #BDBDBD;
    border-radius: 0;
    color: #636466; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	W O R D P R E S S   B L O C K S

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.wp-block-verse {
  padding: 32px;
  background-color: #E6F2F9; }

.wp-block-pullquote {
  background-color: #E6F2F9; }

.wp-block-group.info {
  padding: 32px;
  background-color: #E6F2F9;
  margin: 32px 0; }

.wp-block-file {
  padding-left: 32px;
  background: transparent url(../assets/images/icons/icon-document-blue.svg) no-repeat 0 50%;
  background-size: 24px;
  min-height: 32px;
  line-height: 32px;
  color: #0f79bf; }
  .wp-block-file a {
    color: #0f79bf;
    text-transform: capitalize; }
    .wp-block-file a:hover {
      text-decoration: none; }
  .wp-block-file .wp-block-file__button {
    background-color: #0f79bf;
    border-radius: 0; }

.wp-block-quote {
  border-left-color: #E6F2F9;
  padding: 16px 0 16px 48px; }

#glt-translate-trigger {
  z-index: 10000;
  transition: opacity 0.5s ease-in-out; }
  #glt-translate-trigger .notranslate:before {
    content: "";
    background: transparent url(../assets/images/logos/logo-flag-england.svg) no-repeat center;
    width: 36px;
    height: 18px;
    display: inline-block;
    margin: -2px 4px;
    background-size: 18px; }

.scrolled #glt-translate-trigger {
  opacity: 0; }

/* Tabled Portrait */
@media screen and (max-width: 768px) {
  iframe.healthtools {
    height: 2000px; } }

#amazon-polly-audio-table {
  margin-top: 128px; }
  #amazon-polly-audio-table:before {
    content: "To listen to the content on this page, click the play button below:";
    font-size: 0.8rem;
    display: block;
    padding-top: 128px; }

.amazon-ai-player {
  outline: none; }

.post-password-required #amazon-polly-audio-table {
  display: none; }

.qsm-quiz-container .qsm-page {
  min-height: 400px; }

.qsm-quiz-container .qsm-pagination {
  display: flex; }
  .qsm-quiz-container .qsm-pagination.border {
    border: none !important; }
  .qsm-quiz-container .qsm-pagination .qsm-btn {
    flex: 0 1 0;
    margin: 16px; }
  .qsm-quiz-container .qsm-pagination .qsm-progress-bar {
    flex: 1 1 0; }

.qsm-quiz-container .qmn_mc_answer_wrap {
  display: flex;
  padding: 16px 0; }
  .qsm-quiz-container .qmn_mc_answer_wrap > * {
    flex: 1 1 0; }
    .qsm-quiz-container .qmn_mc_answer_wrap > *:focus {
      outline: none;
      box-shadow: none; }
  .qsm-quiz-container .qmn_mc_answer_wrap:hover {
    background-color: #E6F2F9; }

#cookie-law-info-bar {
  z-index: 20000; }

#cookie-law-info-again {
  display: none !important; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	L A N D I N G    P A G E S

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.page-template-landing-page {
  background-color: #EAEAEA; }
  .page-template-landing-page h3 {
    text-transform: uppercase;
    color: white;
    font-weight: 800;
    font-size: 24px;
    line-height: 34px; }
  @media (min-width: 992px) {
    .page-template-landing-page:not(.scrolled) header {
      background-color: transparent;
      box-shadow: none; }
      .page-template-landing-page:not(.scrolled) header ul li a {
        color: white;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3); }
      .page-template-landing-page:not(.scrolled) header .dropdown-toggle::after {
        background-image: url(../assets/images/icons/icon-nav-expand-white.svg); }
      .page-template-landing-page:not(.scrolled) header .show .dropdown-toggle::after {
        background-image: url(../assets/images/icons/icon-nav-collapse-bold-white.svg); }
      .page-template-landing-page:not(.scrolled) header .logo {
        background-image: url(../assets/images/logos/logo-betsy-white.svg); }
      .page-template-landing-page:not(.scrolled) header .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.8);
        text-shadow: none; }
        .page-template-landing-page:not(.scrolled) header .dropdown-menu .dropdown-item {
          color: #0f79bf;
          text-shadow: none; }
          .page-template-landing-page:not(.scrolled) header .dropdown-menu .dropdown-item:focus, .page-template-landing-page:not(.scrolled) header .dropdown-menu .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.25);
            color: #0852A1; }
      .page-template-landing-page:not(.scrolled) header .ribbon {
        background-color: #0f79bf; }
      .page-template-landing-page:not(.scrolled) header .navbar-toggler-icon {
        background-image: url(../assets/images/icons/icon-hamburger-white.svg); }
    .page-template-landing-page:not(.scrolled) .searchform {
      border-color: white; }
      .page-template-landing-page:not(.scrolled) .searchform input {
        color: white; }
        .page-template-landing-page:not(.scrolled) .searchform input:-ms-input-placeholder {
          color: rgba(255, 255, 255, 0.5); }
        .page-template-landing-page:not(.scrolled) .searchform input::-ms-input-placeholder {
          color: rgba(255, 255, 255, 0.5); }
        .page-template-landing-page:not(.scrolled) .searchform input::placeholder {
          color: rgba(255, 255, 255, 0.5); }
    .page-template-landing-page:not(.scrolled) .btn-search {
      background-image: url(../assets/images/icons/icon-search-white.svg); } }
  .page-template-landing-page .landing-page {
    margin-top: 0;
    padding: 0; }
  .page-template-landing-page .landing-page-block {
    padding: 48px 32px;
    min-height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
    @media (max-width: 768px) {
      .page-template-landing-page .landing-page-block {
        padding: 48px 15px; }
        .page-template-landing-page .landing-page-block > .container-xl {
          padding-left: 0;
          padding-right: 0; } }
  .page-template-landing-page .hero {
    width: 100%;
    margin: -134px 0 0 0;
    padding: 0 0 24px 0;
    color: white;
    background-color: #0852A1; }
    .page-template-landing-page .hero .hero-background, .page-template-landing-page .hero .hero-backdrop {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 0;
      height: 100vh;
      min-height: 600px;
      max-height: 900px;
      overflow: hidden; }
    .page-template-landing-page .hero .hero-background {
      display: flex; }
      .page-template-landing-page .hero .hero-background::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 0;
        background-size: cover;
        background-position: center;
        height: 100vh;
        min-height: 600px;
        max-height: 900px;
        display: block;
        content: ""; }
    .page-template-landing-page .hero .hero-backdrop {
      z-index: 1;
      position: absolute;
      background-size: cover;
      background-position: center; }
      .page-template-landing-page .hero .hero-backdrop::before {
        height: 100vh;
        min-height: 600px;
        max-height: 900px;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
        display: block;
        content: "";
        background: rgba(0, 0, 0, 0.2);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%); }
    .page-template-landing-page .hero .hero-body {
      width: 100%; }
    .page-template-landing-page .hero .ticker-prev {
      position: absolute;
      opacity: 0.5;
      cursor: pointer;
      left: 8px;
      top: 50%;
      z-index: 100;
      width: 30px;
      height: 30px;
      margin: auto 0;
      background: transparent url(../assets/images/icons/icon-chevron-left-white.svg) no-repeat; }
    .page-template-landing-page .hero .ticker-next {
      position: absolute;
      opacity: 0.5;
      cursor: pointer;
      right: 8px;
      top: 50%;
      z-index: 100;
      width: 30px;
      height: 30px;
      margin: auto 0;
      background: transparent url(../assets/images/icons/icon-chevron-right-white.svg) no-repeat; }
    .page-template-landing-page .hero .hero-item {
      opacity: 0;
      position: relative;
      width: 100%;
      top: 0;
      left: 0;
      transition: opacity 1s ease-in-out; }
    .page-template-landing-page .hero .value-prop {
      padding: 200px 32px 132px 100px;
      text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
      z-index: 10;
      position: absolute;
      top: 0;
      left: 0;
      overflow: hidden;
      transition: opacity 0.5s ease-in-out; }
      .page-template-landing-page .hero .value-prop .category {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.03em; }
      .page-template-landing-page .hero .value-prop h2 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 4.25rem;
        overflow: hidden; }
      .page-template-landing-page .hero .value-prop .excerpt {
        width: 70%;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2.25rem;
        padding-bottom: 32px; }
      @media (max-width: 768px) {
        .page-template-landing-page .hero .value-prop {
          padding-top: 134px;
          padding-left: 48px; }
          .page-template-landing-page .hero .value-prop h2 {
            font-size: 2.25rem;
            line-height: 3rem;
            max-width: 300px; }
          .page-template-landing-page .hero .value-prop .excerpt {
            width: 100%;
            font-size: 1.125rem;
            line-height: 1.6875rem; } }
      @media (max-width: 992px) {
        .page-template-landing-page .hero .value-prop .excerpt {
          width: 100%; } }
      @media (max-height: 600px) {
        .page-template-landing-page .hero .value-prop .excerpt {
          width: 100%; } }
      @media (max-height: 700px) {
        .page-template-landing-page .hero .value-prop {
          padding-top: 150px; } }
  .page-template-landing-page .tick-1 .hero .hero-item:nth-child(1) {
    opacity: 1; }
  .page-template-landing-page .tick-2 .hero .hero-item:nth-child(2) {
    opacity: 1; }
  .page-template-landing-page .tick-3 .hero .hero-item:nth-child(3) {
    opacity: 1; }
  .page-template-landing-page .tick-4 .hero .hero-item:nth-child(4) {
    opacity: 1; }
  .page-template-landing-page .tick-5 .hero .hero-item:nth-child(5) {
    opacity: 1; }
  .page-template-landing-page .tick-6 .hero .hero-item:nth-child(6) {
    opacity: 1; }
  .page-template-landing-page .tick-7 .hero .hero-item:nth-child(7) {
    opacity: 1; }
  .page-template-landing-page .tick-8 .hero .hero-item:nth-child(8) {
    opacity: 1; }
  .page-template-landing-page.page-farmers .hero {
    background-color: #7b5a3f; }
  .page-template-landing-page.page-education .hero {
    background-color: #0f79bf; }
  .page-template-landing-page.page-research .hero {
    background-color: #073F7A; }
  .page-template-landing-page .featured {
    background-color: #0852A1;
    color: white;
    min-height: 300px; }
    .page-template-landing-page .featured h3, .page-template-landing-page .featured p, .page-template-landing-page .featured a {
      color: white; }
  .page-template-landing-page.page-farmers .featured {
    background-color: #7b5a3f;
    color: white; }
    .page-template-landing-page.page-farmers .featured h3, .page-template-landing-page.page-farmers .featured p, .page-template-landing-page.page-farmers .featured a {
      color: white; }
  .page-template-landing-page.page-education .featured {
    background-color: #0f79bf;
    color: white; }
    .page-template-landing-page.page-education .featured h3, .page-template-landing-page.page-education .featured p, .page-template-landing-page.page-education .featured a {
      color: white; }
  .page-template-landing-page.page-research .featured {
    background-color: #073F7A;
    color: white; }
    .page-template-landing-page.page-research .featured h3, .page-template-landing-page.page-research .featured p, .page-template-landing-page.page-research .featured a {
      color: white; }
  .page-template-landing-page.scrolled .hero {
    margin-top: 0; }
  .page-template-landing-page.scrolled .scroll-indicator {
    display: none; }
  .page-template-landing-page #amazon-polly-audio-table {
    display: none; }

.landing-page-block.services, .landing-page-block.about {
  background-color: #4B4C4E;
  min-height: 300px;
  padding: 0;
  max-height: unset;
  display: flex;
  flex-wrap: wrap; }
  .landing-page-block.services .featured-service, .landing-page-block.about .featured-service {
    flex-grow: 1;
    flex-basis: 0; }
    .landing-page-block.services .featured-service:nth-child(1), .landing-page-block.about .featured-service:nth-child(1) {
      width: 100%;
      flex-basis: auto; }
      @media only screen and (max-width: 576px) {
        .landing-page-block.services .featured-service:nth-child(1), .landing-page-block.about .featured-service:nth-child(1) {
          flex-basis: 0; } }

.landing-page-block h3 {
  color: #7b5a3f; }

.landing-page-block.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }

.landing-page-block.discovery {
  background-color: #EAEAEA;
  min-height: 300px; }
  .landing-page-block.discovery h3 {
    color: #7b5a3f; }

.landing-page-block.links, .landing-page-block.partner-links {
  background-color: white;
  min-height: 300px; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	P A G E S   A N D   P O S T S

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.entry {
  padding-top: 0; }
  .entry .entry-header {
    background-color: #636466;
    color: white;
    padding: 32px 0 0 0; }
    .entry .entry-header .entry-category {
      font-size: 0.875rem;
      line-height: 1.5rem;
      color: white;
      text-transform: uppercase; }
    .entry .entry-header a {
      color: white; }
    .entry .entry-header h1 {
      margin-top: 0;
      padding: 0; }
    .entry .entry-header .entry-header-inner {
      padding-bottom: 32px; }
    .entry .entry-header .entry-extras {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .entry .entry-header .entry-extras .entry-info {
        flex: 1 1 0;
        min-width: 200px; }
      .entry .entry-header .entry-extras .entry-tools {
        display: flex;
        justify-content: flex-end;
        flex: 1 1 0; }
        .entry .entry-header .entry-extras .entry-tools .widget {
          margin-bottom: 0; }
      .entry .entry-header .entry-extras .entry-output {
        display: flex; }
      @media (max-width: 576px) {
        .entry .entry-header .entry-extras {
          flex-direction: column; }
          .entry .entry-header .entry-extras .entry-tools {
            justify-content: flex-start;
            padding-top: 16px; } }
  .entry .entry-feature-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden; }
    .entry .entry-feature-image .entry-feature-excerpt {
      color: white;
      background-color: rgba(0, 0, 0, 0.7);
      bottom: 0;
      position: absolute;
      width: 100%;
      padding: 48px 0; }
  .entry ul.event-breadcrumbs {
    display: flex;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0; }
    .entry ul.event-breadcrumbs li {
      padding-left: 0;
      padding-right: 12px; }
      .entry ul.event-breadcrumbs li:before {
        content: "|";
        padding-right: 8px;
        font-size: 0.875rem;
        line-height: 1.5rem; }
      .entry ul.event-breadcrumbs li:first-child:before {
        display: none; }
  .entry .entry-modified, .entry .entry-created {
    font-size: 0.7rem; }
  .entry .entry-content {
    padding: 48px 16px;
    min-height: 600px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word; }
    .entry .entry-content h2 {
      color: #7b5a3f;
      margin-top: 48px; }
    .entry .entry-content h3 {
      color: #0852A1;
      margin-top: 32px; }
    .entry .entry-content.has-sidebar {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: auto 32px 300px;
      grid-template-columns: auto 300px;
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      gap: 32px; }
    .entry .entry-content.has-sidebar > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; }
    .entry .entry-content.has-sidebar > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3; }
      @media (max-width: 768px) {
        .entry .entry-content.has-sidebar {
          -ms-grid-columns: auto;
          grid-template-columns: auto; } }
    @media (max-width: 768px) {
      .entry .entry-content {
        padding: 48px 12px;
        overflow: hidden; } }
    .entry .entry-content .entry-feature-image {
      overflow: hidden;
      margin-bottom: 32px;
      display: inline-block;
      width: 100%;
      min-height: unset; }
      .entry .entry-content .entry-feature-image img {
        border-radius: 8px;
        width: 100%; }
      .entry .entry-content .entry-feature-image.size-very-small img {
        width: unset;
        max-width: 100%; }
        @media (max-width: 768px) {
          .entry .entry-content .entry-feature-image.size-very-small img {
            width: 100%; } }
  .entry .entry-meta {
    padding-top: 48px;
    font-size: 0.7rem; }
  .entry.post-password-required .entry-meta {
    display: none; }
  .entry .entry-sidebar .widget {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: white; }
    .entry .entry-sidebar .widget h2 {
      padding: 16px 16px 0 16px;
      font-size: 1.125rem;
      text-transform: uppercase;
      margin-top: 16px; }
    .entry .entry-sidebar .widget .tiles {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      gap: 32px; }
      .entry .entry-sidebar .widget .tiles .tile {
        -ms-grid-rows: 0 auto auto 0 0;
        grid-template-rows: 0 auto auto 0 0; }
        .entry .entry-sidebar .widget .tiles .tile .feature-image {
          display: none; }
        .entry .entry-sidebar .widget .tiles .tile .subject {
          line-height: 1.5;
          padding-top: 0;
          padding-bottom: 0; }
        .entry .entry-sidebar .widget .tiles .tile .title {
          height: unset; }
        .entry .entry-sidebar .widget .tiles .tile .excerpt {
          height: unset;
          display: none; }
        .entry .entry-sidebar .widget .tiles .tile:hover {
          box-shadow: none; }
  .entry .entry-bottom .tiles {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr; }
    .entry .entry-bottom .tiles .tile {
      background-color: #F8F8FC; }
    @media (max-width: 768px) {
      .entry .entry-bottom .tiles {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; } }
  .entry .archive-pagination {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #BDBDBD; }
    .entry .archive-pagination h2.screen-reader-text {
      display: none; }
    .entry .archive-pagination .page-numbers {
      padding: 16px;
      margin: 8px 16px 8px 0;
      border: 1px solid transparent;
      transition: all 0.25s ease-in-out; }
      .entry .archive-pagination .page-numbers:hover {
        background-color: #E6F2F9;
        border: 1px solid #0f79bf; }
      .entry .archive-pagination .page-numbers.current {
        font-weight: 600;
        background-color: #E6F2F9; }
        .entry .archive-pagination .page-numbers.current:hover {
          border: 1px solid transparent; }
      .entry .archive-pagination .page-numbers .placeholder {
        color: #BDBDBD; }
      .entry .archive-pagination .page-numbers.placeholder:hover, .entry .archive-pagination .page-numbers.dots:hover {
        border: 1px solid transparent;
        background-color: transparent; }
    .entry .archive-pagination a {
      color: #0f79bf; }
      .entry .archive-pagination a:hover {
        text-decoration: none; }
    .entry .archive-pagination .pagination-previous, .entry .archive-pagination .pagination-next {
      padding: 16px; }
  .entry figcaption {
    padding: 0 16px 16px 48px;
    font-size: 0.8rem;
    text-align: center; }
  .entry img[class*="wp-image"] {
    max-width: 100%;
    height: unset;
    border-radius: 4px; }
  .entry .wp-block-image img {
    border-radius: 4px; }
  .entry .wp-block-embed iframe, .entry figure iframe, .entry iframe {
    border-radius: 4px;
    max-width: 100%; }
  .entry .blocks-gallery-grid figure img {
    border-radius: 4px; }
  .entry .entry-body div {
    max-width: 100%; }
  .entry .post-edit-link {
    margin-top: 48px;
    display: block;
    font-size: 0.8rem; }

.archive, .search, .not-found {
  background-color: #F8F8FC; }
  .archive .entry-header, .search .entry-header, .not-found .entry-header {
    background-color: #7b5a3f; }
  .archive .tiles, .search .tiles, .not-found .tiles {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr; }
    .archive .tiles .tile, .search .tiles .tile, .not-found .tiles .tile {
      max-width: unset;
      margin-bottom: 0;
      margin-top: 0; }
      .archive .tiles .tile .subject, .search .tiles .tile .subject, .not-found .tiles .tile .subject {
        color: #7b5a3f; }
    @media only screen and (max-width: 576px) {
      .archive .tiles, .search .tiles, .not-found .tiles {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; } }

.category-publications .entry-header {
  background-color: #073F7A; }

.page .entry-header {
  background-color: #0852A1; }

.search-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .search-info .search-page {
    flex: 1 1 300px; }
  .search-info .advanced-search {
    line-height: 2rem;
    padding: 0 16px; }

.search-results-count, .archive-page {
  color: #7b5a3f;
  font-size: 1.5rem;
  font-weight: 400;
  padding-left: 16px; }

.search-keyword {
  font-weight: 600; }

.not-found .entry-header, .search-results-body .entry-header {
  background-color: #7b5a3f; }

.not-found .search-box, .search-results-body .search-box {
  padding-bottom: 80px; }

.not-found .searchform, .search-results-body .searchform {
  max-width: unset;
  background-color: white; }

.not-found .tiles, .search-results-body .tiles {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0;
  -ms-grid-rows: auto;
  grid-template-rows: auto; }

.not-found .tiles > *:nth-child(1), .search-results-body .tiles > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; }
  .not-found .tiles .tile, .search-results-body .tiles .tile {
    -ms-grid-rows: 0 auto auto auto 20px;
    grid-template-rows: 0 auto auto auto 20px;
    border-radius: 0;
    border-bottom: 1px solid #BDBDBD; }
    .not-found .tiles .tile .feature-image, .search-results-body .tiles .tile .feature-image {
      display: none; }
    .not-found .tiles .tile .subject, .search-results-body .tiles .tile .subject {
      padding-bottom: 4px;
      color: #7b5a3f; }
    .not-found .tiles .tile .title, .not-found .tiles .tile .excerpt, .search-results-body .tiles .tile .title, .search-results-body .tiles .tile .excerpt {
      height: unset; }
    .not-found .tiles .tile:hover, .search-results-body .tiles .tile:hover {
      box-shadow: none;
      background-color: #E6F2F9; }
    .not-found .tiles .tile .date, .search-results-body .tiles .tile .date {
      padding-top: 8px; }

.product .entry-header {
  background-color: #7b5a3f; }

.advanced-search .entry-header {
  background-color: #7b5a3f; }

.advanced-search .entry-meta {
  display: none; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
.event.entry .entry-header {
  background-color: #7b5a3f; }

.tribe_events .tribe-events-schedule__datetime {
  font-family: unset;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem; }

.tribe-block__events-link .tribe-block__btn--link a {
  color: #0f79bf; }

.tribe-events-event-meta:first-child {
  border-top: none;
  margin-top: 0; }

.tribe-events-event-meta .tribe-events-single-section-title:first-child {
  margin-top: 0; }

.tribe-block__venue {
  flex-wrap: wrap; }
  .tribe-block__venue .tribe-block__venue__meta {
    min-width: 350px;
    width: 100%;
    flex: 1 1 0; }
  .tribe-block__venue .tribe-block__venue__map {
    min-width: 400px;
    width: 100%;
    flex: 1 1 0; }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

	S H O P

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
.page-shop, .woocommerce-page, .single-wcssc-cart {
  background-color: #F8F8FC; }

.woocommerce span.onsale, .single-wcssc-cart span.onsale {
  padding: 0;
  top: 10px;
  right: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  left: unset; }

.woocommerce .products.tiles, .single-wcssc-cart .products.tiles {
  clear: both;
  margin: 0;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap; }
  .woocommerce .products.tiles .product.tile, .single-wcssc-cart .products.tiles .product.tile {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto; }
    .woocommerce .products.tiles .product.tile a, .single-wcssc-cart .products.tiles .product.tile a {
      color: #636466; }
    .woocommerce .products.tiles .product.tile img, .single-wcssc-cart .products.tiles .product.tile img {
      object-fit: cover;
      object-position: top;
      width: 100%;
      height: 250px; }
    .woocommerce .products.tiles .product.tile .woocommerce-loop-product__link .woocommerce-loop-product__title, .woocommerce .products.tiles .product.tile .woocommerce-loop-product__link .price, .single-wcssc-cart .products.tiles .product.tile .woocommerce-loop-product__link .woocommerce-loop-product__title, .single-wcssc-cart .products.tiles .product.tile .woocommerce-loop-product__link .price {
      padding: 0 16px; }
    .woocommerce .products.tiles .product.tile .woocommerce-loop-product__link h2, .single-wcssc-cart .products.tiles .product.tile .woocommerce-loop-product__link h2 {
      padding: 0 16px;
      margin-top: 16px;
      font-size: 1.125rem;
      line-height: 1.4;
      color: #0f79bf; }
    .woocommerce .products.tiles .product.tile .woocommerce-loop-product__link:hover, .single-wcssc-cart .products.tiles .product.tile .woocommerce-loop-product__link:hover {
      text-decoration: none; }
      .woocommerce .products.tiles .product.tile .woocommerce-loop-product__link:hover h2, .single-wcssc-cart .products.tiles .product.tile .woocommerce-loop-product__link:hover h2 {
        text-decoration: underline; }
    .woocommerce .products.tiles .product.tile .button, .single-wcssc-cart .products.tiles .product.tile .button {
      margin: 16px;
      background-color: transparent;
      font-weight: 400;
      color: #0f79bf !important;
      text-transform: none;
      font-size: 0.8rem; }
    .woocommerce .products.tiles .product.tile:hover, .single-wcssc-cart .products.tiles .product.tile:hover {
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      text-decoration: none; }
    .woocommerce .products.tiles .product.tile .product-details, .single-wcssc-cart .products.tiles .product.tile .product-details {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      padding-top: 16px; }
      .woocommerce .products.tiles .product.tile .product-details > *, .single-wcssc-cart .products.tiles .product.tile .product-details > * {
        margin: auto 0;
        flex: 1 1 0; }
      .woocommerce .products.tiles .product.tile .product-details .product-pricing, .single-wcssc-cart .products.tiles .product.tile .product-details .product-pricing {
        padding-left: 16px; }
        .woocommerce .products.tiles .product.tile .product-details .product-pricing .price, .single-wcssc-cart .products.tiles .product.tile .product-details .product-pricing .price {
          padding: 0;
          font-weight: 700; }
          .woocommerce .products.tiles .product.tile .product-details .product-pricing .price ins, .single-wcssc-cart .products.tiles .product.tile .product-details .product-pricing .price ins {
            text-decoration: none; }
        .woocommerce .products.tiles .product.tile .product-details .product-pricing .woocommerce-price-suffix, .single-wcssc-cart .products.tiles .product.tile .product-details .product-pricing .woocommerce-price-suffix {
          display: block;
          font-size: 0.8rem; }
      .woocommerce .products.tiles .product.tile .product-details .product-controls, .single-wcssc-cart .products.tiles .product.tile .product-details .product-controls {
        text-align: right;
        flex: 2 1 0;
        min-width: 150px; }
        .woocommerce .products.tiles .product.tile .product-details .product-controls .added_to_cart, .single-wcssc-cart .products.tiles .product.tile .product-details .product-controls .added_to_cart {
          padding-right: 16px;
          font-size: 0.8rem;
          color: #0f79bf; }
    .woocommerce .products.tiles .product.tile .woocommerce-Price-amount, .single-wcssc-cart .products.tiles .product.tile .woocommerce-Price-amount {
      color: #0f79bf;
      font-size: 1rem; }
    .woocommerce .products.tiles .product.tile.outofstock .product-pricing:before, .single-wcssc-cart .products.tiles .product.tile.outofstock .product-pricing:before {
      content: "Out of stock";
      color: #b81c23;
      font-size: 0.8rem;
      display: block; }
  @media only screen and (max-width: 1260px) {
    .woocommerce .products.tiles, .single-wcssc-cart .products.tiles {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (max-width: 576px) {
    .woocommerce .products.tiles, .single-wcssc-cart .products.tiles {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; } }

.woocommerce .related.products .tiles .tile.product, .single-wcssc-cart .related.products .tiles .tile.product {
  background-color: #F8F8FC; }

.woocommerce .product .price, .single-wcssc-cart .product .price {
  padding: 0;
  font-weight: 700;
  color: #0f79bf !important;
  font-size: 1rem; }
  .woocommerce .product .price ins, .single-wcssc-cart .product .price ins {
    text-decoration: none; }

.woocommerce .product .woocommerce-tabs, .single-wcssc-cart .product .woocommerce-tabs {
  padding: 32px;
  background-color: #E6F2F9;
  margin: 32px 0;
  border-radius: 8px; }
  .woocommerce .product .woocommerce-tabs ul.wc-tabs:before, .single-wcssc-cart .product .woocommerce-tabs ul.wc-tabs:before {
    border-color: #A5D7F3 !important; }
  .woocommerce .product .woocommerce-tabs ul.wc-tabs li, .single-wcssc-cart .product .woocommerce-tabs ul.wc-tabs li {
    background-color: #A5D7F3 !important;
    border-top-color: #A5D7F3 !important;
    border-left-color: #A5D7F3 !important;
    border-right-color: #A5D7F3 !important; }
    .woocommerce .product .woocommerce-tabs ul.wc-tabs li:after, .woocommerce .product .woocommerce-tabs ul.wc-tabs li:before, .single-wcssc-cart .product .woocommerce-tabs ul.wc-tabs li:after, .single-wcssc-cart .product .woocommerce-tabs ul.wc-tabs li:before {
      display: none; }
    .woocommerce .product .woocommerce-tabs ul.wc-tabs li.active, .single-wcssc-cart .product .woocommerce-tabs ul.wc-tabs li.active {
      color: #636466 !important;
      background-color: #E6F2F9 !important;
      border-bottom-color: transparent !important; }
  .woocommerce .product .woocommerce-tabs .woocommerce-Tabs-panel--description, .single-wcssc-cart .product .woocommerce-tabs .woocommerce-Tabs-panel--description {
    min-height: 200px; }

.woocommerce .product .product_meta > span, .single-wcssc-cart .product .product_meta > span {
  display: block; }

.woocommerce .woocommerce-product-gallery__image, .single-wcssc-cart .woocommerce-product-gallery__image {
  border-radius: 4px;
  overflow: hidden; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .single-wcssc-cart a.button, .single-wcssc-cart button.button, .single-wcssc-cart input.button {
  border-radius: 0;
  text-shadow: none;
  color: white !important;
  background-color: #0f79bf;
  min-width: 120px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  outline: none;
  padding: 0.76rem 1rem;
  text-transform: uppercase;
  margin: 0 4px 4px 4px; }
  .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .single-wcssc-cart a.button:hover, .single-wcssc-cart button.button:hover, .single-wcssc-cart input.button:hover {
    color: white;
    background-color: #0852A1; }
  .woocommerce a.button.checkout-button, .woocommerce a.button.alt, .woocommerce button.button.checkout-button, .woocommerce button.button.alt, .woocommerce input.button.checkout-button, .woocommerce input.button.alt, .single-wcssc-cart a.button.checkout-button, .single-wcssc-cart a.button.alt, .single-wcssc-cart button.button.checkout-button, .single-wcssc-cart button.button.alt, .single-wcssc-cart input.button.checkout-button, .single-wcssc-cart input.button.alt {
    background-color: #7b5a3f; }
    .woocommerce a.button.checkout-button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.checkout-button:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.checkout-button:hover, .woocommerce input.button.alt:hover, .single-wcssc-cart a.button.checkout-button:hover, .single-wcssc-cart a.button.alt:hover, .single-wcssc-cart button.button.checkout-button:hover, .single-wcssc-cart button.button.alt:hover, .single-wcssc-cart input.button.checkout-button:hover, .single-wcssc-cart input.button.alt:hover {
      background-color: #704B33; }

.woocommerce textarea, .single-wcssc-cart textarea {
  min-width: 200px; }

.woocommerce .form-row, .single-wcssc-cart .form-row {
  display: block; }

.woocommerce .woocommerce-pagination ul.page-numbers, .single-wcssc-cart .woocommerce-pagination ul.page-numbers {
  border: none !important; }
  .woocommerce .woocommerce-pagination ul.page-numbers li, .single-wcssc-cart .woocommerce-pagination ul.page-numbers li {
    padding: 16px;
    margin: 8px 16px 8px 0;
    border: 1px solid transparent !important;
    transition: all 0.25s ease-in-out; }
    .woocommerce .woocommerce-pagination ul.page-numbers li:hover, .single-wcssc-cart .woocommerce-pagination ul.page-numbers li:hover {
      background-color: #E6F2F9;
      border: 1px solid #0f79bf !important; }
    .woocommerce .woocommerce-pagination ul.page-numbers li.current, .single-wcssc-cart .woocommerce-pagination ul.page-numbers li.current {
      font-weight: 600;
      background-color: #E6F2F9; }
      .woocommerce .woocommerce-pagination ul.page-numbers li.current:hover, .single-wcssc-cart .woocommerce-pagination ul.page-numbers li.current:hover {
        border: 1px solid transparent !important; }
    .woocommerce .woocommerce-pagination ul.page-numbers li a:hover, .woocommerce .woocommerce-pagination ul.page-numbers li span, .single-wcssc-cart .woocommerce-pagination ul.page-numbers li a:hover, .single-wcssc-cart .woocommerce-pagination ul.page-numbers li span {
      background: unset !important; }

.woocommerce .shop_table, .single-wcssc-cart .shop_table {
  background-color: white; }
  .woocommerce .shop_table .button, .single-wcssc-cart .shop_table .button {
    margin: 0 16px 16px 16px;
    background-color: transparent;
    font-weight: 400;
    color: #0f79bf !important;
    text-transform: none;
    font-size: 0.8rem; }
    .woocommerce .shop_table .button:hover, .single-wcssc-cart .shop_table .button:hover {
      background-color: transparent;
      color: #0852A1;
      text-decoration: underline; }

.woocommerce legend, .single-wcssc-cart legend {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4; }

.woocommerce .nab_card_ccv, .single-wcssc-cart .nab_card_ccv {
  width: 60px; }

.single-wcssc-cart .shop_table {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 4px; }
  .single-wcssc-cart .shop_table .product-thumbnail img {
    width: 32px;
    height: 32px;
    object-fit: cover; }
  .single-wcssc-cart .shop_table th, .single-wcssc-cart .shop_table td {
    padding: 8px 12px; }
  .single-wcssc-cart .shop_table tr.woocommerce-cart-form__cart-item td {
    border-top: 1px solid rgba(0, 0, 0, 0.1); }

.widget_shopping_cart_content .button.checkout {
  display: none; }

.widget_shopping_cart_content .remove.remove_from_cart_button {
  display: none; }

.widget_shopping_cart_content .attachment-woocommerce_thumbnail {
  display: none; }

.widget_shopping_cart_content .quantity {
  display: none; }

.widget_shopping_cart_content .woocommerce-mini-cart__total {
  display: none; }

.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  padding-top: 48px; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .tile-loader .tiles .tile {
    max-width: 350px; }
  .archive .tiles, .not-found .tiles {
    display: -ms-flexbox !important; }
    .archive .tiles .tile, .not-found .tiles .tile {
      max-width: 300px;
      margin-bottom: 32px !important; }
  .search .tiles {
    display: -ms-flexbox !important; }
    .search .tiles .tile {
      max-width: 100%; }
  .products.tiles {
    display: -ms-flexbox !important; }
    .products.tiles .tile {
      max-width: 300px;
      margin-bottom: 32px !important; }
    .products.tiles .woocommerce-loop-product__link {
      -ms-grid-row: 1;
      grid-row: 1; }
    .products.tiles .product-details {
      -ms-grid-row: 2;
      grid-row: 2; }
    .products.tiles .onsale {
      display: none; }
  .entry-content .entry-body {
    -ms-grid-column: 1;
    grid-column: 1;
    padding-right: 32px;
    max-width: 1300px; }
    .entry-content .entry-body .wp-block-image, .entry-content .entry-body img {
      max-width: 1000px; }
  .entry-content.has-sidebar .entry-body {
    max-width: 1000px; }
  .entry-content .entry-sidebar {
    -ms-grid-column: 2;
    grid-column: 2;
    width: 300px; }
  .entry-content .entry-bottom {
    display: none; }
  .tile.type-tribe_events {
    display: flex;
    flex-direction: column; }
  .wp-block-image .aligncenter, .wp-block-image .alignleft, .wp-block-image .alignright, .wp-block-image.is-resized {
    display: block; } }

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
*      V A R I A B L E S
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* * *   C O L O U R S   * * */
/* * *   R E S P O N S I V E   B R E A K P O I N T S   * * */
/* * *   F O N T S   * * */
/* * *   S P A C I N G   * * */
/* * *   S H A D O W   * * */
/*
Theme Name: Farmer Health
Adding print support, based on TwentyTwenty theme. The print styles are based on the the great work of
Andreas Hecht in https://www.jotform.com/blog/css-perfect-print-stylesheet-98272/.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Margins
# Paddings
# Width
# Typography
# Page breaks
# Links
# Visibility
--------------------------------------------------------------*/
@media print {
  /* Margins */
  @page {
    size: A4 portrait;
    margin: 25mm 10mm 25mm 10mm;
    @top-left {
      content: "Australian National Center For Farmer Health"; }
    @top-center {
      content: "This page is intentionally left blank."; }
    @top-right {
      content: "farmerhealth.org.au";
      text-align: right; }
    @bottom-center {
      content: ""; }
    @bottom-right {
      content: counter(page);
      text-align: right; } }
  .entry-header, .site-footer, .entry-header-inner {
    margin: 0;
    padding: 0; }
  /* Paddings */
  .posts {
    padding: 0; }
  /* Width */
  .entry-content,
  .entry-content p,
  .section-inner,
  .section-inner.max-percentage,
  .section-inner.medium,
  .section-inner.small,
  .section-inner.thin {
    max-width: 100%;
    width: 100%; }
  /* Fonts */
  body {
    background: #fff !important;
    color: #000;
    font-size: 1rem;
    line-height: 1.3; }
  h1 {
    font-size: 2em; }
  h2,
  h2.entry-title,
  h3,
  h4,
  .has-normal-font-size,
  .has-regular-font-size,
  .has-large-font-size,
  .comments-header {
    font-size: 1.5rem;
    margin-top: 1cm; }
  /* Page breaks */
  a {
    page-break-inside: avoid; }
  blockquote {
    page-break-inside: avoid; }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
    page-break-inside: avoid; }
  img {
    page-break-inside: avoid;
    page-break-after: avoid; }
  table,
  pre {
    page-break-inside: avoid; }
  p,
  ul,
  ol,
  dl {
    page-break-before: avoid; }
  /* Links */
  a:link,
  a:visited,
  a {
    background: transparent;
    font-weight: bold;
    text-decoration: underline; }
  a {
    page-break-inside: avoid; }
  a[href^="http"]:after {
    content: none !important; }
  a:after > img {
    content: ""; }
  article a[href^="#"]:after {
    content: ""; }
  a:not(:local-link):after {
    content: " < " attr(href) "> "; }
  /* Visibility */
  .scrolled header {
    position: relative;
    height: unset; }
  .scrolled .main-content {
    margin-top: 0; }
  .scrolled.admin-bar header {
    top: unset; }
  #site-header,
  .comment-form,
  .comments-wrapper,
  .comment .comment-metadata,
  .footer-social-wrapper,
  .footer-widgets-outer-wrapper,
  .header-navigation-wrapper,
  .pagination-wrapper,
  .post-meta-wrapper.post-meta-single-bottom,
  .post-separator,
  .site-logo img {
    display: none; }
  .entry-content .wp-block-button .wp-block-button__link,
  .entry-content .wp-block-button .wp-block-file__button,
  .entry-content .button .entry-header {
    background: transparent;
    color: #000; }
  .ribbon {
    display: none; }
  .searchform {
    display: none; }
  .post-edit-link {
    display: none; }
  .entry-tools {
    display: none; }
  footer {
    display: none; }
  .entry-header {
    margin: 0 !important;
    background: transparent !important; }
  .entry iframe, ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap; }
  .embed-youtube, .embed-responsive {
    position: absolute;
    height: 0;
    overflow: hidden; }
  .entry-print {
    display: none; }
  .entry-social {
    display: none !important; }
  .entry-title {
    color: black !important; }
  .entry-info {
    color: black !important; }
  .entry-author {
    color: black !important;
    text-decoration: none !important; }
  .entry-feature-image {
    display: none; }
  .entry ul.event-breadcrumbs {
    display: none; }
  .container-fluid {
    padding: 0; }
  header .navbar .logo {
    min-height: 100px;
    width: 380px;
    background-image: none; }
    header .navbar .logo .logo-image {
      display: block; }
    header .navbar .logo:after {
      content: "farmerhealth.org.au | Australia";
      padding-top: 5mm;
      padding-bottom: 10mm;
      font-weight: 400;
      font-size: 0.9rem; }
  .menu-header, .navbar-right {
    display: none !important; }
  header {
    height: 35mm; }
  .widget {
    display: none !important; }
  footer {
    display: none !important; }
  .entry .entry-header .entry-header-inner {
    padding-bottom: 0; }
  .entry .entry-header .entry-extras .entry-meta {
    display: none !important; }
  .navbar-toggler, .navbar-toggler.search, .navbar-collapse {
    display: none; }
  #glt-translate-trigger {
    display: none !important; }
  #amazon-polly-audio-table {
    display: none !important; }
  .post-edit-link {
    display: none !important; }
  .print-only {
    display: block; }
  /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

		S H O P

	/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  .woocommerce .products.tiles .product.tile {
    background-color: #EAEAEA;
    margin: 0;
    padding: 8px; }
  .woocommerce .products.tiles {
    display: block;
    width: calc(100% - 20mm);
    position: relative; }
    .woocommerce .products.tiles .product.tile {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 4fr 30mm;
      grid-template-columns: 4fr 30mm;
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      margin: 8px 0;
      overflow: hidden;
      min-width: unset;
      max-width: unset;
      page-break-inside: avoid; }
    .woocommerce .products.tiles .product.tile > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
    .woocommerce .products.tiles .product.tile > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2; }
      .woocommerce .products.tiles .product.tile .woocommerce-loop-product__link {
        text-decoration: none; }
      .woocommerce .products.tiles .product.tile .product-summary {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: 1fr 3fr;
        grid-template-rows: 1fr 3fr;
        -ms-grid-columns: 40mm auto;
        grid-template-columns: 40mm auto;
            grid-template-areas: "product-image product-title" "product-image product-excerpt"; }
        .woocommerce .products.tiles .product.tile .product-summary img {
          object-fit: cover;
          object-position: left;
          width: 40mm;
          height: 40mm;
          grid-area: product-image;
          border-radius: 4px; }
        .woocommerce .products.tiles .product.tile .product-summary .product-title {
          grid-area: product-title; }
        .woocommerce .products.tiles .product.tile .product-summary .excerpt {
          grid-area: product-excerpt; }
      .woocommerce .products.tiles .product.tile .product-details {
        flex-direction: column; }
        .woocommerce .products.tiles .product.tile .product-details > * {
          margin: 0;
          text-align: center;
          flex: 1 1 0; }
        .woocommerce .products.tiles .product.tile .product-details .product-pricing {
          padding-left: 0; }
        .woocommerce .products.tiles .product.tile .product-details .product-controls {
          flex: 1 1 0;
          min-width: unset;
          text-align: center;
          background-color: white;
          border-radius: 4px; }
          .woocommerce .products.tiles .product.tile .product-details .product-controls:before {
            content: "quantity";
            font-size: 0.7rem; }
      .woocommerce .products.tiles .product.tile .onsale {
        left: 12px;
        top: 12px;
        right: unset; }
  .woocommerce .button {
    display: none !important; }
  .woocommerce select {
    display: none !important; }
  .woocommerce .woocommerce-notices-wrapper, .woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering {
    display: none; }
  .woocommerce .entry .entry-content.has-sidebar {
    display: block; }
  .woocommerce .entry-sidebar {
    display: none; } }
@media print {
      .woocommerce .products.tiles .product.tile .product-summary img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; }
      .woocommerce .products.tiles .product.tile .product-summary .product-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2; }
      .woocommerce .products.tiles .product.tile .product-summary .excerpt {
    -ms-grid-row: 2;
    -ms-grid-column: 2; } }

