@charset "UTF-8";
/*

SASS 7-1 pattern, as described @ http://sass-guidelin.es/#the-7-1-pattern
Use pattern below - but replace example files with true files.

sass/
|
|- base/
|   |- _base.scss        # The base - defining standards.
|   |- _draft.scss       # Where I put all initial sketch code before moving it into correct parts
|   |- _normalize.scss   # Reset/normalize
|   |- _typography.scss  # Typography rules
|   ...                  # Etc…
|
|- components/
|   |- _buttons.scss     # Buttons
|   |- _carousel.scss    # Carousel
|   |- _cover.scss       # Cover
|   |- _dropdown.scss    # Dropdown
|   ...                  # Etc…
|
|- layout/
|   |- _navigation.scss  # Navigation
|   |- _grid.scss        # Grid system
|   |- _header.scss      # Header
|   |- _footer.scss      # Footer
|   |- _sidebar.scss     # Sidebar
|   |- _forms.scss       # Forms
|   ...                  # Etc…
|
|- pages/
|   |- _home.scss        # Home specific styles
|   |- _contact.scss     # Contact specific styles
|   ...                  # Etc…
|
|- themes/
|   |- _theme.scss       # Default theme
|   |- _admin.scss       # Admin theme
|   ...                  # Etc…
|
|- utils/
|   |- _variables.scss   # Sass Variables
|   |- _functions.scss   # Sass Functions
|   |- _mixins.scss      # Sass Mixins
|   |- _placeholders.scss# Class & placeholders helpers
|   |- _animations.scss  # Animations
|
|- vendors/
|   |- _bootstrap.scss   # Bootstrap
|   |- _jquery-ui.scss   # jQuery UI
|   ...                  # Etc…
|
|- vendor-overwrite/
|   |- _bootstrap.scss   # Overwrite stuff from Bootstrap
|
|
`- main.scss             # Main Sass file



IMPORT IN THIS ORDER:

@import 'vendors/bootstrap';
@import 'vendors/jquery-ui';

@import 'utils/variables';
@import 'utils/functions';
@import 'utils/mixins';
@import 'utils/placeholders';

@import 'base/normalize';
@import 'base/typography';
@import 'base/base';

@import 'layout/navigation';
@import 'layout/grid';
@import 'layout/header';
@import 'layout/footer';
@import 'layout/sidebar';
@import 'layout/forms';

@import 'components/buttons';
@import 'components/carousel';
@import 'components/cover';
@import 'components/dropdown';

@import 'pages/home';
@import 'pages/contact';

@import 'themes/theme';
@import 'themes/admin';

*/
/*   VARIABLES */
/*** INSTRUCTIONS
// ======================================

Use shorthand to make reference with autocomplete easier:


$c-red              | pure colors - white/blue/green5 etc.
$cv-main-background | color variables - used for the color options

$f-sans             | pure font sets
$fv-bodytext        | font variables

etc.


*/
@import url(https://fonts.googleapis.com/css?family=Tinos:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,400italic,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
.dev .todo {
  color: #F96891; }

/* MIXINS */
/* PLACEHOLDERS */
.boxed-element, .profile-element, .faq-element {
  *zoom: 1; }
  .boxed-element:before, .profile-element:before, .faq-element:before, .boxed-element:after, .profile-element:after, .faq-element:after {
    content: " ";
    display: table; }
  .boxed-element:after, .profile-element:after, .faq-element:after {
    clear: both; }

html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.forceHidden,
.forcedHidden,
.hidden,
.hide {
  display: none; }

footer .covered-brands {
  display: table;
  width: 100%; }
  footer .covered-brands > li {
    display: table-cell;
    vertical-align: middle;
    text-align: center; }


.disabled {
  pointer-events: none;
  opacity: 0.5; }

/*  INSPIRATION FOR SPRITE SYSTEM - AS USED IN VK PROJECT

// Placeholders for sprites - to make it easy to adjust background-size, add resolutions etc.


%all-icons-sprite {

    background: transparent url(../gfx/all-icons-sprite.png) no-repeat 1000px 1000px;

    @include screen(retina) {
        background: transparent url(../gfx/all-icons-sprite@2x.png) no-repeat;
        background-size: 600px 600px;
    }

    @include screen(superscreen) {
        background: transparent url(../gfx/all-icons-sprite@3x.png) no-repeat;
        background-size: 600px 600px;
    }
}


%footer-sprite {
    background: url(../gfx/footer-sprite.png) no-repeat 1000px 1000px;

    @include screen(retina) {
        background-image: url(../gfx/footer-sprite@2x.png);
        background-size: 726px 228px;
    }
}

%menu-icons {
    background: url(../gfx/menu-icons.png) no-repeat 1000px 1000px;

    @include screen(retina) {
        background-image: url(../gfx/menu-icons@2x.png);
        background-size: 600px 250px;
    }

    @include screen(superscreen) {
        background: transparent url(../gfx/menu-icons@3x.png) no-repeat;
        background-size: 600px 250px;
    }
}

*/
/* USAGE;

    @include keyframes(slide-down) {
        0% { opacity: 1; }
        90% { opacity: 0; }
    }

    .element {
        width: 100px;
        height: 100px;
        background: black;
        @include animation('slide-down 5s 3');
    }
*/
.animated,
.animate-bounce {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }


.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animate-bounce,
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

/* Animate text and elements */
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.animate-bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/**
 * Hilde: Override disturbing focus
 */
a:focus,
button:focus {
  outline: 1px dotted #ccc; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: transparent;
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
  -webkit-appearance: none; }

input[type="number"] {
  -moz-appearance: textfield; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* Lists
   ========================================================================== */
/**
 * Reset defaults for margin, padding and list-style of lists
 */
ul {
  margin: 0;
  padding: 0;
  list-style-type: circle; }

/* GENERAL STYLING of ELEMENTS */
html {
  font-size: 16px;
  line-height: 1.65; }
  @media (min-width: 960px) {
    html {
      font-size: 18px;
      line-height: 1.7; } }

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

body {
  font-family: Roboto, "Helvetica Neue", arial, sans-serif;
  color: #545454;
  background: #f5f5f5; }

a, a:link {
  color: #373737; }

a:visited {
  color: #545454; }

a:hover {
  color: #d00; }

.letter-list {
  list-style-type: lower-alpha; }

/* DRAFT STYLES */
.todo {
  color: #f800db !important;
  font-size: 1.5em; }

input[type="submit"],
button {
  box-shadow: none;
  text-shadow: none;
  filter: none;
  border: none;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  padding: 4px 8px;
  background: #e0e0e0;
  border-radius: 2px;
  font-size: 14px; }
  input[type="submit"].plain,
  button.plain {
    font-size: 13px;
    background: transparent; }
    .is-not-expanded input[type="submit"].plain:after, .is-not-expanded
    button.plain:after {
      content: " +"; }
    .is-expanded input[type="submit"].plain:after, .is-expanded
    button.plain:after {
      content: " +"; }

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column; }

main {
  flex: 1;
  /* push footer to bottom */
  padding: 40px 0; }

.page-title {
  margin: 0 3%;
  color: #fff;
  font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2); }
  @media (min-width: 600px) {
    .page-title {
      margin: 0; } }

.separator-title {
  clear: both;
  max-width: 580px;
  margin: 50px 3% 0;
  color: #d00;
  font-size: 22px;
  line-height: 1.3;
  font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding-right: 50px; }
  @media (min-width: 600px) {
    .separator-title {
      margin: 80px auto 2px; } }
  @media (min-width: 960px) {
    .separator-title {
      max-width: 880px; } }
  .separator-title button {
    position: absolute;
    right: 0;
    top: 0;
    color: #8c8c8c; }

header[role="banner"] .responsive-wrapper {
  padding: 0 40px 0 0; }

header[role="banner"] .vglogo {
  right: 3%; }

/* styling main elements */
header[role="banner"] {
  width: 100%;
  padding-top: 50px;
  background: #d00;
  padding-bottom: 50px;
  margin-bottom: -100px; }
  header[role="banner"] > div {
    position: relative; }
  header[role="banner"] .vglogo {
    width: 20%;
    min-width: 70px;
    max-width: 130px;
    height: auto;
    position: absolute;
    top: -30px;
    fill: #fff; }
  header[role="banner"] .responsive-text {
    white-space: nowrap;
    display: inline-block; }

/* boxed element */
/* reuse for profile elements, faq elements etc. */
.boxed-element,
.profile-element,
.faq-element {
  margin: 20px 1%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12); }
  .boxed-element .boxed-bottom-nav a, .profile-element .boxed-bottom-nav a, .faq-element .boxed-bottom-nav a {
    display: block;
    color: #419bf9;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 10px 10px 20px;
    font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif; }
    .boxed-element .boxed-bottom-nav a:hover, .profile-element .boxed-bottom-nav a:hover, .faq-element .boxed-bottom-nav a:hover {
      text-decoration: underline; }
  @media (max-width: 600px) {
    .boxed-element .boxed-bottom-nav a, .profile-element .boxed-bottom-nav a, .faq-element .boxed-bottom-nav a {
      font-size: 14px;
      border-top: 1px solid #f5f5f5; } }
  @media (min-width: 600px) {
    .boxed-element .boxed-bottom-nav ul, .profile-element .boxed-bottom-nav ul, .faq-element .boxed-bottom-nav ul {
      display: table;
      width: 100%;
      border-top: 1px solid #f5f5f5; }
      .boxed-element .boxed-bottom-nav ul > li, .profile-element .boxed-bottom-nav ul > li, .faq-element .boxed-bottom-nav ul > li {
        display: table-cell;
        vertical-align: middle;
        text-align: center; }
    .boxed-element .boxed-bottom-nav li, .profile-element .boxed-bottom-nav li, .faq-element .boxed-bottom-nav li {
      padding: 5px 20px;
      line-height: 1.2; }
      .boxed-element .boxed-bottom-nav li + li a, .profile-element .boxed-bottom-nav li + li a, .faq-element .boxed-bottom-nav li + li a {
        border-left: 1px solid #e0e0e0; }
    .boxed-element .boxed-bottom-nav a, .profile-element .boxed-bottom-nav a, .faq-element .boxed-bottom-nav a {
      font-size: 12px; } }
  .boxed-element header, .profile-element header, .faq-element header {
    padding: 20px; }
    .boxed-element header + section, .profile-element header + section, .faq-element header + section {
      border-top: 1px solid #f5f5f5; }
    .boxed-element header h2, .profile-element header h2, .faq-element header h2 {
      color: #d00;
      font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif;
      font-size: 18px;
      font-weight: 300;
      text-transform: uppercase; }
      @media (max-width: 600px) {
        .boxed-element header h2, .profile-element header h2, .faq-element header h2 {
          letter-spacing: -1px; } }
      @media (min-width: 960px) {
        .boxed-element header h2, .profile-element header h2, .faq-element header h2 {
          font-size: 20px; } }
    .boxed-element header p, .profile-element header p, .faq-element header p {
      font-size: 12px;
      font-style: italic; }
  .boxed-element > section, .profile-element > section, .faq-element > section {
    padding: 20px 3%;
    font-size: 15px; }
    @media (min-width: 600px) {
      .boxed-element > section, .profile-element > section, .faq-element > section {
        padding: 20px; } }
    @media (min-width: 960px) {
      .boxed-element > section, .profile-element > section, .faq-element > section {
        font-size: 18px; } }
  .boxed-element p, .profile-element p, .faq-element p {
    margin: 0 0 1.5em; }
  .boxed-element h3, .profile-element h3, .faq-element h3 {
    font-size: 18px;
    font-weight: normal;
    font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif;
    color: #d00; }
  .boxed-element h4, .profile-element h4, .faq-element h4 {
    font-size: 16px;
    font-weight: normal;
    color: #d00;
    font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif; }
  .boxed-element h5, .profile-element h5, .faq-element h5 {
    font-size: 14px;
    font-weight: 700;
    font-family: "Roboto Condensed", "Helvetica Neue", arial, sans-serif;
    text-transform: uppercase; }

/* Adjusting major margins for small vs. large screens */
@media (min-width: 600px) {
  header[role="banner"] > div,
  .profile-element,
  .faq-element,
  .boxed-element {
    max-width: 580px; }
  header[role="banner"] > div {
    margin: 0 auto; }
  header[role="banner"] .vglogo {
    right: 0; }
  .boxed-element,
  .profile-element,
  .faq-element {
    margin: 20px auto; } }

@media (min-width: 960px) {
  header[role="banner"] > div,
  .profile-element,
  .faq-element,
  .boxed-element {
    max-width: 880px; } }

/* General styling of all profile boxes */
/* FAQ-elements are similar to profile elements, but only the header is visible until clicked - then the content is expanded */
.faq-element {
  margin-top: 4px;
  margin-bottom: 4px; }
  .faq-element.is-expanded {
    margin-bottom: 40px; }
  .faq-element header {
    position: relative;
    /* ICON before title

        &:before {
            font-family: "Material Icons";
            transform: translateY(-50%);
            content: "\e887";
            font-size: 24px;
            color: $cv-icon-light;
            left: 2%;

            @include screen(not-tiny) {
                font-size: 36px;
                left: 4%;
            }
        }
        */ }
    .faq-element header h2 {
      color: #419bf9;
      line-height: 1.3;
      padding-right: 40px;
      text-transform: none; }
      @media (min-width: 600px) {
        .faq-element header h2 {
          padding-left: 3%; } }
    .faq-element header:before, .faq-element header:after {
      display: block;
      position: absolute;
      top: 50%; }
    .faq-element header.toggle-expanded:after {
      content: "+";
      right: 3%;
      margin-top: -15px;
      font-size: 18px;
      color: #8c8c8c;
      transition: transform .3s; }
  .faq-element.is-expanded .toggle-expanded:after {
    transform: rotate(45deg); }

.faq-answer > h3,
.faq-answer > h4,
.faq-answer > p,
.faq-answer > ol {
  margin: 0;
  padding: 0 1% 1.5em 5%;
  border-left: 10px solid #e0e0e0; }
  .faq-answer > h3:last-child,
  .faq-answer > h4:last-child,
  .faq-answer > p:last-child,
  .faq-answer > ol:last-child {
    padding-bottom: 0;
    margin-bottom: 1.5em; }
  @media (min-width: 600px) {
    .faq-answer > h3,
    .faq-answer > h4,
    .faq-answer > p,
    .faq-answer > ol {
      margin-left: 3%;
      padding: 0 1% 1.5em 7%;
      border-left: 10px solid #e0e0e0; } }

@media (max-width: 600px) {
  .faq-answer ol {
    list-style-position: inside; } }

.faq-answer > h3 {
  padding: 0 0 .5em 5%; }

.faq-answer > h4 {
  padding: 0 0 .5em 5%; }

.faq-answer .faq-summary {
  border-color: #d00;
  font-weight: 700;
  margin-bottom: 3.5em;
  padding-bottom: 0; }
  .faq-answer .faq-summary + .faq-summary {
    margin-top: -3.5em;
    padding-top: 1.5em; }
  .faq-answer .faq-summary span {
    text-transform: uppercase;
    font-size: .9em;
    color: #d00; }

.faq-answer > ul {
  margin: 0;
  padding: 0 1% 1.5em 5%;
  border-left: 5px solid #c-gray2; }
  @media (min-width: 600px) {
    .faq-answer > ul {
      margin-left: 3%;
      padding: 0 1% 1.5em 7%;
      border-left: 10px solid #e0e0e0; } }

.faq-answer li,
.faq-answer li > p {
  margin-bottom: 1.5em; }

.column {
  margin: 20px; }
  @media (min-width: 600px) {
    .column {
      width: 46%;
      float: left;
      margin-right: 1%;
      margin-left: 3%; }
      .column:first-of-type {
        border-right: 1px solid #f5f5f5;
        padding-right: 20px; }
      .column:last-of-type + * {
        clear: both; } }

.toggle-expanded {
  cursor: pointer; }

.is-hidden {
  padding: 0 !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .2s, max-height .3s .05s; }

.is-visible {
  max-height: 4000px;
  opacity: 1;
  transition: opacity .8s, max-height .3s; }

footer {
  text-align: center;
  font-size: 12px;
  padding: 20px 0;
  color: #ebced0;
  background: #d00; }
  footer a:link,
  footer a:visited {
    color: #ebced0; }
  footer a:hover {
    color: #fff; }
  footer .covered-brands li {
    padding: 0 1.5%; }
  footer .brand {
    fill: currentColor;
    height: 1em;
    width: 100%;
    max-width: 200px;
    font-size: 36px;
    vertical-align: bottom; }
    footer .brand.brand-vg, footer .brand.brand-godt {
      height: .75em; }
    footer .brand.brand-pent {
      height: .5em; }
  footer .footer-content {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start; }
    footer .footer-content > section {
      flex: 1;
      padding: 0 20px;
      text-align: left; }
    @media (max-width: 600px) {
      footer .footer-content {
        flex-direction: column; }
        footer .footer-content > section {
          margin-bottom: 20px; } }

@media print {
  body {
    color: #000;
    background: #fff;
    font: 12pt Georgia, "Times New Roman", Times, serif;
    line-height: 1.3; }
  nav, aside {
    display: none; }
  body, article {
    width: 100%;
    margin: 0;
    padding: 0; }
  @page {
    margin: 2cm; }
  header nav, footer {
    display: none; }
  h2, h3 {
    page-break-after: avoid; }
  img {
    max-width: 100% !important; }
  ul, img {
    page-break-inside: avoid; }
  article {
    page-break-before: always; }
  p a[href^="http://"]:after {
    content: " (" attr(href) ")";
    font-size: 80%;
    word-wrap: break-word;
    color: #000; } }
