@charset "UTF-8";
/**
 * @file
 * Styles are organized (loosely) using the SMACSS technique. @see smacss.com
 */
/*
 * Website by
  _____                _         _
 |_   _|__  _   _  ___| |__   __| |_ __ ___  __ _ _ __ ___  ___
   | |/ _ \| | | |/ __| '_ \ / _` | '__/ _ \/ _` | '_ ` _ \/ __|
   | | (_) | |_| | (__| | | | (_| | | |  __/ (_| | | | | | \__ \ -
   |_|\___/ \__,_|\___|_| |_|\__,_|_|  \___|\__,_|_| |_| |_|___/ .co.za

 */
/**
 * @file
 * Variables
 */
:root {
  --site-max-width: 1200px;
}

/* 30em @ 16px font size */
/* 60em @ 16px font size */
/* 80em @ 16px font size */
/* Microsoft research says 40px is ideal size for a touch target */
/* height or width */
/* Assuming font-size: 1rem; */
/* used by table cells and text fields */
/* used in width functions */
/* 480px @ 16px font size */
/* 960px @ 16px font size */
/* 1280px @ 16px font size */
:root {
  --colour-su-maroon: #60223b;
}

/* Social media */
:root {
  --colour-links: var(--colour-su-maroon);
}

/*
  Website   Touchdreams
  Author    Dane Rossenrode
  Creation  April 2013
  Updated   October 2014

  Based on Formalize.
*/
/*------------------------------------------------------------------------
                              UI Consistency
*/
input[type=search]::-webkit-search-decoration {
  display: none;
}

input:invalid,
button:invalid,
a.button:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}
input:focus,
button:focus,
a.button:focus,
select:focus,
textarea:focus {
  border-color: transparent !important;
  box-shadow: #2c76c9 0 0 0 2px;
  z-index: 1;
}

input[type=file]:focus, input[type=file]:active,
input[type=radio]:focus,
input[type=radio]:active,
input[type=checkbox]:focus,
input[type=checkbox]:active {
  box-shadow: none;
}

.form-checkboxes:after,
.form-radios:after {
  content: "";
  display: table;
  clear: both;
}

fieldset {
  border-top-width: 1px;
  margin-bottom: 3em;
}
fieldset legend {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
* + fieldset {
  margin-top: 3em;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 0.3em;
}

label {
  font-weight: 600;
  line-height: 1.1;
  min-width: 5em;
  display: inline-block;
}
main label {
  font-size: 1.1em;
}
input[type=radio] + label, input[type=checkbox] + label {
  min-width: 0;
  padding-left: 0.2em;
}

/*------------------------------------------------------------------------
                              Buttons
*/
button,
a.button,
input[type=reset],
input[type=submit],
input[type=button] {
  font-size: 0.9em;
  line-height: 1.1;
  padding: 0.6em 0.8em;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.12s ease;
  appearance: none;
  border-radius: 5px;
  background-clip: padding-box;
  cursor: pointer;
  outline: 0;
  overflow: visible;
  margin-bottom: 0.6em;
  margin-right: 0.6em;
  vertical-align: top;
  width: auto;
  background: none;
  text-transform: uppercase;
  border: solid 1px var(--colour-links);
  box-shadow: none;
  color: var(--colour-links);
}
button:hover, button:focus,
a.button:hover,
a.button:focus,
input[type=reset]:hover,
input[type=reset]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus {
  color: var(--colour-links);
  background: rgba(0, 0, 0, 0.08);
}
button:active,
a.button:active,
input[type=reset]:active,
input[type=submit]:active,
input[type=button]:active {
  box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  border-color: #999 #bbb #ddd;
}
button::-moz-focus-inner,
a.button::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button.text,
a.button.text,
input[type=reset].text,
input[type=submit].text,
input[type=button].text {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--colour-links);
  padding-left: 0;
  padding-right: 0;
}
button.text:hover, button.text:focus,
a.button.text:hover,
a.button.text:focus,
input[type=reset].text:hover,
input[type=reset].text:focus,
input[type=submit].text:hover,
input[type=submit].text:focus,
input[type=button].text:hover,
input[type=button].text:focus {
  color: var(--colour-links);
}

/*------------------------------------------------------------------------
                              Text Fields
*/
textarea,
select,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  box-sizing: border-box;
  background-clip: padding-box;
  border-radius: 3px;
  -webkit-appearance: none;
  background-color: white;
  border: 1px solid;
  border-color: #848484 #c1c1c1 #e1e1e1;
  color: black;
  outline: 0;
  margin: 0;
  padding: 0.3em 0.5em;
  text-align: left;
  font-size: 0.9em;
  height: auto;
  vertical-align: top;
  max-width: 100%;
}
textarea[disabled],
select[disabled],
input[type=date][disabled],
input[type=datetime][disabled],
input[type=datetime-local][disabled],
input[type=email][disabled],
input[type=month][disabled],
input[type=number][disabled],
input[type=password][disabled],
input[type=search][disabled],
input[type=tel][disabled],
input[type=text][disabled],
input[type=time][disabled],
input[type=url][disabled],
input[type=week][disabled] {
  background-color: #eee;
}

.resizable-textarea textarea {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/*------------------------------------------------------------------------
                              Other
*/
button[disabled],
input[disabled],
select[disabled],
select[disabled] option,
select[disabled] optgroup,
textarea[disabled],
a.button_disabled {
  box-shadow: none;
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  color: #888;
  cursor: default;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #888;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #888;
}

input.placeholder_text,
textarea.placeholder_text {
  color: #888;
}

textarea,
select[size],
select[multiple] {
  height: auto;
}

/*------------------------------------------------------------------------
                              Select lists
*/
select[size="0"],
select[size="1"] {
  height: 1.8em;
}

@media (-webkit-min-device-pixel-ratio: 0) {
  select[size],
  select[multiple],
  select[multiple][size] {
    background-image: none;
    padding-right: 3px;
  }
  select,
  select[size="0"],
  select[size="1"] {
    background-image: url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
  }
  ::-webkit-validation-bubble-message {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666), color-stop(1, black));
    border: 0;
    color: white;
    overflow: hidden;
    padding: 15px 15px 17px;
    text-shadow: black 0 0 1px;
    min-height: 16px;
  }
  ::-webkit-validation-bubble-arrow,
  ::-webkit-validation-bubble-top-outer-arrow,
  ::-webkit-validation-bubble-top-inner-arrow {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #666;
    border-color: #666;
  }
}
/*------------------------------------------------------------------------
                              Other elements
*/
textarea {
  min-height: 40px;
  overflow: auto;
  resize: vertical;
  width: 100%;
}

optgroup {
  color: black;
  font-style: normal;
  font-weight: normal;
}
optgroup::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
  Website   Touchdreams
  Author    Dane Rossenrode
  Creation  April 2013
  Updated   October 2014
*/
/* -------------------------------------------------------------------------------------------
                                CONTENTS
  Individual tags
  Headings
  Forms
  Links
  Tables
  Lists
 */
