/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  right: -1px;
  top: calc(99.5%);
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0080a7;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  background: #fff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  box-sizing: border-box;
  min-width: 256px;
  max-width: 400px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
          transform: translateY(-1em) perspective(600px) rotateX(10deg);
  -webkit-transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
          transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
          transform: translateY(0) perspective(600px) rotateX(0);
  -webkit-transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
          transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
}

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin-top: 1em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
}
.picker__year {
  margin-left: .2em;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #0080a7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0080a7;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.5em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -0.5em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before {
  background-image: url('clientlibs/assets/img/LongArrow_Left.svg');
  opacity: 0.5;
}
.picker__nav--next:before {
  background-image: url('clientlibs/assets/img/LongArrow_Right.svg');
  opacity: 0.5;
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: ' ';
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
  /*border-top: .5em solid transpar;ent;
    border-bottom: .5em solid transparent;
    border-right: .75em solid @black;
    width: 0;
    height: 0;*/
  display: block;
  margin: 0 auto;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #0080a7;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 15rem;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-weight: bold;
  padding: 0 .25em .25em;
  color: #333;
  font-weight: 500;
  text-align: center;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
  color: #0080a7;
}
/*
.picker__day--today:before {
    content: " ";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-top: .5em solid @blue-tag;
    border-left: .5em solid transparent;
}
*/
.picker__day--disabled:before {
  border-top-color: #aaa;
}
.picker__day--outfocus {
  color: #888;
  border-radius: 0%;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #0080a7;
  border-radius: 50%;
}
.picker__day--highlighted {
  /*
    border-color: @blue;
    background-color: @blue;
    color: @white;
*/
  position: relative;
  border-radius: 50%;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  color: #fff;
  position: relative;
}
.picker__day--selected:before,
.picker__day--selected:hover:before,
.picker--focused .picker__day--selected:before {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: absolute;
  border-radius: 50%;
  background: #0080a7;
  top: 0;
  left: 0;
  z-index: -1;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  /*
    background: @disabled-things-bg;
    border-color: @disabled-things-bg;
*/
  color: #ddd;
  cursor: default;
  border-radius: 0%;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #fff;
  background: #fff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #0080a7;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0080a7;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #e20;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  /*
    background: @disabled-things-bg;
    border-color: @disabled-things-bg;
*/
  color: #ddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaa;
}

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */

/* ==========================================================================
   $BASE-TIME-PICKER
   ========================================================================== */
/**
 * The list of times.
 */
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
/**
 * The times on the clock.
 */
.picker__list-item {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  margin-bottom: -1px;
  position: relative;
  background: #fff;
  padding: .75em 1.25em;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: .5em 1em;
  }
}
/* Hovered time */
.picker__list-item:hover {
  cursor: pointer;
  color: #0080a7;
  border-color: #0080a7;
  z-index: 10;
}
/* Highlighted and hovered/focused time */
.picker__list-item--highlighted {
  /*
    border-color: @blue;
    background-color: @blue;
    color: @white;
*/
  z-index: 10;
}
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  cursor: pointer;
  color: #0080a7;
}
/* Selected and hovered/focused time */
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected {
  color: #fff;
  z-index: 10;
}
/* Disabled time */
.picker__list-item--disabled,
.picker__list-item--disabled:hover,
.picker--focused .picker__list-item--disabled {
  /*
    background: @disabled-things-bg;
    border-color: @disabled-things-bg;
*/
  color: #ddd;
  cursor: default;
  border-color: #ddd;
  z-index: auto;
}
/**
 * The clear button
 */
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: none;
  border: 0;
  font-weight: 500;
  font-size: .67em;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.picker--time .picker__button--clear:hover,
.picker--time .picker__button--clear:focus {
  color: #0080a7;
  background: #e20;
  border-color: #e20;
  cursor: pointer;
  color: #fff;
  outline: none;
}
.picker--time .picker__button--clear:before {
  top: -0.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: bold;
}
.picker--time .picker__button--clear:hover:before,
.picker--time .picker__button--clear:focus:before {
  color: #fff;
  border-color: #fff;
}

/* ==========================================================================
   $CLASSIC-TIME-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should __NOT__ be styled
 * more than what’s here. Style the `.picker__holder` instead.
 */
.picker--time {
  min-width: 256px;
  max-width: 320px;
}
/**
 * The holder is the base of the picker.
 */
.picker--time .picker__holder {
  background: #f2f2f2;
}
@media (min-height: 40.125em) {
  .picker--time .picker__holder {
    font-size: .875em;
  }
}
/**
 * The box contains the list of times.
 */
.picker--time .picker__box {
  padding: 0;
  position: relative;
}

@charset "UTF-8";
/*!
========== INIT
*/
/*!
 * Bootstrap v4.0.0-alpha.2 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css commit fe56763 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-variant-numeric: lining-nums; }

body {
  margin: 0;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active {
  outline: 0; }

a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  font-variant-numeric: lining-nums tabular-nums slashed-zero;}

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

@media print {
  *,
  *::before,
  *::after,
  *::first-letter,
  *::first-line {
    text-shadow: none !important;
    box-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .tag {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

html {
  box-sizing: border-box; }

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

@-ms-viewport {
  width: device-width; }

html {
  font-size: 1.125em;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #373a3c;
  background-color: #fff; }

[tabindex="-1"]:focus {
  outline: none !important; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

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

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

dt {
  font-weight: bold; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

a {
  color: #0275d8;
  text-decoration: none; }
  a:focus, a:hover {
    color: #014c8c;
    text-decoration: underline; }
  a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

a:not([href]) {
  color: inherit;
  text-decoration: none; }
  a:not([href]):focus, a:not([href]):hover {
    color: inherit;
    text-decoration: none; }
  a:not([href]):focus {
    outline: none; }

pre {
  margin-top: 0;
  margin-bottom: 1rem; }

figure {
  margin: 0 0 1rem; }

img {
  vertical-align: middle; }

[role="button"] {
  cursor: pointer; }

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation; }

table {
  background-color: transparent; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #818a91;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: left; }

label {
  display: inline-block;
  margin-bottom: .5rem; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
textarea {
  margin: 0;
  line-height: inherit;
  border-radius: 0; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }

input[type="search"] {
  -webkit-appearance: none; }

output {
  display: inline-block; }

[hidden] {
  display: none !important; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

h1, .h1 {
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

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

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

h5, .h5 {
  font-size: 1.25rem; }

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

.lead {
  font-size: 1.25rem;
  font-weight: 300; }

.display-1 {
  font-size: 6rem;
  font-weight: 300; }

.display-2 {
  font-size: 5.5rem;
  font-weight: 300; }

.display-3 {
  font-size: 4.5rem;
  font-weight: 300; }

.display-4 {
  font-size: 3.5rem;
  font-weight: 300; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: normal; }

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 5px; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #818a91; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0; }

.blockquote-reverse .blockquote-footer::before {
  content: ""; }

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014"; }

dl.row > dd + dt {
  clear: left; }

/*
@import "images";
@import "code";
*/
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.555rem;
  padding-right: 0.555rem; }
  .container::after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 34em) {
    .container {
      max-width: 34rem; } }
  @media (min-width: 48em) {
    .container {
      max-width: 44rem; } }
  @media (min-width: 62em) {
    .container {
      max-width: 52rem; } }
  @media (min-width: 75em) {
    .container {
      max-width: 64rem; } }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.555rem;
  padding-right: 0.555rem; }
  .container-fluid::after {
    content: "";
    display: table;
    clear: both; }

.row {
  margin-left: -0.555rem;
  margin-right: -0.555rem; }
  .row::after {
    content: "";
    display: table;
    clear: both; }

.col-xs-1 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 8.33333%; }

.col-xs-2 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 16.66667%; }

.col-xs-3 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 25%; }

.col-xs-4 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 33.33333%; }

.col-xs-5 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 41.66667%; }

.col-xs-6 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 50%; }

.col-xs-7 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 58.33333%; }

.col-xs-8 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 66.66667%; }

.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 75%; }

.col-xs-10 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 83.33333%; }

.col-xs-11 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 91.66667%; }

.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: 0.555rem;
  padding-left: 0.555rem;
  float: left;
  width: 100%; }

.pull-xs-0 {
  right: auto; }

.pull-xs-1 {
  right: 8.33333%; }

.pull-xs-2 {
  right: 16.66667%; }

.pull-xs-3 {
  right: 25%; }

.pull-xs-4 {
  right: 33.33333%; }

.pull-xs-5 {
  right: 41.66667%; }

.pull-xs-6 {
  right: 50%; }

.pull-xs-7 {
  right: 58.33333%; }

.pull-xs-8 {
  right: 66.66667%; }

.pull-xs-9 {
  right: 75%; }

.pull-xs-10 {
  right: 83.33333%; }

.pull-xs-11 {
  right: 91.66667%; }

.pull-xs-12 {
  right: 100%; }

.push-xs-0 {
  left: auto; }

.push-xs-1 {
  left: 8.33333%; }

.push-xs-2 {
  left: 16.66667%; }

.push-xs-3 {
  left: 25%; }

.push-xs-4 {
  left: 33.33333%; }

.push-xs-5 {
  left: 41.66667%; }

.push-xs-6 {
  left: 50%; }

.push-xs-7 {
  left: 58.33333%; }

.push-xs-8 {
  left: 66.66667%; }

.push-xs-9 {
  left: 75%; }

.push-xs-10 {
  left: 83.33333%; }

.push-xs-11 {
  left: 91.66667%; }

.push-xs-12 {
  left: 100%; }

.offset-xs-1 {
  margin-left: 8.33333%; }

.offset-xs-2 {
  margin-left: 16.66667%; }

.offset-xs-3 {
  margin-left: 25%; }

.offset-xs-4 {
  margin-left: 33.33333%; }

.offset-xs-5 {
  margin-left: 41.66667%; }

.offset-xs-6 {
  margin-left: 50%; }

.offset-xs-7 {
  margin-left: 58.33333%; }

.offset-xs-8 {
  margin-left: 66.66667%; }

.offset-xs-9 {
  margin-left: 75%; }

.offset-xs-10 {
  margin-left: 83.33333%; }

.offset-xs-11 {
  margin-left: 91.66667%; }

@media (min-width: 34em) {
  .col-sm-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 8.33333%; }
  .col-sm-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 16.66667%; }
  .col-sm-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 25%; }
  .col-sm-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 33.33333%; }
  .col-sm-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 41.66667%; }
  .col-sm-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 50%; }
  .col-sm-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 58.33333%; }
  .col-sm-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 66.66667%; }
  .col-sm-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 75%; }
  .col-sm-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 83.33333%; }
  .col-sm-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 91.66667%; }
  .col-sm-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 100%; }
  .pull-sm-0 {
    right: auto; }
  .pull-sm-1 {
    right: 8.33333%; }
  .pull-sm-2 {
    right: 16.66667%; }
  .pull-sm-3 {
    right: 25%; }
  .pull-sm-4 {
    right: 33.33333%; }
  .pull-sm-5 {
    right: 41.66667%; }
  .pull-sm-6 {
    right: 50%; }
  .pull-sm-7 {
    right: 58.33333%; }
  .pull-sm-8 {
    right: 66.66667%; }
  .pull-sm-9 {
    right: 75%; }
  .pull-sm-10 {
    right: 83.33333%; }
  .pull-sm-11 {
    right: 91.66667%; }
  .pull-sm-12 {
    right: 100%; }
  .push-sm-0 {
    left: auto; }
  .push-sm-1 {
    left: 8.33333%; }
  .push-sm-2 {
    left: 16.66667%; }
  .push-sm-3 {
    left: 25%; }
  .push-sm-4 {
    left: 33.33333%; }
  .push-sm-5 {
    left: 41.66667%; }
  .push-sm-6 {
    left: 50%; }
  .push-sm-7 {
    left: 58.33333%; }
  .push-sm-8 {
    left: 66.66667%; }
  .push-sm-9 {
    left: 75%; }
  .push-sm-10 {
    left: 83.33333%; }
  .push-sm-11 {
    left: 91.66667%; }
  .push-sm-12 {
    left: 100%; }
  .offset-sm-0 {
    margin-left: 0%; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 48em) {
  .col-md-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 8.33333%; }
  .col-md-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 16.66667%; }
  .col-md-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 25%; }
  .col-md-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 33.33333%; }
  .col-md-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 41.66667%; }
  .col-md-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 50%; }
  .col-md-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 58.33333%; }
  .col-md-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 66.66667%; }
  .col-md-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 75%; }
  .col-md-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 83.33333%; }
  .col-md-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 91.66667%; }
  .col-md-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 100%; }
  .pull-md-0 {
    right: auto; }
  .pull-md-1 {
    right: 8.33333%; }
  .pull-md-2 {
    right: 16.66667%; }
  .pull-md-3 {
    right: 25%; }
  .pull-md-4 {
    right: 33.33333%; }
  .pull-md-5 {
    right: 41.66667%; }
  .pull-md-6 {
    right: 50%; }
  .pull-md-7 {
    right: 58.33333%; }
  .pull-md-8 {
    right: 66.66667%; }
  .pull-md-9 {
    right: 75%; }
  .pull-md-10 {
    right: 83.33333%; }
  .pull-md-11 {
    right: 91.66667%; }
  .pull-md-12 {
    right: 100%; }
  .push-md-0 {
    left: auto; }
  .push-md-1 {
    left: 8.33333%; }
  .push-md-2 {
    left: 16.66667%; }
  .push-md-3 {
    left: 25%; }
  .push-md-4 {
    left: 33.33333%; }
  .push-md-5 {
    left: 41.66667%; }
  .push-md-6 {
    left: 50%; }
  .push-md-7 {
    left: 58.33333%; }
  .push-md-8 {
    left: 66.66667%; }
  .push-md-9 {
    left: 75%; }
  .push-md-10 {
    left: 83.33333%; }
  .push-md-11 {
    left: 91.66667%; }
  .push-md-12 {
    left: 100%; }
  .offset-md-0 {
    margin-left: 0%; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 62em) {
  .col-lg-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 8.33333%; }
  .col-lg-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 16.66667%; }
  .col-lg-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 25%; }
  .col-lg-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 33.33333%; }
  .col-lg-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 41.66667%; }
  .col-lg-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 50%; }
  .col-lg-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 58.33333%; }
  .col-lg-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 66.66667%; }
  .col-lg-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 75%; }
  .col-lg-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 83.33333%; }
  .col-lg-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 91.66667%; }
  .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 100%; }
  .pull-lg-0 {
    right: auto; }
  .pull-lg-1 {
    right: 8.33333%; }
  .pull-lg-2 {
    right: 16.66667%; }
  .pull-lg-3 {
    right: 25%; }
  .pull-lg-4 {
    right: 33.33333%; }
  .pull-lg-5 {
    right: 41.66667%; }
  .pull-lg-6 {
    right: 50%; }
  .pull-lg-7 {
    right: 58.33333%; }
  .pull-lg-8 {
    right: 66.66667%; }
  .pull-lg-9 {
    right: 75%; }
  .pull-lg-10 {
    right: 83.33333%; }
  .pull-lg-11 {
    right: 91.66667%; }
  .pull-lg-12 {
    right: 100%; }
  .push-lg-0 {
    left: auto; }
  .push-lg-1 {
    left: 8.33333%; }
  .push-lg-2 {
    left: 16.66667%; }
  .push-lg-3 {
    left: 25%; }
  .push-lg-4 {
    left: 33.33333%; }
  .push-lg-5 {
    left: 41.66667%; }
  .push-lg-6 {
    left: 50%; }
  .push-lg-7 {
    left: 58.33333%; }
  .push-lg-8 {
    left: 66.66667%; }
  .push-lg-9 {
    left: 75%; }
  .push-lg-10 {
    left: 83.33333%; }
  .push-lg-11 {
    left: 91.66667%; }
  .push-lg-12 {
    left: 100%; }
  .offset-lg-0 {
    margin-left: 0%; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 75em) {
  .col-xl-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 8.33333%; }
  .col-xl-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 16.66667%; }
  .col-xl-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 25%; }
  .col-xl-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 33.33333%; }
  .col-xl-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 41.66667%; }
  .col-xl-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 50%; }
  .col-xl-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 58.33333%; }
  .col-xl-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 66.66667%; }
  .col-xl-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 75%; }
  .col-xl-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 83.33333%; }
  .col-xl-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 91.66667%; }
  .col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.555rem;
    padding-left: 0.555rem;
    float: left;
    width: 100%; }
  .pull-xl-0 {
    right: auto; }
  .pull-xl-1 {
    right: 8.33333%; }
  .pull-xl-2 {
    right: 16.66667%; }
  .pull-xl-3 {
    right: 25%; }
  .pull-xl-4 {
    right: 33.33333%; }
  .pull-xl-5 {
    right: 41.66667%; }
  .pull-xl-6 {
    right: 50%; }
  .pull-xl-7 {
    right: 58.33333%; }
  .pull-xl-8 {
    right: 66.66667%; }
  .pull-xl-9 {
    right: 75%; }
  .pull-xl-10 {
    right: 83.33333%; }
  .pull-xl-11 {
    right: 91.66667%; }
  .pull-xl-12 {
    right: 100%; }
  .push-xl-0 {
    left: auto; }
  .push-xl-1 {
    left: 8.33333%; }
  .push-xl-2 {
    left: 16.66667%; }
  .push-xl-3 {
    left: 25%; }
  .push-xl-4 {
    left: 33.33333%; }
  .push-xl-5 {
    left: 41.66667%; }
  .push-xl-6 {
    left: 50%; }
  .push-xl-7 {
    left: 58.33333%; }
  .push-xl-8 {
    left: 66.66667%; }
  .push-xl-9 {
    left: 75%; }
  .push-xl-10 {
    left: 83.33333%; }
  .push-xl-11 {
    left: 91.66667%; }
  .push-xl-12 {
    left: 100%; }
  .offset-xl-0 {
    margin-left: 0%; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

/*
@import "tables";
@import "forms";
@import "buttons";

// Components
@import "animation";
@import "dropdown";
@import "button-group";
@import "input-group";
@import "custom-forms";
@import "nav";
@import "navbar";
@import "card";
@import "breadcrumb";
@import "pagination";
@import "tags";
@import "jumbotron";
@import "alert";
@import "progress";
@import "media";
@import "list-group";
@import "responsive-embed";
@import "close";

// Components w/ JavaScript
@import "modal";
@import "tooltip";
@import "popover";
@import "carousel";
*/
.bg-inverse {
  color: #eceeef;
  background-color: #373a3c; }

.bg-faded {
  background-color: #f7f7f9; }

.bg-primary {
  color: #fff !important;
  background-color: #0275d8 !important; }

a.bg-primary:focus, a.bg-primary:hover {
  background-color: #025aa5 !important; }

.bg-success {
  color: #fff !important;
  background-color: #5cb85c !important; }

a.bg-success:focus, a.bg-success:hover {
  background-color: #449d44 !important; }

.bg-info {
  color: #fff !important;
  background-color: #5bc0de !important; }

a.bg-info:focus, a.bg-info:hover {
  background-color: #31b0d5 !important; }

.bg-warning {
  color: #fff !important;
  background-color: #f0ad4e !important; }

a.bg-warning:focus, a.bg-warning:hover {
  background-color: #ec971f !important; }

.bg-danger {
  color: #fff !important;
  background-color: #d9534f !important; }

a.bg-danger:focus, a.bg-danger:hover {
  background-color: #c9302c !important; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.pull-xs-left {
  float: left !important; }

.pull-xs-right {
  float: right !important; }

.pull-xs-none {
  float: none !important; }

@media (min-width: 34em) {
  .pull-sm-left {
    float: left !important; }
  .pull-sm-right {
    float: right !important; }
  .pull-sm-none {
    float: none !important; } }

@media (min-width: 48em) {
  .pull-md-left {
    float: left !important; }
  .pull-md-right {
    float: right !important; }
  .pull-md-none {
    float: none !important; } }

@media (min-width: 62em) {
  .pull-lg-left {
    float: left !important; }
  .pull-lg-right {
    float: right !important; }
  .pull-lg-none {
    float: none !important; } }

@media (min-width: 75em) {
  .pull-xl-left {
    float: left !important; }
  .pull-xl-right {
    float: right !important; }
  .pull-xl-none {
    float: none !important; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.m-x-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-a-0 {
  margin: 0 0 !important; }

.m-t-0 {
  margin-top: 0 !important; }

.m-r-0 {
  margin-right: 0 !important; }

.m-b-0 {
  margin-bottom: 0 !important; }

.m-l-0 {
  margin-left: 0 !important; }

.m-x-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-a-1 {
  margin: 1rem 1rem !important; }

.m-t-1 {
  margin-top: 1rem !important; }

.m-r-1 {
  margin-right: 1rem !important; }

.m-b-1 {
  margin-bottom: 1rem !important; }

.m-l-1 {
  margin-left: 1rem !important; }

.m-x-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.m-y-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-a-2 {
  margin: 1.5rem 1.5rem !important; }

.m-t-2 {
  margin-top: 1.5rem !important; }

.m-r-2 {
  margin-right: 1.5rem !important; }

.m-b-2 {
  margin-bottom: 1.5rem !important; }

.m-l-2 {
  margin-left: 1.5rem !important; }

.m-x-2 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.m-y-2 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-a-3 {
  margin: 3rem 3rem !important; }

.m-t-3 {
  margin-top: 3rem !important; }

.m-r-3 {
  margin-right: 3rem !important; }

.m-b-3 {
  margin-bottom: 3rem !important; }

.m-l-3 {
  margin-left: 3rem !important; }

.m-x-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.m-y-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-a-0 {
  padding: 0 0 !important; }

.p-t-0 {
  padding-top: 0 !important; }

.p-r-0 {
  padding-right: 0 !important; }

.p-b-0 {
  padding-bottom: 0 !important; }

.p-l-0 {
  padding-left: 0 !important; }

.p-x-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-a-1 {
  padding: 1rem 1rem !important; }

.p-t-1 {
  padding-top: 1rem !important; }

.p-r-1 {
  padding-right: 1rem !important; }

.p-b-1 {
  padding-bottom: 1rem !important; }

.p-l-1 {
  padding-left: 1rem !important; }

.p-x-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.p-y-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-a-2 {
  padding: 1.5rem 1.5rem !important; }

.p-t-2 {
  padding-top: 1.5rem !important; }

.p-r-2 {
  padding-right: 1.5rem !important; }

.p-b-2 {
  padding-bottom: 1.5rem !important; }

.p-l-2 {
  padding-left: 1.5rem !important; }

.p-x-2 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.p-y-2 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-a-3 {
  padding: 3rem 3rem !important; }

.p-t-3 {
  padding-top: 3rem !important; }

.p-r-3 {
  padding-right: 3rem !important; }

.p-b-3 {
  padding-bottom: 3rem !important; }

.p-l-3 {
  padding-left: 3rem !important; }

.p-x-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.p-y-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

.pos-f-t {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-xs-left {
  text-align: left !important; }

.text-xs-right {
  text-align: right !important; }

.text-xs-center {
  text-align: center !important; }

@media (min-width: 34em) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 48em) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 62em) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 75em) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-normal {
  font-weight: normal; }

.font-weight-bold {
  font-weight: bold; }

.font-italic {
  font-style: italic; }

.text-muted {
  color: #818a91 !important; }

a.text-muted:focus, a.text-muted:hover {
  color: #687077; }

.text-primary {
  color: #0275d8 !important; }

a.text-primary:focus, a.text-primary:hover {
  color: #025aa5; }

.text-success {
  color: #5cb85c !important; }

a.text-success:focus, a.text-success:hover {
  color: #449d44; }

.text-info {
  color: #5bc0de !important; }

a.text-info:focus, a.text-info:hover {
  color: #31b0d5; }

.text-warning {
  color: #f0ad4e !important; }

a.text-warning:focus, a.text-warning:hover {
  color: #ec971f; }

.text-danger {
  color: #d9534f !important; }

a.text-danger:focus, a.text-danger:hover {
  color: #c9302c; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.invisible {
  visibility: hidden !important; }

.hidden-xs-up {
  display: none !important; }

@media (max-width: 33.9em) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 34em) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 47.9em) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 48em) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 61.9em) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 62em) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 74.9em) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 75em) {
  .hidden-xl-up {
    display: none !important; } }

.hidden-xl-down {
  display: none !important; }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/*! Flickity v1.2.1
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1; }

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000;
  right: -1px;
  top: calc(99.5%);
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/**
 * The picker input element.
 */
.picker__input {
  cursor: default; }

/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0080a7; }

/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  background: #fff;
  border: 1px solid #aaaaaa;
  border-top-width: 0;
  border-bottom-width: 0;
  box-sizing: border-box;
  min-width: 256px;
  max-width: 400px;
  max-height: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s; }

/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px; }

.picker__wrap {
  margin: -1px; }

/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  border-top-width: 1px;
  border-bottom-width: 1px;
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s; }

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em; }

/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  margin-top: 1em; }

/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block; }

.picker__year {
  margin-left: .2em; }

/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #0080a7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em; }

@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em; } }

.picker__select--month {
  width: 35%; }

.picker__select--year {
  width: 22.5%; }

.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0080a7; }

/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.5em; } }

.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em; } }

.picker__nav--next {
  right: -0.5em;
  padding-left: 1.25em; }

@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em; } }

.picker__nav--prev:before {
  background-image: url("clientlibs/assets/img/LongArrow_Left.svg");
  opacity: 0.5; }

.picker__nav--next:before {
  background-image: url("clientlibs/assets/img/LongArrow_Right.svg");
  opacity: 0.5; }

.picker__nav--prev:before,
.picker__nav--next:before {
  content: ' ';
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
  /*border-top: .5em solid transpar;ent;
    border-bottom: .5em solid transparent;
    border-right: .75em solid @black;
    width: 0;
    height: 0;*/
  display: block;
  margin: 0 auto; }

.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #0080a7; }

.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5; }

/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 15rem;
  margin-top: .75em;
  margin-bottom: .5em; }

@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em; } }

.picker__table td {
  margin: 0;
  padding: 0; }

/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-weight: bold;
  padding: 0 .25em .25em;
  color: #333;
  font-weight: 500;
  text-align: center;
  /* Increase the spacing a tad */ }

@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em; } }

/**
 * The days on the calendar
 */
.picker__day {
  padding: .3em 0;
  font-weight: 200;
  border: 1px solid transparent; }

