@charset "UTF-8";
/**
 * SVG background image with fallback to PNG (for IE8)
 * with only one HTTP request
 * Note: Android 2.x browser will not show either the PNG or SVG image while using technique.
 *
 * @author Andreas Krohn
 * @usage .logo {
 *            @include svg-bg('logo');
 *        }
 */
/**
 * SVG background image with fallback to PNG
 * using modernizr SVG support detection
 * parse $selector using '&' to reference parent selector
 *
 * @author Andreas Krohn
 * @usage .logo {
 *            @include only-svg-supported('&', 'logo');
 *        }
 */
/*! normalize.css 2012-01-31T16:06 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
/* line 20, ../scss/includes/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
/* line 30, ../scss/includes/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */
/* line 40, ../scss/includes/_normalize.scss */
audio:not([controls]) {
  display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
/* line 49, ../scss/includes/_normalize.scss */
[hidden] {
  display: none;
}

/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
/* line 65, ../scss/includes/_normalize.scss */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
/* line 79, ../scss/includes/_normalize.scss */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */
/* line 87, ../scss/includes/_normalize.scss */
body {
  margin: 0;
}

/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
/* line 100, ../scss/includes/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
/* line 110, ../scss/includes/_normalize.scss */
a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}

/* line 115, ../scss/includes/_normalize.scss */
a {
  text-decoration: underline;
}

/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
 * Fix IE6/7 heading font-size not being relative to the root font-size
 */
/* line 129, ../scss/includes/_normalize.scss */
h1 {
  font-size: 2.5em;
  margin: 0.67em 0;
}

/* line 134, ../scss/includes/_normalize.scss */
h2 {
  font-size: 2em;
  margin: 0.83em 0;
}

/* line 139, ../scss/includes/_normalize.scss */
h3 {
  font-size: 1.5em;
  margin: 1em 0;
}

/* line 144, ../scss/includes/_normalize.scss */
h4 {
  font-size: 1.17;
  margin: 1.33em 0;
}

/* line 149, ../scss/includes/_normalize.scss */
h5 {
  font-size: 1em;
  margin: 1.67em 0;
}

/* line 154, ../scss/includes/_normalize.scss */
h6 {
  font-size: 0.83em;
  margin: 2.33em 0;
}

/* line 159, ../scss/includes/_normalize.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
/* line 167, ../scss/includes/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
/* line 176, ../scss/includes/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 180, ../scss/includes/_normalize.scss */
blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */
/* line 188, ../scss/includes/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */
/* line 196, ../scss/includes/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
/* line 209, ../scss/includes/_normalize.scss */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */
/* line 219, ../scss/includes/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
/* line 232, ../scss/includes/_normalize.scss */
q {
  quotes: none;
}