/* -------------------------------------------------------------------------------------------
                                HTML5 Boilerplate: Base styles: opinionated defaults
*/
/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
html {
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border-width: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* -------------------------------------------------------------------------------------------
                                Individual tags
*/
body {
  background: white repeat;
  font-family: "Open Sans", sans-serif;
  color: #444;
}
@media only screen and (max-width: 60em) {
  body {
    font-size: 0.92em;
  }
}
@media only screen and (max-width: 30em) {
  body {
    font-size: 0.86em;
  }
}

* + p {
  margin-top: 1.2em;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  position: relative;
}

figcaption {
  box-sizing: border-box;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.3em 0.5em;
  color: #FFF;
}
figcaption .title {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.3em;
}

acronym, abbr {
  border-bottom: 1px dotted #222;
  cursor: help;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1em 0;
  padding: 0;
  margin: 2.6em auto;
}

blockquote {
  margin: 1.5em 4%;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  padding: 0.8em 1.1em;
  /* the following rules insert large quotation marks */
}
blockquote p {
  margin: 0;
}
blockquote p + p {
  margin-top: 0.7em;
}
blockquote:before, blockquote:after {
  font-size: 2.5em;
  position: absolute;
}
blockquote:before {
  content: "“";
  left: -0.5em;
  top: 0.4em;
}
blockquote:after {
  content: "”";
  right: -0.5em;
  bottom: 0;
}

/*------------------------------------------------------------------------
                              Links
*/
a {
  color: var(--colour-links);
  text-decoration: none;
  word-wrap: break-word;
  font-weight: 600;
}
a:hover, a:focus {
  color: var(--colour-links);
}
a:active { /* a link when it is 'clicked' on */
  color: var(--colour-links);
}
a.active, a[aria-selected=true] {
  font-weight: bold;
  color: inherit;
}

/*------------------------------------------------------------------------
                              Headings
*/
h1, h2, fieldset legend, h3, h4 {
  font-family: "Open Sans", sans-serif;
  line-height: 1.1;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}
h1 a, h2 a, fieldset legend a, h3 a, h4 a {
  color: inherit;
  font-weight: inherit;
}

h3, h4 {
  font-weight: 600;
}

h1 {
  font-size: 1.9em;
  line-height: 1;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1em;
}

h2, fieldset legend {
  font-size: 1.5em;
  line-height: 1.15;
}

h3 {
  font-size: 1.3em;
  line-height: 1.3;
}

h4 {
  font-size: 1.1em;
  line-height: 1.38;
}

/* -------------------------------------------------------------------------------------------
                                Tables
*/
table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 1.5em 0;
}
table[style*=inline] {
  display: inline-block !important;
}
table td, table th {
  border: solid 1px #bbb;
  padding: 0.3em 0.5em;
}
table.borderless td, table.borderless th {
  border: none;
}
table th {
  text-align: left;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.05);
}
table th.active {
  background: rgba(0, 0, 0, 0.15);
}
table th[scope=row] {
  font-weight: bold;
  text-align: right;
}
table thead {
  font-size: 1.1em;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
table .even {
  background: none;
}
table .odd {
  background: none;
}

/* -------------------------------------------------------------------------------------------
                                Lists
*/
ul,
ol {
  /*line-height: 1.1;*/
}
ul.non-list,
ol.non-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
ul.non-list li,
ol.non-list li {
  padding-left: 0;
  line-height: inherit;
}
ul.non-list li + li,
ol.non-list li + li {
  margin-top: 0;
}

li {
  line-height: 1.3em;
}
li + li {
  margin-top: 0.5em;
}

.menu {
  padding-left: 1.2em;
  margin: 0;
}
.menu .menu__link {
  display: block;
}
nav ul li {
  margin: 0;
}

ul.buttons {
  padding: 0;
}
ul.buttons li {
  display: inline-block;
}
ul.buttons img {
  border-radius: 3px;
}

/**
 * @file
 * Positioning for a responsive layout.
 *
 */
.site-max-width > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
}

.text-max-width > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  max-width: 40rem;
}

.medium-max-width > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  max-width: 920px;
}

header[role=banner] > [role=presentation],
nav[data-primary] > [role=presentation],
.page-content > [role=presentation],
.paragraph.page-max-width > [role=presentation],
footer[role=contentinfo] > [role=presentation],
.block.page-max-width > [role=presentation],
.block-awei-local-tasks > [role=presentation] {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
}

.no-sidebar .page-content > [role=presentation] {
  max-width: 45em;
}
.no-sidebar .form--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.view-empty,
.feed-icons {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  max-width: 30em;
  text-align: center;
}

article.profile {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
}

form[class^=user-], main form[class^=user-][class*=webform],
form[class^=contact-],
main form[class^=contact-][class*=webform] {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  max-width: 40rem;
}

.search-form,
.search-form + h2,
fieldset .search-form + legend,
.search-results {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  max-width: 40rem;
}

.search-results li {
  margin-left: 0;
}

.layout-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.layout-container > * {
  flex: 0 1 auto;
}
.layout-container .page-content {
  flex-grow: 1;
}

/** ----------------------------------------------------------------------------
 *                              Sidebar
*/
.has-sidebar h1 {
  text-align: inherit;
}
@media all and (min-width: 900px) {
  .has-sidebar .page-content > [role=presentation] {
    display: grid;
    grid-template-columns: 300px auto;
    align-items: flex-start;
    gap: 3vw;
  }
  .has-sidebar main[data-primary] {
    order: 1;
  }
}

/**
 * @file
 * Small helper classes.
 */
.visually-hidden {
  display: none;
}

a[role=block] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

div[style^=background-image] {
  background-position: center;
  background-size: cover;
}

.align-right {
  float: right;
  margin: 0 0 1.4em 2.4em;
}

.clearfix::after {
  display: none;
}

/* -----------------------------------------------------------------------------
                              Rotations
*/
[data-rotated="90deg"],
[data-rotated="-270deg"] {
  transform: rotate(90deg);
}

[data-rotated="180deg"] {
  transform: rotate(180deg);
}

[data-rotated="270deg"],
[data-rotated="-90deg"] {
  transform: rotate(270deg);
}

.subtle {
  color: scale-lightness(#444, 20%);
}

/* -----------------------------------------------------------------------------
                              Overlap-bottom (labels)
*/
/* -----------------------------------------------------------------------------
                              Left and right floats
*/
.left,
.right {
  z-index: 1;
  position: relative;
}

.left {
  float: left;
  margin: 0 2em 2em 0;
}
.left.small {
  margin: 0 1em 1em 0;
}

.right {
  float: right;
  margin: 0 0 2em 2em;
}

@media all and (max-width: 30em) {
  .left,
  .right {
    float: none;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}
.align-center {
  text-align: center;
}

a[rel=more],
a.more,
.more-link {
  text-align: right; /* LTR */
  float: right;
}

.floating {
  position: absolute;
  z-index: 20;
  margin-left: 1em;
}

/* -----------------------------------------------------------------------------
                              Unpublished content
*/
.node-unpublished {
  background: none;
  border: solid 4px #CF5541;
  padding: 0 1.4em 2em;
  border-radius: 0.5em;
}

.unpublished::before {
  content: "Unpublished";
  display: inline-block;
  font-size: 1.5em;
  background-color: #CF5541;
  color: white;
  padding: 0.4em 0.6em;
}

.tree.expandable li {
  list-style: none;
}
.tree.expandable li button {
  margin: 0;
}

/* List of links generated by theme_links(). */
.inline {
  display: inline;
  padding: 0;
}
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0; /* LTR */
}

/* The inline field label used by the Fences module. */
span.field-label {
  padding: 0 1em 0 0; /* LTR */
}

.label {
  background: #5a5a5a;
  color: #d9d9d9;
  padding: 0.1em 0.4em;
  border-radius: 3px;
  display: inline-block;
  max-width: 200px;
  min-width: 1.5em;
  text-align: center;
}
.label + .label {
  margin-left: 0.4em;
}
.label a, .label a:hover, .label a:focus {
  color: white;
  font-weight: bold;
}

/* -----------------------------------------------------------------------------
                              Styles demonstration page
*/
.heading {
  background: grey;
  color: white;
  margin-top: 2em;
  margin-bottom: 1em;
  padding: 0.2em 0.5em;
  font-size: 0.85em;
  text-transform: uppercase;
}

.colour {
  display: inline-block;
  width: 100px;
  height: 60px;
}
.colour.primary {
  background-color: #2c76c9;
}
.colour.secondary {
  background-color: #999;
}

/* -----------------------------------------------------------------------------
                              Choice block (old browse page)
*/
.choice-block > div {
  flex: 1 1 0;
  padding: 1em;
}
.choice-block > div:not([aria-selected]) {
  background: #e1e1e1;
}
.choice-block > div:not(:first-of-type) {
  border-left: 1px solid #A4A4A4;
}
.choice-block > div:first-of-type {
  border-radius: 4px 0 0 4px;
}
.choice-block > div:last-of-type {
  border-radius: 0 4px 4px 0;
}
.choice-block input[type=text] {
  width: 100%;
}

.background-dark {
  background-color: #444;
  color: white;
}
.background-dark a {
  color: inherit;
}
.background-dark a:hover, .background-dark a:focus {
  color: inherit;
  text-decoration: underline;
}

.background-pale {
  background-color: #f2f2f2;
}

/**
 * @file
 * SMACSS Modules
 *
 * Adds modular sets of styles.
 *
 * Additional useful selectors can be found in Zen's online documentation.
 * https://drupal.org/node/1707736
 */
/** ------------------------------------------------------------------------------------
 *                                                          Wireframes.
 */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/** ------------------------------------------------------------------------------------
 *                                                          Accessibility features.
 */
/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/** ------------------------------------------------------------------------------------
 *                                                          The skip-link link will be completely hidden until a user tabs to the link.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Branding header.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Navigation bar.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Breadcrumb navigation.
 */
/** ------------------------------------------------------------------------------------
 *                                                          "More" links.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Blocks.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Menus.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Marker.
 */
/* The "new" or "updated" marker. */
/** ------------------------------------------------------------------------------------
 *                                                          Unpublished note.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Comments.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Forms.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Drupal admin tables.
 */
/** ------------------------------------------------------------------------------------
 *                                                          Collapsible fieldsets.
 * @see collapse.js
 */
/** ------------------------------------------------------------------------------------
 *                                                          TableDrag behavior.
 * @see tabledrag.js
 */
/** ------------------------------------------------------------------------------------
 *                                                          TableSelect behavior.
 * @see tableselect.js
 */
/** ------------------------------------------------------------------------------------
 *                                                          Progress bar.
 * @see progress.js
 */
/**
 * Columns
 * v2.1
 */
.cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5vw;
}
@media all and (min-width: 680px) {
  .cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1340px) {
  .cols-2 {
    gap: 60px;
  }
}

