/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,300italic,400,500,600,700,400italic,900);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1; }

.bx-wrapper img {
  max-width: 100%;
  display: block; }

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0); }

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%; }

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("/Scripts/js/libraries/bxslider/images/bx_loader.gif") center center no-repeat #fff !important;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000; }

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px; }

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline; }

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000; }

/* DIRECTION CONTROLS (NEXT / PREV) */
/* AUTO CONTROLS (START / STOP) */
/* IMAGE CAPTIONS */
.bx-wrapper {
  margin-bottom: 0; }

.shinybox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  user-select: none;
  background: rgba(13, 13, 13, 0.9); }
@keyframes rightSpring {
  0% {
    margin-left: 0; }
  50% {
    margin-left: -30px; }
  100% {
    margin-left: 0; } }
@keyframes leftSpring {
  0% {
    margin-left: 0; }
  50% {
    margin-left: 30px; }
  100% {
    margin-left: 0; } }
  .shinybox-overlay img {
    border: none !important; }
  .shinybox-overlay .shinybox-slider {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    white-space: nowrap;
    position: absolute;
    display: none; }
    .shinybox-overlay .shinybox-slider.rightSpring {
      animation: rightSpring 0.3s; }
    .shinybox-overlay .shinybox-slider.leftSpring {
      animation: leftSpring 0.3s; }
    .shinybox-overlay .shinybox-slider .slide {
      height: 100%;
      width: 98%;
      line-height: 1px;
      text-align: center;
      display: inline-block;
      margin: 0 1%; }
      .shinybox-overlay .shinybox-slider .slide:before {
        content: "";
        display: inline-block;
        height: 50%;
        width: 1px;
        margin-right: -1px; }
      .shinybox-overlay .shinybox-slider .slide img, .shinybox-overlay .shinybox-slider .slide .shinybox-video-container, .shinybox-overlay .shinybox-slider .slide .shinybox-pdf-container {
        display: inline-block;
        max-height: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        width: auto;
        height: auto;
        vertical-align: middle; }
      .shinybox-overlay .shinybox-slider .slide .shinybox-video-container {
        background: none;
        max-width: 1140px;
        max-height: 100%;
        width: 100%;
        padding: 5%;
        box-sizing: border-box; }
        .shinybox-overlay .shinybox-slider .slide .shinybox-video-container .shinybox-video {
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
          overflow: hidden;
          position: relative; }
          .shinybox-overlay .shinybox-slider .slide .shinybox-video-container .shinybox-video iframe {
            width: 100% !important;
            height: 100% !important;
            position: absolute;
            top: 0;
            left: 0; }
      .shinybox-overlay .shinybox-slider .slide .shinybox-pdf-container {
        background: none;
        max-width: 1140px;
        height: 100%;
        width: 100%;
        box-sizing: border-box; }
        .shinybox-overlay .shinybox-slider .slide .shinybox-pdf-container .shinybox-pdf {
          height: 100%;
          width: 100%;
          overflow: hidden;
          position: relative; }
          .shinybox-overlay .shinybox-slider .slide .shinybox-pdf-container .shinybox-pdf iframe {
            width: 100% !important;
            height: 100% !important;
            position: absolute;
            top: 0;
            left: 0; }
    .shinybox-overlay .shinybox-slider .loading {
      background: url("../../img/shinybox/loader.gif") no-repeat center center;
      height: 31px;
      width: 31px;
      margin: auto; }
  .shinybox-overlay .shinybox-bottom, .shinybox-overlay .shinybox-top {
    position: absolute;
    left: 0;
    z-index: 999;
    height: 50px;
    width: 100%;
    text-shadow: 1px 1px 1px black;
    background-color: #0d0d0d;
    background-image: linear-gradient(#0d0d0d, #000000);
    opacity: 0.95; }
  .shinybox-overlay .shinybox-top {
    top: -50px; }
    .shinybox-overlay .shinybox-top.visible-bars {
      top: 0; }
    .shinybox-overlay .shinybox-top.force-visible-bars {
      top: 0 !important; }
  .shinybox-overlay .shinybox-bottom {
    text-align: right;
    bottom: -50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .shinybox-overlay .shinybox-bottom.visible-bars {
      bottom: 0; }
    .shinybox-overlay .shinybox-bottom.force-visible-bars {
      bottom: 0 !important; }
  .shinybox-overlay .shinybox-prev, .shinybox-overlay .shinybox-next,
  .shinybox-overlay .shinybox-close {
    background-image: url("../../img/shinybox/icons.svg");
    background-repeat: no-repeat;
    border: none !important;
    text-decoration: none !important;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
    z-index: 1; }
  .shinybox-overlay .shinybox-close {
    background-position: 15px 12px;
    float: left; }
  .shinybox-overlay .shinybox-prev {
    background-position: -32px 13px; }
    .shinybox-overlay .shinybox-prev.disabled {
      opacity: 0.3; }
  .shinybox-overlay .shinybox-next {
    background-position: -78px 13px; }
    .shinybox-overlay .shinybox-next.disabled {
      opacity: 0.3; }
  .shinybox-overlay .shinybox-caption {
    color: white !important;
    font-size: 15px;
    line-height: 50px;
    font-family: Helvetica, Arial, sans-serif;
    text-align: center; }

/* Roboto Font.
***********************************************/
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
@font-face {
  font-family: "iconFont";
  src: url("/content/fonts/IconFont/iconFont.eot?35d92869a54ce009dd9205bb25a70704");
  src: url("/content/fonts/IconFont/iconFont.eot?#iefix") format("embedded-opentype"), url("/content/fonts/IconFont/iconFont.svg?35d92869a54ce009dd9205bb25a70704#iconFont") format("svg"), url("/content/fonts/IconFont/iconFont.woff?35d92869a54ce009dd9205bb25a70704") format("woff"), url("/content/fonts/IconFont/iconFont.ttf?35d92869a54ce009dd9205bb25a70704") format("truetype");
  font-weight: normal;
  font-style: normal; }
.icon, .collapsed-container__heading::after, a.some__icon::after,
.some__icon::after, .tags:before, .article-top-image figcaption::before, .article-wide-image figcaption::before, .html blockquote::before, .dropdown-wrapper .dropdown-title:after, .product-card .status-point .status-point__bullet span::before, .page-header__section-column .btn-open-menu::before, .page-header__section-column .btn-menu-search::before, .nrc .carousel__next a,
.nrc .carousel__previous a, .flyktninghjelpen .carousel__next a,
.flyktninghjelpen .carousel__previous a, .validation-summary-errors:before, .form-error:before {
  font-family: "iconFont";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon_about_established:before {
  content: "\4e"; }

.icon_about_expenditure:before {
  content: "\4f"; }

.icon_about_forecast:before {
  content: "\50"; }

.icon_about_operations:before {
  content: "\51"; }

.icon_about_staff:before {
  content: "\52"; }

.icon_close_x:before {
  content: "\53"; }

.icon_contact_director:before {
  content: "\54"; }

.icon_contact_email:before {
  content: "\55"; }

.icon_contact_phone:before {
  content: "\56"; }

.icon_dropdown_arrow:before {
  content: "\57"; }

.icon_dropdown_check:before {
  content: "\58"; }

.icon_facts_internally_displaced:before {
  content: "\59"; }

.icon_facts_new_refugees:before {
  content: "\5a"; }

.icon_facts_population:before {
  content: "\5b"; }

.icon_facts_refugees:before {
  content: "\5c"; }

.icon_facts_voluntary_returns:before {
  content: "\5d"; }

.icon_ic_alert:before {
  content: "\4a"; }

.icon_ic_arrow:before {
  content: "\41"; }

.icon_ic_basket:before {
  content: "\5e"; }

.icon_ic_checkmark:before {
  content: "\4d"; }

.icon_ic_envelope:before {
  content: "\46"; }

.icon_ic_fb:before {
  content: "\42"; }

.icon_ic_gift:before {
  content: "\4b"; }

.icon_ic_google:before {
  content: "\5f"; }

.icon_ic_in:before {
  content: "\43"; }

.icon_ic_mobile:before {
  content: "\47"; }

.icon_ic_pencil:before {
  content: "\4c"; }

.icon_ic_tw:before {
  content: "\44"; }

.icon_ic_uparrow:before {
  content: "\60"; }

.icon_ic_yt:before {
  content: "\45"; }

.icon_menu:before, .page-header__section-column .btn-open-menu:before {
  content: "\6c"; }

.icon_photo:before {
  content: "\61"; }

.icon_quotemarks:before {
  content: "\62"; }

.icon_results_education:before {
  content: "\63"; }

.icon_results_food_security:before {
  content: "\64"; }

.icon_results_icla:before {
  content: "\65"; }

.icon_results_shelter:before {
  content: "\66"; }

.icon_results_shelter_2:before {
  content: "\67"; }

.icon_results_wash:before {
  content: "\68"; }

.icon_search:before, .page-header__section-column .btn-menu-search:before {
  content: "\6b"; }

.icon_shoppingcart-empty:before {
  content: "\6d"; }

.icon_shoppingcart:before {
  content: "\6e"; }

.icon_tag:before {
  content: "\69"; }

.icon_triangle-arrow:before {
  content: "\6f"; }

.icon_video:before {
  content: "\6a"; }

.icon_zoom:before {
  content: "\70"; }

/*! normalize.css v3.0.2 | 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,
menu,
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-color: transparent;
  color: #FF7602; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* 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 styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * 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, 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"] {
  -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; }

/**
 * 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; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
html {
  font-family: Roboto;
  position: relative; }

body {
  font-size: 18px;
  line-height: 1.444444444444;
  background-color: #FFFFFF; }
  @media all and (max-width: 767px) {
    body {
      font-size: 16px;
      line-height: 1.375; } }

h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2.777777777777778em;
  margin: 0 0 20px; }
  @media all and (max-width: 599px) {
    h1 {
      font-size: 2em; } }

h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.333em;
  margin: 0 0 15px; }

h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.250em;
  margin: 0 0 10px;
  line-height: 1.2em; }

@media all and (min-width: 769px) {
  h3 {
    font-size: 2.2em; } }
fieldset {
  border: none; }

textarea {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  border: 1px solid gray;
  background-color: #F7F7F7; }
  textarea:focus {
    border: 1px solid #FF7602;
    outline-color: #FF7602; }

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0; }

input[type=text], input[type=email], input[type=tel] {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  border: 1px solid gray;
  background-color: #F7F7F7; }
  input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus {
    border: 1px solid #FF7602;
    outline-color: #FF7602; }

img {
  max-width: 100%;
  display: block;
  height: auto; }
  img.cover-image__img {
    max-width: none; }

hr {
  color: #d3d3d3; }

figure figcaption {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #9B9B9B;
  font-size: 1em; }

time {
  color: #9B9B9B; }

input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

input[type="checkbox"] + label {
  padding: 3px 0 3px 40px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-bottom: 10px; }
  input[type="checkbox"] + label img {
    display: inline-block;
    margin-left: 10px; }

input[type="checkbox"]:disabled + label {
  opacity: 0.5; }

input[type="checkbox"] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #FF7602;
  background-color: #ffffff;
  line-height: 1;
  width: 30px;
  height: 30px; }

input[type="checkbox"].input-validation-error + label:before {
  border: 3px solid #D0021B; }

input[type="checkbox"]:checked + label:before {
  background-image: url("/Images/donation/Checked.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px 20px; }

/* VERSION 2.0.11*/
.collapsed-container__container {
  overflow: hidden;
  position: relative; }

.collapsed-container__container.closed .collapsed-container__heading {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNnB4Ig0KCSBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgaWQ9IkxheWVyXzEiIGRpc3BsYXk9Im5vbmUiPg0KCTxwb2x5Z29uIGRpc3BsYXk9ImlubGluZSIgZmlsbD0iI0E3QTdBNyIgcG9pbnRzPSI4LDE0IDgsMiAxNCw4IAkiLz4NCjwvZz4NCjxnIGlkPSJMYXllcl8yIj4NCgk8cG9seWdvbiBmaWxsPSIjQTdBN0E3IiBwb2ludHM9IjIsOCAxNCw4IDgsMTQgCSIvPg0KPC9nPg0KPC9zdmc+DQo=); }

.collapsed-container__container.closed .collapsed-container__animation-container {
  display: none; }

.collapsed-container__container.open .collapsed-container__heading {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxNnB4Ig0KCSBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgaWQ9IkxheWVyXzEiIGRpc3BsYXk9Im5vbmUiPg0KCTxwb2x5Z29uIGRpc3BsYXk9ImlubGluZSIgZmlsbD0iI0E3QTdBNyIgcG9pbnRzPSI4LDE0IDgsMiAxNCw4IAkiLz4NCjwvZz4NCjxnIGlkPSJMYXllcl8yIiBkaXNwbGF5PSJub25lIj4NCgk8cG9seWdvbiBkaXNwbGF5PSJpbmxpbmUiIGZpbGw9IiNBN0E3QTciIHBvaW50cz0iMiw4IDE0LDggOCwxNCAJIi8+DQo8L2c+DQo8ZyBpZD0iTGF5ZXJfMyI+DQoJPHBvbHlnb24gZmlsbD0iI0E3QTdBNyIgcG9pbnRzPSIxNCw4IDIsOCA4LDIgCSIvPg0KPC9nPg0KPC9zdmc+DQo=); }

.collapsed-container__container.open .collapsed-container__animation-container {
  display: block; }

.collapsed-container__container button:focus {
  outline: 0;
  border: 1px solid #a1c3fa; }

.collapsed-container__heading {
  margin: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border: 1px solid transparent;
  background: 99% center no-repeat #f7f7f7;
  text-decoration: none;
  color: #222;
  padding: .5em 0 .5em .5em; }

.collapsed-container__heading h1, .collapsed-container__heading h2, .collapsed-container__heading h3, .collapsed-container__heading h4, .collapsed-container__heading h5, .collapsed-container__heading h6 {
  margin: 0; }

.collapsed-container__content {
  position: relative; }

.collapsed-container__content > * {
  height: 100%; }

.collapsed-container__animation-container {
  will-change: transform;
  position: relative;
  overflow: hidden;
  height: 0;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 0;
  perspective: 0; }

.cover-image__container {
  position: relative;
  display: inline-block;
  overflow: hidden; }

.cover-image__img {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.cover-image__max-height {
  height: 100%;
  width: auto; }

.cover-image__max-width {
  width: 100%;
  height: auto; }

.touch-scroll {
  position: relative;
  overflow: hidden; }

.touch-scroll__content {
  padding: 0;
  margin: 0;
  display: inline-block;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  overflow: hidden;
  opacity: .99; }

.touch-scroll-bar__head {
  pointer-events: none;
  position: absolute;
  background-color: #666;
  border-radius: 1px;
  opacity: 0; }

.touch-scroll-bar__head.js--vertical {
  top: 0;
  right: 2px;
  width: 2px; }

.touch-scroll-bar__head.js--horizontal {
  left: 0;
  bottom: 2px;
  height: 2px; }

.collapsed-container__container.open .collapsed-container__heading, .collapsed-container__container.closed .collapsed-container__heading {
  background-image: none; }
.collapsed-container__container.open .collapsed-container__heading::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg); }

.collapsed-container__heading {
  padding: 0;
  background: transparent;
  position: relative; }
  .collapsed-container__heading::after {
    position: absolute;
    content: "\57";
    font-size: 20px;
    color: #FF7602;
    top: 50%; }

.modal__overlay {
  z-index: 100; }

.modal-container.USER_MESSAGE {
  z-index: 1000;
  width: 900px;
  max-width: 100%;
  padding: 20px;
  word-break: break-word;
  background-color: transparent;
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%); }
  .modal-container.USER_MESSAGE .modal-container__heading {
    display: none; }
  .modal-container.USER_MESSAGE .modal-container__content {
    background-color: #FFFFFF;
    padding: 30px 0;
    max-height: 90vh; }
    .modal-container.USER_MESSAGE .modal-container__content .mypage__popup__text {
      margin: 0 auto;
      max-width: 840px;
      padding: 0 20px; }
      .modal-container.USER_MESSAGE .modal-container__content .mypage__popup__text p:last-child {
        margin-bottom: 0 !important; }
  .modal-container.USER_MESSAGE .modal-container__footing {
    bottom: auto;
    width: auto;
    position: absolute;
    top: 30px;
    right: 30px; }
    .modal-container.USER_MESSAGE .modal-container__footing .alert-container__button--ok {
      padding: 0;
      background: url(/images/myPage/Close.svg) no-repeat 50% 50% transparent;
      border: none;
      width: 26px;
      background-size: cover; }