.picker__day--today {
  position: relative;
  color: #0080a7; }

/*
.picker__day--today:before {
    content: " ";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-top: .5em solid @blue-tag;
    border-left: .5em solid transparent;
}
*/
.picker__day--disabled:before {
  border-top-color: #aaa; }

.picker__day--outfocus {
  color: #888;
  border-radius: 0%; }

.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #0080a7;
  border-radius: 50%; }

.picker__day--highlighted {
  /*
    border-color: @blue;
    background-color: @blue;
    color: @white;
*/
  position: relative;
  border-radius: 50%; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  color: #fff;
  position: relative; }

.picker__day--selected:before,
.picker__day--selected:hover:before,
.picker--focused .picker__day--selected:before {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: absolute;
  border-radius: 50%;
  background: #0080a7;
  top: 0;
  left: 0;
  z-index: -1; }

.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  /*
    background: @disabled-things-bg;
    border-color: @disabled-things-bg;
*/
  color: #ddd;
  cursor: default;
  border-radius: 0%; }

/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center; }

.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #fff;
  background: #fff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom; }

.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #0080a7;
  border-bottom-color: #b1dcfb; }

.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0080a7;
  outline: none; }

.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0; }

.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em; }

.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent; }

.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #e20; }

.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777; }

.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  /*
    background: @disabled-things-bg;
    border-color: @disabled-things-bg;
*/
  color: #ddd;
  cursor: default; }

.picker__button--today[disabled]:before {
  border-top-color: #aaa; }

/* ==========================================================================
   $CLASSIC-DATE-PICKER
   ========================================================================== */
/*!
========== BASE
*/
#CQ .x-panel.cq-selection label.x-form-cb-label-hidden,
#CQ label.x-form-cb-label {
  margin-bottom: 0;
  margin-top: 0;
  line-height: 0.8rem; }

#CQ .x-combo-list div,
#CQ .x-combo-list p,
#CQ .x-combo-list span,
#CQ .x-form-item div,
#CQ .x-form-item p,
#CQ .x-form-item span {
  font-size: inherit; }

#CQ * {
  box-sizing: border-box; }

.uoa-form .uoa-form__elt.uoa-form__multi-select select {
  padding-right: 0;
  background-image: none; }