.cols-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
}
@media all and (min-width: 700px) {
  .cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 1340px) {
  .cols-3 {
    gap: 50px;
  }
}

.cols-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3vw;
}
@media all and (min-width: 740px) {
  .cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (min-width: 1340px) {
  .cols-4 {
    gap: 34px;
  }
}

.cols-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2vw;
}
@media all and (min-width: 600px) {
  .cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 800px) {
  .cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media all and (min-width: 1340px) {
  .cols-5 {
    gap: 30px;
  }
}

.cols-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}
@media all and (min-width: 530px) {
  .cols-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 720px) {
  .cols-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media all and (min-width: 850px) {
  .cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media all and (min-width: 1340px) {
  .cols-6 {
    gap: 20px;
  }
}

/**
 * @file
 * UI elements that can be re-used anywhere on the site.
 */
/**
  CONTENTS

  Breadcrumbs
  Carousel (slideshow)
  Search
  Lightboxes
  Messages
*/
/** ----------------------------------------------------------------------------
 *                                                              Breadcrumbs
 */
/** ----------------------------------------------------------------------------
 *                                                              Icons
 */
.icon.social {
  width: 24px;
}

/** ----------------------------------------------------------------------------
 *                                                              Cards
 */
.card {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
}
.card .tell {
  padding: 1em 0.9em;
}
.card .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}

/** ----------------------------------------------------------------------------
 *                                                              Carousel (slideshow)
 */
.block-carousel > [role=presentation],
.block.carousel {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
}

.carousel {
  position: static;
  padding: 0;
}
@media all and (min-width: 1300px) {
  .carousel {
    position: relative;
  }
}
.carousel p:first-child {
  margin-top: 0;
}
.carousel .slick-list {
  overflow-y: visible;
}
.carousel .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 0;
}
.carousel.slides-3 .slick-list .slick-slide {
  padding-left: 20px;
  padding-right: 20px;
}
.carousel .slick-arrow {
  background: none;
  border: none;
  width: 15px;
  padding: 2px 10px;
  box-sizing: content-box;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.carousel .slick-arrow.prev {
  left: 0;
}
.carousel .slick-arrow.prev img {
  transform: rotate(180deg);
}
.carousel .slick-arrow.next {
  right: 0;
}
.carousel .slick-arrow[aria-disabled=true] {
  opacity: 10%;
}
@media all and (min-width: 1200px) {
  .carousel .slick-arrow.prev {
    left: initial;
    right: 100%;
  }
  .carousel .slick-arrow.next {
    right: initial;
    left: 100%;
  }
}
.carousel .slick-dots {
  list-style: none;
  padding-left: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
}
.carousel .slick-dots li {
  padding-left: 0;
  line-height: inherit;
}
.carousel .slick-dots li + li {
  margin-top: 0;
}
.carousel .slick-dots li {
  margin: 0;
}
.carousel .slick-dots li button {
  margin: 0;
}
.carousel .paragraph {
  margin-bottom: 0;
}
.carousel .field--name-field-image {
  text-align: center;
}
.carousel .field--name-field-image img {
  width: 100%;
}

/** ----------------------------------------------------------------------------
 *                                                              Search block
 */
.block[role=search] input[type=text],
.block[role=search] input[type=search] {
  background: rgba(238, 238, 238, 0.73);
  border: none;
}
.block[role=search] input[type=submit],
.block[role=search] button[role=submit] {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--colour-links);
  padding-left: 0;
  padding-right: 0;
}
.block[role=search] input[type=submit]:hover, .block[role=search] input[type=submit]:focus,
.block[role=search] button[role=submit]:hover,
.block[role=search] button[role=submit]:focus {
  color: var(--colour-links);
}

/** ----------------------------------------------------------------------------
 *                                                              Search
 */
/** ----------------------------------------------------------------------------
 *                                                              Lightboxes
 */
/** ----------------------------------------------------------------------------
 *                                                              Media
 */
article.media--type-file a img {
  width: 2em;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0.2em;
}
article.media--type-file a .field--name-name {
  display: inline;
}

/** ----------------------------------------------------------------------------
 *                                                              Messages
 */
div.messages {
  background-position: 8px 8px;
  padding: 15px 20px 15px 35px;
  max-width: 60em;
  margin: 0.6em auto;
}
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}
div.messages a {
  color: black;
}
div.messages button {
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 0 0.5em;
  display: inline-block;
  color: white;
  font-weight: bold;
  border-radius: 3px;
  height: 1.4em;
}

aside div.messages {
  margin: 0.8em 0;
  padding: 0.3em 0.5em 0.3em 2em;
}

div.status,
div.warning,
div.error {
  font-weight: 600;
  border-left-width: 5px;
  border-radius: 3px;
}
div.status li,
div.warning li,
div.error li {
  max-width: 100%;
}

div.status {
  color: #324e24 !important;
  background-image: url("../images/check.svg");
  background-color: white !important;
  border-color: #77b259;
}

div.warning {
  color: #473000;
  background-image: url("../images/warning.svg");
  background-color: white;
  border-color: #e09600;
}

div.error {
  color: #4d0d00;
  background-image: url("../images/error.svg");
  background-color: white;
  border-color: #e62600;
}

/**
 * @file Forms
 */
/*
 * CONTENTS

  Menu
  Tabs
 */
/* -------------------------------------------------------------------------------------------
                                                                Menu
*/
.menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-width: 28em;
}
.menu li {
  padding-left: 0;
  line-height: inherit;
}
.menu li + li {
  margin-top: 0;
}
.menu li :is(a, span) {
  font-size: 0.9em;
  line-height: 1.1;
  padding: 0.6em 0.8em;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.12s ease;
  border-radius: 0;
  display: block;
  font-weight: initial;
  text-transform: uppercase;
  color: var(--colour-links);
}
.menu-item--expanded {
  list-style: none;
}

[id=block-awei-main-menu] ul.menu {
  display: block;
  padding: 0;
  margin: 0;
}
[id=block-awei-main-menu] ul.menu li {
  display: block;
}
[id=block-awei-main-menu] ul.menu li a {
  text-align: left;
}
@media all and (min-width: 850px) {
  [id=block-awei-main-menu] ul.menu {
    border-radius: 3px;
  }
}
[id=block-awei-main-menu] ul.menu > li {
  padding: 0 !important;
  margin: 0;
}
@media all and (max-width: 850px) {
  [id=block-awei-main-menu] ul.menu > li > a, [id=block-awei-main-menu] ul.menu > li > span {
    padding-top: 1.1em;
    padding-bottom: 1.1em;
  }
}
[id=block-awei-main-menu] ul.menu > li > a span, [id=block-awei-main-menu] ul.menu > li > span span {
  display: block;
}
[id=block-awei-main-menu] ul.menu > li > a.is-active, [id=block-awei-main-menu] ul.menu > li > span.is-active {
  color: inherit;
}
[id=block-awei-main-menu] ul.menu > li > span {
  cursor: default;
}
[id=block-awei-main-menu] ul.menu li.menu-item--expanded > a, [id=block-awei-main-menu] ul.menu li.menu-item--expanded > span {
  position: relative;
}
[id=block-awei-main-menu] ul.menu li.menu-item--expanded > a::after, [id=block-awei-main-menu] ul.menu li.menu-item--expanded > span::after {
  content: "arrow_drop_down";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  position: absolute;
  font-size: 1.4em;
  top: 50%;
  transform: translateY(-50%);
  right: 0.3em;
}
@media all and (min-width: 850px) {
  [id=block-awei-main-menu] ul.menu li.menu-item--expanded > a::after, [id=block-awei-main-menu] ul.menu li.menu-item--expanded > span::after {
    right: initial;
    top: calc(50% + 0.6em);
    left: 50%;
    transform: translateX(-50%);
  }
}
[id=block-awei-main-menu] ul.menu li a:hover, [id=block-awei-main-menu] ul.menu li a:focus {
  color: black;
}

