/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

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

* {
  box-sizing: border-box; }

a {
  text-decoration: none; }

input {
  border-radius: 0;
  -webkit-appearance: none; }

/** @color Blue **/
/** @color Blue dark **/
/** @color Action **/
/** @color Text dark **/
/** @color Grey **/
body * {
  font-family: "Segoe UI", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; }

.clickarea {
  position: absolute;
  width: 44px;
  height: 44px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.flex-two {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex; }
  .flex-two > * {
    -webkit-flex: 1;
    flex: 1; }

.flex-two--vcenter {
  -webkit-align-items: center;
  align-items: center; }

footer {
  background: #272727;
  height: 70px; }

.footer-container {
  height: 100%;
  width: 100%;
  background: url("../img/logo.svg") no-repeat left;
  background-size: 150px auto;
  background-origin: content-box;
  padding: 0 20px; }

@media all and (min-width: 700px) {
  footer {
    height: 100px; }
  .footer-container {
    background-size: 200px auto; } }

@media all and (min-width: 1000px) {
  .footer-container {
    max-width: 1200px;
    margin: auto; } }

/**
 * @atom Button
 * @section Buttons
 * @markup
 *  <a href="#" class="button">Button text</a>
 */
.button, .submit {
  background: #F47812;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  height: 44px;
  line-height: 44px;
  padding: 0 20px;
  text-align: center; }

/**
 * @atom Stretch button
 * @section Buttons
 * @markup
 *  <a href="#" class="button button--stretch">Stretching button</a>
 */
.button--stretch {
  width: 100%; }

.button--small {
  font-size: 14px;
  height: 34px;
  line-height: 34px;
  padding: 0 15px; }

.button--wide {
  padding: 0 35px; }

/**
 * @atom Input text
 * @section Form
 * @markup
 *  <input type="text" placeholder="Placeholder text" />
 *  <input type="text" value="Lorem ipsum" />
 */
.input-text, #key {
  border-radius: 2px;
  height: 44px;
  font-size: 16px;
  padding: 0 10px;
  border: 1px solid #D0CECE;
  margin-bottom: 15px; }

.input-text--stretch {
  width: 100%; }

/**
 * @atom Label
 * @section Form
 * @markup
 *  <label for="field">Field label</label>
 *  <input id="field" type="text" placeholder="Placeholder text" />
 */
.label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px; }

