@charset "UTF-8";
.flex-default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.flex-default > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.bg-primary {
  background-color: #cdea80;
}

.bg-primary--light {
  background-color: #e7f5c2;
}

.bg-primary--dark {
  background-color: #4b9560;
}

.bg-secondary {
  background-color: #41b6e6;
}

.bg-secondary--light {
  background-color: #15bef0;
}

.bg-secondary--dark {
  background-color: #1990c1;
}

.bg-tertiary {
  background-color: #001489;
}

.bg-tertiary--light {
  background-color: #001fd6;
}

.bg-tertiary--dark {
  background-color: #20419a;
}

.bg-quaternary {
  background-color: #da1884;
}

.bg-quaternary--light {
  background-color: #ec52a8;
}

.bg-quaternary--dark {
  background-color: #95105a;
}

.bg-quinary {
  background-color: #ffb549;
}

.bg-quinary--light {
  background-color: #ffd496;
}

.bg-quinary--dark {
  background-color: #fc9500;
}

.bg-white {
  background-color: white;
}

.bg-grey {
  background-color: #7a7a7a;
}

.bg-grey--lightest {
  background-color: #e3e3e3;
}

.bg-grey--lighter {
  background-color: #eaeaea;
}

.bg-grey--light {
  background-color: #999999;
}

.bg-grey--dark {
  background-color: #666666;
}

.bg-grey--darker {
  background-color: #1a263f;
}

.bg-grey--darkest {
  background-color: #292929;
}

.bg-light {
  background-color: white;
}

.bg-dark {
  background-color: #7a7a7a;
}

.bg-black {
  background-color: black;
}

.bg-grey--lighter {
  color: black;
}