/* -------------------------------------------------------------------------------------------
                                                                Tabs
*/
ul.tabs,
.as-tabs ul.menu {
  list-style: none;
  border-bottom: 1px solid #bbb;
  border-radius: 0;
  padding: 0 2px;
  white-space: nowrap;
  max-width: initial;
  margin-bottom: 1em;
}
ul.tabs:after,
.as-tabs ul.menu:after {
  content: "";
  display: table;
  clear: both;
}
ul.tabs li,
.as-tabs ul.menu li {
  float: left; /* LTR */
  margin-right: 3px;
  margin-bottom: -1px;
}
ul.tabs li a,
.as-tabs ul.menu li a {
  font-size: 0.9em;
  line-height: 1.1;
  padding: 0.6em 0.8em;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.12s ease;
  display: block;
  border: none;
  color: inherit;
  background: none;
  text-align: center;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: transparent;
}
ul.tabs li a:hover, ul.tabs li a:focus,
.as-tabs ul.menu li a:hover,
.as-tabs ul.menu li a:focus {
  background-color: #e9e9e9;
  border-color: #b9b9b9;
}
ul.tabs li a.is-active,
.as-tabs ul.menu li a.is-active {
  background: none;
  border-color: var(--colour-links);
  font-weight: bold;
}

/**
 * @file Forms
 */
.form--inline > .form-item {
  float: none !important;
}

.field + .field {
  margin-top: 1em;
}
.field[class*=-url], .field.field--type-link {
  word-break: break-all;
}

.field--label-inline {
  display: table-row;
}
.field--label-inline .field__label,
.field--label-inline .field__items {
  float: none;
}
.field--label-inline > * {
  display: table-cell;
  vertical-align: top;
}
.field--label-inline > *:not(:first-child) {
  padding-left: 0.5em;
}
.field--label-inline .field__item {
  display: inline;
}
.field--label-inline .field__item:not(:last-child)::after {
  content: ", ";
}

article[data-view-mode=full] .field--name-field-authors > .field__items {
  display: flex;
}
article[data-view-mode=full] .field--name-field-authors article {
  display: flex;
  align-items: center;
  gap: 10px;
}
article[data-view-mode=full] .field--name-field-authors article img {
  width: 70px;
}

.node__submitted {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 0.85em;
  font-weight: normal;
  color: #848484;
  text-align: center;
}

/** ------------------------------------------------------------------------------------
 *                                                          Inline
 */
article[data-view-mode=inline] > header {
  display: flex;
  font-size: 0.8em;
  gap: 1em;
  justify-content: space-between;
}
article[data-view-mode=inline] > h3 {
  font-size: 1em;
  margin-top: 0.5em;
  margin-bottom: 0;
}

article[data-view-mode=card],
article[data-view-mode=teaser] {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
  position: relative;
}
article[data-view-mode=card] .tell,
article[data-view-mode=teaser] .tell {
  padding: 1em 0.9em;
}
article[data-view-mode=card] .tell > h3,
article[data-view-mode=teaser] .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}
article[data-view-mode=card] h2, article[data-view-mode=card] fieldset legend, fieldset article[data-view-mode=card] legend, article[data-view-mode=card] h3,
article[data-view-mode=teaser] h2,
article[data-view-mode=teaser] fieldset legend,
fieldset article[data-view-mode=teaser] legend,
article[data-view-mode=teaser] h3 {
  font-size: 1.1em;
}
article[data-view-mode=card] h2 a::after, article[data-view-mode=card] fieldset legend a::after, fieldset article[data-view-mode=card] legend a::after, article[data-view-mode=card] h3 a::after,
article[data-view-mode=teaser] h2 a::after,
article[data-view-mode=teaser] fieldset legend a::after,
fieldset article[data-view-mode=teaser] legend a::after,
article[data-view-mode=teaser] h3 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
article[data-view-mode=card] .submitted img,
article[data-view-mode=teaser] .submitted img {
  display: none;
}
article[data-view-mode=card] .node__links,
article[data-view-mode=teaser] .node__links {
  display: flex;
  justify-content: flex-end;
}
article[data-view-mode=card] .field--name-field-tags,
article[data-view-mode=teaser] .field--name-field-tags {
  font-size: 0.8em;
}

article:is([data-type=post], [data-type=event])[data-view-mode=teaser] {
  display: grid;
  grid-template-columns: 20% 80%;
  grid-gap: 30px;
}

article[data-view-mode=full] .field--label-above > .field__label {
  font-size: 1.5em;
  margin-top: 1.2em;
  margin-bottom: 0.7em;
}
article[data-view-mode=full] .address > *:not(:last-of-type)::after {
  content: ", ";
}
article[data-view-mode=full] .address .field {
  display: inline-block;
}
article[data-view-mode=full] .address p {
  margin: 0;
}
article[data-view-mode=full] .address br {
  display: none;
}
article[data-view-mode=full] .address span:not(:last-of-type)::after {
  content: ", ";
}
article[data-view-mode=full] .field--name-field-publications .field__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
}
@media all and (min-width: 700px) {
  article[data-view-mode=full] .field--name-field-publications .field__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (min-width: 1340px) {
  article[data-view-mode=full] .field--name-field-publications .field__items {
    gap: 50px;
  }
}
article[data-view-mode=full] .field--name-field-links .field__item + .field__item {
  margin-top: 0.8em;
}
article[data-view-mode=full] .links,
article[data-view-mode=full] .field--name-field-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2em;
}
article[data-view-mode=full] .links > * + *,
article[data-view-mode=full] .field--name-field-links > * + * {
  margin-top: 0 !important;
}
article[data-view-mode=full] .links > *:not(:last-child)::after,
article[data-view-mode=full] .field--name-field-links > *:not(:last-child)::after {
  content: " | ";
}

article[data-type=person-partner][data-view-mode=teaser] {
  text-align: center;
  border: none;
  box-shadow: none;
}
article[data-type=person-partner][data-view-mode=teaser] img {
  border-radius: 50%;
}
article[data-type=person-partner][data-view-mode=teaser] h3 {
  font-size: 1em;
}
article[data-type=person-partner][data-view-mode=full] header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 8%;
  align-items: center;
  margin-bottom: 2vw;
}
article[data-type=person-partner][data-view-mode=full] h1 {
  text-align: left;
  margin-top: 0.3em;
  margin-bottom: 0.4em;
}
article[data-type=person-partner][data-view-mode=full] .pre-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
article[data-type=person-partner][data-view-mode=full] .field--name-field-image-logo {
  max-width: 200px;
}
article[data-type=person-partner][data-view-mode=full] .field--name-field-image-logo img {
  border-radius: 100%;
}