.actionbutton, .logoupload button, .EPiServerForms .FormResetButton, .EPiServerForms button {
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.125em;
  letter-spacing: .3px;
  font-family: Roboto; }
  @media all and (max-width: 599px) {
    .actionbutton, .logoupload button, .EPiServerForms .FormResetButton, .EPiServerForms button {
      padding: 10px 20px; } }
  .actionbutton a, .logoupload button a, .EPiServerForms .FormResetButton a, .EPiServerForms button a {
    text-decoration: none;
    padding: 7px 32px;
    display: inline-block;
    font-weight: 400;
    font-family: Roboto;
    color: #000; }
  .actionbutton.donate, .logoupload button.donate, .EPiServerForms .donate.FormResetButton, .EPiServerForms button.donate {
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -ms-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms;
    background-color: #FF7602;
    border: 2px solid #FFA457;
    color: #FFFFFF; }
    .actionbutton.donate:hover, .logoupload button.donate:hover, .EPiServerForms .donate.FormResetButton:hover, .EPiServerForms button.donate:hover {
      background-color: #ff8926; }
  .actionbutton.action, .logoupload button.action, .EPiServerForms .action.FormResetButton, .EPiServerForms button.action {
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #FF7602;
    background-color: #FFF;
    color: #BF5901;
    font-size: 0.987em;
    font-weight: 400;
    text-transform: uppercase;
    padding: 9px 40px; }
  .actionbutton.default, .logoupload button.default, .EPiServerForms .FormResetButton, .EPiServerForms button {
    border: 1px solid #000;
    margin: 1px; }
    @media all and (min-width: 769px) {
      .actionbutton.default, .logoupload button.default, .EPiServerForms .FormResetButton, .EPiServerForms button {
        font-size: 0.987em; } }
    .actionbutton.default:hover, .logoupload button.default:hover, .EPiServerForms .FormResetButton:hover, .EPiServerForms button:hover {
      color: #FFF;
      background-color: #000; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
@media all and (max-width: 1024px) {
  nav > ul > .menu-item.js--active, nav > ul > .menu-item:hover {
    background: #F6F5EF; } }
nav > ul > .menu-item.js--active .menu-item__text, nav > ul > .menu-item:hover .menu-item__text {
  color: #000; }

.menu-item__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.125em;
  color: #000;
  padding: 10px 5px; }
  .menu-item__text.menu-item__customtext {
    font-size: 1.7em;
    padding: 0; }
    @media all and (max-width: 1023px) {
      .menu-item__text.menu-item__customtext {
        font-size: 1.3em; } }

a.menu-item__text {
  -webkit-transition: 300ms color;
  -moz-transition: 300ms color;
  -ms-transition: 300ms color;
  -o-transition: 300ms color;
  transition: 300ms color;
  text-decoration: none; }
  a.menu-item__text:hover {
    color: #3C3C3C; }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.menu-main-link, .menu nav > ul > li > .menu-item__text {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  color: inherit; }
  @media all and (max-width: 480px) {
    .menu-main-link, .menu nav > ul > li > .menu-item__text {
      padding: 0 0 0 50px; } }
  @media (min-width: 481px) and (max-width: 1024px) {
    .menu-main-link, .menu nav > ul > li > .menu-item__text {
      padding: 0 0 0 100px; } }
  @media all and (min-width: 1025px) {
    .menu-main-link, .menu nav > ul > li > .menu-item__text {
      border-bottom: 4px solid #FF7602;
      padding: 8px 15px;
      line-height: 20px;
      font-size: 1.125em;
      font-weight: 300; } }

.orange-underlined-link {
  text-decoration: none;
  border-bottom: 1px solid #FF7602;
  padding: 10px 20px;
  color: #3C3C3C; }

.separator {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline;
  color: #FF7602;
  margin: 0 13px;
  font-size: 0.8em;
  vertical-align: text-top; }

.lined-heading {
  position: relative;
  width: 100%;
  max-width: 738px;
  font-size: 1.11em;
  line-height: 1.375em;
  margin: 5px auto;
  text-align: center; }
  .lined-heading:before {
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    position: absolute;
    top: 50%;
    left: 10px;
    content: "";
    border-bottom: 1px solid #d3d3d3;
    display: block; }
  .lined-heading span {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: normal;
    position: relative;
    padding: 0 40px;
    font-size: 1.25em;
    text-align: center;
    display: inline-block;
    background-color: white; }

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.non-break {
  white-space: nowrap; }

input[type=text].input__field, input.input__field[type=email], input.input__field[type=tel], input[type=email].input__field, input[type=tel].input__field {
  font-weight: normal;
  border: 1px solid #FF7602;
  font-size: 19px;
  background: #FFFFFF;
  display: block;
  width: 100%;
  max-width: 450px;
  line-height: 1;
  padding: 14px 30px;
  border-radius: 25px;
  outline: none; }

.sticky-donate--container {
  background-color: #D1CFC2;
  color: #000;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8); }
  @media all and (min-width: 481px) {
    .sticky-donate--container {
      padding: 15px 20px; } }
  .sticky-donate--container .sticky-donate--wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 15px 0; }
    @media all and (max-width: 480px) {
      .sticky-donate--container .sticky-donate--wrapper {
        text-align: center; } }
    .sticky-donate--container .sticky-donate--wrapper .sticky-donate--header {
      -webkit-box-flex: 2;
      -moz-box-flex: 2;
      width: auto;
      -webkit-flex: 2 1 auto;
      -ms-flex: 2 1 auto;
      flex: 2 1 auto;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -moz-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      color: #FFFFFF; }
  .sticky-donate--container .sticky-donate--column {
    font-size: 1.125em;
    font-weight: 300; }
    .sticky-donate--container .sticky-donate--column h2 {
      display: inline;
      font-weight: 300;
      font-size: 1.250em; }
      @media all and (max-width: 599px) {
        .sticky-donate--container .sticky-donate--column h2 {
          font-size: 1em; } }
      .sticky-donate--container .sticky-donate--column h2:after {
        content: ':'; }
    .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton {
      -webkit-box-flex: 1;
      -moz-box-flex: 1;
      width: auto;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      -webkit-box-pack: center;
      -moz-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      text-align: center; }
      @media all and (max-width: 599px) {
        .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton .actionbutton, .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton .logoupload button, .logoupload .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton button, .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton .EPiServerForms .FormResetButton, .EPiServerForms .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton .FormResetButton, .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton .EPiServerForms button, .EPiServerForms .sticky-donate--container .sticky-donate--column.sticky-donate--actionbutton button {
          font-weight: 500; } }
  .sticky-donate--container.scroll-to-fixed-fixed {
    background-color: rgba(0, 0, 0, 0.8); }
    @media all and (max-width: 600px) {
      .sticky-donate--container.scroll-to-fixed-fixed .sticky-donate--wrapper .sticky-donate--promotext {
        max-height: 50px;
        overflow: hidden; } }

.box-label {
  position: relative;
  color: #3C3C3C; }
  .box-label .box-label--borders {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 63px;
    height: 44px;
    border-bottom: 44px solid rgba(230, 230, 230, 0.8);
    border-left: 63px solid transparent;
    z-index: 1; }
    .box-label .box-label--borders::before {
      position: absolute;
      top: 44px;
      left: -63px;
      display: block;
      content: '';
      width: 0;
      height: 0;
      border-top: 44px solid rgba(230, 230, 230, 0.8);
      border-right: 63px solid transparent;
      z-index: 1; }
    .box-label .box-label--borders::after {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      content: '';
      width: 63px;
      height: 44px;
      border-top: 44px solid rgba(230, 230, 230, 0.8);
      border-right: 63px solid transparent;
      z-index: 1; }
  .box-label .box-label--text {
    position: absolute;
    display: block;
    -webkit-transform: rotate(325deg);
    transform: rotate(325deg);
    font-size: 16px;
    z-index: 2;
    width: 126px;
    top: 22px;
    left: -77px;
    text-align: center; }

.loader {
  font-size: 18px;
  border: 0.389em solid #DFDFE6;
  border-top: 0.389em solid #ff7600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 0.9s linear infinite;
  animation: spin 0.9s linear infinite;
  display: inline-block; }

.loader--center {
  -webkit-animation: spin-in-center 0.9s linear infinite;
  animation: spin-in-center 0.9s linear infinite; }

.loader--horizontal-center {
  -webkit-animation: spin-in-horizontal-center 0.9s linear infinite;
  animation: spin-in-horizontal-center 0.9s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes spin-in-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-in-horizontal-center {
  0% {
    transform: translate(0, -50%) rotate(0deg); }
  100% {
    transform: translate(0, -50%) rotate(360deg); } }
.loader--black {
  border-top-color: #000000; }

.loader--lf-blue {
  border-color: #e8e8ef;
  border-top-color: #b4c5e2; }

.loader--small {
  font-size: 30px;
  margin: 17px auto; }

.loader--tiny {
  font-size: 0.75em;
  margin: 0.667em auto; }

.donation__button {
  padding: 8px 0;
  text-align: center;
  width: 200px;
  background-color: #FFFFFF;
  border: 3px solid #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  border-radius: 22px;
  line-height: 21px;
  display: inline-block;
  color: #563921; }
  .donation__button.active {
    background-color: #FFFFFF;
    border: 3px solid #563921; }
  .donation__button.plain {
    color: #FF7602;
    border: 3px solid #FF7602;
    background-color: #2F2721;
    padding: 9px 0 10px 0; }

.strike__through {
  position: relative;
  margin-bottom: 30px;
  text-align: center; }
  .strike__through:before {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #979797;
    z-index: 10; }
  .strike__through h3 {
    font-weight: 400;
    position: relative;
    z-index: 20;
    background-color: #FFFFFF;
    display: inline-block;
    margin: 0;
    padding: 0 20px; }
  .strike__through .questionMark {
    display: inline-block;
    width: 21px;
    height: 22px;
    background: url(/images/myPage/Questionmark-blue.svg);
    margin: 0 0 0 12px;
    float: right;
    cursor: pointer; }

/*
<div class="input-container">
    <input required />
    <span class="floating-label">Tekst</span>
</div>
 */
.input-container {
  position: relative;
  width: 100%;
  text-align: left; }
  .input-container input {
    color: black;
    max-height: 50px;
    font-size: 18px;
    line-height: 22px;
    height: 50px;
    width: 100%;
    border-radius: 2px;
    border: 3px solid #d0d0d0;
    padding: 15px 15px 0;
    background-color: black;
    outline: none; }
  .input-container input:focus {
    outline: none;
    border: 3px solid #d0d0d0; }
  .input-container input.border {
    border: 3px solid #d0d0d0; }
  .input-container input:focus ~ .floating-label,
  .input-container input:not(:focus):valid ~ .floating-label {
    top: 5px;
    left: 18px;
    opacity: 1;
    color: #8A7B71;
    font-size: 12px;
    line-height: 15px;
    outline: none; }
  .input-container .floating-label {
    color: #2F2721;
    position: absolute;
    font-size: 18px;
    line-height: 22px;
    pointer-events: none;
    left: 15px;
    top: 15px;
    transition: 0.2s ease all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.richtext {
  font-size: 18px;
  line-height: 30px;
  font-family: Roboto, sans-serif; }
  .richtext a:hover {
    text-decoration: underline; }
  .richtext p {
    margin: 0 0 18px; }
  .richtext ul, .richtext ol {
    margin: 18px 0;
    padding: 0 0 0 40px !important; }
  .richtext ul {
    list-style-type: disc !important; }
    .richtext ul ul {
      list-style-type: circle !important; }
      .richtext ul ul ul {
        list-style-type: square !important; }
        .richtext ul ul ul ul {
          list-style-type: disc !important; }
  .richtext ol {
    list-style-type: decimal !important; }
    .richtext ol ol {
      list-style-type: lower-alpha !important; }
      .richtext ol ol ol {
        list-style-type: upper-roman !important; }
        .richtext ol ol ol ol {
          list-style-type: decimal !important; }

.swipebox {
  text-decoration: none; }
  .swipebox .icon, .swipebox .collapsed-container__heading::after,
  .swipebox .some__icon::after, .swipebox .tags:before, .swipebox .article-top-image figcaption::before, .article-top-image .swipebox figcaption::before, .swipebox .article-wide-image figcaption::before, .article-wide-image .swipebox figcaption::before, .swipebox .html blockquote::before, .html .swipebox blockquote::before, .swipebox .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .swipebox .dropdown-title:after, .swipebox .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .swipebox span::before, .swipebox .page-header__section-column .btn-open-menu::before, .page-header__section-column .swipebox .btn-open-menu::before, .swipebox .page-header__section-column .btn-menu-search::before, .page-header__section-column .swipebox .btn-menu-search::before, .swipebox .nrc .carousel__next a, .nrc .carousel__next .swipebox a,
  .swipebox .nrc .carousel__previous a,
  .nrc .carousel__previous .swipebox a, .swipebox .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .swipebox a,
  .swipebox .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .swipebox a, .swipebox .validation-summary-errors:before, .swipebox .form-error:before {
    float: right; }

.filled-container-image-container {
  position: relative;
  overflow: hidden; }

.filled-container-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; }
  .filled-container-image img {
    position: absolute;
    min-width: 100%;
    width: auto;
    height: auto; }

@media all and (max-width: 767px) {
  .filled-container-image.donation-block-image {
    position: initial;
    min-width: 100%; }
    .filled-container-image.donation-block-image img {
      position: initial;
      transform: none;
      padding: 0 1em;
      min-width: 100%;
      width: 100%;
      object-fit: cover;
      height: 100%; } }

.html-field--dark a, .poster__text a {
  color: #FF7602; }

.centered-text {
  text-align: center; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.menu-search {
  display: table; }
  .menu-search button {
    -webkit-transition: 300ms all;
    -moz-transition: 300ms all;
    -ms-transition: 300ms all;
    -o-transition: 300ms all;
    transition: 300ms all;
    border: 2px solid #FF7602;
    font-size: 1em;
    padding: 0 10px;
    margin: 0 5px;
    height: inherit; }
    .menu-search button:hover {
      background: #FF7602; }
  .menu-search input {
    width: 100%;
    height: inherit;
    padding: 0 5px;
    border: 1px solid #DFDAC8;
    background-color: transparent; }
    .menu-search input:focus {
      outline-color: #FF7602; }
  @media all and (max-width: 599px) {
    .menu-search .main-search__search-field {
      display: none; } }

.main-search__table {
  display: table;
  table-layout: fixed;
  height: 40px;
  width: 100%;
  max-width: 480px;
  overflow: hidden; }
  .main-search__table > * {
    vertical-align: top;
    height: inherit;
    width: 84px;
    float: left; }

.main-search__search-field {
  width: -webkit-calc(100% - 84px);
  width: -moz-calc(100% - 84px);
  width: calc(100% - 84px); }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.banner a {
  text-decoration: none; }

.poster {
  padding: 15px 45px;
  background-color: #FFFFFF;
  color: #000000; }
  @media all and (min-width: 1025px) {
    .poster {
      background-color: rgba(255, 255, 255, 0.75); } }
  .poster h3 {
    font-size: 2.777777777777778em;
    line-height: 1.2; }
    @media all and (max-width: 1023px) {
      .poster h3 {
        line-height: 1em; } }
    @media all and (max-width: 599px) {
      .poster h3 {
        font-size: 1.875em;
        margin-bottom: 12px; } }

@media all and (max-width: 1023px) {
  .banner a:hover .poster h2 {
    text-decoration: underline; } }
@media all and (min-width: 1025px) {
  .banner a:hover .poster {
    background-color: rgba(0, 0, 0, 0.9); } }

.poster--horizontal {
  width: 100%; }
  .poster--horizontal .poster__content, .poster--horizontal .poster__heading {
    max-width: 1280px;
    margin: 0 auto; }
    .poster--horizontal .poster__content > .poster__text, .poster--horizontal .poster__heading > .poster__text {
      max-width: 666px; }
  .poster--horizontal .poster__button--wrapper {
    width: 100%;
    max-width: none;
    text-align: center;
    vertical-align: middle;
    height: 100%; }
    @media all and (min-width: 1025px) {
      .poster--horizontal .poster__button--wrapper {
        position: absolute;
        top: 0;
        padding-left: 666px; }
        .poster--horizontal .poster__button--wrapper .poster__button {
          position: absolute;
          left: 0;
          top: 50%;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
          padding-left: 666px;
          width: 100%; }
          .poster--horizontal .poster__button--wrapper .poster__button .actionbutton.donate, .poster--horizontal .poster__button--wrapper .poster__button .logoupload button.donate, .logoupload .poster--horizontal .poster__button--wrapper .poster__button button.donate, .poster--horizontal .poster__button--wrapper .poster__button .EPiServerForms .donate.FormResetButton, .EPiServerForms .poster--horizontal .poster__button--wrapper .poster__button .donate.FormResetButton, .poster--horizontal .poster__button--wrapper .poster__button .EPiServerForms button.donate, .EPiServerForms .poster--horizontal .poster__button--wrapper .poster__button button.donate {
            float: right; }
          .poster--horizontal .poster__button--wrapper .poster__button .actionbutton.default, .poster--horizontal .poster__button--wrapper .poster__button .logoupload button.default, .logoupload .poster--horizontal .poster__button--wrapper .poster__button button.default, .poster--horizontal .poster__button--wrapper .poster__button .EPiServerForms .FormResetButton, .EPiServerForms .poster--horizontal .poster__button--wrapper .poster__button .FormResetButton, .poster--horizontal .poster__button--wrapper .poster__button .EPiServerForms button, .EPiServerForms .poster--horizontal .poster__button--wrapper .poster__button button {
            float: left;
            margin-left: 80px; } }
    @media all and (max-width: 1024px) {
      .poster--horizontal .poster__button--wrapper {
        margin: 30px 0; } }

/*.poster__button--wrapper:last-of-type{
  position: relative!important;
  margin-bottom: 20px!important;

}*/
.poster--vertical {
  width: 100%; }
  @media all and (min-width: 1025px) {
    .poster--vertical {
      max-width: 480px; } }
  .poster--vertical .poster__content, .poster--vertical .poster__heading {
    max-width: 1280px;
    margin: 0 auto; }
    @media all and (min-width: 1025px) {
      .poster--vertical .poster__content, .poster--vertical .poster__heading {
        max-width: 480px; } }
    .poster--vertical .poster__content > .poster__text, .poster--vertical .poster__heading > .poster__text {
      max-width: 666px; }
  .poster--vertical .poster__button--wrapper {
    width: 100%;
    max-width: none;
    text-align: center;
    vertical-align: middle;
    height: 100%; }

@media all and (min-width: 1025px) {
  .poster--wrapper-vertical {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%; } }

.poster--box {
  width: 100%; }
  @media all and (min-width: 1025px) {
    .poster--box {
      max-width: 480px; } }
  .poster--box .poster__content, .poster--box .poster__heading {
    max-width: 1280px;
    margin: 0 auto; }
    @media all and (min-width: 1025px) {
      .poster--box .poster__content, .poster--box .poster__heading {
        max-width: 480px; } }
    .poster--box .poster__content > .poster__text, .poster--box .poster__heading > .poster__text {
      max-width: 666px; }
  .poster--box .poster__button--wrapper {
    width: 100%;
    max-width: none;
    text-align: center;
    vertical-align: middle;
    height: 100%;
    margin-bottom: 10px; }
    .poster--box .poster__button--wrapper:last-child {
      margin-bottom: 0; }

@media all and (min-width: 1025px) {
  .poster--wrapper-box {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 1200px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%; } }

.poster__content {
  position: relative;
  line-height: 1.2;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal; }

.poster__date-field {
  float: left;
  margin-right: 2px; }

.poster__text {
  position: relative; }
  .poster__text::after {
    content: ""; }
  .poster__text *:first-child,
  .poster__text p:first-of-type {
    margin-top: 0; }
  @media all and (max-width: 600px) {
    .poster__text .poster__heading h3 {
      font-size: 1.4em; } }

@media all and (max-width: 600px) {
  .poster__button--wrapper {
    margin: 0 !important; }
    .poster__button--wrapper .poster__button {
      text-align: left; }
    .poster__button--wrapper .actionbutton, .poster__button--wrapper .logoupload button, .logoupload .poster__button--wrapper button, .poster__button--wrapper .EPiServerForms .FormResetButton, .EPiServerForms .poster__button--wrapper .FormResetButton, .poster__button--wrapper .EPiServerForms button, .EPiServerForms .poster__button--wrapper button {
      padding: 6px 11px; } }
.poster__tags {
  text-transform: uppercase;
  font-size: 1.125em;
  font-weight: 300; }
  @media all and (max-width: 599px) {
    .poster__tags {
      font-size: 0.938em; } }

.link-list a {
  color: #BF5901;
  text-decoration: none;
  display: block;
  margin-bottom: 10px; }
  .link-list a:hover {
    text-decoration: underline; }
  .link-list a:last-child {
    margin-bottom: 0; }

a.some__icon,
.some__icon {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  text-decoration: none; }
  a.some__icon:first-child,
  .some__icon:first-child {
    padding-left: 0; }
  a.some__icon:last-child,
  .some__icon:last-child {
    padding-right: 0; }
  a.some__icon::after,
  .some__icon::after {
    color: inherit;
    width: 33px;
    height: 33px;
    background-color: #00ADD0;
    color: black;
    display: table-cell;
    vertical-align: middle;
    font-size: 25px;
    padding-top: 5px;
    -webkit-transition: background-color 300ms, color 300ms;
    -moz-transition: background-color 300ms, color 300ms;
    -ms-transition: background-color 300ms, color 300ms;
    -o-transition: background-color 300ms, color 300ms;
    transition: background-color 300ms, color 300ms; }
    @media all and (max-width: 600px) {
      a.some__icon::after,
      .some__icon::after {
        width: 33px;
        height: 33px; } }
  a.some__icon:hover.some__icon--fb::after,
  .some__icon:hover.some__icon--fb::after {
    background-color: #3a5795;
    color: white; }
  a.some__icon:hover.some__icon--tw::after,
  .some__icon:hover.some__icon--tw::after {
    background-color: #55ACEE;
    color: white; }
  a.some__icon:hover.some__icon--in::after,
  .some__icon:hover.some__icon--in::after {
    background-color: #0077B5;
    color: white; }
  a.some__icon:hover.some__icon--yt::after,
  .some__icon:hover.some__icon--yt::after {
    background-color: #e52d27;
    color: white; }
  a.some__icon.some__icon--fb::after,
  .some__icon.some__icon--fb::after {
    content: "\42"; }
  a.some__icon.some__icon--in::after,
  .some__icon.some__icon--in::after {
    content: "\43"; }
  a.some__icon.some__icon--tw::after,
  .some__icon.some__icon--tw::after {
    content: "\44"; }
  a.some__icon.some__icon--yt::after,
  .some__icon.some__icon--yt::after {
    content: "\45"; }
  a.some__icon.some__icon--fb,
  .some__icon.some__icon--fb {
    text-align: right; }
    a.some__icon.some__icon--fb:after,
    .some__icon.some__icon--fb:after {
      padding-right: 3px; }

.newsletter-form {
  padding: 15px; }

.newsletter-form__table {
  display: table;
  table-layout: fixed; }
  @media all and (max-width: 600px) {
    .newsletter-form__table {
      display: block;
      width: 100%;
      max-width: 380px;
      text-align: center;
      margin: 0 auto; } }
  @media all and (max-width: 767px) {
    .newsletter-form__table h2 {
      font-size: 1.25em; } }

.newsletter-form__field {
  display: table-cell;
  vertical-align: middle;
  width: 40%;
  padding: 0 5px; }
  .newsletter-form__field--text {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    width: 60%;
    font-size: 1.75em;
    color: black;
    font-weight: 300; }
  .newsletter-form__field input[type=text], .newsletter-form__field input[type=email], .newsletter-form__field input[type=tel] {
    height: 40px;
    font-style: normal;
    padding: 0 10px;
    width: 100%;
    border: 1px solid #c9c3af; }
  @media all and (max-width: 600px) {
    .newsletter-form__field {
      display: block;
      width: 100%;
      margin: 5px auto 15px; } }

.article-box {
  position: relative;
  text-align: left;
  text-decoration: none;
  color: #3C3C3C;
  display: block;
  width: 100%; }
  @media all and (min-width: 481px) {
    .article-box {
      border-left: 1px solid #e2e2e2;
      border-right: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2; } }
  .article-box img {
    width: -webkit-calc(100% + 2px);
    width: -moz-calc(100% + 2px);
    width: calc(100% + 2px);
    max-width: none;
    position: relative;
    top: -1px;
    left: -1px; }

.article-box__content {
  padding: 10px 0; }
  @media all and (min-width: 481px) {
    .article-box__content {
      padding: 10px 20px; } }
  .article-box__content h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1.250em;
    margin-bottom: 0.5em;
    margin-top: 10px; }
  .article-box__content *:last-child {
    margin-bottom: 0;
    padding-bottom: 0; }

.article-box__tags {
  color: #737373;
  font-size: 1em;
  font-weight: 300; }
  .article-box__tags time,
  .article-box__tags .separator {
    color: #737373;
    font-weight: 300; }

.article-box__text {
  font-size: 1em;
  font-weight: 300;
  margin-top: 5px; }

.feature-article-box {
  position: relative;
  min-height: 400px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: #3C3C3C;
  display: block; }
  .feature-article-box.Orange .type-header-box {
    background-color: #FF7602; }
  .feature-article-box.Orange .feature-article-box__content h1 {
    background-color: #FF7602; }
  .feature-article-box.Orange .feature-article-box__content span {
    background-color: #FF7602; }
  .feature-article-box .filled-container-image-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .feature-article-box .filled-container-image-container img.wide {
      max-height: 100%;
      max-width: none; }
  @media all and (min-width: 481px) {
    .feature-article-box {
      border-left: 1px solid #e2e2e2;
      border-right: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2; } }
  .feature-article-box .type-header-box {
    background-color: #00ADD0;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    height: 26px;
    width: 200px;
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    margin: 0 auto; }
  .feature-article-box .feature-article-box__content {
    padding: 10px 20px;
    width: 100%;
    position: absolute;
    bottom: 10px;
    overflow: hidden; }
    .feature-article-box .feature-article-box__content h1 {
      display: inline;
      padding: 0 20px;
      margin-bottom: 0;
      color: #FFFFFF;
      background-color: #00ADD0;
      word-wrap: break-word;
      -webkit-box-decoration-break: clone;
      -o-box-decoration-break: clone;
      box-decoration-break: clone;
      font-family: "arno-pro",serif;
      font-style: normal;
      font-weight: 700;
      line-height: 54px;
      font-size: 2.7em; }
    .feature-article-box .feature-article-box__content span {
      display: inline-block;
      padding: 0 20px;
      margin-bottom: 10px;
      color: #FFFFFF;
      background-color: #00ADD0;
      -webkit-box-decoration-break: clone;
      -o-box-decoration-break: clone;
      box-decoration-break: clone; }
    .feature-article-box .feature-article-box__content *:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }

.feature-shorthand-teaser {
  position: relative;
  min-height: 400px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: #3C3C3C;
  display: block; }
  .feature-shorthand-teaser.new-Orange .type-header-box .type-header-text {
    background-color: #fca746; }
  .feature-shorthand-teaser.new-Yellow .type-header-box .type-header-text {
    background-color: #f9e19e; }
  .feature-shorthand-teaser .filled-container-image-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .feature-shorthand-teaser .filled-container-image-container img.wide {
      max-height: 100%;
      max-width: none; }
  @media all and (min-width: 481px) {
    .feature-shorthand-teaser {
      border-left: 1px solid #e2e2e2;
      border-right: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2; } }
  .feature-shorthand-teaser .type-header-box {
    position: absolute;
    top: -21px;
    left: 0;
    right: 0;
    text-align: center; }
    .feature-shorthand-teaser .type-header-box .type-header-text {
      display: inline-block;
      background-color: #9dcbe9;
      color: #333333;
      text-transform: uppercase;
      margin: 0 auto;
      padding: 7px 30px;
      min-width: 208px;
      font-weight: bold;
      font-size: 18px;
      letter-spacing: 0.9px;
      border-radius: 4px;
      box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1); }
  .feature-shorthand-teaser .feature-article-box__content {
    padding: 17px 13px;
    width: 100%;
    position: absolute;
    bottom: 10px;
    overflow: hidden; }
    .feature-shorthand-teaser .feature-article-box__content div {
      display: inline;
      padding: 0 6px;
      margin-bottom: 0;
      font-size: 36px;
      line-height: 43px;
      color: #333333;
      background-color: rgba(255, 255, 255, 0.85);
      word-wrap: break-word;
      -webkit-box-decoration-break: clone;
      -o-box-decoration-break: clone;
      box-decoration-break: clone; }
    .feature-shorthand-teaser .feature-article-box__content span {
      display: inline-block;
      padding: 0 6px;
      margin-bottom: 10px;
      font-size: 20px;
      color: #333333;
      background-color: rgba(255, 255, 255, 0.85);
      -webkit-box-decoration-break: clone;
      -o-box-decoration-break: clone;
      box-decoration-break: clone; }
    .feature-shorthand-teaser .feature-article-box__content *:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }

.core-activity-article-box {
  min-height: 400px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  display: block; }
  .core-activity-article-box .filled-container-image-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .core-activity-article-box .filled-container-image-container img.wide {
      max-height: 100%;
      max-width: none; }
  .core-activity-article-box .core-activity-article-box__content {
    background-color: rgba(255, 255, 255, 0.8);
    height: 50%;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; }
    .core-activity-article-box .core-activity-article-box__content span {
      display: block;
      margin: 25px auto;
      font-size: 22px;
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
      font-style: normal; }
      .core-activity-article-box .core-activity-article-box__content span.Blue {
        color: #00ADD0; }
      .core-activity-article-box .core-activity-article-box__content span.Orange {
        color: #FF7602; }
    .core-activity-article-box .core-activity-article-box__content .core-activity-icon__container {
      position: absolute;
      top: 54%;
      left: 0;
      right: 0;
      margin: 0 auto; }
      .core-activity-article-box .core-activity-article-box__content .core-activity-icon__container .core-activity-icon {
        height: 60px;
        width: 60px;
        margin: 0 auto;
        padding: 10px;
        background-color: #FF7602;
        border-radius: 30px; }
        .core-activity-article-box .core-activity-article-box__content .core-activity-icon__container .core-activity-icon svg {
          height: 40px;
          width: 40px;
          fill: #FFFFFF; }
          .core-activity-article-box .core-activity-article-box__content .core-activity-icon__container .core-activity-icon svg g, .core-activity-article-box .core-activity-article-box__content .core-activity-icon__container .core-activity-icon svg path, .core-activity-article-box .core-activity-article-box__content .core-activity-icon__container .core-activity-icon svg polygon {
            fill: #FFFFFF; }

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  width: 100%; }
  .responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }
  .responsive-video--16-10 {
    padding-bottom: 62.5%; }

.fact-box {
  background-color: #ededed;
  max-width: 435px;
  width: 100%;
  padding: 15px 10px;
  margin: 0 auto; }
  .fact-box h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal; }
  .fact-box .fact-box__button a {
    color: #000;
    text-decoration: none; }
    .fact-box .fact-box__button a:hover {
      text-decoration: underline; }

.fact-box__content {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center; }

.fact-box--orange-l0 {
  background-color: #ff7602; }

.fact-box--blue-l0 {
  background-color: #00add0; }

.fact-box--red-l0 {
  background-color: #ce5c43; }

.fact-box--yellow-l0 {
  background-color: #fdc82f; }

.fact-box--orange-d0 {
  background-color: #ff7602; }

.fact-box--blue-d0 {
  background-color: #00add0; }

.fact-box--red-d0 {
  background-color: #ce5c43; }

.fact-box--yellow-d0 {
  background-color: #fdc82f; }

.fact-box--orange-l10 {
  background-color: #ff9235; }

.fact-box--blue-l10 {
  background-color: #04d5ff; }

.fact-box--red-l10 {
  background-color: #d97f6b; }

.fact-box--yellow-l10 {
  background-color: #fdd562; }

.fact-box--orange-d10 {
  background-color: #ce5e00; }

.fact-box--blue-d10 {
  background-color: #00839d; }

.fact-box--red-d10 {
  background-color: #b0452e; }

.fact-box--yellow-d10 {
  background-color: #f7b802; }

.fact-box--orange-l20 {
  background-color: #ffad68; }

.fact-box--blue-l20 {
  background-color: #37ddff; }

.fact-box--red-l20 {
  background-color: #e3a294; }

.fact-box--yellow-l20 {
  background-color: #fee394; }

.fact-box--orange-d20 {
  background-color: #9b4700; }

.fact-box--blue-d20 {
  background-color: #00586a; }

.fact-box--red-d20 {
  background-color: #883523; }

.fact-box--yellow-d20 {
  background-color: #c49202; }

.fact-box--orange-l30 {
  background-color: #ffc99b; }

.fact-box--blue-l30 {
  background-color: #6ae6ff; }

.fact-box--red-l30 {
  background-color: #eec5bc; }

.fact-box--yellow-l30 {
  background-color: #fef0c7; }

.fact-box--orange-d30 {
  background-color: #683000; }

.fact-box--blue-d30 {
  background-color: #002e37; }

.fact-box--red-d30 {
  background-color: #5f2519; }

.fact-box--yellow-d30 {
  background-color: #926d01; }

.fact-box--orange-l40 {
  background-color: #ffe4ce; }

.fact-box--blue-l40 {
  background-color: #9defff; }

.fact-box--red-l40 {
  background-color: #f8e8e5; }

.fact-box--yellow-l40 {
  background-color: #fffdf9; }

.fact-box--orange-d40 {
  background-color: #351800; }

.fact-box--blue-d40 {
  background-color: #000304; }

.fact-box--red-d40 {
  background-color: #37160e; }

.fact-box--yellow-d40 {
  background-color: #5f4701; }

.fact-box--orange-l50 {
  background-color: white; }

.fact-box--blue-l50 {
  background-color: #d0f7ff; }

.fact-box--red-l50 {
  background-color: white; }

.fact-box--yellow-l50 {
  background-color: white; }

.fact-box--orange-d50 {
  background-color: #020100; }

.fact-box--blue-d50 {
  background-color: black; }

.fact-box--red-d50 {
  background-color: #0e0604; }

.fact-box--yellow-d50 {
  background-color: #2d2100; }

.fact-box--orange-l60 {
  background-color: white; }

.fact-box--blue-l60 {
  background-color: white; }

.fact-box--red-l60 {
  background-color: white; }

.fact-box--yellow-l60 {
  background-color: white; }

.fact-box--orange-d60 {
  background-color: black; }

.fact-box--blue-d60 {
  background-color: black; }

.fact-box--red-d60 {
  background-color: black; }

.fact-box--yellow-d60 {
  background-color: black; }

.fact-box--orange-l70 {
  background-color: white; }

.fact-box--blue-l70 {
  background-color: white; }

.fact-box--red-l70 {
  background-color: white; }

.fact-box--yellow-l70 {
  background-color: white; }

.fact-box--orange-d70 {
  background-color: black; }

.fact-box--blue-d70 {
  background-color: black; }

.fact-box--red-d70 {
  background-color: black; }

.fact-box--yellow-d70 {
  background-color: black; }

.fact-box--orange-l80 {
  background-color: white; }

.fact-box--blue-l80 {
  background-color: white; }

.fact-box--red-l80 {
  background-color: white; }

.fact-box--yellow-l80 {
  background-color: white; }

.fact-box--orange-d80 {
  background-color: black; }

.fact-box--blue-d80 {
  background-color: black; }

.fact-box--red-d80 {
  background-color: black; }

.fact-box--yellow-d80 {
  background-color: black; }

.fact-box--orange-l90 {
  background-color: white; }

.fact-box--blue-l90 {
  background-color: white; }

.fact-box--red-l90 {
  background-color: white; }

.fact-box--yellow-l90 {
  background-color: white; }

.fact-box--orange-d90 {
  background-color: black; }

.fact-box--blue-d90 {
  background-color: black; }

.fact-box--red-d90 {
  background-color: black; }

.fact-box--yellow-d90 {
  background-color: black; }

.fact-box--orange-l100 {
  background-color: white; }

.fact-box--blue-l100 {
  background-color: white; }

.fact-box--red-l100 {
  background-color: white; }

.fact-box--yellow-l100 {
  background-color: white; }

.fact-box--orange-d100 {
  background-color: black; }

.fact-box--blue-d100 {
  background-color: black; }

.fact-box--red-d100 {
  background-color: black; }

.fact-box--yellow-d100 {
  background-color: black; }

.fact-box__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #3C3C3C;
  margin: 0 0 5px;
  font-size: 1.5em;
  line-height: 1.2; }

.fact-box__text--large {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3.5em;
  line-height: 1; }
  .fact-box__text--large.norcap {
    color: #006B93; }

.fact-box__text--semi-large {
  font-size: 1.5em; }
  .fact-box__text--semi-large.norcap {
    color: #006B93; }

.fact-box__text--orange {
  color: #FF7602; }

.fact-box__text--darkorange {
  color: #C65304; }

/**
  Override of listblock for FactBoxes
**/
@media all and (min-width: 1025px) {
  .list-module .factBoxes__container .block {
    max-width: 435px !important;
    width: 33.33% !important;
    margin: 0 !important; }
    .list-module .factBoxes__container .block:first-child {
      margin: 0 0 0 auto !important; }
    .list-module .factBoxes__container .block:last-child {
      margin: 0 auto 0 0 !important; } }
.tags {
  margin: 5px 0; }
  .tags a {
    color: #BF5901;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    padding: 0 10px;
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -ms-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms; }
  .tags > * {
    margin: 0 5px 5px; }
    .tags > *:first-child {
      margin-left: 0; }
    .tags > *:last-child {
      margin-right: 0; }
  .tags:before {
    content: "\69";
    color: #FF7602;
    display: inline-block;
    background-color: transparent;
    margin: 0 10px 5px 0; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
.article-top-image {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px; }
  .article-top-image.article-top-image--image figcaption::before {
    content: '\61'; }
  .article-top-image.article-top-image--youtube figcaption::before {
    content: '\6a'; }
  .article-top-image figcaption {
    width: 200px;
    padding: 0 5px 0 20px;
    position: absolute;
    right: 0;
    bottom: 0; }
    .article-top-image figcaption::before {
      color: #FF7602;
      display: block;
      padding-bottom: 10px;
      margin-bottom: 10px;
      border-bottom: 1px solid #FF7602;
      font-size: 1.333em; }
      @media all and (min-width: 1401px) {
        .article-top-image figcaption::before {
          width: 75px; } }
  .article-top-image .swipebox {
    color: #FF7602; }
  @media all and (max-width: 1400px) {
    .article-top-image {
      display: block; }
      .article-top-image > * {
        display: block;
        width: 100%; }
      .article-top-image figcaption {
        width: 100%;
        padding: 20px;
        position: relative; }
        .article-top-image figcaption::before {
          display: inline-block;
          border-right: 1px solid #FF7602;
          border-bottom: 0;
          margin: 0 5px 0 0;
          padding: 0 10px 2px 0; }
      .article-top-image .collapsed-container__heading {
        width: auto;
        display: inline !important; }
        .article-top-image .collapsed-container__heading::after {
          display: none !important; } }

.article-top-image__wrapper {
  position: relative;
  width: 100%;
  max-width: 1150px; }
  .article-top-image__wrapper img {
    width: 100%; }
  @media all and (max-width: 1400px) {
    .article-top-image__wrapper {
      margin-bottom: 10px;
      width: 100%; } }

.article-top-image__text {
  font-size: 0.833em;
  display: block; }

.article-top-image__text-opener {
  color: #FF7602;
  font-size: 0.833em; }
  @media all and (min-width: 1401px) {
    .article-top-image__text-opener {
      display: none; } }

.article-top-image--video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }
  .article-top-image--video-overlay:hover {
    cursor: pointer; }
    .article-top-image--video-overlay:hover .article-top-image--video-overlay-icon {
      background: #000; }

.article-top-image--hidden {
  display: none; }

.article-top-image--video-overlay-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 112px;
  height: 112px;
  border: 2px solid #FF7602;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3); }
  .article-top-image--video-overlay-icon svg {
    width: 50px;
    height: 60px;
    position: absolute;
    left: 40px;
    top: 25px; }

.article-top-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .article-top-video .fluid-width-video-wrapper {
    height: 100%; }

.article-wide-image {
  margin: 0 auto;
  position: relative; }
  .article-wide-image .article-top-image__wrapper {
    margin-bottom: 20px;
    width: 100%;
    max-width: none; }
    .article-wide-image .article-top-image__wrapper img {
      width: 100%; }
  .article-wide-image .article-top-image__text {
    font-size: 0.833em;
    display: block; }
  .article-wide-image .article-top-image__text-opener {
    color: #FF7602;
    font-size: 0.833em; }
    @media all and (min-width: 1401px) {
      .article-wide-image .article-top-image__text-opener {
        display: none; } }
  @media all and (min-width: 1401px) {
    .article-wide-image .article-top-image__figcaption--wrapper {
      position: absolute;
      z-index: -1;
      width: 100%; }
      .article-wide-image .article-top-image__figcaption--wrapper .article-top-image__figcaption {
        margin-left: 1120px; } }
  .article-wide-image figcaption {
    display: inline-block;
    width: 200px;
    padding: 0 5px 0 20px; }
    .article-wide-image figcaption::before {
      content: '\61';
      color: #FF7602;
      display: block;
      padding-bottom: 10px;
      margin-bottom: 10px;
      border-bottom: 1px solid #FF7602;
      font-size: 1.333em; }
      @media all and (min-width: 1401px) {
        .article-wide-image figcaption::before {
          width: 75px; } }
  @media all and (max-width: 1400px) {
    .article-wide-image figcaption {
      width: 100%;
      padding: 20px;
      position: relative; }
      .article-wide-image figcaption::before {
        display: inline-block;
        border-right: 1px solid #FF7602;
        border-bottom: 0;
        margin: 0 5px 0 0;
        padding: 0 10px 2px 0; }
    .article-wide-image .collapsed-container__heading {
      width: auto;
      display: inline !important; }
      .article-wide-image .collapsed-container__heading::after {
        display: none !important; } }

.product-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 7.5px 7.5px 85px;
  background-color: #FFFFFF;
  border: 1px solid #FF7602; }
  .product-box a {
    text-decoration: none;
    color: inherit; }
  .product-box img {
    width: 100%; }
  .product-box .donation__button.active {
    box-shadow: none;
    width: 115px; }

.product-box--yellow .product-box {
  background-color: #FDC82F; }

.product-box__label-container {
  position: relative;
  height: 0;
  border-bottom: 1px solid black;
  overflow: visible;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5; }
  .product-box__label-container span {
    position: relative;
    bottom: 0.9rem;
    display: inline-block;
    background-color: black;
    color: white;
    padding: 0 15px; }

.product-box__price-label {
  display: inline-block;
  color: #2b2e34;
  font-size: 19px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal; }

.product-box__image {
  position: relative;
  overflow: hidden; }
  .product-box__image .product-box__imageWrap {
    position: absolute;
    top: 25px;
    left: -40px;
    color: #FFFFFF;
    transform: rotate(-45deg);
    padding: 3.5px 45px;
    font-size: 14px;
    text-align: left;
    background: url("/Images/gmm/white_bow.svg") no-repeat 20px center #FF7602;
    background-size: 20px;
    width: 212px;
    height: 27px;
    overflow: hidden; }

.product-box__content {
  max-width: 480px;
  margin: 0 auto;
  padding-top: 13px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #2b2e34; }
  .product-box__content h2 {
    font-size: 24px;
    line-height: 1.35;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    margin-bottom: 10px; }

.product-box__btn-container {
  position: absolute;
  bottom: 15px;
  width: 100%; }
  .product-box__btn-container * {
    margin: 0 7.5px; }
  .product-box__btn-container a {
    display: inline-block;
    vertical-align: middle; }

.status-point {
  text-align: center;
  min-width: 90px; }
  @media all and (max-width: 480px) {
    .status-point {
      min-width: 60px; } }

.status-point--active .status-point__bullet {
  background-color: #FF7602; }

.status-point__bullet {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
  font-size: 0;
  background-color: #666; }
  .status-point__bullet:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0; }
  .status-point__bullet span {
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
    color: white;
    font-size: 40px;
    font-weight: 700; }
  @media all and (max-width: 480px) {
    .status-point__bullet {
      width: 35px;
      height: 35px; }
      .status-point__bullet span {
        font-size: 20px; } }

.status-point__text {
  font-size: 19px;
  color: #2b2e34; }

.product-chooser {
  display: table;
  table-layout: fixed;
  color: #2b2e34;
  width: 100%; }
  .product-chooser a {
    color: #2b2e34; }

.product-chooser__column {
  display: table-cell;
  vertical-align: middle;
  padding: 12px;
  width: 165px; }
  .product-chooser__column:first-child {
    padding-left: 0;
    width: 63px; }
  .product-chooser__column:last-child {
    padding-right: 0;
    width: auto;
    text-align: right; }

.product-chooser__amount {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 18px; }

.sum-text {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 18px; }

.product-chooser__column--chooser {
  white-space: nowrap; }

.product-chooser__count-chooser {
  text-decoration: none; }

.product-chooser__field,
input[type=text].product-chooser__field,
input.product-chooser__field[type=email],
input.product-chooser__field[type=tel] {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  width: 100%;
  max-width: 95px;
  padding: 7px 30px;
  border: 1px solid #FF7602;
  text-align: center;
  margin: 0 6px;
  background-color: #FFFFFF;
  font-size: 23px;
  line-height: 1.3;
  border-radius: 20px; }
  .product-chooser__field:focus,
  input[type=text].product-chooser__field:focus,
  input.product-chooser__field[type=email]:focus,
  input.product-chooser__field[type=tel]:focus {
    outline-color: #FF7602; }

.giftCard__emailinput--wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-top: 70px; }
  .giftCard__emailinput--wrapper > div {
    flex-basis: 50%;
    display: inline-block; }
    .giftCard__emailinput--wrapper > div .flatpickr {
      text-align: center;
      background-color: #FFFFFF; }

.edit-area .main__pdf {
  margin-top: 20px;
  border: 1px solid #FF7602;
  color: #2b2e34;
  padding: 20px 60px 40px 60px; }
  .edit-area .main__pdf .title {
    margin-bottom: 30px; }
    .edit-area .main__pdf .title h1 {
      margin: 0;
      font-size: 27px;
      font-weight: 300;
      line-height: 1.3;
      color: #FF7602; }
    .edit-area .main__pdf .title h2 {
      text-align: center;
      margin: 0;
      font-size: 13px;
      font-weight: 300;
      line-height: 1.23; }
  .edit-area .main__pdf section.message {
    position: relative;
    margin-bottom: 30px; }
    .edit-area .main__pdf section.message .bg__filler {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0; }
      .edit-area .main__pdf section.message .bg__filler div {
        height: 35px;
        border-bottom: 1.5px solid #FF7602; }
    .edit-area .main__pdf section.message textarea {
      position: relative;
      z-index: 100;
      font-family: Bradley-Hand;
      font-weight: normal;
      font-size: 14pt;
      overflow: hidden;
      width: 100%;
      height: 245px;
      padding: 0;
      border: none;
      resize: none;
      background: transparent;
      line-height: 35px; }
      .edit-area .main__pdf section.message textarea:focus {
        border: none;
        outline: none; }
  .edit-area .main__pdf .product {
    margin-bottom: 60px; }
    .edit-area .main__pdf .product h2 {
      font-size: 18px;
      font-weight: normal;
      color: #FF7602;
      line-height: 1.21; }
    .edit-area .main__pdf .product p {
      font-weight: 300;
      font-size: 18px;
      line-height: 1.17; }
  .edit-area .main__pdf .logos {
    overflow: hidden; }
    .edit-area .main__pdf .logos .companylogo {
      float: left; }
    .edit-area .main__pdf .logos .nrclogo {
      float: right; }
.edit-area .footer__pdf {
  font-size: 12px;
  font-weight: 300;
  text-align: center; }

.shopping-cart-summery__column--amount {
  font-size: 24px;
  margin-bottom: 40px; }
  .shopping-cart-summery__column--amount span {
    float: right; }
  .shopping-cart-summery__column--amount .currency {
    margin-right: 10px; }

.shopping-cart-summery__column--btn-container {
  text-align: right; }
  .shopping-cart-summery__column--btn-container .donation__button.active {
    box-shadow: none; }

.form-layout--2-cols {
  font-size: 0; }
  .form-layout--2-cols > * {
    display: inline-block;
    vertical-align: bottom; }
  .form-layout--2-cols > * {
    font-size: 1rem; }
  .form-layout--2-cols .form-layout__field {
    width: 50%;
    padding: 0.278rem; }
    .form-layout--2-cols .form-layout__field.full {
      width: 100%; }
  @media all and (max-width: 480px) {
    .form-layout--2-cols .form-layout__field {
      width: 100%;
      display: block; } }

.form-layout__field p {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal; }
.form-layout__field textarea,
.form-layout__field input[type="text"],
.form-layout__field input[type="email"],
.form-layout__field input[type="tel"] {
  padding: 1rem 1rem 0.944rem;
  width: 100%; }

.gift-shop-dialog {
  display: inline-block;
  max-width: 470px;
  width: 100%; }
  .gift-shop-dialog:focus {
    outline: none; }

.gift-shop-dialog__button {
  display: block;
  background-color: #FF7602;
  padding: 20px;
  width: 100%;
  font-size: 27px;
  color: #2b2e34;
  border-radius: 40px; }
  .gift-shop-dialog__button:hover {
    background-color: #ff8c2b; }

.gift-shop-dialog__info {
  background: url(/Images/donation/info.svg) white no-repeat 50% 10px;
  background-size: 43px 42px;
  padding: 60px 0 15px 0;
  margin-bottom: 20px;
  border: 1px solid #FF7602;
  border-radius: 61px;
  font-size: 19px;
  line-height: 1.32;
  color: #2b2e34; }

.gift-shop-dialog__button--cancel {
  margin-bottom: 20px; }

.shopping-cart__menuitem {
  display: inline-block;
  padding: 14px 0 0; }
  .shopping-cart__menuitem i {
    display: block;
    font-size: 32px;
    color: #000000; }
  .shopping-cart__menuitem a {
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    text-align: left; }
  .shopping-cart__menuitem .cart-contents {
    position: absolute;
    top: -1px;
    left: 2px;
    text-align: center;
    width: 100%; }

.logoupload {
  margin: 20px auto; }
  .logoupload input[type=file] {
    display: none; }
  .logoupload label {
    border: 1px dashed #3C3C3C;
    display: block;
    padding: 20px; }
    .logoupload label:hover {
      border: 1px solid #FF7602;
      cursor: pointer; }
  .logoupload .logoupload-buttons {
    margin-top: 20px;
    position: relative;
    height: 50px; }
  .logoupload button {
    display: block;
    position: absolute;
    right: 0; }
  .logoupload .form-error, .logoupload .logoupload-preview {
    margin: 15px 0 0; }

.html {
  color: #3C3C3C; }
  @media all and (max-width: 600px) {
    .html {
      padding: 0 15px; } }
  @media all and (max-width: 1220px) {
    .html {
      padding: 0 10px; } }
  .html blockquote {
    position: relative;
    font-family: Cambria;
    font-size: 22px;
    line-height: 30px;
    font-style: Italic;
    color: #000;
    font-weight: 300;
    max-width: 550px;
    margin: 55px auto 40px auto; }
    .html blockquote::before {
      content: '\62';
      display: inline-block;
      position: absolute;
      left: -50px;
      font-size: 32px;
      color: #FF7602; }
  .html a {
    color: #FF7602;
    text-decoration: none; }

.webshop-greeting .html {
  max-width: 1400px; }

.aspect-ratio {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: 0; }
  @media all and (min-width: 769px) {
    .aspect-ratio {
      padding-bottom: 50%; } }
  @media all and (max-width: 768px) {
    .aspect-ratio {
      padding-bottom: 70%; } }
  @media all and (max-width: 600px) {
    .aspect-ratio {
      padding-bottom: 80%; } }
  @media all and (max-width: 480px) {
    .aspect-ratio {
      padding-bottom: 100%; } }
  .aspect-ratio .mapboxframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0; }

.dropdown-wrapper {
  position: relative;
  padding: 10px;
  margin: 0 auto;
  border: 2px solid #D5CDBF;
  background: #F2F0E7;
  cursor: pointer;
  font-weight: bold;
  outline: none; }
  .dropdown-wrapper .dropdown-title {
    display: block; }
    .dropdown-wrapper .dropdown-title:after {
      position: absolute;
      right: 10px;
      top: 15px;
      content: '\57';
      color: #FF7602; }
  .dropdown-wrapper.active .dropdown-title:after {
    transform: rotate(180deg); }
  .dropdown-wrapper .dropdown-list {
    display: none;
    position: absolute;
    border: inherit;
    border-top: none;
    top: 100%;
    margin-top: 2px;
    left: -2px;
    right: -2px;
    background: #FFF;
    padding: 0;
    list-style: none;
    font-weight: normal;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    max-height: 400px; }
    .dropdown-wrapper .dropdown-list li {
      position: relative;
      padding: 10px;
      color: #9e9e9e; }
      .dropdown-wrapper .dropdown-list li.selected i.icon, .dropdown-wrapper .dropdown-list li.selected i.collapsed-container__heading::after,
      .dropdown-wrapper .dropdown-list li.selected i.some__icon::after, .dropdown-wrapper .dropdown-list li.selected i.tags:before, .dropdown-wrapper .dropdown-list li.selected i.dropdown-title:after, .dropdown-wrapper .dropdown-list li.selected .page-header__section-column i.btn-open-menu::before, .page-header__section-column .dropdown-wrapper .dropdown-list li.selected i.btn-open-menu::before, .dropdown-wrapper .dropdown-list li.selected .page-header__section-column i.btn-menu-search::before, .page-header__section-column .dropdown-wrapper .dropdown-list li.selected i.btn-menu-search::before, .dropdown-wrapper .dropdown-list li.selected i.validation-summary-errors:before, .dropdown-wrapper .dropdown-list li.selected i.form-error:before {
        font-size: 12px; }
        .dropdown-wrapper .dropdown-list li.selected i.icon:before, .dropdown-wrapper .dropdown-list li.selected i.tags:before, .dropdown-wrapper .dropdown-list li.selected .page-header__section-column i.btn-open-menu::before:before, .page-header__section-column .dropdown-wrapper .dropdown-list li.selected i.btn-open-menu::before:before, .dropdown-wrapper .dropdown-list li.selected .page-header__section-column i.btn-menu-search::before:before, .page-header__section-column .dropdown-wrapper .dropdown-list li.selected i.btn-menu-search::before:before, .dropdown-wrapper .dropdown-list li.selected i.validation-summary-errors:before, .dropdown-wrapper .dropdown-list li.selected i.form-error:before {
          content: "\4d"; }
      .dropdown-wrapper .dropdown-list li:hover {
        background-color: #e6e6e6; }
      .dropdown-wrapper .dropdown-list li .dropdown-element--title_wrapper {
        max-width: calc(100% - 16px);
        display: block; }
      .dropdown-wrapper .dropdown-list li .dropdown-element--icon {
        position: absolute;
        display: block;
        right: 10px;
        top: 50%;
        margin-top: -8px;
        border: 1px solid #D5CDBF;
        width: 16px;
        height: 16px; }
        .dropdown-wrapper .dropdown-list li .dropdown-element--icon i {
          position: inherit;
          font-size: 14px; }
  .dropdown-wrapper.active .dropdown-list {
    display: block;
    opacity: 1;
    pointer-events: auto;
    z-index: 3; }

.quote-module-block {
  text-align: center;
  margin: 50px auto; }
  .quote-module-block .quoteWrapper {
    margin: 0 auto; }
    @media all and (min-width: 600px) {
      .quote-module-block .quoteWrapper {
        width: 50%;
        max-width: 970px; } }
  .quote-module-block.Container {
    background-color: #9dcbe9; }
    .quote-module-block.Container.new-Yellow {
      background-color: #f9e19e; }
      .quote-module-block.Container.new-Yellow .quoteIcon {
        color: #f9e19e; }
    .quote-module-block.Container.new-Orange {
      background-color: #fca746; }
      .quote-module-block.Container.new-Orange .quoteIcon {
        color: #fca746; }
    .quote-module-block.Container.new-Blue {
      background-color: #9dcbe9; }
      .quote-module-block.Container.new-Blue .quoteIcon {
        color: #9dcbe9; }
    .quote-module-block.Container .quoteIcon {
      padding: 8px;
      font-size: 14px;
      background-color: #FFFFFF;
      color: #9dcbe9;
      border-radius: 16px;
      margin: 21px auto 25px; }
    .quote-module-block.Container .quoteBody {
      padding: 0 16px;
      font-size: 24px;
      line-height: 26px;
      font-family: "arno-pro",serif;
      font-style: italic;
      font-weight: 400; }
    .quote-module-block.Container .sourceRefrence {
      padding: 40px 0 46px 0;
      color: #FFFFFF;
      font-size: 16px;
      line-height: 19px; }
  .quote-module-block.GreyContainer {
    background-color: #ededed; }
    .quote-module-block.GreyContainer.new-Yellow .quoteIcon {
      color: #f9e19e; }
    .quote-module-block.GreyContainer.new-Orange .quoteIcon {
      color: #fca746; }
    .quote-module-block.GreyContainer.new-Blue .quoteIcon {
      color: #9dcbe9; }
    .quote-module-block.GreyContainer .quoteIcon {
      padding: 8px;
      font-size: 14px;
      background-color: white;
      color: #fca746;
      border-radius: 16px;
      margin: 21px auto 25px; }
    .quote-module-block.GreyContainer .quoteBody {
      color: #666666;
      padding: 0 16px;
      font-size: 24px;
      line-height: 26px;
      font-family: "arno-pro",serif;
      font-style: italic;
      font-weight: 400; }
    .quote-module-block.GreyContainer .sourceRefrence {
      padding: 40px 0 46px 0;
      color: #333333;
      font-size: 16px;
      line-height: 19px; }
  .quote-module-block.Text.new-Yellow .quoteIcon {
    background-color: #f9e19e; }
  .quote-module-block.Text.new-Yellow .sourceRefrence {
    color: #f9e19e; }
  .quote-module-block.Text.new-Orange .quoteIcon {
    background-color: #fca746; }
  .quote-module-block.Text.new-Orange .sourceRefrence {
    color: #fca746; }
  .quote-module-block.Text.new-Blue .quoteIcon {
    background-color: #9dcbe9; }
  .quote-module-block.Text.new-Blue .sourceRefrence {
    color: #9dcbe9; }
  .quote-module-block.Text .quoteIcon {
    padding: 8px;
    font-size: 14px;
    background-color: #9dcbe9;
    color: white;
    border-radius: 16px;
    margin: 21px auto 25px; }
  .quote-module-block.Text .quoteBody {
    width: 80%;
    margin: 0 auto;
    font-family: "arno-pro",serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px; }
    .quote-module-block.Text .quoteBody span {
      display: inline;
      padding: 3px 15px;
      -webkit-box-decoration-break: clone;
      -o-box-decoration-break: clone;
      box-decoration-break: clone;
      background-color: #F2F0E7; }
  .quote-module-block.Text .sourceRefrence {
    padding: 40px 0 46px 0;
    color: #9dcbe9;
    font-size: 16px;
    line-height: 19px; }

@media all and (max-width: 600px) {
  .htmlMediaBlock {
    padding: 0 15px; } }
@media all and (max-width: 1220px) {
  .htmlMediaBlock {
    padding: 0 10px; } }
.htmlMediaBlock img {
  margin: 0 auto; }
  @media all and (min-width: 769px) {
    .htmlMediaBlock img {
      display: inline-block;
      margin: 0 1em;
      max-width: 100%; } }
.htmlMediaBlock .imageRight {
  display: none; }
@media all and (min-width: 768px) {
  .htmlMediaBlock {
    max-width: 100%; }
    .htmlMediaBlock.Left .imageRight {
      display: none; }
    .htmlMediaBlock.Left img {
      margin: 0;
      padding-right: 10px; }
    .htmlMediaBlock.Left .icon, .htmlMediaBlock.Left .collapsed-container__heading::after,
    .htmlMediaBlock.Left .some__icon::after, .htmlMediaBlock.Left .tags:before, .htmlMediaBlock.Left .article-top-image figcaption::before, .article-top-image .htmlMediaBlock.Left figcaption::before, .htmlMediaBlock.Left .article-wide-image figcaption::before, .article-wide-image .htmlMediaBlock.Left figcaption::before, .htmlMediaBlock.Left .html blockquote::before, .html .htmlMediaBlock.Left blockquote::before, .htmlMediaBlock.Left .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .htmlMediaBlock.Left .dropdown-title:after, .htmlMediaBlock.Left .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .htmlMediaBlock.Left span::before, .htmlMediaBlock.Left .page-header__section-column .btn-open-menu::before, .page-header__section-column .htmlMediaBlock.Left .btn-open-menu::before, .htmlMediaBlock.Left .page-header__section-column .btn-menu-search::before, .page-header__section-column .htmlMediaBlock.Left .btn-menu-search::before, .htmlMediaBlock.Left .nrc .carousel__next a, .nrc .carousel__next .htmlMediaBlock.Left a,
    .htmlMediaBlock.Left .nrc .carousel__previous a,
    .nrc .carousel__previous .htmlMediaBlock.Left a, .htmlMediaBlock.Left .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .htmlMediaBlock.Left a,
    .htmlMediaBlock.Left .flyktninghjelpen .carousel__previous a,
    .flyktninghjelpen .carousel__previous .htmlMediaBlock.Left a, .htmlMediaBlock.Left .validation-summary-errors:before, .htmlMediaBlock.Left .form-error:before {
      margin-right: 10px; }
    .htmlMediaBlock.Left figcaption {
      padding-left: 0; }
    .htmlMediaBlock.Right .imageLeft {
      display: none; }
    .htmlMediaBlock.Right img {
      margin: 0;
      padding-left: 10px; }
    .htmlMediaBlock.Right figcaption {
      padding-left: 10px; }
    .htmlMediaBlock .media, .htmlMediaBlock .html {
      display: inline-block;
      vertical-align: top; }
    .htmlMediaBlock .media {
      max-width: 40%;
      margin-top: 6px; }
    .htmlMediaBlock .html {
      max-width: 55%; } }
@media all and (min-width: 1024px) {
  .htmlMediaBlock .media figcaption {
    position: relative; }
  .htmlMediaBlock .media .article-top-image__figcaption {
    margin: 0; } }

.bannerblock {
  width: 100%;
  margin: 15px auto;
  background-color: #EAE7DD; }
  @media all and (min-width: 768px) {
    .bannerblock {
      max-width: 1000px; } }
  .bannerblock .bannerblock--label.Orange .bannerblock--label-borders,
  .bannerblock .bannerblock--label.Orange .bannerblock--label-borders::before,
  .bannerblock .bannerblock--label.Orange .bannerblock--label-borders::after {
    color: #ffffff;
    border-top-color: rgba(255, 118, 2, 0.8);
    border-bottom-color: rgba(255, 118, 2, 0.8); }
  .bannerblock .bannerblock--label.DarkGray .bannerblock--label-borders,
  .bannerblock .bannerblock--label.DarkGray .bannerblock--label-borders::before,
  .bannerblock .bannerblock--label.DarkGray .bannerblock--label-borders::after {
    color: #ffffff;
    border-top-color: rgba(97, 97, 97, 0.8);
    border-bottom-color: rgba(97, 97, 97, 0.8); }
  .bannerblock .bannerblock--label.Turquoise .bannerblock--label-borders,
  .bannerblock .bannerblock--label.Turquoise .bannerblock--label-borders::before,
  .bannerblock .bannerblock--label.Turquoise .bannerblock--label-borders::after {
    color: #ffffff;
    border-top-color: rgba(0, 148, 179, 0.8);
    border-bottom-color: rgba(0, 148, 179, 0.8); }
  .bannerblock .bannerblock--label.Yellow .bannerblock--label-borders,
  .bannerblock .bannerblock--label.Yellow .bannerblock--label-borders::before,
  .bannerblock .bannerblock--label.Yellow .bannerblock--label-borders::after {
    color: #ffffff;
    border-top-color: rgba(253, 200, 47, 0.8);
    border-bottom-color: rgba(253, 200, 47, 0.8); }
  .bannerblock .bannerblock--label.Black .bannerblock--label-borders,
  .bannerblock .bannerblock--label.Black .bannerblock--label-borders::before,
  .bannerblock .bannerblock--label.Black .bannerblock--label-borders::after {
    color: #ffffff;
    border-top-color: rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(0, 0, 0, 0.8); }
  .bannerblock .bannerblock--image {
    margin-bottom: 15px;
    float: left;
    width: 50%;
    padding: 60px 35px 0 50px; }
    @media all and (min-width: 768px) {
      .bannerblock .bannerblock--image {
        width: 30%;
        padding: 83px 35px 0 50px; } }
  @media all and (min-width: 768px) {
    .bannerblock .bannerblock--content-wrapper {
      float: left;
      width: 70%;
      padding: 50px 50px 50px 0; } }
  .bannerblock .bannerblock--date {
    padding: 30px 50px 5px 0;
    float: left;
    width: 50%;
    font-size: 14px;
    color: #4A4A4A; }
    @media all and (min-width: 768px) {
      .bannerblock .bannerblock--date {
        float: none;
        width: auto;
        padding: 0; } }
  .bannerblock .bannerblock--title {
    padding: 0 50px 0 0;
    float: left;
    width: 50%;
    font-size: 22px; }
    @media all and (min-width: 768px) {
      .bannerblock .bannerblock--title {
        float: none;
        width: auto;
        padding: 0;
        font-size: 30px; } }
  .bannerblock .bannerblock--content {
    padding: 0 50px 35px;
    font-size: 16px;
    color: #3C3C3C; }
    .bannerblock .bannerblock--content p {
      margin: 0 0 10px; }
    @media all and (min-width: 768px) {
      .bannerblock .bannerblock--content {
        padding: 0;
        font-size: 18px; } }
  .bannerblock .bannerblock--link {
    background-color: #D1CFC2;
    clear: both;
    padding: 7px 50px;
    text-align: center; }
    .bannerblock .bannerblock--link a {
      text-decoration: none;
      color: #3C3C3C; }

.emergency-page-box {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: #3C3C3C;
  display: block;
  width: 100%; }
  .emergency-page-box .emergency-page-box__content .emergency-category__container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    margin: 0 auto; }
    .emergency-page-box .emergency-page-box__content .emergency-category__container .emergency-category {
      display: inline-block;
      background-color: #000000;
      color: #FFFFFF;
      padding: 2px 14px 3px 14px; }
      .emergency-page-box .emergency-page-box__content .emergency-category__container .emergency-category:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border-top: solid 15px #000000;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent; }
  .emergency-page-box .emergency-page-box__content .emergency-title {
    background-color: #CE5C43;
    border-top: 5px solid #000000;
    color: #000000;
    padding: 30px 0; }

.svgManager {
  visibility: hidden; }

.footer-pie-chart {
  width: 100%;
  float: left;
  margin-top: 30px;
  padding: 0 15px;
  height: 170px;
  position: relative; }
  @media all and (min-width: 1024px) {
    .footer-pie-chart {
      width: 65%; } }
  .footer-pie-chart img {
    height: 170px;
    width: 170px;
    float: left; }
  .footer-pie-chart .pie-text {
    position: absolute;
    left: 25px;
    top: 50%;
    text-align: center;
    font-size: 36px;
    width: 160px;
    color: #000000;
    font-weight: 500;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .footer-pie-chart .pie-description {
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    position: absolute;
    top: 50%;
    left: 200px;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  @media all and (max-width: 599px) {
    .footer-pie-chart {
      height: 100px; }
      .footer-pie-chart img {
        width: 100px;
        height: 100px; }
      .footer-pie-chart .pie-text {
        width: 90px;
        font-size: 25px;
        left: 20px; }
      .footer-pie-chart .pie-description {
        left: 140px;
        font-size: 20px;
        line-height: 22px; } }

.shorthand-box {
  position: relative;
  padding: 50px 30px;
  color: white;
  overflow: hidden; }
  .shorthand-box .sh_backgroundImage {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -2;
    display: block;
    height: auto;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px); }
  .shorthand-box .sh_backgroundFilter {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-color: black;
    opacity: 0.3; }
  .shorthand-box .sh_title {
    font-size: 36px;
    font-family: "Roboto Condensed",sans-serif;
    font-weight: 700; }
  .shorthand-box .sh_ingress {
    font-family: Baskerville,Baskerville Old Face,Hoefler Text,Garamond,Times New Roman,serif; }
  .shorthand-box .sh_actionbtn {
    margin-top: 10px;
    font-family: Baskerville,Baskerville Old Face,Hoefler Text,Garamond,Times New Roman,serif;
    padding: 6px 20px;
    background-color: transparent;
    border: 2px solid white;
    color: white; }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.menu {
  text-align: center;
  width: 100%;
  z-index: 9999; }
  .menu nav > ul > li > .menu-item__text {
    color: inherit; }
  @media all and (min-width: 1025px) {
    .menu nav > ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -webkit-box-orient: horizontal;
      -moz-box-orient: horizontal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -moz-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      margin: 0 auto;
      position: relative;
      padding: 0;
      list-style: none; }
      .menu nav > ul > li {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        width: auto;
        -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto; } }
  @media all and (max-width: 1024px) {
    .menu {
      background-color: #EAE7DD;
      color: white;
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      display: none; }
      .menu.js--active {
        display: block;
        overflow-y: auto; }
      .menu nav > ul {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0; } }

.menu__header {
  border-bottom: 1px solid #C6B6A6; }
  .menu__header:after {
    content: "";
    display: block;
    clear: both; }
  @media all and (min-width: 1025px) {
    .menu__header {
      display: none; } }

.menu__btn-close {
  float: right;
  text-align: center;
  color: #FF7602;
  font-size: 31px;
  margin-right: 43px;
  margin-top: 15px;
  margin-bottom: 13px; }

@media all and (min-width: 1024px) {
  .menu .menu-item {
    vertical-align: bottom;
    padding: 0 5px; } }
@media all and (max-width: 1024px) {
  .menu .menu-item {
    border-bottom: 1px solid #C9C3AF;
    display: inherit;
    max-width: none;
    text-align: left;
    margin: 0; }
    .menu .menu-item:last-child {
      border-bottom: none; }
    .menu .menu-item > .menu-item__text {
      width: 100%; }
    .menu .menu-item .mega-menu__group-name {
      background-color: #FFFFFF;
      color: #7F6C5C; }
    .menu .menu-item:last-child .menu-item__text {
      border: none; } }

.menu > nav > ul > .menu-item {
  padding: 0 30px 15px; }
  @media all and (max-width: 1024px) {
    .menu > nav > ul > .menu-item {
      padding: 0; }
      .menu > nav > ul > .menu-item .menu-item__text {
        font-size: 1.125em;
        color: #4B3625;
        line-height: 2.556em; } }

.support-menu-tablet {
  border-top: 1px solid #C9C3AF; }
  .support-menu-tablet .menu-item .menu-item__text {
    color: #4B3625;
    font-size: 18px;
    line-height: 46px;
    font-weight: 900; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.top-level-menu {
  color: black; }
  .top-level-menu i {
    display: none; }
  @media all and (min-width: 1025px) {
    .top-level-menu.js--active, .top-level-menu:hover {
      background: #ededed; }
      .top-level-menu.js--active .top-level-menu__content, .top-level-menu:hover .top-level-menu__content {
        background-color: #ededed;
        display: block;
        cursor: default;
        color: #000; } }
  @media all and (max-width: 1024px) {
    .top-level-menu {
      color: #000; }
      .top-level-menu.js--active .top-level-menu__content {
        display: block; }
      .top-level-menu.js--active i {
        display: inline-block;
        float: right;
        margin-top: 10px;
        margin-right: 43px;
        transform: rotate(90deg);
        color: #FF7602;
        font-size: 32px; }
      .top-level-menu .menu-main-link, .top-level-menu .menu nav > ul > li > .menu-item__text, .menu .top-level-menu nav > ul > li > .menu-item__text {
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: left;
        color: #4B3625;
        font-size: 18px;
        line-height: 46px;
        font-weight: 900;
        text-transform: uppercase; } }

.top-level-menu__name {
  cursor: default;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  white-space: nowrap; }

.top-level-menu__content {
  display: none;
  text-align: left;
  z-index: 100; }
  @media all and (min-width: 1025px) {
    .top-level-menu__content {
      color: #000;
      position: absolute;
      left: 0;
      right: 0;
      padding: 20px; } }
  @media all and (max-width: 1024px) {
    .top-level-menu__content {
      /*
      .mega-menu__group-name {
        padding-left: -webkit-calc(100px + 10px) !important;
        padding-left: -moz-calc(100px + 10px) !important;;
        padding-left: calc(100px + 10px) !important;;
      }
      .menu-item {
        > .menu-item__text {
          padding-left: -webkit-calc(100px + 10px);
          padding-left: -moz-calc(100px + 10px);
          padding-left: calc(100px + 10px);
        }
      }
      */ } }
  .top-level-menu__content .page-wrapper, .top-level-menu__content .logoupload, .top-level-menu__content .EPiServerForms {
    padding: 0; }
    .top-level-menu__content .page-wrapper ul, .top-level-menu__content .logoupload ul, .top-level-menu__content .EPiServerForms ul {
      padding: 0; }

.top-level-menu__leadtext {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  max-width: 590px;
  display: block;
  font-size: 0.888em; }
  .top-level-menu__leadtext p {
    margin: 20px 0 30px; }
  @media all and (max-width: 1024px) {
    .top-level-menu__leadtext {
      display: none; } }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.header-support-menu {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
  text-align: center;
  table-layout: fixed;
  width: auto;
  margin: 0 auto;
  padding-top: 10px; }
  .header-support-menu li {
    margin: 0;
    padding: 0; }
  .header-support-menu .menu-item {
    display: table-cell;
    padding: 0 10px; }
  @media all and (max-width: 1024px) {
    .header-support-menu {
      display: none; } }
  .header-support-menu .menu-item__text {
    font-size: 1em;
    color: #737373; }

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
.mega-menu {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%; }
  .mega-menu li {
    margin: 0;
    padding: 0; }
  .mega-menu .menu-item__text {
    color: #000;
    padding: 0;
    line-height: 2.188em; }
    .mega-menu .menu-item__text:hover {
      color: white; }
      @media all and (min-width: 1025px) {
        .mega-menu .menu-item__text:hover[href] {
          border-bottom: 2px solid #FF7602; } }
  @media all and (min-width: 1025px) {
    .mega-menu {
      display: table;
      table-layout: fixed; } }
  .mega-menu ul {
    padding: 0;
    list-style-type: none; }

li.mega-menu__column > ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0; }
  li.mega-menu__column > ul li {
    margin: 0;
    padding: 0; }
@media all and (min-width: 1025px) {
  li.mega-menu__column {
    border-right: 1px solid #AFA398;
    display: table-cell;
    vertical-align: top;
    padding-left: 10px; }
    li.mega-menu__column:last-child {
      border-right: none; }
    li.mega-menu__column:first-child {
      padding-left: 0; } }

.mega-menu__group {
  display: block;
  padding-bottom: 20px !important; }
  @media all and (min-width: 1025px) {
    .mega-menu__group {
      display: block; }
      .mega-menu__group .menu-item {
        display: block; } }
  @media all and (max-width: 1024px) {
    .mega-menu__group .mega-menu__group-content {
      border-bottom: none; } }

.mega-menu__group-name {
  cursor: default;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #523426;
  font-size: 0.938em; }
  @media all and (max-width: 1024px) {
    .mega-menu__group-name {
      width: 100%;
      display: block;
      padding: 5px 0;
      font-size: 1em;
      color: #523426;
      font-weight: 900; } }

@media all and (max-width: 1024px) {
  .mega-menu__group-content {
    padding: 0; }
    .mega-menu__group-content .menu__item {
      padding: 7px 0;
      font-size: 1.125em; }
      .mega-menu__group-content .menu__item:last-child {
        border-bottom: none !important; } }
@media all and (min-width: 1025px) {
  .mega-menu__group-content {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0; }
    .mega-menu__group-content li {
      margin: 0;
      padding: 0; } }

@media all and (max-width: 1024px) {
  .mega-menu > .mega-menu__group .menu-item, .mega-menu > .mega-menu__group .mega-menu__group-name, .mega-menu > .mega-menu__column .menu-item, .mega-menu > .mega-menu__column .mega-menu__group-name {
    padding-left: 120px; }
  .mega-menu .mega-menu__column > div > ul > .mega-menu__group .menu-item {
    padding-left: 120px; } }
@media all and (max-width: 480px) {
  .mega-menu > .mega-menu__group .menu-item, .mega-menu > .mega-menu__group .mega-menu__group-name, .mega-menu > .mega-menu__column .menu-item, .mega-menu > .mega-menu__column .mega-menu__group-name {
    padding-left: 70px; }
  .mega-menu .mega-menu__column > div > ul > .mega-menu__group .menu-item {
    padding-left: 70px; } }
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.banner {
  margin: 0 auto;
  position: relative; }
  .banner img {
    width: 100%; }
  .banner.feature-article-tag {
    font-family: "arno-pro",serif;
    font-style: normal;
    font-weight: 400; }
    .banner.feature-article-tag .poster__heading, .banner.feature-article-tag h1, .banner.feature-article-tag h2, .banner.feature-article-tag h3, .banner.feature-article-tag h4, .banner.feature-article-tag h5, .banner.feature-article-tag h6 {
      font-family: "arno-pro",serif;
      font-style: normal;
      font-weight: 700; }
    .banner.feature-article-tag .poster__content, .banner.feature-article-tag .actionbutton, .banner.feature-article-tag .logoupload button, .logoupload .banner.feature-article-tag button, .banner.feature-article-tag .EPiServerForms .FormResetButton, .EPiServerForms .banner.feature-article-tag .FormResetButton, .banner.feature-article-tag .EPiServerForms button, .EPiServerForms .banner.feature-article-tag button {
      font-family: "arno-pro",serif;
      font-style: normal;
      font-weight: 400; }
  @media all and (max-width: 1024px) {
    .banner {
      height: 100%; }
      .banner .poster {
        height: 100%; } }
  @media all and (min-width: 1025px) {
    .banner {
      position: relative; }
      .banner .poster--horizontal {
        position: absolute;
        bottom: 0; }
      .banner .poster--vertical {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0; }
      .banner .poster--box {
        position: absolute;
        left: 0;
        top: 50px; }
      .banner .poster--right {
        right: 0;
        left: auto; } }

.contact-table {
  display: table;
  table-layout: fixed; }
  .contact-table > * {
    display: table-cell;
    vertical-align: top; }

.contact-table__icon {
  width: 33px;
  font-size: 24px;
  text-align: left; }

.contact-table__info {
  width: -webkit-calc(100% - 33px);
  width: -moz-calc(100% - 33px);
  width: calc(100% - 33px);
  padding: 0 5px; }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
.list-module .lined-heading {
  margin: 15px auto 40px; }
.list-module .blocks-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0 !important;
  text-align: center;
  width: 100%; }
.list-module .block {
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }
  @media all and (min-width: 601px) {
    .list-module .block {
      padding: 5px; } }
  .list-module .block > * {
    margin: 0 auto; }
  @media all and (max-width: 600px) {
    .list-module .block {
      padding: 0 0 50px; } }
  .list-module .block:hover {
    opacity: 0.7;
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -ms-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms; }
  .list-module .block.noHover:hover {
    opacity: 1; }
.list-module .manualList__banner {
  margin: 0 auto;
  /*		.bannerblock__image{
  		width: 100%;
  		height: 600px;
  		background-size: cover;
  		background-repeat: no-repeat;
  		}*/ }
  .list-module .manualList__banner .bannerblock__link {
    display: block;
    position: relative; }
  .list-module .manualList__banner img {
    width: 100%; }
  .list-module .manualList__banner .bannerblock__title {
    position: absolute;
    bottom: 0;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 50px;
    padding: 10px;
    color: black; }
  .list-module .manualList__banner:hover {
    opacity: 0.7;
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -ms-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms; }

@media all and (min-width: 601px) {
  .list-module--large-gutter .block, .list-module--large-gutter .manualList__banner {
    padding: 15px; } }
.list-module--large-gutter .block > *, .list-module--large-gutter .manualList__banner > * {
  margin: 0 auto; }

.list-module--2-cols .block {
  width: 50%; }
.list-module--2-cols .manualList__banner {
  width: 50%; }
@media all and (max-width: 600px) {
  .list-module--2-cols .block {
    width: 100%; }
  .list-module--2-cols .manualList__banner {
    width: 100%; }
  .list-module--2-cols .manualList__banner {
    margin-bottom: 50px; } }
.list-module--2-cols .product-box {
  margin-bottom: 25px; }
.list-module--2-cols .article-box__content h2 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5em; }
  @media all and (max-width: 767px) {
    .list-module--2-cols .article-box__content h2 {
      line-height: 1.438em;
      font-size: 1.438em; } }

.list-module--3-cols .block {
  width: 33.33%; }
.list-module--3-cols .manualList__banner {
  width: 33.33%; }
@media all and (max-width: 1024px) {
  .list-module--3-cols .block {
    width: 50%; }
  .list-module--3-cols .manualList__banner {
    width: 50%; }
  .list-module--3-cols .manualList__banner {
    margin-bottom: 50px; }
  .list-module--3-cols .product-box {
    margin-bottom: 10px; } }
@media all and (max-width: 600px) {
  .list-module--3-cols .block {
    width: 100%; }
  .list-module--3-cols .manualList__banner {
    width: 100%; } }
.list-module--3-cols .article-box__content h2 {
  font-size: 1.375em;
  font-weight: 500; }

.list-module--4-cols .block {
  width: 25%; }
.list-module--4-cols .manualList__banner {
  width: 25%; }
@media all and (max-width: 1024px) {
  .list-module--4-cols .block {
    width: 50%; }
  .list-module--4-cols .manualList__banner {
    width: 50%; } }
@media all and (max-width: 600px) {
  .list-module--4-cols .block {
    width: 100%; }
  .list-module--4-cols .manualList__banner {
    width: 100%; }
  .list-module--4-cols .manualList__banner {
    margin-bottom: 50px; } }
.list-module--4-cols .article-box__content h2 {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.3em; }

.list-module--one-large-rest-small .block {
  width: 25%; }
.list-module--one-large-rest-small .manualList__banner {
  width: 33.33%; }
.list-module--one-large-rest-small .block:nth-child(3n+1) {
  width: 50%; }
  @media all and (min-width: 1025px) {
    .list-module--one-large-rest-small .block:nth-child(3n+1) .article-box img {
      height: 250px; }
    .list-module--one-large-rest-small .block:nth-child(3n+1) .article-box .article-box__text {
      display: none; } }
.list-module--one-large-rest-small .block:first-child .article-box__content h2 {
  font-size: 2em;
  font-weight: 500; }
  @media all and (max-width: 767px) {
    .list-module--one-large-rest-small .block:first-child .article-box__content h2 {
      font-size: 1.438em; } }
@media all and (max-width: 1024px) {
  .list-module--one-large-rest-small .block {
    width: 50%; }
  .list-module--one-large-rest-small .manualList__banner {
    width: 50%; }
  .list-module--one-large-rest-small .manualList__banner:nth-child(3n+1) {
    width: 100%; }
  .list-module--one-large-rest-small .block:nth-child(3n+1) {
    width: 100%; } }
@media all and (max-width: 600px) {
  .list-module--one-large-rest-small .block {
    width: 100%; }
  .list-module--one-large-rest-small .manualList__banner {
    width: 100%; } }
.list-module--one-large-rest-small .article-box__content h2 {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.3em; }

.list-module__button-container {
  width: 100%;
  text-align: center;
  margin: 40px 0 50px; }

.list-module .article-top-image figcaption {
  display: none; }

.meta-info {
  width: 100%;
  display: block;
  margin: 25px 0;
  max-width: 1105px; }
  @media all and (max-width: 1220px) {
    .meta-info {
      padding: 0 10px; } }

.meta-info__author {
  font-size: 0;
  border-bottom: 1px solid #FF7602;
  margin-bottom: 15px;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; }
  .meta-info__author > * {
    font-size: 1rem; }
  .meta-info__author .meta-info__author-history,
  .meta-info__author .some {
    display: inline-block;
    margin: 10px 0; }
    @media all and (min-width: 768px) {
      .meta-info__author .meta-info__author-history,
      .meta-info__author .some {
        align-self: flex-end;
        margin: 0; } }
  .meta-info__author .meta-info__author-history {
    flex: 1 1 auto; }
  .meta-info__author .some {
    min-width: 155px;
    flex: 0 0 auto; }
  @media all and (max-width: 767px) {
    .meta-info__author {
      flex-direction: column; } }

.meta-info__author-history {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #9B9B9B; }
  .meta-info__author-history .separator {
    color: inherit; }

.meta-info__ingress {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.333em; }

.statusbar {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 40px auto 50px auto;
  max-width: 820px; }

.statusbar__column {
  display: table-cell;
  padding: 5px; }

.product-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #F3F0E7; }
  @media all and (max-width: 599px) {
    .product-header {
      font-size: 0;
      display: block; }
      .product-header > * {
        display: inline-block;
        vertical-align: top; }
      .product-header > * {
        font-size: 1rem; } }

.product-header__column {
  width: 30%;
  position: relative; }
  .product-header__column p {
    margin: 0; }

p.product-header__price {
  margin-bottom: 40px; }
  @media all and (max-width: 600px) {
    p.product-header__price {
      margin-bottom: 20px; } }

.product-header__heading {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  margin-bottom: 10px; }

.product-header__column--text {
  width: 35%;
  padding: 30px; }
  @media all and (max-width: 1024px) {
    .product-header__column--text {
      width: 60%; } }
  @media all and (max-width: 600px) {
    .product-header__column--text {
      width: 100%; } }

.product-header__column--image {
  overflow: hidden; }
  @media all and (max-width: 1024px) {
    .product-header__column--image {
      position: relative;
      width: 350px;
      display: block; } }
  @media all and (max-width: 599px) {
    .product-header__column--image {
      width: 100%; } }

#cartView {
  position: relative; }
  @media all and (max-width: 768px) {
    #cartView {
      padding: 0 10px; } }
  #cartView .modal__content {
    position: fixed; }

.product-card {
  position: relative; }
  .product-card textarea:before {
    content: "";
    display: block; }
  @media all and (max-width: 479px) {
    .product-card {
      padding-left: 0; } }

.product-card .status-point {
  position: absolute;
  left: 20px; }
  .product-card .status-point .status-point__bullet {
    width: 35px;
    height: 35px; }
    .product-card .status-point .status-point__bullet span::before {
      content: "K";
      font-size: 1.150rem;
      margin-bottom: 3px;
      margin-left: 1px; }
  .product-card .status-point .status-point__text {
    text-transform: uppercase; }
  @media all and (max-width: 479px) {
    .product-card .status-point {
      position: static;
      margin-bottom: 30px; }
      .product-card .status-point .status-point__bullet::after {
        width: -webkit-calc(100% + 40px);
        width: -moz-calc(100% + 40px);
        width: calc(100% + 40px);
        margin-left: -20px; } }

.product-card__top-row {
  margin-bottom: 40px;
  border: 1px solid #666;
  padding: 20px; }

.giftCard__appove__wrapper input[type="checkbox"] + label {
  display: block;
  padding-left: 0;
  padding-right: 40px;
  margin-bottom: 20px; }
.giftCard__appove__wrapper input[type="checkbox"].input-validation-error + label:before {
  background-color: rgba(255, 112, 2, 0.15) !important;
  border: 3px solid #D0021B; }
.giftCard__appove__wrapper input[type="checkbox"] + label:before {
  left: auto;
  right: 0; }

.giftCard__delete__wrapper {
  line-height: 38px; }
  .giftCard__delete__wrapper button {
    float: right;
    border: 1px solid #FF7602;
    line-height: 36px;
    padding: 0 25px;
    border-radius: 20px; }

.product-card__btn-container {
  text-align: center; }
  .product-card__btn-container .actionbutton, .product-card__btn-container .logoupload button, .logoupload .product-card__btn-container button, .product-card__btn-container .EPiServerForms .FormResetButton, .EPiServerForms .product-card__btn-container .FormResetButton, .product-card__btn-container .EPiServerForms button, .EPiServerForms .product-card__btn-container button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 17px;
    white-space: normal;
    width: 160px; }

.product-add-box {
  display: inline-block;
  width: 100%;
  max-width: 390px;
  padding: 15px 10px;
  border: 1px solid #FF7602; }
  .product-add-box p {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    margin: 0 0 15px;
    font-size: 20px; }
  .product-add-box .product-chooser {
    margin-bottom: 20px; }

.product-add-box__btn-container {
  text-align: right;
  width: 100%; }
  .product-add-box__btn-container .donation__button.active {
    box-shadow: none; }

.product-registration-form .form-layout__field {
  margin-bottom: 30px; }
.product-registration-form .border__wrapper {
  border: 1px solid #FF7602;
  padding: 25px;
  padding-bottom: 0; }
.product-registration-form input[type="checkbox"] + label {
  padding-left: 80px;
  font-size: 18px;
  color: #2b2e34; }
  .product-registration-form input[type="checkbox"] + label a {
    text-decoration: none; }
.product-registration-form input[type="checkbox"] + label:before {
  top: 10px; }
.product-registration-form .ssn {
  padding-left: 80px;
  background: url("/Images/donation/info.svg") no-repeat 0 0;
  background-size: 58px; }
  .product-registration-form .ssn label {
    margin-bottom: 30px;
    display: block;
    padding-top: 17.5px; }
.product-registration-form .submit {
  padding-top: 30px;
  padding-right: 25px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end; }
  .product-registration-form .submit .donation__button.active {
    box-shadow: none;
    margin-bottom: 30px; }
    .product-registration-form .submit .donation__button.active:hover {
      background-color: #ff8c2b; }
    .product-registration-form .submit .donation__button.active.invoice {
      margin-right: 25px; }
    .product-registration-form .submit .donation__button.active.vipps {
      margin-right: 25px;
      background: url(/Images/vipps.png) no-repeat #ff5b24 115px 50%;
      background-size: 80px;
      width: 225px;
      padding-left: 0;
      padding-right: 80px; }
      .product-registration-form .submit .donation__button.active.vipps:hover {
        background-color: #ff5b24; }
  .product-registration-form .submit .donation__button.payment-method {
    margin-right: 25px; }
  .product-registration-form .submit .donation__button.payment-method-background {
    background-repeat: no-repeat;
    background-position-x: 115px;
    background-position-y: 50%;
    background-size: 80px;
    padding-left: 0;
    padding-right: 80px;
    width: 225px; }
.product-registration-form .test input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }
.product-registration-form .test label {
  padding-left: 80px;
  font-size: 18px;
  color: #2b2e34; }
  .product-registration-form .test label a {
    text-decoration: none; }
.product-registration-form .test label:before {
  top: 10px; }

@font-face {
  font-family: "iconFont";
  src: url("/content/fonts/IconFont/iconFont.eot?35d92869a54ce009dd9205bb25a70704");
  src: url("/content/fonts/IconFont/iconFont.eot?#iefix") format("embedded-opentype"), url("/content/fonts/IconFont/iconFont.svg?35d92869a54ce009dd9205bb25a70704#iconFont") format("svg"), url("/content/fonts/IconFont/iconFont.woff?35d92869a54ce009dd9205bb25a70704") format("woff"), url("/content/fonts/IconFont/iconFont.ttf?35d92869a54ce009dd9205bb25a70704") format("truetype");
  font-weight: normal;
  font-style: normal; }
.icon, .collapsed-container__heading::after, a.some__icon::after,
.some__icon::after, .tags:before, .article-top-image figcaption::before, .article-wide-image figcaption::before, .html blockquote::before, .dropdown-wrapper .dropdown-title:after, .product-card .status-point .status-point__bullet span::before, .page-header__section-column .btn-open-menu::before, .page-header__section-column .btn-menu-search::before, .nrc .carousel__next a,
.nrc .carousel__previous a, .flyktninghjelpen .carousel__next a,
.flyktninghjelpen .carousel__previous a, .validation-summary-errors:before, .form-error:before {
  font-family: "iconFont";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon_about_established:before {
  content: "\4e"; }

.icon_about_expenditure:before {
  content: "\4f"; }

.icon_about_forecast:before {
  content: "\50"; }

.icon_about_operations:before {
  content: "\51"; }

.icon_about_staff:before {
  content: "\52"; }

.icon_close_x:before {
  content: "\53"; }

.icon_contact_director:before {
  content: "\54"; }

.icon_contact_email:before {
  content: "\55"; }

.icon_contact_phone:before {
  content: "\56"; }

.icon_dropdown_arrow:before {
  content: "\57"; }

.icon_dropdown_check:before {
  content: "\58"; }

.icon_facts_internally_displaced:before {
  content: "\59"; }

.icon_facts_new_refugees:before {
  content: "\5a"; }

.icon_facts_population:before {
  content: "\5b"; }

.icon_facts_refugees:before {
  content: "\5c"; }

.icon_facts_voluntary_returns:before {
  content: "\5d"; }

.icon_ic_alert:before {
  content: "\4a"; }

.icon_ic_arrow:before {
  content: "\41"; }

.icon_ic_basket:before {
  content: "\5e"; }

.icon_ic_checkmark:before {
  content: "\4d"; }

.icon_ic_envelope:before {
  content: "\46"; }

.icon_ic_fb:before {
  content: "\42"; }

.icon_ic_gift:before {
  content: "\4b"; }

.icon_ic_google:before {
  content: "\5f"; }

.icon_ic_in:before {
  content: "\43"; }

.icon_ic_mobile:before {
  content: "\47"; }

.icon_ic_pencil:before {
  content: "\4c"; }

.icon_ic_tw:before {
  content: "\44"; }

.icon_ic_uparrow:before {
  content: "\60"; }

.icon_ic_yt:before {
  content: "\45"; }

.icon_menu:before, .page-header__section-column .btn-open-menu:before {
  content: "\6c"; }

.icon_photo:before {
  content: "\61"; }

.icon_quotemarks:before {
  content: "\62"; }

.icon_results_education:before {
  content: "\63"; }

.icon_results_food_security:before {
  content: "\64"; }

.icon_results_icla:before {
  content: "\65"; }

.icon_results_shelter:before {
  content: "\66"; }

.icon_results_shelter_2:before {
  content: "\67"; }

.icon_results_wash:before {
  content: "\68"; }

.icon_search:before, .page-header__section-column .btn-menu-search:before {
  content: "\6b"; }

.icon_shoppingcart-empty:before {
  content: "\6d"; }

.icon_shoppingcart:before {
  content: "\6e"; }

.icon_tag:before {
  content: "\69"; }

.icon_triangle-arrow:before {
  content: "\6f"; }

.icon_video:before {
  content: "\6a"; }

.icon_zoom:before {
  content: "\70"; }

.usertype-selection {
  width: 480px;
  margin: 0 auto;
  background-color: #F2F0E7; }
  .usertype-selection input[type=radio] {
    display: none; }
  .usertype-selection .usertype-selection--list .usertype-selection--item {
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -ms-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms;
    background-color: #FF7602;
    color: black;
    padding: 15px; }
    .usertype-selection .usertype-selection--list .usertype-selection--item:hover {
      background-color: #ff8b28; }
    .usertype-selection .usertype-selection--list .usertype-selection--item:focus {
      outline-color: #000; }
    .usertype-selection .usertype-selection--list .usertype-selection--item:first-child {
      border-bottom: 2px solid #000; }
  .usertype-selection label:hover, .usertype-selection .usertype-selection--item:hover {
    cursor: pointer; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
.promo-module--wrapper {
  margin: 15px;
  display: flex;
  flex-flow: nowrap column;
  justify-content: space-between;
  padding: 22px 4px;
  background-color: #F0EAD7; }
  @media all and (min-width: 481px) {
    .promo-module--wrapper {
      margin: 30px 10px;
      padding: 22px 34px; } }
  @media all and (min-width: 1025px) {
    .promo-module--wrapper {
      flex-direction: row; } }
  .promo-module--wrapper .promo-module--column {
    flex: 1 1 auto;
    /*@include breakpoint-after-and($-desktop-breakpoint) {
      max-width: 25%;
    }*/ }
    @media all and (max-width: 1024px) {
      .promo-module--wrapper .promo-module--column {
        padding: 10px 0; } }
  .promo-module--wrapper .promo-module--title h2 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
    padding: 0 10px 0 0; }
  .promo-module--wrapper .promo-module--promotext {
    font-weight: 300;
    font-size: 36px;
    vertical-align: middle; }
    .promo-module--wrapper .promo-module--promotext span {
      display: block;
      padding: 0 10px; }
  .promo-module--wrapper .promo-module--actionbutton {
    text-align: right;
    position: relative;
    min-width: 150px; }
    @media all and (max-width: 1023px) {
      .promo-module--wrapper .promo-module--actionbutton {
        margin: 0 auto;
        display: block;
        text-align: center; } }

.country-contact-block {
  background-color: #F2F0E7;
  max-width: 1200px;
  margin-bottom: 22px; }
  .country-contact-block h3 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 15px;
    font-family: Roboto;
    font-weight: 600;
    line-height: 18px;
    color: #62564B;
    text-transform: uppercase;
    padding: 18px 0; }
  .country-contact-block .contact-columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 0 30px 0; }
    @media all and (max-width: 768px) {
      .country-contact-block .contact-columns {
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; } }
    @media all and (min-width: 769px) {
      .country-contact-block .contact-columns {
        -webkit-box-direction: normal;
        -moz-box-direction: normal;
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around; } }
    .country-contact-block .contact-columns .contact-column {
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      width: auto;
      -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      text-align: center; }
      .country-contact-block .contact-columns .contact-column h4 {
        font-size: 16px;
        color: #4A4A4A;
        font-weight: 600;
        line-height: 19px;
        margin-bottom: 6px; }
      .country-contact-block .contact-columns .contact-column h4, .country-contact-block .contact-columns .contact-column .contact-text {
        font-family: Roboto; }
      .country-contact-block .contact-columns .contact-column .icon, .country-contact-block .contact-columns .contact-column .collapsed-container__heading::after,
      .country-contact-block .contact-columns .contact-column .some__icon::after, .country-contact-block .contact-columns .contact-column .tags:before, .country-contact-block .contact-columns .contact-column .article-top-image figcaption::before, .article-top-image .country-contact-block .contact-columns .contact-column figcaption::before, .country-contact-block .contact-columns .contact-column .article-wide-image figcaption::before, .article-wide-image .country-contact-block .contact-columns .contact-column figcaption::before, .country-contact-block .contact-columns .contact-column .html blockquote::before, .html .country-contact-block .contact-columns .contact-column blockquote::before, .country-contact-block .contact-columns .contact-column .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-contact-block .contact-columns .contact-column .dropdown-title:after, .country-contact-block .contact-columns .contact-column .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-contact-block .contact-columns .contact-column span::before, .country-contact-block .contact-columns .contact-column .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-contact-block .contact-columns .contact-column .btn-open-menu::before, .country-contact-block .contact-columns .contact-column .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-contact-block .contact-columns .contact-column .btn-menu-search::before, .country-contact-block .contact-columns .contact-column .nrc .carousel__next a, .nrc .carousel__next .country-contact-block .contact-columns .contact-column a,
      .country-contact-block .contact-columns .contact-column .nrc .carousel__previous a,
      .nrc .carousel__previous .country-contact-block .contact-columns .contact-column a, .country-contact-block .contact-columns .contact-column .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-contact-block .contact-columns .contact-column a,
      .country-contact-block .contact-columns .contact-column .flyktninghjelpen .carousel__previous a,
      .flyktninghjelpen .carousel__previous .country-contact-block .contact-columns .contact-column a, .country-contact-block .contact-columns .contact-column .validation-summary-errors:before, .country-contact-block .contact-columns .contact-column .form-error:before {
        color: #FFF;
        border-radius: 50%;
        background-color: #271403;
        vertical-align: middle;
        width: 26px;
        height: 26px;
        font-size: 14px;
        padding-top: 6px; }
        @media all and (min-width: 769px) {
          .country-contact-block .contact-columns .contact-column .icon, .country-contact-block .contact-columns .contact-column .collapsed-container__heading::after,
          .country-contact-block .contact-columns .contact-column .some__icon::after, .country-contact-block .contact-columns .contact-column .tags:before, .country-contact-block .contact-columns .contact-column .article-top-image figcaption::before, .article-top-image .country-contact-block .contact-columns .contact-column figcaption::before, .country-contact-block .contact-columns .contact-column .article-wide-image figcaption::before, .article-wide-image .country-contact-block .contact-columns .contact-column figcaption::before, .country-contact-block .contact-columns .contact-column .html blockquote::before, .html .country-contact-block .contact-columns .contact-column blockquote::before, .country-contact-block .contact-columns .contact-column .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-contact-block .contact-columns .contact-column .dropdown-title:after, .country-contact-block .contact-columns .contact-column .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-contact-block .contact-columns .contact-column span::before, .country-contact-block .contact-columns .contact-column .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-contact-block .contact-columns .contact-column .btn-open-menu::before, .country-contact-block .contact-columns .contact-column .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-contact-block .contact-columns .contact-column .btn-menu-search::before, .country-contact-block .contact-columns .contact-column .nrc .carousel__next a, .nrc .carousel__next .country-contact-block .contact-columns .contact-column a,
          .country-contact-block .contact-columns .contact-column .nrc .carousel__previous a,
          .nrc .carousel__previous .country-contact-block .contact-columns .contact-column a, .country-contact-block .contact-columns .contact-column .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-contact-block .contact-columns .contact-column a,
          .country-contact-block .contact-columns .contact-column .flyktninghjelpen .carousel__previous a,
          .flyktninghjelpen .carousel__previous .country-contact-block .contact-columns .contact-column a, .country-contact-block .contact-columns .contact-column .validation-summary-errors:before, .country-contact-block .contact-columns .contact-column .form-error:before {
            width: 36px;
            height: 36px;
            font-size: 18px;
            padding-top: 9px;
            margin-bottom: 15px; } }
      .country-contact-block .contact-columns .contact-column .contact-text {
        font-weight: 300;
        font-size: 18px;
        line-height: 21px;
        color: #000;
        text-decoration: none; }
        .country-contact-block .contact-columns .contact-column .contact-text a {
          color: #BF5901; }

.country-effort-block {
  max-width: 1200px;
  background-color: white;
  margin-bottom: 22px;
  position: relative;
  text-align: center; }
  .country-effort-block h3 {
    display: block;
    font-size: 36px;
    line-height: 36px;
    font-family: Roboto;
    font-weight: 300;
    color: #000000;
    padding: 18px 0;
    margin: 0; }
  .country-effort-block .country-efforts {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px;
    justify-content: space-around; }
  .country-effort-block .country-effort {
    margin: 5px auto;
    width: calc(16.6667% - 10px);
    background-color: #FFFFFF;
    position: relative; }
    .country-effort-block .country-effort::before {
      content: '';
      padding-top: 100%;
      display: block;
      float: left; }
    @media all and (min-width: 1281px) {
      .country-effort-block .country-effort .icon, .country-effort-block .country-effort .collapsed-container__heading::after,
      .country-effort-block .country-effort .some__icon::after, .country-effort-block .country-effort .tags:before, .country-effort-block .country-effort .article-top-image figcaption::before, .article-top-image .country-effort-block .country-effort figcaption::before, .country-effort-block .country-effort .article-wide-image figcaption::before, .article-wide-image .country-effort-block .country-effort figcaption::before, .country-effort-block .country-effort .html blockquote::before, .html .country-effort-block .country-effort blockquote::before, .country-effort-block .country-effort .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-effort-block .country-effort .dropdown-title:after, .country-effort-block .country-effort .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-effort-block .country-effort span::before, .country-effort-block .country-effort .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-effort-block .country-effort .btn-open-menu::before, .country-effort-block .country-effort .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-effort-block .country-effort .btn-menu-search::before, .country-effort-block .country-effort .nrc .carousel__next a, .nrc .carousel__next .country-effort-block .country-effort a,
      .country-effort-block .country-effort .nrc .carousel__previous a,
      .nrc .carousel__previous .country-effort-block .country-effort a, .country-effort-block .country-effort .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-effort-block .country-effort a,
      .country-effort-block .country-effort .flyktninghjelpen .carousel__previous a,
      .flyktninghjelpen .carousel__previous .country-effort-block .country-effort a, .country-effort-block .country-effort .validation-summary-errors:before, .country-effort-block .country-effort .form-error:before {
        font-size: 46px; }
      .country-effort-block .country-effort .effort-number {
        font-size: 38.3667px;
        line-height: 46px; }
      .country-effort-block .country-effort .effort-text {
        font-size: 17.9px;
        line-height: 20.45px; } }
    @media all and (max-width: 1023px) {
      .country-effort-block .country-effort {
        width: calc(33.3333% - 10px); }
        .country-effort-block .country-effort .icon, .country-effort-block .country-effort .collapsed-container__heading::after,
        .country-effort-block .country-effort .some__icon::after, .country-effort-block .country-effort .tags:before, .country-effort-block .country-effort .article-top-image figcaption::before, .article-top-image .country-effort-block .country-effort figcaption::before, .country-effort-block .country-effort .article-wide-image figcaption::before, .article-wide-image .country-effort-block .country-effort figcaption::before, .country-effort-block .country-effort .html blockquote::before, .html .country-effort-block .country-effort blockquote::before, .country-effort-block .country-effort .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-effort-block .country-effort .dropdown-title:after, .country-effort-block .country-effort .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-effort-block .country-effort span::before, .country-effort-block .country-effort .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-effort-block .country-effort .btn-open-menu::before, .country-effort-block .country-effort .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-effort-block .country-effort .btn-menu-search::before, .country-effort-block .country-effort .nrc .carousel__next a, .nrc .carousel__next .country-effort-block .country-effort a,
        .country-effort-block .country-effort .nrc .carousel__previous a,
        .nrc .carousel__previous .country-effort-block .country-effort a, .country-effort-block .country-effort .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-effort-block .country-effort a,
        .country-effort-block .country-effort .flyktninghjelpen .carousel__previous a,
        .flyktninghjelpen .carousel__previous .country-effort-block .country-effort a, .country-effort-block .country-effort .validation-summary-errors:before, .country-effort-block .country-effort .form-error:before {
          font-size: 7.2vw; }
        .country-effort-block .country-effort .effort-number {
          font-size: 6vw;
          line-height: 7.2vw; }
        .country-effort-block .country-effort .effort-text {
          font-size: 2.8vw;
          line-height: 3.2vw; } }
    @media all and (max-width: 479px) {
      .country-effort-block .country-effort {
        width: calc(50% - 10px); }
        .country-effort-block .country-effort .icon, .country-effort-block .country-effort .collapsed-container__heading::after,
        .country-effort-block .country-effort .some__icon::after, .country-effort-block .country-effort .tags:before, .country-effort-block .country-effort .article-top-image figcaption::before, .article-top-image .country-effort-block .country-effort figcaption::before, .country-effort-block .country-effort .article-wide-image figcaption::before, .article-wide-image .country-effort-block .country-effort figcaption::before, .country-effort-block .country-effort .html blockquote::before, .html .country-effort-block .country-effort blockquote::before, .country-effort-block .country-effort .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-effort-block .country-effort .dropdown-title:after, .country-effort-block .country-effort .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-effort-block .country-effort span::before, .country-effort-block .country-effort .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-effort-block .country-effort .btn-open-menu::before, .country-effort-block .country-effort .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-effort-block .country-effort .btn-menu-search::before, .country-effort-block .country-effort .nrc .carousel__next a, .nrc .carousel__next .country-effort-block .country-effort a,
        .country-effort-block .country-effort .nrc .carousel__previous a,
        .nrc .carousel__previous .country-effort-block .country-effort a, .country-effort-block .country-effort .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-effort-block .country-effort a,
        .country-effort-block .country-effort .flyktninghjelpen .carousel__previous a,
        .flyktninghjelpen .carousel__previous .country-effort-block .country-effort a, .country-effort-block .country-effort .validation-summary-errors:before, .country-effort-block .country-effort .form-error:before {
          font-size: 10vw; }
        .country-effort-block .country-effort .effort-number {
          font-size: 7.5vw;
          line-height: 10vw; }
        .country-effort-block .country-effort .effort-text {
          font-size: 3.5vw;
          line-height: 4vw; } }
  .country-effort-block .country-effort-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    text-align: center;
    padding: 10px; }
  .country-effort-block .icon, .country-effort-block .collapsed-container__heading::after,
  .country-effort-block .some__icon::after, .country-effort-block .tags:before, .country-effort-block .article-top-image figcaption::before, .article-top-image .country-effort-block figcaption::before, .country-effort-block .article-wide-image figcaption::before, .article-wide-image .country-effort-block figcaption::before, .country-effort-block .html blockquote::before, .html .country-effort-block blockquote::before, .country-effort-block .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-effort-block .dropdown-title:after, .country-effort-block .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-effort-block span::before, .country-effort-block .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-effort-block .btn-open-menu::before, .country-effort-block .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-effort-block .btn-menu-search::before, .country-effort-block .nrc .carousel__next a, .nrc .carousel__next .country-effort-block a,
  .country-effort-block .nrc .carousel__previous a,
  .nrc .carousel__previous .country-effort-block a, .country-effort-block .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-effort-block a,
  .country-effort-block .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .country-effort-block a, .country-effort-block .validation-summary-errors:before, .country-effort-block .form-error:before {
    color: #FF7602;
    vertical-align: middle;
    font-size: 3.6vw;
    margin-bottom: 10px; }
  .country-effort-block .effort-number {
    font-size: 3vw;
    line-height: 3.6vw;
    color: #000000;
    font-weight: 600; }
  .country-effort-block .effort-text {
    font-size: 1.4vw;
    line-height: 1.6vw;
    color: #000000;
    font-weight: 300; }

.country-fact-block {
  max-width: 1200px;
  background-color: #ededed;
  margin-bottom: 22px;
  position: relative;
  text-align: center; }
  .country-fact-block h3 {
    text-align: center;
    font-size: 36px;
    line-height: 36px;
    font-family: Roboto;
    font-weight: 800;
    color: #000000;
    padding: 45px 0 25px; }
    .country-fact-block h3 .flag {
      height: 28px;
      display: inline-block;
      vertical-align: baseline; }
      .country-fact-block h3 .flag img {
        max-height: 28px; }
  .country-fact-block .title {
    color: #C65304;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding: 10px 10px 0 32px; }
  .country-fact-block .value {
    font-size: 32px;
    line-height: 50px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .country-fact-block .arrow {
    bottom: 0;
    height: 30%;
    left: 0;
    position: absolute;
    right: 0; }
    .country-fact-block .arrow .icon, .country-fact-block .arrow .collapsed-container__heading::after,
    .country-fact-block .arrow .some__icon::after, .country-fact-block .arrow .tags:before, .country-fact-block .arrow .article-top-image figcaption::before, .article-top-image .country-fact-block .arrow figcaption::before, .country-fact-block .arrow .article-wide-image figcaption::before, .article-wide-image .country-fact-block .arrow figcaption::before, .country-fact-block .arrow .html blockquote::before, .html .country-fact-block .arrow blockquote::before, .country-fact-block .arrow .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-fact-block .arrow .dropdown-title:after, .country-fact-block .arrow .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-fact-block .arrow span::before, .country-fact-block .arrow .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-fact-block .arrow .btn-open-menu::before, .country-fact-block .arrow .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-fact-block .arrow .btn-menu-search::before, .country-fact-block .arrow .nrc .carousel__next a, .nrc .carousel__next .country-fact-block .arrow a,
    .country-fact-block .arrow .nrc .carousel__previous a,
    .nrc .carousel__previous .country-fact-block .arrow a, .country-fact-block .arrow .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-fact-block .arrow a,
    .country-fact-block .arrow .flyktninghjelpen .carousel__previous a,
    .flyktninghjelpen .carousel__previous .country-fact-block .arrow a, .country-fact-block .arrow .validation-summary-errors:before, .country-fact-block .arrow .form-error:before {
      color: #000000;
      font-size: 24px; }
      .country-fact-block .arrow .icon.positive, .country-fact-block .arrow .positive.collapsed-container__heading::after,
      .country-fact-block .arrow .positive.some__icon::after, .country-fact-block .arrow .positive.tags:before, .country-fact-block .arrow .article-top-image figcaption.positive::before, .article-top-image .country-fact-block .arrow figcaption.positive::before, .country-fact-block .arrow .article-wide-image figcaption.positive::before, .article-wide-image .country-fact-block .arrow figcaption.positive::before, .country-fact-block .arrow .html blockquote.positive::before, .html .country-fact-block .arrow blockquote.positive::before, .country-fact-block .arrow .dropdown-wrapper .positive.dropdown-title:after, .dropdown-wrapper .country-fact-block .arrow .positive.dropdown-title:after, .country-fact-block .arrow .product-card .status-point .status-point__bullet span.positive::before, .product-card .status-point .status-point__bullet .country-fact-block .arrow span.positive::before, .country-fact-block .arrow .page-header__section-column .positive.btn-open-menu::before, .page-header__section-column .country-fact-block .arrow .positive.btn-open-menu::before, .country-fact-block .arrow .page-header__section-column .positive.btn-menu-search::before, .page-header__section-column .country-fact-block .arrow .positive.btn-menu-search::before, .country-fact-block .arrow .nrc .carousel__next a.positive, .nrc .carousel__next .country-fact-block .arrow a.positive,
      .country-fact-block .arrow .nrc .carousel__previous a.positive,
      .nrc .carousel__previous .country-fact-block .arrow a.positive, .country-fact-block .arrow .flyktninghjelpen .carousel__next a.positive, .flyktninghjelpen .carousel__next .country-fact-block .arrow a.positive,
      .country-fact-block .arrow .flyktninghjelpen .carousel__previous a.positive,
      .flyktninghjelpen .carousel__previous .country-fact-block .arrow a.positive, .country-fact-block .arrow .positive.validation-summary-errors:before, .country-fact-block .arrow .positive.form-error:before {
        color: #73BF45; }
      .country-fact-block .arrow .icon.negative, .country-fact-block .arrow .negative.collapsed-container__heading::after,
      .country-fact-block .arrow .negative.some__icon::after, .country-fact-block .arrow .negative.tags:before, .country-fact-block .arrow .article-top-image figcaption.negative::before, .article-top-image .country-fact-block .arrow figcaption.negative::before, .country-fact-block .arrow .article-wide-image figcaption.negative::before, .article-wide-image .country-fact-block .arrow figcaption.negative::before, .country-fact-block .arrow .html blockquote.negative::before, .html .country-fact-block .arrow blockquote.negative::before, .country-fact-block .arrow .dropdown-wrapper .negative.dropdown-title:after, .dropdown-wrapper .country-fact-block .arrow .negative.dropdown-title:after, .country-fact-block .arrow .product-card .status-point .status-point__bullet span.negative::before, .product-card .status-point .status-point__bullet .country-fact-block .arrow span.negative::before, .country-fact-block .arrow .page-header__section-column .negative.btn-open-menu::before, .page-header__section-column .country-fact-block .arrow .negative.btn-open-menu::before, .country-fact-block .arrow .page-header__section-column .negative.btn-menu-search::before, .page-header__section-column .country-fact-block .arrow .negative.btn-menu-search::before, .country-fact-block .arrow .nrc .carousel__next a.negative, .nrc .carousel__next .country-fact-block .arrow a.negative,
      .country-fact-block .arrow .nrc .carousel__previous a.negative,
      .nrc .carousel__previous .country-fact-block .arrow a.negative, .country-fact-block .arrow .flyktninghjelpen .carousel__next a.negative, .flyktninghjelpen .carousel__next .country-fact-block .arrow a.negative,
      .country-fact-block .arrow .flyktninghjelpen .carousel__previous a.negative,
      .flyktninghjelpen .carousel__previous .country-fact-block .arrow a.negative, .country-fact-block .arrow .negative.validation-summary-errors:before, .country-fact-block .arrow .negative.form-error:before {
        color: #D0021B; }
      .country-fact-block .arrow .icon.rising, .country-fact-block .arrow .rising.collapsed-container__heading::after,
      .country-fact-block .arrow .rising.some__icon::after, .country-fact-block .arrow .rising.tags:before, .country-fact-block .arrow .article-top-image figcaption.rising::before, .article-top-image .country-fact-block .arrow figcaption.rising::before, .country-fact-block .arrow .article-wide-image figcaption.rising::before, .article-wide-image .country-fact-block .arrow figcaption.rising::before, .country-fact-block .arrow .html blockquote.rising::before, .html .country-fact-block .arrow blockquote.rising::before, .country-fact-block .arrow .dropdown-wrapper .rising.dropdown-title:after, .dropdown-wrapper .country-fact-block .arrow .rising.dropdown-title:after, .country-fact-block .arrow .product-card .status-point .status-point__bullet span.rising::before, .product-card .status-point .status-point__bullet .country-fact-block .arrow span.rising::before, .country-fact-block .arrow .page-header__section-column .rising.btn-open-menu::before, .page-header__section-column .country-fact-block .arrow .rising.btn-open-menu::before, .country-fact-block .arrow .page-header__section-column .rising.btn-menu-search::before, .page-header__section-column .country-fact-block .arrow .rising.btn-menu-search::before, .country-fact-block .arrow .nrc .carousel__next a.rising, .nrc .carousel__next .country-fact-block .arrow a.rising,
      .country-fact-block .arrow .nrc .carousel__previous a.rising,
      .nrc .carousel__previous .country-fact-block .arrow a.rising, .country-fact-block .arrow .flyktninghjelpen .carousel__next a.rising, .flyktninghjelpen .carousel__next .country-fact-block .arrow a.rising,
      .country-fact-block .arrow .flyktninghjelpen .carousel__previous a.rising,
      .flyktninghjelpen .carousel__previous .country-fact-block .arrow a.rising, .country-fact-block .arrow .rising.validation-summary-errors:before, .country-fact-block .arrow .rising.form-error:before {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
  .country-fact-block .country-facts {
    padding: 5px; }
    .country-fact-block .country-facts::after {
      content: '';
      clear: both;
      display: block; }
  .country-fact-block .country-fact-cells {
    float: left;
    width: 60%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 5px 0; }
    @media all and (max-width: 1024px) {
      .country-fact-block .country-fact-cells {
        float: none;
        width: auto; }
        .country-fact-block .country-fact-cells::after {
          content: '';
          clear: both;
          display: block; } }
  .country-fact-block .country-fact-cell {
    width: 33.333%;
    position: relative;
    margin: 0 auto; }
    .country-fact-block .country-fact-cell::before {
      content: '';
      padding-top: 100%;
      display: block; }
    @media all and (max-width: 768px) {
      .country-fact-block .country-fact-cell {
        width: calc(50% - 10px); }
        .country-fact-block .country-fact-cell .title {
          font-size: 20px; }
        .country-fact-block .country-fact-cell .value {
          font-size: 40px; } }
    @media all and (max-width: 480px) {
      .country-fact-block .country-fact-cell .title {
        font-size: 13px;
        padding: 10px; }
      .country-fact-block .country-fact-cell .value {
        font-size: 24px; } }
  .country-fact-block .country-fact-cell-content {
    text-align: center;
    position: absolute;
    top: 0;
    left: 5px;
    right: 5px;
    bottom: 10px;
    overflow: hidden;
    background-color: #FFFFFF; }
  .country-fact-block .country-facts-stat {
    margin: 5px;
    width: calc(40% - 10px);
    float: left;
    background-color: #FFFFFF;
    position: relative; }
    @media all and (max-width: 1024px) {
      .country-fact-block .country-facts-stat {
        float: none;
        width: auto; } }
    .country-fact-block .country-facts-stat::before {
      content: '';
      padding-top: 100%;
      display: block; }
  .country-fact-block .country-facts-stat-content {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden; }
    .country-fact-block .country-facts-stat-content .nrcstat-block {
      padding: 0;
      height: 100%; }
  .country-fact-block .country-facts-last-updated {
    padding: 0 10px 10px;
    clear: both;
    text-align: left;
    font-size: 13px;
    font-style: italic; }

.collapsible-textbox {
  background-color: #ededed;
  padding: 30px 15px;
  max-width: 940px;
  margin: 0 auto; }
  @media all and (min-width: 769px) {
    .collapsible-textbox {
      padding: 30px 60px; } }
  .collapsible-textbox .collapsed-container__heading, .collapsible-textbox .non-collapsed-container__heading {
    font-size: 24px;
    font-weight: 300;
    color: #3C3C3C;
    text-align: center;
    float: left; }
    .collapsible-textbox .collapsed-container__heading:after, .collapsible-textbox .non-collapsed-container__heading:after {
      position: relative;
      display: block;
      border: 1px solid #FF7602;
      border-radius: 50%;
      padding: 10px;
      font-size: 10px;
      margin-top: 5px;
      float: right;
      -webkit-transform: translateY(50%);
      -moz-transform: translateY(50%);
      -ms-transform: translateY(50%);
      -o-transform: translateY(50%);
      transform: translateY(50%); }
      @media all and (min-width: 601px) {
        .collapsible-textbox .collapsed-container__heading:after, .collapsible-textbox .non-collapsed-container__heading:after {
          font-size: 20px; } }
    .collapsible-textbox .collapsed-container__heading + div, .collapsible-textbox .non-collapsed-container__heading + div {
      clear: both; }
    .collapsible-textbox .collapsed-container__heading span, .collapsible-textbox .non-collapsed-container__heading span {
      display: block;
      float: left;
      width: calc(100% - 40px); }
      @media all and (min-width: 601px) {
        .collapsible-textbox .collapsed-container__heading span, .collapsible-textbox .non-collapsed-container__heading span {
          width: calc(100% - 50px); } }
    @media all and (min-width: 601px) {
      .collapsible-textbox .collapsed-container__heading, .collapsible-textbox .non-collapsed-container__heading {
        font-size: 2em; } }
  .collapsible-textbox.collapsed-container__container.open a.collapsed-container__heading::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .collapsible-textbox.collapsed-container__container.closed a.collapsed-container__heading::after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  .collapsible-textbox .collapsed-container__content, .collapsible-textbox .non-collapsed-container__content {
    max-width: 730px;
    margin: 0 auto; }
    .collapsible-textbox .collapsed-container__content a, .collapsible-textbox .non-collapsed-container__content a {
      color: #FF7602; }
    .collapsible-textbox .collapsed-container__content ul, .collapsible-textbox .non-collapsed-container__content ul {
      list-style: none !important;
      padding: 0 !important;
      margin: 0; }
      .collapsible-textbox .collapsed-container__content ul li, .collapsible-textbox .non-collapsed-container__content ul li {
        position: relative;
        padding-left: 20px;
        padding-bottom: 5px; }
        .collapsible-textbox .collapsed-container__content ul li:before, .collapsible-textbox .non-collapsed-container__content ul li:before {
          position: absolute;
          top: 0;
          left: 0;
          font-family: "Times New Roman";
          font-size: 20px;
          content: "\002022";
          color: #FF7602;
          display: inline-block;
          margin-right: 10px; }
    .collapsible-textbox .collapsed-container__content .collapsible-textbox--cite, .collapsible-textbox .non-collapsed-container__content .collapsible-textbox--cite {
      display: block;
      text-align: right; }
    .collapsible-textbox .collapsed-container__content .collapsible-textbox--links, .collapsible-textbox .non-collapsed-container__content .collapsible-textbox--links {
      margin: 10px 0; }
      .collapsible-textbox .collapsed-container__content .collapsible-textbox--links ul li:before, .collapsible-textbox .non-collapsed-container__content .collapsible-textbox--links ul li:before {
        color: transparent; }
      .collapsible-textbox .collapsed-container__content .collapsible-textbox--links a, .collapsible-textbox .non-collapsed-container__content .collapsible-textbox--links a {
        color: #BF5901; }

.article .collapsible-textbox, .core-activity-article .collapsible-textbox, .emergency-page .collapsible-textbox {
  max-width: 1105px;
  margin: 30px 0; }

.donation-block {
  position: relative;
  overflow: hidden; }
  .donation-block.transparent .wrapper .donationBlockForm {
    background-color: rgba(47, 39, 33, 0.8); }
  .donation-block textarea, .donation-block select, .donation-block input, .donation-block button {
    outline: none; }
  .donation-block ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FFFFFF;
    opacity: 1;
    /* Firefox */ }
  .donation-block :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #FFFFFF; }
  .donation-block ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #FFFFFF; }
  .donation-block input[type=text], .donation-block input[type=email], .donation-block input[type=tel], .donation-block input[type=tel], .donation-block input[type=email] {
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    background-color: #FFFFFF;
    border: 3px solid #d0d0d0;
    border-radius: 2px;
    font-weight: 500; }
  .donation-block input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }
  .donation-block input[type="radio"] + label {
    padding: 2px 0 3px 40px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin: 10px 0 5px 0; }
    .donation-block input[type="radio"] + label img {
      display: inline-block;
      margin-left: 10px; }
  .donation-block input[type="radio"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: url("/Images/donation/unselected.svg") no-repeat 0 50%; }
  .donation-block input[type="radio"]:checked + label:before {
    background-image: url("/Images/donation/selected.svg"); }
  .donation-block .invalid {
    border-color: #FF0000 !important; }
  .donation-block .invalid__concent input[type="checkbox"] + label:before {
    border-color: #FF0000 !important;
    border-width: 3px; }
  .donation-block .wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 75px 0 100px;
    text-align: center;
    position: relative; }
    @media all and (max-width: 767px) {
      .donation-block .wrapper {
        padding: 0 0 100px; } }
    .donation-block .wrapper .donationBlockForm {
      width: 686px;
      position: relative;
      min-height: 500px;
      padding: 0 50px 20px 50px;
      background-color: #2F2721;
      color: #FFFFFF;
      margin-left: 0;
      margin-right: 0;
      display: inline-block;
      text-align: center; }
      .donation-block .wrapper .donationBlockForm .title {
        font-size: 25px;
        line-height: 29px;
        text-align: center;
        margin: 30px 0 7px; }
      .donation-block .wrapper .donationBlockForm .text {
        font-size: 16px;
        line-height: 19px;
        text-align: center;
        margin-bottom: 28px; }
      .donation-block .wrapper .donationBlockForm .choose-type {
        text-align: center;
        margin-bottom: 27px; }
        .donation-block .wrapper .donationBlockForm .choose-type.direct__active {
          margin-bottom: 64px; }
        .donation-block .wrapper .donationBlockForm .choose-type .donation__button {
          margin-right: 16px; }
          .donation-block .wrapper .donationBlockForm .choose-type .donation__button:last-child {
            margin-right: 0; }
      .donation-block .wrapper .donationBlockForm .month__text {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 16px; }
      .donation-block .wrapper .donationBlockForm .amount__field {
        display: flex;
        flex-flow: row wrap;
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 20px;
        justify-content: center; }
        .donation-block .wrapper .donationBlockForm .amount__field .set__amount {
          flex: 0 0 110px;
          text-align: center;
          margin-bottom: 13px; }
          .donation-block .wrapper .donationBlockForm .amount__field .set__amount div {
            display: inline-block;
            padding: 15px 0 16px 37px;
            background: url("/Images/donation/unselected.svg") no-repeat 0 50%;
            cursor: pointer; }
            .donation-block .wrapper .donationBlockForm .amount__field .set__amount div.chosen {
              background-image: url("/Images/donation/selected.svg"); }
        .donation-block .wrapper .donationBlockForm .amount__field .variable__amount {
          flex: 0 0 230px;
          text-align: center;
          position: relative;
          margin-bottom: 13px; }
          .donation-block .wrapper .donationBlockForm .amount__field .variable__amount input {
            border: 3px solid #EFEFEF;
            border-radius: 2px;
            background-color: #000000;
            text-align: center;
            padding: 10px 0 10px 0;
            font-size: 17px;
            line-height: 21px;
            color: #FFFFFF;
            width: 87px;
            margin-right: 10px; }
          .donation-block .wrapper .donationBlockForm .amount__field .variable__amount .min__amount {
            position: absolute;
            font-style: italic;
            font-size: 13px;
            font-weight: 500;
            line-height: 15px;
            color: #d0d0d0;
            display: none;
            bottom: -20px;
            left: 0;
            width: 100%;
            text-align: center; }
          .donation-block .wrapper .donationBlockForm .amount__field .variable__amount.chosen .min__amount {
            display: block; }
      .donation-block .wrapper .donationBlockForm .amount__info__field {
        background: #000000;
        border-radius: 3px;
        color: #FFFFFF;
        font-size: 14px;
        line-height: 16px;
        padding: 20px;
        margin-bottom: 28px;
        position: relative; }
        .donation-block .wrapper .donationBlockForm .amount__info__field svg {
          position: absolute;
          width: 30px;
          top: -15px;
          left: 50%;
          transform: translateX(-50%); }
      .donation-block .wrapper .donationBlockForm .small__text {
        font-style: italic;
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 10px 0; }
      .donation-block .wrapper .donationBlockForm .step1__input__fields {
        display: flex;
        margin-bottom: 24px; }
        .donation-block .wrapper .donationBlockForm .step1__input__fields .email-input {
          width: 347px;
          margin-right: 18px; }
        .donation-block .wrapper .donationBlockForm .step1__input__fields input[type=tel] {
          width: 216px; }
      .donation-block .wrapper .donationBlockForm .next-prev-button {
        color: #563921;
        font-size: 16px;
        font-weight: bold;
        line-height: 19px; }
        .donation-block .wrapper .donationBlockForm .next-prev-button text {
          border-bottom: 1px solid #563921; }
      .donation-block .wrapper .donationBlockForm .next-prev-button.step1 text {
        margin-right: 10px; }
      .donation-block .wrapper .donationBlockForm .next-prev-button.step2 text {
        margin-left: 10px; }
      .donation-block .wrapper .donationBlockForm .dot-and-arrow {
        height: 55px;
        width: 55px;
        background-color: #563921;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        background-image: url(/Content/img/icon-arrrow-back.svg);
        background-position: 50% 50%;
        background-repeat: no-repeat; }
      .donation-block .wrapper .donationBlockForm .dot-and-arrow.step1 {
        transform: rotate(180deg); }
      .donation-block .wrapper .donationBlockForm .step1__action__button {
        margin-bottom: 20px; }
      .donation-block .wrapper .donationBlockForm .terms_link {
        text-align: center; }
        .donation-block .wrapper .donationBlockForm .terms_link a {
          line-height: 15px;
          font-size: 13px;
          text-decoration: none;
          display: inline-block; }
      .donation-block .wrapper .donationBlockForm .donation__container .donation__flex-container {
        display: flex;
        justify-content: space-between; }
        .donation-block .wrapper .donationBlockForm .donation__container .donation__flex-container .personal__info, .donation-block .wrapper .donationBlockForm .donation__container .donation__flex-container .personal__info-column-two {
          flex: 0 0 48%; }
        .donation-block .wrapper .donationBlockForm .donation__container .donation__flex-container .personal__info-column-two .tax__dedux .concent-container {
          text-align: left;
          padding-top: 18px; }
        .donation-block .wrapper .donationBlockForm .donation__container .donation__flex-container .personal__info-column-two .tax__dedux .concent-container.hidden-pnr {
          padding: 0; }
      .donation-block .wrapper .donationBlockForm .block__header {
        color: #563921;
        font-size: 20px;
        font-weight: bold;
        line-height: 59px; }
        .donation-block .wrapper .donationBlockForm .block__header img {
          display: inline-block;
          margin-bottom: -3px;
          margin-left: 13px; }
          .donation-block .wrapper .donationBlockForm .block__header img.info {
            margin-left: 6px;
            margin-bottom: -2px; }
      .donation-block .wrapper .donationBlockForm .step2__action__button {
        text-align: left; }
        .donation-block .wrapper .donationBlockForm .step2__action__button .confirm__donation {
          color: #000000;
          background-color: #ff7602;
          border: 3px solid #ff7602; }
          .donation-block .wrapper .donationBlockForm .step2__action__button .confirm__donation:focus {
            border: 3px solid #000000; }
          .donation-block .wrapper .donationBlockForm .step2__action__button .confirm__donation:hover {
            border: 3px solid #000000; }
        .donation-block .wrapper .donationBlockForm .step2__action__button .button__wrapper {
          float: right; }
      .donation-block .wrapper .donationBlockForm .go-cardless__action__button {
        text-align: center; }
        .donation-block .wrapper .donationBlockForm .go-cardless__action__button .confirm__donation {
          color: #000000;
          background-color: #ff7602;
          border: 3px solid #ff7602; }
      .donation-block .wrapper .donationBlockForm .donation-second-step input[type=text], .donation-block .wrapper .donationBlockForm .donation-second-step input[type=email], .donation-block .wrapper .donationBlockForm .donation-second-step input[type=tel], .donation-block .wrapper .donationBlockForm .donation-second-step input[type=tel], .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=text], .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=email], .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=tel], .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=tel] {
        margin-bottom: 10px; }
        .donation-block .wrapper .donationBlockForm .donation-second-step input[type=text]:last-child, .donation-block .wrapper .donationBlockForm .donation-second-step input[type=email]:last-child, .donation-block .wrapper .donationBlockForm .donation-second-step input[type=tel]:last-child, .donation-block .wrapper .donationBlockForm .donation-second-step input[type=tel]:last-child, .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=text]:last-child, .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=email]:last-child, .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=tel]:last-child, .donation-block .wrapper .donationBlockForm .go-cardless-third-step input[type=tel]:last-child {
          margin-bottom: 0; }
      .donation-block .wrapper .donationBlockForm .donation-second-step .post__zip, .donation-block .wrapper .donationBlockForm .go-cardless-third-step .post__zip {
        overflow: hidden;
        display: flex;
        justify-content: space-between; }
        .donation-block .wrapper .donationBlockForm .donation-second-step .post__zip .zip, .donation-block .wrapper .donationBlockForm .go-cardless-third-step .post__zip .zip {
          width: 90%; }
      .donation-block .wrapper .donationBlockForm .errors {
        border: 1px solid #FF0000;
        width: auto;
        padding: 10px;
        margin-bottom: 10px; }
      .donation-block .wrapper .donationBlockForm .warning {
        font-size: 13px;
        color: #FF0000 !important;
        width: 100%;
        clear: right;
        margin-top: 16px;
        min-height: 1px;
        height: auto; }
      .donation-block .wrapper .donationBlockForm .payment__methods {
        padding: 20px 20px;
        background-color: #FFFFFF;
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 25px;
        justify-content: space-between;
        height: auto; }
        .donation-block .wrapper .donationBlockForm .payment__methods .father__paymentMethod, .donation-block .wrapper .donationBlockForm .payment__methods .direct__paymentMethod {
          width: 47%; }
          .donation-block .wrapper .donationBlockForm .payment__methods .father__paymentMethod label, .donation-block .wrapper .donationBlockForm .payment__methods .direct__paymentMethod label {
            width: 100%;
            text-align: left; }
          .donation-block .wrapper .donationBlockForm .payment__methods .father__paymentMethod span, .donation-block .wrapper .donationBlockForm .payment__methods .direct__paymentMethod span {
            display: inline-block;
            vertical-align: top; }
          .donation-block .wrapper .donationBlockForm .payment__methods .father__paymentMethod .payment__image, .donation-block .wrapper .donationBlockForm .payment__methods .direct__paymentMethod .payment__image {
            display: inline-block;
            margin-left: 10px;
            max-width: 100px;
            max-height: 25px; }
      .donation-block .wrapper .donationBlockForm .payment__methods--no-flex {
        display: block; }
      .donation-block .wrapper .donationBlockForm .payment__methods-radio-buttons {
        display: flex;
        flex-flow: row wrap; }
      .donation-block .wrapper .donationBlockForm .info {
        cursor: pointer; }
      .donation-block .wrapper .donationBlockForm .donation-third-step {
        padding-bottom: 50px; }
        .donation-block .wrapper .donationBlockForm .donation-third-step .title {
          padding: 45px 0 15px 0; }
        .donation-block .wrapper .donationBlockForm .donation-third-step .text {
          line-height: 25px;
          max-width: 500px;
          margin-left: auto;
          margin-right: auto; }
        .donation-block .wrapper .donationBlockForm .donation-third-step .terms_link {
          position: absolute;
          width: 100%;
          bottom: 35px;
          left: 0; }
          .donation-block .wrapper .donationBlockForm .donation-third-step .terms_link a {
            font-size: 16px;
            font-weight: bold;
            line-height: 19px; }
    .donation-block .wrapper input[type="checkbox"] + label:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      border: 3px solid #d0d0d0;
      background-color: #ffffff;
      line-height: 1;
      width: 30px;
      height: 30px; }
  .donation-block .donation-block-image {
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%); }
    @media all and (max-width: 767px) {
      .donation-block .donation-block-image {
        left: 0;
        transform: none;
        height: 250px;
        width: auto; } }
  .donation-block video {
    position: absolute;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    object-fit: cover; }
  .donation-block.inverted__color .wrapper .donationBlockForm {
    background-color: #F4F4F4;
    color: #2F2721;
    font-weight: bold; }
    .donation-block.inverted__color .wrapper .donationBlockForm .title {
      color: #563921; }
    .donation-block.inverted__color .wrapper .donationBlockForm .modal .modal__wrapper {
      background-color: #FFFFFF; }
    .donation-block.inverted__color .wrapper .donationBlockForm .amount__field .variable__amount .min__amount {
      color: #2F2721; }
    .donation-block.inverted__color .wrapper .donationBlockForm .amount__info__field {
      background-color: #FFFFFF;
      color: #2F2721; }
    .donation-block.inverted__color .wrapper .donationBlockForm .donation__button.plain {
      color: #563921;
      border-color: #563921;
      background-color: #FFFFFF; }
    .donation-block.inverted__color .wrapper .donationBlockForm .amount__field .set__amount div {
      background-image: url("/Images/donation/unselected_white.svg"); }
      .donation-block.inverted__color .wrapper .donationBlockForm .amount__field .set__amount div.chosen {
        background-image: url("/Images/donation/selected_white.svg"); }
    .donation-block.inverted__color .wrapper .donationBlockForm .step1__input__fields .small__text {
      color: #2F2721; }
    .donation-block.inverted__color .wrapper .donationBlockForm .terms_link a {
      color: #563921; }
    .donation-block.inverted__color .wrapper .donationBlockForm .block__header img:not(.info) {
      filter: invert(100%); }
    .donation-block.inverted__color .wrapper .donationBlockForm input[type="radio"]:checked + label:before {
      background-image: url(/Images/donation/selected_white.svg); }
    .donation-block.inverted__color .wrapper .donationBlockForm input[type="radio"] + label:before {
      background-image: url(/Images/donation/unselected_white.svg); }
    .donation-block.inverted__color .wrapper .donationBlockForm input[type=text], .donation-block.inverted__color .wrapper .donationBlockForm input[type=email], .donation-block.inverted__color .wrapper .donationBlockForm input[type=tel], .donation-block.inverted__color .wrapper .donationBlockForm input[type=email], .donation-block.inverted__color .wrapper .donationBlockForm input[type=tel], .donation-block.inverted__color .wrapper .donationBlockForm input[type=tel], .donation-block.inverted__color .wrapper .donationBlockForm input[type=email] {
      color: #2F2721;
      background-color: #FFFFFF;
      border-color: #d0d0d0; }
    .donation-block.inverted__color .wrapper .donationBlockForm ::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: #2F2721; }
    .donation-block.inverted__color .wrapper .donationBlockForm :-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #2F2721; }
    .donation-block.inverted__color .wrapper .donationBlockForm ::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #2F2721; }
  .donation-block.inverted__color.transparent .wrapper .donationBlockForm {
    background-color: rgba(244, 244, 244, 0.8); }
  @media all and (min-width: 1025px) {
    .donation-block .wrapper .donationBlockForm {
      margin-left: 0;
      margin-right: 0;
      display: inline-block;
      text-align: center; }
    .donation-block.Left .wrapper {
      text-align: left;
      padding-left: 15px; }
    .donation-block.Right .wrapper {
      text-align: right;
      padding-right: 15px; }
    .donation-block.Center .wrapper {
      text-align: center; } }
  @media all and (max-width: 767px) {
    .donation-block .step1__input__fields {
      flex-flow: row wrap; }
      .donation-block .step1__input__fields .email-input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px; }
    .donation-block .donation__container .donation__flex-container {
      flex-flow: row wrap; }
      .donation-block .donation__container .donation__flex-container .personal__info, .donation-block .donation__container .donation__flex-container .personal__info-column-two {
        flex: 0 0 80% !important;
        margin: 0 auto; }
    .donation-block .go-cardless .go-cardless__input-fields {
      margin: 0 auto;
      display: flex;
      flex-flow: row wrap; }
      .donation-block .go-cardless .go-cardless__input-fields .input-container {
        flex-basis: 100%; } }
  @media all and (max-width: 479px) {
    .donation-block {
      height: auto; }
      .donation-block .wrapper .donationBlockForm {
        min-height: 400px;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 16px 10px; }
        .donation-block .wrapper .donationBlockForm .title {
          font-size: 22px;
          line-height: 25px; }
        .donation-block .wrapper .donationBlockForm .choose-type {
          margin-bottom: 25px; }
          .donation-block .wrapper .donationBlockForm .choose-type.direct__active {
            margin-bottom: 53px; }
          .donation-block .wrapper .donationBlockForm .choose-type .donation__button {
            margin-right: 0;
            margin-bottom: 10px; }
            .donation-block .wrapper .donationBlockForm .choose-type .donation__button:last-child {
              margin-bottom: 0; }
        .donation-block .wrapper .donationBlockForm .month__text {
          font-size: 16px;
          line-height: 19px;
          margin-bottom: 9px;
          color: #563921; }
        .donation-block .wrapper .donationBlockForm .amount__field .variable__amount {
          flex: 0 0 260px; }
          .donation-block .wrapper .donationBlockForm .amount__field .variable__amount input {
            padding: 10px 0 10px 0;
            font-size: 17px;
            line-height: 21px;
            width: 113px; }
        .donation-block .wrapper .donationBlockForm .amount__info__field {
          padding: 25px 10px 20px 10px;
          margin-bottom: 12px; }
        .donation-block .wrapper .donationBlockForm .step1__input__fields {
          flex-flow: row wrap; }
          .donation-block .wrapper .donationBlockForm .step1__input__fields .email-input {
            width: 100%;
            margin-right: 0;
            margin-bottom: 10px; }
          .donation-block .wrapper .donationBlockForm .step1__input__fields input[type=tel] {
            width: 100%; }
          .donation-block .wrapper .donationBlockForm .step1__input__fields .small__text {
            margin-top: 0; }
        .donation-block .wrapper .donationBlockForm .terms_link a {
          max-width: 60%; }
        .donation-block .wrapper .donationBlockForm .block__header {
          text-align: center; }
        .donation-block .wrapper .donationBlockForm .post__zip {
          margin: 0 auto; }
        .donation-block .wrapper .donationBlockForm .payment__methods {
          height: auto; }
          .donation-block .wrapper .donationBlockForm .payment__methods > div {
            margin: 0 auto;
            width: 100% !important; }
        .donation-block .wrapper .donationBlockForm .step2__action__button {
          text-align: center;
          display: flex;
          flex-flow: row wrap;
          flex-flow: column-reverse; }
          .donation-block .wrapper .donationBlockForm .step2__action__button .button__wrapper {
            float: none;
            margin-top: 10px;
            text-align: center; }
          .donation-block .wrapper .donationBlockForm .step2__action__button .next-prev-button.step2 {
            margin-top: 30px; }
        .donation-block .wrapper .donationBlockForm .errors {
          margin: 0 auto; } }

.default.donation-block .email-input {
  width: 100% !important; }
.default.donation-block .donation__flex-container {
  display: block !important;
  justify-content: normal; }
.default.donation-block .calling-codes.phone-number {
  display: flex;
  justify-content: space-between; }
  .default.donation-block .calling-codes.phone-number .calling-codes-dropdown {
    max-height: 50px;
    margin-right: 10px;
    border: 3px solid #d0d0d0; }
.default.donation-block .concent-container {
  text-align: left !important; }

.stripe-elements-container {
  width: 75%;
  margin: auto auto 10px; }
  @media (max-width: 480px) {
    .stripe-elements-container {
      width: 100%; } }

.stripe-elements-gmm {
  width: 225px;
  margin: 0; }
  @media (max-width: 480px) {
    .stripe-elements-gmm {
      margin-right: 20px; } }

.stripe-elements-container--donation {
  text-align: center; }
  .stripe-elements-container--donation button {
    height: 35px; }
    @media (max-width: 480px) {
      .stripe-elements-container--donation button {
        margin-bottom: 10px; } }

.payment__methods-stripe-elements-container img {
  height: 53px;
  margin-top: -6px; }
  @media (max-width: 480px) {
    .payment__methods-stripe-elements-container img {
      height: 55px;
      margin-left: 10px; } }

.payment__methods-stripe-elements-container-gmm {
  height: 63px;
  margin-top: -6px; }

@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay-button {
    display: inline-block;
    -webkit-appearance: -apple-pay-button;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 5px;
    padding: 0;
    box-sizing: border-box;
    width: 225px;
    margin: 0 25px 0 0;
    height: 44px;
    font-size: 0; }

  .apple-pay-button-black {
    -apple-pay-button-style: black; }

  .apple-pay-button-white {
    -apple-pay-button-style: white; }

  .apple-pay-button-white-with-line {
    -apple-pay-button-style: white-outline; } }
@media (max-width: 480px) {
  .apple-pay-gmm {
    margin-bottom: 1rem;
    width: 225px; } }

/** This file list all CSS classes used by Episerver Forms.

    Class names are structured and named in BEM methodology (Block, Element, Modifier) so you can easily see the overview.
        - CSS classes and their structure defined here are used by Form Core JavaScript heavily.
        - Please keep the structure (parent-child block-element relation) and default class names as is.

    This file is intended to be re-styled by 3rd developers. or in their site template (E.g.: AlloyMVC).
        - Default styling contain only minimal styling-rule for Episerver Forms and its build-in elements.
        - Default styling is applied for both Forms rendering in ViewMode and authoring in EditView.
        - Styling rules can be modified freely.
*/
.EPiServerForms {
  /*predefined color for selected item, elapsed progress*/
  /*to indicate FormStep, FormHidden in EditView*/
  /************* UTILITY CLASSES ***********/
  /************* BUILDIN ELEMENTS ***********/
  /******************************************/
  /*************** EDIT VIEW ****************/
  /******************************************/ }
  .EPiServerForms .Form__Description {
    margin-bottom: 1rem; }
  .EPiServerForms .FormImageSubmitButton {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none; }
  .EPiServerForms .Form__Status .Form__Status__Message {
    display: block;
    padding: 1rem;
    margin: 1rem 0; }
  .EPiServerForms .Form__Status .Form__Success__Message {
    background-color: #84c8e4;
    color: #333; }
  .EPiServerForms .Form__Status .Form__Warning__Message {
    background-color: #fff8aa;
    color: red; }
  .EPiServerForms .Form__Status .Form__Readonly__Message {
    display: block;
    padding: 1rem;
    margin: 1rem 0;
    background-color: #fff8aa;
    color: red; }
  .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action {
    display: inline-block;
    padding: inherit;
    vertical-align: middle;
    text-align: center;
    border: 1px solid rgba(41, 128, 189, 0.5);
    border-radius: 4px;
    font-size: inherit;
    height: 2em;
    width: 10em;
    max-width: 10rem;
    color: initial;
    background-image: linear-gradient(top, #fff, #e6e6e6);
    background-image: -moz-linear-gradient(top, #fff, #e6e6e6);
    background-image: -ms-linear-gradient(top, #fff, #e6e6e6);
    background-image: -webkit-linear-gradient(top, #fff, #e6e6e6); }
    .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:disabled {
      color: GrayText; }
  .EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar {
    display: inline-block;
    border: 1px solid rgba(41, 128, 189, 0.5);
    vertical-align: middle;
    width: 40%; }
    .EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar .Form__NavigationBar__ProgressBar--Progress {
      /*display: none;*/
      /*turn on this style to hide visual progress bar*/
      background-color: rgba(41, 128, 189, 0.5);
      width: 0;
      /* Will be adjusted by JavaScript */
      height: 1rem; }
    .EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar .Form__NavigationBar__ProgressBar--Text {
      display: none;
      /*turn off this style to show text "Page 1/4" of progress bar*/ }
  .EPiServerForms .FormStep .FormStep__Description {
    margin-bottom: 1rem; }
  .EPiServerForms .Form__Element {
    margin: 0 0 1.5rem 0; }
    .EPiServerForms .Form__Element .Form__Element__Caption {
      display: inline-block;
      min-width: 15%;
      vertical-align: top; }
    .EPiServerForms .Form__Element .Form__Element__ValidationError {
      color: red;
      display: block;
      word-wrap: break-word; }
  .EPiServerForms .hide {
    display: none; }
  .EPiServerForms .FormTextbox .FormTextbox__Input {
    padding: 10px; }
  .EPiServerForms .FormTextbox--Textarea .FormTextbox__Input {
    padding: 0 10px; }
  .EPiServerForms .FormTextbox--Number .FormTextbox__Input {
    padding: 10px; }
  .EPiServerForms .FormCaptcha .FormTextbox__Input {
    width: 8rem; }
  .EPiServerForms .FormCaptcha .FormCaptcha__Refresh {
    font-size: 1em;
    width: auto;
    height: auto; }
  .EPiServerForms .FormChoice--Image {
    /*img stand next to checked image will be bordered*/ }
    .EPiServerForms .FormChoice--Image .hidden {
      visibility: hidden; }
    .EPiServerForms .FormChoice--Image .FormChoice--Image__Item {
      /* for image choice items, display as a flow (inline-block), we want max 2 items in one row, with a small margin */
      display: inline-block;
      max-width: 40%;
      text-align: center;
      /* image caption will be center */
      margin: 0.5rem; }
    .EPiServerForms .FormChoice--Image .FormChoice__Input:checked ~ img {
      border: 1px solid rgba(41, 128, 189, 0.5); }
  .EPiServerForms .FormRange .FormRange__Input {
    max-width: 60%;
    display: inline; }
  .EPiServerForms .EditView__InvisibleElement.FormStep {
    display: block;
    border-radius: 4px;
    border-color: rgba(184, 192, 197, 0.6);
    background-color: rgba(184, 192, 197, 0.6);
    color: #000;
    padding: 0.2rem;
    box-shadow: 3px 3px 5px #ccc;
    /*text-align: center;*/ }
  .EPiServerForms .EditView__InvisibleElement.FormHidden {
    display: inline-block;
    border-radius: 4px;
    border: 1.5px outset rgba(184, 192, 197, 0.6);
    padding: 0.2rem 1rem;
    min-width: 18rem;
    /*text-align: center;*/ }
  .EPiServerForms .Warning, .EPiServerForms .EditView__InvisibleElement.FormStep .FormStep__Warning, .EPiServerForms .Form__Warning {
    color: red;
    background-color: #fff8aa;
    display: block;
    word-wrap: break-word; }

.twitter-block .twitter-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle; }
  .twitter-block .twitter-icon svg {
    max-width: 100%;
    max-height: 100%; }
.twitter-block ul li {
  padding: 0; }
.twitter-block .tweet {
  padding: 0 32px 50px; }
  .twitter-block .tweet h3 {
    color: #00ADD0;
    font-size: 1em;
    margin-bottom: 24px;
    font-weight: 400; }
  .twitter-block .tweet p {
    color: #3C3C3C;
    font-weight: 300; }
    .twitter-block .tweet p a {
      color: #FF7602;
      text-decoration: none; }
    .twitter-block .tweet p img {
      margin: 1em auto 0;
      display: block;
      width: 75%; }
  .twitter-block .tweet .actions {
    padding: 16px 0 0 0; }
    .twitter-block .tweet .actions a {
      margin-right: 32px;
      color: #AAB8C2;
      fill: #AAB8C2;
      text-decoration: none;
      font-size: 14px;
      line-height: 24px; }
      .twitter-block .tweet .actions a .twitter-icon {
        height: 24px;
        width: 24px; }
      .twitter-block .tweet .actions a:visited .twitter-icon {
        opacity: 0.5; }
      .twitter-block .tweet .actions a.retweet:hover .twitter-icon {
        fill: #19CF86; }
      .twitter-block .tweet .actions a.favourite:hover .twitter-icon {
        fill: #E81C4F; }
.twitter-block .separator {
  margin: 25px 0 0;
  border-right: 1px solid #bdd7e9;
  padding: 0;
  height: 140px; }
@media all and (max-width: 1024px) {
  .twitter-block li:nth-child(3n+2) .separator {
    display: none; } }
@media all and (max-width: 600px) {
  .twitter-block .separator {
    display: none; } }

.emergency-block a {
  text-decoration: none; }
.emergency-block .emergency-block__container {
  margin: 0 auto;
  height: 600px;
  position: relative;
  overflow: hidden; }
  @media all and (max-width: 768px) {
    .emergency-block .emergency-block__container {
      height: auto; } }
  .emergency-block .emergency-block__container .editAreaForImage {
    display: inline;
    width: 50%;
    height: 500px; }
  .emergency-block .emergency-block__container .filled-container-image-container {
    height: 600px; }
    @media all and (max-width: 768px) {
      .emergency-block .emergency-block__container .filled-container-image-container {
        height: 300px;
        margin: 0 16px; } }
  .emergency-block .emergency-block__container .page-wrapper, .emergency-block .emergency-block__container .logoupload, .emergency-block .emergency-block__container .EPiServerForms {
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; }
    @media all and (max-width: 768px) {
      .emergency-block .emergency-block__container .page-wrapper, .emergency-block .emergency-block__container .logoupload, .emergency-block .emergency-block__container .EPiServerForms {
        position: relative;
        margin-top: -90px; } }
    @media all and (max-width: 600px) {
      .emergency-block .emergency-block__container .page-wrapper, .emergency-block .emergency-block__container .logoupload, .emergency-block .emergency-block__container .EPiServerForms {
        margin-top: -150px; } }
    .emergency-block .emergency-block__container .page-wrapper .emergency-title, .emergency-block .emergency-block__container .logoupload .emergency-title, .emergency-block .emergency-block__container .EPiServerForms .emergency-title {
      position: absolute;
      bottom: 100px;
      left: 2%;
      width: calc(100% - 570px); }
      @media all and (max-width: 1024px) {
        .emergency-block .emergency-block__container .page-wrapper .emergency-title, .emergency-block .emergency-block__container .logoupload .emergency-title, .emergency-block .emergency-block__container .EPiServerForms .emergency-title {
          bottom: 60px; } }
      @media all and (max-width: 768px) {
        .emergency-block .emergency-block__container .page-wrapper .emergency-title, .emergency-block .emergency-block__container .logoupload .emergency-title, .emergency-block .emergency-block__container .EPiServerForms .emergency-title {
          position: relative;
          width: auto;
          bottom: 0;
          left: 0;
          margin: 10px 0; } }
      @media (min-width: 768px) and (max-width: 768px) {
        .emergency-block .emergency-block__container .page-wrapper .emergency-title, .emergency-block .emergency-block__container .logoupload .emergency-title, .emergency-block .emergency-block__container .EPiServerForms .emergency-title {
          margin: 10px 16px; } }
      .emergency-block .emergency-block__container .page-wrapper .emergency-title span, .emergency-block .emergency-block__container .logoupload .emergency-title span, .emergency-block .emergency-block__container .EPiServerForms .emergency-title span {
        display: inline;
        font-size: 70px;
        line-height: 1.3;
        font-weight: 200;
        color: #FFFFFF;
        background-color: #000000;
        text-decoration: none;
        padding: 0 35px;
        -webkit-box-decoration-break: clone;
        -o-box-decoration-break: clone;
        box-decoration-break: clone; }
        @media all and (max-width: 1024px) {
          .emergency-block .emergency-block__container .page-wrapper .emergency-title span, .emergency-block .emergency-block__container .logoupload .emergency-title span, .emergency-block .emergency-block__container .EPiServerForms .emergency-title span {
            font-size: 3em; } }
        @media all and (max-width: 768px) {
          .emergency-block .emergency-block__container .page-wrapper .emergency-title span, .emergency-block .emergency-block__container .logoupload .emergency-title span, .emergency-block .emergency-block__container .EPiServerForms .emergency-title span {
            word-wrap: break-word; } }
        @media (max-width: 480px) {
          .emergency-block .emergency-block__container .page-wrapper .emergency-title span, .emergency-block .emergency-block__container .logoupload .emergency-title span, .emergency-block .emergency-block__container .EPiServerForms .emergency-title span {
            padding: 0 8px 0 8px; } }
    .emergency-block .emergency-block__container .page-wrapper .emergency-page__content, .emergency-block .emergency-block__container .logoupload .emergency-page__content, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 5%;
      width: 400px;
      padding: 25px;
      background-color: #CE5C43;
      color: #000000;
      text-align: center; }
      @media all and (max-width: 1024px) {
        .emergency-block .emergency-block__container .page-wrapper .emergency-page__content, .emergency-block .emergency-block__container .logoupload .emergency-page__content, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content {
          right: 0;
          width: 350px; } }
      @media all and (max-width: 768px) {
        .emergency-block .emergency-block__container .page-wrapper .emergency-page__content, .emergency-block .emergency-block__container .logoupload .emergency-page__content, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content {
          position: relative;
          width: auto;
          right: 0;
          margin: 10px 0; } }
      @media (min-width: 768px) and (max-width: 768px) {
        .emergency-block .emergency-block__container .page-wrapper .emergency-page__content, .emergency-block .emergency-block__container .logoupload .emergency-page__content, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content {
          margin: 10px 16px; } }
      .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-category, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-category, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-category {
        position: relative;
        background-color: #000000;
        color: #FFFFFF;
        padding: 12px 14px 10px 14px;
        display: inline-block;
        text-transform: uppercase; }
        .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-category:after, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-category:after, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-category:after {
          content: '';
          position: absolute;
          top: 100%;
          left: 50%;
          margin-left: -10px;
          width: 0;
          height: 0;
          border-top: solid 15px #000000;
          border-left: solid 10px transparent;
          border-right: solid 10px transparent; }
      .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-text, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-text, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-text {
        margin-top: 35px; }
        @media all and (max-width: 1024px) {
          .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-text p, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-text p, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-text p {
            margin: 0; } }
      .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-list, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-list, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-list {
        margin-top: 20px; }
        .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-list ul, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-list ul, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-list ul {
          list-style-position: inside;
          list-style-type: disc;
          text-align: left; }
          @media all and (max-width: 768px) {
            .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-list ul, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-list ul, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-list ul {
              text-align: center; } }
      .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-icon__container .emergency-icon-title, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-icon__container .emergency-icon-title, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-icon__container .emergency-icon-title {
        color: #FFFFFF; }
      .emergency-block .emergency-block__container .page-wrapper .emergency-page__content .emergency-icon__container .emergency-icons img, .emergency-block .emergency-block__container .logoupload .emergency-page__content .emergency-icon__container .emergency-icons img, .emergency-block .emergency-block__container .EPiServerForms .emergency-page__content .emergency-icon__container .emergency-icons img {
        margin: 10px;
        padding: 8px;
        background-color: white;
        border-radius: 25px;
        width: 45px;
        display: inline-block; }

.country-about-block h3 {
  display: block;
  text-align: center;
  font-size: 36px;
  line-height: 36px;
  font-family: Roboto;
  font-weight: 800;
  color: #000000;
  padding: 18px 0;
  margin: 0;
  text-transform: uppercase; }
.country-about-block .country-about-facts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 32px -10px 0; }
.country-about-block .country-about-fact {
  margin: 0 0 60px;
  width: 33.3333%;
  padding: 0 10px; }
  .country-about-block .country-about-fact:nth-child(3n+1), .country-about-block .country-about-fact:first-child {
    margin-left: auto; }
  .country-about-block .country-about-fact:last-child {
    margin-right: auto; }
  @media all and (max-width: 599px) {
    .country-about-block .country-about-fact {
      width: 50%; } }
  @media all and (max-width: 479px) {
    .country-about-block .country-about-fact {
      width: 100%; } }
.country-about-block .country-about-fact-content {
  background-color: #F2F0E7;
  text-align: center;
  min-height: 132px;
  padding: 0 30px; }
  .country-about-block .country-about-fact-content .icon, .country-about-block .country-about-fact-content .collapsed-container__heading::after,
  .country-about-block .country-about-fact-content .some__icon::after, .country-about-block .country-about-fact-content .tags:before, .country-about-block .country-about-fact-content .article-top-image figcaption::before, .article-top-image .country-about-block .country-about-fact-content figcaption::before, .country-about-block .country-about-fact-content .article-wide-image figcaption::before, .article-wide-image .country-about-block .country-about-fact-content figcaption::before, .country-about-block .country-about-fact-content .html blockquote::before, .html .country-about-block .country-about-fact-content blockquote::before, .country-about-block .country-about-fact-content .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .country-about-block .country-about-fact-content .dropdown-title:after, .country-about-block .country-about-fact-content .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .country-about-block .country-about-fact-content span::before, .country-about-block .country-about-fact-content .page-header__section-column .btn-open-menu::before, .page-header__section-column .country-about-block .country-about-fact-content .btn-open-menu::before, .country-about-block .country-about-fact-content .page-header__section-column .btn-menu-search::before, .page-header__section-column .country-about-block .country-about-fact-content .btn-menu-search::before, .country-about-block .country-about-fact-content .nrc .carousel__next a, .nrc .carousel__next .country-about-block .country-about-fact-content a,
  .country-about-block .country-about-fact-content .nrc .carousel__previous a,
  .nrc .carousel__previous .country-about-block .country-about-fact-content a, .country-about-block .country-about-fact-content .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .country-about-block .country-about-fact-content a,
  .country-about-block .country-about-fact-content .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .country-about-block .country-about-fact-content a, .country-about-block .country-about-fact-content .validation-summary-errors:before, .country-about-block .country-about-fact-content .form-error:before {
    color: #FFFFFF;
    background-color: #FF7602;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin-top: -28px;
    line-height: 36px;
    font-size: 24px; }
  .country-about-block .country-about-fact-content .fact-title {
    text-transform: uppercase;
    color: #3C3C3C;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px; }
  .country-about-block .country-about-fact-content .line {
    border-top: 1px solid #FF7602;
    width: 90px;
    margin: 0 auto 10px; }
  .country-about-block .country-about-fact-content .fact-text {
    color: #3C3C3C;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px; }
  @media all and (max-width: 767px) {
    .country-about-block .country-about-fact-content {
      padding: 0 10px; } }

.nrcstat-block {
  height: 450px;
  max-height: 100%; }

.norcap-banner-block {
  background-color: #72C7E7;
  margin: 27px auto 100px; }
  @media all and (max-width: 1024px) {
    .norcap-banner-block {
      margin: 27px auto 50px; } }
  .norcap-banner-block .page-wrapper, .norcap-banner-block .logoupload, .norcap-banner-block .EPiServerForms {
    padding: 0 0 0 10px;
    min-height: 39px;
    display: flex;
    flex-wrap: nowrap; }
    .norcap-banner-block .page-wrapper .banner-text, .norcap-banner-block .logoupload .banner-text, .norcap-banner-block .EPiServerForms .banner-text {
      display: block;
      padding: 11px 0 9px;
      font-size: 16px;
      line-height: 19px;
      flex: 100 1 auto;
      font-family: 'Roboto', sans-serif;
      font-weight: 300;
      font-style: normal; }
    .norcap-banner-block .page-wrapper .banner-logo, .norcap-banner-block .logoupload .banner-logo, .norcap-banner-block .EPiServerForms .banner-logo {
      background-color: #FFFFFF;
      width: 154px;
      height: 40px;
      margin-right: calc(50% - 455px);
      margin-top: -1px;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      flex: 1 1 auto; }
      @media all and (max-width: 1025px) {
        .norcap-banner-block .page-wrapper .banner-logo, .norcap-banner-block .logoupload .banner-logo, .norcap-banner-block .EPiServerForms .banner-logo {
          margin-right: 10px; } }

.person-block {
  padding: 5px !important; }

.person-card {
  background-color: #EDEDED;
  padding: 5px;
  width: 100%;
  overflow-wrap: break-word; }
  .person-card .person-card__image {
    float: left;
    margin-top: 15px;
    margin-left: 10px; }
  .person-card .person-card__info {
    text-align: left;
    margin-left: 120px;
    font-size: 16px; }
    .person-card .person-card__info .person-card__name {
      margin: 0;
      font-weight: 500; }
    .person-card .person-card__info .person-card__title, .person-card .person-card__info .person-card__text {
      color: #686969; }
    .person-card .person-card__info .person-card__email {
      text-decoration: none;
      color: #A84E01; }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.backdrop-video {
  /*  overflow: hidden;*/
  position: relative;
  height: 650px;
  text-align: center;
  z-index: 999; }
  .backdrop-video .backdrop-video__placeholderimg {
    display: none; }
  .backdrop-video video {
    position: absolute;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: 0;
    margin: 0 auto;
    width: 100%;
    object-fit: cover; }
  .backdrop-video .backdrop-video__video {
    position: relative;
    height: 100%;
    overflow: hidden; }
  .backdrop-video .backdrop-video__overlay {
    position: relative;
    bottom: 20%;
    max-width: 85%;
    margin: 0 auto;
    display: block;
    z-index: 999; }
    .backdrop-video .backdrop-video__overlay Orange {
      background-color: orange; }
    .backdrop-video .backdrop-video__overlay .overlay__title h1 {
      font-family: "arno-pro",serif;
      color: white;
      display: inline;
      font-size: 3em;
      line-height: 1.1;
      text-align: center;
      margin: 0;
      padding: 0 30px 10px 30px;
      font-style: normal;
      font-weight: 700; }
      .backdrop-video .backdrop-video__overlay .overlay__title h1.Orange {
        background-color: #ff7602; }
      .backdrop-video .backdrop-video__overlay .overlay__title h1.Blue {
        background-color: #00ADD0; }
      .backdrop-video .backdrop-video__overlay .overlay__title h1.LightGrey {
        background-color: #EDEDED; }
      .backdrop-video .backdrop-video__overlay .overlay__title h1.Black {
        background-color: black; }
    .backdrop-video .backdrop-video__overlay .teaser-title {
      display: inline-block;
      padding: 0 20px;
      color: #FFFFFF;
      position: absolute;
      top: -35px; }
      .backdrop-video .backdrop-video__overlay .teaser-title.Orange {
        background-color: #ff7602; }
      .backdrop-video .backdrop-video__overlay .teaser-title.Blue {
        background-color: #00ADD0; }
      .backdrop-video .backdrop-video__overlay .teaser-title.LightGrey {
        background-color: #EDEDED; }
      .backdrop-video .backdrop-video__overlay .teaser-title.Black {
        background-color: black; }

@media all and (max-width: 600px) {
  .backdrop-video__overlay {
    display: none !important; }

  .backdrop-video {
    height: auto; }

  .backdrop-video__video {
    display: none; }

  .backdrop-video__placeholderimg {
    display: block !important; } }
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.file-download__wrapper {
  background-color: #EDEDED;
  padding: 20px; }
  .file-download__wrapper a {
    text-decoration: none; }
  .file-download__wrapper.full-width {
    width: 100%; }
  .file-download__wrapper.half-width {
    width: 50%; }
  .file-download__wrapper.quarter-width {
    width: 450px; }
  .file-download__wrapper.center {
    margin: 0 auto; }
  .file-download__wrapper.left {
    float: left; }
  .file-download__wrapper.right {
    float: right; }
  .file-download__wrapper .file-download__item {
    display: flex;
    background-color: white;
    margin: 10px 0 10px 0;
    padding: 5px; }
    .file-download__wrapper .file-download__item:hover .filename {
      text-decoration: underline; }
    .file-download__wrapper .file-download__item .file-download__info {
      margin-left: 50px;
      margin-top: 3px; }
      .file-download__wrapper .file-download__item .file-download__info .filename {
        color: #BF5901; }
      .file-download__wrapper .file-download__item .file-download__info .size {
        font-size: 0.77em;
        color: black;
        opacity: 0.5; }
  .file-download__wrapper .file-type__icon {
    width: 50px;
    min-width: 50px; }
  .file-download__wrapper .file-download__icon {
    width: 50px;
    min-width: 50px;
    margin-left: auto; }
  @media all and (max-width: 600px) {
    .file-download__wrapper.full-width {
      width: 100%; }
    .file-download__wrapper.half-width {
      width: 100%; }
    .file-download__wrapper.quarter-width {
      width: 100%; } }

.modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000; }
  .modal.fixed {
    position: fixed; }
  .modal__info .modal__text, .modal__info span.modal__close {
    font-weight: normal !important;
    font-size: 14px !important; }
  .modal .modal__wrapper {
    position: absolute;
    top: 100px;
    left: 100px;
    right: 100px;
    bottom: 100px;
    background: #000000; }
  .modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .modal__content .loader__text {
      font-family: Roboto;
      font-size: 16px;
      color: #FFFFFF; }
  .modal .loader__bounce {
    margin: 10px auto 0;
    width: 70px;
    text-align: center; }
    .modal .loader__bounce div {
      width: 18px;
      height: 18px;
      background-color: #FFFFFF;
      border-radius: 100%;
      display: inline-block;
      -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
      animation: sk-bouncedelay 1.4s infinite ease-in-out both; }
    .modal .loader__bounce .bounce1 {
      -webkit-animation-delay: -0.32s;
      animation-delay: -0.32s; }
    .modal .loader__bounce .bounce2 {
      -webkit-animation-delay: -0.16s;
      animation-delay: -0.16s; }
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
  .modal img.modal__close, .modal img.modal__close-go-cardless {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer; }
  .modal span.modal__close, .modal span.modal__close-go-cardless {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: #FF7602;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 19px; }
  .modal .modal__text {
    text-align: left;
    font-size: 18px;
    line-height: 25px;
    padding: 60px; }
  @media all and (max-width: 767px) {
    .modal .modal__wrapper {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; } }
  @media all and (max-width: 479px) {
    .modal span.modal__close {
      position: static; }
    .modal .modal__text {
      padding: 50px 40px; } }

.cultureMessage__wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000; }
  .cultureMessage__wrapper .cultureMessage__dialog {
    max-width: 50%;
    margin: 0 auto;
    border-radius: 10px;
    color: #404040;
    background-color: #efefef;
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-family: Helvetica,Calibri,Arial,sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    z-index: 9999;
    left: 25%;
    top: 25%;
    padding: 30px;
    width: 100%;
    opacity: 1;
    transition: opacity 1s ease;
    text-align: center; }
    .cultureMessage__wrapper .cultureMessage__dialog .cultureMessage__message {
      text-align: center; }
    .cultureMessage__wrapper .cultureMessage__dialog .cultureMessage__buttonWrapper {
      margin-top: 30px; }
    .cultureMessage__wrapper .cultureMessage__dialog .cultureMessage__link, .cultureMessage__wrapper .cultureMessage__dialog .cultureMessage__dismiss {
      cursor: pointer;
      margin: 0 10px; }
    .cultureMessage__wrapper .cultureMessage__dialog .actionbutton, .cultureMessage__wrapper .cultureMessage__dialog .logoupload button, .logoupload .cultureMessage__wrapper .cultureMessage__dialog button, .cultureMessage__wrapper .cultureMessage__dialog .EPiServerForms .FormResetButton, .EPiServerForms .cultureMessage__wrapper .cultureMessage__dialog .FormResetButton, .cultureMessage__wrapper .cultureMessage__dialog .EPiServerForms button, .EPiServerForms .cultureMessage__wrapper .cultureMessage__dialog button {
      background-color: #FF7602;
      border: 2px solid #FFA457;
      color: #FFFFFF; }

.go-cardless {
  z-index: 500;
  font-weight: normal; }
  .go-cardless img.go-cardless-image {
    max-height: 65px;
    margin: 20px auto 0;
    text-align: center;
    width: auto; }
  .go-cardless .change-lookup-details {
    cursor: pointer;
    margin-bottom: 10px; }
  .go-cardless .floating-label {
    font-weight: bold; }
  .go-cardless .modal__wrapper {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent; }
  .go-cardless .modal__text {
    padding: 20px 45px 0px;
    margin-bottom: 10px; }
    .go-cardless .modal__text .field-title {
      text-align: center;
      color: #333333;
      margin-bottom: 10px;
      font-size: 18px;
      line-height: 22px;
      font-weight: normal; }
  .go-cardless .go-cardless__form-data .receipt {
    text-align: center;
    padding: 50px; }
  .go-cardless .step-2 .go-cardless__form-data {
    display: flex;
    flex-flow: row wrap;
    background-color: #DCDCDC;
    padding: 25px 25px 5px;
    margin-bottom: 10px; }
    .go-cardless .step-2 .go-cardless__form-data .field {
      flex: 0 0 50%; }
      .go-cardless .step-2 .go-cardless__form-data .field .label, .go-cardless .step-2 .go-cardless__form-data .field .text {
        font-size: 14px;
        line-height: 18px; }
      .go-cardless .step-2 .go-cardless__form-data .field .text {
        font-weight: 500;
        text-align: left; }
    .go-cardless .step-2 .go-cardless__form-data .go-to-step-1 {
      cursor: pointer;
      margin-bottom: 28px;
      font-size: 14px;
      line-height: 18px; }
  .go-cardless .step-2 .pending-download-text {
    font-size: 14px !important;
    line-height: 18px;
    padding-top: 10px;
    text-align: center;
    display: none; }
  .go-cardless .button__wrapper {
    margin-bottom: 25px; }
  .go-cardless .go-cardless-information, .go-cardless .go-cardless-pdf-link {
    text-align: center; }
  .go-cardless .go-cardless-information {
    color: #666666;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px; }
  .go-cardless .go-cardless-error.warning {
    margin-top: 10px !important;
    font-size: 14px !important;
    line-height: 18px;
    padding: 0; }
  .go-cardless .go-cardless-link {
    font-weight: normal;
    text-decoration: underline;
    color: #666666;
    cursor: pointer; }
  .go-cardless .go-cardless-pdf-link {
    font-size: 14px;
    line-height: 18px; }

.simple-donation-override .step2__action__button {
  text-align: center !important;
  margin: 20px 0 15px; }
  @media all and (max-width: 599px) {
    .simple-donation-override .step2__action__button {
      margin: 15px 0; } }
  .simple-donation-override .step2__action__button .button__wrapper {
    float: none !important; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
@font-face {
  font-family: "iconFont";
  src: url("/content/fonts/IconFont/iconFont.eot?35d92869a54ce009dd9205bb25a70704");
  src: url("/content/fonts/IconFont/iconFont.eot?#iefix") format("embedded-opentype"), url("/content/fonts/IconFont/iconFont.svg?35d92869a54ce009dd9205bb25a70704#iconFont") format("svg"), url("/content/fonts/IconFont/iconFont.woff?35d92869a54ce009dd9205bb25a70704") format("woff"), url("/content/fonts/IconFont/iconFont.ttf?35d92869a54ce009dd9205bb25a70704") format("truetype");
  font-weight: normal;
  font-style: normal; }
.icon, .collapsed-container__heading::after, a.some__icon::after,
.some__icon::after, .tags:before, .article-top-image figcaption::before, .article-wide-image figcaption::before, .html blockquote::before, .dropdown-wrapper .dropdown-title:after, .product-card .status-point .status-point__bullet span::before, .page-header__section-column .btn-open-menu::before, .page-header__section-column .btn-menu-search::before, .nrc .carousel__next a,
.nrc .carousel__previous a, .flyktninghjelpen .carousel__next a,
.flyktninghjelpen .carousel__previous a, .validation-summary-errors:before, .form-error:before {
  font-family: "iconFont";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon_about_established:before {
  content: "\4e"; }

.icon_about_expenditure:before {
  content: "\4f"; }

.icon_about_forecast:before {
  content: "\50"; }

.icon_about_operations:before {
  content: "\51"; }

.icon_about_staff:before {
  content: "\52"; }

.icon_close_x:before {
  content: "\53"; }

.icon_contact_director:before {
  content: "\54"; }

.icon_contact_email:before {
  content: "\55"; }

.icon_contact_phone:before {
  content: "\56"; }

.icon_dropdown_arrow:before {
  content: "\57"; }

.icon_dropdown_check:before {
  content: "\58"; }

.icon_facts_internally_displaced:before {
  content: "\59"; }

.icon_facts_new_refugees:before {
  content: "\5a"; }

.icon_facts_population:before {
  content: "\5b"; }

.icon_facts_refugees:before {
  content: "\5c"; }

.icon_facts_voluntary_returns:before {
  content: "\5d"; }

.icon_ic_alert:before {
  content: "\4a"; }

.icon_ic_arrow:before {
  content: "\41"; }

.icon_ic_basket:before {
  content: "\5e"; }

.icon_ic_checkmark:before {
  content: "\4d"; }

.icon_ic_envelope:before {
  content: "\46"; }

.icon_ic_fb:before {
  content: "\42"; }

.icon_ic_gift:before {
  content: "\4b"; }

.icon_ic_google:before {
  content: "\5f"; }

.icon_ic_in:before {
  content: "\43"; }

.icon_ic_mobile:before {
  content: "\47"; }

.icon_ic_pencil:before {
  content: "\4c"; }

.icon_ic_tw:before {
  content: "\44"; }

.icon_ic_uparrow:before {
  content: "\60"; }

.icon_ic_yt:before {
  content: "\45"; }

.icon_menu:before, .page-header__section-column .btn-open-menu:before {
  content: "\6c"; }

.icon_photo:before {
  content: "\61"; }

.icon_quotemarks:before {
  content: "\62"; }

.icon_results_education:before {
  content: "\63"; }

.icon_results_food_security:before {
  content: "\64"; }

.icon_results_icla:before {
  content: "\65"; }

.icon_results_shelter:before {
  content: "\66"; }

.icon_results_shelter_2:before {
  content: "\67"; }

.icon_results_wash:before {
  content: "\68"; }

.icon_search:before, .page-header__section-column .btn-menu-search:before {
  content: "\6b"; }

.icon_shoppingcart-empty:before {
  content: "\6d"; }

.icon_shoppingcart:before {
  content: "\6e"; }

.icon_tag:before {
  content: "\69"; }

.icon_triangle-arrow:before {
  content: "\6f"; }

.icon_video:before {
  content: "\6a"; }

.icon_zoom:before {
  content: "\70"; }

.page-header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); }
  .page-header.page-wrapper, .page-header.logoupload, .page-header.EPiServerForms {
    margin-bottom: 2rem; }
  @media all and (min-width: 1025px) {
    .page-header .menu {
      margin-top: 20px; } }

.page-header__topsection {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-content: stretch;
  width: inherit;
  margin: 10px 0 15px 0; }
  @media all and (max-width: 1024px) {
    .page-header__topsection {
      -webkit-align-items: flex-end;
      align-items: flex-end;
      -webkit-box-align: end;
      -moz-box-align: end;
      -ms-flex-align: end; } }
  @media all and (min-width: 1025px) {
    .page-header__topsection {
      margin: 25px 0; } }

.page-header__logolink {
  display: block; }

.page-header__logo {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 38px; }
  @media all and (min-width: 1025px) {
    .page-header__logo {
      width: 212px;
      height: 54px; } }

.page-header__section-column {
  vertical-align: bottom;
  text-align: center;
  padding: 0 10px;
  order: 3; }
  @media all and (max-width: 599px) {
    .page-header__section-column {
      padding: 0; } }
  .page-header__section-column:nth-child(1) {
    order: 1;
    -webkit-box-flex: 2;
    -moz-box-flex: 2;
    width: auto;
    -webkit-flex: 2 2 auto;
    -ms-flex: 2 2 auto;
    flex: 2 2 auto; }
    @media all and (max-width: 599px) {
      .page-header__section-column:nth-child(1) {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        width: auto;
        -webkit-flex: 1 2 auto;
        -ms-flex: 1 2 auto;
        flex: 1 2 auto; } }
  @media all and (min-width: 601px) {
    .page-header__section-column:nth-child(2) {
      order: 2;
      flex: 2 1 auto;
      min-width: 180px; } }
  .page-header__section-column:nth-child(2) span {
    text-align: center; }
  @media all and (min-width: 601px) {
    .page-header__section-column:nth-child(3) {
      flex: 2 2 auto; } }
  @media all and (min-width: 601px) {
    .page-header__section-column:nth-child(4) {
      flex: 2 2 auto; } }
  .page-header__section-column:nth-child(5), .page-header__section-column:nth-child(6) {
    flex: none; }
    @media all and (max-width: 599px) {
      .page-header__section-column:nth-child(5), .page-header__section-column:nth-child(6) {
        margin: 0 10px; } }
    .page-header__section-column:nth-child(5) button, .page-header__section-column:nth-child(5) a, .page-header__section-column:nth-child(6) button, .page-header__section-column:nth-child(6) a {
      display: inline-block;
      font-size: 14px;
      font-weight: 500;
      padding: 0 5px;
      border-bottom: 2px solid #FF7602; }
  .page-header__section-column .menu-search {
    margin: 7px auto 0 auto; }
  .page-header__section-column .orange-underlined-link {
    display: inline-block;
    padding: 5px 10px; }
  .page-header__section-column .btn-menu-search {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    color: #000;
    text-transform: uppercase; }
  .page-header__section-column .btn-open-menu {
    text-decoration: none;
    text-align: center;
    text-transform: uppercase; }
  .page-header__section-column .btn-open-menu::before, .page-header__section-column .btn-menu-search::before {
    display: block;
    color: #FF7602;
    font-size: 1.5em;
    margin-bottom: 5px; }
  @media all and (max-width: 1024px) {
    .page-header__section-column .orange-underlined-link {
      font-size: 1.2em; } }

/* Floating header overrides */
.page-header.scroll-to-fixed-fixed .page-header__logo {
  background-repeat: no-repeat;
  background-size: 36px;
  width: 36px;
  height: 36px;
  margin: 0 0 0 10px; }
.page-header.scroll-to-fixed-fixed .page-header__topsection {
  margin: 3px 0; }
.page-header.scroll-to-fixed-fixed .btn-open-menu::before, .page-header.scroll-to-fixed-fixed .btn-menu-search::before {
  content: ''; }
.page-header.scroll-to-fixed-fixed .menu-search .main-search__table {
  height: auto; }
  .page-header.scroll-to-fixed-fixed .menu-search .main-search__table .main-search__search-field {
    display: none; }
  .page-header.scroll-to-fixed-fixed .menu-search .main-search__table button {
    border: none;
    height: auto;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    padding: 0 5px;
    border-bottom: 2px solid #FF7602; }
.page-header.scroll-to-fixed-fixed .page-header__section-column {
  text-align: right;
  max-width: 200px; }
  .page-header.scroll-to-fixed-fixed .page-header__section-column:nth-child(1) {
    -webkit-box-flex: 5;
    -moz-box-flex: 5;
    width: auto;
    -webkit-flex: 5 5 auto;
    -ms-flex: 5 5 auto;
    flex: 5 5 auto;
    max-width: initial; }

.hide {
  display: none; }

@media all and (max-width: 479px) {
  .hide--mobile {
    display: none !important; } }

@media (min-width: 480px) and (max-width: 768px) {
  .hide--tablet-small {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 1024px) {
  .hide--tablet {
    display: none !important; } }

@media all and (min-width: 1025px) {
  .hide--desktop {
    display: none !important; } }

@media all and (min-width: 769px) {
  .hide--grt-tablet {
    display: none !important; } }

@media all and (min-width: 601px) {
  .hide--grt-tablet-small {
    display: none !important; } }

@media all and (min-width: 1025px) {
  .hide--grt-desktop {
    display: none !important; } }

@media all and (min-width: 768px) {
  .hide--grt-and-tablet {
    display: none !important; } }

@media all and (min-width: 600px) {
  .hide--grt-and-tablet-small {
    display: none !important; } }

@media all and (min-width: 1024px) {
  .hide--grt-and-desktop {
    display: none !important; } }

@media all and (max-width: 767px) {
  .hide--les-tablet {
    display: none !important; } }

@media all and (max-width: 599px) {
  .hide--les-tablet-small {
    display: none !important; } }

@media all and (max-width: 1023px) {
  .hide--les-desktop {
    display: none !important; } }

@media all and (max-width: 768px) {
  .hide--les-and-tablet {
    display: none !important; } }

@media all and (max-width: 600px) {
  .hide--les-and-tablet-small {
    display: none !important; } }

@media all and (max-width: 1024px) {
  .hide--les-and-desktop {
    display: none !important; } }

@media all and (max-width: 479px) {
  .hide__test .hide--mobile {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--mobile::after {
      content: " (skjules)"; } }
@media (min-width: 480px) and (max-width: 768px) {
  .hide__test .hide--tablet-small {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--tablet-small::after {
      content: " (skjules)"; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .hide__test .hide--tablet {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--tablet::after {
      content: " (skjules)"; } }
@media all and (min-width: 1025px) {
  .hide__test .hide--desktop {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--desktop::after {
      content: " (skjules)"; } }
@media all and (min-width: 769px) {
  .hide__test .hide--grt-tablet {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--grt-tablet::after {
      content: " (skjules)"; } }
@media all and (min-width: 601px) {
  .hide__test .hide--grt-tablet-small {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--grt-tablet-small::after {
      content: " (skjules)"; } }
@media all and (min-width: 1025px) {
  .hide__test .hide--grt-desktop {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--grt-desktop::after {
      content: " (skjules)"; } }
@media all and (max-width: 767px) {
  .hide__test .hide--les-tablet {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--les-tablet::after {
      content: " (skjules)"; } }
@media all and (max-width: 599px) {
  .hide__test .hide--les-tablet-small {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--les-tablet-small::after {
      content: " (skjules)"; } }
@media all and (max-width: 1023px) {
  .hide__test .hide--les-desktop {
    display: block;
    opacity: 0.6; }
    .hide__test .hide--les-desktop::after {
      content: " (skjules)"; } }

.hide__test--strict, .hide__test--greater, .hide__test--lesser {
  text-transform: uppercase;
  font-weight: bold; }

.hide__test--strict::after {
  content: "mobile";
  color: green; }
@media (min-width: 480px) and (max-width: 768px) {
  .hide__test--strict::after {
    content: "tablet-small";
    color: blue; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .hide__test--strict::after {
    content: "tablet";
    color: orange; } }
@media all and (min-width: 1025px) {
  .hide__test--strict::after {
    content: "desktop";
    color: purple; } }

@media all and (min-width: 1025px) {
  .hide__test--greater::after {
    content: "Greater than: desktop";
    color: purple; } }
@media all and (min-width: 769px) {
  .hide__test--greater::after {
    content: "Greater than: tablet";
    color: orange; } }
@media all and (min-width: 601px) {
  .hide__test--greater::after {
    content: "Greater than: tablet-small";
    color: blue; } }

@media all and (max-width: 1023px) {
  .hide__test--lesser::after {
    content: "Lesser than: desktop";
    color: purple; } }
@media all and (max-width: 767px) {
  .hide__test--lesser::after {
    content: "Lesser than: tablet";
    color: orange; } }
@media all and (max-width: 599px) {
  .hide__test--lesser::after {
    content: "Lesser than: tablet-small";
    color: blue; } }

.carousel {
  list-style: none;
  position: relative;
  margin-bottom: 40px;
  background-color: #FFFFFF; }
  .carousel .carousel__previous,
  .carousel .carousel__next,
  .carousel .carousel__pager {
    z-index: 1; }
  .carousel figure {
    padding: 0 !important; }

.carousel__items {
  list-style: none;
  margin: 0;
  height: 100%; }

.carousel__nav {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  overflow: visible; }

.nrc .carousel__next a,
.nrc .carousel__previous a {
  text-decoration: none;
  color: #FF7602;
  display: inline-block;
  font-size: 30px;
  padding: 5px 0;
  background: rgba(0, 0, 0, 0.6); }
  @media (min-width: 600px) and (max-width: 1024px) {
    .nrc .carousel__next a,
    .nrc .carousel__previous a {
      font-size: 38px; } }
  @media all and (min-width: 1025px) {
    .nrc .carousel__next a,
    .nrc .carousel__previous a {
      font-size: 46px;
      padding: 14px 6px; } }
  .nrc .carousel__next a:hover,
  .nrc .carousel__previous a:hover {
    background: #000000; }

.flyktninghjelpen .carousel__next a,
.flyktninghjelpen .carousel__previous a {
  text-decoration: none;
  color: #000000;
  display: inline-block;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.6); }
  @media (min-width: 600px) and (max-width: 1024px) {
    .flyktninghjelpen .carousel__next a,
    .flyktninghjelpen .carousel__previous a {
      font-size: 38px;
      padding: 5px 0; } }
  @media all and (min-width: 1025px) {
    .flyktninghjelpen .carousel__next a,
    .flyktninghjelpen .carousel__previous a {
      font-size: 46px;
      padding: 14px 6px; } }
  .flyktninghjelpen .carousel__next a:hover,
  .flyktninghjelpen .carousel__previous a:hover {
    background: #FFFFFF; }

.carousel__next {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  right: 0px; }

.carousel__previous {
  left: 0px; }

.carousel__pager {
  cursor: default;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 0;
  text-align: center;
  overflow: visible; }
  @media all and (max-width: 1024px) {
    .carousel__pager {
      bottom: 0;
      display: none; } }

.nrc .carousel__bullet {
  cursor: default;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: 1px solid #B8B8B8;
  background-color: #D7D7D7;
  display: inline-block;
  margin-right: 12px; }
  .nrc .carousel__bullet.active {
    background-color: #FF7602;
    border-color: #8D8D8D; }

.flyktninghjelpen .carousel__bullet {
  cursor: default;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: 1px solid #B8B8B8;
  background-color: #D7D7D7;
  display: inline-block;
  margin-right: 12px; }
  .flyktninghjelpen .carousel__bullet.active {
    background-color: #00ADD0;
    border-color: #8D8D8D; }

.carousel__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*
  @include breakpoint-after($oxx-max-width-wide-wrapper) {
    width: calc(100% - 200px);
  }
  max-width: $oxx-max-width-wrapper;*/
  height: 100%;
  /*&--16-9 { padding-bottom: _layerFormatRatio(); }
  &--16-10 { padding-bottom: _layerFormatRatio(16, 10); }*/ }
  .carousel__layer > * {
    z-index: 1; }

.carousel-fullwidth .carousel__layer {
  max-width: 100%; }

.carousel .article-top-image__wrapper {
  width: 100%;
  max-width: 100%; }
  .carousel .article-top-image__wrapper img {
    width: 100%; }
.carousel figcaption, .carousel .article-top-image__figcaption--wrapper {
  width: 100%;
  padding: 5px 20px 0 !important;
  position: relative;
  top: 0 !important; }
  .carousel figcaption .article-top-image__figcaption, .carousel .article-top-image__figcaption--wrapper .article-top-image__figcaption {
    margin: 0 auto; }
  @media all and (max-width: 1400px) {
    .carousel figcaption, .carousel .article-top-image__figcaption--wrapper {
      display: none; } }

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
.page-footer {
  *zoom: 1;
  margin-top: 6.250rem;
  width: 100%;
  background-color: #f5f5f5;
  color: white;
  padding: 0 0 88px;
  font-size: 1em; }
  .page-footer:before, .page-footer:after {
    content: '';
    display: table; }
  .page-footer:after {
    clear: both; }
  @media all and (max-width: 1023px) {
    .page-footer .collapsed-container__heading {
      display: block; }
      .page-footer .collapsed-container__heading::after {
        top: 4px;
        left: auto;
        right: 0; } }

.page-footer__top {
  background-color: #d3d3d3;
  margin-bottom: 30px;
  color: #3C3C3C; }

.page-footer__column {
  padding: 0 15px; }
  @media all and (min-width: 1024px) {
    .page-footer__column {
      float: left;
      clear: none;
      width: 21.6666666667%;
      margin-left: 0;
      margin-right: 0; }
      .page-footer__column:nth-of-type(4n) {
        margin-right: 0;
        float: right; }
      .page-footer__column:nth-of-type(4n + 1) {
        clear: both; }
      .page-footer__column--contact {
        float: left;
        clear: none;
        width: 35%;
        margin-left: 0;
        margin-right: 0; }
        .page-footer__column--contact:nth-of-type(4n) {
          margin-right: 0;
          float: right; }
        .page-footer__column--contact:nth-of-type(4n + 1) {
          clear: both; } }
  .page-footer__column.page-footer__webshop {
    margin-top: 15px; }
    @media all and (min-width: 1025px) {
      .page-footer__column.page-footer__webshop {
        float: left;
        clear: none;
        width: 33.33333%;
        margin-left: 0;
        margin-right: 0; }
        .page-footer__column.page-footer__webshop:nth-of-type(3n) {
          margin-right: 0;
          float: right; }
        .page-footer__column.page-footer__webshop:nth-of-type(3n + 1) {
          clear: both; } }
  .page-footer__column h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1.125em;
    color: #4B3625;
    font-weight: 900;
    line-height: 1.167em; }
  @media all and (max-width: 1023px) {
    .page-footer__column {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding: 20px 30px 20px 50px;
      border-bottom: 1px solid #62564B; }
      .page-footer__column:first-child {
        margin-left: auto; }
      .page-footer__column:last-child {
        margin-right: auto; }
      .page-footer__column:last-child {
        margin-bottom: 0; }
      .page-footer__column.open .collapsed-container__heading {
        margin-bottom: 20px; } }

.page-footer__contact {
  color: #000;
  font-size: 1.125em;
  line-height: 1.444em;
  font-weight: 300; }
  .page-footer__contact address {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-bottom: 2em; }
  .page-footer__contact a {
    color: #BF5901;
    text-decoration: none;
    color: #A84E01; }
    .page-footer__contact a:hover {
      text-decoration: underline; }
  .page-footer__contact .contact-table {
    margin-bottom: 30px; }
    .page-footer__contact .contact-table .contact-table__icon {
      color: #4B3625; }
    .page-footer__contact .contact-table .contact-table__info {
      line-height: 1.778em; }
  .page-footer__contact .some {
    margin-top: 2.778rem; }
  .page-footer__contact .some a {
    color: #FFF; }
    .page-footer__contact .some a:hover {
      text-decoration: none; }
    .page-footer__contact .some a:after {
      color: #FFF; }

.product {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }

.product__cards__infoContainer {
  margin: auto 25px; }

.product__cards {
  padding: 0 0 2.500rem;
  margin: 1.111rem 0 0; }

.product__cards .product-card {
  padding: 70px 0 80px 0;
  border-bottom: 1px solid black; }
  .product__cards .product-card:first-child {
    padding-top: 0; }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000; }
  .popup-overlay:focus {
    outline: none; }

.popup-overlay__centered {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.popup-overlay__disable-scroll {
  overflow: hidden; }

/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.page-wrapper, .logoupload, .EPiServerForms {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  @media all and (max-width: 767px) {
    .page-wrapper, .logoupload, .EPiServerForms {
      padding: 0 1em; } }
  .page-wrapper ul, .logoupload ul, .EPiServerForms ul {
    list-style: none;
    padding-left: 20px; }
    @media all and (min-width: 769px) {
      .page-wrapper ul, .logoupload ul, .EPiServerForms ul {
        padding-left: 0; } }
    @media all and (max-width: 1220px) {
      .page-wrapper ul, .logoupload ul, .EPiServerForms ul {
        padding: 0 10px; } }

.page-wrapper--wide {
  max-width: 1400px; }

.page-wrapper--narrow {
  max-width: 1024px; }

.page-wrapper--extranarrow, .logoupload {
  max-width: 768px; }

.page {
  width: 100%; }

.page--fixed-aside {
  *zoom: 1; }
  .page--fixed-aside:before, .page--fixed-aside:after {
    content: '';
    display: table; }
  .page--fixed-aside:after {
    clear: both; }
  .page--fixed-aside .page-wrapper, .page--fixed-aside .logoupload, .page--fixed-aside .EPiServerForms {
    *zoom: 1; }
    .page--fixed-aside .page-wrapper:before, .page--fixed-aside .logoupload:before, .page--fixed-aside .EPiServerForms:before, .page--fixed-aside .page-wrapper:after, .page--fixed-aside .logoupload:after, .page--fixed-aside .EPiServerForms:after {
      content: '';
      display: table; }
    .page--fixed-aside .page-wrapper:after, .page--fixed-aside .logoupload:after, .page--fixed-aside .EPiServerForms:after {
      clear: both; }
  .page--fixed-aside .page__container {
    float: left;
    clear: none;
    width: 63.95%;
    margin-left: 0;
    margin-right: 3%;
    position: relative;
    left: -36.05%; }
    .page--fixed-aside .page__container:last-child {
      margin-right: 0; }
  .page--fixed-aside .page__aside {
    float: left;
    clear: none;
    width: 33.05%;
    margin-left: 0;
    margin-right: 3%;
    position: relative;
    left: 66.95%; }
    .page--fixed-aside .page__aside:last-child {
      margin-right: 0; }
  @media all and (max-width: 768px) {
    .page--fixed-aside .page__container,
    .page--fixed-aside .page__aside {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      position: static;
      left: 0; }
      .page--fixed-aside .page__container:first-child,
      .page--fixed-aside .page__aside:first-child {
        margin-left: auto; }
      .page--fixed-aside .page__container:last-child,
      .page--fixed-aside .page__aside:last-child {
        margin-right: auto; } }

.front-page .page-wrapper .carousel, .front-page .logoupload .carousel, .front-page .EPiServerForms .carousel {
  margin: 0 -16px 40px -16px; }
  @media all and (min-width: 481px) {
    .front-page .page-wrapper .carousel, .front-page .logoupload .carousel, .front-page .EPiServerForms .carousel {
      margin: 0 0 90px 0; } }
.front-page .carousel {
  margin: 0 0 40px 0; }
  @media all and (min-width: 1025px) {
    .front-page .carousel {
      margin: 0 0 90px; } }
  .front-page .carousel .carousel__layer {
    width: 100%;
    max-width: none; }
  .front-page .carousel .banner {
    background-color: black; }
    .front-page .carousel .banner .poster {
      background-color: black;
      color: white; }
      @media all and (min-width: 1025px) {
        .front-page .carousel .banner .poster {
          background-color: rgba(0, 0, 0, 0.75); } }
  .front-page .carousel.flyktninghjelpen .banner {
    background-color: #FFFFFF; }
    .front-page .carousel.flyktninghjelpen .banner .poster {
      background-color: #FFFFFF;
      color: #000000; }
      @media all and (min-width: 1025px) {
        .front-page .carousel.flyktninghjelpen .banner .poster {
          background-color: rgba(255, 255, 255, 0.85); } }
      .front-page .carousel.flyktninghjelpen .banner .poster time {
        color: #696969; }
.front-page .contentareaitem {
  margin-bottom: 55px; }

/* Removes all default list style
***********************************************/
/* Sets inline-block to all child elements
***********************************************/
/* Breaks between two given points
***********************************************/
/* Transition. Includes transition vendor prefixes
***********************************************/
/* Border Radius. Includes transition vendor prefixes
***********************************************/
/* Box decoration break. Sets the type presented
***********************************************************/
/* The breakpoint that is used to toggle between
 * mobile menu and desktop menu.
 **********************************************/
.gift-shop {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 10px; }
  .gift-shop h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.800rem;
    text-transform: uppercase;
    text-align: center;
    margin: 4.444rem 0; }
  .gift-shop .stripe__wrapper form {
    text-align: center; }
    .gift-shop .stripe__wrapper form button {
      background: #FF7602; }
      .gift-shop .stripe__wrapper form button span {
        background: #FF7602; }

.gift-shop--shopping-cart .product-header {
  margin-bottom: 2rem; }
.gift-shop--shopping-cart .product__cards {
  margin-bottom: 2rem; }
.gift-shop--shopping-cart .product-chooser {
  max-width: 800px;
  border: 1px solid #FF7602;
  padding: 30px 25px;
  margin: 0 auto 20px auto;
  font-size: 20px; }
  .gift-shop--shopping-cart .product-chooser .product-chooser__column:first-child {
    width: 380px; }
  .gift-shop--shopping-cart .product-chooser .product-chooser__column:nth-of-type(2) {
    width: 74px; }
  @media all and (max-width: 768px) {
    .gift-shop--shopping-cart .product-chooser {
      display: block;
      table-layout: unset; }
      .gift-shop--shopping-cart .product-chooser .product-chooser__column {
        margin: 0 auto;
        display: block;
        text-align: center; }
        .gift-shop--shopping-cart .product-chooser .product-chooser__column:first-child {
          width: 100%; }
        .gift-shop--shopping-cart .product-chooser .product-chooser__column:last-child {
          text-align: center; } }
.gift-shop--shopping-cart .product__content {
  max-width: 635px;
  margin: 0 auto; }
.gift-shop--shopping-cart .card__intro {
  max-width: 635px;
  margin: 0 auto 20px auto;
  border: 1px solid #FF7602;
  padding: 20px;
  text-align: center;
  position: relative; }
  .gift-shop--shopping-cart .card__intro svg {
    position: absolute;
    width: 30px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%); }
.gift-shop--shopping-cart .product-checkboxes {
  padding: 0 20px 10px 20px; }
  .gift-shop--shopping-cart .product-checkboxes label {
    display: block;
    margin-bottom: 20px; }

.input-validation-error {
  background-color: rgba(255, 112, 2, 0.15) !important;
  border: 3px solid #D0021B !important; }

.validation-summary-errors, .form-error {
  display: block;
  margin: 0 50px;
  border: 1px solid #FFEAD9;
  padding: 20px;
  padding-left: 60px;
  margin-bottom: 15px;
  position: relative;
  background-color: rgba(255, 112, 2, 0.15) !important; }
  .validation-summary-errors:before, .form-error:before {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    content: "J";
    display: inline-block;
    width: 35px;
    height: 35px;
    padding-top: 0.256em;
    font-size: 1.3em;
    color: white;
    background-color: black;
    text-align: center;
    position: absolute;
    top: 35px;
    left: 3rem; }
  .validation-summary-errors span :before, .form-error span :before {
    font-family: iconFont;
    content: "\4a"; }
  .validation-summary-errors ul, .form-error ul {
    list-style: inside none; }

.gift-shop--receipt .receipt {
  padding: 60px 42.5px;
  border: 1px solid #FF7602;
  color: #2b2e34; }
  .gift-shop--receipt .receipt .lined-heading {
    max-width: 100%;
    margin-bottom: 33px; }
    .gift-shop--receipt .receipt .lined-heading span {
      font-size: 30px; }
    .gift-shop--receipt .receipt .lined-heading:before {
      width: 100%;
      left: 0; }
  .gift-shop--receipt .receipt .receipttext {
    margin-bottom: 59px; }
  .gift-shop--receipt .receipt .receiptfooter {
    text-align: center; }
  .gift-shop--receipt .receipt .receiptfooter a, .gift-shop--receipt .receipt .receipttext a {
    color: #FF7602;
    text-decoration: none; }
  .gift-shop--receipt .receipt .userdata {
    margin-bottom: 25px; }
    .gift-shop--receipt .receipt .userdata ul {
      margin: 0;
      padding: 0;
      list-style: none outside;
      margin-bottom: 40px; }
      .gift-shop--receipt .receipt .userdata ul span {
        font-size: 27px;
        display: inline-block; }
        @media all and (max-width: 480px) {
          .gift-shop--receipt .receipt .userdata ul span {
            display: block;
            font-size: 20px; } }
      .gift-shop--receipt .receipt .userdata ul .label {
        font-weight: bold; }
        @media all and (min-width: 481px) {
          .gift-shop--receipt .receipt .userdata ul .label {
            width: 245px; } }
  .gift-shop--receipt .receipt .producttable {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column; }
    .gift-shop--receipt .receipt .producttable h2 {
      font-weight: 700;
      font-size: 27px; }
    .gift-shop--receipt .receipt .producttable .product {
      flex: 0 0 auto;
      margin-bottom: 40px; }
      @media all and (max-width: 768px) {
        .gift-shop--receipt .receipt .producttable .product {
          padding-bottom: 15px;
          border-bottom: 1px solid #FF7602; } }
    @media all and (min-width: 768px) {
      .gift-shop--receipt .receipt .producttable .product-data {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex: 0 0 auto; } }
    .gift-shop--receipt .receipt .producttable .product-data .product-data--item {
      display: block;
      flex: 0 0 auto;
      font-size: 27px; }
      .gift-shop--receipt .receipt .producttable .product-data .product-data--item .label {
        margin-right: 5px; }
      @media all and (min-width: 768px) {
        .gift-shop--receipt .receipt .producttable .product-data .product-data--item {
          display: inline-block; } }
      @media all and (min-width: 768px) {
        .gift-shop--receipt .receipt .producttable .product-data .product-data--item {
          border-bottom: 1px solid #FF7602;
          padding-bottom: 40px;
          vertical-align: bottom; } }
      @media all and (max-width: 767px) {
        .gift-shop--receipt .receipt .producttable .product-data .product-data--item {
          font-size: 20px; } }
    @media all and (min-width: 768px) {
      .gift-shop--receipt .receipt .producttable .product-data {
        flex-direction: row; } }
    @media all and (max-width: 767px) {
      .gift-shop--receipt .receipt .producttable .product-data {
        flex-direction: column; } }
    .gift-shop--receipt .receipt .producttable .product-data .product-data--price,
    .gift-shop--receipt .receipt .producttable .product-data .product-data--count,
    .gift-shop--receipt .receipt .producttable .product-data .product-data--sum {
      flex: 1 0 auto; }
      @media all and (min-width: 769px) {
        .gift-shop--receipt .receipt .producttable .product-data .product-data--price,
        .gift-shop--receipt .receipt .producttable .product-data .product-data--count,
        .gift-shop--receipt .receipt .producttable .product-data .product-data--sum {
          padding-top: 18px; } }
    .gift-shop--receipt .receipt .producttable .product-data--card {
      padding: 15px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap; }
      @media all and (max-width: 480px) {
        .gift-shop--receipt .receipt .producttable .product-data--card {
          flex-direction: column; } }
    .gift-shop--receipt .receipt .producttable .product-data--cardlist {
      margin-top: 15px; }
    .gift-shop--receipt .receipt .producttable .product-data--cardrecipient, .gift-shop--receipt .receipt .producttable .product-data--cardname {
      display: inline-block;
      padding-top: 18px;
      line-height: 18px; }
    .gift-shop--receipt .receipt .producttable .product-data--cardname {
      flex: 1 1 75px;
      min-width: 75px; }
      @media all and (max-width: 480px) {
        .gift-shop--receipt .receipt .producttable .product-data--cardname {
          flex: 1 1 auto; } }
    .gift-shop--receipt .receipt .producttable .product-data--cardrecipient {
      flex: 1 1 100%; }
    .gift-shop--receipt .receipt .producttable .product-data--cardbutton {
      display: inline-block;
      min-width: 185px;
      flex: 1 1 185px; }
      @media all and (min-width: 768px) {
        .gift-shop--receipt .receipt .producttable .product-data--cardbutton {
          margin-left: 26px; } }
      @media all and (max-width: 480px) {
        .gift-shop--receipt .receipt .producttable .product-data--cardbutton {
          padding-top: 18px;
          flex: 1 1 auto; } }
      .gift-shop--receipt .receipt .producttable .product-data--cardbutton a {
        font-size: 16px;
        text-align: center;
        font-family: Roboto;
        text-transform: uppercase;
        color: #4A4A4A;
        display: inline-block;
        padding: 18px 36px 13px 36px;
        border: 1px solid #FF7602;
        text-decoration: none; }

.checkout-error-target {
  border: 1px solid #FF0000;
  padding: 10px;
  margin-top: 10px;
  text-align: center; }

.product-page h1 {
  font-size: 40px;
  color: #2b2e34; }
.product-page .meta-info__ingress {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2b2e34; }
.product-page .richtext {
  font-size: 20px;
  line-height: 1.3;
  color: #2b2e34;
  font-weight: 300; }
.product-page .article-top-image__wrapper.product-box__image .product-box__imageWrap {
  top: 70px;
  left: -62px;
  padding: 3.5px 45px 3.5px 85px;
  font-size: 24px;
  background: url("/Images/gmm/white_bow.svg") no-repeat 40px center #FF7602;
  background-size: 40px;
  width: 323px;
  height: 44px;
  overflow: visible;
  font-weight: 700; }

.product-page .article-top-image {
  margin-bottom: 40px;
  max-width: 1400px; }
  .product-page .article-top-image .article-top-image__wrapper {
    max-width: 1400px; }
    .product-page .article-top-image .article-top-image__wrapper img {
      width: 100%; }

@media all and (max-width: 768px) {
  .product-page .product-add-box {
    margin: 0 auto 1rem;
    display: block; } }

.product-page .addthis_custom_sharing {
  text-align: center;
  margin-top: 10px; }

.article .fixed__donation--wrapper {
  display: none;
  text-align: right;
  margin-bottom: -53px;
  height: 53px;
  margin-right: -30px; }
  @media all and (min-width: 1025px) {
    .article .fixed__donation--wrapper {
      display: block; } }
  .article .fixed__donation--wrapper .action__wrap {
    border: 2px solid #000000;
    display: inline-block;
    width: 275px;
    position: relative;
    z-index: 1000; }
    .article .fixed__donation--wrapper .action__wrap .donation-block {
      background: none;
      border: none; }
      .article .fixed__donation--wrapper .action__wrap .donation-block .donationBlockForm {
        transform: none;
        position: static;
        background: none;
        width: 100%; }
        .article .fixed__donation--wrapper .action__wrap .donation-block .donationBlockForm .donation-second-step .input-wrapper input {
          font-size: 16px; }
        .article .fixed__donation--wrapper .action__wrap .donation-block .donationBlockForm .gradientOverlay {
          height: auto; }
    .article .fixed__donation--wrapper .action__wrap .icon_close_x {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 18px;
      padding: 5px;
      background-color: #EDEDED; }
.article .page-wrapper:after, .article .logoupload:after, .article .EPiServerForms:after {
  content: "";
  display: block;
  clear: both; }
@media all and (min-width: 768px) {
  .article .page-wrapper, .article .logoupload, .article .EPiServerForms {
    padding: 0 40px; } }
.article .richtext {
  max-width: 850px;
  width: 100%;
  margin-left: 0 !important; }
.article > .contentareaitem:last-child figure .article-top-image__figcaption--wrapper {
  position: relative; }
.article > .contentareaitem:last-child figure .article-top-image__figcaption {
  margin: 0; }
.article > .contentareaitem:last-child figure figcaption {
  width: 100%;
  max-width: none; }
.article .related-news {
  padding: 30px 0 0; }

.countrypage .list-module {
  max-width: 1200px; }
.countrypage a {
  text-decoration: none; }

.resourcepage .searcharea-searchbox {
  margin: 36px 0;
  border: 1px solid #979797;
  max-width: 550px;
  width: 100%;
  overflow: hidden;
  padding: 4px; }
.resourcepage .searcharea-searchbox--input {
  border: 0 !important;
  padding: 2px;
  margin: 0;
  height: 48px;
  max-width: 453px;
  width: calc(100% - 83px); }
.resourcepage .searcharea-searchbox--button {
  max-width: 83px;
  float: right;
  height: 48px;
  background-color: #F2F0E7;
  padding: 0 14px; }
.resourcepage .searcharea-wrapper {
  background-color: #F8F8F8;
  padding: 30px 0; }
.resourcepage .searchresult-area {
  display: none; }
.resourcepage .searcharea {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 15px; }
.resourcepage .searcharea-results-summary {
  margin-top: -20px;
  margin-bottom: 30px; }
  .resourcepage .searcharea-results-summary .search-term {
    font-weight: 600; }
.resourcepage .sorters {
  margin: 15px 0 0; }
.resourcepage .sort-link {
  color: #FF7602;
  line-height: 30px;
  margin: 0 6px; }
  .resourcepage .sort-link .icon, .resourcepage .sort-link .collapsed-container__heading::after,
  .resourcepage .sort-link .some__icon::after, .resourcepage .sort-link .tags:before, .resourcepage .sort-link .article-top-image figcaption::before, .article-top-image .resourcepage .sort-link figcaption::before, .resourcepage .sort-link .article-wide-image figcaption::before, .article-wide-image .resourcepage .sort-link figcaption::before, .resourcepage .sort-link .html blockquote::before, .html .resourcepage .sort-link blockquote::before, .resourcepage .sort-link .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .resourcepage .sort-link .dropdown-title:after, .resourcepage .sort-link .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .resourcepage .sort-link span::before, .resourcepage .sort-link .page-header__section-column .btn-open-menu::before, .page-header__section-column .resourcepage .sort-link .btn-open-menu::before, .resourcepage .sort-link .page-header__section-column .btn-menu-search::before, .page-header__section-column .resourcepage .sort-link .btn-menu-search::before, .resourcepage .sort-link .nrc .carousel__next a, .nrc .carousel__next .resourcepage .sort-link a,
  .resourcepage .sort-link .nrc .carousel__previous a,
  .nrc .carousel__previous .resourcepage .sort-link a, .resourcepage .sort-link .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .resourcepage .sort-link a,
  .resourcepage .sort-link .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .resourcepage .sort-link a, .resourcepage .sort-link .validation-summary-errors:before, .resourcepage .sort-link .form-error:before {
    text-decoration: none;
    display: none;
    padding: 0 6px; }
  .resourcepage .sort-link.active .icon, .resourcepage .sort-link.active .collapsed-container__heading::after,
  .resourcepage .sort-link.active .some__icon::after, .resourcepage .sort-link.active .tags:before, .resourcepage .sort-link.active .article-top-image figcaption::before, .article-top-image .resourcepage .sort-link.active figcaption::before, .resourcepage .sort-link.active .article-wide-image figcaption::before, .article-wide-image .resourcepage .sort-link.active figcaption::before, .resourcepage .sort-link.active .html blockquote::before, .html .resourcepage .sort-link.active blockquote::before, .resourcepage .sort-link.active .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .resourcepage .sort-link.active .dropdown-title:after, .resourcepage .sort-link.active .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .resourcepage .sort-link.active span::before, .resourcepage .sort-link.active .page-header__section-column .btn-open-menu::before, .page-header__section-column .resourcepage .sort-link.active .btn-open-menu::before, .resourcepage .sort-link.active .page-header__section-column .btn-menu-search::before, .page-header__section-column .resourcepage .sort-link.active .btn-menu-search::before, .resourcepage .sort-link.active .nrc .carousel__next a, .nrc .carousel__next .resourcepage .sort-link.active a,
  .resourcepage .sort-link.active .nrc .carousel__previous a,
  .nrc .carousel__previous .resourcepage .sort-link.active a, .resourcepage .sort-link.active .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .resourcepage .sort-link.active a,
  .resourcepage .sort-link.active .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .resourcepage .sort-link.active a, .resourcepage .sort-link.active .validation-summary-errors:before, .resourcepage .sort-link.active .form-error:before {
    display: inline-block; }
  .resourcepage .sort-link.descending .icon, .resourcepage .sort-link.descending .collapsed-container__heading::after,
  .resourcepage .sort-link.descending .some__icon::after, .resourcepage .sort-link.descending .tags:before, .resourcepage .sort-link.descending .article-top-image figcaption::before, .article-top-image .resourcepage .sort-link.descending figcaption::before, .resourcepage .sort-link.descending .article-wide-image figcaption::before, .article-wide-image .resourcepage .sort-link.descending figcaption::before, .resourcepage .sort-link.descending .html blockquote::before, .html .resourcepage .sort-link.descending blockquote::before, .resourcepage .sort-link.descending .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .resourcepage .sort-link.descending .dropdown-title:after, .resourcepage .sort-link.descending .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .resourcepage .sort-link.descending span::before, .resourcepage .sort-link.descending .page-header__section-column .btn-open-menu::before, .page-header__section-column .resourcepage .sort-link.descending .btn-open-menu::before, .resourcepage .sort-link.descending .page-header__section-column .btn-menu-search::before, .page-header__section-column .resourcepage .sort-link.descending .btn-menu-search::before, .resourcepage .sort-link.descending .nrc .carousel__next a, .nrc .carousel__next .resourcepage .sort-link.descending a,
  .resourcepage .sort-link.descending .nrc .carousel__previous a,
  .nrc .carousel__previous .resourcepage .sort-link.descending a, .resourcepage .sort-link.descending .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .resourcepage .sort-link.descending a,
  .resourcepage .sort-link.descending .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .resourcepage .sort-link.descending a, .resourcepage .sort-link.descending .validation-summary-errors:before, .resourcepage .sort-link.descending .form-error:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
.resourcepage .filter-filters {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  @media all and (max-width: 768px) {
    .resourcepage .filter-filters {
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .resourcepage .filter-filters .filter-filters--columnwrapper {
        margin-bottom: 5px;
        padding: 0; } }
.resourcepage .filter-filters--columnwrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  width: auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0 10px 0 0; }
.resourcepage .filter-selectedtags {
  margin: 10px 0; }
.resourcepage .selected-tag {
  background-color: #D5CDBF;
  display: inline-block;
  padding: 4px 4px 4px 17px;
  margin-right: 15px;
  margin-bottom: 15px; }
.resourcepage .selected-tag--close::after {
  font-family: 'iconFont';
  font-weight: 300;
  content: '\53';
  cursor: pointer;
  margin-left: 60px;
  margin-right: 10px;
  vertical-align: bottom; }
.resourcepage .filter-text {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  color: #7F6C5C; }
.resourcepage .reset-text {
  line-height: 50px;
  font-weight: 300;
  font-size: 16px;
  text-decoration: underline;
  color: #4A4A4A;
  cursor: pointer; }
.resourcepage .content-area {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box; }
  .resourcepage .content-area .categories {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .resourcepage .content-area .category {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    width: 325px;
    -webkit-flex: 0 1 325px;
    -ms-flex: 0 1 325px;
    flex: 0 1 325px;
    padding: 15px; }
    .resourcepage .content-area .category.Orange .category--header .category--content {
      color: #ffffff;
      background-color: rgba(255, 118, 2, 0.8); }
    .resourcepage .content-area .category.Orange .category--header:hover .category--overlay {
      background-color: rgba(255, 118, 2, 0.6); }
    .resourcepage .content-area .category.DarkGray .category--header .category--content {
      color: #ffffff;
      background-color: rgba(97, 97, 97, 0.8); }
    .resourcepage .content-area .category.DarkGray .category--header:hover .category--overlay {
      background-color: rgba(97, 97, 97, 0.6); }
    .resourcepage .content-area .category.Turquoise .category--header .category--content {
      color: #ffffff;
      background-color: rgba(0, 148, 179, 0.8); }
    .resourcepage .content-area .category.Turquoise .category--header:hover .category--overlay {
      background-color: rgba(0, 148, 179, 0.6); }
    .resourcepage .content-area .category.Yellow .category--header .category--content {
      color: #ffffff;
      background-color: rgba(253, 200, 47, 0.8); }
    .resourcepage .content-area .category.Yellow .category--header:hover .category--overlay {
      background-color: rgba(253, 200, 47, 0.6); }
    .resourcepage .content-area .category.Black .category--header .category--content {
      color: #ffffff;
      background-color: rgba(0, 0, 0, 0.8); }
    .resourcepage .content-area .category.Black .category--header:hover .category--overlay {
      background-color: rgba(0, 0, 0, 0.6); }
    .resourcepage .content-area .category .category--header {
      cursor: pointer;
      height: 232px;
      background-repeat: no-repeat;
      position: relative; }
      .resourcepage .content-area .category .category--header .category--overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.56); }
      .resourcepage .content-area .category .category--header .category--content {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        background-color: rgba(230, 230, 230, 0.8);
        color: #000;
        text-align: center; }
        .resourcepage .content-area .category .category--header .category--content .category--title {
          text-transform: uppercase;
          padding: 13px 0;
          font-size: 28px;
          line-height: 30px;
          font-weight: 400; }
      .resourcepage .content-area .category .category--header .category--image img {
        height: 232px; }
      .resourcepage .content-area .category .category--header:hover .category--overlay {
        background-color: rgba(230, 230, 230, 0.6); }
      .resourcepage .content-area .category .category--header:hover .category--content {
        background-color: transparent; }
      .resourcepage .content-area .category .category--header:hover .category--text {
        display: block; }
      .resourcepage .content-area .category .category--header .category--text {
        display: none; }
  .resourcepage .content-area .featured-category--contentlist h4 {
    margin-top: 17px;
    font-size: 15px;
    line-height: 25px;
    color: #7F6C5C;
    font-weight: 500;
    text-transform: uppercase; }
  .resourcepage .content-area .featured-category--contentlist > ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .resourcepage .content-area .featured-category--contentlist > ul > li {
      margin-bottom: 24px; }
    .resourcepage .content-area .featured-category--contentlist > ul a {
      color: #000;
      text-decoration: none; }
      .resourcepage .content-area .featured-category--contentlist > ul a:hover {
        text-decoration: underline; }
    .resourcepage .content-area .featured-category--contentlist > ul .content-title {
      font-size: 20px;
      line-height: 25px; }
    .resourcepage .content-area .featured-category--contentlist > ul .content-date {
      white-space: nowrap;
      font-size: 15px;
      font-weight: 300;
      color: #939393; }
.resourcepage .searchresults {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px; }
.resourcepage .searchresult-item {
  overflow: hidden;
  border-bottom: 1px solid #F2F0E7;
  padding: 15px 0; }
  .resourcepage .searchresult-item .document-type {
    margin: 0 0 5px 140px; }
    @media all and (max-width: 1023px) {
      .resourcepage .searchresult-item .document-type {
        margin: 0 0 5px 0; } }
    .resourcepage .searchresult-item .document-type .document-type-text {
      display: inline-block;
      padding: 3px 5px;
      text-decoration: none;
      color: #000000; }
      .resourcepage .searchresult-item .document-type .document-type-text.Orange {
        color: #ffffff;
        background-color: rgba(255, 118, 2, 0.8); }
      .resourcepage .searchresult-item .document-type .document-type-text.DarkGray {
        color: #ffffff;
        background-color: rgba(97, 97, 97, 0.8); }
      .resourcepage .searchresult-item .document-type .document-type-text.Turquoise {
        color: #ffffff;
        background-color: rgba(0, 148, 179, 0.8); }
      .resourcepage .searchresult-item .document-type .document-type-text.Yellow {
        color: #ffffff;
        background-color: rgba(253, 200, 47, 0.8); }
      .resourcepage .searchresult-item .document-type .document-type-text.Black {
        color: #ffffff;
        background-color: rgba(0, 0, 0, 0.8); }
  .resourcepage .searchresult-item a:hover h2 {
    text-decoration: underline; }
  .resourcepage .searchresult-item h2 {
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
    margin: 0;
    max-width: 788px;
    display: inline-block;
    color: #000; }
  .resourcepage .searchresult-item .display-date {
    white-space: nowrap;
    display: inline-block;
    font-size: 15px;
    color: #939393;
    margin-left: 15px;
    font-weight: 300; }
  .resourcepage .searchresult-item .searchresult-item--tags {
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    color: #FF7602; }
    .resourcepage .searchresult-item .searchresult-item--tags span {
      display: inline-block;
      padding: 0 5px; }
    .resourcepage .searchresult-item .searchresult-item--tags a {
      color: #FF7602;
      display: inline-block;
      padding: 0 5px;
      text-decoration: none; }
  .resourcepage .searchresult-item .searchresult-item--description {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px;
    max-width: 665px; }
  .resourcepage .searchresult-item .searchresult-item--image {
    float: left;
    margin-right: 20px;
    width: 120px;
    min-height: 1px; }
    @media all and (max-width: 1023px) {
      .resourcepage .searchresult-item .searchresult-item--image {
        float: none;
        width: 100%;
        margin-bottom: 5px; }
        .resourcepage .searchresult-item .searchresult-item--image img {
          max-height: 120px; } }
  .resourcepage .searchresult-item .searchresult-item--data {
    float: left; }
.resourcepage .searchresult-load-more {
  margin: 30px 0;
  text-align: center; }
  .resourcepage .searchresult-load-more .searchresult-load-more--button {
    height: 48px;
    background-color: #F2F0E7;
    padding: 0 14px;
    border: 1px solid #979797; }

.publication-page {
  position: relative;
  max-width: 1400px;
  margin: 100px auto; }
  .publication-page .page-wrapper:after, .publication-page .logoupload:after, .publication-page .EPiServerForms:after {
    content: "";
    display: block;
    clear: both; }
  .publication-page .publication-type {
    background-color: #000;
    color: #FFF;
    text-transform: uppercase;
    display: inline-block;
    padding: 3px 8px; }
  @media all and (min-width: 769px) {
    .publication-page aside.publication-image {
      display: block;
      position: absolute;
      width: 100%;
      max-width: 300px;
      left: 0;
      top: 0;
      margin: 0 auto;
      height: 100%; } }
  @media all and (min-width: 769px) {
    .publication-page aside.publication-image .article-top-image {
      margin: 0 0;
      width: 300px; } }
  .publication-page aside.publication-image .article-top-image img {
    margin: 0 auto;
    max-width: 75%; }
    @media all and (min-width: 769px) {
      .publication-page aside.publication-image .article-top-image img {
        display: inline-block;
        margin: 0 1em;
        max-width: 100%; } }
  @media all and (min-width: 769px) {
    .publication-page aside.publication-image .article-top-image figcaption {
      position: initial;
      width: 300px; } }
  @media all and (min-width: 769px) {
    .publication-page .content-area {
      padding-left: 350px; } }
  .publication-page .content-area a {
    color: #BF5901; }
  @media all and (min-width: 769px) {
    .publication-page .content-area .meta-info .tags {
      display: inline-block; }
    .publication-page .content-area .meta-info .some {
      display: inline-block;
      float: right; } }
  .publication-page .content-area .meta-info .meta-info__ingress {
    margin: 20px auto; }
  .publication-page .content-area .article-top-image .article-top-image__wrapper {
    max-width: 850px; }
  @media all and (min-width: 1401px) {
    .publication-page .content-area .article-wide-image .article-top-image__figcaption {
      position: absolute;
      bottom: -230px;
      right: 0;
      margin: 0; } }

.feature-article.Blue figcaption:before {
  color: #9dcbe9;
  border-color: #9dcbe9; }
.feature-article.Blue figcaption a {
  color: #9dcbe9; }
.feature-article.Blue .content-wrapper {
  padding: 0 20px; }
  .feature-article.Blue .content-wrapper .meta-info__author {
    border-color: #9dcbe9; }
    .feature-article.Blue .content-wrapper .meta-info__author .meta-info__author-history i {
      color: #9dcbe9;
      border-color: #9dcbe9; }
  .feature-article.Blue .content-wrapper .tags:before {
    color: #9dcbe9;
    border-color: #9dcbe9; }
  .feature-article.Blue .content-wrapper .tags a {
    color: #9dcbe9; }
.feature-article.Orange figcaption:before {
  color: #fca746;
  border-color: #fca746; }
.feature-article.Orange figcaption a {
  color: #fca746; }
.feature-article.Orange .content-wrapper {
  padding: 0 20px; }
  .feature-article.Orange .content-wrapper .meta-info__author {
    border-color: #fca746; }
    .feature-article.Orange .content-wrapper .meta-info__author .meta-info__author-history i {
      color: #fca746;
      border-color: #fca746; }
  .feature-article.Orange .content-wrapper .tags:before {
    color: #fca746;
    border-color: #fca746; }
  .feature-article.Orange .content-wrapper .tags a {
    color: #fca746; }
.feature-article.Yellow figcaption:before {
  color: #f9e19e;
  border-color: #f9e19e; }
.feature-article.Yellow figcaption a {
  color: #f9e19e; }
.feature-article.Yellow .content-wrapper {
  padding: 0 20px; }
  .feature-article.Yellow .content-wrapper .meta-info__author {
    border-color: #f9e19e; }
    .feature-article.Yellow .content-wrapper .meta-info__author .meta-info__author-history i {
      color: #f9e19e;
      border-color: #f9e19e; }
  .feature-article.Yellow .content-wrapper .tags:before {
    color: #f9e19e;
    border-color: #f9e19e; }
  .feature-article.Yellow .content-wrapper .tags a {
    color: #f9e19e; }
.feature-article .tabletHide {
  display: none; }
.feature-article .article-top-title {
  padding: 17px 13px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  overflow: hidden; }
  .feature-article .article-top-title .title .teaser-title {
    display: inline-block;
    padding: 0 6px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.85); }
  .feature-article .article-top-title .title h1 {
    display: inline;
    padding: 0 6px;
    margin-bottom: 0;
    font-size: 36px;
    line-height: 43px;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.85);
    word-wrap: break-word;
    -webkit-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone; }
.feature-article .meta-info__ingress {
  margin: 30px auto; }
.feature-article .main-body__container .main-body__text:first-letter {
  float: left;
  font-size: 90px;
  line-height: 60px;
  padding-top: 10px;
  padding-right: 8px;
  padding-left: 3px; }
.feature-article figcaption {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #9B9B9B;
  font-size: 1em; }
.feature-article .html {
  margin: 0 auto 55px auto; }
.feature-article .htmlMediaBlock {
  margin: 0 auto 55px auto; }
  .feature-article .htmlMediaBlock.Left {
    max-width: 75%; }
    @media all and (max-width: 1024px) {
      .feature-article .htmlMediaBlock.Left {
        max-width: 100%; } }
  .feature-article .htmlMediaBlock.Right {
    padding-left: 22%;
    max-width: 89%; }
    @media all and (max-width: 1024px) {
      .feature-article .htmlMediaBlock.Right {
        padding: 0 10px;
        max-width: 100%; } }
  .feature-article .htmlMediaBlock .html {
    margin: 0 auto; }
@media all and (min-width: 1025px) {
  .feature-article .tabletHide {
    display: block; }
  .feature-article .paralexContainer {
    overflow: hidden; }
  .feature-article .top-banner-area .article-top-image__wrapper {
    position: relative;
    max-width: none; }
    .feature-article .top-banner-area .article-top-image__wrapper .top-image-area {
      min-height: 400px; }
    .feature-article .top-banner-area .article-top-image__wrapper .mobile-image {
      display: none; }
    .feature-article .top-banner-area .article-top-image__wrapper .article-top-image img {
      max-height: 957px;
      margin: 0 auto;
      width: 100%; }
    .feature-article .top-banner-area .article-top-image__wrapper .article-top-image.wide {
      max-width: none; }
    .feature-article .top-banner-area .article-top-image__wrapper .article-top-title {
      position: absolute;
      margin: 0 auto;
      left: 0;
      right: 0;
      bottom: 50px;
      z-index: 10;
      max-width: 1400px;
      text-align: center; }
      .feature-article .top-banner-area .article-top-image__wrapper .article-top-title .title {
        max-width: 70%;
        display: inline-block;
        text-align: left;
        z-index: 10; }
        .feature-article .top-banner-area .article-top-image__wrapper .article-top-title .title .teaser-title {
          display: inline-block;
          padding: 0 20px;
          margin: 0 0 10px 0; }
        .feature-article .top-banner-area .article-top-image__wrapper .article-top-title .title h1 {
          display: inline;
          font-size: 82px;
          line-height: 99px;
          padding: 0 20px; }
  .feature-article .content-wrapper {
    position: relative;
    margin: 55px auto;
    max-width: 1400px; }
    .feature-article .content-wrapper .asideLeft {
      display: block;
      position: absolute;
      width: 100%;
      max-width: 25%;
      left: 0;
      top: 0;
      padding-left: 120px;
      margin: 0 auto;
      height: 100%; }
      .feature-article .content-wrapper .asideLeft .meta-info__author {
        border: none; }
        .feature-article .content-wrapper .asideLeft .meta-info__author .meta-info__author-history {
          width: 100%; }
          .feature-article .content-wrapper .asideLeft .meta-info__author .meta-info__author-history i {
            border-bottom: 1px solid;
            width: 50px;
            padding-bottom: 10px; }
          .feature-article .content-wrapper .asideLeft .meta-info__author .meta-info__author-history span {
            display: block; }
      .feature-article .content-wrapper .asideLeft .tags {
        margin-top: 20px;
        width: 100%; }
        .feature-article .content-wrapper .asideLeft .tags:before {
          min-width: 50px;
          padding-bottom: 10px;
          border-bottom: 1px solid; }
        .feature-article .content-wrapper .asideLeft .tags a {
          padding-left: 0;
          margin-left: 0;
          display: block; }
    .feature-article .content-wrapper .asideRight {
      display: block;
      position: absolute;
      width: 100%;
      max-width: 25%;
      right: 20px;
      top: 0;
      margin: 0 auto;
      height: 100%; }
      .feature-article .content-wrapper .asideRight figcaption {
        position: relative; }
    .feature-article .content-wrapper .content-area {
      margin: 0 auto;
      max-width: 45%; }
      .feature-article .content-wrapper .content-area .meta-info__ingress {
        max-width: 100%;
        font-size: 20px;
        line-height: 36px;
        margin-bottom: 30px; }
      .feature-article .content-wrapper .content-area .main-body__container {
        max-width: 100%; }
        .feature-article .content-wrapper .content-area .main-body__container .main-body__text {
          font-size: 18px;
          line-height: 30px; }
  .feature-article .content-block-area .page-wrapper, .feature-article .content-block-area .logoupload, .feature-article .content-block-area .EPiServerForms {
    padding: 0 20px; }
    .feature-article .content-block-area .page-wrapper .richtext, .feature-article .content-block-area .logoupload .richtext, .feature-article .content-block-area .EPiServerForms .richtext {
      max-width: 45%; }
  .feature-article .content-block-area figure {
    margin: 0 auto 55px auto; } }

.core-activity-article {
  position: relative;
  max-width: 1400px; }
  @media all and (min-width: 1025px) {
    .core-activity-article {
      margin: 50px auto; } }
  .core-activity-article.Orange .publication-image .article-top-image__wrapper img {
    border-bottom: 25px solid #FF7602; }
  .core-activity-article.Orange .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper {
    background-color: #FF7602; }
  .core-activity-article .richtext {
    max-width: 850px;
    width: 100%;
    margin-left: 0 !important; }
  .core-activity-article .publication-type {
    background-color: #000;
    color: #FFF;
    text-transform: uppercase;
    display: inline-block;
    padding: 3px 8px; }
  .core-activity-article .publication-image {
    position: relative;
    margin-bottom: 0; }
    @media all and (min-width: 769px) {
      .core-activity-article .publication-image {
        display: block;
        width: 100%;
        max-width: 1400px;
        left: 0;
        top: 0;
        margin: 0 auto;
        height: 100%; } }
    @media all and (min-width: 1025px) {
      .core-activity-article .publication-image {
        padding-left: 100px; } }
    @media all and (min-width: 1400px) {
      .core-activity-article .publication-image {
        margin-bottom: 100px;
        padding-left: 100px; } }
    .core-activity-article .publication-image.wide {
      padding-left: 0;
      max-width: none; }
      @media all and (min-width: 1025px) {
        .core-activity-article .publication-image.wide .page-wrapper, .core-activity-article .publication-image.wide .logoupload, .core-activity-article .publication-image.wide .EPiServerForms {
          padding-left: 100px; } }
    .core-activity-article .publication-image .article-top-image .article-top-image__wrapper {
      margin-bottom: 32px; }
      @media all and (max-width: 1024px) {
        .core-activity-article .publication-image .article-top-image .article-top-image__wrapper {
          margin-bottom: 20px; } }
      @media all and (min-width: 768px) {
        .core-activity-article .publication-image .article-top-image .article-top-image__wrapper {
          max-width: 1100px; } }
    .core-activity-article .publication-image .core-activity-icon-area {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -70px;
      margin: auto;
      text-align: center; }
      @media all and (max-width: 1024px) {
        .core-activity-article .publication-image .core-activity-icon-area {
          bottom: -57px; } }
      @media all and (max-width: 600px) {
        .core-activity-article .publication-image .core-activity-icon-area {
          bottom: -40px; } }
      .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper {
        display: inline-block;
        height: 125px;
        width: 125px;
        border-radius: 62.5px;
        text-align: center; }
        @media all and (max-width: 1024px) {
          .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper {
            height: 95px;
            width: 95px; } }
        @media all and (max-width: 600px) {
          .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper {
            height: 65px;
            width: 65px; } }
        .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper svg {
          position: relative;
          display: block;
          margin: 20px auto;
          width: 83.3333333333px;
          height: 83.3333333333px;
          border: none;
          fill: #FFFFFF; }
          @media all and (max-width: 1024px) {
            .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper svg {
              height: 53.3333333333px;
              width: 53.3333333333px; } }
          @media all and (max-width: 600px) {
            .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper svg {
              margin: 15px auto;
              height: 38.3333333333px;
              width: 38.3333333333px; } }
          .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper svg g, .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper svg path, .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .icon-image-wrapper svg polygon {
            fill: #FFFFFF; }
      .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .core-activity-icon-text {
        position: relative;
        margin: 0 auto;
        display: block;
        text-transform: uppercase;
        font-size: 13px;
        padding: 0 10px;
        color: #000000;
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-style: normal; }
        @media all and (min-width: 1025px) {
          .core-activity-article .publication-image .core-activity-icon-area .core-activity-icon-wrapper .core-activity-icon-text {
            font-size: 18px; } }
  .core-activity-article .content-area .page-wrapper:after, .core-activity-article .content-area .logoupload:after, .core-activity-article .content-area .EPiServerForms:after {
    content: "";
    display: block;
    clear: both; }
  @media all and (min-width: 1025px) {
    .core-activity-article .content-area .page-wrapper, .core-activity-article .content-area .logoupload, .core-activity-article .content-area .EPiServerForms {
      padding-left: 100px; } }
  @media all and (min-width: 769px) {
    .core-activity-article .content-area .page-wrapper, .core-activity-article .content-area .logoupload, .core-activity-article .content-area .EPiServerForms {
      margin-right: 100px; } }
  @media all and (min-width: 768px) {
    .core-activity-article .content-area .article-top-image .article-top-image__wrapper {
      max-width: 1100px; } }
  @media all and (min-width: 769px) {
    .core-activity-article .content-area .meta-info .tags {
      display: inline-block; }
    .core-activity-article .content-area .meta-info .some {
      display: inline-block;
      float: right; } }
  .core-activity-article .content-area .meta-info .meta-info__ingress {
    margin: 20px auto; }

.vacanciespage .searcharea-wrapper {
  background-color: #F8F8F8;
  padding: 30px 0; }
.vacanciespage .searcharea {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 15px; }
.vacanciespage .filter-filters {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  @media all and (max-width: 768px) {
    .vacanciespage .filter-filters {
      -webkit-box-direction: normal;
      -moz-box-direction: normal;
      -webkit-box-orient: vertical;
      -moz-box-orient: vertical;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .vacanciespage .filter-filters .filter-filters--columnwrapper {
        margin-bottom: 5px;
        padding: 0; } }
  @media all and (min-width: 769px) {
    .vacanciespage .filter-filters.dropdowns .filter-filters--columnwrapper {
      width: 50%; } }
.vacanciespage .filter-filters--columnwrapper {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  width: auto;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 0 10px 0 0; }
.vacanciespage .filter-text {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  color: #7F6C5C; }
.vacanciespage .filter-button {
  float: left;
  margin: 10px 10px 0 0;
  max-width: 260px;
  background-color: #F2F0E7;
  border: 1px solid #D5CDBF;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0 10px;
  vertical-align: middle;
  text-decoration: none;
  color: #000; }
  .vacanciespage .filter-button.reset-filters {
    background-color: #FF7602;
    border-color: #FFA457;
    float: right; }
    .vacanciespage .filter-button.reset-filters:hover {
      background-color: #ff8926; }
  .vacanciespage .filter-button:hover {
    opacity: 0.5;
    background-color: #e6e6e6; }
.vacanciespage .filter-toggle-button.active {
  opacity: 0.5;
  background-color: #e6e6e6; }
.vacanciespage .sort-link {
  color: #000;
  line-height: 30px;
  margin: 0 6px; }
  .vacanciespage .sort-link .icon, .vacanciespage .sort-link .collapsed-container__heading::after,
  .vacanciespage .sort-link .some__icon::after, .vacanciespage .sort-link .tags:before, .vacanciespage .sort-link .article-top-image figcaption::before, .article-top-image .vacanciespage .sort-link figcaption::before, .vacanciespage .sort-link .article-wide-image figcaption::before, .article-wide-image .vacanciespage .sort-link figcaption::before, .vacanciespage .sort-link .html blockquote::before, .html .vacanciespage .sort-link blockquote::before, .vacanciespage .sort-link .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .vacanciespage .sort-link .dropdown-title:after, .vacanciespage .sort-link .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .vacanciespage .sort-link span::before, .vacanciespage .sort-link .page-header__section-column .btn-open-menu::before, .page-header__section-column .vacanciespage .sort-link .btn-open-menu::before, .vacanciespage .sort-link .page-header__section-column .btn-menu-search::before, .page-header__section-column .vacanciespage .sort-link .btn-menu-search::before, .vacanciespage .sort-link .nrc .carousel__next a, .nrc .carousel__next .vacanciespage .sort-link a,
  .vacanciespage .sort-link .nrc .carousel__previous a,
  .nrc .carousel__previous .vacanciespage .sort-link a, .vacanciespage .sort-link .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .vacanciespage .sort-link a,
  .vacanciespage .sort-link .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .vacanciespage .sort-link a, .vacanciespage .sort-link .validation-summary-errors:before, .vacanciespage .sort-link .form-error:before {
    text-decoration: none;
    display: none;
    padding: 0 6px; }
  .vacanciespage .sort-link.active .icon, .vacanciespage .sort-link.active .collapsed-container__heading::after,
  .vacanciespage .sort-link.active .some__icon::after, .vacanciespage .sort-link.active .tags:before, .vacanciespage .sort-link.active .article-top-image figcaption::before, .article-top-image .vacanciespage .sort-link.active figcaption::before, .vacanciespage .sort-link.active .article-wide-image figcaption::before, .article-wide-image .vacanciespage .sort-link.active figcaption::before, .vacanciespage .sort-link.active .html blockquote::before, .html .vacanciespage .sort-link.active blockquote::before, .vacanciespage .sort-link.active .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .vacanciespage .sort-link.active .dropdown-title:after, .vacanciespage .sort-link.active .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .vacanciespage .sort-link.active span::before, .vacanciespage .sort-link.active .page-header__section-column .btn-open-menu::before, .page-header__section-column .vacanciespage .sort-link.active .btn-open-menu::before, .vacanciespage .sort-link.active .page-header__section-column .btn-menu-search::before, .page-header__section-column .vacanciespage .sort-link.active .btn-menu-search::before, .vacanciespage .sort-link.active .nrc .carousel__next a, .nrc .carousel__next .vacanciespage .sort-link.active a,
  .vacanciespage .sort-link.active .nrc .carousel__previous a,
  .nrc .carousel__previous .vacanciespage .sort-link.active a, .vacanciespage .sort-link.active .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .vacanciespage .sort-link.active a,
  .vacanciespage .sort-link.active .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .vacanciespage .sort-link.active a, .vacanciespage .sort-link.active .validation-summary-errors:before, .vacanciespage .sort-link.active .form-error:before {
    display: inline-block; }
  .vacanciespage .sort-link.descending .icon, .vacanciespage .sort-link.descending .collapsed-container__heading::after,
  .vacanciespage .sort-link.descending .some__icon::after, .vacanciespage .sort-link.descending .tags:before, .vacanciespage .sort-link.descending .article-top-image figcaption::before, .article-top-image .vacanciespage .sort-link.descending figcaption::before, .vacanciespage .sort-link.descending .article-wide-image figcaption::before, .article-wide-image .vacanciespage .sort-link.descending figcaption::before, .vacanciespage .sort-link.descending .html blockquote::before, .html .vacanciespage .sort-link.descending blockquote::before, .vacanciespage .sort-link.descending .dropdown-wrapper .dropdown-title:after, .dropdown-wrapper .vacanciespage .sort-link.descending .dropdown-title:after, .vacanciespage .sort-link.descending .product-card .status-point .status-point__bullet span::before, .product-card .status-point .status-point__bullet .vacanciespage .sort-link.descending span::before, .vacanciespage .sort-link.descending .page-header__section-column .btn-open-menu::before, .page-header__section-column .vacanciespage .sort-link.descending .btn-open-menu::before, .vacanciespage .sort-link.descending .page-header__section-column .btn-menu-search::before, .page-header__section-column .vacanciespage .sort-link.descending .btn-menu-search::before, .vacanciespage .sort-link.descending .nrc .carousel__next a, .nrc .carousel__next .vacanciespage .sort-link.descending a,
  .vacanciespage .sort-link.descending .nrc .carousel__previous a,
  .nrc .carousel__previous .vacanciespage .sort-link.descending a, .vacanciespage .sort-link.descending .flyktninghjelpen .carousel__next a, .flyktninghjelpen .carousel__next .vacanciespage .sort-link.descending a,
  .vacanciespage .sort-link.descending .flyktninghjelpen .carousel__previous a,
  .flyktninghjelpen .carousel__previous .vacanciespage .sort-link.descending a, .vacanciespage .sort-link.descending .validation-summary-errors:before, .vacanciespage .sort-link.descending .form-error:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
.vacanciespage .loader {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  font-weight: 300;
  font-size: 16px; }
.vacanciespage .content-area {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box; }
.vacanciespage .vacancies {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px; }
.vacanciespage .vacancy {
  overflow: hidden;
  border-bottom: 1px solid #F2F0E7;
  padding: 15px 0; }
  .vacanciespage .vacancy a:hover h2 {
    text-decoration: underline; }
  .vacanciespage .vacancy h2 {
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
    margin: 0;
    max-width: 788px;
    display: inline-block;
    color: #000; }
  .vacanciespage .vacancy .display-date {
    white-space: nowrap;
    display: inline-block;
    font-size: 15px;
    color: #939393;
    margin-left: 15px;
    font-weight: 300; }
  .vacanciespage .vacancy .info {
    font-weight: 300;
    line-height: 30px;
    font-size: 16px; }
  .vacanciespage .vacancy .description {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px; }

.emergency-page .richtext {
  max-width: 850px;
  width: 100%;
  margin-left: 0 !important; }

#mypage {
  max-width: 1440px;
  margin: 0 auto;
  font-size: 16px; }
  #mypage a {
    color: #934114; }
  #mypage p {
    margin: 0 0 30px 0; }
  #mypage h3 {
    font-size: 20px;
    line-height: 24px; }
  #mypage input[type=number]::-webkit-inner-spin-button,
  #mypage input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  #mypage .mypage__header {
    padding: 18px;
    border-bottom: 3px solid #EB661C; }
    #mypage .mypage__header .mypage__logo {
      width: 254px;
      display: block; }
  #mypage .mypage__topImage {
    position: relative; }
    #mypage .mypage__topImage .mypage__topImage__topText {
      position: absolute;
      max-width: 900px;
      padding: 30px;
      color: #FFFFFF;
      width: calc(100% - 40px);
      background-color: rgba(0, 0, 0, 0.81);
      bottom: 0;
      left: 50%;
      text-align: center;
      transform: translateX(-50%); }
      #mypage .mypage__topImage .mypage__topImage__topText span {
        font-size: 24px;
        font-weight: 600;
        border-bottom: 2px solid #EB661C; }
  #mypage .mypage__wrapper {
    max-width: 1040px;
    padding: 45px 0;
    margin: 0 auto; }
    #mypage .mypage__wrapper .intro__text {
      margin: 0 auto 45px;
      max-width: 560px;
      font-size: 16px;
      padding: 0 20px; }
    #mypage .mypage__wrapper .login__form {
      position: relative; }
      #mypage .mypage__wrapper .login__form .form__content {
        max-width: 520px;
        margin: 0 auto; }
        #mypage .mypage__wrapper .login__form .form__content label {
          display: block;
          font-weight: 600;
          margin-bottom: 10px; }
        #mypage .mypage__wrapper .login__form .form__content input[type=text], #mypage .mypage__wrapper .login__form .form__content input[type=email], #mypage .mypage__wrapper .login__form .form__content input[type=tel], #mypage .mypage__wrapper .login__form .form__content input[type=password], #mypage .mypage__wrapper .login__form .form__content input[type=number] {
          width: 100%;
          border: 1px solid #D1D1D1;
          background-color: #FFFFFF;
          margin-bottom: 20px;
          padding: 8px 6px; }
    #mypage .mypage__wrapper .form__content {
      background-color: #F0F0F0;
      border: 1px solid #EDEDED;
      min-height: 200px;
      padding: 25px; }
      #mypage .mypage__wrapper .form__content .validation-summary-errors {
        margin: 0;
        border: none;
        padding: 0;
        background-color: transparent !important;
        color: #D0021B; }
        #mypage .mypage__wrapper .form__content .validation-summary-errors ul {
          margin: 0;
          padding: 0; }
          #mypage .mypage__wrapper .form__content .validation-summary-errors ul li {
            margin-bottom: 20px; }
            #mypage .mypage__wrapper .form__content .validation-summary-errors ul li:last-child {
              margin-bottom: 0; }
        #mypage .mypage__wrapper .form__content .validation-summary-errors:before {
          content: none; }
    #mypage .mypage__wrapper .form-layout__buttons {
      text-align: center;
      margin-bottom: 30px; }
      #mypage .mypage__wrapper .form-layout__buttons .form__content--button {
        background-color: #FF7602;
        color: #000000;
        border: none;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        padding: 12px 45px;
        border-radius: 40px; }
    #mypage .mypage__wrapper #mypage__loggedin__model .modal__loader {
      z-index: 100; }
      #mypage .mypage__wrapper #mypage__loggedin__model .modal__loader .modal__content {
        position: fixed; }
    #mypage .mypage__wrapper #mypage__loggedin__model input[type=text], #mypage .mypage__wrapper #mypage__loggedin__model input[type=email], #mypage .mypage__wrapper #mypage__loggedin__model input[type=tel], #mypage .mypage__wrapper #mypage__loggedin__model input[type=tel] {
      width: calc(100% - 120px);
      line-height: 16px;
      color: #333333;
      border: 1px solid #D1D1D1;
      background-color: #FFFFFF;
      padding: 6px 9px; }
      #mypage .mypage__wrapper #mypage__loggedin__model input[type=text].invalid, #mypage .mypage__wrapper #mypage__loggedin__model input.invalid[type=email], #mypage .mypage__wrapper #mypage__loggedin__model input.invalid[type=tel], #mypage .mypage__wrapper #mypage__loggedin__model input[type=tel].invalid {
        border-color: #D0021B;
        border-width: 2px;
        padding: 5px 8px; }
      #mypage .mypage__wrapper #mypage__loggedin__model input[type=text]:disabled, #mypage .mypage__wrapper #mypage__loggedin__model input[type=email]:disabled, #mypage .mypage__wrapper #mypage__loggedin__model input[type=tel]:disabled, #mypage .mypage__wrapper #mypage__loggedin__model input[type=tel]:disabled {
        background-color: #ccc; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content {
      background-color: #F0F0F0;
      border: 1px solid #EDEDED;
      padding: 30px 0;
      margin-bottom: 30px; }
      #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content label {
        text-align: right;
        font-weight: bold;
        width: 115px;
        padding-right: 10px;
        color: #333333;
        display: inline-block; }
      #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content .mypage__content__wrapper {
        padding: 0 20px;
        max-width: 780px;
        margin: 0 auto; }
        #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content .mypage__content__wrapper .mypage__content__flex {
          margin: 0 -15px;
          display: flex;
          flex-flow: row wrap; }
          #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content .mypage__content__wrapper .mypage__content__flex > div {
            padding: 0 15px;
            margin-bottom: 15px; }
        #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content .mypage__content__wrapper .full {
          flex-basis: 100%; }
        #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content .mypage__content__wrapper .half {
          flex-basis: 50%; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__pnr {
      text-align: center; }
      #mypage .mypage__wrapper #mypage__loggedin__model .mypage__pnr b {
        margin-bottom: 15px;
        display: inline-block; }
      #mypage .mypage__wrapper #mypage__loggedin__model .mypage__pnr input {
        max-width: 150px; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__concents {
      margin-bottom: 50px;
      text-align: center; }
      #mypage .mypage__wrapper #mypage__loggedin__model .mypage__concents label {
        margin-right: 60px; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__custom__concents {
      margin: 0 auto 30px;
      padding: 0 20px;
      max-width: 666px; }
    #mypage .mypage__wrapper .mypage__save__wrapper {
      margin-top: 60px; }
    #mypage .mypage__wrapper .mypage__loggout {
      text-align: center;
      margin-bottom: 70px; }
      #mypage .mypage__wrapper .mypage__loggout span {
        color: #6D6D6D; }
    #mypage .mypage__wrapper .mypage__insight-module {
      background-color: #FFFFFF;
      padding: 30px 0;
      margin-bottom: 30px;
      border: 1px solid #D3D3D3;
      position: relative;
      padding-right: 20px;
      padding-left: 20px; }
      #mypage .mypage__wrapper .mypage__insight-module h3 {
        font-weight: bold; }
      #mypage .mypage__wrapper .mypage__insight-module .modal__loader {
        display: none; }
      #mypage .mypage__wrapper .mypage__insight-module .mypage__insight__text, #mypage .mypage__wrapper .mypage__insight-module .mypage__insight__response {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto; }
      #mypage .mypage__wrapper .mypage__insight-module .mypage__insight-module__button {
        text-align: center; }
        #mypage .mypage__wrapper .mypage__insight-module .mypage__insight-module__button button {
          border: 2px solid #EB661C;
          padding: 13px 35px;
          color: #000000;
          font-size: 16px;
          line-height: 20px;
          font-weight: bold;
          display: inline-block; }
  @media all and (max-width: 767px) {
    #mypage .mypage__topImage .mypage__topImage__topText {
      position: static;
      transform: none;
      width: 100%;
      background: #000000; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content label {
      display: block;
      text-align: left;
      width: 100%;
      margin-bottom: 5px; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content input[type=text], #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content input[type=email], #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content input[type=tel], #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content input[type=tel] {
      width: 100%; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__content .mypage__content__wrapper .half {
      flex-basis: 100%; }
    #mypage .mypage__wrapper #mypage__loggedin__model .mypage__concents label {
      display: block;
      margin: 0 auto 22px auto;
      max-width: 140px;
      text-align: left; } }

.pdf-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto; }
  .pdf-container .pdf-page-wrapper {
    position: relative;
    height: auto;
    padding: 75px 10px 25px; }
  .pdf-container .pdf-page-wrapper.last-page {
    padding: 75px 10px 0 10px; }
  .pdf-container .top-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px; }
    .pdf-container .top-container .left .title {
      color: #000000;
      font-size: 20px;
      font-weight: bold; }
    .pdf-container .top-container .left .address {
      font-size: 16px;
      opacity: 0.7; }
    .pdf-container .top-container .right {
      font-size: 28px; }
      .pdf-container .top-container .right .top-title {
        text-align: right;
        color: #000000; }
      .pdf-container .top-container .right .sub-title {
        font-weight: bold;
        color: #000000; }
  .pdf-container .line-separator {
    height: 2px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2); }
  .pdf-container .line-margin-bottom {
    margin-bottom: 25px; }
  .pdf-container .line-margin-top {
    margin-top: 50px; }
  .pdf-container .form-fields .form-field {
    margin-bottom: 20px; }
    .pdf-container .form-fields .form-field .label-and-field {
      max-width: 100%; }
  .pdf-container .form-fields .multiple-fields {
    display: flex;
    justify-content: space-between; }
    .pdf-container .form-fields .multiple-fields .label-and-field {
      max-width: 48%;
      flex: 0 0 48%; }
  .pdf-container .form-fields .label-and-field .text {
    font-weight: bold;
    margin-bottom: 5px; }
  .pdf-container .form-fields .input-border {
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 15px;
    min-height: 60px; }
  .pdf-container .mandate {
    font-size: 13px; }
    .pdf-container .mandate.mandate-margin-top {
      margin-top: 10px; }
    .pdf-container .mandate .text {
      opacity: 0.7; }
  .pdf-container .page-number {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500; }
  .pdf-container .description .top-title {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px; }
  .pdf-container .description .area {
    margin-bottom: 15px;
    font-size: 13px; }
    .pdf-container .description .area .text {
      opacity: 0.7; }

.pdf-container.deu .top-container, .pdf-container.en .top-container {
  margin-bottom: 50px;
  margin-top: 25px; }
  .pdf-container.deu .top-container .left .title, .pdf-container.en .top-container .left .title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px; }
.pdf-container.deu .form-fields.form-fields-columns, .pdf-container.en .form-fields.form-fields-columns {
  display: flex;
  justify-content: space-between; }
  .pdf-container.deu .form-fields.form-fields-columns .left, .pdf-container.deu .form-fields.form-fields-columns .right, .pdf-container.en .form-fields.form-fields-columns .left, .pdf-container.en .form-fields.form-fields-columns .right {
    flex: 0 0 48%; }
  .pdf-container.deu .form-fields.form-fields-columns .input-border.large-input, .pdf-container.en .form-fields.form-fields-columns .input-border.large-input {
    padding: 15px 15px 126px;
    min-height: 171px; }
.pdf-container.deu .mandate, .pdf-container.en .mandate {
  margin-bottom: 25px; }
.pdf-container.deu .short-info, .pdf-container.en .short-info {
  font-size: 13px;
  text-align: center;
  opacity: 0.3; }

/*# sourceMappingURL=main.css.map */