/* 2 */
/* line 239, ../scss/includes/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 244, ../scss/includes/_normalize.scss */
small {
  font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
/* line 254, ../scss/includes/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 261, ../scss/includes/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 265, ../scss/includes/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* =============================================================================
   Lists
   ========================================================================== */
/* line 275, ../scss/includes/_normalize.scss */
ul,
ol {
  margin-left: 0;
  padding: 0 0 0 40px;
}

/* line 280, ../scss/includes/_normalize.scss */
dd {
  margin: 0 0 0 40px;
}

/* line 285, ../scss/includes/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
/* line 301, ../scss/includes/_normalize.scss */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */
/* line 310, ../scss/includes/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
/* line 323, ../scss/includes/_normalize.scss */
figure {
  margin: 0;
}

/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
/* line 336, ../scss/includes/_normalize.scss */
form {
  margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */
/* line 344, ../scss/includes/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
/* line 356, ../scss/includes/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
/* line 372, ../scss/includes/_normalize.scss */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
/* line 384, ../scss/includes/_normalize.scss */
button,
input {
  line-height: normal;
  /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
/* line 398, ../scss/includes/_normalize.scss */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */
/* line 409, ../scss/includes/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */
/* line 421, ../scss/includes/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
/* line 433, ../scss/includes/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
/* line 445, ../scss/includes/_normalize.scss */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
/* line 455, ../scss/includes/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
/* line 465, ../scss/includes/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
/* line 479, ../scss/includes/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 1, ../scss/includes/_helpers.scss */
.red {
  color: #cc051f;
}

/* line 2, ../scss/includes/_helpers.scss */
.dark-tone {
  color: #eee4e5;
}

/* line 3, ../scss/includes/_helpers.scss */
.tone {
  color: #fef5f5;
}

/* line 4, ../scss/includes/_helpers.scss */
.white {
  color: white;
}

/* line 5, ../scss/includes/_helpers.scss */
.black {
  color: #000;
}

/* line 6, ../scss/includes/_helpers.scss */
.grey-lighter {
  color: #e7e4e7;
}

/* line 7, ../scss/includes/_helpers.scss */
.grey-light {
  color: #979497;
}

/* line 8, ../scss/includes/_helpers.scss */
.grey {
  color: #5a585b;
}

/* line 9, ../scss/includes/_helpers.scss */
.grey-dark {
  color: #484547;
}

/* line 10, ../scss/includes/_helpers.scss */
.grey-darker {
  color: #373538;
}

/* ==========================================================================
   Helpers: Diverse hjælpeklasser
   ========================================================================== */
/* line 16, ../scss/includes/_helpers.scss */
.hide {
  display: none;
}

/* line 17, ../scss/includes/_helpers.scss */
.transparent-line {
  clear: both;
  height: 0px;
  width: 100%;
}

/* line 22, ../scss/includes/_helpers.scss */
.alpha {
  margin-left: 0 !important;
}

/* line 23, ../scss/includes/_helpers.scss */
.omega {
  margin-right: 0 !important;
}

/* line 25, ../scss/includes/_helpers.scss */
.clearfix {
  zoom: 1;
  width: 100% !important;
  height: 0px;
}
/* line 31, ../scss/includes/_helpers.scss */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
/* line 35, ../scss/includes/_helpers.scss */
.clearfix:after {
  clear: both;
}

/* ==========================================================================
   Image replacement
   ========================================================================== */
/* line 42, ../scss/includes/_helpers.scss */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
/* line 52, ../scss/includes/_helpers.scss */
.ir br {
  display: none;
}

/* ==========================================================================
   Hides elements visually but not for screenreaders.
   ========================================================================== */
/* line 59, ../scss/includes/_helpers.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* ==========================================================================
   Hides elements visually but not for screenreaders.
   ========================================================================== */
/* line 68, ../scss/includes/_helpers.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 79, ../scss/includes/_helpers.scss */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* ==========================================================================
   Hides content visually without affecting layout. The .hidden class removes the element from the layout as well.
   ========================================================================== */
/* line 92, ../scss/includes/_helpers.scss */
.invisible {
  visibility: hidden;
}

/* ==========================================================================
   Self-clearing fix for modern browsers.
   ========================================================================== */
/* line 99, ../scss/includes/_helpers.scss */
.group:before, .group:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
/* line 105, ../scss/includes/_helpers.scss */
.group:after {
  clear: both;
}

@font-face {
  font-family: 'fontello';
  src: url("/frontend/fonts/iconfont/fontello.eot?20419538");
  src: url("/frontend/fonts/iconfont/fontello.eot?20419538#iefix") format("embedded-opentype"), url("/frontend/fonts/iconfont/fontello.woff?20419538") format("woff"), url("/frontend/fonts/iconfont/fontello.ttf?20419538") format("truetype"), url("/frontend/fonts/iconfont/fontello.svg?20419538#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?20419538#fontello') format('svg');
  }
}
*/
/* line 29, ../scss/includes/_fonts.scss */
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* line 60, ../scss/includes/_fonts.scss */
.icon-circle:before, .banner-modul-container .flex-control-nav .flex-active:before {
  content: '\e800';
}

/* '' */
/* line 61, ../scss/includes/_fonts.scss */
.icon-circle-empty:before, .banner-modul-container .flex-control-nav a:before {
  content: '\e801';
}

/* '' */
/* line 62, ../scss/includes/_fonts.scss */
.icon-down-dir:before {
  content: '\e802';
}

/* '' */
/* line 63, ../scss/includes/_fonts.scss */
.icon-twitter:before {
  content: '\e803';
}

/* '' */
/* line 64, ../scss/includes/_fonts.scss */
.icon-zoom-in:before {
  content: '\e804';
}

/* '' */
/* line 65, ../scss/includes/_fonts.scss */
.icon-search:before {
  content: '\e805';
}

/* '' */
/* line 66, ../scss/includes/_fonts.scss */
.icon-left-open:before {
  content: '\e806';
}

/* '' */
/* line 67, ../scss/includes/_fonts.scss */
.icon-right-open:before, .box-listboks em:before, .box-listboks ul li.active em:before {
  content: '\e807';
}

/* '' */
/* line 68, ../scss/includes/_fonts.scss */
.icon-angle-left:before, .flexslider .flex-direction-nav .flex-prev:before {
  content: '\e808';
}

/* '' */
/* line 69, ../scss/includes/_fonts.scss */
.icon-angle-right:before, .flexslider .flex-direction-nav .flex-next:before, .news-item .news-item-main-content a em:before {
  content: '\e809';
}

/* '' */
/* line 70, ../scss/includes/_fonts.scss */
.icon-share:before {
  content: '\e80a';
}

/* '' */
/* line 71, ../scss/includes/_fonts.scss */
.icon-down-open:before {
  content: '\e80b';
}

/* '' */
/* line 72, ../scss/includes/_fonts.scss */
.icon-up-dir:before {
  content: '\e80d';
}

/* '' */
/* line 73, ../scss/includes/_fonts.scss */
.icon-left-dir:before, .banner-modul-container .flex-direction-nav .flex-prev:before {
  content: '\e80e';
}

/* '' */
/* line 74, ../scss/includes/_fonts.scss */
.icon-right-dir:before, .banner-modul-container .flex-direction-nav .flex-next:before, .main-text .sitemap ul li a em:before {
  content: '\e80f';
}

/* '' */
/* line 75, ../scss/includes/_fonts.scss */
.icon-menu:before {
  content: '\e810';
}

/* '' */
/* line 76, ../scss/includes/_fonts.scss */
.icon-cancel:before {
  content: '\e811';
}

/* '' */
/* line 77, ../scss/includes/_fonts.scss */
.icon-ok:before {
  content: '\e812';
}

/* '' */
/* line 78, ../scss/includes/_fonts.scss */
.icon-phone:before {
  content: '\e813';
}

/* '' */
/* line 79, ../scss/includes/_fonts.scss */
.icon-email:before {
  content: '\e814';
}

/* '' */
/* line 80, ../scss/includes/_fonts.scss */
.icon-youtube-play:before {
  content: '\e815';
}

/* '' */
/* line 81, ../scss/includes/_fonts.scss */
.icon-facebook:before {
  content: '\e816';
}

/* '' */
/* line 87, ../scss/includes/_fonts.scss */
.icon-circle-full:before {
  content: '\e800';
}

/* '' */
/* line 89, ../scss/includes/_fonts.scss */
.icon-font, .news-item .news-item-main-content a em, .box-listboks em, .box-listboks ul li.active em, .main-text .sitemap ul li a em {
  font-family: "fontello";
  font-size: 1.5em;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-transform: none;
  line-height: 0.8em;
  display: inline-block;
  padding: 0;
  speak: none;
}

/* ==========================================================================
   Basic HTML: html and body elements
   ========================================================================== */
/* line 5, ../scss/includes/_base.scss */
html {
  overflow-y: scroll;
}

/* line 9, ../scss/includes/_base.scss */
body {
  font-family: "Ubuntu", sans-serif;
  font-size: 0.875em;
  font-weight: normal;
  line-height: 1.5em;
  color: #1e1f23;
  /*background: #000000 url("/frontend/images/dfh_bg.jpg") no-repeat center top;*/
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
}

/* line 24, ../scss/includes/_base.scss */
.large-font {
  font-size: 1em;
  line-height: 1.5em;
}

/* line 28, ../scss/includes/_base.scss */
.extra-large-font {
  font-size: 1.125em;
  line-height: 1.5em;
}

/* line 33, ../scss/includes/_base.scss */
hr {
  height: 0px;
  border-top: 0.071em solid #e0d4d5;
  border-right: 0 solid transparent;
  border-bottom: 0.071em solid #fff;
  border-left: 0 solid transparent;
  background: #e0d4d5;
  color: #e0d4d5;
}

/* line 42, ../scss/includes/_base.scss */
.clr {
  clear: both;
}

/* ==========================================================================
   Anchor tags
   ========================================================================== */
/* line 51, ../scss/includes/_base.scss */
a {
  color: #cc051f;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* line 55, ../scss/includes/_base.scss */
a:hover, a:focus {
  outline: none;
  color: black;
}

/* line 63, ../scss/includes/_base.scss */
a.rte-button,
.rte-button a,
a .rte-button {
  display: inline-block;
  text-decoration: none;
  margin: 0.5em auto;
  padding: 0.45em 0.7em 0.3em;
  font-size: 1.1em;
  line-height: 1em;
  text-transform: uppercase;
}

/* line 75, ../scss/includes/_base.scss */
.revertLinkColors, .box-submenu h4 a {
  color: black;
}
/* line 78, ../scss/includes/_base.scss */
.revertLinkColors:hover, .box-submenu h4 a:hover, .revertLinkColors:focus, .box-submenu h4 a:focus {
  color: #cc051f;
}

/* line 84, ../scss/includes/_base.scss */
.heading, .heading-bold, h1, h2, h3, h4, h5, h6, .webshopboks .wrapper-boks-heading, .webshopboks .wrapper-boks-pris, .box h4, .Knapboks .linkHolder {
  font-weight: 400;
  font-family: "Ubuntu", sans-serif, "Verdana";
  font-style: normal;
}

/* line 93, ../scss/includes/_base.scss */
.heading-bold, h1, h2, h3, h4, h5, h6, .webshopboks .wrapper-boks-heading, .webshopboks .wrapper-boks-pris {
  font-weight: bold;
}

/* ==========================================================================
   Headings
   ========================================================================== */
/* line 104, ../scss/includes/_base.scss */
h1 {
  margin-top: 0;
  line-height: 100%;
}

/* line 110, ../scss/includes/_base.scss */
.col-3 h1 {
  font-size: 2.575em;
}
/* line 114, ../scss/includes/_base.scss */
.col-3 .main-text h1 {
  font-size: 2.769em;
}

/* line 120, ../scss/includes/_base.scss */
.col-2-1 h1 {
  font-size: 2.175em;
}
/* line 124, ../scss/includes/_base.scss */
.col-2-1 .main-text h1 {
  font-size: 2.308em;
}

/* line 129, ../scss/includes/_base.scss */
h2 {
  font-size: 1.3em;
}

/* line 133, ../scss/includes/_base.scss */
h3 {
  font-size: 1.15em;
}

/* line 137, ../scss/includes/_base.scss */
h4 {
  font-size: 1em;
}

/* line 141, ../scss/includes/_base.scss */
h5 {
  font-size: 0.8em;
}

/* line 145, ../scss/includes/_base.scss */
h6 {
  font-size: 0.6em;
}

/* ==========================================================================
   Spacing
   ========================================================================== */
/* line 154, ../scss/includes/_base.scss */
ol {
  list-style: decimal;
}

/* line 155, ../scss/includes/_base.scss */
ul {
  list-style: disc;
}

/* line 156, ../scss/includes/_base.scss */
ol, ul, p {
  margin: 0;
  padding: 0;
}

/* line 160, ../scss/includes/_base.scss */
li {
  margin: 0 0 0 1.2em;
}

/* line 171, ../scss/includes/_base.scss */
dl,
h2,
h3,
h4,
h5,
h6,
ol,
pre,
table,
address,
fieldset {
  margin-bottom: 1em;
}

/* line 175, ../scss/includes/_base.scss */
h1 {
  margin-bottom: 0.5em;
}

/* line 179, ../scss/includes/_base.scss */
hr {
  margin: .5em 0;
  padding: 0;
}

/* ==========================================================================
    uEditThis button
   ========================================================================== */
/* line 189, ../scss/includes/_base.scss */
.uEditThisButton {
  position: absolute;
  float: right;
  top: 10px;
  right: 15px;
  z-index: 5000;
}

/* line 197, ../scss/includes/_base.scss */
.uEditThisButton a {
  border-radius: 6px;
  color: #fff;
  height: 22px;
  display: block;
  font-size: 13px;
  line-height: 22px;
  padding: 4px 12px;
  width: 102px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0044cc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

/* line 221, ../scss/includes/_base.scss */
.uEditThisButton a:hover {
  background-color: #0044cc;
  background-image: -moz-linear-gradient(top, #0044cc, #0088cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0044cc), to(#0088cc));
  background-image: -webkit-linear-gradient(top, #0044cc, #0088cc);
  background-image: -o-linear-gradient(top, #0044cc, #0088cc);
  background-image: linear-gradient(to bottom, #0044cc, #0088cc);
  background-repeat: repeat-x;
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background: #1160ff;
}

/* line 236, ../scss/includes/_base.scss */
.uEditThisButton span {
  margin-left: 8px;
}

/* line 240, ../scss/includes/_base.scss */
.uEditThisButton .icon-edit {
  display: block;
  float: left;
  height: 13px;
  margin-top: 5px;
  width: 13px;
  background: url(/frontend/images/edit_pencil.png);
}

/* line 249, ../scss/includes/_base.scss */
img {
  display: block;
}

/* line 253, ../scss/includes/_base.scss */
.StdKnap, a.rte-button,
.rte-button a,
a .rte-button {
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #cc051f;
  color: white !important;
  font-weight: bold;
  padding: 0.6em 0.7em 0.5em;
  text-decoration: none;
}
/* line 260, ../scss/includes/_base.scss */
.StdKnap:hover, a.rte-button:hover,
.rte-button a:hover,
a .rte-button:hover {
  background-color: #e30a0b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#bb0809), to(#e30a0b));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #bb0809, #e30a0b);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #bb0809, #e30a0b);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #bb0809, #e30a0b);
  /* IE10 */
  background-image: -o-linear-gradient(top, #bb0809, #e30a0b);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #bb0809, #e30a0b);
  text-decoration: none !important;
}
/* line 264, ../scss/includes/_base.scss */
.StdKnap.StdKnap-small, a.StdKnap-small.rte-button,
.rte-button a.StdKnap-small,
a .StdKnap-small.rte-button {
  font-size: 0.786em;
}

/* line 269, ../scss/includes/_base.scss */
.default-box-shadow, .cream-cheese-button {
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 1px 0px 4px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 1px 0px 4px;
  box-shadow: rgba(0, 0, 0, 0.3) 1px 0px 4px;
}

/* line 273, ../scss/includes/_base.scss */
.cream-cheese-button {
  border: 0px solid transparent;
  color: #cc051f;
  font-size: 0.867em;
  line-height: 1em;
  margin: 0;
  padding: .5em .555em;
  height: 2.308em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
  background-color: #eeeeee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#eeeeee));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, white, #eeeeee);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, white, #eeeeee);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, white, #eeeeee);
  /* IE10 */
  background-image: -o-linear-gradient(top, white, #eeeeee);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #ffffff, #eeeeee);
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
/* line 289, ../scss/includes/_base.scss */
.cream-cheese-button:hover {
  text-shadow: rgba(255, 255, 255, 0.75) 0 0 0;
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(white));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  /* FF3.6+ */
  background-image: -ms-linear-gradient(top, #eeeeee, white);
  /* IE10 */
  background-image: -o-linear-gradient(top, #eeeeee, white);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #eeeeee, #ffffff);
}
/* line 293, ../scss/includes/_base.scss */
.cream-cheese-button:active {
  color: #565152;
  background: #ebe3e3;
}

/* line 298, ../scss/includes/_base.scss */
.no-topmargin {
  margin-top: 0;
}

/* ==========================================================================
   Variables and Mixins for grids
   ========================================================================== */
/* ==========================================================================
   Sidestruktur: .container er div der wrapper hele siden
   ========================================================================== */
/* line 90, ../scss/includes/print/_grid.scss */
.container {
  width: 920px;
  margin: 0 auto;
  padding: 0 10px;
}
/* line 21, ../scss/includes/print/_grid.scss */
.container > header:before, .container > header:after, .container > aside:before, .container > aside:after, .container > section:before, .container > section:after, .container > footer:before, .container > footer:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.container > header:after, .container > aside:after, .container > section:after, .container > footer:after {
  clear: both;
}

/* ==========================================================================
   Master grid on Printer
   ========================================================================== */
/* line 113, ../scss/includes/print/_grid.scss */
.col-1-2-1 .left,
.col-1-3 .left,
.col-3-1 .left,
.col-4 .left {
  margin-top: 15px;
  float: left;
  width: 220px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 117, ../scss/includes/print/_grid.scss */
.col-1-2-1 .right,
.col-1-3 .right,
.col-3-1 .right,
.col-4 .right {
  margin-top: 15px;
  float: left;
  width: 220px;
  margin-left: 720px;
  margin-right: -100%;
}

/* line 128, ../scss/includes/print/_grid.scss */
.desktop.col-1-2-1 .main-wrapper, .desktop.col-1-3 .main-wrapper {
  float: left;
  width: 460px;
  margin-left: 240px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-1-2-1 .main-wrapper .documentlist-design:before, .desktop.col-1-2-1 .main-wrapper .documentlist-design:after,
.desktop.col-1-2-1 .main-wrapper .columns:before,
.desktop.col-1-2-1 .main-wrapper .columns:after, .desktop.col-1-3 .main-wrapper .documentlist-design:before, .desktop.col-1-3 .main-wrapper .documentlist-design:after,
.desktop.col-1-3 .main-wrapper .columns:before,
.desktop.col-1-3 .main-wrapper .columns:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-1-2-1 .main-wrapper .documentlist-design:after,
.desktop.col-1-2-1 .main-wrapper .columns:after, .desktop.col-1-3 .main-wrapper .documentlist-design:after,
.desktop.col-1-3 .main-wrapper .columns:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop.col-1-2-1 .main-wrapper .documentlist-design > *,
.desktop.col-1-2-1 .main-wrapper .columns > *, .desktop.col-1-3 .main-wrapper .documentlist-design > *,
.desktop.col-1-3 .main-wrapper .columns > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop.col-1-2-1 .main-wrapper .documentlist-design .alpha, .desktop.col-1-2-1 .main-wrapper .documentlist-design > *:first-child, .desktop.col-1-2-1 .main-wrapper .documentlist-design > *:nth-child(2n+1),
.desktop.col-1-2-1 .main-wrapper .columns .alpha,
.desktop.col-1-2-1 .main-wrapper .columns > *:first-child,
.desktop.col-1-2-1 .main-wrapper .columns > *:nth-child(2n+1), .desktop.col-1-3 .main-wrapper .documentlist-design .alpha, .desktop.col-1-3 .main-wrapper .documentlist-design > *:first-child, .desktop.col-1-3 .main-wrapper .documentlist-design > *:nth-child(2n+1),
.desktop.col-1-3 .main-wrapper .columns .alpha,
.desktop.col-1-3 .main-wrapper .columns > *:first-child,
.desktop.col-1-3 .main-wrapper .columns > *:nth-child(2n+1) {
  clear: left;
  margin-left: 0;
}
/* line 139, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .main-wrapper, .desktop.col-4 .main-wrapper {
  float: left;
  width: 940px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .main-wrapper .documentlist-design:before, .desktop.col-3-1 .main-wrapper .documentlist-design:after,
.desktop.col-3-1 .main-wrapper .columns:before,
.desktop.col-3-1 .main-wrapper .columns:after, .desktop.col-4 .main-wrapper .documentlist-design:before, .desktop.col-4 .main-wrapper .documentlist-design:after,
.desktop.col-4 .main-wrapper .columns:before,
.desktop.col-4 .main-wrapper .columns:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .main-wrapper .documentlist-design:after,
.desktop.col-3-1 .main-wrapper .columns:after, .desktop.col-4 .main-wrapper .documentlist-design:after,
.desktop.col-4 .main-wrapper .columns:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .main-wrapper .documentlist-design > *,
.desktop.col-3-1 .main-wrapper .columns > *, .desktop.col-4 .main-wrapper .documentlist-design > *,
.desktop.col-4 .main-wrapper .columns > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .main-wrapper .documentlist-design .alpha, .desktop.col-3-1 .main-wrapper .documentlist-design > *:first-child, .desktop.col-3-1 .main-wrapper .documentlist-design > *:nth-child(4n+1),
.desktop.col-3-1 .main-wrapper .columns .alpha,
.desktop.col-3-1 .main-wrapper .columns > *:first-child,
.desktop.col-3-1 .main-wrapper .columns > *:nth-child(4n+1), .desktop.col-4 .main-wrapper .documentlist-design .alpha, .desktop.col-4 .main-wrapper .documentlist-design > *:first-child, .desktop.col-4 .main-wrapper .documentlist-design > *:nth-child(4n+1),
.desktop.col-4 .main-wrapper .columns .alpha,
.desktop.col-4 .main-wrapper .columns > *:first-child,
.desktop.col-4 .main-wrapper .columns > *:nth-child(4n+1) {
  clear: left;
  margin-left: 0;
}
/* line 147, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .left, .desktop.col-4 .left {
  clear: left;
  float: left;
  width: 940px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .left:before, .desktop.col-3-1 .left:after, .desktop.col-4 .left:before, .desktop.col-4 .left:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .left:after, .desktop.col-4 .left:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .left > *, .desktop.col-4 .left > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop.col-3-1 .left .alpha, .desktop.col-3-1 .left > *:first-child, .desktop.col-3-1 .left > *:nth-child(4n+1), .desktop.col-4 .left .alpha, .desktop.col-4 .left > *:first-child, .desktop.col-4 .left > *:nth-child(4n+1) {
  clear: left;
  margin-left: 0;
}
/* line 153, ../scss/includes/print/_grid.scss */
.desktop .right {
  clear: left;
  float: left;
  width: 940px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop .right:before, .desktop .right:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop .right:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop .right > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop .right .alpha, .desktop .right > *:first-child, .desktop .right > *:nth-child(4n+1) {
  clear: left;
  margin-left: 0;
}

/* ==========================================================================
   Ekstra grids til forside
   ========================================================================== */
/* line 166, ../scss/includes/print/_grid.scss */
.desktop .forside .left-content-wrapper {
  float: left;
  width: 700px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 169, ../scss/includes/print/_grid.scss */
.desktop .forside .regions-spillet-wrapper {
  float: left;
  width: 220px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 172, ../scss/includes/print/_grid.scss */
.desktop .forside .vaelg-din-region {
  float: left;
  width: 460px;
  margin-left: 240px;
  margin-right: -100%;
}
/* line 176, ../scss/includes/print/_grid.scss */
.desktop .forside-header,
.desktop .forside .left {
  float: left;
  width: 700px;
  margin-left: 0px;
  margin-right: -100%;
  clear: left;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop .forside-header:before, .desktop .forside-header:after,
.desktop .forside .left:before,
.desktop .forside .left:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop .forside-header:after,
.desktop .forside .left:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop .forside-header > *,
.desktop .forside .left > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop .forside-header .alpha, .desktop .forside-header > *:first-child, .desktop .forside-header > *:nth-child(3n+1),
.desktop .forside .left .alpha,
.desktop .forside .left > *:first-child,
.desktop .forside .left > *:nth-child(3n+1) {
  clear: left;
  margin-left: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
/* line 8, ../scss/includes/print/_header.scss */
#serviceMenu,
nav,
.sub-menu,
#socialmedia {
  display: none;
}

/* ==========================================================================
   Navigation: Main navigation
   ========================================================================== */
/* line 5, ../scss/includes/print/_topmenu.scss */
.nav-main {
  display: none;
}

/* line 10, ../scss/includes/print/_topmenu.scss */
.large-font .nav-main table td a {
  font-weight: 400;
  font-size: 107.1%;
  padding: 19px 0 15px 0;
}

/* line 17, ../scss/includes/print/_topmenu.scss */
.extra-large-font .nav-main table td a {
  font-weight: 400;
  font-size: 100%;
  padding: 17px 0 14px 0;
}

/* ==========================================================================
   Main content
   ========================================================================== */
/* line 6, ../scss/includes/_dokument.scss */
aside.top .box, aside.bottom .box {
  border: none;
  padding-left: 0;
}
/* line 10, ../scss/includes/_dokument.scss */
aside.top .box.box-no-border, aside.bottom .box.box-no-border {
  padding: 20px;
}
/* line 14, ../scss/includes/_dokument.scss */
aside.top .box.Bannerboks, aside.bottom .box.Bannerboks {
  padding: 0;
}
/* line 18, ../scss/includes/_dokument.scss */
aside.top .box.Billedboks, aside.bottom .box.Billedboks {
  padding: 0;
}
/* line 20, ../scss/includes/_dokument.scss */
aside.top .box.Billedboks > article, aside.bottom .box.Billedboks > article {
  margin: 0;
  bottom: 0;
}
/* line 28, ../scss/includes/_dokument.scss */
aside.top .box.Knapboks .linkHolder a, aside.bottom .box.Knapboks .linkHolder a {
  display: inline-block;
}

/* line 37, ../scss/includes/_dokument.scss */
.main-wrap article {
  font-weight: 400;
}
/* line 42, ../scss/includes/_dokument.scss */
.main-wrap article h1, .main-wrap article > h2 {
  margin: 0 0 0.5em 0;
}
/* line 45, ../scss/includes/_dokument.scss */
.main-wrap article > h2 {
  font-size: 1.7em;
}
/* line 49, ../scss/includes/_dokument.scss */
.main-wrap article > strong {
  display: block;
  margin: -0.5em 0 1em 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
}
/* line 56, ../scss/includes/_dokument.scss */
.main-wrap article > h2 + strong {
  margin-top: 0em;
}
/* line 62, ../scss/includes/_dokument.scss */
.main-wrap article > img, .main-wrap article > a > img,
.main-wrap article .main-image {
  width: 100%;
  margin: 0 0 1.5em 0;
}
/* line 67, ../scss/includes/_dokument.scss */
.main-wrap article #socialmedia {
  max-height: 3em;
  margin: 0 0 1.1em 0;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
/* line 74, ../scss/includes/_dokument.scss */
.main-wrap article #socialmedia iframe, .main-wrap article #socialmedia div {
  float: left;
  height: 1.5em;
}
/* line 80, ../scss/includes/_dokument.scss */
.main-wrap article .newsDetails {
  font-style: italic;
  text-shadow: 0 1px 0 #fff;
  margin: 0 0 1em 0;
}
/* line 86, ../scss/includes/_dokument.scss */
.main-wrap article .primary-video {
  margin-bottom: 1em;
}

/* line 91, ../scss/includes/_dokument.scss */
.main-text {
  margin: 0 0 2.15em 0;
  font-size: 1em;
  line-height: 1.5em;
  color: #1e1f23;
}
/* line 98, ../scss/includes/_dokument.scss */
.main-text table td,
.main-text table th {
  text-align: left;
  vertical-align: top;
  padding-right: 20px;
}
/* line 103, ../scss/includes/_dokument.scss */
.main-text table td p,
.main-text table th p {
  margin-bottom: 0px;
}
/* line 115, ../scss/includes/_dokument.scss */
.main-text div,
.main-text p,
.main-text ul,
.main-text ol,
.main-text dl,
.main-text hr,
.main-text pre,
.main-text table {
  margin: 0 0 1em 0;
}

/* line 126, ../scss/includes/_dokument.scss */
.main-text h2,
.main-text h3,
.main-text h4,
.main-text h5,
.main-text h6,
.box-scriptboks article h2,
.box-scriptboks article h3,
.box-scriptboks article h4,
.box-scriptboks article h5,
.box-scriptboks article h6 {
  margin: 1em 0 0 0;
}
/* line 131, ../scss/includes/_dokument.scss */
.main-text ul,
.main-text ol,
.box-scriptboks article ul,
.box-scriptboks article ol {
  margin-left: 2em;
}
/* line 134, ../scss/includes/_dokument.scss */
.main-text ul ul, .main-text ul ol,
.main-text ol ul,
.main-text ol ol,
.box-scriptboks article ul ul,
.box-scriptboks article ul ol,
.box-scriptboks article ol ul,
.box-scriptboks article ol ol {
  margin-left: 1em;
}
/* line 139, ../scss/includes/_dokument.scss */
.main-text a,
.box-scriptboks article a {
  font-weight: normal;
}
/* line 141, ../scss/includes/_dokument.scss */
.main-text a:hover,
.box-scriptboks article a:hover {
  color: #cc051f;
}

/* line 148, ../scss/includes/_dokument.scss */
.box-scriptboks article a {
  font-weight: bold;
  text-decoration: none;
}
/* line 151, ../scss/includes/_dokument.scss */
.box-scriptboks article a:hover {
  color: #cc051f;
  text-decoration: underline;
}

/* ==========================================================================
   Center content
   ========================================================================== */
/* line 163, ../scss/includes/_dokument.scss */
.main-content,
.main-content-columns {
  margin: 1.5em 0 0 0;
}

/* ==========================================================================
   Center content on desktop
   ========================================================================== */
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-2-1 .main-content .listbox-item:before, .desktop.col-2-1 .main-content .listbox-item:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-2-1 .main-content .listbox-item:after {
  clear: both;
}
/* line 175, ../scss/includes/_dokument.scss */
.desktop.col-2-1 .main-content .listbox-item .listbox-img {
  float: left;
  width: 220px;
  margin-left: 240px;
  margin-right: -100%;
}
/* line 176, ../scss/includes/_dokument.scss */
.desktop.col-2-1 .main-content .listbox-item .listbox-text {
  float: left;
  width: 220px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-2-1 .main-content-columns:before, .desktop.col-2-1 .main-content-columns:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-2-1 .main-content-columns:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop.col-2-1 .main-content-columns > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop.col-2-1 .main-content-columns .alpha, .desktop.col-2-1 .main-content-columns > *:first-child, .desktop.col-2-1 .main-content-columns > *:nth-child(2n+1) {
  clear: left;
  margin-left: 0;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-3 .main-content .listbox-item:before, .desktop.col-3 .main-content .listbox-item:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-3 .main-content .listbox-item:after {
  clear: both;
}
/* line 185, ../scss/includes/_dokument.scss */
.desktop.col-3 .main-content .listbox-item .listbox-img {
  float: left;
  width: 220px;
  margin-left: 480px;
  margin-right: -100%;
}
/* line 186, ../scss/includes/_dokument.scss */
.desktop.col-3 .main-content .listbox-item .listbox-text {
  float: left;
  width: 460px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-3 .main-content-columns:before, .desktop.col-3 .main-content-columns:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-3 .main-content-columns:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.desktop.col-3 .main-content-columns > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.desktop.col-3 .main-content-columns .alpha, .desktop.col-3 .main-content-columns > *:first-child, .desktop.col-3 .main-content-columns > *:nth-child(3n+1) {
  clear: left;
  margin-left: 0;
}

/* ==========================================================================
   Center content on other devices
   ========================================================================== */
/* line 21, ../scss/includes/print/_grid.scss */
.phone .main-content:before, .phone .main-content:after,
.phone .main-content-columns:before,
.phone .main-content-columns:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.phone .main-content:after,
.phone .main-content-columns:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.phone .main-content > *,
.phone .main-content-columns > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.phone .main-content .alpha, .phone .main-content > *:first-child, .phone .main-content > *:nth-child(1n+1),
.phone .main-content-columns .alpha,
.phone .main-content-columns > *:first-child,
.phone .main-content-columns > *:nth-child(1n+1) {
  clear: left;
  margin-left: 0;
}

/* line 207, ../scss/includes/_dokument.scss */
.phone .breadcrumb {
  display: none;
}
/* line 211, ../scss/includes/_dokument.scss */
.phone .kampagneside .main-wrap {
  padding: 0;
}

/* line 217, ../scss/includes/_dokument.scss */
.breadcrumb {
  float: left;
  margin: 15px 0;
  width: 100%;
}
/* line 222, ../scss/includes/_dokument.scss */
.breadcrumb ul {
  margin: 0;
}
/* line 225, ../scss/includes/_dokument.scss */
.breadcrumb ul li {
  color: #4d4d4d;
  float: left;
  font-weight: bold;
  margin: 0px;
}
/* line 231, ../scss/includes/_dokument.scss */
.breadcrumb ul li .seperator {
  margin: 0 5px;
}
/* line 235, ../scss/includes/_dokument.scss */
.breadcrumb ul li a {
  color: #909090;
  font-weight: normal;
  text-decoration: underline;
}
/* line 240, ../scss/includes/_dokument.scss */
.breadcrumb ul li a:hover {
  text-decoration: none;
}

/* Styling for Kampagneside */
/* line 250, ../scss/includes/_dokument.scss */
.kampagneside {
  padding: 0;
  width: 960px;
}
/* line 254, ../scss/includes/_dokument.scss */
.kampagneside aside.primary {
  float: none;
  width: 100%;
}
/* line 258, ../scss/includes/_dokument.scss */
.kampagneside aside.primary .box {
  border-width: 0px;
}
/* line 262, ../scss/includes/_dokument.scss */
.kampagneside .main-wrap {
  box-sizing: border-box;
  padding: 0 0 0 20px;
}

/* ==========================================================================
   Navigation: Sub navigation
   ========================================================================== */
/* line 5, ../scss/includes/_submenu.scss */
.sub-menu {
  padding: 0;
  margin-top: .5em;
}
/* line 21, ../scss/includes/print/_grid.scss */
.sub-menu:before, .sub-menu:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.sub-menu:after {
  clear: both;
}
/* line 10, ../scss/includes/_submenu.scss */
.sub-menu nav {
  float: none;
  width: 100%;
}
/* line 14, ../scss/includes/_submenu.scss */
.sub-menu ul {
  border-top: 1px solid #eeeeee;
  padding: 0.8em 0;
  list-style: none;
  text-align: center;
}
/* line 21, ../scss/includes/print/_grid.scss */
.sub-menu ul:before, .sub-menu ul:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.sub-menu ul:after {
  clear: both;
}
/* line 21, ../scss/includes/_submenu.scss */
.sub-menu ul li {
  display: inline;
  padding: 0;
  margin-left: 1em;
}
/* line 26, ../scss/includes/_submenu.scss */
.sub-menu ul li a {
  color: #4d4d4d;
  font-size: 0.9em;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
}
/* line 33, ../scss/includes/_submenu.scss */
.sub-menu ul li a em {
  display: none;
}
/* line 37, ../scss/includes/_submenu.scss */
.sub-menu ul li a:hover {
  color: #cc051f;
  text-decoration: underline;
}
/* line 44, ../scss/includes/_submenu.scss */
.sub-menu ul .current a {
  margin-left: -3px;
}
/* line 48, ../scss/includes/_submenu.scss */
.sub-menu ul .current a,
.sub-menu ul .current a:hover {
  color: #ac1926;
  text-decoration: underline;
}
/* line 52, ../scss/includes/_submenu.scss */
.sub-menu ul .current a em,
.sub-menu ul .current a:hover em {
  display: none;
}

/* line 61, ../scss/includes/_submenu.scss */
.box-submenu h4 {
  margin: 0;
  padding: 0.6em 0 0.5em 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px dotted #dddddd;
}
/* line 72, ../scss/includes/_submenu.scss */
.box-submenu ul {
  margin-top: 0.5em;
}
/* line 75, ../scss/includes/_submenu.scss */
.box-submenu ul li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
}
/* line 84, ../scss/includes/_submenu.scss */
.box-submenu ul .current {
  font-weight: bold;
}
/* line 92, ../scss/includes/_submenu.scss */
.box-submenu ul .nav-sub-lvl-2 {
  padding: 0.2em 0;
}
/* line 95, ../scss/includes/_submenu.scss */
.box-submenu ul .nav-sub-lvl-2 li {
  font-weight: normal;
  padding: 0.2em 0 0.2em 1em;
}
/* line 99, ../scss/includes/_submenu.scss */
.box-submenu ul .nav-sub-lvl-2 li.current {
  font-weight: bold;
}

/* ==========================================================================
   Banner modul: container, slides, images
   ========================================================================== */
/* line 5, ../scss/includes/_banner-modul.scss */
.banner-modul-container {
  position: relative;
  width: 100%;
  height: 305px;
  margin: 0 0 1.5em 0;
  padding: 0;
  /* Fjern selection mulighed på hele banner modulet */
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
  /* Liste med slides */
}
/* line 18, ../scss/includes/_banner-modul.scss */
.banner-modul-container .slides {
  height: 305px;
  overflow: hidden;
}
/* line 22, ../scss/includes/_banner-modul.scss */
.banner-modul-container .slides li {
  display: none;
  height: inherit;
  list-style: none;
  margin-left: 0;
}
/* line 28, ../scss/includes/_banner-modul.scss */
.banner-modul-container .slides li img {
  max-width: 100%;
  display: block;
}
/* line 34, ../scss/includes/_banner-modul.scss */
.banner-modul-container .slides:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/* ==========================================================================
   Banner modul: 3 kolonnes layout med primary og secondary content
   ========================================================================== */
/* line 50, ../scss/includes/_banner-modul.scss */
.col-1-2-1 .banner-modul-container {
  height: 201px;
}
/* line 53, ../scss/includes/_banner-modul.scss */
.col-1-2-1 .banner-modul-container .slides {
  height: 201px;
}
/* line 56, ../scss/includes/_banner-modul.scss */
.col-1-2-1 .banner-modul-container .slides li {
  height: inherit;
}

/* ==========================================================================
   Banner modul: 1 kolonne layout uden primary og secondary content
   ========================================================================== */
/* line 65, ../scss/includes/_banner-modul.scss */
.col-4 .banner-modul-container {
  height: 410px;
}
/* line 68, ../scss/includes/_banner-modul.scss */
.col-4 .banner-modul-container .slides {
  height: 410px;
}
/* line 71, ../scss/includes/_banner-modul.scss */
.col-4 .banner-modul-container .slides li {
  height: inherit;
}

/* line 77, ../scss/includes/_banner-modul.scss */
.phone .banner-modul-container {
  height: 130px;
}
/* line 80, ../scss/includes/_banner-modul.scss */
.phone .banner-modul-container .slides {
  height: 130px;
}
/* line 83, ../scss/includes/_banner-modul.scss */
.phone .banner-modul-container .slides li {
  height: inherit;
}

/* ==========================================================================
   Banner modul: Navigation
   ========================================================================== */
/* line 91, ../scss/includes/_banner-modul.scss */
.banner-modul-container {
  /* Frem og tilbage knapper */
  /* Antal og valgt billede-markører */
}
/* line 94, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-direction-nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  list-style: none;
}
/* line 102, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-direction-nav .flex-prev,
.banner-modul-container .flex-direction-nav .flex-next {
  position: absolute;
  width: auto;
  font-family: "fontello";
  font-size: 3em;
  margin-top: -0.238em;
  cursor: pointer;
  text-decoration: none;
}
/* line 111, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-direction-nav .flex-prev:focus,
.banner-modul-container .flex-direction-nav .flex-next:focus {
  color: #cc051f;
}
/* line 114, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-direction-nav .flex-prev:hover,
.banner-modul-container .flex-direction-nav .flex-next:hover {
  color: black;
}
/* line 118, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-direction-nav .flex-prev {
  padding: 0;
  left: 10px;
}
/* line 123, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-direction-nav .flex-next {
  padding: 0;
  right: 10px;
}
/* line 131, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-control-nav {
  position: absolute;
  z-index: 2;
  bottom: 1em;
  right: 1em;
  margin: 0px;
  padding: 0.5em 0.5em 0.4em 0.5em;
  list-style: none;
  background: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=66)";
  filter: alpha(opacity=66);
  -moz-opacity: 0.66;
  -khtml-opacity: 0.66;
  opacity: 0.66;
  -webkit-border-radius: 0.4em 0.4em 0.4em 0.4em;
  -moz-border-radius: 0.4em 0.4em 0.4em 0.4em;
  border-radius: 0.4em 0.4em 0.4em 0.4em;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
/* line 143, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-control-nav:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: alpha(opacity=85);
  -moz-opacity: 0.85;
  -khtml-opacity: 0.85;
  opacity: 0.85;
}
/* line 147, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-control-nav li {
  float: left;
  margin-left: 0;
}
/* line 152, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-control-nav a {
  display: block;
  float: left;
  width: 0.89em;
  /* Width should be set to hide numbers */
  height: 1.15em;
  /* Height should be set to hide numbers in IE */
  overflow: hidden;
  margin: 0 0.3em;
  font-family: "fontello";
  font-size: 1.3em;
  cursor: pointer;
}
/* line 167, ../scss/includes/_banner-modul.scss */
.banner-modul-container .flex-control-nav .flex-active {
  color: #cc051f;
}

/* ==========================================================================
   Hacks
   ========================================================================== */
/* line 179, ../scss/includes/_banner-modul.scss */
html[xmlns] .slides {
  display: block;
}

/* line 180, ../scss/includes/_banner-modul.scss */
* html .slides {
  height: 1%;
}

/* Sørger for at billede ikke bliver for højt */
/* line 184, ../scss/includes/_banner-modul.scss */
.banner-image-wrap {
  max-height: 680px;
}

/* ==========================================================================
   No JavaScript Fallback
   ========================================================================== */
/* line 192, ../scss/includes/_banner-modul.scss */
.no-js .slides li:first-child {
  display: block;
}

/* ==========================================================================
   container, slides, images
   ========================================================================== */
/* line 5, ../scss/includes/_slider.scss */
.ldk-slider {
  display: none;
}

/* line 9, ../scss/includes/_slider.scss */
.flexslider-wrapper {
  background: #fff;
  margin-bottom: 2em;
  clear: left;
}

/* line 14, ../scss/includes/_slider.scss */
.flexslider-title {
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 1.714em;
}

/* line 22, ../scss/includes/_slider.scss */
.flexslider {
  position: relative;
  margin: 0 0 2em 0;
  padding: 0;
  clear: left;
  /* Fjern selection mulighed på hele banner modulet */
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
  /* Liste med slides */
  /* ==========================================================================
     Navigation
     ========================================================================== */
  /* Frem og tilbage knapper */
}
/* line 34, ../scss/includes/_slider.scss */
.flexslider .slides {
  overflow: hidden;
}
/* line 37, ../scss/includes/_slider.scss */
.flexslider .slides > li {
  display: none;
  height: inherit;
  list-style: none;
  padding: 20px 20px 20px 0;
  margin: 0;
}
/* line 45, ../scss/includes/_slider.scss */
.flexslider .slides > li img {
  max-width: 100%;
  display: block;
}
/* line 49, ../scss/includes/_slider.scss */
.flexslider .slides > li .box {
  margin-bottom: 0;
}
/* line 54, ../scss/includes/_slider.scss */
.flexslider .slides:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
/* line 63, ../scss/includes/_slider.scss */
.flexslider .slides .donationsboks {
  width: 100%;
  background-color: #e7e5e7;
  font-size: 10px;
  font-weight: bold;
  color: #5a585b;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
  position: absolute;
}
/* line 82, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav {
  position: absolute;
  z-index: 1;
  top: 60px;
  width: 100%;
  list-style: none;
}
/* line 91, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
  position: absolute;
  width: auto;
  font-family: "fontello";
  font-size: 3em;
  margin-top: -0.238em;
  cursor: pointer;
  text-decoration: none;
}
/* line 100, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-prev {
  padding: 0;
  left: -10px;
}
/* line 104, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-prev:before {
  background: #cc051f;
  color: #ffffff;
  padding: 0 5px;
}
/* line 110, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-next {
  padding: 0;
  right: -10px;
}
/* line 114, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-next:before {
  background: #cc051f;
  color: #ffffff;
  padding: 0 5px;
}

/* line 124, ../scss/includes/_slider.scss */
.flexslider-wrapper .flexslider .slides > li {
  margin-right: 0;
}
/* line 129, ../scss/includes/_slider.scss */
.flexslider-wrapper .flexslider .flex-direction-nav .flex-prev {
  left: 0;
}
/* line 132, ../scss/includes/_slider.scss */
.flexslider-wrapper .flexslider .flex-direction-nav .flex-next {
  right: 0;
}

/* line 139, ../scss/includes/_slider.scss */
.secondary .flexslider .slides > li {
  margin-right: 0;
}

/* line 149, ../scss/includes/_slider.scss */
.main-content-columns .flexslider-wrapper .flexslider .slides > li {
  margin-right: 0;
}

/* line 154, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .slides > li {
  margin-right: 0;
}

/* line 158, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .slides > li {
  padding: 0 !important;
}
/* line 161, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flexslider-inner {
  padding: 0;
  position: relative;
}
/* line 165, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flexslider-inner article {
  position: absolute;
  top: 5.4em;
  left: 3em;
  padding: 1.2em 1.7em 1.5em 1.7em;
  max-width: 22.500em;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
/* line 174, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flexslider-inner article h4 {
  color: #ffffff;
}
/* line 180, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav {
  top: 45%;
}
/* line 182, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav .flex-next {
  right: 10px !important;
}
/* line 185, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav .flex-prev {
  left: 10px !important;
}
/* line 189, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav .flex-next:before, .flexslider.flexslider-full-width .flex-direction-nav .flex-prev:before {
  background: transparent;
}

/* line 202, ../scss/includes/_slider.scss */
.secondary .flexslider.flexslider-webshop .slides > li {
  margin-right: 0;
}

/* line 209, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box,
.top .infobox-slider-wrapper .box {
  box-sizing: border-box;
  border-bottom: 5px solid #6c6c6c;
  margin-bottom: 2.15em;
  padding-bottom: 30px;
  padding-top: 0;
}
/* line 217, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.green-theme,
.top .infobox-slider-wrapper .box.green-theme {
  border-color: #9ead01;
}
/* line 220, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.purple-theme,
.top .infobox-slider-wrapper .box.purple-theme {
  border-color: #46065c;
}
/* line 223, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.orange-theme,
.top .infobox-slider-wrapper .box.orange-theme {
  border-color: #f46e02;
}
/* line 226, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.red-theme,
.top .infobox-slider-wrapper .box.red-theme {
  border-color: #ae1a28;
}
/* line 230, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box h4,
.top .infobox-slider-wrapper .box h4 {
  font-size: 1.5em;
  text-transform: none;
  color: #1e1f23;
  font-weight: 700;
  text-overflow: ellipsis;
}
/* line 238, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box article,
.top .infobox-slider-wrapper .box article {
  /*min-height: 180px;*/
  overflow: hidden;
  padding-right: 10px;
}
/* line 245, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks,
.top .infobox-slider-wrapper .box.Billedboks {
  color: #1e1f23;
}
/* line 247, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks h4,
.top .infobox-slider-wrapper .box.Billedboks h4 {
  color: #1e1f23 !important;
}
/* line 250, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks a,
.top .infobox-slider-wrapper .box.Billedboks a {
  color: #ae1a28;
  text-decoration: none;
}
/* line 254, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks article,
.top .infobox-slider-wrapper .box.Billedboks article {
  height: auto;
}
/* line 260, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border,
.top .infobox-slider-wrapper .box-no-border {
  padding-left: 20px;
  background: #6c6c6c;
  border: 0px none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
  padding: 20px 20px 40px 20px;
}
/* line 270, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border article,
.top .infobox-slider-wrapper .box-no-border article {
  min-height: 180px;
  overflow: hidden;
}
/* line 275, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border a,
.top .infobox-slider-wrapper .box-no-border a {
  color: #ffffff;
}
/* line 279, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.green-theme,
.top .infobox-slider-wrapper .box-no-border.green-theme {
  background: #9ead01;
  color: #000;
}
/* line 282, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.green-theme a,
.top .infobox-slider-wrapper .box-no-border.green-theme a {
  color: #000;
}
/* line 287, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.purple-theme,
.top .infobox-slider-wrapper .box-no-border.purple-theme {
  background: #46065c;
}
/* line 289, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.purple-theme h4,
.top .infobox-slider-wrapper .box-no-border.purple-theme h4 {
  color: #fff;
}
/* line 292, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.orange-theme,
.top .infobox-slider-wrapper .box-no-border.orange-theme {
  background: #f46e02;
  color: #000;
}
/* line 296, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.orange-theme a,
.top .infobox-slider-wrapper .box-no-border.orange-theme a {
  color: #000;
}
/* line 301, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.red-theme,
.top .infobox-slider-wrapper .box-no-border.red-theme {
  background: #ae1a28;
}
/* line 303, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.red-theme h4,
.top .infobox-slider-wrapper .box-no-border.red-theme h4 {
  color: #fff;
}
/* line 307, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.grey-theme h4,
.top .infobox-slider-wrapper .box-no-border.grey-theme h4 {
  color: white;
}

/* line 315, ../scss/includes/_slider.scss */
.infobox-slider-grid .slides > li {
  zoom: 1;
  display: block;
  float: left;
  width: 940px;
  margin-left: 0px;
  margin-right: -100%;
  padding: 20px 10px;
}
/* line 21, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:before, .infobox-slider-grid .slides > li:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:after {
  clear: both;
}
/* line 21, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:before, .infobox-slider-grid .slides > li:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li .alpha, .infobox-slider-grid .slides > li > *:first-child, .infobox-slider-grid .slides > li > *:nth-child(4n+1) {
  clear: left;
  margin-left: 0;
}

/* line 325, ../scss/includes/_slider.scss */
.flexslider-full-width {
  margin: 2em 10px;
}
/* line 328, ../scss/includes/_slider.scss */
.flexslider-full-width .slides > li {
  padding: 0;
}
/* line 333, ../scss/includes/_slider.scss */
.flexslider-full-width .flex-direction-nav {
  top: 43%;
}
/* line 338, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.green-theme {
  background: #9ead01;
  color: #000;
}
/* line 341, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.green-theme a {
  color: #000;
}
/* line 346, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.purple-theme {
  background: #46065c;
}
/* line 348, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.purple-theme h4 {
  color: #fff;
}
/* line 351, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.orange-theme {
  background: #f46e02;
  color: #000;
}
/* line 355, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.orange-theme a {
  color: #000;
}
/* line 360, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.red-theme {
  background: #ae1a28;
}
/* line 362, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.red-theme h4 {
  color: #fff;
}
/* line 366, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.grey-theme h4 {
  color: white;
}
/* line 373, ../scss/includes/_slider.scss */
.flexslider-full-width .box h4 {
  font-size: 1.5em;
  text-transform: none;
  color: #1e1f23;
  font-weight: 700;
  text-overflow: ellipsis;
}
/* line 381, ../scss/includes/_slider.scss */
.flexslider-full-width .box.green-theme {
  border-color: #9ead01;
}
/* line 385, ../scss/includes/_slider.scss */
.flexslider-full-width .box.purple-theme {
  border-color: #46065c;
}
/* line 390, ../scss/includes/_slider.scss */
.flexslider-full-width .box.orange-theme {
  border-color: #f46e02;
}
/* line 394, ../scss/includes/_slider.scss */
.flexslider-full-width .box.red-theme {
  border-color: #ae1a28;
}

/* line 402, ../scss/includes/_slider.scss */
.top .flexslider .slides > li {
  padding: 20px 20px 20px 0;
}
/* line 404, ../scss/includes/_slider.scss */
.top .flexslider .slides > li.last {
  margin-left: 0;
}
/* line 413, ../scss/includes/_slider.scss */
.top .flexslider .infobox-slider-wrapper .box article {
  min-height: auto;
}

/* line 422, ../scss/includes/_slider.scss */
.main-content-columns .flexslider .slides > li {
  padding: 0;
}
/* line 423, ../scss/includes/_slider.scss */
.main-content-columns .flexslider .flex-direction-nav {
  top: 50%;
}

/* line 427, ../scss/includes/_slider.scss */
aside.secondary .flexslider .slides > li {
  padding: 0;
}
/* line 428, ../scss/includes/_slider.scss */
aside.secondary .flexslider .flex-direction-nav {
  top: 50%;
}

/* line 432, ../scss/includes/_slider.scss */
.phone .infobox-slider-grid {
  padding: 0;
}
/* line 434, ../scss/includes/_slider.scss */
.phone .infobox-slider-grid .flexslider {
  margin-bottom: 0;
}
/* line 435, ../scss/includes/_slider.scss */
.phone .infobox-slider-grid .box article {
  padding: 0 10px;
}
/* line 440, ../scss/includes/_slider.scss */
.phone .flexslider .slides > li {
  padding: 0;
  margin: 0 !important;
}
/* line 442, ../scss/includes/_slider.scss */
.phone .flexslider {
  margin-bottom: 2em;
}
/* line 444, ../scss/includes/_slider.scss */
.phone .flexslider .box {
  box-sizing: border-box;
  border-bottom: 5px solid #6c6c6c;
  margin-bottom: 2.15em;
  padding-bottom: 40px;
  padding-top: 0;
}
/* line 451, ../scss/includes/_slider.scss */
.phone .flexslider .box.webshopboks {
  border-bottom: 0px none;
}
/* line 455, ../scss/includes/_slider.scss */
.phone .flexslider .box h4 {
  font-size: 1.5em;
  text-transform: none;
  color: #1e1f23;
  font-weight: 700;
  text-overflow: ellipsis;
}
/* line 463, ../scss/includes/_slider.scss */
.phone .flexslider .box.green-theme {
  border-color: #9ead01;
}
/* line 467, ../scss/includes/_slider.scss */
.phone .flexslider .box.purple-theme {
  border-color: #46065c;
}
/* line 471, ../scss/includes/_slider.scss */
.phone .flexslider .box.orange-theme {
  border-color: #f46e02;
}
/* line 475, ../scss/includes/_slider.scss */
.phone .flexslider .box.red-theme {
  border-color: #ae1a28;
}
/* line 479, ../scss/includes/_slider.scss */
.phone .flexslider .box.red-theme.box-no-border h4 {
  color: white;
}
/* line 486, ../scss/includes/_slider.scss */
.phone .flexslider .box.grey-theme h4 {
  color: white;
}
/* line 495, ../scss/includes/_slider.scss */
.phone .top .flexslider .slides > li {
  padding: 0;
}
/* line 503, ../scss/includes/_slider.scss */
.phone .main-content-columns .box,
.phone .secondary .box {
  border-bottom: 0;
}

/* line 1, ../scss/includes/_news-ticker.scss */
.news-wrapper {
  clear: left;
  margin-bottom: 2em;
}
/* line 7, ../scss/includes/_news-ticker.scss */
.news-wrapper .newsitem a {
  text-decoration: none;
}

/* line 21, ../scss/includes/print/_grid.scss */
.latests-news:before, .latests-news:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.latests-news:after {
  clear: both;
}
/* line 16, ../scss/includes/_news-ticker.scss */
.latests-news .label, .latests-news .latest {
  float: left;
}
/* line 19, ../scss/includes/_news-ticker.scss */
.latests-news .label {
  width: 16.5%;
}
/* line 22, ../scss/includes/_news-ticker.scss */
.latests-news .allnews {
  float: right;
  text-align: right;
}
/* line 26, ../scss/includes/_news-ticker.scss */
.latests-news .allnews .icon-right-open, .latests-news .allnews .box-listboks em, .box-listboks .latests-news .allnews em {
  font-size: 0.8em;
  float: left;
  margin-right: 3px;
}

/* line 35, ../scss/includes/_news-ticker.scss */
.newsheader h2 {
  color: #25465f;
  font-size: 1.714em;
  text-transform: uppercase;
}
/* line 40, ../scss/includes/_news-ticker.scss */
.newsheader h2 span {
  font-weight: normal;
  font-size: 14px;
}
/* line 44, ../scss/includes/_news-ticker.scss */
.newsheader h2 span a {
  color: #25465f;
  text-decoration: none;
}
/* line 47, ../scss/includes/_news-ticker.scss */
.newsheader h2 span a:hover {
  text-decoration: underline;
}

/* line 55, ../scss/includes/_news-ticker.scss */
.phone .latests-news {
  padding: 0;
}
/* line 59, ../scss/includes/_news-ticker.scss */
.phone .latests-news .newsheader h2 {
  margin-top: 3em;
}
/* line 61, ../scss/includes/_news-ticker.scss */
.phone .latests-news .newsheader h2 span {
  display: block;
  text-align: left;
  margin-top: .5em;
}
/* line 69, ../scss/includes/_news-ticker.scss */
.phone .latests-news .label, .phone .latests-news .latest {
  display: inline;
  float: none;
}
/* line 74, ../scss/includes/_news-ticker.scss */
.phone .latests-news .allnews {
  float: none;
}
/* line 78, ../scss/includes/_news-ticker.scss */
.phone .latests-news .newsitem {
  float: none;
  width: 100%;
  margin-bottom: 1em;
}

/* line 86, ../scss/includes/_news-ticker.scss */
.latest .newsitem {
  float: left;
  width: 220px;
  margin-right: 1.429em;
}
/* line 91, ../scss/includes/_news-ticker.scss */
.latest .newsitem:last-of-type {
  margin: 0;
}
/* line 95, ../scss/includes/_news-ticker.scss */
.latest .newsitem .date {
  color: #a2a4a8;
  font-size: 12px;
  margin-top: .5em;
  display: block;
}
/* line 101, ../scss/includes/_news-ticker.scss */
.latest .newsitem .date.date-subsite {
  display: none;
}
/* line 106, ../scss/includes/_news-ticker.scss */
.latest .newsitem h3 {
  margin-top: .3em;
}
/* line 110, ../scss/includes/_news-ticker.scss */
.latest .newsitem img {
  max-width: 100%;
}

/* ==========================================================================
   Dokumentliste
   ========================================================================== */
/* line 12, ../scss/includes/_dokumentliste.scss */
.documentlist {
  width: 100%;
  border-top: 1px solid #e0d4d5;
  margin: 0 0 2.15em 0;
}
/* line 21, ../scss/includes/print/_grid.scss */
.documentlist:before, .documentlist:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.documentlist:after {
  clear: both;
}

/* ==========================================================================
   Dokumentliste: Nyhedselement
   ========================================================================== */
/* line 25, ../scss/includes/_dokumentliste.scss */
.phone .top-wrap {
  padding: 1em 10px;
}

/* line 29, ../scss/includes/_dokumentliste.scss */
.dokumentliste {
  padding-top: 1.2em;
}

/* line 37, ../scss/includes/_dokumentliste.scss */
.news-item {
  position: relative;
  border-bottom: 1px solid #e0d4d5;
  border-top: 1px solid #fff;
  padding: 1.5em 0;
}
/* line 21, ../scss/includes/print/_grid.scss */
.news-item:before, .news-item:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.news-item:after {
  clear: both;
}
/* line 44, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-img {
  margin: 0.3em 0em 0.3em 0;
}
/* line 47, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-img img {
  max-width: 100%;
}
/* line 54, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-main-content h2 {
  margin: 0 0 0.8em 0;
}
/* line 58, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-main-content p {
  margin-bottom: 0.8em;
}
/* line 62, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-main-content a {
  font-weight: bold;
}
/* line 65, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-main-content a em {
  width: 0.9em;
  font-size: 1.1em;
  color: #cc051f;
  margin: 0.2em 0 0 0.6em;
  text-decoration: none;
}
/* line 77, ../scss/includes/_dokumentliste.scss */
.news-item .news-item-ghost-container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 87, ../scss/includes/_dokumentliste.scss */
.news-item-dato {
  padding-right: 0.25em;
  font-size: 0.85em;
  text-transform: uppercase;
  color: #434343;
}
/* line 93, ../scss/includes/_dokumentliste.scss */
.news-item-dato:after {
  content: ":";
}

/* line 99, ../scss/includes/_dokumentliste.scss */
.documentlist-imagelayout .news-item {
  margin: 0 0 1em 0;
}

/* ==========================================================================
   Documentlist grid on desktop
   ========================================================================== */
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-1-3 .documentlist:before, .desktop.col-1-3 .documentlist:after, .desktop.col-3-1 .documentlist:before, .desktop.col-3-1 .documentlist:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-1-3 .documentlist:after, .desktop.col-3-1 .documentlist:after {
  clear: both;
}
/* line 114, ../scss/includes/_dokumentliste.scss */
.desktop.col-1-3 .documentlist .news-item-img, .desktop.col-3-1 .documentlist .news-item-img {
  float: left;
  width: 220px;
  margin-left: 480px;
  margin-right: -100%;
}
/* line 115, ../scss/includes/_dokumentliste.scss */
.desktop.col-1-3 .documentlist .news-item-main-content, .desktop.col-3-1 .documentlist .news-item-main-content {
  float: left;
  width: 460px;
  margin-left: 0px;
  margin-right: -100%;
}
/* line 21, ../scss/includes/print/_grid.scss */
.desktop.col-4 .documentlist:before, .desktop.col-4 .documentlist:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.desktop.col-4 .documentlist:after {
  clear: both;
}
/* line 121, ../scss/includes/_dokumentliste.scss */
.desktop.col-4 .documentlist .news-item-img {
  float: left;
  width: 220px;
  margin-left: 720px;
  margin-right: -100%;
}
/* line 122, ../scss/includes/_dokumentliste.scss */
.desktop.col-4 .documentlist .news-item-main-content {
  float: left;
  width: 700px;
  margin-left: 0px;
  margin-right: -100%;
}

/* ==========================================================================
   Documentlist grid on other devices
   ========================================================================== */
/* line 21, ../scss/includes/print/_grid.scss */
.phone .documentlist:before, .phone .documentlist:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.phone .documentlist:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.phone .documentlist > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.phone .documentlist .alpha, .phone .documentlist > *:first-child, .phone .documentlist > *:nth-child(1n+1) {
  clear: left;
  margin-left: 0;
}

/* ==========================================================================
   Dokumentliste: Paging
   ========================================================================== */
/* line 144, ../scss/includes/_dokumentliste.scss */
.pagination {
  width: 100% !important;
  padding: 1em 0;
  text-align: center;
}
/* line 21, ../scss/includes/print/_grid.scss */
.pagination:before, .pagination:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.pagination:after {
  clear: both;
}
/* line 150, ../scss/includes/_dokumentliste.scss */
.pagination .previous {
  margin: 0 0.5em 0 0;
}
/* line 151, ../scss/includes/_dokumentliste.scss */
.pagination .number {
  margin: 0 0.5em;
}
/* line 153, ../scss/includes/_dokumentliste.scss */
.pagination .active,
.pagination .active:hover {
  font-weight: bold;
  color: #434343;
  text-decoration: none;
  pointer: cursor;
}
/* line 159, ../scss/includes/_dokumentliste.scss */
.pagination .next {
  margin: 0 0 0 0.5em;
}

/* ==========================================================================
   Class der bruges på "Tilbage til oversigten" knap på dokumentlister, hvis det er valgt under tilvalg
   ========================================================================== */
/* line 167, ../scss/includes/_dokumentliste.scss */
.btn-back {
  display: block;
  margin: 0 0 0.5em 0;
}

/* ==========================================================================
   Aside elements
   ========================================================================== */
/* line 5, ../scss/includes/_infoboks.scss */
.box {
  box-sizing: border-box;
  border-left: 3px solid #6c6c6c;
  padding: 10px 0 10px 17px;
  margin-bottom: 2.15em;
}
/* line 11, ../scss/includes/_infoboks.scss */
.box h4 {
  color: #cc051f;
  font-size: 1.1em;
  line-height: 1.2em;
  list-style: 1.4em;
  margin: 0px;
  padding: 0 0 8px 0;
  text-transform: uppercase;
}
/* line 22, ../scss/includes/_infoboks.scss */
.box .image-wrap {
  margin-bottom: 20px;
}
/* line 25, ../scss/includes/_infoboks.scss */
.box .image-wrap img {
  max-width: 100%;
}
/* line 30, ../scss/includes/_infoboks.scss */
.box .box-manchet {
  font-weight: 700;
  margin-bottom: 10px;
}
/* line 35, ../scss/includes/_infoboks.scss */
.box > a {
  display: block;
  margin-top: 1em;
  border-top: 1px dotted #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 0.5em;
  text-align: right;
}
/* line 44, ../scss/includes/_infoboks.scss */
.box a {
  text-decoration: underline;
}
/* line 47, ../scss/includes/_infoboks.scss */
.box a:hover {
  text-decoration: none;
}
/* line 53, ../scss/includes/_infoboks.scss */
.box.box-infoboks a {
  color: inherit;
  text-decoration: none;
}
/* line 57, ../scss/includes/_infoboks.scss */
.box.box-infoboks a:hover {
  color: inherit;
  text-decoration: none;
}
/* line 61, ../scss/includes/_infoboks.scss */
.box.box-infoboks a:hover h4 {
  text-decoration: underline;
}
/* line 68, ../scss/includes/_infoboks.scss */
.box.box-infoboks h4 a:hover {
  text-decoration: underline;
}
/* line 75, ../scss/includes/_infoboks.scss */
.box ul,
.box ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 80, ../scss/includes/_infoboks.scss */
.box li {
  margin-bottom: 0;
}

/* line 85, ../scss/includes/_infoboks.scss */
.box-no-border {
  background: #6c6c6c;
  border: 0px none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
  padding: 20px;
}
/* line 94, ../scss/includes/_infoboks.scss */
.box-no-border a {
  color: #ffffff;
}
/* line 98, ../scss/includes/_infoboks.scss */
.box-no-border.green-theme {
  background: #9ead01;
  color: #000;
}
/* line 101, ../scss/includes/_infoboks.scss */
.box-no-border.green-theme a {
  color: #000;
}
/* line 105, ../scss/includes/_infoboks.scss */
.box-no-border.purple-theme {
  background: #46065c;
}
/* line 108, ../scss/includes/_infoboks.scss */
.box-no-border.orange-theme {
  background: #f46e02;
  color: #000;
}
/* line 112, ../scss/includes/_infoboks.scss */
.box-no-border.orange-theme a {
  color: #000;
}
/* line 116, ../scss/includes/_infoboks.scss */
.box-no-border.red-theme {
  background: #ae1a28;
}

/* line 122, ../scss/includes/_infoboks.scss */
.green-theme {
  border-color: #9ead01;
}

/* line 125, ../scss/includes/_infoboks.scss */
.purple-theme {
  border-color: #46065c;
}

/* line 128, ../scss/includes/_infoboks.scss */
.orange-theme {
  border-color: #f46e02;
}

/* line 131, ../scss/includes/_infoboks.scss */
.red-theme {
  border-color: #ae1a28;
}

/* line 137, ../scss/includes/_infoboks.scss */
.Billedboks {
  position: relative;
}
/* line 140, ../scss/includes/_infoboks.scss */
.Billedboks > article {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  background: #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  margin: 0 0 0 17px;
  padding: 0.9em 1em 0.8em 20px;
  left: 0;
  right: 0;
}
/* line 152, ../scss/includes/_infoboks.scss */
.Billedboks h4 {
  padding: 0;
}
/* line 156, ../scss/includes/_infoboks.scss */
.Billedboks .image-wrap {
  margin: 0;
}
/* line 158, ../scss/includes/_infoboks.scss */
.Billedboks.box-no-border {
  border-radius: 0;
  padding: 0;
  color: #1e1f23;
}
/* line 163, ../scss/includes/_infoboks.scss */
.Billedboks.box-no-border > article {
  bottom: 0;
  margin: 0;
}
/* line 168, ../scss/includes/_infoboks.scss */
.Billedboks.box-no-border a {
  color: #cc051f;
}
/* line 172, ../scss/includes/_infoboks.scss */
.Billedboks.box-no-border .box-manchet {
  margin-bottom: 0;
}

/* line 179, ../scss/includes/_infoboks.scss */
.Knapboks h4 {
  font-size: 20px;
  text-transform: none;
  color: #1e1f23;
  padding: 0 0 0.4em 0;
  font-weight: 700;
}
/* line 187, ../scss/includes/_infoboks.scss */
.Knapboks .linkHolder {
  margin-top: 1.2em;
}
/* line 191, ../scss/includes/_infoboks.scss */
.Knapboks .linkHolder a {
  display: block;
  text-align: center;
  text-decoration: none;
}
/* line 202, ../scss/includes/_infoboks.scss */
.Knapboks.box-no-border.grey-theme h4, .Knapboks.box-no-border.purple-theme h4, .Knapboks.box-no-border.red-theme h4 {
  color: #fff;
}

/* line 209, ../scss/includes/_infoboks.scss */
.Bannerboks {
  position: relative;
  width: 100%;
  margin-left: 0px;
}
/* line 214, ../scss/includes/_infoboks.scss */
.Bannerboks h4 {
  padding-left: 8px;
}
/* line 219, ../scss/includes/_infoboks.scss */
.Bannerboks.box-no-border h4 {
  padding-left: 0;
}
/* line 224, ../scss/includes/_infoboks.scss */
.Bannerboks article {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  padding: 1.3em 1.6em 1em 20px;
  font-size: 1em;
  line-height: 1.45em;
}
/* line 234, ../scss/includes/_infoboks.scss */
.Bannerboks article * {
  color: #fff;
}
/* line 240, ../scss/includes/_infoboks.scss */
.Bannerboks a {
  text-decoration: none;
}
/* line 244, ../scss/includes/_infoboks.scss */
.Bannerboks .image-wrap {
  margin: 0;
}
/* line 246, ../scss/includes/_infoboks.scss */
.Bannerboks.box-no-border {
  border-radius: 0;
  padding: 0;
}

/* line 254, ../scss/includes/_infoboks.scss */
.Testemonialboks article h4 {
  font-size: 1em;
  font-weight: normal;
  text-transform: none;
}
/* line 260, ../scss/includes/_infoboks.scss */
.Testemonialboks .testemonial {
  display: none;
}

/* line 269, ../scss/includes/_infoboks.scss */
.flexslider-full-width .Bannerboks h4 {
  font-size: 1.571em;
  line-height: 1.227em;
  margin: 0 0 1em 0;
  padding: 0;
}

/* line 280, ../scss/includes/_infoboks.scss */
.phone .Bannerboks article {
  top: auto;
}
/* line 286, ../scss/includes/_infoboks.scss */
.phone .flexslider .slides .box-infoboks ul {
  padding: 0 0 0 1.5em;
}
/* line 289, ../scss/includes/_infoboks.scss */
.phone .flexslider .slides .box-infoboks li {
  display: list-item;
  margin: 0 0 1em;
  list-style: disc;
}

/* line 298, ../scss/includes/_infoboks.scss */
aside.secondary .box {
  height: auto !important;
}

/* line 302, ../scss/includes/_infoboks.scss */
.boxlink--ldk {
  display: none;
}

/* line 306, ../scss/includes/_infoboks.scss */
.boxlink--ldk span {
  display: none;
}

/* line 310, ../scss/includes/_infoboks.scss */
.box .box-ghost-link {
  display: none;
}

/* ==========================================================================
   Listbox
   ========================================================================== */
/* line 4, ../scss/includes/_listboks.scss */
.box-listboks {
  padding: 10px 0 10px 17px;
}
/* line 7, ../scss/includes/_listboks.scss */
.box-listboks h2 {
  font-size: 20px;
  text-transform: none;
  color: #1e1f23;
  padding: 0 0 0.4em 0;
  font-weight: 700;
  margin: 0;
}
/* line 16, ../scss/includes/_listboks.scss */
.box-listboks .list-content {
  font-weight: 700;
  margin-bottom: 10px;
}
/* line 21, ../scss/includes/_listboks.scss */
.box-listboks em {
  width: 0.8em;
  font-size: 1.3em;
  color: #1e1f23;
  display: table-cell;
  line-height: 0.5em;
  padding: 0;
  margin: 0;
}
/* line 32, ../scss/includes/_listboks.scss */
.box-listboks a {
  padding: 0.5em;
  line-height: 1.5em;
  color: inherit;
  font-size: 2em;
  color: #434343;
  display: table-cell;
  text-decoration: none;
}
/* line 41, ../scss/includes/_listboks.scss */
.box-listboks a:hover {
  color: #ae1a28;
  text-decoration: none;
}
/* line 48, ../scss/includes/_listboks.scss */
.box-listboks.box-no-border h2, .box-listboks.box-no-border em {
  color: white;
}
/* line 52, ../scss/includes/_listboks.scss */
.box-listboks.box-no-border a:hover {
  color: white !important;
  text-decoration: none;
}
/* line 60, ../scss/includes/_listboks.scss */
.box-listboks.box-no-border.green-theme h2, .box-listboks.box-no-border.green-theme em, .box-listboks.box-no-border.orange-theme h2, .box-listboks.box-no-border.orange-theme em {
  color: #1e1f23;
}
/* line 68, ../scss/includes/_listboks.scss */
.box-listboks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 73, ../scss/includes/_listboks.scss */
.box-listboks ul li {
  margin: 0;
  font-size: 0.5em;
}
/* line 76, ../scss/includes/_listboks.scss */
.box-listboks ul li:last-child {
  border-bottom: none;
}
/* line 79, ../scss/includes/_listboks.scss */
.box-listboks ul li.active {
  color: #373538;
}
/* line 81, ../scss/includes/_listboks.scss */
.box-listboks ul li.active em {
  width: 0.8em;
  font-size: 1.3em;
  color: #1e1f23;
  display: table-cell;
  line-height: 0.5em;
  padding: 0;
  margin: 0;
}

/* line 3, ../scss/includes/_scriptboks.scss */
.box-scriptboks {
  display: table;
  width: 100%;
  margin-left: 0px !important;
}
/* line 7, ../scss/includes/_scriptboks.scss */
.box-scriptboks > div {
  display: table-row;
}
/* line 9, ../scss/includes/_scriptboks.scss */
.box-scriptboks > div > * {
  display: table-cell;
  vertical-align: top;
}
/* line 16, ../scss/includes/_scriptboks.scss */
.box-scriptboks .script-content iframe {
  max-width: 100% !important;
}

/* line 24, ../scss/includes/_scriptboks.scss */
.desktop .secondary .fb_iframe_widget iframe, .desktop .secondary .fb_iframe_widget span {
  max-width: 100%;
  width: 200px !important;
}

/* line 33, ../scss/includes/_scriptboks.scss */
.main-content-columns .fb_iframe_widget iframe, .main-content-columns .fb_iframe_widget span {
  max-width: 100%;
  width: 100%;
}

/* line 1, ../scss/includes/_socialboks.scss */
.social-box {
  border: 1px solid #c4cde0;
  background: #fff;
}
/* line 4, ../scss/includes/_socialboks.scss */
.social-box .tabs {
  background: #eef0f6;
}
/* line 6, ../scss/includes/_socialboks.scss */
.social-box .tabs:after, .social-box .tabs:before {
  content: "";
  display: table;
}
/* line 10, ../scss/includes/_socialboks.scss */
.social-box .tabs:after {
  clear: both;
}
/* line 13, ../scss/includes/_socialboks.scss */
.social-box .tabs {
  *zoom: 1;
}
/* line 17, ../scss/includes/_socialboks.scss */
.social-box .tabs .tab {
  float: left;
  width: 50%;
  height: 2.143em;
  text-align: center;
  line-height: 2.143em;
}
/* line 23, ../scss/includes/_socialboks.scss */
.social-box .tabs .tab .icon {
  display: inline-block;
  width: 1.429em;
  height: 1.429em;
  border-radius: 0.143em;
  color: #fff;
  text-align: center;
  text-shadow: none;
  font-size: 1em;
  line-height: 1.429em;
}
/* line 34, ../scss/includes/_socialboks.scss */
.social-box .tabs .tab .icon-facebook {
  background: #3b5998;
}
/* line 37, ../scss/includes/_socialboks.scss */
.social-box .tabs .tab .icon-twitter {
  background: #00acee;
}
/* line 40, ../scss/includes/_socialboks.scss */
.social-box .tabs .tab a {
  color: #434343;
  display: block;
  text-decoration: none;
}
/* line 44, ../scss/includes/_socialboks.scss */
.social-box .tabs .tab a.active {
  background: #fff;
}
/* line 51, ../scss/includes/_socialboks.scss */
.social-box .content > div {
  display: none;
}
/* line 53, ../scss/includes/_socialboks.scss */
.social-box .content > div.active {
  display: block;
}

/* ==========================================================================
   container, slides, images
   ========================================================================== */
/* line 5, ../scss/includes/_slider.scss */
.ldk-slider {
  display: none;
}

/* line 9, ../scss/includes/_slider.scss */
.flexslider-wrapper {
  background: #fff;
  margin-bottom: 2em;
  clear: left;
}

/* line 14, ../scss/includes/_slider.scss */
.flexslider-title {
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 1.714em;
}

/* line 22, ../scss/includes/_slider.scss */
.flexslider {
  position: relative;
  margin: 0 0 2em 0;
  padding: 0;
  clear: left;
  /* Fjern selection mulighed på hele banner modulet */
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  user-select: none;
  /* Liste med slides */
  /* ==========================================================================
     Navigation
     ========================================================================== */
  /* Frem og tilbage knapper */
}
/* line 34, ../scss/includes/_slider.scss */
.flexslider .slides {
  overflow: hidden;
}
/* line 37, ../scss/includes/_slider.scss */
.flexslider .slides > li {
  display: none;
  height: inherit;
  list-style: none;
  padding: 20px 20px 20px 0;
  margin: 0;
}
/* line 45, ../scss/includes/_slider.scss */
.flexslider .slides > li img {
  max-width: 100%;
  display: block;
}
/* line 49, ../scss/includes/_slider.scss */
.flexslider .slides > li .box {
  margin-bottom: 0;
}
/* line 54, ../scss/includes/_slider.scss */
.flexslider .slides:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}
/* line 63, ../scss/includes/_slider.scss */
.flexslider .slides .donationsboks {
  width: 100%;
  background-color: #e7e5e7;
  font-size: 10px;
  font-weight: bold;
  color: #5a585b;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
  position: absolute;
}
/* line 82, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav {
  position: absolute;
  z-index: 1;
  top: 60px;
  width: 100%;
  list-style: none;
}
/* line 91, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
  position: absolute;
  width: auto;
  font-family: "fontello";
  font-size: 3em;
  margin-top: -0.238em;
  cursor: pointer;
  text-decoration: none;
}
/* line 100, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-prev {
  padding: 0;
  left: -10px;
}
/* line 104, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-prev:before {
  background: #cc051f;
  color: #ffffff;
  padding: 0 5px;
}
/* line 110, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-next {
  padding: 0;
  right: -10px;
}
/* line 114, ../scss/includes/_slider.scss */
.flexslider .flex-direction-nav .flex-next:before {
  background: #cc051f;
  color: #ffffff;
  padding: 0 5px;
}

/* line 124, ../scss/includes/_slider.scss */
.flexslider-wrapper .flexslider .slides > li {
  margin-right: 0;
}
/* line 129, ../scss/includes/_slider.scss */
.flexslider-wrapper .flexslider .flex-direction-nav .flex-prev {
  left: 0;
}
/* line 132, ../scss/includes/_slider.scss */
.flexslider-wrapper .flexslider .flex-direction-nav .flex-next {
  right: 0;
}

/* line 139, ../scss/includes/_slider.scss */
.secondary .flexslider .slides > li {
  margin-right: 0;
}

/* line 149, ../scss/includes/_slider.scss */
.main-content-columns .flexslider-wrapper .flexslider .slides > li {
  margin-right: 0;
}

/* line 154, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .slides > li {
  margin-right: 0;
}

/* line 158, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .slides > li {
  padding: 0 !important;
}
/* line 161, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flexslider-inner {
  padding: 0;
  position: relative;
}
/* line 165, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flexslider-inner article {
  position: absolute;
  top: 5.4em;
  left: 3em;
  padding: 1.2em 1.7em 1.5em 1.7em;
  max-width: 22.500em;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
/* line 174, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flexslider-inner article h4 {
  color: #ffffff;
}
/* line 180, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav {
  top: 45%;
}
/* line 182, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav .flex-next {
  right: 10px !important;
}
/* line 185, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav .flex-prev {
  left: 10px !important;
}
/* line 189, ../scss/includes/_slider.scss */
.flexslider.flexslider-full-width .flex-direction-nav .flex-next:before, .flexslider.flexslider-full-width .flex-direction-nav .flex-prev:before {
  background: transparent;
}

/* line 202, ../scss/includes/_slider.scss */
.secondary .flexslider.flexslider-webshop .slides > li {
  margin-right: 0;
}

/* line 209, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box,
.top .infobox-slider-wrapper .box {
  box-sizing: border-box;
  border-bottom: 5px solid #6c6c6c;
  margin-bottom: 2.15em;
  padding-bottom: 30px;
  padding-top: 0;
}
/* line 217, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.green-theme,
.top .infobox-slider-wrapper .box.green-theme {
  border-color: #9ead01;
}
/* line 220, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.purple-theme,
.top .infobox-slider-wrapper .box.purple-theme {
  border-color: #46065c;
}
/* line 223, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.orange-theme,
.top .infobox-slider-wrapper .box.orange-theme {
  border-color: #f46e02;
}
/* line 226, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.red-theme,
.top .infobox-slider-wrapper .box.red-theme {
  border-color: #ae1a28;
}
/* line 230, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box h4,
.top .infobox-slider-wrapper .box h4 {
  font-size: 1.5em;
  text-transform: none;
  color: #1e1f23;
  font-weight: 700;
  text-overflow: ellipsis;
}
/* line 238, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box article,
.top .infobox-slider-wrapper .box article {
  /*min-height: 180px;*/
  overflow: hidden;
  padding-right: 10px;
}
/* line 245, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks,
.top .infobox-slider-wrapper .box.Billedboks {
  color: #1e1f23;
}
/* line 247, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks h4,
.top .infobox-slider-wrapper .box.Billedboks h4 {
  color: #1e1f23 !important;
}
/* line 250, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks a,
.top .infobox-slider-wrapper .box.Billedboks a {
  color: #ae1a28;
  text-decoration: none;
}
/* line 254, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box.Billedboks article,
.top .infobox-slider-wrapper .box.Billedboks article {
  height: auto;
}
/* line 260, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border,
.top .infobox-slider-wrapper .box-no-border {
  padding-left: 20px;
  background: #6c6c6c;
  border: 0px none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #ffffff;
  padding: 20px 20px 40px 20px;
}
/* line 270, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border article,
.top .infobox-slider-wrapper .box-no-border article {
  min-height: 180px;
  overflow: hidden;
}
/* line 275, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border a,
.top .infobox-slider-wrapper .box-no-border a {
  color: #ffffff;
}
/* line 279, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.green-theme,
.top .infobox-slider-wrapper .box-no-border.green-theme {
  background: #9ead01;
  color: #000;
}
/* line 282, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.green-theme a,
.top .infobox-slider-wrapper .box-no-border.green-theme a {
  color: #000;
}
/* line 287, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.purple-theme,
.top .infobox-slider-wrapper .box-no-border.purple-theme {
  background: #46065c;
}
/* line 289, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.purple-theme h4,
.top .infobox-slider-wrapper .box-no-border.purple-theme h4 {
  color: #fff;
}
/* line 292, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.orange-theme,
.top .infobox-slider-wrapper .box-no-border.orange-theme {
  background: #f46e02;
  color: #000;
}
/* line 296, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.orange-theme a,
.top .infobox-slider-wrapper .box-no-border.orange-theme a {
  color: #000;
}
/* line 301, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.red-theme,
.top .infobox-slider-wrapper .box-no-border.red-theme {
  background: #ae1a28;
}
/* line 303, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.red-theme h4,
.top .infobox-slider-wrapper .box-no-border.red-theme h4 {
  color: #fff;
}
/* line 307, ../scss/includes/_slider.scss */
.bottom .infobox-slider-wrapper .box-no-border.grey-theme h4,
.top .infobox-slider-wrapper .box-no-border.grey-theme h4 {
  color: white;
}

/* line 315, ../scss/includes/_slider.scss */
.infobox-slider-grid .slides > li {
  zoom: 1;
  display: block;
  float: left;
  width: 940px;
  margin-left: 0px;
  margin-right: -100%;
  padding: 20px 10px;
}
/* line 21, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:before, .infobox-slider-grid .slides > li:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:after {
  clear: both;
}
/* line 21, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:before, .infobox-slider-grid .slides > li:after {
  content: "";
  display: table;
}
/* line 25, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li:after {
  clear: both;
}
/* line 69, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li > * {
  float: left;
  width: 220px;
  margin-left: 20px;
}
/* line 78, ../scss/includes/print/_grid.scss */
.infobox-slider-grid .slides > li .alpha, .infobox-slider-grid .slides > li > *:first-child, .infobox-slider-grid .slides > li > *:nth-child(4n+1) {
  clear: left;
  margin-left: 0;
}

/* line 325, ../scss/includes/_slider.scss */
.flexslider-full-width {
  margin: 2em 10px;
}
/* line 328, ../scss/includes/_slider.scss */
.flexslider-full-width .slides > li {
  padding: 0;
}
/* line 333, ../scss/includes/_slider.scss */
.flexslider-full-width .flex-direction-nav {
  top: 43%;
}
/* line 338, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.green-theme {
  background: #9ead01;
  color: #000;
}
/* line 341, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.green-theme a {
  color: #000;
}
/* line 346, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.purple-theme {
  background: #46065c;
}
/* line 348, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.purple-theme h4 {
  color: #fff;
}
/* line 351, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.orange-theme {
  background: #f46e02;
  color: #000;
}
/* line 355, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.orange-theme a {
  color: #000;
}
/* line 360, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.red-theme {
  background: #ae1a28;
}
/* line 362, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.red-theme h4 {
  color: #fff;
}
/* line 366, ../scss/includes/_slider.scss */
.flexslider-full-width .box-no-border.grey-theme h4 {
  color: white;
}
/* line 373, ../scss/includes/_slider.scss */
.flexslider-full-width .box h4 {
  font-size: 1.5em;
  text-transform: none;
  color: #1e1f23;
  font-weight: 700;
  text-overflow: ellipsis;
}
/* line 381, ../scss/includes/_slider.scss */
.flexslider-full-width .box.green-theme {
  border-color: #9ead01;
}
/* line 385, ../scss/includes/_slider.scss */
.flexslider-full-width .box.purple-theme {
  border-color: #46065c;
}
/* line 390, ../scss/includes/_slider.scss */
.flexslider-full-width .box.orange-theme {
  border-color: #f46e02;
}
/* line 394, ../scss/includes/_slider.scss */
.flexslider-full-width .box.red-theme {
  border-color: #ae1a28;
}

/* line 402, ../scss/includes/_slider.scss */
.top .flexslider .slides > li {
  padding: 20px 20px 20px 0;
}
/* line 404, ../scss/includes/_slider.scss */
.top .flexslider .slides > li.last {
  margin-left: 0;
}
/* line 413, ../scss/includes/_slider.scss */
.top .flexslider .infobox-slider-wrapper .box article {
  min-height: auto;
}

/* line 422, ../scss/includes/_slider.scss */
.main-content-columns .flexslider .slides > li {
  padding: 0;
}
/* line 423, ../scss/includes/_slider.scss */
.main-content-columns .flexslider .flex-direction-nav {
  top: 50%;
}

/* line 427, ../scss/includes/_slider.scss */
aside.secondary .flexslider .slides > li {
  padding: 0;
}
/* line 428, ../scss/includes/_slider.scss */
aside.secondary .flexslider .flex-direction-nav {
  top: 50%;
}

/* line 432, ../scss/includes/_slider.scss */
.phone .infobox-slider-grid {
  padding: 0;
}
/* line 434, ../scss/includes/_slider.scss */
.phone .infobox-slider-grid .flexslider {
  margin-bottom: 0;
}
/* line 435, ../scss/includes/_slider.scss */
.phone .infobox-slider-grid .box article {
  padding: 0 10px;
}
/* line 440, ../scss/includes/_slider.scss */
.phone .flexslider .slides > li {
  padding: 0;
  margin: 0 !important;
}
/* line 442, ../scss/includes/_slider.scss */
.phone .flexslider {
  margin-bottom: 2em;
}
/* line 444, ../scss/includes/_slider.scss */
.phone .flexslider .box {
  box-sizing: border-box;
  border-bottom: 5px solid #6c6c6c;
  margin-bottom: 2.15em;
  padding-bottom: 40px;
  padding-top: 0;
}
/* line 451, ../scss/includes/_slider.scss */
.phone .flexslider .box.webshopboks {
  border-bottom: 0px none;
}
/* line 455, ../scss/includes/_slider.scss */
.phone .flexslider .box h4 {
  font-size: 1.5em;
  text-transform: none;
  color: #1e1f23;
  font-weight: 700;
  text-overflow: ellipsis;
}
/* line 463, ../scss/includes/_slider.scss */
.phone .flexslider .box.green-theme {
  border-color: #9ead01;
}
/* line 467, ../scss/includes/_slider.scss */
.phone .flexslider .box.purple-theme {
  border-color: #46065c;
}
/* line 471, ../scss/includes/_slider.scss */
.phone .flexslider .box.orange-theme {
  border-color: #f46e02;
}
/* line 475, ../scss/includes/_slider.scss */
.phone .flexslider .box.red-theme {
  border-color: #ae1a28;
}
/* line 479, ../scss/includes/_slider.scss */
.phone .flexslider .box.red-theme.box-no-border h4 {
  color: white;
}
/* line 486, ../scss/includes/_slider.scss */
.phone .flexslider .box.grey-theme h4 {
  color: white;
}
/* line 495, ../scss/includes/_slider.scss */
.phone .top .flexslider .slides > li {
  padding: 0;
}
/* line 503, ../scss/includes/_slider.scss */
.phone .main-content-columns .box,
.phone .secondary .box {
  border-bottom: 0;
}

/* line 2, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul {
  margin-left: 0;
}
/* line 5, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul li {
  list-style: none;
}
/* line 8, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul li:before {
  display: none;
}
/* line 12, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul li a {
  font-family: "Ubuntu", sans-serif;
  font-size: 0.875em;
  color: #cc051f;
  text-decoration: none;
}
/* line 18, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul li a:hover {
  color: #5a585b;
}
/* line 22, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul li a em {
  width: 0.9em;
  font-size: 1.1em;
}
/* line 31, ../scss/includes/_sitemap.scss */
.main-text .sitemap ul ul {
  margin-left: 10px;
}

/* line 4, ../scss/includes/_webshop-produktboks.scss */
aside.top .box.webshopboks, aside.bottom .box.webshopboks {
  border: 1px solid #e7e5e7;
}

/* line 9, ../scss/includes/_webshop-produktboks.scss */
.webshopboks {
  box-sizing: border-box;
  background-color: white;
  border: 1px solid #e7e5e7;
  height: 310px;
  padding: 0;
  position: relative;
}
/* line 16, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .produkt-billede {
  height: 160px;
  margin: 1em 15px 0em 15px;
  overflow: hidden;
}
/* line 21, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-content {
  height: 80px;
  overflow: hidden;
}
/* line 25, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-heading {
  color: #cc051f;
  margin: 1.1em 15px 0.2em 15px;
  font-size: 0.929em;
  line-height: 1.3em;
}
/* line 32, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-manchet {
  color: #000;
  margin: 0 15px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4em;
}
/* line 39, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-pris {
  bottom: .5em;
  color: #58595b;
  left: 15px;
  margin-bottom: .3em;
  position: absolute;
}
/* line 47, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-knap {
  bottom: .7em;
  margin-bottom: .3em;
  position: absolute;
  right: 15px;
}
/* line 54, ../scss/includes/_webshop-produktboks.scss */
.webshopboks a {
  text-decoration: none;
}

/* line 61, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-content {
  height: 84px;
}
/* line 64, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-manchet {
  line-height: 1.4em;
}
/* line 67, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-pris {
  font-size: 1.077em;
  line-height: 1.5em;
}
/* line 71, ../scss/includes/_webshop-produktboks.scss */
.webshopboks .wrapper-boks-knap {
  font-size: 1.1em;
  line-height: 1.5em;
}

/* line 79, ../scss/includes/_webshop-produktboks.scss */
.product-slider.flexslider .slides > li {
  padding: 20px 10px;
}

/* line 27, ../scss/print.scss */
body > footer {
  display: none;
}

/* ==========================================================================
   Print styles
   ========================================================================== */
/* line 5, ../scss/includes/print/_print.scss */
body {
  background: transparent !important;
  color: black !important;
  text-shadow: none !important;
  filter: none !important;
  -ms-filter: none !important;
}

/* line 6, ../scss/includes/print/_print.scss */
a, a:visited {
  text-decoration: underline;
}

/* line 10, ../scss/includes/print/_print.scss */
pre, blockquote {
  border: 1px solid #999;
  page-break-inside: avoid;
}

/* line 11, ../scss/includes/print/_print.scss */
thead {
  display: table-header-group;
}

/* line 12, ../scss/includes/print/_print.scss */
tr, img {
  page-break-inside: avoid;
}

/* line 13, ../scss/includes/print/_print.scss */
img {
  max-width: 100% !important;
}

@page {
  margin: 0.5cm;
}

/* line 15, ../scss/includes/print/_print.scss */
p, h2, h3 {
  orphans: 3;
  widows: 3;
}

/* line 16, ../scss/includes/print/_print.scss */
h2, h3 {
  page-break-after: avoid;
}