.page-node-type-landing-page .page-content {
  margin-top: 0;
  margin-bottom: 0;
}
.page-node-type-landing-page .page-content > [role=presentation] {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

article[data-type=landing-page][data-view-mode=full] > .node__content {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
article[data-type=landing-page] h2, article[data-type=landing-page] fieldset legend, fieldset article[data-type=landing-page] legend {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
article[data-type=landing-page] .paragraph[class*=-max-width] {
  margin-top: 7vw;
  margin-bottom: 7vw;
}

.page-node-type-library-item .page-content > [role=presentation] {
  max-width: var(--site-max-width);
}

article[data-type=library-item][data-view-mode=card] {
  position: relative;
}
article[data-type=library-item][data-view-mode=card] h2 .field, article[data-type=library-item][data-view-mode=card] fieldset legend .field, fieldset article[data-type=library-item][data-view-mode=card] legend .field {
  display: none;
}
article[data-type=library-item][data-view-mode=card] h2 a::after, article[data-type=library-item][data-view-mode=card] fieldset legend a::after, fieldset article[data-type=library-item][data-view-mode=card] legend a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
article[data-type=library-item][data-view-mode=card] img {
  border-bottom: solid 1px #e6e6e6;
}
article[data-type=library-item][data-view-mode=teaser] {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
  font-size: 0.85em;
  display: grid;
  grid-template-columns: 34% 1fr;
}
article[data-type=library-item][data-view-mode=teaser] .tell {
  padding: 1em 0.9em;
}
article[data-type=library-item][data-view-mode=teaser] .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}
article[data-type=library-item][data-view-mode=teaser] .tell {
  padding: 1em 1.1em;
}
article[data-type=library-item][data-view-mode=teaser] img {
  border-right: solid 1px #e6e6e6;
}
article[data-type=library-item][data-view-mode=teaser] h2, article[data-type=library-item][data-view-mode=teaser] fieldset legend, fieldset article[data-type=library-item][data-view-mode=teaser] legend {
  font-size: 1em;
  margin-top: 0;
  font-weight: normal;
}
article[data-type=library-item][data-view-mode=full] {
  display: grid;
  gap: 4vw;
}
@media all and (min-width: 700px) {
  article[data-type=library-item][data-view-mode=full] {
    grid-template-columns: 30% 1fr;
  }
}
article[data-type=library-item][data-view-mode=full] .field--name-field-thumbnail-image {
  text-align: center;
}
article[data-type=library-item][data-view-mode=full] .field--name-field-thumbnail-image img {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
}
article[data-type=library-item][data-view-mode=full] .field--name-field-thumbnail-image img .tell {
  padding: 1em 0.9em;
}
article[data-type=library-item][data-view-mode=full] .field--name-field-thumbnail-image img .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}
article[data-type=library-item][data-view-mode=full] h1 {
  font-size: 1.6em;
  text-align: left;
  font-weight: 900;
}
article[data-type=library-item][data-view-mode=full] .meta,
article[data-type=library-item][data-view-mode=full] .download {
  padding: 1.2em 1.6em;
  margin-top: 30px;
  margin-bottom: 20px;
}
article[data-type=library-item][data-view-mode=full] .meta {
  width: auto;
  display: inline-block;
  background-color: #f7f7f7;
}
article[data-type=library-item][data-view-mode=full] .download {
  border: solid 1px #d6d6d6;
  border-radius: 5px;
  display: inline-flex;
  gap: 1.2em;
  position: relative;
  text-transform: uppercase;
}
article[data-type=library-item][data-view-mode=full] .download .file a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
article[data-type=library-item][data-view-mode=full] .download img {
  width: 60px;
}
article[data-type=library-item][data-view-mode=full] .download span {
  color: var(--colour-links);
  font-weight: 600;
}

article[data-type=post][data-view-mode=teaser] {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
  grid-template-columns: 30% auto;
}
article[data-type=post][data-view-mode=teaser] .tell {
  padding: 1em 0.9em;
}
article[data-type=post][data-view-mode=teaser] .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}
article[data-type=post][data-view-mode=teaser] h2, article[data-type=post][data-view-mode=teaser] fieldset legend, fieldset article[data-type=post][data-view-mode=teaser] legend {
  font-size: 1.4em;
  margin-top: 0.3em;
}
article[data-type=post][data-view-mode=teaser] .field--name-uid {
  display: none;
}
.page-node-type-event .page-content {
  margin-top: 0;
}
.page-node-type-event .page-content > [role=presentation] {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

article[data-type=event][data-view-mode=teaser] {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
  margin-bottom: 40px;
  grid-template-columns: 30% auto;
}
article[data-type=event][data-view-mode=teaser] .tell {
  padding: 1em 0.9em;
}
article[data-type=event][data-view-mode=teaser] .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}
article[data-type=event][data-view-mode=teaser] .tell {
  padding: 14px 16px;
  padding-left: 0;
  box-sizing: border-box;
}
article[data-type=event][data-view-mode=teaser] h2, article[data-type=event][data-view-mode=teaser] fieldset legend, fieldset article[data-type=event][data-view-mode=teaser] legend {
  margin-top: 0;
}
article[data-type=event][data-view-mode=full] > .show img {
  width: 100%;
  height: calc(100px + 30vw);
  max-height: 66vh;
  object-fit: cover;
  object-position: center;
}
article[data-type=event][data-view-mode=full] > .tell {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  max-width: 45em;
}
article[data-type=event][data-view-mode=full] > .tell > .node__content {
  border-top: solid 1px #dfdfdf;
  margin-top: 2em;
  padding-top: 2em;
}
article[data-type=event][data-view-mode=full] h1 {
  margin-top: 1.4em;
}
article[data-type=event][data-view-mode=full] .field--name-field-media-image ~ h1 {
  text-align: left;
}
article[data-type=event][data-view-mode=full] .field--name-field-media-image {
  float: left;
  width: calc(100px + 8vw);
  background: white;
  position: relative;
  z-index: 5;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.168627451);
  border: solid 1px #cacaca;
  margin-right: 2vw;
  margin-bottom: 2vw;
}
article[data-type=event][data-view-mode=full] .show ~ .tell .field--name-field-media-image {
  margin-top: -100px;
}
article[data-type=event][data-view-mode=full] .field--name-field-date {
  clear: left;
}

/** ------------------------------------------------------------------------------------
 *                                                          Event series'
 */
article[data-type=event-series][data-view-mode=full] .view-series-events table thead {
  display: none;
}
article[data-type=event-series][data-view-mode=full] .view-series-events table td, article[data-type=event-series][data-view-mode=full] .view-series-events table th {
  border: none;
}

/** ------------------------------------------------------------------------------------
 *                                                          Partners
 */
article[data-type=organisation][data-view-mode=teaser] img {
  border: solid 1px #eaeaea;
  border-radius: 5px;
  padding: 1em;
  box-sizing: border-box;
}

/* -----------------------------------------------------------------------------
                                                Paragraphs in general
*/
.field--name-field-paragraphs {
  clear: both;
}

.paragraph.page-max-width > [role=presentation] {
  position: relative;
}