.uoa-form label.focusin:before {
  border: 1px solid #0080a7 !important; }

.uoa-form .uoa-form__elt.uoa-form__date .uoa-form__date--surrogate {
  display: block;
  width: .1px;
  height: .1px; }

.uoa-form svg.icon-calendar {
  background: url("clientlibs/assets/img/dp.png") no-repeat;
  background-size: 96% 100%;
  background-position: 45%; }
  .uoa-form svg.icon-calendar use {
    display: none; }

.uoa-form svg.icn-arrow {
  background: url("clientlibs/assets/img/arrows.png") no-repeat;
  width: 0.49rem;
  background-position: 100%; }
  .uoa-form svg.icn-arrow use {
    display: none; }

.uoa-form .cta--dark-blue-round:hover svg.icn-arrow {
  background-position: 0%; }

.uppercase {
  text-transform: uppercase; }

.col-centered {
  float: none;
  margin: 0 auto; }

.m-t-10 {
  margin-top: 10px; }

.m-b-10 {
  margin-bottom: 10px; }

.m-b-20 {
  margin-bottom: 20px; }

.display-none {
  display: none; }

.lowercase {
  text-transform: lowercase; }

.bg-dark-blue {
  background-color: #00467f; }

.bg-light-blue {
  background-color: #0080a7; }

.bg-very-light-blue {
  background-color: #009ac7; }

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

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

.bg-mid-grey {
  background-color: #404040; }

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

.bg-silver {
  background-color: #747778; }

.bg-silver-lining {
  background-color: #bec3c4; }

.bg-input-grey {
  background-color: #d9d9d9; }

.bg-white {
  background-color: #ffffff;
  border: 1px solid #ccc; }

.bg-dark-blue {
  background-color: #00467f; }

.bg-light-blue {
  background-color: #0080a7; }

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

.bg-mid-grey {
  background-color: #404040; }

.bg-input-grey {
  background-color: #d9d9d9; }

.bg-body-grey {
  background-color: #4a4c4c; }

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

.bg-silver {
  background-color: #747778; }

.bg-silver-lining {
  background-color: #bec3c4; }

.bg-white {
  background-color: #ffffff;
  border: 1px solid #ccc; }

.bg-business-and-economics {
  background-color: #7D0063; }

.bg-arts {
  background-color: #a71930; }

.bg-creative-arts-and-industries {
  background-color: #cc4729; }

.bg-science {
  background-color: #0039a6; }

.bg-medical-and-health-sciences {
  background-color: #008075; }

.bg-law {
  background-color: #005b82; }

.bg-education-and-social-work {
  background-color: #448517; }

.bg-engineering {
  background-color: #4f2d7f; }

::-webkit-input-placeholder {
  color: #00467f;
  font-family: NationalBookItalic, sans-serif; }

:-moz-placeholder {
  color: #00467f;
  font-family: NationalBookItalic, sans-serif; }

::-moz-placeholder {
  color: #00467f;
  font-family: NationalBookItalic, sans-serif; }

:-ms-input-placeholder {
  color: #00467f;
  font-family: NationalBookItalic, sans-serif; }

.pd-1 {
  padding: 1em; }

.pd-2 {
  padding: 2em; }

.min-height-0 {
  min-height: 0; }

.m-t-20 {
  margin-top: 20px; }

.clear {
  clear: both; }

.container-fluid > .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0; }

@font-face {
  font-family: 'NationalBold';
  src: url("clientlibs/assets/fonts/NationalWeb-Bold.eot");
  /* IE9 Compat Modes */
  src: url("clientlibs/assets/fonts/NationalWeb-Bold.woff2") format("woff2"), url("clientlibs/assets/fonts/NationalWeb-Bold.woff") format("woff");
  /* Pretty Modern Browsers */ }

@font-face {
  font-family: 'NationalBoldItalic';
  src: url("clientlibs/assets/fonts/NationalWeb-BoldItalic.eot");
  /* IE9 Compat Modes */
  src: url("clientlibs/assets/fonts/NationalWeb-BoldItalic.woff2") format("woff2"), url("clientlibs/assets/fonts/NationalWeb-BoldItalic.woff") format("woff");
  /* Pretty Modern Browsers */ }

@font-face {
  font-family: 'NationalBook';
  src: url("clientlibs/assets/fonts/NationalWeb-Book.eot");
  /* IE9 Compat Modes */
  src: url("clientlibs/assets/fonts/NationalWeb-Book.woff2") format("woff2"), url("clientlibs/assets/fonts/NationalWeb-Book.woff") format("woff");
  /* Pretty Modern Browsers */ }

@font-face {
  font-family: 'NationalBookItalic';
  src: url("clientlibs/assets/fonts/NationalWeb-BookItalic.eot");
  /* IE9 Compat Modes */
  src: url("clientlibs/assets/fonts/NationalWeb-BookItalic.woff2") format("woff2"), url("clientlibs/assets/fonts/NationalWeb-BookItalic.woff") format("woff");
  /* Pretty Modern Browsers */ }

html, body {
  font-family: 'NationalBook', sans-serif;
  color: #4a4c4c; }

h1 {
  font-weight: normal;
  line-height: 1em;
  font-size: 2.0736rem;
  font-family: 'NationalBold', sans-serif; }
  @media (min-width: 75em) {
    h1 {
      font-size: 2.44141rem; } }
  h1 a, h1 a:hover {
    color: inherit; }

h2 {
  font-size: 1.728rem;
  font-family: 'NationalBold', sans-serif; }
  @media (min-width: 75em) {
    h2 {
      font-size: 1.95312rem; } }

h3 {
  font-size: 1.44rem;
  font-family: 'NationalBold', sans-serif; }
  @media (min-width: 75em) {
    h3 {
      font-size: 1.5625rem; } }

h4 {
  font-size: 1.2rem;
  font-family: 'NationalBold', sans-serif; }
  @media (min-width: 75em) {
    h4 {
      font-size: 1.25rem; } }

/*h5 {
  @include mq($from: xs, $until: sm) { font-size: ms(2, $ms-base); }
  @include mq($from: md) { font-size: ms(2, 18px, $major-third); }

  font-family: 'NationalBook', sans-serif;
}

h6 {
  @include mq($from: xs, $until: sm) { font-size: ms(1, $ms-base); }
  @include mq($from: md) { font-size: ms(1, 18px, $major-third); }

  font-family: 'NationalBook', sans-serif;
}*/
blockquote {
  font-family: 'NationalBook', sans-serif; }
  @media (max-width: 33.99em) {
    blockquote {
      font-size: 1.2rem; } }
  @media (min-width: 34em) {
    blockquote {
      font-size: 1.25rem; } }

p, span, div {
  font-size: 1rem;
  font-family: inherit; }

@media (max-width: 33.99em) {
  .sub {
    font-size: 0.83333rem; } }

@media (min-width: 34em) {
  .sub {
    font-size: 0.8rem; } }

blockquote {
  margin: 0.5em 0.5em;
  padding: 0.5em 0.5em;
  quotes: "“" "”" "‘" "’";
  color: #0080a7;
  text-align: center; }

blockquote:before, blockquote:after {
  display: block;
  color: #0080a7;
  font-size: 6em;
  line-height: 1em;
  text-align: center; }

blockquote:before {
  content: open-quote; }

blockquote:after {
  content: close-quote; }

blockquote p {
  display: inline; }

b, strong {
  font-family: 'NationalBold';
  font-weight: normal; }

.pagetitle h1 {
  font-size: 2.48832rem;
  color: #747778;
  margin-bottom: 1.72rem; }
  @media (min-width: 75em) {
    .pagetitle h1 {
      font-size: 3.05176rem; } }

.sectionheading h2 {
  font-size: 1.44rem;
  color: #00467f;
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 1.38rem; }
  .sectionheading h2:after {
    content: "";
    width: 80px;
    height: 1px;
    background-color: #747778;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0; }
  @media (min-width: 75em) {
    .sectionheading h2 {
      font-size: 1.5625rem; } }

.intro-text {
  position: relative;
  text-align: center;
  margin-bottom: 2.77rem;
  padding-bottom: 2.77rem;
  float: none; }
  @media (min-width: 62em) {
    .intro-text {
      padding-left: 5.55rem;
      padding-right: 5.55rem; } }
  .intro-text h1 {
    font-size: 2.48832rem;
    color: #00467f;
    margin-bottom: 0;
    text-align: center; }
    @media (min-width: 75em) {
      .intro-text h1 {
        font-size: 3.05176rem; } }
  .intro-text p {
    font-size: 1.44rem;
    font-family: 'NationalBold';
    font-weight: normal;
    line-height: 1.2;
    margin-top: 1.72rem; }
    .intro-text p:last-child {
      margin-bottom: 0; }
    @media (min-width: 75em) {
      .intro-text p {
        font-size: 1.5625rem; } }
  .intro-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 180px;
    margin-left: -90px;
    height: 5px;
    background-color: #00467f; }

.intro {
  font-size: 1.44rem;
  line-height: 1.25;
  color: #747778;
  margin-top: -0.6rem; }
  @media (min-width: 48em) {
    .intro {
      font-size: 1.5625rem; } }

.text {
  color: #4a4c4c;
  margin-bottom: 2rem; }
  .text .address {
    line-height: 1.2;
    display: block; }
  .text h3 {
    font-size: 1.25rem; }
  .text h4 {
    font-size: 1rem; }
  .text ol {
    counter-reset: li;
    margin-left: 0;
    padding-left: 0; }
  .text ol > li {
    position: relative;
    padding-left: 1.8em;
    list-style: none; }
  .text ol ol > li {
    padding-left: 1.5em; }
  .text ol ol ol > li {
    padding-left: 2em; }
  .text ol > li:before {
    content: counter(li) ".";
    counter-increment: li;
    position: absolute;
    color: #00467f;
    left: 0;
    width: 1.5em;
    font-weight: bold; }
  .text ol ol > li:before {
    content: counter(li, lower-alpha) ".";
    counter-increment: li;
    position: absolute;
    color: #00467f;
    left: 0;
    width: 1.5em;
    font-weight: bold; }
  .text ol ol ol > li:before {
    content: counter(li, lower-roman) ".";
    counter-increment: li;
    color: #00467f;
    left: 0;
    width: 2em;
    font-weight: bold;
    display: inline-block; }
  .text ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0; }
  .text ul > li {
    position: relative;
    padding-left: 1em;
    list-style: none; }
  .text ul > li:before, .text ul ul ul ul > li:before {
    position: absolute;
    left: 0.1rem;
    width: 0.33rem;
    top: 0.62rem;
    content: "";
    background-color: #00467f;
    display: inline;
    background-color: none;
    height: 0.33rem; }
  .text ul ul > li:before, .text ul ul ul ul ul > li:before {
    content: "";
    position: absolute;
    left: 0.1rem;
    width: 0.33rem;
    top: 0.62rem;
    background-color: #747778;
    height: 0.33rem;
    border-radius: 50%; }
  .text ul ul ul > li:before, .text ul ul ul ul ul ul > li:before {
    content: "";
    position: absolute;
    left: 0.1rem;
    width: 0.4rem;
    top: 0.75rem;
    height: 0.15rem;
    display: block;
    border-radius: 0;
    background-color: #747778;
    font-size: 0.83333rem; }
  .text a {
    color: #005499;
    position: relative;
    text-decoration: none;
    text-shadow: 1px 0px 0 #ffffff, -1px 0px 0 #ffffff, 2px 0 0 #ffffff, -2px 0 0 #ffffff;
    background-image: linear-gradient(transparent 50%, #005499 50%);
    background-repeat: repeat-x;
    background-position: 0 92%;
    background-size: 1px 2px;
    outline: none; }
    .text a:hover {
      text-decoration: none;
      text-shadow: 1px 0 0 #ffffff, -1px 0 0 #ffffff, 2px 0 0 #ffffff, -2px 0 0 #ffffff;
      background-size: 1px 4px; }
    .text a:focus {
      background-color: rgba(0, 70, 127, 0.15);
      text-shadow: none; }
  .text .footnote {
    display: block; }
    @media (max-width: 33.99em) {
      .text .footnote {
        font-size: 0.83333rem; } }
    @media (min-width: 34em) {
      .text .footnote {
        font-size: 0.8rem; } }

.highlight {
  background-color: #f2f2f2;
  padding: 1.6rem;
  display: block;
  margin-bottom: 1rem; }
  .highlight *:last-child {
    margin-bottom: 0; }
  .highlight a {
    color: #005499;
    position: relative;
    text-decoration: none;
    text-shadow: 1px 0px 0 #f2f2f2, -1px 0px 0 #f2f2f2, 2px 0 0 #f2f2f2, -2px 0 0 #f2f2f2;
    background-image: linear-gradient(transparent 50%, #005499 50%);
    background-repeat: repeat-x;
    background-position: 0 92%;
    background-size: 1px 2px;
    outline: none; }
    .highlight a:hover {
      text-decoration: none;
      text-shadow: 1px 0 0 #f2f2f2, -1px 0 0 #f2f2f2, 2px 0 0 #f2f2f2, -2px 0 0 #f2f2f2;
      background-size: 1px 4px; }
    .highlight a:focus {
      background-color: rgba(0, 70, 127, 0.15);
      text-shadow: none; }
  @media (min-width: 48em) {
    .highlight {
      padding: 2.2rem; } }

.column-list a:link, .column-list a:visited {
  color: #00467f; }

.column-list li {
  margin-bottom: 0.4rem;
  display: inline-block;
  width: 100%; }

@media (min-width: 48em) {
  .column-list {
    /* autoprefixer: off */
    -webkit-columns: 3 150px;
    -moz-columns: 3 150px;
    columns: 3 150px;
    -webkit-column-gap: 1.66rem;
    -moz-column-gap: 1.66rem;
    column-gap: 1.66rem;
    /* autoprefixer: on */ } }

@media (min-width: 62em) {
  .column-list {
    /* autoprefixer: off */
    -webkit-columns: 4 150px;
    -moz-columns: 4 150px;
    columns: 4 150px;
    -webkit-column-gap: 4.44rem;
    -moz-column-gap: 4.44rem;
    column-gap: 4.44rem;
    /* autoprefixer: on */ } }

.padded-list li {
  padding-bottom: 0.4rem; }

.listing-text p {
  font-size: 1.11rem;
  color: #747778; }
  @media (min-width: 48em) {
    .listing-text p {
      font-size: 1.2rem; } }
  .listing-text p a:link, .listing-text p a:visited {
    color: #00467f;
    text-decoration: underline; }
  .listing-text p a:hover, .listing-text p a:focus {
    text-decoration: none; }

.btn {
  display: inline-block;
  border-radius: 32px;
  padding: 0.6em 2em;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  min-height: 3em;
  margin: 0.5em;
  font-family: NationalBold, sans-serif;
  transition: .3s;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
  .btn.btn--dark-blue {
    background-color: #00467f;
    border: 2px solid #00467f;
    color: #ffffff; }
    .btn.btn--dark-blue.btn--inverse {
      border: 1px solid #ffffff; }
    .btn.btn--dark-blue:hover {
      background-color: transparent;
      color: #00467f; }
  .btn.btn--white {
    background-color: #ffffff;
    border: 1px solid #00467f;
    color: #00467f; }
    .btn.btn--white.btn--inverse {
      border: 2px solid #ffffff; }
    .btn.btn--white:hover {
      background-color: transparent;
      color: #ffffff; }
  .btn.btn--light-blue {
    background-color: #0080a7;
    border: 1px solid #0080a7;
    color: #ffffff; }
    .btn.btn--light-blue.btn--inverse {
      border: 1px solid #ffffff; }
  .btn:hover {
    text-decoration: none; }

.cta {
  display: inline-block;
  vertical-align: middle;
  font-family: NationalBold, sans-serif;
  padding-right: 1.5rem;
  border: none;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative; }
  .cta.cta--dark-blue {
    color: #00467f; }
    .cta.cta--dark-blue svg * {
      fill: #00467f; }
  .cta.cta--light-blue {
    color: #0080a7; }
    .cta.cta--light-blue svg * {
      fill: #0080a7; }
  .cta.cta--white {
    color: #ffffff; }
    .cta.cta--white svg * {
      fill: #ffffff; }
  .cta svg {
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    top: .16rem;
    transition: .3s;
    right: .25rem; }
  .cta:hover, .cta:focus {
    text-decoration: none; }
    .cta:hover svg, .cta:focus svg {
      right: -.25rem; }

.cta--dark-blue-round {
  background-color: #00467f;
  color: #ffffff;
  border: solid 2px #00467f;
  border-radius: 1.7rem;
  max-width: 388px;
  padding: 0.75rem 4.16rem 0.75em 2.22rem;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  text-align: left;
  transition: .3s;
  line-height: 1.2;
  margin-bottom: 1rem;
  outline: none; }
  .cta--dark-blue-round[type=submit] {
    padding-right: 2.22rem; }
  .cta--dark-blue-round .icon {
    fill: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0.77rem;
    height: 0.77rem;
    right: 2.2rem; }
  .cta--dark-blue-round:link, .cta--dark-blue-round:visited {
    background-color: #00467f;
    color: #ffffff; }
  .cta--dark-blue-round:hover, .cta--dark-blue-round:focus {
    background-color: transparent;
    color: #00467f;
    border: solid 2px #00467f;
    outline: none; }
    .cta--dark-blue-round:hover .icon, .cta--dark-blue-round:focus .icon {
      fill: #00467f;
      right: 1.5rem; }

input.cta--dark-blue-round {
  padding-right: 2.22rem; }

.apply-now-area {
  background-color: #0080a7;
  text-align: center; }
  .apply-now-area p {
    margin: 0; }

.cta--apply-now {
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 1rem;
  padding: 0.27rem 1rem;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  margin: 0.5rem 0;
  outline: none;
  min-width: 187px;
  transition: .3s; }
  .cta--apply-now .icon {
    fill: #ffffff;
    position: relative;
    right: auto;
    top: 0; }
  .cta--apply-now .icn-arrow {
    width: 10px;
    height: 10px;
    margin-left: 0.5rem; }
  .cta--apply-now .checkmark-circle {
    width: 15px;
    height: 15px;
    top: 1px;
    margin-right: 0.3rem; }
  .cta--apply-now:link, .cta--apply-now:visited {
    color: #ffffff; }
  .cta--apply-now:hover, .cta--apply-now:focus {
    background-color: #ffffff;
    color: #0080a7;
    outline: none; }
    .cta--apply-now:hover .icon, .cta--apply-now:focus .icon {
      right: auto;
      left: auto;
      fill: #0080a7; }

.uoa-brand-shape {
  position: relative;
  width: calc(100% - 108px);
  left: 54px;
  padding: 3em 0 2em;
  background-color: rgba(0, 70, 127, 0.9); }
  .uoa-brand-shape:before, .uoa-brand-shape:after {
    content: "";
    position: absolute;
    width: 54px;
    height: 100%;
    background-size: 54px 1000px;
    z-index: 0; }
  .uoa-brand-shape:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNTQgMTAwMCI+DQoJPHBvbHlnb24gZmlsbD0iIzAwNDY3ZiIgZmlsbC1vcGFjaXR5PSIwLjkiIHBvaW50cz0iMCA1NCA1NCAwIDU0IDEwMDAgMCAxMDAwIi8+DQo8L3N2Zz4NCg==");
    left: -54px;
    top: 0; }
  .uoa-brand-shape:after {
    right: -54px;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNTQgMTAwMCI+DQoJPHBvbHlnb24gZmlsbD0iIzAwNDY3ZiIgZmlsbC1vcGFjaXR5PSIwLjkiIHBvaW50cz0iMCAwIDU0IDAgNTQgOTQ2IDAgMTAwMCIvPg0KPC9zdmc+DQo=");
    background-position: 100% 100%; }
  .uoa-brand-shape__content {
    margin: 0 -27px;
    position: relative;
    z-index: 1; }
  .uoa-brand-shape h1, .uoa-brand-shape p, .uoa-brand-shape h1 a:focus {
    color: #ffffff; }
  .uoa-brand-shape__content :first-child {
    margin-top: 0; }

/*!
========== COMPONENTS
*/
.ask-auckland {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .col-lg-6:last-child .ask-auckland {
    margin-bottom: 0; }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .ask-auckland {
      position: static;
      margin-bottom: 0; } }
  .ask-auckland .ask-auckland__content {
    background-color: #0080a7;
    width: 95%;
    padding-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
    @media (max-width: 47.99em) {
      .ask-auckland .ask-auckland__content {
        width: 100%;
        position: static;
        margin-left: 0;
        padding-bottom: 1rem;
        height: auto; } }
    @media (min-width: 48em) and (max-width: 61.99em) {
      .ask-auckland .ask-auckland__content {
        position: static;
        width: 95%;
        margin-left: 0;
        padding-bottom: 2rem; } }
    .ask-auckland .ask-auckland__content h2 {
      font-size: 1.5625rem;
      background-color: #00467f;
      color: #fff;
      display: inline-block;
      padding: 0.8rem;
      position: relative;
      top: -1.5rem;
      left: 1rem; }
      .ask-auckland .ask-auckland__content h2:after {
        content: ' ';
        display: block;
        width: 0;
        height: 0;
        border-left: 20px solid #00467f;
        border-right: 20px solid transparent;
        border-bottom: 18px solid #0080a7;
        position: absolute;
        bottom: -18px;
        left: 0px; }
      @media (max-width: 47.99em) {
        .ask-auckland .ask-auckland__content h2 {
          left: 5%; } }
      @media (min-width: 48em) and (max-width: 61.99em) {
        .ask-auckland .ask-auckland__content h2 {
          left: 0.8rem; } }
    .ask-auckland .ask-auckland__content p {
      padding: 0 2rem;
      color: #ffffff;
      font-size: 1.125rem;
      margin-top: -1rem; }
      @media (max-width: 47.99em) {
        .ask-auckland .ask-auckland__content p {
          width: 100%;
          margin-left: 0;
          margin-top: -1.5rem; } }
      @media (min-width: 48em) and (max-width: 61.99em) {
        .ask-auckland .ask-auckland__content p {
          width: 100%;
          margin-left: 0.5rem;
          margin-top: -1.5rem; } }
  .ask-auckland .ask-auckland__search {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    padding: 1rem 2rem;
    background-color: #f2f2f2;
    left: 2rem;
    width: 95%;
    top: -2rem;
    position: relative;
    z-index: 2; }
    @media (max-width: 47.99em) {
      .ask-auckland .ask-auckland__search {
        width: 100%;
        position: static;
        margin-top: 0;
        padding: 1rem 1.5rem 0.1rem;
        left: 0;
        top: 0; } }
    @media (min-width: 48em) and (max-width: 61.99em) {
      .ask-auckland .ask-auckland__search {
        width: 95%;
        position: relative;
        float: none;
        padding-bottom: 0.1rem;
        left: 2rem;
        top: -2rem;
        margin-top: 0; } }
    .ask-auckland .ask-auckland__search label {
      display: block;
      position: relative;
      margin-bottom: 1rem; }
      .ask-auckland .ask-auckland__search label button[type=reset] {
        width: 1rem;
        height: 1rem;
        position: absolute;
        margin-left: -2rem;
        margin-top: 1.3rem;
        border: none;
        background: #bec3c4;
        border-radius: 50%;
        text-align: center;
        padding: .125rem 0 0 0;
        display: block;
        right: 6.45rem;
        z-index: 5;
        top: 0; }
        .ask-auckland .ask-auckland__search label button[type=reset]:disabled {
          display: none; }
        .ask-auckland .ask-auckland__search label button[type=reset] svg {
          fill: #fff;
          display: inline;
          vertical-align: top;
          width: .75rem;
          height: .75rem;
          line-height: 1; }
    .ask-auckland .ask-auckland__search input[type=search] {
      height: 3.5rem;
      line-height: 1;
      padding: 0;
      width: calc(100% - 3.45rem);
      border: 1px solid #d9d9d9;
      color: #00467f;
      text-indent: 1rem;
      float: left;
      position: relative;
      z-index: 1;
      font-family: NationalBook, sans-serif; }
    .ask-auckland .ask-auckland__search button[type=submit] {
      border: 0 none transparent;
      background-color: #00467f;
      color: #ffffff;
      text-align: center;
      height: 3.45rem;
      width: 3.45rem;
      border: 0 none transparent;
      font-weight: normal;
      float: left;
      transition: .3s; }
      .ask-auckland .ask-auckland__search button[type=submit]:hover {
        background-color: #0080a7; }
  .ask-auckland .ask-auckland__top-questions {
    margin-top: 1rem; }
    .ask-auckland .ask-auckland__top-questions h3 {
      color: #00467f;
      font-size: 1rem; }
    .ask-auckland .ask-auckland__top-questions ul {
      padding: 0; }
      .ask-auckland .ask-auckland__top-questions ul li {
        list-style-type: none;
        padding: 0;
        margin: 0; }
        .ask-auckland .ask-auckland__top-questions ul li a, .ask-auckland .ask-auckland__top-questions ul li a:link, .ask-auckland .ask-auckland__top-questions ul li a:visited {
          color: #00467f;
          transition: all 0.3s ease; }
          .ask-auckland .ask-auckland__top-questions ul li a svg, .ask-auckland .ask-auckland__top-questions ul li a:link svg, .ask-auckland .ask-auckland__top-questions ul li a:visited svg {
            opacity: 0;
            height: 0.85rem;
            width: 1rem;
            fill: #00467f;
            transition: all 0.3s ease;
            position: relative;
            left: -0.2rem;
            top: 0.09rem; }
          .ask-auckland .ask-auckland__top-questions ul li a:hover, .ask-auckland .ask-auckland__top-questions ul li a:link:hover, .ask-auckland .ask-auckland__top-questions ul li a:visited:hover {
            color: #0080a7;
            text-decoration: none; }
            .ask-auckland .ask-auckland__top-questions ul li a:hover svg, .ask-auckland .ask-auckland__top-questions ul li a:link:hover svg, .ask-auckland .ask-auckland__top-questions ul li a:visited:hover svg {
              left: 0rem;
              fill: #0080a7;
              opacity: 1; }

.ask-auckland-wide {
  position: relative;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  height: auto;
  padding-top: 30px; }
  .ask-auckland-wide .ask-auckland-wide__content {
    background-color: #0080a7;
    width: calc(95% - 1.11rem);
    z-index: 1;
    margin-left: 5%;
    padding-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
    @media (max-width: 47.99em) {
      .ask-auckland-wide .ask-auckland-wide__content {
        width: 100%;
        margin-left: 0;
        position: static; } }
    @media (min-width: 48em) and (max-width: 61.99em) {
      .ask-auckland-wide .ask-auckland-wide__content {
        width: 95%;
        margin-left: 0;
        position: static;
        padding-bottom: 2rem; } }
    .ask-auckland-wide .ask-auckland-wide__content h2 {
      font-size: 1.5625rem;
      background-color: #00467f;
      color: #fff;
      display: inline-block;
      padding: 0.8rem;
      position: relative;
      top: -1.5rem;
      left: 1rem; }
      @media (max-width: 47.99em) {
        .ask-auckland-wide .ask-auckland-wide__content h2 {
          left: 5%; } }
      @media (min-width: 48em) and (max-width: 61.99em) {
        .ask-auckland-wide .ask-auckland-wide__content h2 {
          left: 0.8rem; } }
      .ask-auckland-wide .ask-auckland-wide__content h2:after {
        content: ' ';
        display: block;
        width: 0;
        height: 0;
        border-left: 20px solid #00467f;
        border-right: 20px solid transparent;
        border-bottom: 18px solid #0080a7;
        position: absolute;
        bottom: -18px;
        left: 0px; }
    .ask-auckland-wide .ask-auckland-wide__content p {
      padding: 0 2rem;
      color: #ffffff;
      width: 48%;
      font-size: 1.125rem;
      margin-top: -1rem;
      margin-left: 0; }
      @media (max-width: 47.99em) {
        .ask-auckland-wide .ask-auckland-wide__content p {
          width: 100%;
          margin-left: 0;
          margin-top: -1.5rem; } }
      @media (min-width: 48em) and (max-width: 61.99em) {
        .ask-auckland-wide .ask-auckland-wide__content p {
          width: 100%;
          margin-left: 0.5rem;
          margin-top: -1.5rem; } }
  .ask-auckland-wide.not-centered .ask-auckland-wide__search {
    top: 0;
    transform: translateY(0); }
  .ask-auckland-wide .ask-auckland-wide__search {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: absolute;
    background-color: #f2f2f2;
    padding: 1rem 2rem 0;
    width: calc(47.5% - 1.11rem);
    margin: 0;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    right: calc(5% - 0.555rem);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
    @media (max-width: 47.99em) {
      .ask-auckland-wide .ask-auckland-wide__search {
        width: 100%;
        position: static;
        padding: 1rem 1.5rem 1rem;
        min-height: none;
        transform: translateY(0);
        top: 0; } }
    @media (min-width: 48em) and (max-width: 61.99em) {
      .ask-auckland-wide .ask-auckland-wide__search {
        width: 95%;
        position: relative;
        float: none;
        padding-bottom: 0.1rem;
        left: 5%;
        top: -1.5rem;
        min-height: none;
        margin-top: 0;
        transform: translateY(0); } }
    .ask-auckland-wide .ask-auckland-wide__search label {
      display: block;
      margin-bottom: 1rem;
      position: relative; }
      .ask-auckland-wide .ask-auckland-wide__search label button[type=reset] {
        width: 1rem;
        height: 1rem;
        position: absolute;
        margin-left: -2rem;
        margin-top: 1.3rem;
        border: none;
        background: #bec3c4;
        border-radius: 50%;
        text-align: center;
        padding: .125rem 0 0 0;
        display: block;
        right: 4.45rem;
        z-index: 5;
        top: 0; }
        .ask-auckland-wide .ask-auckland-wide__search label button[type=reset]:disabled {
          display: none; }
        .ask-auckland-wide .ask-auckland-wide__search label button[type=reset] svg {
          fill: #fff;
          display: inline;
          vertical-align: top;
          width: .75rem;
          height: .75rem;
          line-height: 1; }
    .ask-auckland-wide .ask-auckland-wide__search input[type=search] {
      height: 3.5rem;
      line-height: 1;
      padding: 0;
      width: calc(100% - 3.45rem);
      border: 1px solid #d9d9d9;
      color: #00467f;
      text-indent: 1rem;
      position: relative;
      z-index: 1;
      font-family: NationalBook, sans-serif; }
    .ask-auckland-wide .ask-auckland-wide__search button[type=submit] {
      border: 0 none transparent;
      background-color: #00467f;
      color: #ffffff;
      text-align: center;
      height: 3.45rem;
      width: 3.45rem;
      border: 0 none transparent;
      font-weight: normal;
      transition: .3s;
      position: absolute;
      right: 0;
      top: 0; }
      .ask-auckland-wide .ask-auckland-wide__search button[type=submit]:hover, .ask-auckland-wide .ask-auckland-wide__search button[type=submit]:focus {
        background-color: #0080a7; }
  .ask-auckland-wide .ask-auckland-wide__top-questions {
    margin-top: 1rem; }
    .ask-auckland-wide .ask-auckland-wide__top-questions h3 {
      color: #00467f;
      font-size: 1rem; }
    .ask-auckland-wide .ask-auckland-wide__top-questions ul {
      padding: 0; }
      .ask-auckland-wide .ask-auckland-wide__top-questions ul li {
        list-style-type: none;
        padding: 0;
        margin: 0; }
        .ask-auckland-wide .ask-auckland-wide__top-questions ul li a, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:link, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:visited {
          color: #00467f;
          transition: all 0.3s ease; }
          .ask-auckland-wide .ask-auckland-wide__top-questions ul li a svg, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:link svg, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:visited svg {
            opacity: 0;
            height: 0.85rem;
            width: 1rem;
            fill: #00467f;
            transition: all 0.3s ease;
            position: relative;
            left: -0.2rem;
            top: 0.09rem; }
          .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:hover, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:link:hover, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:visited:hover {
            color: #0080a7;
            text-decoration: none; }
            .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:hover svg, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:link:hover svg, .ask-auckland-wide .ask-auckland-wide__top-questions ul li a:visited:hover svg {
              opacity: 1;
              left: 0rem;
              fill: #0080a7; }

.uoa-flex-text-img {
  position: relative; }
  .uoa-flex-text-img .btn {
    margin: 0.5em 0; }
  .uoa-flex-text-img__tag {
    padding: .3em 1em;
    display: table-cell;
    left: 0;
    font-family: NationalBold, sans-serif; }
  .uoa-flex-text-img__img-container {
    z-index: 1;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); }
    @media (min-width: 48em) and (max-width: 61.99em) {
      .uoa-flex-text-img__img-container {
        box-shadow: 0 0 0 transparent; } }
    .uoa-flex-text-img__img-container img {
      width: 100%;
      display: block; }
  .uoa-flex-text-img__content {
    z-index: 2;
    position: relative;
    padding: 1em;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); }
    .uoa-flex-text-img__content h2 {
      margin-bottom: .8em; }
      .uoa-flex-text-img__content h2 a {
        color: #00467f; }
  .uoa-flex-text-img--medium .uoa-flex-text-img__content {
    background: #0080a7;
    margin: -2em 5% 0; }
    @media (min-width: 48em) and (max-width: 61.99em) {
      .uoa-flex-text-img--medium .uoa-flex-text-img__content {
        padding: 2rem; } }
    @media (min-width: 75em) {
      .uoa-flex-text-img--medium .uoa-flex-text-img__content {
        padding: 2rem; } }
    .uoa-flex-text-img--medium .uoa-flex-text-img__content h2 {
      font-size: 1.44rem; }
      @media (min-width: 75em) {
        .uoa-flex-text-img--medium .uoa-flex-text-img__content h2 {
          font-size: 1.5625rem; } }
  .uoa-flex-text-img--medium .uoa-flex-text-img__tag {
    color: #00467f;
    background: #ffffff;
    font-weight: bold;
    margin: 0 5%;
    bottom: 2em;
    position: absolute; }
  @media (max-width: 61.99em) {
    .col-xs-12:first-child .uoa-flex-text-img--medium {
      margin-bottom: 2em; } }
  @media (max-width: 61.99em) {
    .col-xs-12.col-lg-6 + .col-xs-12 .uoa-flex-text-img--medium {
      margin-top: 0; } }
  @media (max-width: 61.99em) {
    .col-xs-12:last-child .uoa-flex-text-img--medium {
      margin-top: 2em; } }
  .uoa-flex-text-img--medium h2 a {
    color: #ffffff; }
  .uoa-flex-text-img--medium svg {
    display: none; }
  .uoa-flex-text-img--medium p {
    color: #ffffff; }
  .uoa-flex-text-img--small .uoa-flex-text-img__img-container {
    z-index: 1; }
    @media (min-width: 75em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__img-container img {
        width: 100%; } }
    @media (max-width: 61.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__img-container img {
        float: left;
        width: 33.33%;
        margin-right: 1rem; } }
    @media (max-width: 47.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__img-container img {
        padding-top: 2rem; } }
  .uoa-flex-text-img--small .uoa-flex-text-img__tag {
    background: #00467f;
    color: #ffffff; }
    @media (max-width: 47.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__tag {
        position: absolute;
        top: 0; } }
    @media (max-width: 61.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__tag {
        display: inline;
        font-size: .75em;
        padding: .1em .7em .3em;
        vertical-align: top; } }
    @media (min-width: 62em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__tag {
        position: absolute;
        bottom: 0; } }
  .uoa-flex-text-img--small .uoa-flex-text-img__content {
    z-index: 1; }
    @media (min-width: 62em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__content {
        background: #ffffff; } }
    .uoa-flex-text-img--small .uoa-flex-text-img__content h2 {
      font-size: 1.2rem; }
      @media (min-width: 75em) {
        .uoa-flex-text-img--small .uoa-flex-text-img__content h2 {
          font-size: 1.25rem; } }
      @media (max-width: 47.99em) {
        .uoa-flex-text-img--small .uoa-flex-text-img__content h2 {
          margin: 1.7rem 0 0 0; } }
    .uoa-flex-text-img--small .uoa-flex-text-img__content p {
      margin-bottom: .6em; }
      @media (max-width: 33.99em) {
        .uoa-flex-text-img--small .uoa-flex-text-img__content p {
          clear: left;
          padding-top: .8rem; } }
      @media (min-width: 34em) and (max-width: 61.99em) {
        .uoa-flex-text-img--small .uoa-flex-text-img__content p {
          padding-top: .8rem; } }
    @media (min-width: 34em) and (max-width: 61.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__content {
        margin-left: 33.33%;
        padding-top: .65rem; } }
    @media (max-width: 33.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__content {
        margin-left: 0;
        padding: 0 0 .65em; } }
    @media (max-width: 61.99em) {
      .uoa-flex-text-img--small .uoa-flex-text-img__content {
        box-shadow: none; } }
  @media (max-width: 47.99em) {
    .uoa-flex-text-img--small {
      margin-top: 1rem;
      border-top: 1px solid #00467f; } }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .uoa-flex-text-img--small {
      margin-top: 1rem;
      border-bottom: 1px solid #00467f; } }
  .uoa-flex-text-img--small .btn {
    min-height: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: none; }
  .uoa-flex-text-img--large .uoa-flex-text-img__tag {
    background: #0080a7;
    color: #ffffff; }
  .uoa-flex-text-img--large .uoa-flex-text-img__content {
    background: #ffffff;
    padding: 2rem; }
    .uoa-flex-text-img--large .uoa-flex-text-img__content h2 {
      font-size: 1.44rem; }
      @media (min-width: 75em) {
        .uoa-flex-text-img--large .uoa-flex-text-img__content h2 {
          font-size: 1.5625rem; } }
  .uoa-flex-text-img--large {
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
    position: relative;
    background: #00467f; }
    .uoa-flex-text-img--large img {
      position: absolute;
      width: 100%;
      top: 50%;
      transform: translateY(-50%); }
      @media (max-width: 61.99em) {
        .uoa-flex-text-img--large img {
          display: none; } }

.uoa-subflexi {
  margin-bottom: 2rem; }
  .uoa-subflexi--small {
    padding: 1.6rem;
    background-color: #ffffff;
    box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
    position: relative; }
  .uoa-subflexi--medium {
    background-color: #ffffff;
    box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
    position: relative;
    border-bottom: solid 5px #0080a7; }
    @media (min-width: 48em) {
      .uoa-subflexi--medium {
        background-color: transparent;
        box-shadow: none;
        border-bottom: none; } }
  .uoa-subflexi--large {
    position: relative; }
    @media (min-width: 62em) {
      .uoa-subflexi--large {
        width: 100%;
        display: table; } }

.uoa-subflexi__img {
  width: 100%;
  height: auto;
  display: block; }

.uoa-subflexi__text {
  position: relative;
  z-index: 1;
  font-size: 1.2rem; }

.uoa-subflexi__heading {
  color: #00467f; }
  .uoa-subflexi__heading a:link, .uoa-subflexi__heading a:visited {
    color: #00467f; }
  .uoa-subflexi__heading a:hover, .uoa-subflexi__heading a:focus {
    color: #00467f; }

.uoa-subflexi--small .uoa-subflexi__image {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  z-index: 2; }

.uoa-subflexi--small .cta-link {
  position: relative; }
  .uoa-subflexi--small .cta-link .icon {
    width: 12px;
    height: 12px;
    fill: #00467f;
    margin-left: 0;
    transition: all 0.2s ease;
    position: relative; }
  .uoa-subflexi--small .cta-link:link, .uoa-subflexi--small .cta-link:visited {
    color: #00467f; }
  .uoa-subflexi--small .cta-link:hover .icon, .uoa-subflexi--small .cta-link:focus .icon {
    margin-left: 10px; }

.uoa-subflexi--small .uoa-subflexi__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto; }

.uoa-subflexi--small .uoa-subflexi__header {
  width: calc(100% - 90px);
  margin-left: 90px;
  display: block;
  min-height: 70px;
  margin-bottom: 1rem; }

.uoa-subflexi--small .uoa-subflexi__header-inner {
  display: table-cell;
  vertical-align: middle;
  height: 70px; }

.uoa-subflexi--small .uoa-subflexi__heading {
  font-size: 1.44rem;
  font-family: "NationalBook";
  display: inline; }

@media (min-width: 48em) {
  .uoa-subflexi--medium .uoa-subflexi__image {
    width: calc(100% - 2.2rem); } }

.uoa-subflexi--medium .uoa-subflexi__text {
  padding: 1.6rem; }
  @media (min-width: 48em) {
    .uoa-subflexi--medium .uoa-subflexi__text {
      background-color: #ffffff;
      box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
      border-bottom: solid 5px #0080a7;
      margin-top: -2.2rem;
      margin-left: 2.2rem; } }

.uoa-subflexi--medium .uoa-subflexi__heading {
  font-size: 1.728rem;
  margin-bottom: 1.3rem; }
  @media (min-width: 75em) {
    .uoa-subflexi--medium .uoa-subflexi__heading {
      font-size: 1.95312rem; } }

.uoa-subflexi--medium .cta {
  font-size: 1rem; }

.uoa-subflexi--large .uoa-subflexi__image {
  position: relative;
  z-index: 1;
  margin-left: -0.555rem;
  width: calc(100% + 1.1rem); }
  @media (min-width: 48em) {
    .uoa-subflexi--large .uoa-subflexi__image {
      width: 100%;
      margin-left: 0; } }
  @media (min-width: 62em) {
    .uoa-subflexi--large .uoa-subflexi__image {
      display: table-cell;
      vertical-align: middle; } }

.uoa-subflexi--large .cta {
  font-size: 1rem; }

@media (min-width: 62em) {
  .uoa-subflexi--large .uoa-subflexi__img {
    width: 82%; } }

.uoa-subflexi--large .uoa-subflexi__heading {
  font-size: 1.728rem;
  margin-bottom: 1.3rem; }
  @media (min-width: 75em) {
    .uoa-subflexi--large .uoa-subflexi__heading {
      font-size: 1.95312rem; } }

.uoa-subflexi--large .uoa-subflexi__text {
  margin-top: -2.2rem;
  background-color: #f2f2f2;
  z-index: 2;
  padding: 2.2rem;
  box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25); }
  @media (min-width: 48em) {
    .uoa-subflexi--large .uoa-subflexi__text {
      margin-left: 60px;
      margin-right: 60px;
      margin-top: -5.555rem;
      margin-bottom: 20px; }
      .uoa-subflexi--large .uoa-subflexi__text:before {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #f2f2f2;
        z-index: -1;
        content: '';
        left: 0;
        top: 0; }
      .uoa-subflexi--large .uoa-subflexi__text:after {
        content: '';
        width: 47%;
        height: 62%;
        position: absolute;
        bottom: -20px;
        left: -20px;
        background-color: #0080a7;
        z-index: -2; } }
  @media (min-width: 62em) {
    .uoa-subflexi--large .uoa-subflexi__text {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 0;
      margin-left: 0;
      margin-right: 0;
      width: 482px; } }

.uoa-subflexi--large.not-centered .uoa-subflexi__text {
  top: 0;
  transform: translateY(0); }

.uoa-subnav {
  width: 100%;
  margin: 0 auto;
  font-family: 'NationalBold', sans-serif;
  background-color: #ffffff;
  position: relative;
  z-index: 6; }
  .uoa-subnav .hidden {
    display: none; }
  @media (min-width: 48em) {
    .uoa-subnav {
      background: linear-gradient(to right, white 0%, white 68%, rgba(255, 255, 255, 0) 68%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); } }

@media (min-width: 62em) {
  .frontpage-banner + .uoa-subnav {
    margin-top: -3.5rem; } }

@media (min-width: 62em) {
  .programme-listing-page .uoa-subnav {
    margin-top: 0rem; } }

.icon {
  width: 25px;
  height: 25px;
  display: inline-block; }

.greedy-btn {
  width: 40px;
  height: 35px;
  background: none;
  border: none;
  display: none;
  padding: 0; }
  .greedy-btn .icon {
    vertical-align: text-top;
    fill: #0080a7; }
  .is-greedy .greedy-btn {
    display: block; }
  .greedy-btn:hover, .greedy-btn:focus, .greedy-btn.is-active {
    background: #0080a7;
    color: #ffffff; }
    .greedy-btn:hover .icon, .greedy-btn:focus .icon, .greedy-btn.is-active .icon {
      fill: #ffffff; }

.uoa-subnav_nav {
  display: inline-block;
  background-color: #ffffff;
  padding-top: 1.1rem;
  position: relative; }
  .is-greedy .uoa-subnav_nav {
    padding-left: 40px; }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .uoa-subnav_nav {
      padding-top: 1.27rem; } }
  @media (min-width: 62em) {
    .uoa-subnav_nav {
      padding-top: 2rem;
      margin-bottom: 2rem; } }

.subnav_list {
  display: inline-table;
  width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: top;
  padding-bottom: 1rem;
  padding-right: 2rem;
  line-height: 1.2; }
  .is-greedy .subnav_list {
    width: calc(100% - 40px); }

.subnav_list .subnav_items {
  display: table-cell;
  position: relative;
  padding-left: 30px;
  vertical-align: top;
  font-size: 1.11rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(90vw - 40px); }
  .subnav_list .subnav_items.btn-item {
    text-overflow: unset; }

.subnav_list .subnav_items.first {
  padding-left: 0; }

.subnav_list .subnav_items:not(.first):before {
  content: "/";
  display: block;
  font-family: 'arial', sans-serif;
  color: #747778;
  position: absolute;
  top: 4px;
  left: 0;
  width: 25px;
  height: 20px;
  text-align: center; }

.subnav_links {
  display: block;
  transition: all 0.2s ease; }
  .subnav_links:link, .subnav_links:visited {
    color: #0080a7;
    border-bottom: solid 2px #ffffff; }
  .subnav_links:hover, .subnav_links:focus {
    color: #0080a7;
    outline: none;
    text-decoration: none;
    border-bottom: solid 2px #0080a7; }
  .subnav_hidden-list .subnav_links {
    border: none; }

.subnav_sublinks-btn, .subnav_plain {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #333333;
  text-align: left;
  display: inline;
  font-size: 1.11rem;
  min-height: 28px;
  transition: all 0.2s ease; }
  .subnav_sublinks-btn .btn-icon, .subnav_plain .btn-icon {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #0080a7;
    text-align: center;
    vertical-align: top; }
  .subnav_sublinks-btn .icon, .subnav_plain .icon {
    transform: rotate(0deg);
    transition: transform 0.5s ease 0s;
    fill: #ffffff;
    width: 16px;
    height: 16px;
    vertical-align: middle; }

.subnav_hidden-list {
  background-color: #0080a7;
  position: absolute;
  top: 35px;
  width: 205px;
  list-style: none;
  padding: 1em 0;
  margin: 0;
  left: 0;
  display: none; }
  .subnav_hidden-list.is-open {
    display: block; }

.subnav_sublinks-btn {
  padding-right: 40px;
  display: inline-block; }
  .subnav_sublinks-btn .txt {
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    max-width: calc(90vw - 120px);
    border-bottom: solid 2px #ffffff;
    font-size: 1.11rem;
    transition: all 0.2s ease; }
  .subnav_sublinks-btn:hover, .subnav_sublinks-btn:focus {
    outline: none;
    color: #0080a7;
    border-bottom-color: #0080a7; }
    .subnav_sublinks-btn:hover .txt, .subnav_sublinks-btn:focus .txt {
      border-bottom: solid 2px #0080a7; }
    .subnav_sublinks-btn:hover .icon, .subnav_sublinks-btn:focus .icon {
      transform: rotate(180deg); }

.subnav_hidden-list .subnav_links {
  padding: 0.6rem 1rem;
  line-height: 1.2;
  position: relative; }

.subnav_hidden-list .subnav_links:link, .subnav_hidden-list .subnav_links:visited {
  color: #fff; }

.subnav_hidden-list .subnav_links:hover, .subnav_hidden-list .subnav_links:focus {
  text-decoration: underline;
  outline: none; }

.subnav_hidden-list .subnav_links:after {
  content: '';
  width: calc(100% - 2rem);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.6); }

.subnav_hidden-area {
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 40px;
  display: inline-block;
  z-index: 2; }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .subnav_hidden-area {
      top: 1.27rem; } }
  @media (min-width: 62em) {
    .subnav_hidden-area {
      top: 2rem; } }

.subnav-overlay__nav .icon {
  width: 12px;
  fill: #0080a7;
  height: 12px; }

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

.subnav-overlay_items {
  display: block;
  font-size: 1.11rem;
  line-height: 1.2;
  margin-bottom: 1em; }

.subnav-overlay__links {
  display: block; }
  .subnav-overlay__links:link, .subnav-overlay__links:visited, .subnav-overlay__links:hover, .subnav-overlay__links:focus {
    color: #0080a7;
    outline: none; }

.table table {
  border-collapse: collapse;
  background-color: #ffffff;
  border: none !important;
  margin-bottom: 1em; }

.table tr {
  border-bottom: 1px solid #d9d9d9; }

.table th, .table td {
  text-align: left;
  padding: 12px 30px;
  vertical-align: top; }

.table td {
  border: solid 1px #d9d9d9; }

.table th {
  background-color: #0080a7;
  color: #ffffff;
  border: solid 1px #0080a7;
  border-bottom-color: #d9d9d9; }

.table tbody tr:nth-child(odd) {
  background-color: #ebf5f8; }

.table caption {
  caption-side: top;
  font-family: 'NationalBold', sans-serif;
  font-size: 1.25rem;
  color: #4a4c4c;
  padding: 0;
  margin-bottom: 1rem; }

.table-responsive-wrap {
  width: 100%;
  margin-bottom: 2em; }
  .table-responsive-wrap table {
    width: 99.9% !important; }
  .table-responsive-wrap.respond {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; }

.table-swipe {
  position: relative;
  width: 100%;
  display: inline-block; }
  .table-swipe:before {
    content: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9Ii01NDUgMzU4LjkgMTAwIDEyNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAtNTQ1IDM1OC45IDEwMCAxMjU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBkPSJNLTQ3NC43LDM3MGM4LjcsMS40LDE2LjksNC4xLDI0LjYsNy44YzAuNSwwLjIsMC44LDAuNywwLjgsMS4yYzAsMC4xLDAsMC4xLDAsMC4ybC0xLjMsMTBjLTAuMSwwLjYtMC42LDEuMi0xLjMsMS4yYy0wLjIsMC0wLjQtMC4xLTAuNi0wLjJjLTYuNS0zLjUtMTMuNy02LjEtMjEuMi03LjZMLTQ3NC43LDM3MHoiLz48cGF0aCBkPSJNLTQ2MS4zLDQwNy45Yy0xLjQsMC0yLjcsMC42LTMuNiwxLjZMLTQ3NCw0MjBjLTAuOSwxLTIuMiwxLjctMy43LDEuN2MtMi43LDAtNC45LTIuMi00LjktNC45bC0yLjEtNTNjMC0yLjctMi4yLTQuOS00LjktNC45Yy0yLjYsMC00LjcsMS45LTQuOSw0LjRsLTIuOSwzOC4zbC0yMS42LDkuNmMtMy41LDEuNS01LjksNS01LjksOWMwLDAuNCwwLDAuOSwwLjEsMS4zbDMuOSwyOWMwLjYsNC44LDQuNyw4LjUsOS43LDguNWgyMy43YzMuNywwLDYuOS0yLjEsOC42LTUuMWwyMS45LTM4LjVjMC40LTAuNywwLjYtMS42LDAuNi0yLjRDLTQ1Ni40LDQxMC4xLTQ1OC42LDQwNy45LTQ2MS4zLDQwNy45eiIvPjxwYXRoIGQ9Ik0tNTQxLjIsMzg2LjRMLTU0MS4yLDM4Ni40bDE3LjktMTguM3YwYzAuMi0wLjIsMC42LTAuNCwwLjktMC40YzAuNiwwLDEuMSwwLjQsMS4yLDAuOWwxLjgsNS4zYzQuNS0xLjcsOS4yLTIuOSwxMy45LTMuOGwtMC41LDEyLjVjLTMuMiwwLjctNi40LDEuNi05LjUsMi43bDEuNyw1YzAsMC4xLDAuMSwwLjMsMC4xLDAuNGMwLDAuNy0wLjYsMS4zLTEuMywxLjNjLTAuMSwwLTAuMSwwLTAuMiwwbC0yNS4zLTMuNWMtMC42LDAtMS4yLTAuNi0xLjItMS4yQy01NDEuNiwzODctNTQxLjUsMzg2LjYtNTQxLjIsMzg2LjR6Ii8+PC9zdmc+");
    display: inline-block;
    width: 20px;
    vertical-align: text-top;
    margin-right: 10px;
    line-height: 1; }
  .table-swipe.hide {
    display: none; }

.imagecomponent {
  margin: 1em 0 2em; }

.content-area > .imagecomponent:nth-child(1) {
  margin-top: 0; }

.imagecomponent__fig {
  float: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0; }

.imagecomponent__caption {
  font-size: 0.778rem;
  padding: 0.5rem 0 0 0; }

.imagecomponent__img {
  width: 100%;
  height: auto;
  display: block; }

.overlay-open {
  overflow: hidden;
  padding-right: 17px;
  position: relative; }
  .hiddenscroll .overlay-open {
    padding-right: 0; }
  .device-ios .overlay-open, .device-android .overlay-open {
    position: fixed; }

.overlay_container {
  display: none;
  transition: 500ms opacity ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  width: calc(100vw + 17px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 12;
  -webkit-overflow-scrolling: touch; }
  .hiddenscroll .overlay_container {
    width: 100vw; }
  .ie9 .overlay_container {
    width: calc(100vw + 17px); }
  .overlay_container[aria-hidden="false"] {
    display: block; }
  .overlay_container.is-open {
    opacity: 1; }

.overlay_bg {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }

.overlay_dialog {
  position: relative;
  z-index: 10;
  width: 100%;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
  transition: top 0.3s ease, transform 0.3s ease; }
  .is-anchored .overlay_dialog {
    top: 0;
    padding: 20px 0;
    transform: translateY(0); }

.overlay_content {
  background: #fff;
  padding: 24px 20px;
  width: 94%;
  margin: 0 auto;
  position: relative; }
  .overlay_content h1:focus {
    outline: none; }

.overlay_close-btn {
  font-family: Helvetica,Arial,sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 12px;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px 7px 7px;
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: none;
  background: #e74c3c;
  height: 30px;
  width: 30px; }
  .overlay_close-btn:hover, .overlay_close-btn:focus {
    background: #c0392b; }

.subnav-overlay .overlay_dialog {
  top: 0;
  padding: 0;
  transform: translateY(0); }
  @media (min-width: 48em) {
    .subnav-overlay .overlay_dialog {
      top: 50%;
      transform: translateY(-50%); } }

.subnav-overlay.is-anchored .overlay_dialog {
  top: 0;
  padding: 20px 0;
  transform: translateY(0); }

.subnav-overlay .overlay_title {
  font-size: 1.44rem;
  margin-bottom: 1.5em;
  margin-top: 0.80rem;
  width: calc(100% - 42px); }
  @media (min-width: 62em) {
    .subnav-overlay .overlay_title {
      font-size: 1.5625rem; } }

.subnav-overlay .overlay_bg {
  background: rgba(0, 0, 0, 0.85); }

.subnav-overlay .overlay_content {
  background-color: #ffffff;
  color: #0080a7;
  width: 100%;
  padding: 1.7rem 1rem;
  max-width: 25em; }
  @media (min-width: 48em) {
    .subnav-overlay .overlay_content {
      max-width: 450px;
      padding: 1.6rem 3.8rem; } }
  @media (min-width: 62em) {
    .subnav-overlay .overlay_content {
      max-width: 580px;
      padding: 1.6rem 2.2rem; } }

.subnav-overlay .overlay_close-btn {
  top: 1.9rem;
  background: none;
  width: auto;
  height: auto;
  padding: 0;
  right: 1rem;
  width: 42px;
  height: 45px;
  display: block;
  transition: all 0.4s ease 0s; }
  .subnav-overlay .overlay_close-btn .text {
    color: #0080a7;
    font-size: 0.8rem;
    font-family: 'NationalBook', sans-serif;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    transition: all 0.5s ease 0s; }
  .subnav-overlay .overlay_close-btn .icon {
    fill: #0080a7;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease 0s; }
  .subnav-overlay .overlay_close-btn:hover, .subnav-overlay .overlay_close-btn:focus {
    outline: none; }
    .subnav-overlay .overlay_close-btn:hover .overlay_close-btn-text, .subnav-overlay .overlay_close-btn:focus .overlay_close-btn-text {
      opacity: 0; }
    .subnav-overlay .overlay_close-btn:hover .icon, .subnav-overlay .overlay_close-btn:focus .icon {
      width: 45px;
      height: 45px; }
    .subnav-overlay .overlay_close-btn:hover .text, .subnav-overlay .overlay_close-btn:focus .text {
      opacity: 0; }
  @media (min-width: 48em) {
    .subnav-overlay .overlay_close-btn {
      right: 1.7rem; } }

.gallery-overlay .overlay_dialog {
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: none; }

.gallery-overlay.is-anchored .overlay_dialog {
  top: 0;
  padding: 0;
  transform: translateY(0); }

.gallery-overlay .overlay_bg {
  background: rgba(0, 0, 0, 0.85); }

.gallery-overlay .overlay_content {
  background-color: #ffffff;
  color: #0080a7;
  width: 90%;
  padding: 2.5rem 0 1.7rem;
  max-width: 1200px; }
  @media (min-width: 48em) {
    .gallery-overlay .overlay_content {
      padding: 2.5rem 0rem 3rem; } }

.gallery-overlay .overlay_close-btn {
  top: 1.6rem;
  background: none;
  width: auto;
  height: auto;
  padding: 0;
  right: 1rem;
  width: 42px;
  height: 45px;
  display: block;
  transition: all 0.4s ease 0s; }
  .gallery-overlay .overlay_close-btn .text {
    color: #0080a7;
    font-size: 0.8rem;
    font-family: 'NationalBook', sans-serif;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    transition: all 0.5s ease 0s; }
  .gallery-overlay .overlay_close-btn .icon {
    fill: #0080a7;
    width: 27px;
    height: 27px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease 0s; }
  .gallery-overlay .overlay_close-btn:hover, .gallery-overlay .overlay_close-btn:focus {
    outline: none; }
    .gallery-overlay .overlay_close-btn:hover .overlay_close-btn-text, .gallery-overlay .overlay_close-btn:focus .overlay_close-btn-text {
      opacity: 0; }
    .gallery-overlay .overlay_close-btn:hover .icon, .gallery-overlay .overlay_close-btn:focus .icon {
      width: 45px;
      height: 45px; }
    .gallery-overlay .overlay_close-btn:hover .text, .gallery-overlay .overlay_close-btn:focus .text {
      opacity: 0; }
  @media (min-width: 48em) {
    .gallery-overlay .overlay_close-btn {
      right: 1.7rem; } }

.page-listing {
  margin-bottom: 2rem; }

.plc--visual {
  background-color: #ffffff;
  box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
  padding-bottom: 2.22rem; }

.plc--visual .page-listing__img-area {
  display: block;
  margin-bottom: 2rem; }

.plc--visual .page-listing__img {
  display: block;
  width: 100%;
  height: auto; }

.plc--meta .page-listing__head {
  background-color: #0080a7;
  padding: 1rem 2.6rem 2.5rem 2rem;
  margin: 0;
  margin-left: -0.555rem;
  width: calc(100% - 1rem); }
  @media (min-width: 48em) {
    .plc--meta .page-listing__head {
      display: inline-block;
      width: auto;
      max-width: calc(100% - 1rem);
      margin-left: 0;
      padding-bottom: 2.2rem; } }

.plc--visual .page-listing__head {
  margin: 0 1.66rem 0.8rem; }

.page-listing__head .plc--programmes {
  display: block; }

.page-listing__count {
  color: #747778;
  margin-bottom: 1.5rem; }
  .page-listing__count .count {
    color: #333333; }
  @media (min-width: 48em) {
    .page-listing__count {
      margin-bottom: 2.2rem; } }

.page-listing__heading {
  font-size: 1.728rem; }
  @media (min-width: 48em) {
    .page-listing__heading {
      font-size: 1.94rem; } }
  .plc--meta .page-listing__heading {
    color: #ffffff; }
    .plc--meta .page-listing__heading a:link, .plc--meta .page-listing__heading a:visited {
      color: #ffffff;
      display: block; }
    .plc--meta .page-listing__heading a:hover, .plc--meta .page-listing__heading a:focus {
      color: #ffffff;
      outline: none;
      text-decoration: underline; }
  .plc--visual .page-listing__heading {
    margin: 0;
    color: #00467f; }
    .plc--visual .page-listing__heading a:link, .plc--visual .page-listing__heading a:visited {
      color: #00467f;
      display: block; }
    .plc--visual .page-listing__heading a:hover, .plc--visual .page-listing__heading a:focus {
      color: #00467f;
      outline: none;
      text-decoration: underline; }

.plc--meta .page-listing__head + .page-listing__list {
  margin-top: -1.55rem; }
  @media (min-width: 48em) {
    .plc--meta .page-listing__head + .page-listing__list {
      margin-left: 1.11rem;
      margin-top: -1.57rem; } }

.plc--visual .page-listing__img-area + .page-listing__list {
  margin-top: -0.75rem; }

.page-listing__nav {
  display: block; }

.page-listing__list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .plc--visual .page-listing__list {
    margin: 0 1.66rem; }

.plc--meta .page-listing__item {
  margin-bottom: 0.55rem; }

.listing-item__link {
  display: block;
  transition: all 0.2s ease; }
  .plc--meta .listing-item__link {
    background-color: #ffffff;
    box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
    padding: 1.1rem 1.55rem;
    padding-right: 3.2rem; }
    .plc--meta .listing-item__link:link, .plc--meta .listing-item__link:visited {
      color: #747778; }
    .plc--meta .listing-item__link:hover, .plc--meta .listing-item__link:focus {
      text-decoration: none;
      outline: none;
      color: #747778;
      box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.5); }
      .plc--meta .listing-item__link:hover .listing-item__heading, .plc--meta .listing-item__link:focus .listing-item__heading {
        text-decoration: underline; }
      .plc--meta .listing-item__link:hover .icn-chevron, .plc--meta .listing-item__link:focus .icn-chevron {
        right: 0.6rem; }
  .plc--visual .listing-item__link {
    padding: 0.6rem 0.6rem 0.6rem 0; }
    .plc--visual .listing-item__link:after {
      content: '';
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      height: 1px;
      background-color: #D5D6D6;
      transition: all 0.2s ease; }
    .plc--visual .listing-item__link:link, .plc--visual .listing-item__link:visited {
      color: #00467f; }
    .plc--visual .listing-item__link:hover, .plc--visual .listing-item__link:focus {
      color: #00467f;
      text-decoration: none;
      outline: none; }
      .plc--visual .listing-item__link:hover:after, .plc--visual .listing-item__link:focus:after {
        content: '';
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        background-color: #00467f; }
  .plc--programmes .listing-item__link {
    display: block;
    background-color: #ffffff;
    box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
    position: relative;
    padding: 2.25rem 2.5rem 0 1.44rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 5rem; }
    .plc--programmes .listing-item__link:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0.33rem;
      background-color: #00467f;
      transition: width 0.3s ease; }
    .plc--programmes .listing-item__link:active {
      background-color: #f2f2f2; }
    .plc--programmes .listing-item__link:hover, .plc--programmes .listing-item__link:focus {
      text-decoration: none;
      outline: none;
      box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.8); }
      .plc--programmes .listing-item__link:hover:before, .plc--programmes .listing-item__link:focus:before {
        width: 0.66rem; }
      .plc--programmes .listing-item__link:hover .listing-item__heading, .plc--programmes .listing-item__link:hover .level, .plc--programmes .listing-item__link:hover .duration, .plc--programmes .listing-item__link:focus .listing-item__heading, .plc--programmes .listing-item__link:focus .level, .plc--programmes .listing-item__link:focus .duration {
        left: 0.33rem; }
      .plc--programmes .listing-item__link:hover .faculty, .plc--programmes .listing-item__link:focus .faculty {
        left: 1.77rem; }
      .plc--programmes .listing-item__link:hover .icn-chevron, .plc--programmes .listing-item__link:focus .icn-chevron {
        right: 0.33rem; }
    @media (min-width: 48em) {
      .plc--programmes .listing-item__link {
        padding: 2.8rem 3rem 0 1.44rem; } }
    @media (min-width: 62em) {
      .plc--programmes .listing-item__link {
        padding: 1.05rem 3rem 0.4rem 8.88rem; }
        .plc--programmes .listing-item__link:hover .level, .plc--programmes .listing-item__link:hover .duration, .plc--programmes .listing-item__link:focus .level, .plc--programmes .listing-item__link:focus .duration {
          left: calc(64% + 0.33rem); } }

.listing-item {
  position: relative; }
  .listing-item .icn-chevron {
    fill: #00467f;
    position: absolute; }
  .plc--meta .listing-item .icn-chevron {
    right: 1rem;
    top: 50%;
    height: 1.44rem;
    width: 1.44rem;
    margin-top: -0.72rem;
    transition: right 0.2s ease; }
  .plc--visual .listing-item .icn-chevron {
    width: 0.66rem;
    height: 0.66rem;
    right: 0;
    top: 50%;
    margin-top: -0.33rem; }
  .plc--programmes .listing-item {
    margin: 0 0 10px 0;
    display: block; }
    .plc--programmes .listing-item .icn-chevron {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0.66rem;
      width: 1.2rem;
      height: 1.2rem;
      fill: #333333;
      transition: right 0.3s ease;
      z-index: 2; }
      @media (min-width: 48em) {
        .plc--programmes .listing-item .icn-chevron {
          width: 1.38rem;
          height: 1.38rem; } }

.plc--meta .listing-item__heading {
  font-size: 1.2rem;
  color: #00467f;
  margin: 0; }
  .plc--meta .listing-item__heading strong {
    font-weight: bold;
    font-family: 'NationalBook', sans-serif; }
  .plc--meta .listing-item__heading + .listing-item__desc {
    margin-top: 0.30rem; }
  .listing-item__link:link .plc--meta .listing-item__heading, .listing-item__link:visited .plc--meta .listing-item__heading {
    color: #00467f; }

.plc--programmes .listing-item__heading {
  font-size: 1.728rem;
  margin: 0 0 0.8rem 0;
  line-height: 1.1;
  color: #333333;
  display: inline-block;
  position: relative;
  transition: left 0.3s ease;
  left: 0;
  padding-right: 1rem; }
  .plc--programmes .listing-item__heading small {
    display: block;
    font-size: 1.11rem;
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
    margin-left: 1px; }
  @media (min-width: 48em) {
    .plc--programmes .listing-item__heading {
      font-size: 1.95312rem; }
      .plc--programmes .listing-item__heading small {
        margin-bottom: 1rem; } }
  @media (min-width: 62em) {
    .plc--programmes .listing-item__heading {
      width: 60%;
      display: inline-block; } }

.plc--meta .listing-item__desc {
  font-size: 1.11rem;
  margin-bottom: 0; }

.listing-item__info {
  display: block;
  padding-bottom: 1rem;
  margin: 0; }
  .listing-item__info .faculty, .listing-item__info .level, .listing-item__info .duration {
    display: inline-block; }
  .listing-item__info .faculty {
    position: absolute;
    top: 0.9rem;
    left: 1.44rem;
    font-size: 0.77rem;
    line-height: 1.2;
    font-family: 'NationalBold';
    color: #00467f;
    transition: left 0.3s ease; }
    @media (min-width: 48em) {
      .listing-item__info .faculty {
        font-size: 0.88rem;
        top: 1.4rem; } }
    @media (min-width: 62em) {
      .listing-item__info .faculty {
        width: 6rem;
        top: 1.5rem;
        text-align: left; } }
  .listing-item__info .level, .listing-item__info .duration {
    padding: 0 1rem 0 0;
    color: #747778;
    width: 7.77rem;
    left: 0;
    position: relative;
    transition: left 0.3s ease;
    vertical-align: middle; }
    @media (max-width: 29.99em) {
      .listing-item__info .level, .listing-item__info .duration {
        width: auto;
        padding: 0 0.5rem 0 0; } }
    @media (min-width: 62em) {
      .listing-item__info .level, .listing-item__info .duration {
        margin: 0;
        top: 1.5rem;
        left: 64%;
        vertical-align: top; } }
  .listing-item__info .level {
    border-right: solid 1px #d9d9d9;
    margin-right: 1rem; }
    @media (max-width: 29.99em) {
      .listing-item__info .level {
        margin-right: 0.5rem; } }
  @media (min-width: 62em) {
    .listing-item__info {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding-bottom: 0;
      display: block;
      transition: padding-left 0.3s ease; } }

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

.file-download-list__items:nth-child(odd) {
  background-color: #f2f2f2; }

.file-download-list__items:nth-child(even) {
  background-color: #ffffff; }

.filedownload {
  padding: 1rem 1.67rem 1.66rem 5.56rem;
  position: relative;
  transition: background-color .3s ease; }
  @media (max-width: 47.99em) {
    .filedownload {
      padding-left: 1.67rem; } }
  .filedownload:hover {
    background-color: #d9d9d9; }
    .filedownload:hover .arrow-down {
      animation-name: slideOutDown;
      animation-duration: 0.8s;
      animation-fill-mode: both; }

.filedownload__link {
  display: block;
  padding-left: 0; }
  .filedownload__link:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
    transition: background-color .3s ease;
    background-color: transparent; }
  .filedownload__link:link, .filedownload__link:visited {
    text-decoration: none; }
    .filedownload__title .filedownload__link:link, .filedownload__title .filedownload__link:visited {
      color: #00467f; }
    .filedownload__link:link .filedownload__desc, .filedownload__link:visited .filedownload__desc {
      color: #333333; }
    .filedownload__link:link .filedownload__doc-text, .filedownload__link:visited .filedownload__doc-text {
      color: #00467f; }
  .filedownload__link:hover, .filedownload__link:focus {
    outline: none; }
    .filedownload__link:hover:before, .filedownload__link:focus:before {
      background-color: #d9d9d9; }
    .filedownload__title .filedownload__link:hover, .filedownload__title .filedownload__link:focus {
      text-decoration: underline; }
    .filedownload__link:hover + .filedownload__desc + .filedownload__dlink .arrow-down, .filedownload__link:focus + .filedownload__desc + .filedownload__dlink .arrow-down {
      animation-name: slideOutDown;
      animation-duration: 0.8s;
      animation-fill-mode: both; }
    .filedownload__link:hover + .filedownload__dlink .arrow-down, .filedownload__link:focus + .filedownload__dlink .arrow-down {
      animation-name: slideOutDown;
      animation-duration: 0.8s;
      animation-fill-mode: both; }
  .filedownload__link + .filedownload__desc {
    margin-top: 0.3rem; }

.filedownload__dlink:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  transition: background-color .3s ease;
  background-color: transparent; }

.filedownload__dlink:link, .filedownload__dlink:visited {
  text-decoration: none; }

.filedownload__dlink:hover, .filedownload__dlink:focus {
  outline: none; }
  .filedownload__dlink:hover:before, .filedownload__dlink:focus:before {
    background-color: #d9d9d9; }
  .filedownload__dlink:hover .arrow-down, .filedownload__dlink:focus .arrow-down {
    animation-name: slideOutDown;
    animation-duration: 0.8s;
    animation-fill-mode: both; }

.filedownload__title {
  margin-bottom: 0.28rem;
  display: inline-block;
  margin: 0;
  color: #00467f; }
  .filedownload__title + .filedownload__action {
    margin-top: 0.5rem; }
  @media (min-width: 48em) {
    .filedownload__title + .filedownload__action {
      margin-top: 0.2rem; }
    .filedownload__title + .filedownload__desc {
      margin-top: 0.1rem; } }

.filedownload__desc {
  margin-bottom: 0;
  position: relative;
  z-index: 1; }
  @media (min-width: 48em) {
    .filedownload__desc + .filedownload__action {
      margin-top: 0.2rem; } }

.filedownload__doctitle {
  position: relative;
  z-index: 2;
  font-size: 1.2rem; }

.filedownload__linkarea {
  margin: 0; }

.filedownload__doc-icon {
  text-transform: uppercase;
  position: absolute;
  top: 1.3rem;
  left: 1.5rem;
  font-family: 'NationalBold', sans-serif;
  font-size: 0.9rem;
  color: #004581;
  text-align: center;
  z-index: 2;
  width: 2.78rem;
  height: 2.78rem;
  border: 2px solid #004581;
  border-radius: 50%; }
  .filedownload__doc-icon .text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    color: #00467f; }
  @media (max-width: 47.99em) {
    .filedownload__doc-icon {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0; } }

.filedownload__action {
  font-family: 'NationalBold';
  margin-top: 0.5rem; }
  @media (min-width: 48em) {
    .filedownload__action {
      margin-top: 0; } }

.action-icon-area {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  vertical-align: text-bottom;
  margin-right: 0.5rem;
  overflow: hidden;
  float: left;
  z-index: 1; }
  .action-icon-area .icon {
    fill: #00467f;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  @media (min-width: 48em) {
    .action-icon-area {
      float: none; } }

.filedownload__doc-text {
  display: block;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  color: #00467f; }
  @media (min-width: 48em) {
    .filedownload__doc-text {
      display: inline-block; } }

.filedownload__doc-size {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  text-transform: uppercase;
  color: #333333;
  background-color: rgba(51, 51, 51, 0.15);
  transition: background-color .3s ease;
  margin-bottom: 0;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1; }
  @media (min-width: 48em) {
    .filedownload__doc-size {
      margin-left: 0.5rem; } }

@keyframes slideOutDown {
  0% {
    transform: translateY(0);
    opacity: 1; }
  50% {
    transform: translateY(100%);
    opacity: 0; }
  51% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.skip-to-links__nav {
  position: relative; }

.skip-to-links__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.accessibility_label {
  display: none; }

.skip-to-links__nav__item {
  padding: 0.9rem 0;
  display: block;
  text-align: center;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: -65px;
  transition: top .3s ease-in-out; }
  .skip-to-links__nav__item span {
    opacity: 0;
    display: inline;
    font-family: NationalBold, sans-serif;
    margin: 0.7rem 0;
    padding: 0.3rem 1.5rem;
    background-color: #ffffff;
    color: #004581;
    border-radius: 1rem;
    transition: opacity .5s ease-in-out; }
  .skip-to-links__nav__item:focus {
    z-index: 100;
    top: 0;
    background-color: rgba(0, 70, 127, 0.9);
    text-decoration: none; }
    .skip-to-links__nav__item:focus span {
      opacity: 1; }

.frontpage-banner {
  position: relative; }

.frontpage-banner__img {
  overflow: hidden;
  height: 12.5rem;
  position: relative; }
  .frontpage-banner__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: 0.4;
    z-index: 1;
    height: 100%;
    width: 100%; }
  @media (min-width: 48em) {
    .frontpage-banner__img {
      height: 16.66668rem; } }
  @media (min-width: 62em) {
    .frontpage-banner__img {
      height: 26.66669rem; } }
  .frontpage-banner__img img {
    display: block;
    height: 100%;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: auto; }
    @media (min-width: 48em) {
      .frontpage-banner__img img {
        width: 146%;
        height: auto; } }
    @media (min-width: 62em) {
      .frontpage-banner__img img {
        width: auto;
        height: 100%; } }
    @media (min-width: 100em) {
      .frontpage-banner__img img {
        width: 100%;
        height: auto; } }

.frontpage-banner__content {
  font-family: 'NationalBold', sans-serif;
  width: 100%;
  text-align: center;
  z-index: 2;
  position: relative;
  margin-top: -12.5rem; }
  @media (min-width: 48em) {
    .frontpage-banner__content {
      margin-top: -16.66668rem; } }
  @media (min-width: 62em) {
    .frontpage-banner__content {
      margin-top: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); } }

.frontpage-banner__content__title-wrapper {
  display: table;
  width: 100%; }

.frontpage-banner__content__title {
  display: table-cell;
  height: 12.5rem;
  padding-bottom: 2.2rem;
  padding-top: 1.2rem;
  position: relative;
  vertical-align: middle; }
  @media (min-width: 48em) {
    .frontpage-banner__content__title {
      height: 16.66668rem; } }
  @media (min-width: 62em) {
    .frontpage-banner__content__title {
      height: auto;
      padding: 0;
      display: block; } }
  .frontpage-banner__content__title h1 {
    color: #fff;
    font-size: 2.22rem;
    width: 100%; }
    @media (min-width: 62em) {
      .frontpage-banner__content__title h1 {
        font-size: 2.7778rem;
        position: relative; } }

.frontpage-banner__content__text {
  margin: 0 1.11115rem 0 1.11115rem;
  padding: 2.2223rem 1.6667rem;
  background-color: #f2f2f2;
  margin-top: -2.22rem; }
  @media (min-width: 62em) {
    .frontpage-banner__content__text {
      padding: 0;
      margin: 0;
      color: #fff;
      background-color: transparent; } }
  .frontpage-banner__content__text p {
    margin: 0;
    font-size: 1.334rem;
    line-height: 1.2; }
    @media (min-width: 62em) {
      .frontpage-banner__content__text p {
        margin-top: 1.5rem; } }

.banner {
  width: 100%;
  position: relative;
  height: 13.3rem; }
  @media (min-width: 48em) {
    .banner {
      height: 19.4rem; } }

.banner__image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000;
  position: absolute;
  height: 100%; }

.banner__img {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  z-index: 1;
  opacity: 0.5;
  height: 100%;
  width: auto;
  transform: translateX(-58%); }
  @media (min-width: 48em) {
    .banner__img {
      transform: translateX(-50%); } }
  @media (min-width: 75em) {
    .banner__img {
      width: 100%;
      height: auto; } }

@supports (object-fit: cover) {
  .banner__img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transform: translateX(-50%); } }

.banner__content {
  display: block;
  text-align: center;
  max-width: 34rem;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 1.5rem; }
  @media (min-width: 48em) {
    .banner__content {
      max-width: 44rem;
      text-align: left;
      padding-left: 0.555rem;
      padding-right: 0.555rem; } }
  @media (min-width: 62em) {
    .banner__content {
      max-width: 52rem; } }
  @media (min-width: 75em) {
    .banner__content {
      max-width: 64rem; } }

.banner__heading {
  font-size: 2.0736rem;
  margin-bottom: 1rem; }
  @media (min-width: 48em) {
    .banner__heading {
      font-size: 2.48832rem;
      margin-bottom: 2rem;
      width: 50%; } }
  @media (min-width: 62em) {
    .banner__heading {
      font-size: 2.44141rem;
      width: 40%; } }

.banner__text {
  font-size: 1.11rem;
  margin-bottom: 1rem;
  line-height: 1.2; }
  @media (min-width: 48em) {
    .banner__text {
      font-size: 1.25rem;
      line-height: 1.4;
      margin-bottom: 1.1rem;
      width: 50%; } }
  @media (min-width: 62em) {
    .banner__text {
      width: 40%; } }

.banner--detail {
  height: auto; }
  .banner--detail .banner__image {
    position: relative;
    height: 13.3rem; }
    @media (min-width: 48em) {
      .banner--detail .banner__image {
        height: 19.4rem; } }
  .banner--detail .banner__img {
    opacity: 1;
    transform: translateX(-50%); }
    @media (min-width: 75em) {
      .banner--detail .banner__img {
        width: 120%;
        height: auto; } }
    @media (min-width: 100em) {
      .banner--detail .banner__img {
        width: 100%; } }
  @supports (object-fit: cover) {
    .banner--detail .banner__img {
      object-fit: cover;
      height: 100%;
      width: 100%;
      transform: translateX(-50%); } }
  .banner--detail .banner__content {
    transform: none;
    top: auto;
    box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
    background-color: #ffffff;
    border-top: solid 6px #00467f;
    color: inherit;
    width: calc(100% - 2.11rem);
    margin: -5.4rem auto 2rem;
    padding: 1rem 1.5rem 0.8rem 1.5rem; }
    @media (min-width: 48em) {
      .banner--detail .banner__content {
        text-align: center;
        padding-left: 3.5rem;
        padding-right: 3.5rem;
        max-width: 54.4rem;
        margin-top: -7.77rem; } }
    @media (min-width: 62em) {
      .banner--detail .banner__content {
        padding-left: 6.1rem;
        padding-right: 6.1rem; } }
  .banner--detail .banner__heading {
    color: #333333; }
    .banner--detail .banner__heading small {
      display: block;
      font-size: 1.44rem; }
    @media (min-width: 48em) {
      .banner--detail .banner__heading {
        width: auto;
        margin-bottom: 0.8rem; }
        .banner--detail .banner__heading small {
          font-size: 1.5625rem; } }
  .banner--detail .banner__text {
    margin-bottom: 1.7rem;
    font-size: 1.11rem; }
    @media (min-width: 48em) {
      .banner--detail .banner__text {
        width: auto; } }
  .banner--detail .banner__faculty {
    font-family: 'NationalBold', sans-serif;
    color: #00467f; }

/* --- RESPONSIVE VIDEO EMBED --- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  height: 0;
  margin-bottom: 2rem;
  overflow: hidden; }
  .video-embed iframe, .video-embed object, .video-embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100; }

.feature-video {
  width: 100%;
  display: block;
  margin-bottom: 2rem;
  overflow: hidden; }

.feature-video__video-area {
  position: relative; }
  @media (min-width: 48em) {
    .feature-video__video-area {
      width: 57%;
      float: left; } }

.feature-video__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  z-index: 4;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0; }
  .feature-video__button.fade-in {
    opacity: 1;
    visibility: visible; }
  .feature-video__button:hover, .feature-video__button:focus {
    outline: none;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5); }
    .feature-video__button:hover .feature-video__icon, .feature-video__button:focus .feature-video__icon {
      background: white;
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5); }
    .feature-video__button:hover .feature-video__icon .icon, .feature-video__button:focus .feature-video__icon .icon {
      fill: #00467f; }

.feature-video__icon {
  background: rgba(51, 51, 51, 0.5);
  border: solid 3px #ffffff;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  vertical-align: middle;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  background-clip: padding-box;
  box-shadow: 0 0 4px 0 transparent; }
  .feature-video__icon .icon {
    fill: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    margin: -16px 0 0 -12px;
    transition: fill 0.2s ease; }
  @media (min-width: 62em) {
    .feature-video__icon {
      width: 100px;
      height: 100px; }
      .feature-video__icon .icon {
        fill: #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 42px;
        height: 42px;
        margin: -21px 0 0 -16px;
        transition: fill 0.2s ease; } }

.feature-video__img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 3;
  transition: opacity 0.5s ease, z-index 0.3s ease 1.5s; }
  .feature-video__img.is-hidden {
    z-index: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0; }
  .feature-video__img.is-showing {
    transition: opacity 0.5s ease 0.7s, z-index 0.1s ease 0.5s;
    position: absolute;
    top: 0;
    left: 0; }

.feature-video__video {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  margin: 0;
  transition: opacity 0.3s ease;
  visibility: hidden; }
  .feature-video__video.is-visible {
    padding-bottom: 56.25%;
    visibility: visible; }

.feature-video__text {
  padding-top: 1rem;
  color: #747778; }
  .feature-video__text h2 {
    font-size: 1.728rem;
    font-family: 'NationalBook', sans-serif;
    font-weight: normal;
    color: #00467f;
    width: 100%;
    border-bottom: groove 1px rgba(116, 119, 120, 0.5);
    padding-bottom: 0.95rem;
    margin-bottom: 0.4rem;
    line-height: 1; }
    @media (min-width: 48em) {
      .feature-video__text h2 {
        width: calc(100% + 1.11rem);
        margin-left: -1.11rem;
        padding-left: 1.11rem; } }
    @media (min-width: 62em) {
      .feature-video__text h2 {
        width: calc(100% + 3.44rem);
        margin-left: -3.44rem;
        padding-left: 3.44rem;
        padding-bottom: 1.6rem;
        margin-bottom: 1rem; } }
  .feature-video__text a:link, .feature-video__text a:visited {
    color: #00467f; }
  .feature-video__text a:hover, .feature-video__text a:focus {
    outline: none; }
  .feature-video__text p {
    font-size: 1.2rem; }
  @media (min-width: 48em) {
    .feature-video__text {
      width: 43%;
      float: left;
      padding-top: 0;
      padding-left: 1.11rem;
      padding-right: 1.11rem; } }
  @media (min-width: 62em) {
    .feature-video__text {
      padding-right: 1.11rem;
      padding-left: 3.44rem; } }

.feature-video__more-link {
  transition: right 0.2s ease;
  position: relative;
  display: inline-block; }
  .feature-video__more-link .icon {
    width: 12px;
    height: 12px;
    fill: #00467f;
    position: relative;
    right: 0;
    margin-left: 0.5rem;
    transition: right 0.2s ease; }
  .feature-video__more-link:hover, .feature-video__more-link:focus {
    outline: none; }
    .feature-video__more-link:hover .icon, .feature-video__more-link:focus .icon {
      right: -0.5rem; }

.related-links {
  background-color: #0080a7;
  padding: 1.4rem 1.66rem;
  margin-bottom: 2rem; }

.related-links__head {
  position: relative;
  display: block;
  padding-bottom: 0.35rem;
  margin-bottom: 0.7rem; }
  .related-links__head:after {
    content: "";
    width: 2.2rem;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 0; }

.related-links__heading {
  font-size: 1.44rem;
  color: #ffffff;
  font-family: 'NationalBook';
  font-weight: normal; }

.related-links__list {
  margin: 0;
  list-style: none;
  padding: 0; }
  @media (min-width: 48em) {
    .related-links__list {
      /* autoprefixer: off */
      -webkit-columns: 2 150px;
      -moz-columns: 2 150px;
      columns: 2 150px;
      -webkit-column-gap: 4.11rem;
      -moz-column-gap: 4.11rem;
      column-gap: 4.11rem;
      /* autoprefixer: on */ } }
  @media (min-width: 62em) {
    .related-links__list {
      /* autoprefixer: off */
      -webkit-columns: auto auto;
      -moz-columns: auto auto;
      columns: auto auto;
      -webkit-column-gap: 4.11rem;
      -moz-column-gap: 4.11rem;
      column-gap: 4.11rem;
      /* autoprefixer: on */ } }

.related-links .listing-item__link {
  color: #ffffff;
  display: inline-block;
  width: 100%;
  position: relative;
  line-height: 1.1;
  padding: 0.35rem 1.33rem 0.35rem 0; }
  .related-links .listing-item__link:link, .related-links .listing-item__link:visited {
    color: #ffffff; }
    .related-links .listing-item__link:link .icon, .related-links .listing-item__link:visited .icon {
      fill: #ffffff;
      height: 0.66rem;
      position: absolute;
      right: 0.4rem;
      top: 0.72rem;
      transition: right 0.2s ease 0s;
      width: 0.66rem; }
  .related-links .listing-item__link:hover, .related-links .listing-item__link:focus {
    color: #ffffff;
    outline: none; }
    .related-links .listing-item__link:hover .icon, .related-links .listing-item__link:focus .icon {
      right: 0rem; }

.related-links--study-options {
  background-color: transparent;
  padding: 0; }
  .related-links--study-options .related-links__head {
    position: relative;
    display: block;
    padding-bottom: 0;
    margin-bottom: 0; }
    .related-links--study-options .related-links__head:after {
      display: none; }
  .related-links--study-options .related-links__heading {
    font-size: 1.25rem;
    color: inherit;
    font-family: 'NationalBold', sans-serif; }
  .related-links--study-options .related-links__list {
    margin: 0;
    list-style: none;
    padding: 0 0 0.5rem 0;
    /* autoprefixer: off */
    -webkit-columns: auto auto;
    -moz-columns: auto auto;
    columns: auto auto;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    /* autoprefixer: on */ }
  .related-links--study-options .related-links__item {
    position: relative;
    padding-left: 1em;
    list-style: none;
    padding-bottom: 0.4rem; }
    .related-links--study-options .related-links__item:before {
      position: absolute;
      left: 0.1rem;
      width: 0.33rem;
      top: 0.62rem;
      content: "";
      background-color: #00467f;
      display: inline;
      background-color: none;
      height: 0.33rem; }
  .related-links--study-options .listing-item__link {
    color: #005499;
    line-height: 1.5;
    padding: 0 1.33rem 0 0; }
    .related-links--study-options .listing-item__link:link, .related-links--study-options .listing-item__link:visited {
      color: #005499; }
      .related-links--study-options .listing-item__link:link .icon, .related-links--study-options .listing-item__link:visited .icon {
        fill: #005499; }
    .related-links--study-options .listing-item__link:hover, .related-links--study-options .listing-item__link:focus {
      color: #005499; }
  .related-links--study-options .related-links__more {
    color: #005499;
    position: relative;
    text-decoration: none;
    text-shadow: 1px 0px 0 #f2f2f2, -1px 0px 0 #f2f2f2, 2px 0 0 #f2f2f2, -2px 0 0 #f2f2f2;
    background-image: linear-gradient(transparent 50%, #005499 50%);
    background-repeat: repeat-x;
    background-position: 0 92%;
    background-size: 1px 2px;
    outline: none;
    font-family: 'NationalBold', sans-serif; }
    .related-links--study-options .related-links__more:hover {
      text-decoration: none;
      text-shadow: 1px 0 0 #f2f2f2, -1px 0 0 #f2f2f2, 2px 0 0 #f2f2f2, -2px 0 0 #f2f2f2;
      background-size: 1px 4px; }
    .related-links--study-options .related-links__more:focus {
      background-color: rgba(0, 70, 127, 0.15);
      text-shadow: none; }

.slider {
  width: 100%;
  position: relative; }

.slider__slides {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0; }

.slider__items {
  display: inline-block;
  font-size: initial;
  width: 100%;
  padding: 0 1rem; }
  .slider__items:focus {
    outline: none; }
  @media (min-width: 48em) {
    .slider__items {
      opacity: 0.7;
      max-width: 80%;
      padding: 0 0.58rem; }
      .slider__items.is-selected {
        opacity: 1; } }
  @media (min-width: 62em) {
    .slider__items {
      max-width: 60%; } }

.slider__inner {
  position: relative; }

.slider__controls {
  pointer-events: none;
  padding-bottom: 75%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }
  @media (min-width: 48em) {
    .slider__controls {
      padding-bottom: 46.5%; } }
  @media (min-width: 62em) {
    .slider__controls {
      padding-bottom: 35%; } }

.slider__status {
  font-family: 'NationalBookItalic';
  text-align: center;
  color: #747778;
  margin-bottom: 1.5rem; }
  @media (min-width: 48em) {
    .slider__status {
      margin-bottom: 1.3rem; } }

.slider__control {
  pointer-events: auto;
  background-color: #ffffff;
  width: 42px;
  height: 70px;
  position: absolute;
  top: calc(50% - 35px);
  left: 0;
  border: none;
  padding: 0;
  box-shadow: 0px 1px 4px 0px rgba(35, 31, 32, 0.25);
  vertical-align: top;
  transition: all 0.2s ease;
  border-bottom: solid 3px #fff; }
  .slider__control:disabled {
    opacity: 0; }
  .slider__control .icon {
    fill: #00467f;
    height: 32px;
    width: 32px;
    vertical-align: top;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -16px;
    transition: fill 0.2s ease; }
  .slider__control.prev .icon {
    transform: rotate(180deg); }
  .slider__control.next {
    left: auto;
    right: 0; }
  .slider__control.prev:not(:disabled):focus {
    background-color: #ffffff;
    outline: 0;
    border-bottom: solid 3px #00467f;
    box-shadow: 0px 0 6px 0px #00467f; }
  .slider__control.next:not(:disabled):focus {
    background-color: #ffffff;
    outline: 0;
    box-shadow: 0px 0 6px 0px #00467f;
    border-bottom: solid 3px #00467f; }
  .slider__control.prev:not(:disabled):hover {
    left: -0.35rem;
    background-color: #00467f;
    border-bottom: solid 3px #00467f;
    outline: 0; }
    .slider__control.prev:not(:disabled):hover .icon {
      fill: #ffffff; }
  .slider__control.next:not(:disabled):hover {
    right: -0.35rem;
    background-color: #00467f;
    border-bottom: solid 3px #00467f;
    outline: 0; }
    .slider__control.next:not(:disabled):hover .icon {
      fill: #ffffff; }
  @media (min-width: 48em) {
    .slider__control {
      width: 50px;
      height: 70px; } }

.slider__text {
  width: 80%;
  margin: 0 auto;
  padding: 1rem 0;
  display: block;
  text-align: center; }
  .slider__text p {
    font-size: 0.77rem;
    color: #333333; }

.slider__img {
  margin: 0;
  vertical-align: middle;
  position: relative;
  padding-bottom: 75%;
  width: 100%;
  display: inline-block;
  overflow: hidden; }

.slider__items .landscape, .slider__items .portrait, .slider__items .square {
  display: block;
  height: auto;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%; }

.slider__items .portrait, .slider__items .square {
  height: 100%;
  width: auto; }

.gallery-preview {
  margin: 0 0 2rem;
  overflow: hidden; }

.gallery-preview__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  font-size: 0;
  vertical-align: top;
  font-size: 0;
  display: block;
  width: calc(100% + 6px); }
  @media (min-width: 48em) {
    .gallery-preview__list {
      width: calc(100% + 11px); } }

.gallery-preview__item {
  display: inline-block;
  width: 33.3%;
  font-size: 100%;
  padding-bottom: 33.3%;
  overflow: hidden;
  height: 0;
  float: left;
  font-size: 100%;
  vertical-align: top;
  position: relative; }
  .gallery-preview__item:nth-child(4) {
    width: 66.6%;
    padding-bottom: 66.6%; }

.gallery-preview__hover-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  top: 50%;
  text-align: center;
  transform: translateY(-50%) scale(0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.2s ease; }

.gallery-preview__image-area {
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden; }
  @media (min-width: 48em) {
    .gallery-preview__image-area {
      width: calc(100% - 10px);
      height: calc(100% - 10px); } }

.gallery-preview__image {
  transition: all 0.2s ease; }
  .gallery-preview__image.landscape {
    height: 100%;
    width: auto; }
  .gallery-preview__image.portrait {
    width: 100%;
    height: auto; }
  .gallery-preview__image.square {
    width: 100%;
    height: 100%; }

@supports (object-fit: cover) {
  .gallery-preview__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; } }

.gallery-preview__icon {
  width: 55px;
  height: 55px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  display: none;
  position: relative; }
  @media (min-width: 48em) {
    .gallery-preview__icon {
      display: inline-block; } }
  .gallery-preview__icon .icon {
    fill: #ffffff;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    margin-top: -11px; }

.gallery-preview__text {
  display: block;
  font-family: 'NationalBookItalic'; }

.gallery-preview__link {
  display: block; }
  .gallery-preview__link:link, .gallery-preview__link:visited {
    color: #ffffff; }
  .gallery-preview__link:after {
    content: '';
    background-color: rgba(51, 51, 51, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    z-index: 1;
    display: block;
    opacity: 0;
    transition: all 0.2s ease; }
    @media (min-width: 48em) {
      .gallery-preview__link:after {
        width: calc(100% - 10px);
        height: calc(100% - 10px); } }
  .gallery-preview__link:hover:after, .gallery-preview__link:focus:after {
    opacity: 1; }
  .gallery-preview__link:hover .gallery-preview__hover-text, .gallery-preview__link:focus .gallery-preview__hover-text {
    opacity: 1;
    transform: translateY(-50%) scale(1); }
  .gallery-preview__link:hover .gallery-preview__image, .gallery-preview__link:focus .gallery-preview__image {
    transform: scale(1.1); }
  .gallery-preview__link:hover .gallery-preview__hover-text-alt .icon, .gallery-preview__link:focus .gallery-preview__hover-text-alt .icon {
    transform: rotate(180deg); }

@media (min-width: 48em) {
  .gallery-preview__link--last .gallery-preview__hover-text {
    display: none; }
  .gallery-preview__link--last:after {
    background-color: rgba(0, 127, 169, 0.9);
    opacity: 1; }
  .gallery-preview__link--last:hover:after, .gallery-preview__link--last:focus:after {
    background-color: #007fa9; }
  .gallery-preview__link--last:hover .gallery-preview__hover-text-alt, .gallery-preview__link--last:focus .gallery-preview__hover-text-alt {
    text-decoration: underline; } }

.gallery-preview__hover-text-alt {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1.6rem 2rem 2rem 1.6rem;
  font-size: 1.44rem;
  line-height: 1.1; }
  .gallery-preview__hover-text-alt .icon {
    fill: #ffffff;
    width: 14px;
    height: 14px;
    transition: transform 0.5s ease 0s; }
  .gallery-preview__hover-text-alt .number-of {
    display: block;
    font-size: 1.44rem; }
  @media (min-width: 48em) {
    .gallery-preview__hover-text-alt {
      display: block; } }

.gallery-preview__item--cta {
  width: calc(100% - 5px);
  height: auto;
  padding-bottom: 0;
  background-color: #007fa9;
  display: block;
  font-size: 1rem;
  text-align: center; }
  .gallery-preview__item--cta .gallery-preview__link {
    padding: 0.6rem;
    line-height: 1; }
    .gallery-preview__item--cta .gallery-preview__link:after {
      display: none; }
    .gallery-preview__item--cta .gallery-preview__link:hover, .gallery-preview__item--cta .gallery-preview__link:focus {
      outline: none; }
      .gallery-preview__item--cta .gallery-preview__link:hover .icon, .gallery-preview__item--cta .gallery-preview__link:focus .icon {
        transform: rotate(180deg); }
  .gallery-preview__item--cta .icon {
    width: 14px;
    height: 14px;
    margin-left: 0.5rem;
    fill: #ffffff;
    position: relative;
    transition: transform 0.5s ease 0s; }
  @media (min-width: 48em) {
    .gallery-preview__item--cta {
      display: none; } }

.search-box {
  margin-bottom: 2rem;
  position: relative; }

.search-box__input {
  height: 3.5rem;
  font-size: 1.125rem;
  border: 1px solid #d9d9d9;
  color: #00467f;
  width: 100%;
  padding: 0 3.5rem 0 0;
  text-indent: 1.11rem;
  -webkit-appearance: searchfield;
  transition: all 0.3s ease; }
  .search-box__input:focus {
    box-shadow: 0 0 5px #bec3c4;
    border: 1px solid #0080a7; }

.search-box__submit {
  height: 3.5rem;
  background-color: #0080a7;
  border: 2px solid #0080a7;
  padding: 0;
  color: #ffffff;
  width: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s ease; }
  .search-box__submit .icn-search {
    vertical-align: middle;
    width: 1.3rem;
    height: 1.3rem;
    fill: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: fill 0.3s ease; }
  .search-box__submit:hover, .search-box__submit:focus {
    box-shadow: 0 0 5px #bec3c4;
    outline: none;
    background-color: #ffffff; }
    .search-box__submit:hover .icn-search, .search-box__submit:focus .icn-search {
      fill: #0080a7; }

.uoa-form fieldset legend.uoa-form__label-title {
  font-size: 1rem;
  font-family: 'NationalBook', sans-serif; }

.uoa-form fieldset legend {
  font-size: 1.2rem;
  font-family: 'NationalBold', sans-serif; }
  @media (min-width: 75em) {
    .uoa-form fieldset legend {
      font-size: 1.5625rem; } }

.uoa-form .section.text {
  margin-bottom: 1rem; }

.uoa-form .responsiveGrid {
  background: #ffffff !important; }

.uoa-form .uoa-section {
  padding-top: 0;
  padding-bottom: 0; }
  .uoa-form .uoa-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0; }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .uoa-form .uoa-section {
      padding-top: 0em;
      padding-bottom: 0em; } }
  @media (max-width: 47.99em) {
    .uoa-form .uoa-section {
      padding-top: 0em;
      padding-bottom: 0em; } }

.uoa-form .uoa-text-add-wrapper {
  padding-right: 2.5rem;
  position: relative; }
  .uoa-form .uoa-text-add-wrapper .cta--rem-btn {
    background: transparent;
    border: solid 2px #00467f;
    padding: 0.65rem 0.67rem 0.975rem 0.65rem;
    color: #00467f;
    position: absolute;
    top: 0.2rem;
    right: 0;
    margin-bottom: 0;
    font-size: 1.778rem;
    line-height: 0.3rem; }
  .uoa-form .uoa-text-add-wrapper .cta--rem-btn:hover {
    background-color: #00467f;
    color: #ffffff;
    border: solid 2px #00467f; }

.uoa-form .cta--add-btn {
  padding-right: 1.2rem;
  padding-left: 1.2rem; }

.uoa-form legend.uoa-form__label {
  font-size: 1.5625rem;
  font-family: 'NationalBold', sans-serif; }

.uoa-form .uoa-form__label,
.uoa-form label {
  color: #404040;
  display: block;
  margin-bottom: 0.25rem;
  font-size: inherit;
  font-family: inherit; }

.uoa-form .uoa-form__fieldset-hint {
  color: #747778;
  font-family: NationalBookItalic, sans-serif; }

@media (min-width: 62em) {
  .uoa-form .col-lg-2 .uoa-form__elt .uoa-form__radios.uoa-form__radios-inline label,
  .uoa-form .col-lg-3 .uoa-form__elt .uoa-form__radios.uoa-form__radios-inline label {
    width: calc(50% - .555rem);
    margin-right: 0.555rem; } }

.uoa-form .uoa-form__submit-hint {
  color: #747778;
  font-family: NationalBookItalic, sans-serif; }

.uoa-form .uoa-form__elt {
  width: 100%;
  margin-bottom: 1rem; }
  .uoa-form .uoa-form__elt .uoa-form__label,
  .uoa-form .uoa-form__elt label {
    color: #404040;
    display: block;
    margin-bottom: 0.25rem;
    font-size: inherit;
    font-family: inherit; }
  .uoa-form .uoa-form__elt input[type=email],
  .uoa-form .uoa-form__elt input[type=number],
  .uoa-form .uoa-form__elt input[type=tel],
  .uoa-form .uoa-form__elt input[type=text],
  .uoa-form .uoa-form__elt select,
  .uoa-form .uoa-form__elt textarea {
    display: block;
    transition: 0.2s border;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #bec3c4;
    outline: none;
    padding: 0.5rem;
    color: #000000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #ffffff; }
    .uoa-form .uoa-form__elt input[type=email]::-ms-clear, .uoa-form .uoa-form__elt input[type=email]::-ms-expand,
    .uoa-form .uoa-form__elt input[type=number]::-ms-clear,
    .uoa-form .uoa-form__elt input[type=number]::-ms-expand,
    .uoa-form .uoa-form__elt input[type=tel]::-ms-clear,
    .uoa-form .uoa-form__elt input[type=tel]::-ms-expand,
    .uoa-form .uoa-form__elt input[type=text]::-ms-clear,
    .uoa-form .uoa-form__elt input[type=text]::-ms-expand,
    .uoa-form .uoa-form__elt select::-ms-clear,
    .uoa-form .uoa-form__elt select::-ms-expand,
    .uoa-form .uoa-form__elt textarea::-ms-clear,
    .uoa-form .uoa-form__elt textarea::-ms-expand {
      display: none; }
    .uoa-form .uoa-form__elt input[type=email]:focus,
    .uoa-form .uoa-form__elt input[type=number]:focus,
    .uoa-form .uoa-form__elt input[type=tel]:focus,
    .uoa-form .uoa-form__elt input[type=text]:focus,
    .uoa-form .uoa-form__elt select:focus,
    .uoa-form .uoa-form__elt textarea:focus {
      border-color: #0080a7; }
      .uoa-form .uoa-form__elt input[type=email]:focus::-webkit-input-placeholder,
      .uoa-form .uoa-form__elt input[type=number]:focus::-webkit-input-placeholder,
      .uoa-form .uoa-form__elt input[type=tel]:focus::-webkit-input-placeholder,
      .uoa-form .uoa-form__elt input[type=text]:focus::-webkit-input-placeholder,
      .uoa-form .uoa-form__elt select:focus::-webkit-input-placeholder,
      .uoa-form .uoa-form__elt textarea:focus::-webkit-input-placeholder {
        color: #bec3c4;
        opacity: 1; }
      .uoa-form .uoa-form__elt input[type=email]:focus:-moz-placeholder,
      .uoa-form .uoa-form__elt input[type=number]:focus:-moz-placeholder,
      .uoa-form .uoa-form__elt input[type=tel]:focus:-moz-placeholder,
      .uoa-form .uoa-form__elt input[type=text]:focus:-moz-placeholder,
      .uoa-form .uoa-form__elt select:focus:-moz-placeholder,
      .uoa-form .uoa-form__elt textarea:focus:-moz-placeholder {
        color: #bec3c4;
        opacity: 1; }
      .uoa-form .uoa-form__elt input[type=email]:focus::-moz-placeholder,
      .uoa-form .uoa-form__elt input[type=number]:focus::-moz-placeholder,
      .uoa-form .uoa-form__elt input[type=tel]:focus::-moz-placeholder,
      .uoa-form .uoa-form__elt input[type=text]:focus::-moz-placeholder,
      .uoa-form .uoa-form__elt select:focus::-moz-placeholder,
      .uoa-form .uoa-form__elt textarea:focus::-moz-placeholder {
        color: #bec3c4;
        opacity: 1; }
      .uoa-form .uoa-form__elt input[type=email]:focus:-ms-input-placeholder,
      .uoa-form .uoa-form__elt input[type=number]:focus:-ms-input-placeholder,
      .uoa-form .uoa-form__elt input[type=tel]:focus:-ms-input-placeholder,
      .uoa-form .uoa-form__elt input[type=text]:focus:-ms-input-placeholder,
      .uoa-form .uoa-form__elt select:focus:-ms-input-placeholder,
      .uoa-form .uoa-form__elt textarea:focus:-ms-input-placeholder {
        color: #bec3c4;
        opacity: 1; }
    .uoa-form .uoa-form__elt input[type=email]::-webkit-inner-spin-button, .uoa-form .uoa-form__elt input[type=email]::-webkit-outer-spin-button,
    .uoa-form .uoa-form__elt input[type=number]::-webkit-inner-spin-button,
    .uoa-form .uoa-form__elt input[type=number]::-webkit-outer-spin-button,
    .uoa-form .uoa-form__elt input[type=tel]::-webkit-inner-spin-button,
    .uoa-form .uoa-form__elt input[type=tel]::-webkit-outer-spin-button,
    .uoa-form .uoa-form__elt input[type=text]::-webkit-inner-spin-button,
    .uoa-form .uoa-form__elt input[type=text]::-webkit-outer-spin-button,
    .uoa-form .uoa-form__elt select::-webkit-inner-spin-button,
    .uoa-form .uoa-form__elt select::-webkit-outer-spin-button,
    .uoa-form .uoa-form__elt textarea::-webkit-inner-spin-button,
    .uoa-form .uoa-form__elt textarea::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0; }
  .uoa-form .uoa-form__elt input[type=number] {
    -moz-appearance: textfield; }
  .uoa-form .uoa-form__elt select {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20d%3D%22M20%204.1v2.3l-10%209.5L0%206.4V4.1l10%209.2%2010-9.2z%22%2F%3E%3C%2Fsvg%3E");
    background-size: 0.85rem 0.85rem;
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem);
    padding-right: 2.5rem;
    /*
			&:focus {
		    background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20d%3D%22M0%2015.9v-2.3l10-9.5%2010%209.5v2.3L10%206.7%200%2015.9z%22%2F%3E%3C%2Fsvg%3E');
			}	    
*/ }
  .uoa-form .uoa-form__elt .uoa-form__select-container {
    position: relative; }
    .uoa-form .uoa-form__elt .uoa-form__select-container.flag-applied select {
      padding-left: 2.5rem; }
  .uoa-form .uoa-form__elt span.uoa-form__country-flag {
    position: absolute;
    left: .5rem;
    top: .9rem;
    width: 1.4rem;
    height: .95rem; }
  .uoa-form .uoa-form__elt ::-webkit-input-placeholder {
    color: #747778;
    font-family: NationalBook, sans-serif;
    font-style: normal;
    opacity: 1;
    transition: color .2s; }
  .uoa-form .uoa-form__elt :-moz-placeholder {
    color: #747778;
    font-family: NationalBook, sans-serif;
    font-style: normal;
    opacity: 1;
    transition: color .2s; }
  .uoa-form .uoa-form__elt ::-moz-placeholder {
    color: #747778;
    font-family: NationalBook, sans-serif;
    font-style: normal;
    opacity: 1;
    transition: color .2s; }
  .uoa-form .uoa-form__elt :-ms-input-placeholder {
    color: #747778;
    font-family: NationalBook, sans-serif;
    font-style: normal;
    opacity: 1;
    transition: color .2s; }
  .uoa-form .uoa-form__elt.uoa-form__date input {
    display: inline-block;
    border: none;
    padding: 0 0.2rem 0 0.5rem; }
  .uoa-form .uoa-form__elt.uoa-form__date .uoa-form__date-container {
    border: 1px solid #bec3c4;
    position: relative;
    padding: .5rem 0; }
    .uoa-form .uoa-form__elt.uoa-form__date .uoa-form__date-container .uoa-form__date-day,
    .uoa-form .uoa-form__elt.uoa-form__date .uoa-form__date-container .uoa-form__date-month {
      width: 25%;
      border-right: 1px solid #bec3c4; }
    .uoa-form .uoa-form__elt.uoa-form__date .uoa-form__date-container .uoa-form__date-year {
      width: 50%; }
  .uoa-form .uoa-form__elt.uoa-form__date .icon-calendar {
    fill: #0080a7;
    position: absolute;
    top: .6rem;
    right: .5rem;
    width: 1.25rem;
    height: 1.25rem; }
  .uoa-form .uoa-form__elt.uoa-form__text input {
    display: block; }
  .uoa-form .uoa-form__elt.uoa-form__radio label:before {
    content: '';
    border: 1px solid #bec3c4;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: .15rem; }
  .uoa-form .uoa-form__elt.uoa-form__radio label:after {
    content: '';
    position: absolute;
    width: .9rem;
    height: .9rem;
    top: .4rem;
    left: .25rem;
    background: none;
    border-radius: 50%;
    transition: .2s all; }
  .uoa-form .uoa-form__elt.uoa-form__radio label.on:after {
    background: #0080a7; }
  .uoa-form .uoa-form__elt.uoa-form__checkbox label {
    min-height: 1.75rem; }
    .uoa-form .uoa-form__elt.uoa-form__checkbox label:before {
      content: '';
      border: 1px solid #bec3c4;
      width: 1.5rem;
      height: 1.5rem;
      transition: .2s border;
      position: absolute;
      left: 0;
      top: .05rem;
      background: transparent 50% 50%;
      transition: all .2s; }
    .uoa-form .uoa-form__elt.uoa-form__checkbox label.on:before {
      border-color: #0080a7;
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill=%22%23007299%22%20d%3D%22M19.8%205.4L8%2017.3c-.3.3-.7.3-1%200l-.3-.3-.2-.2-1.1-1.2-5.1-5.2c-.3-.3-.3-.7%200-1l1.6-1.6c.3-.2.7-.2%201%200l4.6%204.6%209.7-9.6c.3-.3.7-.3%201%200l1.6%201.6c.3.3.3.7%200%201z%22%2F%3E%3C%2Fsvg%3E");
      background-size: 1rem 1rem;
      background-repeat: no-repeat;
      background-position: 50% 50%; }
  @media (min-width: 48em) {
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes,
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__radios, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes,
    .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__radios {
      display: flex;
      flex-wrap: wrap; } }
  .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes label,
  .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__radios label, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes label,
  .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__radios label {
    color: #747778;
    padding-left: 2rem;
    position: relative;
    display: block;
    width: 100%; }
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes label:only-child,
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__radios label:only-child, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes label:only-child,
    .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__radios label:only-child {
      width: 100%;
      margin: 0; }
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes label input,
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__radios label input, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes label input,
    .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__radios label input {
      left: -9999rem;
      position: absolute;
      width: 1px;
      height: 1px; }
  @media (min-width: 62em) {
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes label, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes label {
      width: calc(50% - .555rem); }
      .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes label:nth-child(2n), .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes label:nth-child(2n) {
        margin-left: 0rem; }
      .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__checkboxes label:nth-child(2n + 1), .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__checkboxes label:nth-child(2n + 1) {
        margin-right: .555rem; } }
  .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__radios, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__radios {
    width: 100%;
    display: block; }
    .uoa-form .uoa-form__elt.uoa-form__checkbox .uoa-form__radios.uoa-form__radios-inline, .uoa-form .uoa-form__elt.uoa-form__radio .uoa-form__radios.uoa-form__radios-inline {
      display: flex; }
  @media (min-width: 62em) {
    .uoa-form .uoa-form__elt .uoa-form__radios.uoa-form__radios-inline label {
      width: calc(25% - .555rem);
      margin-right: 0.555rem; } }
  .uoa-form .uoa-form__elt.uoa-form__elt--error input,
  .uoa-form .uoa-form__elt.uoa-form__elt--error select,
  .uoa-form .uoa-form__elt.uoa-form__elt--error textarea {
    border-color: #ef1f2f; }
  .uoa-form .uoa-form__elt.uoa-form__elt--error .uoa-form__elt-error {
    min-height: 1.4rem;
    padding: 0 0 0 1.75rem;
    line-height: 1.2;
    color: #ef1f2f;
    margin: .5rem 0;
    background-position: 0 0; }
  .uoa-form .uoa-form__elt .uoa-form__elt-hint {
    color: #747778;
    font-family: NationalBookItalic, sans-serif; }

.uoa-form .uoa-form__submit-alert {
  color: #ef1f2f;
  margin: 2rem 0; }
  .uoa-form .uoa-form__submit-alert strong {
    border-top: 1px solid #bec3c4;
    display: block;
    min-height: 3rem;
    padding: 1rem 0 0 1.75rem;
    line-height: 1.2;
    background-position: 0 1rem; }
  .uoa-form .uoa-form__submit-alert ul {
    padding: 0;
    margin: 0; }
    .uoa-form .uoa-form__submit-alert ul li {
      display: inline-block; }
      .uoa-form .uoa-form__submit-alert ul li:after {
        content: ',\00a0'; }
      .uoa-form .uoa-form__submit-alert ul li:last-child:after {
        content: ''; }
      .uoa-form .uoa-form__submit-alert ul li a {
        color: currentColor;
        text-decoration: underline; }

.uoa-form button[type=submit] {
  padding-right: 4.16rem; }

.uoa-form .uoa-form__elt--error .uoa-form__elt-error,
.uoa-form .uoa-form__submit-alert strong {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%224373%20-6%2020%2020%22%3E%3Cpath%20fill=%22%23ef1f2f%22%20d%3D%22M4383-6a10%2010%200%201%200%2010%2010%2010%2010%200%200%200-10-10zm1.11%2015.77a1.649%201.649%200%200%201-2.272%200%201.529%201.529%200%200%201-.483-1.11%201.651%201.651%200%200%201%201.619-1.593%201.57%201.57%200%200%201%201.136%202.7zm.4-9.491c-.085.428-.2.852-.284%201.305-.144.483-.284%201.08-.428%201.789s-.313%201.619-.483%202.7h-.654c-.17-1.08-.339-1.961-.483-2.7s-.284-1.335-.4-1.818c-.114-.512-.228-.966-.313-1.335a4.157%204.157%200%200%201-.114-.911%201.283%201.283%200%200%201%20.484-1.109%201.625%201.625%200%200%201%201.165-.453%201.6%201.6%200%200%201%201.165.454%201.529%201.529%200%200%201%20.483%201.11%205.587%205.587%200%200%201-.14.968z%22%2F%3E%3C%2Fsvg%3E");
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat; }

@media (min-width: 62em) {
  .uoa-form .uoa-form__file--surrogated {
    max-width: 40rem; } }

@media (min-width: 75em) {
  .uoa-form .uoa-form__file--surrogated {
    max-width: 48rem; } }

.uoa-form .uoa-form__file--surrogated > div {
  position: relative; }
  .uoa-form .uoa-form__file--surrogated > div .uoa-form__del-file {
    position: absolute;
    z-index: 10;
    right: 1rem;
    top: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%23787878%22%20d%3D%22M2.7%2018.5c0%20.8.7%201.5%201.5%201.5h11.5c.8%200%201.5-.7%201.5-1.5V5.4H2.7v13.1zM17.8%201.5h-5.4V.8c0-.5-.4-.8-.8-.8H8.4c-.4%200-.8.4-.8.8v.6H2.2c-.5%200-.8.4-.8.8v1.3c0%20.5.4.8.8.8h15.5c.5%200%20.8-.4.8-.8V2.3c.1-.5-.3-.8-.7-.8z%22%2F%3E%3C%2Fsvg%3E");
    background-size: 1.25rem 1.25rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-indent: -9999rem;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer; }

.uoa-form .uoa-form__file--surrogated label {
  display: none; }

.uoa-form .uoa-form__file--surrogated input {
  width: 100%;
  height: 3rem;
  opacity: 0;
  position: relative;
  z-index: 2;
  cursor: pointer; }
  .uoa-form .uoa-form__file--surrogated input.disabled {
    z-index: 0; }

.uoa-form .uoa-form__file--surrogated.uoa-form__elt--error .uoa-form__file-button.dropped {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-629%20391%2020%2020%22%3E%3Cpath%20fill%3D%22%23ef1f2f%22%20d%3D%22M-612.5%20406.5l-5.5-5.5%205.5-5.5c.1-.1.2-.3.2-.5s-.1-.4-.2-.5c-.3-.3-.8-.3-1.1%200l-5.5%205.5-5.5-5.5c-.3-.3-.8-.3-1.1%200-.3.3-.3.8%200%201.1l5.5%205.5-5.5%205.5c-.1.1-.2.3-.2.5s.1.4.2.5c.3.3.8.3%201.1%200l5.5-5.5%205.5%205.5c.1.1.3.2.5.2s.4-.1.5-.2c.4-.4.4-.8.1-1.1z%22%2F%3E%3C%2Fsvg%3E");
  border-color: #ef1f2f;
  color: #747778; }

.uoa-form .uoa-form__file--surrogated .uoa-form__file-button {
  background-color: #ffffff;
  line-height: 1.8;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed #bec3c4;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: left;
  transition: all 0.2s;
  background-position: 1rem 0.75rem;
  padding: 0.5rem 2.75rem;
  color: #747778;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%23007299%22%20d%3D%22M18.1%204.5c-.1-.2-1-1.2-2-2.4C15.1%201%2014.3%200%2014.3%200v4.8h4.1l-.3-.3z%22%2F%3E%3Cpath%20fill%3D%22%23007299%22%20d%3D%22M13.2%200H1.7v20h16.6V5.9h-5.2V0zm.2%209.5v1.7l-2.8-2.5v6.5H9.3V8.8l-2.6%202.4V9.5L10%206.3l3.4%203.2z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 1.25rem 1.25rem; }
  .uoa-form .uoa-form__file--surrogated .uoa-form__file-button.dropped {
    border: 1px solid #bec3c4;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20fill%3D%22%23007299%22%20d%3D%22M19.8%205.4L8%2017.3c-.3.3-.7.3-1%200l-.3-.3-.2-.2-1.1-1.2-5.1-5.2c-.3-.3-.3-.7%200-1l1.6-1.6c.3-.2.7-.2%201%200l4.6%204.6%209.7-9.6c.3-.3.7-.3%201%200l1.6%201.6c.3.3.3.7%200%201z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; }
  .uoa-form .uoa-form__file--surrogated .uoa-form__file-button.dragover {
    border: 1px solid #0080a7 !important;
    transform: scale(1.025); }

.uoa-form .flag {
  background: url("clientlibs/assets/img/flags_responsive.png") no-repeat;
  background-size: 100%; }

.uoa-form .flag-ad {
  background-position: 0 0.413223%; }

.uoa-form .flag-ae {
  background-position: 0 0.826446%; }

.uoa-form .flag-af {
  background-position: 0 1.239669%; }

.uoa-form .flag-ag {
  background-position: 0 1.652893%; }

.uoa-form .flag-ai {
  background-position: 0 2.066116%; }

.uoa-form .flag-al {
  background-position: 0 2.479339%; }

.uoa-form .flag-am {
  background-position: 0 2.892562%; }

.uoa-form .flag-an {
  background-position: 0 3.305785%; }

.uoa-form .flag-ao {
  background-position: 0 3.719008%; }

.uoa-form .flag-aq {
  background-position: 0 4.132231%; }

.uoa-form .flag-ar {
  background-position: 0 4.545455%; }

.uoa-form .flag-as {
  background-position: 0 4.958678%; }

.uoa-form .flag-at {
  background-position: 0 5.371901%; }

.uoa-form .flag-au {
  background-position: 0 5.785124%; }

.uoa-form .flag-aw {
  background-position: 0 6.198347%; }

.uoa-form .flag-az {
  background-position: 0 6.61157%; }

.uoa-form .flag-ba {
  background-position: 0 7.024793%; }

.uoa-form .flag-bb {
  background-position: 0 7.438017%; }

.uoa-form .flag-bd {
  background-position: 0 7.85124%; }

.uoa-form .flag-be {
  background-position: 0 8.264463%; }

.uoa-form .flag-bf {
  background-position: 0 8.677686%; }

.uoa-form .flag-bg {
  background-position: 0 9.090909%; }

.uoa-form .flag-bh {
  background-position: 0 9.504132%; }

.uoa-form .flag-bi {
  background-position: 0 9.917355%; }

.uoa-form .flag-bj {
  background-position: 0 10.330579%; }

.uoa-form .flag-bm {
  background-position: 0 10.743802%; }

.uoa-form .flag-bn {
  background-position: 0 11.157025%; }

.uoa-form .flag-bo {
  background-position: 0 11.570248%; }

.uoa-form .flag-br {
  background-position: 0 11.983471%; }

.uoa-form .flag-bs {
  background-position: 0 12.396694%; }

.uoa-form .flag-bt {
  background-position: 0 12.809917%; }

.uoa-form .flag-bv {
  background-position: 0 13.22314%; }

.uoa-form .flag-bw {
  background-position: 0 13.636364%; }

.uoa-form .flag-by {
  background-position: 0 14.049587%; }

.uoa-form .flag-bz {
  background-position: 0 14.46281%; }

.uoa-form .flag-ca {
  background-position: 0 14.876033%; }

.uoa-form .flag-cc {
  background-position: 0 15.289256%; }

.uoa-form .flag-cd {
  background-position: 0 15.702479%; }

.uoa-form .flag-cf {
  background-position: 0 16.115702%; }

.uoa-form .flag-cg {
  background-position: 0 16.528926%; }

.uoa-form .flag-ch {
  background-position: 0 16.942149%; }

.uoa-form .flag-ci {
  background-position: 0 17.355372%; }

.uoa-form .flag-ck {
  background-position: 0 17.768595%; }

.uoa-form .flag-cl {
  background-position: 0 18.181818%; }

.uoa-form .flag-cm {
  background-position: 0 18.595041%; }

.uoa-form .flag-cn {
  background-position: 0 19.008264%; }

.uoa-form .flag-co {
  background-position: 0 19.421488%; }

.uoa-form .flag-cr {
  background-position: 0 19.834711%; }

.uoa-form .flag-cu {
  background-position: 0 20.247934%; }

.uoa-form .flag-cv {
  background-position: 0 20.661157%; }

.uoa-form .flag-cx {
  background-position: 0 21.07438%; }

.uoa-form .flag-cy {
  background-position: 0 21.487603%; }

.uoa-form .flag-cz {
  background-position: 0 21.900826%; }

.uoa-form .flag-de {
  background-position: 0 22.31405%; }

.uoa-form .flag-dj {
  background-position: 0 22.727273%; }

.uoa-form .flag-dk {
  background-position: 0 23.140496%; }

.uoa-form .flag-dm {
  background-position: 0 23.553719%; }

.uoa-form .flag-do {
  background-position: 0 23.966942%; }

.uoa-form .flag-dz {
  background-position: 0 24.380165%; }

.uoa-form .flag-ec {
  background-position: 0 24.793388%; }

.uoa-form .flag-ee {
  background-position: 0 25.206612%; }

.uoa-form .flag-eg {
  background-position: 0 25.619835%; }

.uoa-form .flag-eh {
  background-position: 0 26.033058%; }

.uoa-form .flag-er {
  background-position: 0 26.446281%; }

.uoa-form .flag-es {
  background-position: 0 26.859504%; }

.uoa-form .flag-et {
  background-position: 0 27.272727%; }

.uoa-form .flag-fi {
  background-position: 0 27.68595%; }

.uoa-form .flag-fj {
  background-position: 0 28.099174%; }

.uoa-form .flag-fk {
  background-position: 0 28.512397%; }

.uoa-form .flag-fm {
  background-position: 0 28.92562%; }

.uoa-form .flag-fo {
  background-position: 0 29.338843%; }

.uoa-form .flag-fr {
  background-position: 0 29.752066%; }

.uoa-form .flag-ga {
  background-position: 0 30.165289%; }

.uoa-form .flag-gd {
  background-position: 0 30.578512%; }

.uoa-form .flag-ge {
  background-position: 0 30.991736%; }

.uoa-form .flag-gf {
  background-position: 0 31.404959%; }

.uoa-form .flag-gh {
  background-position: 0 31.818182%; }

.uoa-form .flag-gi {
  background-position: 0 32.231405%; }

.uoa-form .flag-gl {
  background-position: 0 32.644628%; }

.uoa-form .flag-gm {
  background-position: 0 33.057851%; }

.uoa-form .flag-gn {
  background-position: 0 33.471074%; }

.uoa-form .flag-gp {
  background-position: 0 33.884298%; }

.uoa-form .flag-gq {
  background-position: 0 34.297521%; }

.uoa-form .flag-gr {
  background-position: 0 34.710744%; }

.uoa-form .flag-gs {
  background-position: 0 35.123967%; }

.uoa-form .flag-gt {
  background-position: 0 35.53719%; }

.uoa-form .flag-gu {
  background-position: 0 35.950413%; }

.uoa-form .flag-gw {
  background-position: 0 36.363636%; }

.uoa-form .flag-gy {
  background-position: 0 36.77686%; }

.uoa-form .flag-hk {
  background-position: 0 37.190083%; }

.uoa-form .flag-hm {
  background-position: 0 37.603306%; }

.uoa-form .flag-hn {
  background-position: 0 38.016529%; }

.uoa-form .flag-hr {
  background-position: 0 38.429752%; }

.uoa-form .flag-ht {
  background-position: 0 38.842975%; }

.uoa-form .flag-hu {
  background-position: 0 39.256198%; }

.uoa-form .flag-id {
  background-position: 0 39.669421%; }

.uoa-form .flag-ie {
  background-position: 0 40.082645%; }

.uoa-form .flag-il {
  background-position: 0 40.495868%; }

.uoa-form .flag-in {
  background-position: 0 40.909091%; }

.uoa-form .flag-io {
  background-position: 0 41.322314%; }

.uoa-form .flag-iq {
  background-position: 0 41.735537%; }

.uoa-form .flag-ir {
  background-position: 0 42.14876%; }

.uoa-form .flag-is {
  background-position: 0 42.561983%; }

.uoa-form .flag-it {
  background-position: 0 42.975207%; }

.uoa-form .flag-jm {
  background-position: 0 43.38843%; }

.uoa-form .flag-jo {
  background-position: 0 43.801653%; }

.uoa-form .flag-jp {
  background-position: 0 44.214876%; }

.uoa-form .flag-ke {
  background-position: 0 44.628099%; }

.uoa-form .flag-kg {
  background-position: 0 45.041322%; }

.uoa-form .flag-kh {
  background-position: 0 45.454545%; }

.uoa-form .flag-ki {
  background-position: 0 45.867769%; }

.uoa-form .flag-km {
  background-position: 0 46.280992%; }

.uoa-form .flag-kn {
  background-position: 0 46.694215%; }

.uoa-form .flag-kp {
  background-position: 0 47.107438%; }

.uoa-form .flag-kr {
  background-position: 0 47.520661%; }

.uoa-form .flag-kw {
  background-position: 0 47.933884%; }

.uoa-form .flag-ky {
  background-position: 0 48.347107%; }

.uoa-form .flag-kz {
  background-position: 0 48.760331%; }

.uoa-form .flag-la {
  background-position: 0 49.173554%; }

.uoa-form .flag-lb {
  background-position: 0 49.586777%; }

.uoa-form .flag-lc {
  background-position: 0 50%; }

.uoa-form .flag-li {
  background-position: 0 50.413223%; }

.uoa-form .flag-lk {
  background-position: 0 50.826446%; }

.uoa-form .flag-lr {
  background-position: 0 51.239669%; }

.uoa-form .flag-ls {
  background-position: 0 51.652893%; }

.uoa-form .flag-lt {
  background-position: 0 52.066116%; }

.uoa-form .flag-lu {
  background-position: 0 52.479339%; }

.uoa-form .flag-lv {
  background-position: 0 52.892562%; }

.uoa-form .flag-ly {
  background-position: 0 53.305785%; }

.uoa-form .flag-ma {
  background-position: 0 53.719008%; }

.uoa-form .flag-mc {
  background-position: 0 54.132231%; }

.uoa-form .flag-md {
  background-position: 0 54.545455%; }

.uoa-form .flag-me {
  background-position: 0 54.958678%; }

.uoa-form .flag-mg {
  background-position: 0 55.371901%; }

.uoa-form .flag-mh {
  background-position: 0 55.785124%; }

.uoa-form .flag-mk {
  background-position: 0 56.198347%; }

.uoa-form .flag-ml {
  background-position: 0 56.61157%; }

.uoa-form .flag-mm {
  background-position: 0 57.024793%; }

.uoa-form .flag-mn {
  background-position: 0 57.438017%; }

.uoa-form .flag-mo {
  background-position: 0 57.85124%; }

.uoa-form .flag-mp {
  background-position: 0 58.264463%; }

.uoa-form .flag-mq {
  background-position: 0 58.677686%; }

.uoa-form .flag-mr {
  background-position: 0 59.090909%; }

.uoa-form .flag-ms {
  background-position: 0 59.504132%; }

.uoa-form .flag-mt {
  background-position: 0 59.917355%; }

.uoa-form .flag-mu {
  background-position: 0 60.330579%; }

.uoa-form .flag-mv {
  background-position: 0 60.743802%; }

.uoa-form .flag-mw {
  background-position: 0 61.157025%; }

.uoa-form .flag-mx {
  background-position: 0 61.570248%; }

.uoa-form .flag-my {
  background-position: 0 61.983471%; }

.uoa-form .flag-mz {
  background-position: 0 62.396694%; }

.uoa-form .flag-na {
  background-position: 0 62.809917%; }

.uoa-form .flag-nc {
  background-position: 0 63.22314%; }

.uoa-form .flag-ne {
  background-position: 0 63.636364%; }

.uoa-form .flag-nf {
  background-position: 0 64.049587%; }

.uoa-form .flag-ng {
  background-position: 0 64.46281%; }

.uoa-form .flag-ni {
  background-position: 0 64.876033%; }

.uoa-form .flag-nl {
  background-position: 0 65.289256%; }

.uoa-form .flag-no {
  background-position: 0 65.702479%; }

.uoa-form .flag-np {
  background-position: 0 66.115702%; }

.uoa-form .flag-nr {
  background-position: 0 66.528926%; }

.uoa-form .flag-nu {
  background-position: 0 66.942149%; }

.uoa-form .flag-nz {
  background-position: 0 67.355372%; }

.uoa-form .flag-om {
  background-position: 0 67.768595%; }

.uoa-form .flag-pa {
  background-position: 0 68.181818%; }

.uoa-form .flag-pe {
  background-position: 0 68.595041%; }

.uoa-form .flag-pf {
  background-position: 0 69.008264%; }

.uoa-form .flag-pg {
  background-position: 0 69.421488%; }

.uoa-form .flag-ph {
  background-position: 0 69.834711%; }

.uoa-form .flag-pk {
  background-position: 0 70.247934%; }

.uoa-form .flag-pl {
  background-position: 0 70.661157%; }

.uoa-form .flag-pm {
  background-position: 0 71.07438%; }

.uoa-form .flag-pn {
  background-position: 0 71.487603%; }

.uoa-form .flag-pr {
  background-position: 0 71.900826%; }

.uoa-form .flag-pt {
  background-position: 0 72.31405%; }

.uoa-form .flag-pw {
  background-position: 0 72.727273%; }

.uoa-form .flag-py {
  background-position: 0 73.140496%; }

.uoa-form .flag-qa {
  background-position: 0 73.553719%; }

.uoa-form .flag-re {
  background-position: 0 73.966942%; }

.uoa-form .flag-ro {
  background-position: 0 74.380165%; }

.uoa-form .flag-rs {
  background-position: 0 74.793388%; }

.uoa-form .flag-ru {
  background-position: 0 75.206612%; }

.uoa-form .flag-rw {
  background-position: 0 75.619835%; }

.uoa-form .flag-sa {
  background-position: 0 76.033058%; }

.uoa-form .flag-sb {
  background-position: 0 76.446281%; }

.uoa-form .flag-sc {
  background-position: 0 76.859504%; }

.uoa-form .flag-sd {
  background-position: 0 77.272727%; }

.uoa-form .flag-se {
  background-position: 0 77.68595%; }

.uoa-form .flag-sg {
  background-position: 0 78.099174%; }

.uoa-form .flag-sh {
  background-position: 0 78.512397%; }

.uoa-form .flag-si {
  background-position: 0 78.92562%; }

.uoa-form .flag-sj {
  background-position: 0 79.338843%; }

.uoa-form .flag-sk {
  background-position: 0 79.752066%; }

.uoa-form .flag-sl {
  background-position: 0 80.165289%; }

.uoa-form .flag-sm {
  background-position: 0 80.578512%; }

.uoa-form .flag-sn {
  background-position: 0 80.991736%; }

.uoa-form .flag-so {
  background-position: 0 81.404959%; }

.uoa-form .flag-sr {
  background-position: 0 81.818182%; }

.uoa-form .flag-ss {
  background-position: 0 82.231405%; }

.uoa-form .flag-st {
  background-position: 0 82.644628%; }

.uoa-form .flag-sv {
  background-position: 0 83.057851%; }

.uoa-form .flag-sy {
  background-position: 0 83.471074%; }

.uoa-form .flag-sz {
  background-position: 0 83.884298%; }

.uoa-form .flag-tc {
  background-position: 0 84.297521%; }

.uoa-form .flag-td {
  background-position: 0 84.710744%; }

.uoa-form .flag-tf {
  background-position: 0 85.123967%; }

.uoa-form .flag-tg {
  background-position: 0 85.53719%; }

.uoa-form .flag-th {
  background-position: 0 85.950413%; }

.uoa-form .flag-tj {
  background-position: 0 86.363636%; }

.uoa-form .flag-tk {
  background-position: 0 86.77686%; }

.uoa-form .flag-tl {
  background-position: 0 87.190083%; }

.uoa-form .flag-tm {
  background-position: 0 87.603306%; }

.uoa-form .flag-tn {
  background-position: 0 88.016529%; }

.uoa-form .flag-to {
  background-position: 0 88.429752%; }

.uoa-form .flag-tp {
  background-position: 0 88.842975%; }

.uoa-form .flag-tr {
  background-position: 0 89.256198%; }

.uoa-form .flag-tt {
  background-position: 0 89.669421%; }

.uoa-form .flag-tv {
  background-position: 0 90.082645%; }

.uoa-form .flag-tw {
  background-position: 0 90.495868%; }

.uoa-form .flag-ty {
  background-position: 0 90.909091%; }

.uoa-form .flag-tz {
  background-position: 0 91.322314%; }

.uoa-form .flag-ua {
  background-position: 0 91.735537%; }

.uoa-form .flag-ug {
  background-position: 0 92.14876%; }

.uoa-form .flag-gb,
.uoa-form .flag-uk {
  background-position: 0 92.561983%; }

.uoa-form .flag-um {
  background-position: 0 92.975207%; }

.uoa-form .flag-us {
  background-position: 0 93.38843%; }

.uoa-form .flag-uy {
  background-position: 0 93.801653%; }

.uoa-form .flag-uz {
  background-position: 0 94.214876%; }

.uoa-form .flag-va {
  background-position: 0 94.628099%; }

.uoa-form .flag-vc {
  background-position: 0 95.041322%; }

.uoa-form .flag-ve {
  background-position: 0 95.454545%; }

.uoa-form .flag-vg {
  background-position: 0 95.867769%; }

.uoa-form .flag-vi {
  background-position: 0 96.280992%; }

.uoa-form .flag-vn {
  background-position: 0 96.694215%; }

.uoa-form .flag-vu {
  background-position: 0 97.107438%; }

.uoa-form .flag-wf {
  background-position: 0 97.520661%; }

.uoa-form .flag-ws {
  background-position: 0 97.933884%; }

.uoa-form .flag-ye {
  background-position: 0 98.347107%; }

.uoa-form .flag-za {
  background-position: 0 98.760331%; }

.uoa-form .flag-zm {
  background-position: 0 99.173554%; }

.uoa-form .flag-zr {
  background-position: 0 99.586777%; }

.uoa-form .flag-zw {
  background-position: 0 100%; }

/*!
========== LAYOUT
*/
.uoa-footer {
  clear: both;
  position: relative;
  overflow: hidden;
  padding-top: 4em;
  z-index: 1; }
  .uoa-footer a, .uoa-footer h3, .uoa-footer h4 {
    color: #ffffff; }
  .uoa-footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .uoa-footer__section:first-child::after {
    content: "";
    top: 50%;
    bottom: 0;
    right: 1rem;
    display: none;
    height: 80%;
    position: absolute;
    transform: translateY(-50%);
    border-right: 1px solid #747778; }
    @media (min-width: 34em) {
      .uoa-footer__section:first-child::after {
        display: block; } }
  .uoa-footer__section:first-child li {
    padding-right: 2rem; }
  .uoa-footer__social {
    position: relative;
    top: -1.5rem; }
    .uoa-footer__social > div {
      padding: 1em 1em 0;
      position: relative; }
      .uoa-footer__social > div > div {
        position: relative;
        z-index: 1;
        text-align: right; }
      .uoa-footer__social > div::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        height: 100%;
        width: 10000px;
        z-index: 0;
        background-color: #404040; }
        @media (min-width: 48em) {
          .uoa-footer__social > div::before {
            left: 0;
            transform: none; } }
    .uoa-footer__social h3, .uoa-footer__social h4 {
      font-size: 1rem;
      float: left;
      margin-bottom: 0.8rem;
      color: #ffffff; }
    .uoa-footer__social .footer__social-icon-list {
      line-height: 0; }
      .uoa-footer__social .footer__social-icon-list::after {
        content: "";
        display: inline-block;
        width: 100%; }
      @media (max-width: 33.99em) {
        .uoa-footer__social .footer__social-icon-list {
          text-align: justify;
          text-align-last: justify;
          display: block;
          clear: left; } }
      @media (min-width: 48em) {
        .uoa-footer__social .footer__social-icon-list {
          text-align: right; } }
      .uoa-footer__social .footer__social-icon-list li {
        line-height: 1em;
        float: none;
        display: inline-block;
        padding: 0;
        vertical-align: top; }
        @media (min-width: 30em) {
          .uoa-footer__social .footer__social-icon-list li {
            padding: 0 .7rem; } }
        @media (min-width: 34em) {
          .uoa-footer__social .footer__social-icon-list li {
            padding: 0 1rem; } }
        .uoa-footer__social .footer__social-icon-list li a {
          display: block;
          width: 100%;
          height: 100%; }
          .uoa-footer__social .footer__social-icon-list li a svg {
            width: 1.25rem;
            height: 1.25rem;
            fill: #ffffff;
            vertical-align: middle; }
        .uoa-footer__social .footer__social-icon-list li .more-link {
          text-align: center;
          vertical-align: text-top;
          display: block;
          overflow: hidden; }
          .uoa-footer__social .footer__social-icon-list li .more-link:hover {
            text-decoration: none; }
          .uoa-footer__social .footer__social-icon-list li .more-link span {
            display: block;
            position: relative; }
            .uoa-footer__social .footer__social-icon-list li .more-link span:first-child {
              font-size: 2.5rem;
              top: -.9rem; }
            .uoa-footer__social .footer__social-icon-list li .more-link span:last-child {
              font-size: 0.66667rem;
              top: -.2rem; }
      .uoa-footer__social .footer__social-icon-list li:first-child {
        padding-left: 0; }
      .uoa-footer__social .footer__social-icon-list li:last-child {
        padding-right: 0; }
  .uoa-footer__section {
    padding-top: 1em;
    padding-bottom: 1em; }
    @media (min-width: 48em) {
      .uoa-footer__section {
        padding-top: 2em;
        padding-bottom: 2em; } }
    .uoa-footer__section h3, .uoa-footer__section h4 {
      font-size: 1rem; }
    .uoa-footer__section li {
      padding: 0.15rem 0rem;
      margin: .5rem 0; }
      .uoa-footer__section li a {
        font-size: 1rem;
        line-height: 1.1;
        display: inline-block; }
    .uoa-footer__section img {
      width: 100%;
      height: 100%; }
  .uoa-footer__legal {
    padding-top: .4em;
    padding-bottom: .6em;
    overflow: hidden; }
    .uoa-footer__legal ul {
      text-align: center; }
      @media (min-width: 48em) {
        .uoa-footer__legal ul {
          text-align: right; } }
      .uoa-footer__legal ul li {
        display: inline-block;
        padding: 0rem 0.15em; }
        .uoa-footer__legal ul li a {
          line-height: 0.8em; }
        .uoa-footer__legal ul li:after {
          content: "|";
          /* font-size: ms(0, .875rem) */
          color: #ffffff;
          display: inline-block;
          margin: 0 0 0 .5rem; }
      .uoa-footer__legal ul li:last-child:after {
        content: ""; }
  .uoa-footer__img-container {
    z-index: 1;
    position: relative; }
    .uoa-footer__img-container img {
      max-width: 100%; }
  .uoa-footer__content {
    z-index: 2;
    position: relative;
    padding: 1em;
    margin: -2rem 1rem 0 1rem; }
    .uoa-footer__content h3 a {
      color: #ffffff; }
    .uoa-footer__content .btn {
      min-height: 0;
      height: auto;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: none;
      color: #ffffff;
      margin: 0; }
      .uoa-footer__content .btn svg {
        width: 1rem;
        height: 1rem;
        fill: #ffffff;
        vertical-align: middle; }

.uoa-section {
  padding-top: 4em;
  padding-bottom: 4em; }
  .general-content .uoa-section, .links-page .uoa-section {
    padding-top: 2.3em; }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .uoa-section {
      padding-top: 2em;
      padding-bottom: 2em; } }
  @media (max-width: 47.99em) {
    .uoa-section {
      padding-top: 2em;
      padding-bottom: 0.5em; } }

.embed-section {
  padding-top: 2.3rem;
  margin-bottom: -2.3rem; }
  @media (min-width: 48em) and (max-width: 61.99em) {
    .embed-section {
      padding-top: 2em;
      padding-bottom: 2em; } }
  @media (max-width: 47.99em) {
    .embed-section {
      padding-top: 2em;
      padding-bottom: 0.5em; } }
  .front-page .embed-section, .programme-listing-page .embed-section, .programme-detail-page .embed-section, .listing-page .embed-section {
    padding-top: 0; }

.responsiveGrid:nth-child(even), [class*="templategrid"]:nth-child(odd) {
  background: #f2f2f2; }
  .responsiveGrid:nth-child(even) .text a, [class*="templategrid"]:nth-child(odd) .text a {
    color: #005499;
    position: relative;
    text-decoration: none;
    text-shadow: 1px 0px 0 #f2f2f2, -1px 0px 0 #f2f2f2, 2px 0 0 #f2f2f2, -2px 0 0 #f2f2f2;
    background-image: linear-gradient(transparent 50%, #005499 50%);
    background-repeat: repeat-x;
    background-position: 0 92%;
    background-size: 1px 2px;
    outline: none; }
    .responsiveGrid:nth-child(even) .text a:hover, [class*="templategrid"]:nth-child(odd) .text a:hover {
      text-decoration: none;
      text-shadow: 1px 0 0 #f2f2f2, -1px 0 0 #f2f2f2, 2px 0 0 #f2f2f2, -2px 0 0 #f2f2f2;
      background-size: 1px 4px; }
    .responsiveGrid:nth-child(even) .text a:focus, [class*="templategrid"]:nth-child(odd) .text a:focus {
      background-color: rgba(0, 70, 127, 0.15);
      text-shadow: none; }

.responsiveGrid:nth-child(odd), [class*="templategrid"]:nth-child(even) {
  background: #ffffff; }

.uoa-form .uoa-form__elt.uoa-form__date a {
  position: static; }

.uoa-section:last-child {
  padding-bottom: 6rem;
  margin-bottom: -4rem; }

@media (min-width: 62em) {
  .sidebar-area {
    padding-left: 20px; } }

.bg-dark-blue {
  background-color: #00467f; }

.bg-light-blue {
  background-color: #0080a7; }

.bg-very-light-blue {
  background-color: #009ac7; }

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

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

.bg-mid-grey {
  background-color: #404040; }

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

.bg-silver {
  background-color: #747778; }

.bg-silver-lining {
  background-color: #bec3c4; }

.bg-input-grey {
  background-color: #d9d9d9; }

.bg-white {
  background-color: #ffffff;
  border: 1px solid #ccc; }

.bg-dark-blue {
  background-color: #00467f; }

.bg-light-blue {
  background-color: #0080a7; }

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

.bg-mid-grey {
  background-color: #404040; }

.bg-input-grey {
  background-color: #d9d9d9; }

.bg-body-grey {
  background-color: #4a4c4c; }

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

.bg-silver {
  background-color: #747778; }

.bg-silver-lining {
  background-color: #bec3c4; }

.bg-white {
  background-color: #ffffff;
  border: 1px solid #ccc; }

.bg-business-and-economics {
  background-color: #7D0063; }

.bg-arts {
  background-color: #a71930; }

.bg-creative-arts-and-industries {
  background-color: #cc4729; }

.bg-science {
  background-color: #0039a6; }

.bg-medical-and-health-sciences {
  background-color: #008075; }

.bg-law {
  background-color: #005b82; }

.bg-education-and-social-work {
  background-color: #448517; }

.bg-engineering {
  background-color: #4f2d7f; }

.uoa-header {
  position: relative; }
  @media (min-width: 62em) {
    .uoa-header + #main {
      padding-top: 0; } }
  .uoa-header .btn {
    margin: 0.5em 0; }
  .uoa-header__img-container {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%;
    background: #f2f2f2;
    /*
		&:before {
			content: "";
			position: absolute;
			height: 50%;
			border-left: 1px solid $white;
			transform-origin: 0 0;
 			transform: rotate(45deg);
 			left: 19%;
 			top: -2px;
			z-index: 2;

			@include mq($from: md) {
				left: auto;
				right: 50%;
				margin-right: 195px;
				height: 240px;
			}

			@include mq($from: lg) {
	 			margin-right: 270px;
				height: 290px;
			}

			@include mq($from: xl) {
	 			margin-right: 320px;
				height: 360px;
			}

 		}
*/ }
    @media (min-width: 62em) {
      .uoa-header__img-container {
        padding-bottom: 0;
        height: 70vh;
        max-height: 70vh;
        min-height: 560px; } }
    .uoa-header__img-container:after {
      position: absolute;
      bottom: 0;
      left: 66%;
      width: 1000%;
      background: rgba(255, 255, 255, 0.2);
      height: 200%;
      transform-origin: 0 100%;
      transform: rotate(45deg); }
      @media (min-width: 48em) {
        .uoa-header__img-container:after {
          content: "";
          left: 50%;
          margin-left: 190px; } }
      @media (min-width: 62em) {
        .uoa-header__img-container:after {
          margin-left: 250px; } }
      @media (min-width: 75em) {
        .uoa-header__img-container:after {
          margin-left: 420px; } }
    .uoa-header__img-container img {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%; }
      @media (min-width: 62em) {
        .uoa-header__img-container img {
          transform: translateY(-40%); } }
  @media (min-width: 62em) {
    .uoa-header .container {
      position: relative;
      height: 2em; } }
  @media (max-width: 61.99em) {
    .uoa-header__content {
      position: relative;
      margin-top: -15%; } }
  @media (min-width: 62em) {
    .uoa-header__content {
      position: absolute;
      bottom: -2em; } }

.notransition {
  transition: none !important; }

@keyframes navtext {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes navtextreverse {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 0; } }

main {
  position: relative;
  z-index: 1;
  padding-top: 4rem; }
  @media (min-width: 62em) {
    main {
      padding-top: 8.5rem; } }

.main-content {
  width: 100%; }
  @media (max-width: 61.99em) {
    .hamburgeropen .main-content {
      position: fixed; } }

header.top {
  transition: all .8s;
  height: 3rem;
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
  @media (max-width: 61.99em) {
    header.top {
      height: 4rem !important;
      background: none;
      box-shadow: none; } }
  @media (min-width: 62em) {
    header.top {
      height: 8.5rem; } }
  @media (max-width: 33.99em) {
    header.top .secondary, header.top h2.sr-only, header.top .main {
      max-width: 100%;
      width: 18rem; } }
  @media (min-width: 34em) and (max-width: 61.99em) {
    header.top .secondary, header.top h2.sr-only, header.top .main {
      width: 24rem; } }
  header.top .secondary-container {
    background-color: #f2f2f2;
    height: 3.5rem;
    transition: all .8s; }
    @media (max-width: 61.99em) {
      header.top .secondary-container {
        height: auto;
        position: relative;
        width: 100%; } }
    body.secondaryopen header.top .secondary-container {
      background-color: #f2f2f2; }
  header.top .main-container {
    transition: all .8s;
    height: 5rem; }
    @media (max-width: 61.99em) {
      header.top .main-container {
        margin-top: 0 !important; } }
  header.top .search .container {
    padding: 0;
    position: relative; }
    @media (max-width: 33.99em) {
      header.top .search .container {
        margin: 0 -0.555rem; } }
  @media (max-width: 61.99em) {
    header.top .search {
      box-sizing: border-box;
      position: absolute;
      padding: 1rem;
      height: 4rem;
      left: 0;
      width: 100%;
      transform: translateY(0);
      transition: transform .4s;
      background: #f2f2f2;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); } }
  @media (min-width: 62em) {
    header.top .search {
      padding-top: .4rem; } }
  @media (max-width: 61.99em) {
    header.top .search.on {
      transform: translateY(4rem);
      padding-top: 2rem;
      height: 5.5rem; } }
  header.top .search ::-webkit-input-placeholder {
    color: #00467f;
    font-family: NationalBookItalic, sans-serif; }
  header.top .search :-moz-placeholder {
    color: #00467f;
    font-family: NationalBookItalic, sans-serif; }
  header.top .search ::-moz-placeholder {
    color: #00467f;
    font-family: NationalBookItalic, sans-serif; }
  header.top .search :-ms-input-placeholder {
    color: #00467f;
    font-family: NationalBookItalic, sans-serif; }
  header.top .search input, header.top .search button {
    vertical-align: bottom;
    box-sizing: border-box;
    padding: .25rem 1rem .5rem;
    font-size: 1.125rem;
    font-family: NationalBook, sans-serif;
    height: 2.75rem; }
  header.top .search input {
    border: 1px solid #d9d9d9;
    color: #00467f;
    width: calc(100% - 4rem);
    padding-right: 2.5rem;
    transition: all 0.3s ease; }
    header.top .search input:focus {
      box-shadow: 0 0 5px #bec3c4;
      border: 1px solid #0080a7; }
    header.top .search input::-ms-clear {
      display: none; }
    @media (min-width: 62em) {
      header.top .search input {
        float: left;
        width: calc(100% - 3rem); } }
  header.top .search button {
    background-color: #0080a7;
    border: 1px solid #0080a7;
    color: #ffffff;
    width: 3rem;
    padding: .75rem;
    transition: all 0.3s ease;
    position: relative; }
    header.top .search button:hover, header.top .search button:focus {
      box-shadow: 0 0 5px #bec3c4;
      outline: none;
      background-color: #ffffff; }
      header.top .search button:hover svg *, header.top .search button:focus svg * {
        fill: #0080a7; }
    @media (min-width: 62em) {
      header.top .search button {
        float: left; } }
    header.top .search button svg {
      width: 1.25rem;
      height: 1.25rem;
      position: relative;
      transition: fill 0.3s ease; }
      header.top .search button svg * {
        fill: #ffffff; }
    header.top .search button[type=reset] {
      padding: 0;
      width: 1rem;
      height: 1rem;
      position: absolute;
      right: 4.5rem;
      border: none;
      background: #bec3c4;
      border-radius: 50%;
      text-align: center;
      top: 50%;
      margin-top: -0.5rem;
      z-index: 2; }
      header.top .search button[type=reset].off {
        opacity: 0;
        visibility: hidden; }
      header.top .search button[type=reset] svg {
        display: inline;
        vertical-align: text-top;
        width: .75rem;
        height: .75rem;
        line-height: 1; }
      @media (min-width: 62em) {
        header.top .search button[type=reset] {
          right: 3.6rem; } }
  header.top > .container {
    position: static; }
  header.top .logo-container {
    position: static; }
    @media (max-width: 61.99em) {
      header.top .logo-container {
        position: absolute;
        width: 100%;
        left: 0;
        height: 4rem;
        background: #ffffff; } }
    @media (max-width: 61.99em) {
      .hamburgeropen header.top .logo-container {
        position: fixed; } }
    header.top .logo-container svg {
      width: 1.5rem;
      height: 1.5rem; }
    @media (max-width: 61.99em) {
      header.top .logo-container .logo {
        position: absolute;
        left: 50%;
        margin-left: -2.5rem;
        top: .25rem; } }
    header.top .logo-container .logo svg {
      position: absolute;
      z-index: 3;
      width: 8rem;
      height: 8rem;
      margin-top: -1.5rem; }
      @media (max-width: 61.99em) {
        header.top .logo-container .logo svg {
          position: static;
          margin-top: 0;
          width: 5rem;
          height: 5rem; } }
      @media (min-width: 75em) {
        header.top .logo-container .logo svg {
          width: 9rem;
          height: 9rem;
          margin-top: -2rem; } }
    header.top .logo-container .hamburger, header.top .logo-container .search-button, header.top .logo-container .search-close {
      appearance: none;
      -webkit-appearance: none;
      border: none;
      background: none;
      width: auto;
      height: 4rem;
      padding: 0 1rem;
      position: absolute;
      top: 0;
      text-transform: uppercase;
      color: #00467f;
      text-align: center; }
      header.top .logo-container .hamburger svg *, header.top .logo-container .search-button svg *, header.top .logo-container .search-close svg * {
        fill: #00467f; }
      header.top .logo-container .hamburger span, header.top .logo-container .search-button span, header.top .logo-container .search-close span {
        display: block;
        margin-top: -.25rem; }
    header.top .logo-container .hamburger {
      left: 0; }
    header.top .logo-container .search-button, header.top .logo-container .search-close {
      right: 0; }
      header.top .logo-container .search-button svg, header.top .logo-container .search-close svg {
        position: relative;
        top: .125rem;
        width: 1.25rem;
        height: 1.25rem; }
    header.top .logo-container .search-close {
      display: none; }
  header.top nav .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.2s, opacity 0.2s linear; }
    @media (min-width: 62em) {
      header.top nav .nav-overlay {
        display: none; } }
    .hamburgeropen header.top nav .nav-overlay {
      visibility: visible;
      opacity: 1;
      transition-delay: 0s; }
  @media (max-width: 61.99em) {
    header.top nav h2.sr-only {
      clip: auto;
      margin: 0;
      z-index: 10;
      color: #ffffff;
      font-family: NationalBook, sans-serif;
      font-weight: normal;
      line-height: 3.5rem;
      left: 0;
      background: #00467f;
      transform: translateX(-102%);
      height: 4rem;
      position: fixed;
      opacity: 1;
      transition: all .4s;
      top: 0; }
      header.top nav h2.sr-only span, header.top nav h2.sr-only a {
        font-size: 1.25rem;
        margin-left: 1rem;
        transition: all .8s; }
      header.top nav h2.sr-only .close {
        color: #ffffff;
        right: 1rem;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9Ii02MjkgMzkxIDIwIDIwIj4NCjxwYXRoIGZpbGw9IiNmZmZmZmYiIGQ9Ik0tNjEyLjUsNDA2LjVsLTUuNS01LjVsNS41LTUuNWMwLjEtMC4xLDAuMi0wLjMsMC4yLTAuNXMtMC4xLTAuNC0wLjItMC41Yy0wLjMtMC4zLTAuOC0wLjMtMS4xLDBsLTUuNSw1LjVsLTUuNS01LjVjLTAuMy0wLjMtMC44LTAuMy0xLjEsMGMtMC4zLDAuMy0wLjMsMC44LDAsMS4xbDUuNSw1LjVsLTUuNSw1LjVjLTAuMSwwLjEtMC4yLDAuMy0wLjIsMC41YzAsMC4yLDAuMSwwLjQsMC4yLDAuNWMwLjMsMC4zLDAuOCwwLjMsMS4xLDBsNS41LTUuNWw1LjUsNS41YzAuMSwwLjEsMC4zLDAuMiwwLjUsMC4yYzAuMiwwLDAuNC0wLjEsMC41LTAuMkMtNjEyLjIsNDA3LjItNjEyLjIsNDA2LjgtNjEyLjUsNDA2LjV6Ii8+DQo8L3N2Zz4NCg==");
        opacity: 0; } }
  .hamburgeropen header.top nav h2.sr-only {
    opacity: 1;
    transform: translateX(0); }
    .hamburgeropen header.top nav h2.sr-only .close {
      opacity: 1; }
  header.top nav h2.sr-only.off span, header.top nav h2.sr-only.off a {
    opacity: 0; }
  header.top nav h2.sr-only.level-2-title {
    cursor: pointer;
    background: none;
    width: auto;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMjAgMjAiPg0KCTxwYXRoIGZpbGw9IiNmZmZmZmYiIHRyYW5zZm9ybT0icm90YXRlKDE4MCwgMTAsIDEwKSIgZD0iTTUgMjBjLTAuMTI4IDAtMC4yNTYtMC4wNDktMC4zNTQtMC4xNDYtMC4xOTUtMC4xOTUtMC4xOTUtMC41MTIgMC0wLjcwN2w4LjY0Ni04LjY0Ni04LjY0Ni04LjY0NmMtMC4xOTUtMC4xOTUtMC4xOTUtMC41MTIgMC0wLjcwN3MwLjUxMi0wLjE5NSAwLjcwNyAwbDkgOWMwLjE5NSAwLjE5NSAwLjE5NSAwLjUxMiAwIDAuNzA3bC05IDljLTAuMDk4IDAuMDk4LTAuMjI2IDAuMTQ2LTAuMzU0IDAuMTQ2eiIvPg0KPC9zdmc+DQo=");
    background-position: .65rem 53%;
    background-repeat: no-repeat;
    background-size: 1.5rem 1.5rem; }
    header.top nav h2.sr-only.level-2-title span, header.top nav h2.sr-only.level-2-title a {
      vertical-align: middle;
      margin-left: 2.5rem;
      line-height: 1; }
    header.top nav h2.sr-only.level-2-title.off {
      background-image: none; }
  header.top nav .close {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9Ii02MjkgMzkxIDIwIDIwIj4NCjxwYXRoIGZpbGw9IiMwMDQ2N2YiIGQ9Ik0tNjEyLjUsNDA2LjVsLTUuNS01LjVsNS41LTUuNWMwLjEtMC4xLDAuMi0wLjMsMC4yLTAuNXMtMC4xLTAuNC0wLjItMC41Yy0wLjMtMC4zLTAuOC0wLjMtMS4xLDBsLTUuNSw1LjVsLTUuNS01LjVjLTAuMy0wLjMtMC44LTAuMy0xLjEsMGMtMC4zLDAuMy0wLjMsMC44LDAsMS4xbDUuNSw1LjVsLTUuNSw1LjVjLTAuMSwwLjEtMC4yLDAuMy0wLjIsMC41YzAsMC4yLDAuMSwwLjQsMC4yLDAuNWMwLjMsMC4zLDAuOCwwLjMsMS4xLDBsNS41LTUuNWw1LjUsNS41YzAuMSwwLjEsMC4zLDAuMiwwLjUsMC4yYzAuMiwwLDAuNC0wLjEsMC41LTAuMkMtNjEyLjIsNDA3LjItNjEyLjIsNDA2LjgtNjEyLjUsNDA2LjV6Ii8+DQo8L3N2Zz4NCg==");
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: 1.25rem 1.25rem;
    background-color: transparent;
    border: none;
    padding: 1.15rem 0 0 0;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    top: 1rem;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    transition: all .4s;
    line-height: 1;
    cursor: pointer;
    z-index: 2; }
    header.top nav .close:hover {
      background-size: 2.25rem 2.25rem;
      color: transparent !important; }
  header.top nav ul {
    list-style-type: none; }
  header.top nav > div > div > div > ul {
    position: static;
    text-align: justify;
    text-align-last: justify;
    height: 2rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #00467f; }
    @media (max-width: 61.99em) {
      header.top nav > div > div > div > ul {
        text-align: left;
        text-align-last: left;
        transform: translateX(-102%);
        transition: z-index 0s linear .4s, transform .4s ease 0s; } }
    @media (max-width: 61.99em) {
      .hamburgeropen header.top nav > div > div > div > ul {
        transform: translateX(0); } }
    @media (max-width: 61.99em) {
      .hamburgeropen header.top nav > div > div > div > ul.main {
        transform: translateY(0) translateX(0); } }
    @media (max-width: 61.99em) {
      header.top nav > div > div > div > ul.main, header.top nav > div > div > div > ul.secondary {
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.15); } }
    header.top nav > div > div > div > ul::after {
      content: "";
      display: inline-block;
      width: 100%; }
      @media (max-width: 61.99em) {
        header.top nav > div > div > div > ul::after {
          display: none; } }
    @media (max-width: 61.99em) {
      header.top nav > div > div > div > ul {
        position: absolute;
        left: 0;
        top: 4rem;
        width: 100%; } }
    header.top nav > div > div > div > ul.main {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
      padding-left: 1.5rem; }
      @media (max-width: 61.99em) {
        header.top nav > div > div > div > ul.main {
          background-color: #ffffff;
          height: auto;
          padding: 0;
          z-index: 2;
          top: 15.16rem;
          min-height: calc(100vh - 15.16rem);
          transform: translateY(0) translateX(-102%); } }
      @media (min-width: 62em) {
        header.top nav > div > div > div > ul.main {
          margin-top: 0 !important;
          min-height: 0 !important; } }
      header.top nav > div > div > div > ul.main > li {
        /* &:hover {
            span, a {
              &::after {
                width: 100%;
              }
            }
          } */ }
        header.top nav > div > div > div > ul.main > li span {
          font-size: 1.125rem;
          position: relative;
          outline: none; }
          header.top nav > div > div > div > ul.main > li span::after {
            transition: width .4s;
            content: "";
            position: absolute;
            border-bottom: 4px solid #00467f;
            bottom: -.5rem;
            left: 0;
            width: 0; }
            @media (max-width: 61.99em) {
              header.top nav > div > div > div > ul.main > li span::after {
                display: none; } }
            .no-js header.top nav > div > div > div > ul.main > li span::after {
              display: none; }
        header.top nav > div > div > div > ul.main > li a {
          font-size: 1.125rem;
          position: static;
          outline: none; }
          header.top nav > div > div > div > ul.main > li a::after {
            transition: width .4s;
            content: ""; }
        header.top nav > div > div > div > ul.main > li.hover span, header.top nav > div > div > div > ul.main > li.hover a, .no-js header.top nav > div > div > div > ul.main > li:hover span, .no-js header.top nav > div > div > div > ul.main > li:hover a {
          color: #0080a7; }
          header.top nav > div > div > div > ul.main > li.hover span::after, header.top nav > div > div > div > ul.main > li.hover a::after, .no-js header.top nav > div > div > div > ul.main > li:hover span::after, .no-js header.top nav > div > div > div > ul.main > li:hover a::after {
            width: 100%;
            border-color: #0080a7; }
        header.top nav > div > div > div > ul.main > li.hover .level-2, .no-js header.top nav > div > div > div > ul.main > li:hover .level-2 {
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); }
          @media (max-width: 61.99em) {
            header.top nav > div > div > div > ul.main > li.hover .level-2, .no-js header.top nav > div > div > div > ul.main > li:hover .level-2 {
              box-shadow: none; } }
        header.top nav > div > div > div > ul.main > li span:hover::after, header.top nav > div > div > div > ul.main > li span:focus::after, header.top nav > div > div > div > ul.main > li a:hover::after, header.top nav > div > div > div > ul.main > li a:focus::after {
          width: 100%; }
      header.top nav > div > div > div > ul.main .level-2 {
        margin-top: 1.75rem;
        background: rgba(255, 255, 255, 0.96); }
        .no-js header.top nav > div > div > div > ul.main .level-2 {
          margin-top: 0; }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul.main .level-2 {
            margin-top: -15rem; } }
    header.top nav > div > div > div > ul.secondary {
      text-align: left;
      padding: 0; }
      @media (max-width: 61.99em) {
        .secondaryopen header.top nav > div > div > div > ul.secondary {
          transition-delay: 0s;
          z-index: 3; } }
      @media (max-width: 61.99em) {
        header.top nav > div > div > div > ul.secondary {
          height: auto;
          padding-top: 0;
          border-bottom: 1px solid #bec3c4;
          z-index: 2;
          background: #f2f2f2;
          margin-top: 0; } }
      header.top nav > div > div > div > ul.secondary .level-2 {
        background-color: #f2f2f2;
        margin-top: 0; }
        .no-js header.top nav > div > div > div > ul.secondary .level-2 {
          padding-top: 4rem; }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul.secondary .level-2 {
            height: auto !important;
            top: 0;
            margin-top: 0; } }
      header.top nav > div > div > div > ul.secondary > li {
        /* &.hover, .no-js &:hover {
            > span, > a {
              background-color: $light-grey;
              color: $light-blue;


              &:focus, &:hover, &:active {
                color: red;

              }
            }
          } */
        /* &:hover, &:focus, &:active {
            > span, > a {
              color: $light-blue;
            }

          } */ }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul.secondary > li {
            background-color: #f2f2f2; } }
        header.top nav > div > div > div > ul.secondary > li > span:hover, header.top nav > div > div > div > ul.secondary > li > span:focus, header.top nav > div > div > div > ul.secondary > li > span:active, header.top nav > div > div > div > ul.secondary > li > a:hover, header.top nav > div > div > div > ul.secondary > li > a:focus, header.top nav > div > div > div > ul.secondary > li > a:active {
          color: #0080a7; }
        header.top nav > div > div > div > ul.secondary > li > span, header.top nav > div > div > div > ul.secondary > li > a {
          font-family: NationalBold, sans-serif;
          margin-right: 1rem;
          padding: 1rem 1.5rem;
          transition: all .8s; }
          header.top nav > div > div > div > ul.secondary > li > span:last-child, header.top nav > div > div > div > ul.secondary > li > a:last-child {
            margin-right: 0; }
          @media (max-width: 61.99em) {
            header.top nav > div > div > div > ul.secondary > li > span, header.top nav > div > div > div > ul.secondary > li > a {
              padding: 1rem 2rem 1rem 0; } }
          @media (max-width: 74.99em) {
            header.top nav > div > div > div > ul.secondary > li > span, header.top nav > div > div > div > ul.secondary > li > a {
              margin-right: 0; } }
    header.top nav > div > div > div > ul > li {
      display: inline-block; }
      @media (max-width: 61.99em) {
        header.top nav > div > div > div > ul > li {
          display: block;
          padding: 0 1rem; } }
      @media (max-width: 61.99em) {
        header.top nav > div > div > div > ul > li span, header.top nav > div > div > div > ul > li a {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMjAgMjAiPg0KCTxwYXRoIGZpbGw9IiMwMDQ2N2YiIGQ9Ik01IDIwYy0wLjEyOCAwLTAuMjU2LTAuMDQ5LTAuMzU0LTAuMTQ2LTAuMTk1LTAuMTk1LTAuMTk1LTAuNTEyIDAtMC43MDdsOC42NDYtOC42NDYtOC42NDYtOC42NDZjLTAuMTk1LTAuMTk1LTAuMTk1LTAuNTEyIDAtMC43MDdzMC41MTItMC4xOTUgMC43MDcgMGw5IDljMC4xOTUgMC4xOTUgMC4xOTUgMC41MTIgMCAwLjcwN2wtOSA5Yy0wLjA5OCAwLjA5OC0wLjIyNiAwLjE0Ni0wLjM1NCAwLjE0NnoiLz4NCjwvc3ZnPg0K");
          background-position: 100% 50%;
          background-repeat: no-repeat;
          background-size: 1rem 1rem; } }
      header.top nav > div > div > div > ul > li span, header.top nav > div > div > div > ul > li a {
        display: inline-block;
        cursor: pointer; }
      header.top nav > div > div > div > ul > li span {
        display: inline-block;
        cursor: pointer; }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul > li span {
            font-size: 1.125rem;
            display: block;
            border-bottom: 1px solid #bec3c4;
            padding: 1rem 2rem 1rem 0; } }
      @media (max-width: 61.99em) {
        header.top nav > div > div > div > ul > li:last-child span, header.top nav > div > div > div > ul > li:last-child a {
          border-bottom: none; } }
      header.top nav > div > div > div > ul > li.shown .level-2 {
        display: block; }
      header.top nav > div > div > div > ul > li.hover .level-2, .no-js header.top nav > div > div > div > ul > li:hover .level-2 {
        transform: translateY(0); }
        @media (min-width: 62em) {
          header.top nav > div > div > div > ul > li.hover .level-2, .no-js header.top nav > div > div > div > ul > li:hover .level-2 {
            clip: rect(0, 9999px, 9999px, 0) !important;
            transition-delay: 0s; } }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul > li.hover .level-2, .no-js header.top nav > div > div > div > ul > li:hover .level-2 {
            transform: translateX(0); } }
        header.top nav > div > div > div > ul > li.hover .level-2.notransition ul.level, .no-js header.top nav > div > div > div > ul > li:hover .level-2.notransition ul.level {
          animation: none !important;
          opacity: 1; }
        header.top nav > div > div > div > ul > li.hover .level-2 ul.level, .no-js header.top nav > div > div > div > ul > li:hover .level-2 ul.level {
          animation-name: navtext;
          animation-duration: .8s;
          animation-fill-mode: forwards; }
          @media (max-width: 61.99em) {
            header.top nav > div > div > div > ul > li.hover .level-2 ul.level, .no-js header.top nav > div > div > div > ul > li:hover .level-2 ul.level {
              animation-duration: .4s;
              max-height: 99999px;
              min-height: 585px;
              transition-delay: 0s; } }
      header.top nav > div > div > div > ul > li .level-2 {
        padding: 0;
        overflow: hidden;
        z-index: 1;
        transform: translateY(-100%);
        margin-top: 1rem;
        position: absolute;
        transition: all .8s;
        display: none;
        width: 100%;
        left: 0;
        background: #f2f2f2; }
        .no-js header.top nav > div > div > div > ul > li .level-2 {
          transform: translateY(-150%);
          transition: all 0s; }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul > li .level-2 {
            transition: transform .4s;
            clip: auto !important;
            transform: translateX(-100%);
            top: 4rem;
            position: absolute;
            background: #ffffff !important; } }
        @media (min-width: 62em) {
          header.top nav > div > div > div > ul > li .level-2 {
            top: auto !important; } }
        header.top nav > div > div > div > ul > li .level-2 .container {
          position: relative; }
        header.top nav > div > div > div > ul > li .level-2.notransition ul.level {
          animation: none !important;
          opacity: 0; }
        @media (max-width: 61.99em) {
          header.top nav > div > div > div > ul > li .level-2 .close {
            display: none; } }
        header.top nav > div > div > div > ul > li .level-2 ul.level {
          animation-name: navtextreverse;
          animation-duration: .8s;
          animation-fill-mode: forwards;
          padding: 2.5rem 0 2.5rem;
          text-align: left;
          text-align-last: left;
          /* autoprefixer: off */
          -webkit-column-gap: 1.11rem;
          -moz-column-gap: 1.11rem;
          column-gap: 1.11rem;
          /* autoprefixer: on */ }
          @media (max-width: 61.99em) {
            header.top nav > div > div > div > ul > li .level-2 ul.level {
              padding: 0 1rem;
              max-height: 0;
              transition: max-height 0s linear .4s; } }
          @media (min-width: 62em) {
            header.top nav > div > div > div > ul > li .level-2 ul.level {
              /* autoprefixer: off */
              -moz-column-count: 4;
              -webkit-column-count: 4;
              column-count: 4;
              /* autoprefixer: on */ } }
          header.top nav > div > div > div > ul > li .level-2 ul.level > li {
            overflow: hidden;
            /* autoprefixer: off */
            -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
            -moz-column-break-inside: avoid;
            column-break-inside: avoid;
            break-inside: avoid;
            break-inside: avoid-column;
            /* autoprefixer: on */
            padding: 1.5rem 0 1rem;
            border-bottom: 1px solid #bec3c4; }
            header.top nav > div > div > div > ul > li .level-2 ul.level > li > a {
              display: block;
              color: #0080a7;
              font-family: NationalBold, sans-serif;
              font-weight: normal;
              font-size: 1rem;
              line-height: 1.1;
              margin-bottom: .5rem; }
              @media (max-width: 61.99em) {
                header.top nav > div > div > div > ul > li .level-2 ul.level > li > a {
                  margin-bottom: 1rem;
                  font-size: 1.125rem; } }
              @media (min-width: 75em) {
                header.top nav > div > div > div > ul > li .level-2 ul.level > li > a {
                  margin-bottom: .75rem;
                  font-size: 1.125rem; } }
            header.top nav > div > div > div > ul > li .level-2 ul.level > li > ul {
              padding: 0; }
              header.top nav > div > div > div > ul > li .level-2 ul.level > li > ul li {
                display: block;
                margin-bottom: .75rem;
                line-height: 1.2; }
                @media (max-width: 61.99em) {
                  header.top nav > div > div > div > ul > li .level-2 ul.level > li > ul li {
                    margin-bottom: 1rem; } }
                header.top nav > div > div > div > ul > li .level-2 ul.level > li > ul li a {
                  color: #00467f;
                  font-size: 0.888rem; }
                  @media (max-width: 61.99em) {
                    header.top nav > div > div > div > ul > li .level-2 ul.level > li > ul li a {
                      font-size: 1rem;
                      padding-right: 2rem;
                      display: block; } }
                  @media (min-width: 75em) {
                    header.top nav > div > div > div > ul > li .level-2 ul.level > li > ul li a {
                      font-size: 1rem; } }

.hamburgeropen.apply-now-cta {
  padding-top: 59px; }

.hamburgeropen .apply-now-area {
  position: fixed;
  top: 0;
  width: 100%; }

.apply-now-area + .header-wrapper .top ul.secondary {
  top: 14px; }

.apply-now-area + .header-wrapper .top ul.main {
  top: 11.95rem; }

@media (max-width: 61.99em) {
  .hamburgeropen .apply-now-area + .header-wrapper header.top .search {
    position: fixed; } }

/* For each key in the map, created an own class */
.business-and-economics .listing-item__link:before {
  background-color: #7D0063; }

.business-and-economics .listing-item__info .faculty {
  color: #7D0063; }

.business-and-economics .banner__content {
  border-top-color: #7D0063; }

.business-and-economics .banner__faculty {
  color: #7D0063; }

.business-and-economics .quick-facts {
  background-color: #7D0063; }

.business-and-economics .quick-facts__list:nth-child(even) {
  background-color: #64004f; }

.business-and-economics .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #7D0063; }

.business-and-economics .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #7D0063; }

.arts .listing-item__link:before {
  background-color: #a71930; }

.arts .listing-item__info .faculty {
  color: #a71930; }

.arts .banner__content {
  border-top-color: #a71930; }

.arts .banner__faculty {
  color: #a71930; }

.arts .quick-facts {
  background-color: #a71930; }

.arts .quick-facts__list:nth-child(even) {
  background-color: #91162a; }

.arts .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #a71930; }

.arts .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #a71930; }

.creative-arts-and-industries .listing-item__link:before {
  background-color: #cc4729; }

.creative-arts-and-industries .listing-item__info .faculty {
  color: #cc4729; }

.creative-arts-and-industries .banner__content {
  border-top-color: #cc4729; }

.creative-arts-and-industries .banner__faculty {
  color: #cc4729; }

.creative-arts-and-industries .quick-facts {
  background-color: #cc4729; }

.creative-arts-and-industries .quick-facts__list:nth-child(even) {
  background-color: #b74025; }

.creative-arts-and-industries .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #cc4729; }

.creative-arts-and-industries .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #cc4729; }

.science .listing-item__link:before {
  background-color: #0039a6; }

.science .listing-item__info .faculty {
  color: #0039a6; }

.science .banner__content {
  border-top-color: #0039a6; }

.science .banner__faculty {
  color: #0039a6; }

.science .quick-facts {
  background-color: #0039a6; }

.science .quick-facts__list:nth-child(even) {
  background-color: #00308d; }

.science .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #0039a6; }

.science .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #0039a6; }

.medical-and-health-sciences .listing-item__link:before {
  background-color: #008075; }

.medical-and-health-sciences .listing-item__info .faculty {
  color: #008075; }

.medical-and-health-sciences .banner__content {
  border-top-color: #008075; }

.medical-and-health-sciences .banner__faculty {
  color: #008075; }

.medical-and-health-sciences .quick-facts {
  background-color: #008075; }

.medical-and-health-sciences .quick-facts__list:nth-child(even) {
  background-color: #00675e; }

.medical-and-health-sciences .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #008075; }

.medical-and-health-sciences .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #008075; }

.law .listing-item__link:before {
  background-color: #005b82; }

.law .listing-item__info .faculty {
  color: #005b82; }

.law .banner__content {
  border-top-color: #005b82; }

.law .banner__faculty {
  color: #005b82; }

.law .quick-facts {
  background-color: #005b82; }

.law .quick-facts__list:nth-child(even) {
  background-color: #004969; }

.law .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #005b82; }

.law .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #005b82; }

.education-and-social-work .listing-item__link:before {
  background-color: #448517; }

.education-and-social-work .listing-item__info .faculty {
  color: #448517; }

.education-and-social-work .banner__content {
  border-top-color: #448517; }

.education-and-social-work .banner__faculty {
  color: #448517; }

.education-and-social-work .quick-facts {
  background-color: #448517; }

.education-and-social-work .quick-facts__list:nth-child(even) {
  background-color: #396f13; }

.education-and-social-work .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #448517; }

.education-and-social-work .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #448517; }

.engineering .listing-item__link:before {
  background-color: #4f2d7f; }

.engineering .listing-item__info .faculty {
  color: #4f2d7f; }

.engineering .banner__content {
  border-top-color: #4f2d7f; }

.engineering .banner__faculty {
  color: #4f2d7f; }

.engineering .quick-facts {
  background-color: #4f2d7f; }

.engineering .quick-facts__list:nth-child(even) {
  background-color: #43266c; }

.engineering .uoa-tabs--programmes .uoa-tabs__links:after {
  background-color: #4f2d7f; }

.engineering .uoa-tabs--programmes .is-active .uoa-tabs__links {
  color: #4f2d7f; }

/*!
========== PAGES
*/

.top-bar {
    margin: 0 auto;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    color: #0080a7;
    background-color: #0080a7;
    height: 70px;
    width: 100%;
}

.logo {
    padding: 10px 10px 25px 10px;
    z-index: 2;
}

.logo h2 {
    font-family: 'NationalBold', sans-serif;
    font-size: 36px;
    color: #00467f;
}

.logo h4 {
    font-family: 'NationalBold', sans-serif;
}

.logo span {
    font-size: 24px;
}

.logo-big {
    width: 200px;
    height: 200px;
}

.logo-small {
    max-width: 50%;
    width: 150px;
    height: 150px;
}

.form-title-desktop {
    margin-top: 80px;
    margin-left: 22px;
}

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

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.ext-strict #CQ .x-form-text {
    height: 22px;
}

.ext-strict #CQ .x-fieldset legend span {
    font: bold 11px tahoma, arial, helvetica, sans-serif;
    color: #777;
}

#CQ .x-tree-node span {
    font-size: 11px;
}

/*
     _____
    |  ___|__  _ __ _ __ ___
    | |_ / _ \| '__| '_ ` _ \
    |  _| (_) | |  | | | | | |
    |_|  \___/|_|  |_| |_| |_|

 */



.FormHealthCheck__container {
    padding-top: 40px;
}

    .FormHealthCheck__container--hidden {
        display: none;
    }

.FormHealthCheck__title {
    margin-bottom: 20px;
}

.FormHealthCheck__text {
}

/*
    Form container
 */

.Form__container {}

    .Form__container--hidden {
        display: none;
    }


.Form__fieldError {
    color: darkred;
}

.Form__fieldError.Form__fieldError--field {
    padding-bottom: 20px;
}


