/* colours */
/* vendor prefixes */
/* loading */
@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.body-loading {
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #ffffff;
  display: none;
}
body.loading .body-loading {
  display: block;
  -webkit-animation: expandWidth 2s linear 1;
  -khtml-animation: expandWidth 2s linear 1;
  -moz-animation: expandWidth 2s linear 1;
  animation: expandWidth 2s linear 1;
}
/* layout */
.constrain {
  position: relative;
}
.center-xy {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.center-x {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -khtml-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}
.center-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.height100 {
  position: relative;
  min-height: -moz-fill-available;
  min-height: fill-available;
  min-height: 100vh;
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  .height100 {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}
.fullwidth {
  width: 100%;
}
.fullscreen {
  position: relative;
  min-height: -moz-fill-available;
  min-height: fill-available;
  min-height: 100vh;
  width: 100%;
}
.centreAlignGallery .spectra-image-gallery__layout--carousel .slick-track {
  align-items: stretch;
}
html,
body,
html a {
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
}
a:not(.btn),
a:not(.btn):active {
  border: 0;
  outline: 0;
}
img {
  border: 0;
  outline: 0;
  display: block;
  height: auto;
  max-width: 100%;
}
.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}
/* page layout */
#wrapper {
  margin: 0 auto;
}
/* header */
#header {
  background-color: var(--wp--preset--color--green);
}
#header h1 {
  margin: 0;
  padding-top: var(--wp--preset--spacing--40);
  padding-bottom: var(--wp--preset--spacing--10);
  font-weight: 600;
}
#header h1 a {
  text-decoration: none;
  color: var(--wp--preset--color--orange);
}
/* site navigation */
#top-menu li {
  list-style-type: none;
}
#top-menu ul,
#top-menu li {
  margin: 0;
  padding: 0;
}
#top-menu ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding-bottom: 5px;
}
#top-menu a {
  display: block;
  color: white;
  padding: 12px;
  text-decoration: none;
  font-weight: 600;
}
#top-menu li.current-menu-item > a,
#top-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--wp--preset--color--orange);
}
/* FAQ accordions */
.schema-faq {
  padding-left: 24px;
}
.schema-faq .question {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: var(--wp--preset--font-size--small);
}
.schema-faq .question::before,
.schema-faq .question::after {
  content: '';
  position: absolute;
  left: -24px;
  top: 45%;
  height: 1px;
  width: 14px;
  background-color: black;
}
.schema-faq .question::after {
  transform: rotate(90deg);
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}
.schema-faq .question strong {
  font-weight: 600;
}
.schema-faq .answer {
  overflow-y: hidden;
  position: relative;
}
.schema-faq .answer .schema-faq-answer {
  margin-top: -100%;
  transition: all 0.2s ease-in-out;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 400;
}
.schema-faq .schema-faq-section {
  margin-bottom: 16px;
}
.schema-faq .schema-faq-section.open .schema-faq-answer {
  margin-top: 16px;
  transition: all 0.2s ease-in-out;
}
.schema-faq .schema-faq-section.open .question::after {
  transform: rotate(0);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 921px) {
  .has-x-large-font-size {
    font-size: 40px !important;
  }
  .has-large-font-size {
    font-size: 32px !important;
  }
  .has-medium-font-size {
    font-size: 24px !important;
  }
  .has-small-font-size {
    font-size: 18px !important;
  }
  .schema-faq .answer .schema-faq-answer {
    margin-top: -500%;
  }
  .wp-block-uagb-container a {
    word-break: break-word;
  }
}