.label--light {
  color: #fff; }

.form-msg {
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  margin-bottom: 15px; }

.form-msg--error {
  color: #f5811f; }

.forgot-password {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  text-decoration: underline;
  font-size: 12px; }

.form-fieldbutton {
  overflow: hidden; }
  .form-fieldbutton .input-text, .form-fieldbutton #key {
    border-radius: 2px 0 0 2px;
    width: 100%; }
  .form-fieldbutton .button, .form-fieldbutton .submit {
    border-radius: 0px 2px 2px 0px;
    width: 100%;
    max-width: 40%;
    float: right;
    height: 35px;
    line-height: 35px; }

.article {
  max-width: 1200px;
  margin: auto;
  font-size: 16px; }

/**
 * @atom Headlines
 * @section Article
 * @markup
 *  <article class="article">
 *    <h1>This is a headline 1</h1>
 *    <h2>This is a headline 2</h2>
 *  </article>
 */
.article h1 {
  color: #00426C;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.25em;
  margin-bottom: 9px; }

.article h2 {
  color: #00426C;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.27778em; }

.article p + h2 {
  margin-top: 1.125em; }

.article time {
  font-size: 0.8125em;
  line-height: 1.53846em;
  margin-bottom: 11px;
  color: #AAAAAA; }

/**
 * @atom Paragraph
 * @section Article
 * @markup
 *  <article class="article">
 *    <p>@{lipsum:10:words} <a href="#">@{lipsum:2:words}</a> @{lipsum:8:words}</p>
 *    <p>@{lipsum:10:words} <strong>@{lipsum:2:words}</strong> @{lipsum:8:words} <em>lorem ipsum</em> @{lipsum:10:words}</p>
 *  </article>
 */
.article p {
  font-size: 0.875em;
  line-height: 1.42857em; }

.article p + p {
  margin-top: 1.25em; }

/**
 * @atom List
 * @section Article
 * @markup
 *  <article class="article">
 *    <ul>
 *      <li>Lorem ipsum dolor</li>
 *      <li>Lorem ipsum dolor</li>
 *      <li>Lorem ipsum dolor</li>
 *      <li>Lorem ipsum dolor</li>
 *    </ul>
 *  </article>
 */
.article ul {
  font-size: 0.875em;
  line-height: 1.42857em;
  list-style-type: disc;
  padding-left: 20px; }

.article p + ul {
  margin-top: 20px; }

.article a {
  color: #00426C;
  font-weight: bold; }

.article strong {
  font-weight: bold; }

.article em {
  font-style: italic; }

.article img {
  display: block;
  width: 100%;
  height: auto;
  margin: 16px 0; }

.article .wp-caption {
  width: 100% !important;
  margin-bottom: 16px; }
  .article .wp-caption img {
    width: 100% !important;
    margin-bottom: 0px; }

.article .wp-caption-text {
  margin-top: 6px;
  color: #AAAAAA;
  font-size: 0.75em;
  line-height: 1.25em;
  text-align: center; }

@media all and (min-width: 700px) {
  .article {
    font-size: 18px; } }

@media all and (min-width: 1000px) {
  .article {
    max-width: 1200px; } }

.top-image {
  height: 192px;
  overflow: hidden;
  background-size: cover; }

.icon-list {
  font-size: 13px;
  line-height: 16px; }
  .icon-list .fa {
    font-size: 18px;
    display: block;
    max-width: 30px;
    width: 30px;
    color: #444; }
  .icon-list li {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    margin-bottom: 10px; }
  .icon-list a {
    color: #00426C;
    font-weight: bold; }

.switch {
  font-size: 0;
  margin-bottom: 15px; }

.switch__option {
  font-size: 13px;
  height: 36px;
  vertical-align: bottom;
  line-height: 34px;
  font-weight: bold;
  color: #333;
  text-align: center;
  display: inline-block;
  width: 50%;
  background-color: #FBFBFB;
  border: 1px solid #D0CECE; }
  .switch__option a {
    display: block;
    color: #005284;
    line-height: 34px; }

.switch__option--active {
  border: none;
  padding: 1px;
  background-color: #D0CECE;
  box-shadow: inset -2px 0 2px 0 rgba(0, 0, 0, 0.07); }

.topbar {
  background: white;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  -webkit-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  height: 66px;
  padding: 0 20px; }

.topbar__title {
  color: black;
  font-size: 16px;
  font-weight: 300;
  line-height: 66px; }
  .topbar__title a {
    color: inherit;
    display: flex;
    height: 100%;
    align-items: center; }
  .topbar__title img {
    width: auto; }

.topbar__menutoggle {
  color: black;
  line-height: 66px;
  margin-right: 28px;
  position: relative; }

@media all and (min-width: 700px) {
  .topbar {
    height: 66px;
    -webkit-flex-flow: row;
    flex-flow: row;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
  .topbar__menutoggle {
    display: none; } }

@media all and (min-width: 1000px) {
  .topbar__title {
    font-size: 25px;
    line-height: 90px; }
  .topbar {
    height: 90px;
    max-width: 1200px;
    margin: auto; } }

.nav-primary {
  background: #00426C;
  box-shadow: inset -2px 0 4px 0 rgba(0, 34, 55, 0.52);
  left: -75%;
  bottom: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  width: 75%;
  -webkit-transition: left .3s;
  /* Safari */
  transition: left .3s; }
  .site--menuopen .nav-primary {
    left: 0; }

.nav-primary__title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  font-size: 24px;
  line-height: 29px;
  margin-top: 9px;
  padding-bottom: 8px; }

.menu-item {
  font-size: 16px;
  line-height: 45px; }
  .menu-item a {
    display: block;
    color: white;
    line-height: 45px; }

.current-menu-item {
  font-weight: bold; }

@media all and (min-width: 700px) {
  .nav-primary {
    background: none;
    box-shadow: none;
    position: static;
    padding: 0;
    width: auto;
    color: black; }
  .nav-primary__title {
    display: none; }
  .menu-item {
    border: 0;
    display: inline-block;
    border-right: 2px solid #FA8200;
    float: left; }
    .menu-item a {
      line-height: 66px;
      padding: 0 20px;
      color: black; }
  .current-menu-item {
    background: #FA8200; }
    .current-menu-item a {
      color: white; } }

@media all and (min-width: 1000px) {
  .menu-item a {
    line-height: 90px;
    padding: 0 35px;
    float: left;
    border-right: 2px solid #FA8200; }
    .menu-item a:last-child {
      border-right: none; } }

.page {
  padding: 20px; }

.page__fullwidth {
  box-sizing: padding-box;
  margin-left: -20px;
  width: calc(100% + 40px); }

.page__title {
  color: #00426C;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 16px; }

.page__imagetext img {
  width: 100%;
  margin: -16px 0 16px 0; }

.sidebar {
  display: none; }

@media all and (min-width: 700px) {
  .page-wrap, #signup-content {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    padding: 30px 20px;
    max-width: 1000px;
    margin: auto; }
    .page-wrap > *, #signup-content > * {
      -webkit-flex: 1;
      flex: 1; }
  .page__imagetext {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex; }
    .page__imagetext img {
      max-width: 48%;
      height: auto;
      margin-right: 4%; }
  .page {
    padding: 0; }
  .page__fullwidth {
    margin-left: 0;
    width: 100%; }
  .sidebar {
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    margin-left: 20px;
    display: block; } }

@media all and (min-width: 1000px) {
  .page-wrap, #signup-content {
    max-width: 1200px; }
  .sidebar {
    margin-left: 50px; }
  .page__fullwidth--half {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .page__fullwidth--half > * {
      -webkit-flex: 1;
      flex: 1;
      min-width: 49%;
      max-width: 49%;
      margin: 0 !important;
      margin-bottom: 2% !important; } }

.box {
  background: #005284;
  transition: all 0.2s; }
  .box p {
    color: #fff; }

.box--inline {
  margin-bottom: 16px; }

.box--grow.box--open {
  width: calc(100% + 40px);
  margin-left: -20px; }

.box__header {
  background: #00426C;
  color: #fff;
  line-height: 55px;
  padding: 0px 20px; }
  .box__header i {
    margin-right: 8px; }
  .box__header:active {
    background: #003c62; }
  .box--inline .box__header {
    line-height: 44px; }

.box__icon {
  color: #F47812;
  font-size: 20px;
  float: right;
  line-height: 52px;
  transition: all 0.2s; }
  .box--open .box__icon {
    transform: rotate(90deg); }
  .box--inline .box__icon {
    line-height: 43px; }

.box__icon--close {
  display: none; }
  .box--open .box__icon--close {
    display: inline-block; }

.box__wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms; }
  .box--open .box__wrap {
    max-height: 10000px; }

.box__content, .wp-activate-container {
  padding: 20px 20px;
  opacity: 0;
  transition: opacity 300ms;
  transition-delay: 100ms; }
  .box--open .box__content, .box--open .wp-activate-container {
    opacity: 1; }

.box__content--list {
  padding: 0; }
  .box__content--list .menu-item, .box__content--list .page-item, .box__content--list li {
    height: 45px;
    margin: 0 20px;
    display: block;
    border-bottom: 1px solid #00426C; }
    .box__content--list .menu-item a, .box__content--list .page-item a, .box__content--list li a {
      color: #fff;
      line-height: 45px;
      padding: 0; }
    .box__content--list .menu-item:last-child, .box__content--list .page-item:last-child, .box__content--list li:last-child {
      border: 0; }

.box__line {
  border: 0;
  height: 1px;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 10px; }

@media all and (min-width: 700px) {
  .box__content, .wp-activate-container {
    opacity: 1; }
  .box__wrap {
    max-height: none; } }

.simple-list {
  color: #fff; }
  .simple-list * {
    color: inherit; }
  .simple-list li {
    font-size: 13px;
    line-height: 22px; }

.simple-list__header {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 3px;
  font-weight: bold; }

.pagination {
  margin: 30px 0;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.pagination__item {
  color: #BABABA;
  min-width: 44px;
  min-height: 44px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center; }
  .pagination__item a {
    color: inherit;
    font-size: 17px;
    font-weight: bold;
    display: block;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center; }

.pagination__item--current {
  background: #00426C;
  color: #fff; }

.pagination__ellipsis {
  color: #BABABA;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center; }

.pagination__item--arrow {
  background-color: #EDEDED;
  font-size: 24px;
  position: relative; }
  .pagination__item--arrow a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }

.news-item {
  background-color: #FBFBFB;
  border: 1px solid #D0CECE;
  border-right-width: 0;
  border-left-width: 0;
  padding: 15px 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center; }
  .news-item + .news-item {
    margin-top: 10px; }
  .news-item .attachment-thumbnail {
    border-radius: 50%;
    margin-right: 16px;
    margin-bottom: 16px; }
  .news-item__text {
    padding-right: 20px;
    flex-grow: 1; }

.news-item__title {
  color: black;
  font-size: 18px;
  font-weight: bold;
  line-height: 23px;
  margin-bottom: 5px; }
  .news-item__title a {
    color: inherit; }

.news-item__subtitle {
  font-size: 14px; }

.news-item__private {
  color: #F47812;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px; }

.attachment-thumbnail + .news-item__title {
  margin-top: 16px;
  margin-bottom: 2px; }

.news-item__teaser {
  clear: both;
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 17px; }

.news-item__date {
  color: #aaa;
  line-height: 20px;
  font-size: 13px;
  margin-bottom: 6px; }

.news-item__button-note {
  color: #aaa;
  line-height: 18px;
  font-size: 13px;
  margin-left: 14px;
  white-space: normal;
  min-width: 50%;
  font-style: italic;
  vertical-align: middle; }

@media all and (min-width: 700px) {
  .news-item {
    border-right-width: 1px;
    border-left-width: 1px; } }

@media all and (min-width: 1000px) {
  .news-item {
    flex-direction: row; }
  .news-item--half {
    width: 48%;
    display: inline-block; } }

.wp-activate-container {
  opacity: 100; }

html, body {
  height: 100%; }

.site {
  min-height: 100%;
  -webkit-transition: margin-left .3s;
  /* Safari */
  transition: margin-left .3s;
  width: 100%; }

.site--menuopen {
  margin-left: 75%;
  height: 100%;
  overflow-y: hidden; }

.tablet {
  display: none; }

@media all and (min-width: 700px) {
  .phone {
    display: none; }
  .tablet {
    display: block; } }