/* File Colours */
/* Reviews colors */
.demo-transition.transition-opacity {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.demo-transition.transition-move:after {
  -webkit-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}

/**
 * Breakpoint Configuration
 * @see https://github.com/Team-Sass/breakpoint/wiki
 *
 * Usage:
 * display: none; // hidden for mobile
 * @include breakpoint($bp--small-up) {
 *   display: block; // shown above 400
 * }
 */
.layout-container {
  position: relative;
}

.layout-contained {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.layout-contained--medium {
  max-width: 640px;
}

.layout-contained--small {
  max-width: 500px;
}

.u-spacing-down {
  margin-bottom: 20px;
}

.u-spacing-up {
  margin-top: 20px;
}

.u-gap-down {
  margin-bottom: 5px;
}

.u-gap-up {
  margin-top: 5px;
}

.padding, .text--large {
  padding: 16px;
}

.padding-horizontal {
  padding-right: 16px;
  padding-left: 16px;
}

.padding-vertical {
  padding-top: 16px;
  padding-bottom: 16px;
}

.margin-bottom {
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .margin-bottom {
    margin-bottom: 48px;
  }
}

@media (min-width: 768px) {
  .margin-bottom {
    margin-bottom: 72px;
  }
}

.margin-top {
  margin-top: 24px;
}

@media (min-width: 640px) {
  .margin-top {
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .margin-top {
    margin-top: 72px;
  }
}

.padding-bottom {
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .padding-bottom {
    padding-bottom: 72px;
  }
}

.padding-top {
  padding-top: 48px;
}

@media (min-width: 768px) {
  .padding-top {
    padding-top: 72px;
  }
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear-both {
  clear: both;
}

.u-center {
  display: inline-block;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.u-center--h {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.u-center--v {
  display: inline-block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.local-base {
  font-size: 1rem;
}

/**
 * @file
 * This file creates helper classes that can be added to items to show/hide
 * them depending on the screen width being viewed.
 */
@media (min-width: 640px) {
  .small-screen-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .small-screen-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .small-medium-screen-only {
    display: none;
  }
}

.large-screen-only {
  display: none;
}

@media (min-width: 768px) {
  .large-screen-only {
    display: block !important;
  }
}

.large-medium-screen-only {
  display: none;
}

@media (min-width: 640px) {
  .large-medium-screen-only {
    display: block;
  }
}

.visually-hidden, .block-search label {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  word-wrap: normal;
}

/**
 * @file
 * This file sets up the basic vertical rhythm for our sites.
 *
 * Notes:
 * - In general, we are using vertical rhythm settings from www.gridlover.net
 * - In general, what they call h2, we call h1; what they call h3, we call h2, etc.
 * - This file sets up the base font size for the html element, and then the
 *   line heights and bottom margin for items.
 * - The font sizes for headings is posted in _headings.scss.
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

html *,
html *::before,
html *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin-top: 0;
}

body {
  margin: 0;
}

h1,
.h1,
.full--landing-page .full__title {
  margin-bottom: 0.57rem;
  line-height: 1.1;
}

h2,
.h2,
.quote__blockquote {
  margin-bottom: 0;
}

h3,
.h3 {
  margin-bottom: 0;
}

h4,
.h4 {
  margin-bottom: 0;
}

h5,
.h5 {
  margin-bottom: 0;
}

p,
ul,
ol,
pre,
table,
blockquote {
  margin-bottom: 1.5rem;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0rem;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  line-height: 0;
}

sup {
  top: -0.5rem;
}

sub {
  bottom: -0.25rem;
}

.field__label {
  font-weight: bold;
}

.field--label-inline > .field__label,
.field--label-inline > .field__items {
  display: inline;
}

.field--label-inline .field__label,
.field--label-inline > .field__item,
.field--label-inline .field__items {
  display: inline;
  padding-right: 0.5em;
}

[dir="rtl"] .field--label-inline .field__label,
[dir="rtl"] .field--label-inline .field__items {
  padding-right: 0;
  padding-left: 0.5em;
}

.field--label-inline .field__label::after {
  content: ":";
}

h1,
.h1,
.full--landing-page .full__title {
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
  font-weight: 700;
}

h1,
.h1,
.full--landing-page .full__title {
  font-size: 1.5rem;
}

@media screen and (min-width: 500px) {
  h1,
  .h1,
  .full--landing-page .full__title {
    font-size: calc(1.5rem + 1.125 * (100vw - 500px) / 460);
  }
}

@media screen and (min-width: 960px) {
  h1,
  .h1,
  .full--landing-page .full__title {
    font-size: 2.625rem;
  }
}

h2,
.h2,
.quote__blockquote {
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
}

h2,
.h2,
.quote__blockquote {
  font-size: 1.25rem;
}

@media screen and (min-width: 500px) {
  h2,
  .h2,
  .quote__blockquote {
    font-size: calc(1.25rem + 0.4375 * (100vw - 500px) / 460);
  }
}

@media screen and (min-width: 960px) {
  h2,
  .h2,
  .quote__blockquote {
    font-size: 1.6875rem;
  }
}

h3,
.h3 {
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
}

h3,
.h3 {
  font-size: 1rem;
}

@media screen and (min-width: 500px) {
  h3,
  .h3 {
    font-size: calc(1rem + 0 * (100vw - 500px) / 460);
  }
}

@media screen and (min-width: 960px) {
  h3,
  .h3 {
    font-size: 1rem;
  }
}

h4,
.h4 {
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
}

h4,
.h4 {
  font-size: 0.85rem;
}

@media screen and (min-width: 500px) {
  h4,
  .h4 {
    font-size: calc(0.85rem + 0 * (100vw - 500px) / 460);
  }
}

@media screen and (min-width: 960px) {
  h4,
  .h4 {
    font-size: 0.85rem;
  }
}

a {
  text-decoration: none;
  color: #da1884;
}

a:focus, a:hover {
  color: black;
}

code:before {
  content: "`";
}

code:after {
  content: "`";
}

pre code:after, pre code:before {
  content: "";
}

.text--large {
  margin-bottom: 24px;
  text-align: center;
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
  line-height: 36px;
}

.text--large {
  font-size: 16px;
}

@media screen and (min-width: 380px) {
  .text--large {
    font-size: calc(16px + 9.6 * (100vw - 380px) / 790);
  }
}

@media screen and (min-width: 1170px) {
  .text--large {
    font-size: 25.6px;
  }
}

@media (min-width: 640px) {
  .text--large {
    margin-bottom: 48px;
  }
}

@media (min-width: 960px) {
  .text--large {
    margin-bottom: 72px;
    line-height: 48px;
  }
}

.button {
  display: inline-block;
  padding: 7px 2rem;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  background-color: #cdea80;
  font-family: Verdana, Arial, sans-serif;
  font-size: 16px;
}

.button--alt {
  display: inline-block;
  padding: 7px 2rem;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  background-color: #cdea80;
  font-family: Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #cdea80;
  background: #999999;
}

a.button {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="submit"],
.form-submit {
  display: inline-block;
  padding: 7px 2rem;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  background-color: #cdea80;
  font-family: Verdana, Arial, sans-serif;
  font-size: 16px;
  border: 0;
}

.form-type-select {
  position: relative;
}

.form-type-select::after {
  position: absolute;
  top: 2px;
  right: 1.5rem;
  content: "\25BE";
  pointer-events: none;
}

.form-select {
  width: 90%;
  max-width: 300px;
  padding: 0.5rem;
  border: 1px solid #7a7a7a;
  background: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-select::-ms-expand {
  display: none;
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input::-webkit-input-placeholder {
  font-size: 12px;
}

input::-moz-placeholder {
  font-size: 12px;
}

input:-ms-input-placeholder {
  font-size: 12px;
}

input::-ms-input-placeholder {
  font-size: 12px;
}

input::placeholder {
  font-size: 12px;
}

html {
  font-family: Verdana, Arial, sans-serif;
  font-size: 16px;
}

*::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

strong {
  font-weight: 700;
}

@font-face {
  font-family: "icons";
  src: url("icons.eot");
  src: url("icons.eot?#iefix") format("eot"), url("icons.woff") format("woff"), url("icons.ttf") format("truetype"), url("icons.svg#icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

/**
 * Font application to generic DOM
 */
[class*="icon--"] {
  font-family: "icons";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
}

.icon--close::before {
  content: "";
}

.icon--menu::before {
  content: "";
}

.icon--search::before {
  content: "";
}

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

table tbody tr:nth-child(odd) {
  background: #eaeaea;
}

table tbody tr td {
  padding: 0.5em 1em;
}

.add-to-calendar__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 2rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #cdea80;
  border: 2px solid #cdea80;
  border-radius: 2rem;
  background-color: white;
  font-size: 1rem;
}

.add-to-calendar__trigger:focus, .add-to-calendar__trigger:hover {
  color: white;
  border-color: #41b6e6;
  background-color: #41b6e6;
}

.add-to-calendar__trigger:focus svg, .add-to-calendar__trigger:hover svg {
  fill: white;
}

.add-to-calendar__trigger:focus svg path, .add-to-calendar__trigger:hover svg path {
  fill: white;
}

.add-to-calendar__trigger-icon {
  margin-right: 0.5rem;
  line-height: 0;
}

.add-to-calendar__items {
  display: none;
  padding: 1rem;
}

.add-to-calendar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: -3px;
  margin-bottom: 1rem;
  margin-left: -3px;
  line-height: 1;
}

.add-to-calendar__item > * {
  margin-right: 3px;
  margin-left: 3px;
}

.add-to-calendar svg {
  position: relative;
  top: -1px;
  width: 1rem;
  height: auto;
  fill: #cdea80;
}

.add-to-calendar svg path {
  fill: #cdea80;
}

.add-to-calendar a {
  text-decoration: none;
}

.add-to-calendar a:focus, .add-to-calendar a:hover {
  text-decoration: underline;
}

.branding__logo svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.breadcrumb li {
  font-size: 0.75rem;
}

.breadcrumb li:after {
  margin: 0.15rem;
  content: "»";
  letter-spacing: -3px;
}

.breadcrumb li:last-of-type:after {
  content: "";
}

.breadcrumb li + li {
  margin-left: 0.5rem;
}

.breadcrumb li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #da1884;
}

.breadcrumb li a:focus, .breadcrumb li a:hover {
  text-decoration: underline;
  color: #1a263f;
}

.block-language .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  margin-left: 1rem;
  padding: 0;
}

.block-language .links li {
  list-style: none;
}

.block-language .links li + li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.block-language .links li + li::before {
  position: relative;
  top: -2px;
  margin: 0 0.5rem;
  content: "|";
}

.block-language .links a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #1a263f;
  font-size: 10px;
}

.block-language .links a:focus, .block-language .links a:hover {
  text-decoration: underline;
}

.block-language .links a.is-active {
  font-weight: bold;
}

.hamburger {
  display: inline-block;
  float: right;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  font: inherit;
}

@media (min-width: 640px) {
  .hamburger {
    position: relative;
    top: 6px;
  }
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  position: absolute;
  width: 30px;
  height: 2px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  background-color: #1a263f;
}

.hamburger-inner::after, .hamburger-inner::before {
  display: block;
  content: "";
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  opacity: 0;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.hamburger-label {
  position: relative;
  top: -7px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  text-transform: uppercase;
}

.header__main-navigation .main-navigation {
  text-align: right;
  font-weight: 700;
}

.header__main-navigation .main-navigation .menu {
  display: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .header__main-navigation .main-navigation .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__main-navigation .main-navigation .menu-item {
  margin: 0;
  padding: 0 0.5rem;
  list-style: none;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .header__main-navigation .main-navigation .menu-item {
    border-top: 1px solid #eaeaea;
    font-size: 10px;
  }
  .header__main-navigation .main-navigation .menu-item:last-of-type {
    border-top: 0;
  }
}

.header__main-navigation .main-navigation .menu-item a {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.5rem 0 0;
  text-decoration: none;
}

@media (min-width: 640px) {
  .header__main-navigation .main-navigation .menu-item a {
    margin-bottom: 0;
    padding: 0.25rem 0.15rem;
  }
}

@media (min-width: 768px) {
  .header__main-navigation .main-navigation .menu-item a {
    padding: 0.25rem 0.5rem;
  }
}

.header__main-navigation .main-navigation .menu-item a:focus, .header__main-navigation .main-navigation .menu-item a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.top-navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}

.top-navigation .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0.5rem;
  list-style: none;
  font-size: 10px;
  font-weight: 300;
}

@media (min-width: 640px) {
  .top-navigation .menu-item + .menu-item::before {
    display: inline;
    margin-right: 0.5rem;
    content: "|";
    color: black;
  }
}

.top-navigation a {
  text-decoration: none;
  color: black;
}

.top-navigation a:focus, .top-navigation a:hover {
  text-decoration: underline;
}

.menu-full-site-navigation {
  padding: 0;
}

.menu-full-site-navigation .menu-item--has-sub-menu .menu {
  margin-left: 1rem;
  padding: 0;
}

.menu-full-site-navigation .menu-item {
  list-style: none;
  list-style-position: inside;
}

.menu-full-site-navigation .menu-item a {
  display: inline-block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: white;
}

.menu-full-site-navigation .menu-item a:focus, .menu-full-site-navigation .menu-item a:hover {
  text-decoration: underline;
}

.menu-full-site-navigation .menu-item--opened > .menu {
  margin-left: 1.4rem;
  padding-left: 1rem;
  border-left: 2px solid white;
}

.menu-full-site-navigation .sub-menu-item-toggle {
  width: 1rem;
  padding: 0;
  color: white;
  border: 0;
  background-color: transparent;
  font-size: 1.5rem;
}

.menu-full-site-navigation .menu-item__spacer {
  display: inline-block;
  width: 1.4rem;
}

.menu-full-site-navigation .menu-item > .menu {
  display: none;
}

.menu-full-site-navigation .sub-menu-item-toggle--closed .sub-menu-item-toggle__icon--opened {
  display: none;
}

.menu-full-site-navigation .sub-menu-item-toggle--opened .sub-menu-item-toggle__icon--closed {
  display: none;
}

.menu-full-site-navigation .sub-menu-item-toggle__icon {
  vertical-align: baseline;
}

/**
 * @file
 * Styles for system messages.
 */
.messages {
  margin-bottom: 1.5rem;
  padding: 15px 20px 15px 35px;
  /* LTR */
  word-wrap: break-word;
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  /* LTR */
  border-radius: 2px;
  background: no-repeat 10px 17px;
  /* LTR */
  overflow-wrap: break-word;
}

[dir="rtl"] .messages {
  padding-right: 35px;
  padding-left: 20px;
  text-align: right;
  border-width: 1px 0 1px 1px;
  background-position: right 10px top 17px;
}

.messages__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.messages__item + .messages__item {
  margin-top: 0.769rem;
}

/* See .color-success in Seven's colors.css */
.messages--status {
  color: #325e1c;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  /* LTR */
  background-color: #f3faef;
  background-image: url(../images/messages/check.svg);
  -webkit-box-shadow: -8px 0 0 #77b259;
          box-shadow: -8px 0 0 #77b259;
  /* LTR */
}

[dir="rtl"] .messages--status {
  margin-left: 0;
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  -webkit-box-shadow: 8px 0 0 #77b259;
          box-shadow: 8px 0 0 #77b259;
}

/* See .color-warning in Seven's colors.css */
.messages--warning {
  color: #734c00;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  /* LTR */
  background-color: #fdf8ed;
  background-image: url(../images/messages/warning.svg);
  -webkit-box-shadow: -8px 0 0 #e09600;
          box-shadow: -8px 0 0 #e09600;
  /* LTR */
}

[dir="rtl"] .messages--warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  -webkit-box-shadow: 8px 0 0 #e09600;
          box-shadow: 8px 0 0 #e09600;
}

/* See .color-error in Seven's colors.css */
.messages--error {
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  /* LTR */
  background-color: #fcf4f2;
  background-image: url(../images/messages/error.svg);
  -webkit-box-shadow: -8px 0 0 #e62600;
          box-shadow: -8px 0 0 #e62600;
  /* LTR */
}

[dir="rtl"] .messages--error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  -webkit-box-shadow: 8px 0 0 #e62600;
          box-shadow: 8px 0 0 #e62600;
}

.messages--error p.error {
  color: #a51b00;
}