/* -----------------------------------------------------------------------------
                                                Two columns
*/
/* -----------------------------------------------------------------------------
                                                Two columns
*/
@media all and (min-width: 800px) {
  .paragraph--type--two-columns .field--name-field-items {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
  }
  .paragraph--type--two-columns.equal-columns .field--name-field-items {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .paragraph--type--two-columns.equal-columns .field--name-field-items > .field__item > * {
    min-height: 100%;
  }
  .paragraph--type--two-columns.has-gaps .field--name-field-items {
    gap: 10vw;
  }
}

/* -----------------------------------------------------------------------------
                                                Hero and Image with overlay text
*/
.paragraph[data-type=hero] > [role=presentation],
.paragraph[data-type=image-w-overlay-text] > [role=presentation] {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.paragraph[data-type=hero] h2, .paragraph[data-type=hero] fieldset legend, fieldset .paragraph[data-type=hero] legend,
.paragraph[data-type=image-w-overlay-text] h2,
.paragraph[data-type=image-w-overlay-text] fieldset legend,
fieldset .paragraph[data-type=image-w-overlay-text] legend {
  text-align: left;
}
.paragraph[data-type=hero] .field--name-field-hero-image img,
.paragraph[data-type=image-w-overlay-text] .field--name-field-hero-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media all and (min-width: 1200px) {
  .paragraph[data-type=hero] .field--name-field-hero-image img,
  .paragraph[data-type=image-w-overlay-text] .field--name-field-hero-image img {
    max-height: 60vh;
  }
}

/* -----------------------------------------------------------------------------
                                                Image with overlay text
*/
.paragraph[data-type=image-w-overlay-text] {
  display: grid;
  align-items: flex-end;
  grid-template-rows: 40vh auto;
}
@media all and (min-width: 1000px) {
  .paragraph[data-type=image-w-overlay-text] {
    align-items: initial;
  }
}
.paragraph[data-type=image-w-overlay-text] div[style^=background-image],
.paragraph[data-type=image-w-overlay-text] .overlay {
  grid-column: 1;
  grid-row: 1;
}
.paragraph[data-type=image-w-overlay-text] .overlay {
  padding: 1.8em 5vw;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-row-start: 2;
  grid-row-end: 3;
}
@media all and (min-width: 1000px) {
  .paragraph[data-type=image-w-overlay-text] .overlay {
    grid-row-start: 1;
    width: 50%;
    min-width: 30em;
    max-width: 50em;
  }
}
.paragraph[data-type=image-w-overlay-text] div[style^=background-image] {
  height: 100%;
  grid-row-start: 1;
  grid-row-end: 3;
}
.paragraph[data-type=image-w-overlay-text] h2, .paragraph[data-type=image-w-overlay-text] fieldset legend, fieldset .paragraph[data-type=image-w-overlay-text] legend {
  margin-top: 0;
}
.paragraph[data-type=image-w-overlay-text] p:last-child {
  margin-bottom: 0;
}
.paragraph--type--two-columns .paragraph[data-type=image-w-overlay-text] {
  grid-template-rows: 300px auto;
}
.paragraph--type--two-columns .paragraph[data-type=image-w-overlay-text] div[style^=background-image] {
  grid-row-end: 3;
}
.paragraph--type--two-columns .paragraph[data-type=image-w-overlay-text] .overlay {
  grid-row: 2;
  width: 100%;
  max-width: none;
}
.paragraph[data-type=image-w-overlay-text][data-bg-colour=dark] .overlay {
  background: hsla(0, 0%, 0%, 0.7);
  color: white;
}
.paragraph[data-type=image-w-overlay-text][data-bg-colour=dark] .overlay a {
  color: hsl(336.1, 78.8%, 42.5%);
}
.paragraph[data-type=image-w-overlay-text][data-bg-colour=light] .overlay {
  background: hsla(0, 0%, 100%, 0.88);
}
.paragraph[data-type=image-w-overlay-text] .overlay > * {
  flex: 0 1 auto;
}

/* -----------------------------------------------------------------------------
                                                Text
*/
.paragraph[data-type=formatted-text] .field--name-field-formatted-text {
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------------------------------------
                                                Grid (or columns)
*/
.paragraph[data-type=grid] .paragraph > [role=presentation] {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}
.paragraph[data-type=grid] .field--name-field-items {
  display: grid;
  grid-gap: calc(10px + 4vw);
}
@media all and (min-width: 750px) {
  .paragraph[data-type=grid][data-cols="2"] .field--name-field-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 750px) {
  .paragraph[data-type=grid][data-cols="3"] .field--name-field-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media all and (min-width: 750px) {
  .paragraph[data-type=grid][data-cols="4"] .field--name-field-items {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media all and (min-width: 750px) {
  .paragraph[data-type=grid][data-cols="6"] .field--name-field-items {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
/* -----------------------------------------------------------------------------
                                                Image with text
*/
@media all and (min-width: 30em) {
  .paragraph[data-type=image-w-text] > [role=presentation] {
    display: flex;
  }
  .paragraph[data-type=image-w-text] > [role=presentation] > * {
    flex: 1 1 0;
  }
  .paragraph[data-type=image-w-text].image_position-right .field--name-field-formatted-text {
    padding-right: 10vw;
  }
  .paragraph[data-type=image-w-text].image_position-left .field--name-field-formatted-text {
    padding-left: 10vw;
  }
  .paragraph[data-type=image-w-text] .field--name-field-formatted-text {
    display: flex;
    align-items: center;
  }
}

/* -----------------------------------------------------------------------------
                                                Row of images
*/
.paragraph[data-type=row-of-images].gaps-1 .field--name-field-images > *:not(:first-child) {
  padding-top: 5vw;
}
.paragraph[data-type=row-of-images].gaps-1 .field--name-field-images > *:not(:last-child) {
  padding-bottom: 5vw;
}
@media all and (min-width: 30em) {
  .paragraph[data-type=row-of-images] .field--name-field-images {
    display: flex;
  }
  .paragraph[data-type=row-of-images] .field--name-field-images > * {
    flex: 1 1 0;
  }
  .paragraph[data-type=row-of-images].gaps-1 .field--name-field-images > *:not(:first-child) {
    padding-top: 0;
    padding-left: 5vw;
  }
  .paragraph[data-type=row-of-images].gaps-1 .field--name-field-images > *:not(:last-child) {
    padding-bottom: 0;
    padding-right: 5vw;
  }
}

.layout .layout-regions {
  display: grid;
  grid-gap: calc(10px + 4vw);
}
.layout h2, .layout fieldset legend, fieldset .layout legend {
  margin-top: 0;
}
.layout p:last-child {
  margin-bottom: 0;
}
.layout.page-max-width .layout-regions {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
}
.layout.no-gaps .layout-regions {
  grid-gap: 0;
}

@media all and (min-width: 750px) {
  .layout.twocol-section .layout-regions {
    grid-template-columns: 1fr 1fr;
  }
}

@media all and (min-width: 750px) {
  .layout.threecol-section .layout-regions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media all and (min-width: 750px) {
  .layout.fourcol-section .layout-regions {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.block-layout-builder[class*=background-] {
  padding: 20px;
}

.block-inline-blockimage .field {
  text-align: center;
}
.block-inline-blockimage .field--name-field-text {
  margin-top: 0.6em;
}

.block {
  position: relative;
}
.block.page-max-width {
  margin-top: 7vw;
  margin-bottom: 7vw;
}
.block.page-max-width h2, .block.page-max-width fieldset legend, fieldset .block.page-max-width legend {
  margin-bottom: 1.5em;
}
.block[class*=background-] {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7vw;
  padding-bottom: 7vw;
}
.block .field--name-field-more-link {
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 5vw;
}
.block .field--name-field-more-link::after {
  content: "chevron_right";
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -moz-font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  vertical-align: middle;
  color: var(--colour-links);
}
.block[id*=featured-] {
  padding: 40px;
  margin-bottom: 4vw;
}
.block[id*=featured-] h2, .block[id*=featured-] fieldset legend, fieldset .block[id*=featured-] legend {
  text-align: center;
  margin-top: 0;
}

.view .results-inline > li {
  display: inline;
}
.view .results-inline > li > * {
  display: inline;
}
.view .results-inline > li:not(:last-child)::after {
  content: ", ";
}
.view .views-table[class*=cols-] {
  display: block;
}

.node-readmore {
  font-size: 0.9em;
  text-transform: uppercase;
}

.views-exposed-form .form--inline > * {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.views-exposed-form input[type=submit] {
  margin-bottom: 0;
}

.block-facets h2, .block-facets fieldset legend, fieldset .block-facets legend {
  font-size: inherit;
  font-weight: 600;
}
.block-facets .facets-widget-checkbox {
  font-weight: initial;
}
.block-facets .facets-widget-checkbox > ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.85em;
}
.block-facets .facets-widget-checkbox > ul li {
  padding-left: 0;
  line-height: inherit;
}
.block-facets .facets-widget-checkbox > ul li + li {
  margin-top: 0;
}
.block-facets .facets-widget-checkbox li {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}
.block-facets .facets-widget-checkbox label {
  font-weight: initial;
}

.block-facets-summary {
  margin-top: 1em;
  margin-bottom: 1em;
}
.block-facets-summary ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.block-facets-summary ul li {
  padding-left: 0;
  line-height: inherit;
}
.block-facets-summary ul li + li {
  margin-top: 0;
}
.block-facets-summary ul > * {
  display: inline-block;
  margin-right: 1em;
  vertical-align: middle;
}
.block-facets-summary .facet-summary-item--clear a {
  font-size: 0.9em;
  line-height: 1.1;
  padding: 0.6em 0.8em;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.12s ease;
  appearance: none;
  border-radius: 5px;
  background-clip: padding-box;
  cursor: pointer;
  outline: 0;
  overflow: visible;
  margin-bottom: 0.6em;
  margin-right: 0.6em;
  vertical-align: top;
  width: auto;
  background: none;
  text-transform: uppercase;
  border: solid 1px var(--colour-links);
  box-shadow: none;
  color: var(--colour-links);
  margin: 0;
  order: 100;
}
.block-facets-summary .facet-summary-item--clear a:hover, .block-facets-summary .facet-summary-item--clear a:focus {
  color: var(--colour-links);
  background: rgba(0, 0, 0, 0.08);
}
.block-facets-summary .facet-summary-item--clear a:active {
  box-shadow: inset rgba(0, 0, 0, 0.25) 0 1px 2px 0;
  border-color: #999 #bbb #ddd;
}
.block-facets-summary .facet-summary-item--clear a::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.block-facets-summary .facet-summary-item--facet {
  background-color: #eee;
  border-radius: 1em;
  padding: 0.2em 0.8em;
}
.block-facets-summary .material-icons {
  vertical-align: middle;
  font-size: 1.1em;
  margin-bottom: 0.1em;
}

[id=home-values] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8em 2.6em;
}

[id=search-block-form] {
  flex-grow: 0;
  max-width: 20em;
  position: relative;
  display: flex;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
[id=search-block-form] > * {
  flex: 1 1 auto;
  vertical-align: middle;
}
[id=search-block-form] .form-item,
[id=search-block-form] .form-actions {
  margin-top: 0;
  margin-bottom: 0;
}
[id=search-block-form] input[type=search] {
  width: 20em;
  max-width: 100%;
  font-size: 1em;
  padding-right: 4em;
}
[id=search-block-form] input[type=submit] {
  position: absolute;
  padding: 0.2em 0.4em;
  right: 0.2em;
  bottom: 0.2em;
}

@media all and (min-width: 850px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle button {
  background: none;
  margin: 0;
}

[id=block-views-hero-image-block] img {
  width: 100%;
  max-height: 400px;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

[id=block-socialmediaprofiles] {
  margin: 20px 0;
  flex-shrink: 0;
}
@media all and (min-width: 700px) {
  [id=block-socialmediaprofiles] {
    maring: 0;
  }
}
[id=block-socialmediaprofiles] .field__item {
  display: inline-block;
  vertical-align: middle;
}
[id=block-socialmediaprofiles] a {
  width: 24px;
  height: 24px;
  display: block;
  font-size: 0;
  color: transparent;
  background-size: contain;
}
[id=block-socialmediaprofiles] a[href*="medium.com"] {
  background-image: url("../images/social_icons/Medium_logo.png");
}
[id=block-socialmediaprofiles] a[href*="facebook.com"] {
  background-image: url("../images/social_icons/Facebook_logo.png");
}
[id=block-socialmediaprofiles] a[href*="twitter.com"] {
  background-image: url("../images/social_icons/Twitter_logo.png");
}
[id=block-socialmediaprofiles] a[href*="linkedin.com"] {
  background-image: url("../images/social_icons/LinkedIn_logo.png");
}
[id=block-socialmediaprofiles] a[href*="instagram.com"] {
  background-image: url("../images/social_icons/Instagram_logo.png");
}
[id=block-socialmediaprofiles] a[href*="youtube.com"] {
  background-image: url("../images/social_icons/Youtube_logo.png");
}

aside .views-exposed-form .form-item,
aside .views-exposed-form .form-actions {
  margin-bottom: 0;
  margin-right: 0;
}
aside .views-exposed-form .form-actions {
  margin: 0;
  display: block;
}
aside .views-exposed-form .form-submit {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0.5em;
  border: none;
}

[id=block-exposedformeventspage-1] form, [id=block-exposedformeventspage-1] main form[class*=webform], main [id=block-exposedformeventspage-1] form[class*=webform] {
  position: relative;
}
[id=block-exposedformeventspage-1] .form-item-search label {
  display: none !important;
}

[id=block-featuredevents] .field__item + .field__item {
  margin-top: 0.6em;
}

.block-system-main-block > [role=presentation] > .views-element-container {
  margin-top: 1.5vw;
}

[id^=block-back] {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max-width);
  padding-left: 5vw;
  padding-right: 5vw;
  box-sizing: content-box;
  margin-top: 1.6vw;
  font-size: 0.8em;
  margin-bottom: -2.2vw;
}
[id^=block-back] .field {
  position: relative;
  display: inline-block;
  margin-left: 40px;
}
[id^=block-back] .material-icons {
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 0.4em;
  font-size: 1.4em;
}

/*
  Website   Touchdreams
  Author    Dane Rossenrode
  Creation  April 2013
  Updated   October 2014
*/
/** ----------------------------------------------------------------------------
 *                              CONTENTS
  Header
  Navigation
  Products Menu (in: Navigation)
  Body
  Comments
  Footer
 */
/** ----------------------------------------------------------------------------
 *                              Header
*/
header[role=banner] {
  position: relative;
  background: white;
  box-sizing: border-box;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.2);
}
header[role=banner]:after {
  content: "";
  display: table;
  clear: both;
}
header[role=banner] .region {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header[role=banner] .region > * {
  flex: 0 1 auto;
  vertical-align: middle;
}
@media only screen and (max-width: 850px) {
  header[role=banner] .region > * {
    display: block;
    text-align: center !important;
  }
}
header[role=banner] .block[id$=branding] > div {
  display: flex;
  align-items: center;
}
header[role=banner] .block[id$=branding] > div > * + * {
  margin-left: 1em;
}
header[role=banner] .site-logo > * {
  flex: 1;
}
header[role=banner] .site-logo {
  max-width: 320px;
}
@media only screen and (min-width: 680px) {
  header[role=banner] .site-logo {
    width: auto;
  }
}
header[role=banner] .site-logo a {
  color: inherit;
  text-decoration: none;
}
header[role=banner] .site-logo h1 {
  font-size: 3.5em;
  margin: 0;
  color: #fff;
  line-height: 1em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
header[role=banner] .site-logo img {
  margin: 0.4vw 0;
  width: auto;
  height: 60px;
}
@media all and (min-width: 400px) {
  header[role=banner] .site-logo img {
    height: 80px;
  }
}
header[role=banner] .site-name {
  display: none;
}
@media all and (min-width: 600px) {
  header[role=banner] .site-name {
    display: block;
  }
}
header[role=banner] .site-name a {
  color: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  max-width: 10em;
  display: inline-block;
  font-size: 0.85em;
  margin-left: 2em;
}
header[role=banner] .block-title {
  display: none;
}
header[role=banner] nav .menu {
  margin: 0;
  display: inline-block;
  display: flex;
}
header[role=banner] nav .menu li {
  position: relative;
  flex: 1 1 auto;
}
/** ----------------------------------------------------------------------------
 *                              Navigation
 */
nav[data-primary] {
  background: lightgrey;
}
nav[data-primary] .region {
  display: flex;
  justify-content: space-between;
}
nav[data-primary] .block {
  display: flex;
  align-items: center;
}
nav[data-primary] .block[role=search] form {
  margin: 0;
}
nav[data-primary] .block-menu > .menu {
  display: flex;
}
nav[data-primary] h2, nav[data-primary] fieldset legend, fieldset nav[data-primary] legend {
  display: none;
}
nav[data-primary] input[type=submit] {
  margin: 0;
}

/** ----------------------------------------------------------------------------
 *                              Mobile navigation
 */
.region .block[id*=phonemenubutton] {
  display: flex;
  align-items: center;
}
@media all and (min-width: 850px) {
  .region .block[id*=phonemenubutton] {
    display: none;
  }
}
.region .block[id*=phonemenubutton] button {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--colour-links);
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.region .block[id*=phonemenubutton] button:hover, .region .block[id*=phonemenubutton] button:focus {
  color: var(--colour-links);
}

.region-header nav > .menu > li,
.region-nav nav > .menu > li {
  position: relative;
}
.region-header nav > .menu > li > a, .region-header nav > .menu > li > span,
.region-nav nav > .menu > li > a,
.region-nav nav > .menu > li > span {
  border-style: solid;
  border-color: transparent;
  border-width: 2px 0;
}
.region-header nav > .menu > li > a.is-active,
.region-nav nav > .menu > li > a.is-active {
  border-bottom-color: #444;
}
.region-header nav > .menu > li > a:hover, .region-header nav > .menu > li > a:focus,
.region-nav nav > .menu > li > a:hover,
.region-nav nav > .menu > li > a:focus {
  border-bottom-color: rgba(68, 68, 68, 0.3);
}
.region-header nav > .menu > li ul,
.region-nav nav > .menu > li ul {
  position: absolute;
  z-index: 60;
  top: 100%;
  left: 0;
  min-width: 12em;
  display: none;
  background: #eee;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1215686275) inset;
}
@media all and (min-width: 850px) {
  .region-header nav > .menu > li ul,
  .region-nav nav > .menu > li ul {
    box-shadow: none;
    background: none;
    background: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  }
}
@media all and (min-width: 850px) {
  .region-header nav > .menu > li:hover ul, .region-header nav > .menu > li:focus ul,
  .region-nav nav > .menu > li:hover ul,
  .region-nav nav > .menu > li:focus ul {
    display: block;
  }
}
@media all and (max-width: 850px) {
  .region-header .block-menu,
  .region-nav .block-menu {
    background: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 60;
    top: 100%;
    right: 0;
    overflow: hidden;
    transition: width 0.3s ease;
    width: 0;
  }
  .region-header .block-menu.expanded,
  .region-nav .block-menu.expanded {
    width: 300px;
  }
  .region-header .block-menu .menu,
  .region-nav .block-menu .menu {
    width: 300px;
    display: block;
    max-width: none;
  }
  .region-header .block-menu .menu > li > a, .region-header .block-menu .menu > li > span,
  .region-nav .block-menu .menu > li > a,
  .region-nav .block-menu .menu > li > span {
    border-width: 0 2px;
  }
  .region-header .block-menu .menu > li > a.is-active,
  .region-nav .block-menu .menu > li > a.is-active {
    border-left-color: #444;
  }
  .region-header .block-menu .menu > li > a:hover, .region-header .block-menu .menu > li > a:focus,
  .region-nav .block-menu .menu > li > a:hover,
  .region-nav .block-menu .menu > li > a:focus {
    border-left-color: rgba(68, 68, 68, 0.3);
  }
  .region-header .block-menu .menu > li ul,
  .region-nav .block-menu .menu > li ul {
    position: relative;
    padding-left: 1em;
    display: none;
  }
  .region-header .block-menu .menu > li.expanded ul,
  .region-nav .block-menu .menu > li.expanded ul {
    display: block;
  }
}

/** ----------------------------------------------------------------------------
 *                              Main
*/
.page-content {
  margin-top: 5vw;
  margin-bottom: 5vw;
}

main .field-name-body h2, main .field-name-body fieldset legend, fieldset main .field-name-body legend, main .field-name-body h3 {
  clear: both;
}
main .subtitle {
  margin-bottom: 20px;
  font-style: italic;
}
/** ----------------------------------------------------------------------------
 *                              Sidebar
*/
aside[role=complementary] :first-child > h2, aside[role=complementary] fieldset :first-child > legend, fieldset aside[role=complementary] :first-child > legend {
  margin-top: 0;
}
aside[role=complementary] .block {
  background: #f2f2f2;
  padding: 2em 1.7em;
  box-sizing: border-box;
  border-radius: 8px;
}
aside[role=complementary] .block h2, aside[role=complementary] .block fieldset legend, fieldset aside[role=complementary] .block legend {
  border-bottom: solid 3px var(--colour-links);
  padding-bottom: 0.5em;
  margin-top: 0;
  font-size: 1.15em;
  margin-bottom: 1em;
}
aside[role=complementary] [class*=form-type-]:first-of-type, aside[role=complementary] [class*=form-type-]:first-of-type label {
  margin-top: 0;
}
aside[role=complementary] [class*=form-type-] > label {
  display: block;
  margin-top: 1em;
  margin-bottom: 0.3em;
}
aside[role=complementary] select {
  width: 100%;
}
aside[role=complementary] .menu {
  margin-left: 0;
}
aside[role=complementary] .menu li a, aside[role=complementary] .menu li span {
  padding-left: 0;
  padding-right: 0;
}
aside[role=complementary] .block + .block {
  margin-top: 1.3vw;
}
aside[role=complementary] [data-view-mode=inline] {
  background-color: white;
  position: relative;
  margin: 0; /* Because it's in a grid */
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.85em;
  padding: 1em;
}
aside[role=complementary] [data-view-mode=inline] .tell {
  padding: 1em 0.9em;
}
aside[role=complementary] [data-view-mode=inline] .tell > h3 {
  font-size: 1.1em;
  margin-top: 0;
}
aside[role=complementary] [data-view-mode=inline] + [data-view-mode=inline] {
  margin-top: 1em;
}

/** ----------------------------------------------------------------------------
 *                              Footer
*/
footer[role=contentinfo] {
  padding: 4vw 0;
  background: #f5f5f5;
  font-size: 0.8em;
}
footer[role=contentinfo]::after {
  clear: both;
}
footer[role=contentinfo]::after:after {
  content: "";
  display: table;
  clear: both;
}
@media all and (min-width: 700px) {
  footer[role=contentinfo] .region {
    display: flex;
    margin: 0 auto;
    align-items: center;
  }
  footer[role=contentinfo] .region > * {
    flex: 0 1 auto;
    max-width: 28em;
    min-width: 5em;
  }
  footer[role=contentinfo] .region > *:not(:first-child) {
    margin-left: calc(20px + 3vw);
  }
}
footer[role=contentinfo] .block {
  box-sizing: border-box;
}
footer[role=contentinfo] .block:first-child {
  padding-left: 0;
}
footer[role=contentinfo] .block:last-child {
  padding-right: 0;
}
footer[role=contentinfo] .block img {
  max-height: 80px;
  width: auto;
}
footer[role=contentinfo] .center:after {
  content: "";
  display: table;
  clear: both;
}
footer[role=contentinfo] h2, footer[role=contentinfo] fieldset legend, fieldset footer[role=contentinfo] legend {
  border-bottom: solid 1px #b0b0b0;
  padding-bottom: 0.2em;
  font-size: 1.1em;
  text-transform: uppercase;
}
footer[role=contentinfo] ul, footer[role=contentinfo] #footer #footer li {
  list-style: none;
}
footer[role=contentinfo] .prefix {
  width: 2em;
}
footer[role=contentinfo] form .form-item {
  margin: 0.5em 0;
}
footer[role=contentinfo] form input[type=text],
footer[role=contentinfo] form textarea {
  width: 100% !important;
  border: 1px solid #555;
  color: inherit;
  background: #333;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) inset;
}
footer[role=contentinfo] form input[type=text]:focus,
footer[role=contentinfo] form textarea:focus {
  border: 1px solid #888;
}
footer[role=contentinfo] form textarea {
  height: 5em;
  min-height: 3.2em;
}
footer[role=contentinfo] .menu a:hover {
  color: var(--colour-links);
  background-color: rgba(0, 0, 0, 0.15);
}

/** ----------------------------------------------------------------------------
 *                              Comments
*/
.comments h2, .comments fieldset legend, fieldset .comments legend {
  margin-top: 2em;
  line-height: 1em;
  /*border-top: 4px solid rgba( black, 0.2);*/
  text-align: center;
  position: relative;
  overflow: hidden;
}
.comments h2 span, .comments fieldset legend span, fieldset .comments legend span { /* from Chris Coyier's CSS-Tricks website */
  display: inline-block;
  position: relative;
}
.comments h2 span:before, .comments fieldset legend span:before, fieldset .comments legend span:before, .comments h2 span:after, .comments fieldset legend span:after, fieldset .comments legend span:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  top: 0;
  width: 600px;
  margin-top: 0.5em;
}
.comments h2 span:after, .comments fieldset legend span:after, fieldset .comments legend span:after {
  left: 100%;
  margin-left: 15px;
}
.comments h2 span:before, .comments fieldset legend span:before, fieldset .comments legend span:before {
  right: 100%;
  margin-right: 15px;
}
.comments #comment-form .form-type-item,
.comments #comment-form .form-type-textfield {
  display: table-row;
}
.comments #comment-form .form-type-item > *,
.comments #comment-form .form-type-textfield > * {
  display: table-cell;
}
.comments #comment-form .form-type-item > label,
.comments #comment-form .form-type-textfield > label {
  padding: 0.3em 0.8em 0.3em 0;
}
.comments a[role=button] {
  overflow: hidden;
  transition: all 0.4s ease;
  width: 20px;
}
.comments a[aria-disabled=true] {
  width: 0%;
}
.comments .defaultSkin [role=toolbar] {
  width: 100%;
}

/**
 * @file Pages
 */
/* -------------------------------------------------------------------------------------------
                                                                CONTENTS

    Home (front)
 */
/*----------------------------------------------------------------------------
                                            Home (front)
*/
/*----------------------------------------------------------------------------
                                            User pages
*/
body.path-user form[id=user-login-form],
body.path-user form[id=user-pass] {
  max-width: 24em;
}
body.path-user form[id=user-login-form] input[type=text],
body.path-user form[id=user-login-form] input[type=password],
body.path-user form[id=user-pass] input[type=text],
body.path-user form[id=user-pass] input[type=password] {
  display: block;
}

/*----------------------------------------------------------------------------
                                            Taxonomy term pages
*/
.path-taxonomy article[data-view-mode=teaser] {
  margin-bottom: 2vw;
}

/*----------------------------------------------------------------------------
                                            Blog
*/
.path-blog .page-content > [role=presentation],
.path-posts .page-content > [role=presentation] {
  max-width: 50em;
}
.path-blog article[data-view-mode=teaser],
.path-posts article[data-view-mode=teaser] {
  margin-bottom: 2vw;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved path-frontpage-end performance.
 */
@media print {
  /* Underline all links. */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: inherit;
  }
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* Un-float the content. */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Turn off any background colors or images. */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }
  /* Hide sidebars and nav elements. */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}

/*# sourceMappingURL=theme.css.map */