.node-forms {
  margin-bottom: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.node-childrens-book-review-form {
  border: 2px solid #4b9560;
  border-radius: 4px;
  font-weight: 300;
}

.node-childrens-book-review-form::after {
  display: table;
  clear: both;
  content: "";
}

.node-childrens-book-review-form .node-forms__title {
  background-color: #5da152;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 20px;
}

.node-childrens-book-review-form .node-forms__fields {
  padding: 12px 20px;
}

.node-childrens-book-review-form .form-wrapper {
  float: left;
  width: 100%;
  margin: 15px 0;
}

.node-childrens-book-review-form .form-type-textfield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.node-childrens-book-review-form .form-type-textfield input {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  width: 100%;
}

.node-childrens-book-review-form .form-select {
  height: 44px;
}

.node-childrens-book-review-form .form-type-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.node-childrens-book-review-form .form-type-select select {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  width: 100%;
  max-width: none;
}

.node-childrens-book-review-form .form-type-select:after {
  position: relative;
  line-height: 44px;
  top: 0;
}

.node-childrens-book-review-form input, .node-childrens-book-review-form select, .node-childrens-book-review-form textarea {
  background-color: rgba(93, 161, 83, 0.1);
  border: 0;
  padding: 8px 16px;
}

.node-childrens-book-review-form input[type="text"], .node-childrens-book-review-form textarea {
  line-height: 22px;
  font-size: 18px;
}

.node-childrens-book-review-form textarea {
  min-height: 150px;
}

.node-childrens-book-review-form label {
  display: inline-block;
  vertical-align: top;
  min-width: 100px;
  margin-right: 16px;
}

.node-childrens-book-review-form label.form-required:after, .node-childrens-book-review-form span.form-required:after {
  content: '*';
  color: #d0202a;
  margin-left: 4px;
}

.node-childrens-book-review-form legend {
  margin-bottom: 16px;
}

.node-childrens-book-review-form .form-type-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.node-childrens-book-review-form .form-type-textarea .form-textarea-wrapper {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.node-childrens-book-review-form .form-type-textarea textarea {
  width: 100%;
}

.node-childrens-book-review-form .form-text {
  height: 44px;
}

.node-childrens-book-review-form .field--name-field-county {
  width: 40%;
  padding-right: 16px;
}

.node-childrens-book-review-form .field--name-field-age-group {
  width: 60%;
}

.node-childrens-book-review-form .field--name-field-star-rating {
  padding: 0 0 16px 0;
  background-color: rgba(211, 229, 244, 0.1);
}

@media screen and (max-width: 640px) {
  .node-childrens-book-review-form .field--name-field-star-rating {
    padding-bottom: 32px;
  }
}

.node-childrens-book-review-form .field--name-field-star-rating label {
  min-width: initial;
  font-weight: 700;
  color: #5da152;
  font-size: 38px;
  vertical-align: middle;
  position: relative;
  margin-right: 0;
  letter-spacing: 16px;
  top: -14px;
}

.node-childrens-book-review-form .field--name-field-star-rating label:hover {
  cursor: pointer;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-radios {
  position: relative;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio input {
  display: none;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio:nth-child(2) {
  z-index: 4;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio:nth-child(3) {
  z-index: 3;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio:nth-child(4) {
  z-index: 2;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio:nth-child(5) {
  z-index: 1;
}

.node-childrens-book-review-form .field--name-field-star-rating .form-type-radio.active label {
  color: #f3bd43;
}

.node-childrens-book-review-form .field--name-field-star-rating .field-star-rating-text {
  position: absolute;
  left: 250px;
  color: #009fe8;
  font-weight: 700;
  top: 2px;
  font-size: 20px;
}

@media screen and (max-width: 640px) {
  .node-childrens-book-review-form .field--name-field-star-rating .field-star-rating-text {
    left: 0;
    top: 38px;
  }
}

.node-childrens-book-review-form .form-type-vertical-tabs {
  display: none;
}

.node-childrens-book-review-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.node-childrens-book-review-form .form-actions .form-help-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #d0202a;
}

.node-childrens-book-review-form .form-actions input {
  background-color: #d0202a;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.node-childrens-book-review-form .form-actions input:hover, .node-childrens-book-review-form .form-actions input:focus {
  background-color: black;
}

@media screen and (max-width: 640px) {
  .node-childrens-book-review-form .form-actions .form-help-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 18px;
  }
  .node-childrens-book-review-form .form-actions input {
    margin-left: auto;
  }
}

.node-childrens-book-review-form .form-item--error-message {
  position: absolute;
  left: 0;
  color: #d0202a;
  font-size: 14px;
}

.node-childrens-book-review-form .form-item--error {
  padding-top: 20px;
  position: relative;
}

.node-childrens-book-review-form .form-item--error .form-item--error-message {
  top: -10px;
}

.node-childrens-book-review-form fieldset.error {
  position: relative;
}

.node-childrens-book-review-form fieldset.error .form-item--error-message {
  bottom: 46px;
  top: auto;
}

@media screen and (max-width: 960px) {
  .node-childrens-book-review-form .field--name-field-county {
    width: 100%;
    padding-right: 0;
  }
  .node-childrens-book-review-form .field--name-field-age-group {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .node-childrens-book-review-form .form-type-select {
    display: block;
  }
  .node-childrens-book-review-form .form-type-select label, .node-childrens-book-review-form .form-type-select select {
    display: block;
  }
  .node-childrens-book-review-form .form-type-select label {
    margin-bottom: 5px;
  }
  .node-childrens-book-review-form .form-type-select:after {
    position: absolute;
    top: auto;
    bottom: 0;
  }
  .node-childrens-book-review-form .form-type-textfield {
    display: block;
  }
  .node-childrens-book-review-form .form-type-textfield label, .node-childrens-book-review-form .form-type-textfield input {
    display: block;
  }
  .node-childrens-book-review-form .form-type-textfield label {
    margin-bottom: 5px;
  }
  .node-childrens-book-review-form .form-type-textarea {
    display: block;
  }
  .node-childrens-book-review-form .form-type-textarea label, .node-childrens-book-review-form .form-type-textarea .form-textarea-wrapper {
    display: block;
  }
  .node-childrens-book-review-form .form-type-textarea label {
    margin-bottom: 5px;
  }
}

.pager__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

.pager__item {
  padding: 0;
  list-style: none;
}

.pager__item a {
  margin: 0 1rem;
  text-decoration: none;
  color: #292929;
}

.pager__item.is-active a {
  text-decoration: underline;
  font-weight: bold;
}

.block-search {
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .block-search {
    margin-left: 24px;
  }
}

.block-search form .form--inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-search .form-text {
  max-width: 100px;
  height: 100%;
  padding: 0 1rem;
  border: 1px solid #292929;
  border-right: 0;
  border-radius: 1rem 0 0 1rem;
}

.block-search .form-text::-webkit-input-placeholder {
  color: #7a7a7a;
}

.block-search .form-text::-moz-placeholder {
  color: #7a7a7a;
}

.block-search .form-text:-ms-input-placeholder {
  color: #7a7a7a;
}

.block-search .form-text::-ms-input-placeholder {
  color: #7a7a7a;
}

.block-search .form-text::placeholder {
  color: #7a7a7a;
}

.block-search .button {
  width: 3rem;
  height: 2rem;
  padding: 5px 1rem 4px;
  cursor: pointer;
  border: 1px solid #292929;
  border-left: 0;
  border-radius: 0 1rem 1rem 0;
  background-color: white;
  font-size: 1rem;
}

.block-search svg {
  max-width: 1rem;
  max-height: 1rem;
}

.block-search svg path {
  fill: #1a263f;
}

.social-sharing__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  margin: 0;
  padding: 0;
}

.social-sharing__menu > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.social-sharing__menu > * {
  width: 50px;
  margin: 0 0.5rem;
}

.social-sharing__menu-item {
  list-style: none;
}

.user-forms form {
  max-width: 500px;
  margin: 48px auto;
  text-align: left;
}

.user-forms .page-title {
  width: 100%;
  margin: 2rem 0 3rem;
}

.user-forms form .form-item {
  max-width: 500px;
  margin-bottom: 2rem;
}

.user-forms form .form-item label {
  display: block;
  margin-bottom: 3px;
  font-weight: bold;
}

.user-forms form .form-item input {
  width: 100%;
  max-width: 100%;
  padding: 7px;
  color: black;
  border: 2px solid black;
  font-size: 1rem;
}

.user-forms form .form-item input:hover {
  padding: 5px 7px;
  border: 4px solid black;
}

.user-forms form .form-item input:focus {
  padding: 5px 7px;
  border: 4px solid black;
}

.user-forms .description {
  font-size: 0.75rem;
}

.user-forms .form-submit {
  padding: 7px 1.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: black;
  border: 2px solid black;
  border-radius: 4px;
  background: white;
  font-size: 1rem;
}

.user-forms .form-submit:focus, .user-forms .form-submit:hover {
  color: white;
  background: black;
}

.user-forms .back-to-site {
  max-width: 500px;
  margin: auto;
  text-align: right;
}

.user-forms .back-to-site a {
  color: black;
}

/**
 * This file is used to style the building blocks field.
 *
 * It's a high-level file, probably only used for the wrapper classes.
 */
.building-blocks > .building-block {
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .building-blocks > .building-block {
    margin-bottom: 48px;
  }
}

@media (min-width: 768px) {
  .building-blocks > .building-block {
    margin-bottom: 72px;
  }
}

.accordion__trigger {
  width: 100%;
}

.call-to-action {
  position: relative;
  text-align: center;
  background-color: white;
}

.primary.call-to-action a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #cdea80;
  font-size: 10px;
}

.primary.call-to-action a:focus, .primary.call-to-action a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.secondary.call-to-action a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #41b6e6;
  font-size: 10px;
}

.secondary.call-to-action a:focus, .secondary.call-to-action a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.tertiary.call-to-action a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #001489;
  font-size: 10px;
}

.tertiary.call-to-action a:focus, .tertiary.call-to-action a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.quaternary.call-to-action a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #da1884;
  font-size: 10px;
}

.quaternary.call-to-action a:focus, .quaternary.call-to-action a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.quinary.call-to-action a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #ffb549;
  font-size: 10px;
}

.quinary.call-to-action a:focus, .quinary.call-to-action a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.call-to-action a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #da1884;
  font-size: 10px;
}

.call-to-action a:focus, .call-to-action a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.large.call-to-action a {
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
}

.embed-external-url {
  text-align: center;
}

.file-upload {
  padding-top: 48px;
  padding-bottom: 48px;
}

.file-upload-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
  color: #1a263f;
  background: red;
  background-color: white;
}

.file-upload-file:focus, .file-upload-file:hover {
  text-decoration: underline;
  color: white;
  background-color: #001489;
}

.file-upload-file:focus .file-upload-file__type, .file-upload-file:hover .file-upload-file__type {
  color: white;
}

.file-upload-file + .file-upload-file {
  margin-top: 24px;
}

.file-upload-file__download-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4rem;
  height: 100%;
  min-height: 4rem;
  background-color: #001489;
}

.file-upload-file__download-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.file-upload-file__download-icon svg path {
  fill: white;
}

.file-upload-file__type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4rem;
  margin-right: 1rem;
  margin-left: auto;
  text-align: right;
  text-transform: uppercase;
  color: #001489;
  font-size: 10px;
  font-weight: 700;
}

.file-upload-file--audio:focus, .file-upload-file--audio:hover {
  background-color: #ffb549;
}

.file-upload-file--audio .file-upload-file__download-icon {
  background-color: #ffb549;
}

.file-upload-file--audio .file-upload-file__type {
  color: #ffb549;
}

.file-upload-file--flash:focus, .file-upload-file--flash:hover {
  background-color: #41b6e6;
}

.file-upload-file--flash .file-upload-file__download-icon {
  background-color: #41b6e6;
}

.file-upload-file--flash .file-upload-file__type {
  color: #41b6e6;
}

.file-upload-file--pdf:focus, .file-upload-file--pdf:hover {
  background-color: #da1884;
}

.file-upload-file--pdf .file-upload-file__download-icon {
  background-color: #da1884;
}

.file-upload-file--pdf .file-upload-file__type {
  color: #da1884;
}

@media (min-width: 640px) {
  .iwt__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .iwt__inner > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.left > .iwt__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.right > .iwt__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (min-width: 960px) {
  .right > .iwt__inner .iwt__text {
    margin-right: 72px;
    margin-left: 0;
  }
}

.iwt__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iwt__image img {
  width: 100%;
  max-width: 640px;
  border-radius: 50%;
}

@media (min-width: 640px) {
  .iwt__image img {
    max-width: 300px;
    height: auto;
  }
}

.iwt--square-image img {
  border-radius: 0;
}

.iwt__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .iwt__text {
    margin-top: 0;
  }
}

@media (min-width: 960px) {
  .iwt__text {
    margin-right: 0;
    margin-left: 72px;
  }
}

.footer-image-text-block .iwt__inner {
  margin: 0.5em 0 1.5em;
}

.licta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}

@media (min-width: 640px) {
  .licta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.licta__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
          flex: 0 0 250px;
  background-size: cover;
}

.licta__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.licta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 48px 48px;
}

@media (min-width: 640px) {
  .licta__content {
    padding: 48px 72px 48px 0;
  }
}

.licta__content p:last-of-type {
  margin-bottom: 0;
}

.licta__content > * + * {
  margin-top: 24px;
}

.licta__bubble {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px;
  margin-top: -72px;
}

@media (min-width: 640px) {
  .licta__bubble {
    margin-top: 0;
    margin-left: -72px;
  }
}

.licta__arc {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -20px;
}

.licta__link a {
  display: inline-block;
  padding: 0.25rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  border: 2px solid white;
  font-size: 10px;
}

.licta__link a:focus, .licta__link a:hover {
  text-decoration: none;
  color: #1a263f;
  background-color: white;
}

.licta--no-image {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.licta--no-image .licta__content {
  padding: 48px 72px;
}

.licta .bg-grey--lighter,
.licta .bg-primary,
.licta .bg-quinary,
.licta .bg-secondary {
  color: black;
}

.licta .bg-grey--lighter .licta__link a,
.licta .bg-primary .licta__link a,
.licta .bg-quinary .licta__link a,
.licta .bg-secondary .licta__link a {
  color: black;
  border-color: black;
}

.licta .bg-grey--lighter .licta__link a:focus, .licta .bg-grey--lighter .licta__link a:hover,
.licta .bg-primary .licta__link a:focus,
.licta .bg-primary .licta__link a:hover,
.licta .bg-quinary .licta__link a:focus,
.licta .bg-quinary .licta__link a:hover,
.licta .bg-secondary .licta__link a:focus,
.licta .bg-secondary .licta__link a:hover {
  color: #eaeaea;
  background-color: black;
}

.quote {
  border-left: 0.5rem solid #cdea80;
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
}

.quote__blockquote {
  margin: 0;
  font-style: italic;
}

.quote__blockquote p:last-of-type {
  margin-bottom: 0;
}

.quote__author {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 2px solid #cdea80;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
}

.quote--primary {
  border-left-color: #cdea80;
}

.quote--primary .quote__author {
  border-bottom-color: #cdea80;
}

.quote--secondary {
  border-left-color: #41b6e6;
}

.quote--secondary .quote__author {
  border-bottom-color: #41b6e6;
}

.quote--secondary {
  border-left-color: #41b6e6;
}

.quote--secondary .quote__author {
  border-bottom-color: #41b6e6;
}

.quote--tertiary {
  border-left-color: #001489;
}

.quote--tertiary .quote__author {
  border-bottom-color: #001489;
}

.quote--quaternary {
  border-left-color: #da1884;
}

.quote--quaternary .quote__author {
  border-bottom-color: #da1884;
}

.quote--quinary {
  border-left-color: #ffb549;
}

.quote--quinary .quote__author {
  border-bottom-color: #ffb549;
}

.related-content__title {
  margin-bottom: 24px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .related-content__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .related-content__items > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.related-content__items > * {
  margin-bottom: 24px;
}

.section-break hr {
  height: 0.25rem;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  background: #cdea80;
}

.section-break.primary hr {
  background: #cdea80;
}

.section-break.secondary hr {
  background: #41b6e6;
}

.section-break.tertiary hr {
  background: #001489;
}

.section-break.quaternary hr {
  background: #da1884;
}

.section-break.quinary hr {
  background: #ffb549;
}

.single-image {
  margin-right: auto;
  margin-left: auto;
}

.single-image__image {
  line-height: 0;
}

.single-image__image img {
  line-height: 1.5;
}

.single-image__meta {
  padding: 0.75rem;
  background: #e3e3e3;
  font-size: 0.75rem;
}

.single-image__meta p {
  margin-bottom: 0;
}

.single-image__meta-copyright {
  font-style: italic;
}

.single-image__meta-caption + .single-image__meta-copyright {
  margin-top: 1rem;
}

.text--child-friendly {
  font-family: "Comic Sans MS", sans-serif;
  font-size: 1.5rem;
}

.text a {
  border-bottom: 1px solid black;
}

.text a:focus, .text a:hover {
  border-bottom: 3px solid #da1884;
}

.tile {
  width: 100%;
  margin-bottom: 24px;
  background-color: #eaeaea;
}

a.tile {
  text-decoration: none;
}

a.tile:focus, a.tile:hover {
  background-color: #cdea80;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cdea80), to(#b3df3e));
  background-image: linear-gradient(#cdea80, #b3df3e);
}

a.tile:focus .tile__text, a.tile:hover .tile__text {
  color: #1a263f;
}

.tile--has-image {
  background-color: white;
}

@media (min-width: 640px) {
  .tile--small {
    width: calc(33% - 2rem);
  }
}

@media (min-width: 640px) {
  .tile--medium {
    width: calc(50% - 2rem);
  }
}

@media (min-width: 640px) {
  .tile--large {
    width: calc(66% - 2rem);
  }
}

@media (min-width: 640px) {
  .tile--full {
    width: calc(100% - 2rem);
  }
}

.tile--primary {
  border-top: 0.5rem solid #cdea80;
}

.tile--secondary {
  border-top: 0.5rem solid #41b6e6;
}

.tile--tertiary {
  border-top: 0.5rem solid #001489;
}

.tile--quaternary {
  border-top: 0.5rem solid #da1884;
}

.tile--quinary {
  border-top: 0.5rem solid #ffb549;
}

a.tile--primary:focus, a.tile--primary:hover {
  background-color: #cdea80;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cdea80), to(#b3df3e));
  background-image: linear-gradient(#cdea80, #b3df3e);
}

a.tile--secondary:focus, a.tile--secondary:hover {
  background-color: #41b6e6;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#41b6e6), to(#1990c1));
  background-image: linear-gradient(#41b6e6, #1990c1);
}

a.tile--tertiary:focus, a.tile--tertiary:hover {
  background-color: #001489;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#001489), to(#00093d));
  background-image: linear-gradient(#001489, #00093d);
}

a.tile--tertiary:focus .tile__title,
a.tile--tertiary:focus .tile__text, a.tile--tertiary:hover .tile__title,
a.tile--tertiary:hover .tile__text {
  color: white;
}

a.tile--quaternary:focus, a.tile--quaternary:hover {
  background-color: #da1884;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#da1884), to(#95105a));
  background-image: linear-gradient(#da1884, #95105a);
}

a.tile--quaternary:focus .tile__title,
a.tile--quaternary:focus .tile__text, a.tile--quaternary:hover .tile__title,
a.tile--quaternary:hover .tile__text {
  color: white;
}

a.tile--quinary:focus, a.tile--quinary:hover {
  background-color: #ffb549;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb549), to(#fc9500));
  background-image: linear-gradient(#ffb549, #fc9500);
}

.tile__content {
  padding: 24px;
}

.tile--no-style .tile__content {
  padding-top: calc(24px + 0.5rem);
}

.tile__title {
  color: #1a263f;
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
  font-weight: 700;
}

.tile__image img {
  width: 100%;
  height: auto;
}

.tile__text {
  color: #666666;
}

.tile__text p:last-of-type {
  margin-bottom: 0;
}

.tiled-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  position: relative;
  background-color: white;
}

.tiled-layout > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.video__item {
  margin: auto -10px;
  padding: 10px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.video .video-embed-field-responsive-video {
  position: relative;
}

.video .video-embed-field-responsive-video::after {
  display: block;
  padding-bottom: 56.25%;
  content: "";
}

.video .video-embed-field-responsive-video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.card__title {
  margin-top: 10px;
}

.card__content {
  color: #7a7a7a;
}

.card__content-reader {
  font-weight: 500;
  color: black;
}

.card--video .video-embed-field-lazy-play {
  border: 0;
}

.card--video .card__media a {
  position: relative;
  overflow: hidden;
  display: block;
  padding-bottom: calc(100% * (9/16));
  background-color: #da1884;
}

.card--video .card__media a img {
  width: 100%;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.full__hero-image {
  line-height: 0;
}

.full__hero-image img {
  width: 100%;
}

.full__hero-bg {
  margin-bottom: 24px;
  padding: 24px 0 48px;
}

@media (min-width: 640px) {
  .full__hero-bg {
    margin-bottom: 72px;
  }
}

.full__hero-bg--primary {
  background-color: #cdea80;
}

.full__hero-bg--secondary {
  background-color: #41b6e6;
}

.full__hero-bg--tertiary {
  background-color: #001489;
}

.full__hero-bg--quaternary {
  background-color: #da1884;
}

.full__hero-bg--quinary {
  background-color: #ffb549;
}

.full__hero-bg--grey--darker {
  background-color: #1a263f;
}

.full__hero-bg--grey--dark {
  background-color: #666666;
}

.full--hero-bg-style-primary .breadcrumb a,
.full--hero-bg-style-primary .full__greeting,
.full--hero-bg-style-primary .full__greeting a,
.full--hero-bg-style-secondary .breadcrumb a,
.full--hero-bg-style-secondary .full__greeting,
.full--hero-bg-style-secondary .full__greeting a,
.full--hero-bg-style-quinary .breadcrumb a,
.full--hero-bg-style-quinary .full__greeting,
.full--hero-bg-style-quinary .full__greeting a {
  color: black;
}

.full--hero-bg-style-primary .full__introduction,
.full--hero-bg-style-secondary .full__introduction,
.full--hero-bg-style-quinary .full__introduction {
  border-bottom-color: black;
}

.full--hero-bg-style-primary .full__greeting svg path,
.full--hero-bg-style-secondary .full__greeting svg path,
.full--hero-bg-style-quinary .full__greeting svg path {
  fill: black;
}

.full--hero-bg-style-tertiary .breadcrumb a,
.full--hero-bg-style-tertiary .breadcrumb li::after,
.full--hero-bg-style-tertiary .full__title,
.full--hero-bg-style-tertiary .full__greeting,
.full--hero-bg-style-tertiary .full__greeting a,
.full--hero-bg-style-quaternary .breadcrumb a,
.full--hero-bg-style-quaternary .breadcrumb li::after,
.full--hero-bg-style-quaternary .full__title,
.full--hero-bg-style-quaternary .full__greeting,
.full--hero-bg-style-quaternary .full__greeting a,
.full--hero-bg-style-grey--darker .breadcrumb a,
.full--hero-bg-style-grey--darker .breadcrumb li::after,
.full--hero-bg-style-grey--darker .full__title,
.full--hero-bg-style-grey--darker .full__greeting,
.full--hero-bg-style-grey--darker .full__greeting a,
.full--hero-bg-style-grey--dark .breadcrumb a,
.full--hero-bg-style-grey--dark .breadcrumb li::after,
.full--hero-bg-style-grey--dark .full__title,
.full--hero-bg-style-grey--dark .full__greeting,
.full--hero-bg-style-grey--dark .full__greeting a {
  color: white;
}

.full--hero-bg-style-tertiary .breadcrumb a:focus,
.full--hero-bg-style-tertiary .breadcrumb a:hover,
.full--hero-bg-style-quaternary .breadcrumb a:focus,
.full--hero-bg-style-quaternary .breadcrumb a:hover,
.full--hero-bg-style-grey--darker .breadcrumb a:focus,
.full--hero-bg-style-grey--darker .breadcrumb a:hover,
.full--hero-bg-style-grey--dark .breadcrumb a:focus,
.full--hero-bg-style-grey--dark .breadcrumb a:hover {
  color: white;
}

.full--hero-bg-style-tertiary .full__introduction,
.full--hero-bg-style-quaternary .full__introduction,
.full--hero-bg-style-grey--darker .full__introduction,
.full--hero-bg-style-grey--dark .full__introduction {
  border-bottom-color: white;
}

.full--hero-bg-style-tertiary .full__greeting svg path,
.full--hero-bg-style-quaternary .full__greeting svg path,
.full--hero-bg-style-grey--darker .full__greeting svg path,
.full--hero-bg-style-grey--dark .full__greeting svg path {
  fill: white;
}

.full--hero-bg-style-grey--darker .full__title,
.full--hero-bg-style-grey--dark .full__title {
  color: #ffb549;
}

.full--hero-has-no-style.full--hero-has-no-image .full__hero-bg {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.full__greeting {
  max-width: 640px;
  margin-right: 1rem;
  margin-left: 1rem;
  padding-top: 24px;
}

@media (min-width: 640px) {
  .full__greeting {
    margin-right: auto;
    margin-left: auto;
  }
}

.full__greeting--hero-with-image {
  position: relative;
  margin-top: -96px;
  background-color: white;
}

.full--hero-has-image .full__introduction {
  border-bottom: 2px solid #da1884;
}

.full--hero-has-image .full__meta {
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 0.5rem;
  border-top: 2px solid #da1884;
  border-bottom: 2px solid #da1884;
}

.full--hero-has-image .full__meta a {
  color: #1a263f;
}

.full--hero-has-image .full__greeting svg path {
  fill: #1a263f;
}

.full--hero-has-image.full--hero-bg-style-primary .breadcrumb a,
.full--hero-has-image.full--hero-bg-style-primary .breadcrumb li::after {
  color: #cdea80;
}

.full--hero-has-image.full--hero-bg-style-primary .breadcrumb a:focus,
.full--hero-has-image.full--hero-bg-style-primary .breadcrumb a:hover {
  color: #1a263f;
}

.full--hero-has-image.full--hero-bg-style-primary .full__introduction {
  border-bottom-color: #cdea80;
}

.full--hero-has-image.full--hero-bg-style-primary .full__meta {
  border-top-color: #cdea80;
  border-bottom-color: #cdea80;
}

.full--hero-has-image.full--hero-bg-style-secondary .breadcrumb a,
.full--hero-has-image.full--hero-bg-style-secondary .breadcrumb li::after {
  color: #41b6e6;
}

.full--hero-has-image.full--hero-bg-style-secondary .breadcrumb a:focus,
.full--hero-has-image.full--hero-bg-style-secondary .breadcrumb a:hover {
  color: #1a263f;
}

.full--hero-has-image.full--hero-bg-style-secondary .full__introduction {
  border-bottom-color: #41b6e6;
}

.full--hero-has-image.full--hero-bg-style-secondary .full__meta {
  border-top-color: #41b6e6;
  border-bottom-color: #41b6e6;
}

.full--hero-has-image.full--hero-bg-style-tertiary .breadcrumb a,
.full--hero-has-image.full--hero-bg-style-tertiary .breadcrumb li::after {
  color: #001489;
}

.full--hero-has-image.full--hero-bg-style-tertiary .breadcrumb a:focus,
.full--hero-has-image.full--hero-bg-style-tertiary .breadcrumb a:hover,
.full--hero-has-image.full--hero-bg-style-tertiary .full__title,
.full--hero-has-image.full--hero-bg-style-tertiary .full__greeting,
.full--hero-has-image.full--hero-bg-style-tertiary .full__greeting a {
  color: #1a263f;
}

.full--hero-has-image.full--hero-bg-style-tertiary .full__introduction {
  border-bottom-color: #001489;
}

.full--hero-has-image.full--hero-bg-style-tertiary .full__meta {
  border-top-color: #001489;
  border-bottom-color: #001489;
}

.full--hero-has-image.full--hero-bg-style-quaternary .breadcrumb a:focus,
.full--hero-has-image.full--hero-bg-style-quaternary .breadcrumb a:hover,
.full--hero-has-image.full--hero-bg-style-quaternary .full__title,
.full--hero-has-image.full--hero-bg-style-quaternary .full__greeting,
.full--hero-has-image.full--hero-bg-style-quaternary .full__greeting a {
  color: #1a263f;
}

.full--hero-has-image.full--hero-bg-style-quaternary .full__introduction {
  border-bottom-color: #da1884;
}

.full--hero-has-image.full--hero-bg-style-quaternary .breadcrumb a,
.full--hero-has-image.full--hero-bg-style-quaternary .breadcrumb li::after {
  color: #da1884;
}

.full--hero-has-image.full--hero-bg-style-quaternary .full__meta {
  border-top-color: #da1884;
  border-bottom-color: #da1884;
}

.full--hero-has-image.full--hero-bg-style-quinary .breadcrumb a,
.full--hero-has-image.full--hero-bg-style-quinary .breadcrumb li::after {
  color: #ffb549;
}

.full--hero-has-image.full--hero-bg-style-quinary .breadcrumb a:focus,
.full--hero-has-image.full--hero-bg-style-quinary .breadcrumb a:hover {
  color: #1a263f;
}

.full--hero-has-image.full--hero-bg-style-quinary .full__introduction {
  border-bottom-color: #ffb549;
}

.full--hero-has-image.full--hero-bg-style-quinary .full__meta {
  border-top-color: #ffb549;
  border-bottom-color: #ffb549;
}

.full__title {
  margin-bottom: 24px;
}

.full__introduction {
  margin-bottom: 24px;
  font-style: italic;
}

.full__introduction a {
  color: #1a263f;
}

.full__introduction--europe_direct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.full__introduction--europe_direct > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.full__introduction--europe_direct .text-formatted {
  margin-top: 1rem;
}

.full__meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
}

.full__meta-item p {
  margin-bottom: 0;
}

.full__meta-item-icon {
  margin-right: 0.5rem;
}

.full__meta-item-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.teaser {
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeaea;
}

.teaser__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.teaser__inner:focus .teaser__title, .teaser__inner:hover .teaser__title {
  text-decoration: underline;
}

.teaser__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  margin-right: 1rem;
}

.teaser__prefix {
  color: #1a263f;
  font-size: 10px;
}

.teaser__content-type {
  text-transform: uppercase;
  color: #da1884;
  font-weight: 700;
}

.teaser__title {
  text-decoration: none;
  color: #1a263f;
}

.teaser__text {
  text-transform: uppercase;
  color: #999999;
  font-size: 10px;
}

.teaser__read-more a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  background-color: #001489;
  font-size: 10px;
}

.teaser__read-more a:focus, .teaser__read-more a:hover {
  text-decoration: none;
  color: white;
  background-color: #292929;
}

.book-review-submissions {
  margin-bottom: 72px;
}

.book-review-submissions__exposed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -16px 15px;
}

.book-review-submissions__exposed__title {
  margin-right: 10px;
  line-height: 50px;
  font-weight: 700;
}

.book-review-submissions__exposed__list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.book-review-submissions__exposed__list ul li {
  display: inline;
  line-height: 50px;
}

.book-review-submissions__exposed__list ul li:after {
  content: "|";
  margin-left: 4px;
  margin-right: 4px;
}

.book-review-submissions__exposed__list ul li:last-child:after {
  display: none;
}

.book-review-submissions__exposed__list ul li a {
  text-decoration: none;
  color: #41b6e6;
}

.book-review-submissions__exposed__list ul li a:hover, .book-review-submissions__exposed__list ul li a:focus {
  color: #41b6e6;
  text-decoration: underline;
}

.book-review-submissions__exposed__list ul li a.active {
  font-weight: 700;
  color: #1990c1;
}

.book-review-submissions__exposed__link {
  margin-left: auto;
}

.book-review-submissions__exposed__link a {
  background-color: #d0202a;
  padding: 10px 15px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.book-review-submissions__exposed__link a:hover, .book-review-submissions__exposed__link a:focus {
  background-color: black;
  color: white;
}

.book-review-submissions .views-row + .views-row {
  padding-top: 20px;
}

.book-review-submissions .pager {
  margin-top: 32px;
}

.book-review-submissions .view-empty {
  margin-top: 48px;
  text-align: center;
}

.book-review-submissions .view-empty a {
  color: #1990c1;
  font-weight: 700;
  text-decoration: none;
}

.book-review-submissions .view-empty a:hover, .book-review-submissions .view-empty a:focus {
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .book-review-submissions__exposed {
    display: block;
  }
  .book-review-submissions__exposed__title {
    margin-right: 0;
    line-height: 1.25;
  }
  .book-review-submissions__exposed__list {
    margin: 16px 0;
  }
  .book-review-submissions__exposed__list ul li {
    line-height: 1.25;
  }
}

@media (min-width: 640px) {
  .listing--cards {
    margin-top: 2.5rem;
  }
}

.listing--cards > .layout-contained.padding-horizontal {
  background-color: white;
  position: relative;
}

@media (min-width: 640px) {
  .listing--cards .view-filters .form--inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
  }
}

.listing--cards .view-filters .form-item {
  margin-right: 2em;
  width: 100%;
}

@media (min-width: 640px) {
  .listing--cards .view-filters .form-item {
    width: auto;
  }
}

.listing--cards .view-filters .form-item label {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
  word-wrap: normal;
}

.listing--cards .view-filters .form-select {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding-right: 2em;
  padding-left: 0.75rem;
  border-radius: 1.5em;
  border-color: #da1884;
  font-size: 1rem;
}

.listing--cards .view-filters .form-select option {
  display: block;
}

.listing--cards .view-filters .form-type-select::after {
  right: 1rem;
  top: 15%;
}

.listing--cards .view-filters .form-submit {
  border-radius: 1.5em;
  background-color: black;
  border-color: black;
  width: 100%;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .listing--cards .view-filters .form-submit {
    width: auto;
  }
}

.listing--cards .view-content {
  padding-top: 3.5rem;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.listing--cards .view-content > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.listing--cards .view-content > * {
  width: 100%;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .listing--cards .view-content > * {
    width: calc((100% / 2) - 2rem);
    margin-bottom: 24px;
  }
}

@media (min-width: 640px) and (min-width: 640px) {
  .listing--cards .view-content > * {
    margin-bottom: 48px;
  }
}

@media (min-width: 640px) and (min-width: 768px) {
  .listing--cards .view-content > * {
    margin-bottom: 72px;
  }
}

@media (min-width: 960px) {
  .listing--cards .view-content > * {
    width: calc((100% / 3) - 2rem);
  }
}

.book-review-submission {
  border: 2px solid #4b9560;
  border-radius: 4px;
}

.book-review-submission.node--view-mode-full {
  margin-bottom: 72px;
}

.book-review-submission__region--one {
  background-color: #5da152;
  color: white;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 20px;
  text-transform: uppercase;
}

@media screen and (max-width: 500px) {
  .book-review-submission__region--one {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.book-review-submission__region--one > div {
  margin: 6px 0;
}

.book-review-submission__region--one .book-review-submission__text {
  font-weight: 700;
}

.book-review-submission__region--two {
  color: #5da152;
  background-color: white;
  padding: 10px 20px 20px;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  .book-review-submission__region--two {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.book-review-submission__region--two .book-review-submission__text {
  color: #f3bd43;
}

.book-review-submission__region--two .book-review-submission__review .book-review-submission__text {
  color: black;
  font-weight: 300;
}

.book-review-submission__label, .book-review-submission__text {
  display: inline-block;
  vertical-align: top;
}

.book-review-submission__name, .book-review-submission__age-group {
  margin: 5px 0;
}

.book-review-submission__review {
  margin: 15px 0;
}

.book-review-submission__star-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.book-review-submission__star-rating .book-review-submission__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.book-review-submission__star-rating .book-review-submission__text .book-review-submission__star-rating__stars {
  color: #f3bd43;
  font-size: 28px;
  vertical-align: middle;
  margin: 0 10px;
}

@media screen and (max-width: 500px) {
  .book-review-submission__star-rating .book-review-submission__text .book-review-submission__star-rating__stars {
    font-size: 20px;
    margin: 0 3px;
  }
}

.book-review-submission__star-rating .book-review-submission__text .book-review-submission__star-rating__text {
  color: #009fe8;
}

@media screen and (max-width: 500px) {
  .book-review-submission__star-rating .book-review-submission__text .book-review-submission__star-rating__text {
    font-size: 14px;
  }
}

.book-review-submission.node--unpublished {
  border: 2px solid #666666;
}

.book-review-submission.node--unpublished .book-review-submission__region--one {
  background-color: #999999;
}

.book-review-submission.node--unpublished .book-review-submission__region--two {
  color: #999999;
}

.homepage__cards {
  margin-top: 24px;
}

@media (min-width: 640px) {
  .homepage__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .homepage__cards > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.homepage__card {
  position: relative;
  display: block;
  margin-bottom: 48px;
  padding-top: 8px;
  text-decoration: none;
  border-top: 4px solid #cdea80;
}

@media (min-width: 640px) {
  .homepage__card {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: calc(33% - 2rem);
    margin-bottom: 0;
  }
}

.homepage__card:focus .homepage__card-title, .homepage__card:hover .homepage__card-title {
  color: black;
  background: #cdea80;
}

.homepage__card--second {
  border-top-color: #41b6e6;
}

.homepage__card--second:focus .homepage__card-title, .homepage__card--second:hover .homepage__card-title {
  background: #41b6e6;
}

.homepage__card--third {
  border-top-color: #ffb549;
}

.homepage__card--third:focus .homepage__card-title, .homepage__card--third:hover .homepage__card-title {
  background: #ffb549;
}

.homepage__card-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: white;
  background-color: #292929;
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
}

.homepage__card-image {
  line-height: 0;
}

.homepage__card-image img {
  width: 100%;
}

.homepage__csb {
  padding: 48px 1rem 144px;
  background: #20419a;
}

@media (min-width: 960px) {
  .homepage__csb {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 1px;
    min-height: 330px;
    padding: 0 1rem 0 4rem;
  }
}

.homepage__csb-title {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-bottom: 0;
  color: white;
}

.homepage__csb-title--alt {
  margin-bottom: 1rem;
  color: #ffb549;
  font-style: italic;
}

@media (min-width: 960px) {
  .homepage__csb-search {
    width: 100%;
    max-width: 500px;
  }
}

@media (min-width: 960px) {
  .homepage__csb-search-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background-color: white;
  }
}

.homepage__csb fieldset {
  padding: 0;
  border: 0;
}

.homepage__csb #search_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.homepage__csb #search_box input {
  width: calc(100% - 3rem);
  padding: 1rem;
  border: 0;
  background-color: #eaeaea;
  font-size: 1rem;
}

.homepage__csb #search_box button {
  width: 3rem;
  padding-top: 9px;
  padding-bottom: 8px;
  border: 0;
  background-color: #41b6e6;
}

.homepage__csb svg {
  width: 1rem;
  height: 1rem;
}

.homepage__csb-links--small-screens {
  margin: -96px 1rem 0;
}

@media (min-width: 640px) {
  .homepage__csb-links--small-screens {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .homepage__csb-links--small-screens > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

@media (min-width: 960px) {
  .homepage__csb-links--small-screens {
    display: none;
  }
}

.homepage__csb-links--large-screens {
  display: none;
}

@media (min-width: 960px) {
  .homepage__csb-links--large-screens {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    max-width: 300px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.homepage__csb-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin-bottom: 24px;
  padding: 0.5rem 0.5rem 0 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #292929;
  border-right: 3px solid #20419a;
  border-bottom: 3px solid #20419a;
  background: white;
  font-size: 12px;
}

@media (min-width: 640px) {
  .homepage__csb-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 4rem);
            flex: 0 0 calc(50% - 4rem);
  }
  .homepage__csb-link:last-of-type {
    margin-bottom: 0;
  }
}

@media (min-width: 960px) {
  .homepage__csb-link {
    padding: 0.5rem;
  }
}

.homepage__csb-link:focus, .homepage__csb-link:hover {
  text-decoration: underline;
  border-color: #41b6e6;
}

.homepage__csb-link::before {
  position: absolute;
  height: calc(100% - 2px);
  content: "";
  border-left: 0.5rem white solid;
}

@media (min-width: 960px) {
  .homepage__csb-link::before {
    display: none;
  }
}

.homepage__csb-link-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  margin-right: 1rem;
  line-height: 0;
}

.homepage__csb-advanced-link {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-top: 1rem;
  text-align: right;
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
}

.homepage__csb-advanced-link a {
  text-decoration: none;
  color: white;
}

.homepage__csb-advanced-link a:focus, .homepage__csb-advanced-link a:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .homepage__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .homepage__socials > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.homepage__social {
  margin-bottom: 48px;
  background-color: white;
}

@media (min-width: 640px) {
  .homepage__social {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: calc(50% - 2rem);
    margin-bottom: 0;
  }
}

.homepage__social--first {
  border-top: 5px solid #ffb549;
}

.homepage__social--second {
  padding: 1rem;
  border-top: 5px solid #da1884;
}

.full--landing-page.full--hero-has-image .full__greeting--hero-with-image,
.full--page.full--hero-has-image .full__greeting--hero-with-image {
  padding-bottom: 1px;
}

@media (min-width: 640px) {
  .full--landing-page.full--hero-has-style .full__hero-bg--with-style {
    margin-bottom: -72px;
    padding-bottom: 72px;
  }
}

@media (min-width: 640px) {
  .full--landing-page.full--hero-has-image > .building-blocks > .building-block:first-of-type > div > .tiled-layout,
  .full--page.full--hero-has-image > .building-blocks > .building-block:first-of-type > div > .tiled-layout,
  .full--landing-page.full--hero-has-style > .building-blocks > .building-block:first-of-type > div > .tiled-layout,
  .full--page.full--hero-has-style > .building-blocks > .building-block:first-of-type > div > .tiled-layout {
    padding-top: 24px;
  }
}

@media (min-width: 640px) {
  .full--landing-page.full--hero-has-image > .building-blocks > .building-block:first-of-type > .text,
  .full--page.full--hero-has-image > .building-blocks > .building-block:first-of-type > .text,
  .full--landing-page.full--hero-has-style > .building-blocks > .building-block:first-of-type > .text,
  .full--page.full--hero-has-style > .building-blocks > .building-block:first-of-type > .text {
    position: relative;
    padding-top: 24px;
    background-color: white;
  }
}

.la-service {
  padding: 24px;
  color: #7a7a7a;
  border-top: 4px solid #cdea80;
  background-color: white;
}

.la-service a {
  text-decoration: none;
  color: #1a263f;
  border-bottom: 2px solid transparent;
}

.la-service a:focus, .la-service a:hover {
  border-bottom-color: #cdea80;
  font-weight: 700;
}

.la-service {
  display: none;
}

.la-service__title {
  margin-bottom: 24px;
  color: #1a263f;
}

.la-service__intro ul {
  padding: 0;
}

.la-service__intro li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.la-service__intro li a {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 1px 1rem;
  text-transform: uppercase;
  border: 1px solid #1a263f;
  border-radius: 1rem;
}

.la-service__intro li a:focus, .la-service__intro li a:hover {
  border-bottom-color: #1a263f;
}

.la-service__tabs {
  padding-left: 0;
  text-transform: uppercase;
  font-size: 10px;
}

@media (min-width: 960px) {
  .la-service__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.la-service__tab {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  list-style: none;
}

@media (min-width: 960px) {
  .la-service__tab {
    margin-bottom: 0;
  }
}

.la-service__tab a {
  display: inline-block;
  padding: 5px 3px;
  -webkit-transition: 0.4s border-top border-bottom;
  transition: 0.4s border-top border-bottom;
  border-bottom: 1px solid #292929;
  background-color: #cdea80;
}

.la-service__tab a:focus, .la-service__tab a:hover {
  border-top: 0;
  border-top: 1px solid #292929;
}

.la-service__sub-divisions .la-service-details {
  display: none;
}

.la-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 24px;
}

.la-service__item > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.la-service__item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.la-service__item-icon svg path {
  fill: #1a263f;
}

.la-service__hr {
  height: 1px;
  margin-bottom: 24px;
  border: 0;
  background-color: #7a7a7a;
}

.la-listing__content {
  padding-top: 24px;
}

@media (min-width: 768px) {
  .la-listing__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .la-listing__content > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.la-listing__left {
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .la-listing__left {
    width: 50%;
    margin-bottom: 0;
  }
}

@media (min-width: 960px) {
  .la-listing__left {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    width: auto;
    margin-bottom: 0;
  }
}

.la-listing__right .full__greeting {
  padding-top: 0;
}

@media (min-width: 768px) {
  .la-listing__right {
    width: 50%;
    padding-left: 80px;
  }
}

@media (min-width: 960px) {
  .la-listing__right {
    -webkit-box-flex: 8;
        -ms-flex: 8;
            flex: 8;
    width: auto;
    padding-left: 80px;
  }
}

.la-listing__titles-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 500px;
  height: 2rem;
  margin-bottom: 24px;
  padding: 0 1rem;
  text-transform: uppercase;
  border: 1px solid #292929;
  border-radius: 1rem;
}

.la-listing__titles-button-icon {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.la-listing__titles-button-icon svg {
  width: 1rem;
  height: 1rem;
}

.la-listing__titles-button-icon svg path {
  fill: #292929;
}

.la-listing__titles-button-icon--rotated {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.la-listing__titles {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.la-listing__titles--sub-titles {
  margin-left: 1rem;
}

.la-listing__title {
  list-style: none;
}

.la-listing__title-heading {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.la-listing__title-heading--main {
  font-size: 1.5rem;
}

.la-listing__title-heading a {
  text-decoration: none;
  color: #292929;
}

.la-listing__title-heading a:focus, .la-listing__title-heading a:hover {
  text-decoration: underline;
}

.la-listing__left #map a {
  outline: none;
}

.la-listing__left #map a:focus polygon,
.la-listing__left #map a:focus path, .la-listing__left #map a:hover polygon,
.la-listing__left #map a:hover path {
  fill: #cdea80;
}

.la-service__wrapper--full .la-service {
  display: block;
}

.local-centre__image {
  margin-top: 24px;
  margin-bottom: 24px;
}

.local-centre__name {
  margin-top: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 4px solid #001489;
}

.local-centre__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-bottom: 48px;
}

.local-centre__contact-item > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.local-centre__contact-item a {
  color: #1a263f;
}

.local-centre__europe-direct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.local-centre__europe-direct > * {
  margin-right: 1rem;
  margin-left: 1rem;
}

.local-centre__europe-direct .text-formatted {
  margin-top: 1em;
}

.local-centre__contact-item-icon svg {
  width: 2rem;
  height: 2rem;
}

.local-centre__contact-item-icon svg path {
  fill: #1a263f;
}

.local-centre__map {
  text-align: center;
}

.local-centre__map iframe {
  max-width: 100%;
}

.local-centre-related-content .more-link {
  text-align: right;
  text-transform: uppercase;
}

.local-centre-related-content .more-link a {
  text-decoration: none;
  color: #da1884;
  border-bottom: 2px solid black;
  font-weight: 700;
}

.local-centre-related-content .more-link a:focus, .local-centre-related-content .more-link a:hover {
  color: black;
  border-bottom: 2px solid #da1884;
}

@media (min-width: 640px) {
  .full--news .full__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 640px) {
  .full--news .full__meta-item + .full__meta-item {
    margin-left: 1rem;
  }
}

.region-breadcrumbs {
  padding: 0.5rem 0;
}

.credits {
  padding-top: 24px;
  color: #001489;
}

.credits a {
  text-decoration: none;
  color: #001489;
}

.credits__inner {
  text-align: center;
}

@media (min-width: 768px) {
  .credits__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.credits__above {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .credits__above {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.footer {
  padding: 48px 0;
  color: white;
  border-top: 0.5rem solid #cdea80;
  background-color: #292929;
  background-size: cover;
  font-size: 0.85rem;
}

.footer h2 {
  font-size: 1.5rem;
}

.footer a {
  color: #cdea80;
}

@media (min-width: 640px) {
  .footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .footer__inner > * {
    margin-right: 1rem;
    margin-left: 1rem;
  }
}

.footer__inner > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(33% - 2rem);
      flex-basis: calc(33% - 2rem);
}

header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 640px) {
  .header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header a {
  color: #1a263f;
}

.header__branding {
  max-width: 200px;
}

.header__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
}

.header__search {
  margin-left: 24px;
}

@media (min-width: 640px) {
  .header__search {
    margin-left: 0;
  }
}

.header__language-switcher {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.page-title {
  text-align: center;
}

.block-page-title-block {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .block-page-title-block {
    padding-top: 72px;
  }
}

@media (min-width: 768px) {
  .block-page-title-block {
    padding-bottom: 72px;
  }
}

.toolbar-fixed .region-sidebar,
.toolbar-vertical .region-sidebar {
  margin-top: 5rem;
}

.toolbar-vertical .region-sidebar {
  margin-top: 3rem;
}

.region-sidebar {
  margin-top: 3rem;
  margin-top: 1rem;
  padding: 2rem;
}

.region-sidebar .toggle-close-menu {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  margin-bottom: 24px;
  padding: 1rem;
  cursor: pointer;
  text-align: right;
  text-transform: uppercase;
  color: white;
  border: 0;
  background-color: transparent;
  font-family: "Ubuntu", Verdana, Arial, sans-serif;
  font-size: 1rem;
}

.region-sidebar .toggle-close-menu .close-menu {
  margin-left: auto;
}

.region-sidebar .toggle-close-menu .close-icon {
  display: inline-block;
  width: 25px;
}

[canvas="container"],
[off-canvas] {
  margin: 0;
  padding: 0;
}

/**
 * Canvas
 */
[canvas] {
  z-index: 1;
}

[canvas="container"] {
  position: relative;
  -webkit-overflow-scrolling: touch;
  /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
  width: 100%;
  height: 100%;
  background-color: white;
}

[canvas="container"]:after,
[canvas="container"]:before {
  display: table;
  clear: both;
  content: "";
}

.js-close-any-slidebar[canvas="container"]:before {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.6);
}

/**
 * Off-Canavs
 */
[off-canvas] {
  position: fixed;
  display: none;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: white;
  background-color: #cdea80;
}

[off-canvas*="right"] {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  [off-canvas*="right"] {
    max-width: 620px;
  }
}

.toolbar-fixed [off-canvas*="right"] {
  top: 39px;
}

div.js-close-any:before {
  position: absolute;
  z-index: 1000;
  top: 95px;
  right: 0;
  bottom: 0;
  left: 0;
  display: table;
  display: block;
  clear: both;
  content: "";
  content: " ";
  background: rgba(45, 63, 80, 0.7);
}

[off-canvas] {
  background-color: #20419a;
}

[canvas="container"].js-close-any-slidebar {
  overflow-y: hidden;
}

.toolbar-tray-open [off-canvas*="left"] {
  left: 229px;
}

[off-canvas*="reveal"] {
  z-index: 0;
}

[off-canvas*="push"] {
  z-index: 1;
}

[off-canvas*="overlay"] {
  z-index: 9999;
}

[off-canvas*="shift"] {
  z-index: 0;
}

/**
 * Animation
 */
[canvas],
[off-canvas] {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-backface-visibility: hidden;
  /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */
}

[off-canvas*="shift"][off-canvas*="top"] {
  -webkit-transform: translate(0px, 50%);
  transform: translate(0px, 50%);
}

[off-canvas*="shift"][off-canvas*="right"] {
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

[off-canvas*="shift"][off-canvas*="bottom"] {
  -webkit-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}

[off-canvas*="shift"][off-canvas*="left"] {
  -webkit-transform: translate(50%, 0px);
  transform: translate(50%, 0px);
}

/**
 * @file
 * This file is used to style the tabs region.
 */
.layout-tabs {
  background: black;
}

.region-tabs ul.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.region-tabs li {
  margin: 0;
  list-style: none;
}

.region-tabs li a {
  display: inline-block;
  padding: 0.66rem 1rem;
  text-decoration: none;
  color: #e3e3e3;
  font-weight: bold;
}

.region-tabs li a.is-active {
  color: #292929;
  background: #eaeaea;
}

.region-tabs li a:focus, .region-tabs li a:hover {
  text-decoration: underline;
  color: black;
  background: #999999;
}

/*------------------------------------*\
    $PATTERN LAB-SPECIFIC STYLES
\*------------------------------------*/
/**
 * This stylesheet is for styles you want to include only when the interface is being viewed within Pattern Lab.
 * This is helpful for displaying demo styles for grids, animations, color swatches, etc
 * It's also helpful for overriding context-specific styles like fixed or absolutely positioned elements
 * These styles will not be your production CSS.
 */
pre {
  margin-top: 0;
}

.sg-colors {
  overflow: hidden;
  margin: 5px;
  padding: 0;
}

.sg-colors > li {
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin: 0 0 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
}

.sg-colors > li .sg-swatch {
  display: block;
  height: 50px;
}

.sg-colors > li .sg-info {
  line-height: 1;
  padding: 1rem;
}

.sg-colors > li .sg-info > span,
.sg-colors > li .sg-info > code,
.sg-colors > li .sg-info > div {
  display: block;
  padding-bottom: .5rem;
}

@media all and (min-width: 400px) {
  .sg-colors > li {
    float: left;
    width: 49%;
    margin-right: 1%;
  }
}

@media all and (min-width: 700px) {
  .sg-colors > li {
    width: 31%;
  }
  .sg-colors > li:nth-child(3n+1) {
    clear: both;
  }
}

.sg-breakpoints {
  overflow: hidden;
  position: relative;
}

.sg-breakpoints ul {
  margin: 0;
  padding: 0;
}

.sg-breakpoints li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sg-breakpoints .breakpoints > li {
  position: absolute;
  border-left: solid 3px #595959;
  height: 100%;
}

.sg-breakpoints .breakpoints > li > .label {
  display: block;
  background: #595959;
  padding: 3px;
  color: white;
}

.sg-breakpoints .breakpoints > li:hover {
  border-left-color: rgba(89, 89, 89, 0.3);
}

.sg-breakpoints .breakpoints > li:hover > .label {
  opacity: 0;
}

.sg-breakpoints .device_widths {
  padding-top: 20px;
}

.sg-breakpoints .device_widths > li {
  border-bottom: solid 3px #cccccc;
  text-align: right;
  margin-bottom: 15px;
  padding-right: 15px;
  border-right: solid 3px #cccccc;
}

.sg-font-sizes thead {
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 2px solid black;
}

.sg-font-sizes th,
.sg-font-sizes td {
  text-align: left;
  white-space: nowrap;
  line-height: 1.5em;
}

.sg-font-sizes th:first-child,
.sg-font-sizes td:first-child {
  padding-right: 12px;
}

.demo__block {
  height: 200px;
  background-color: rgba(122, 122, 122, 0.5);
}

.icons-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 25px;
}

.icons-demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.icons__item {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding: 0.3em;
  margin: 0 0.5em 0.5em 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  line-height: 2em;
  overflow: hidden;
}

.icons__item:last-child {
  margin-bottom: 0.5em;
}

.icons__item i {
  display: inline-block;
  width: 32px;
  text-align: center;
}

.demo .g .gi {
  text-align: center;
  outline: dotted 1px #ccc;
}

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