/*
    Document   : kcity
    Created on : 2012-jun-15, 08:52:16
    Author     : Peter Elmered
    Description:
        Purpose of the stylesheet follows.
*/
/*
 * LESS-MIXINS v0.1
 * http://socialfactory.se/
 *
 * Copyright 2012, Peter Elmered
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
/**
 * INDEX
 *
 * CLEARFIX
 * WRAP
 * PRE
 * HIDE-TEXT (CSS image replacement)
 * TEXT ALIGN SHORTCUTS
 * MARGIN SHORTCUTS
 * MARGIN - H / V
 * PADDING SHORTCUTS
 * PADDING - H / V
 * SIZING, BOXING and MASKING
 * MASKING
 * POSITIONING
 * BORDER-RADIUS
 * BOX-SHADOW
 * TEXT-SHADOW
 * GRADIENT
 * ROTATE
 * SPRITES
 * VERTICAL STATES SPRITE
 * HORIZONTAL STATES SPRITE
 * INLINE LIST
 * USER-SELECT
 * SCALE
 * TRANSLATE
 * SKEW
 * TEXT-COLUMNS
 * TRANSITIONS
 * ARROWS
 *
 *
 *
 *
 */
/**
 * TODO:
 *
 * More default values(and use them more)
 * Add more mixins
 * Sort mixins in a logical order. Alphabetical or categorized/gouped(and separated into multiple files?)? - Give me feedback on this one
 * Better demopage and documentation
 *
 *
 * Please fork and/or make a pull request!
 */
/**
 * CLEARFIX
 * (from TwitterBootstrap)
 */
@import url("http://fonts.googleapis.com/css?family=Signika+Negative:300,400,600,700");
@import url("http://fonts.googleapis.com/css?family=Libre+Baskerville");
.clearfix,
.clr {
  *zoom: 1;
}
.clearfix:before,
.clr:before,
.clearfix:after,
.clr:after {
  display: table;
  content: "";
}
.clearfix:after,
.clr:after {
  clear: both;
}
.wrap {
  text-wrap: wrap;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}
.pre {
  text-wrap: wrap;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  word-wrap: break-word;
}
/**
 * CSS image replacement
 * (from TwitterBootstrap)
 *
 * I removed the border and background rule to allow element define it's own rules!
 */
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
}
/**
 * TEXT ALIGN SHORTCUTS
 * these rules are simple quick shortcuts to the "text-align" CSS property
 */
.tl {
  text-align: left;
}
.tr {
  text-align: right;
}
.tc {
  text-align: center;
}
.tj {
  text-align: justify;
}
/**
 * MARGIN SHORTCUTS
 * these are shortcuts to the margin-{side} CSS property
 */
/**
 * MARGIN - H / V
 * these are shortcuts to set only horizontals or vertical margins without alter existing rules
 * you can use these mixins with one value applied to the left/right, top/bottom margins or
 * you can use them with separated values
 */
/**
 * PADDING SHORTCUTS
 * these are shortcuts to the padding-{side} CSS property
 */
/**
 * PADDING - H / V
 * these are shortcuts to set only horizontals or vertical paddings without alter existing rules
 * you can use these mixins with one value applied to the left/right, top/bottom paddings or
 * you can use them with separated values
 */
/**
 * SIZING, BOXING and MASKING
 */
/* size is inpired by the TwitterBootstrap mixin for arguments order. */
/* this is a compatibility decision but I don't uderstand why to start with height!!! Why Twitter? Why? */
.block {
  display: block;
}
/* inline-block backwards compatibilty hack */
.inline-block {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/* inline-block shortcuts */
.iblock {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/**
 * MASKING
 */
.mask {
  display: block;
  overflow: hidden;
}
.inline-mask {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  overflow: hidden;
}
.imask {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  overflow: hidden;
}
/**
 * POSITIONING
 */
.rel {
  position: relative;
}
.abs {
  position: absolute;
  top: 0;
  left: 0;
}
.abs-r {
  position: absolute;
  top: 0;
  right: 0;
}
.abs-b {
  position: absolute;
  bottom: 0;
  left: 0;
}
.abs-br {
  position: absolute;
  bottom: 0;
  right: 0;
}
/**
 * Border Radius
 *
 */
/* single border radius applied to all corners */
/* two values applied tob/bottom then bottom/top */
/* two values - left/right right/left */
/* two values - topLeft/bottomRight topRight/bottomLeft */
/* two values - top borders */
/* border-radius different for every corner */
/**
 * BOX-SHADOW
 *
 * Example usage: .box-shadow(0px 6px 15px 4px rgba(0, 0, 0, 0.15));
 */
/**
 * TEXT-SHADOW
 *
 *
 */
/**
 * GRADIENT
 *
 *
 */
/**
 * GRADIENT ADVANCED
 *
 *
 */
/**
 * ROTATE
 *
 *
 */
/**
 * SPRITES
 *
 */
/**
 * VERTICAL STATES SPRITE
 * usefull for 2 or 3 states buttons when state-related images
 * are disposed vertically
 */
/**
 * HORIZONTAL STATES SPRITE
 * usefull for 2 or 3 states buttons when state-related images
 * are disposed horizontally
 */
/**
 * INLINE LIST
 *
 */
.inline-list,
.ilist {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}
.inline-list li,
.ilist li {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
/**
 * USER-SELECT
 *
 * Disables selection
 */
/**
 * SCALE
 *
 */
/**
 * TRANSLATE
 *
 */
/**
 * SKEW
 *
 */
/**
 * TEXT-COLUMNS
 *
 */
/**
 * TRANSITIONS
 *
 */
/**
 * ARROWS
 * Using only borders(no images)
 */
/* Fonts */
/*Dosis*/
/*@import url("http://fonts.googleapis.com/css?family=Dosis:400,700");*/
/*Bree Serif*/
/* @import url("http://fonts.googleapis.com/css?family=Bree+Serif"); */
/*Open Sans*/
/* @import url("http://fonts.googleapis.com/css?family=Open+Sans:400,600,700"); */
/*Ruda*/
/* @import url("http://fonts.googleapis.com/css?family=Ruda:400,600,700"); */
/*@import url("http://fonts.googleapis.com/css?family=Lato:300,400,700");*/
/* VARIABLES */
/* HEADERS */
/* TEXTS */
/* LINKS */
/* Base / Body */
/*url(../images/top-bg-startpage.png) repeat-x 0 0;*/
/*url(../images/top-bg-subpage.png) repeat-x 0 0;*/
/* Header */
/* Logo*/
/* Social buttons */
/*#FFF url(../images/misc/social-button-gloss.png) no-repeat 0 0;*/
/*#FFF url(../images/misc/social-button-gloss.png) no-repeat 0 0;*/
/*#FFF url(../images/misc/social-button-gloss.png) no-repeat 0 0;*/
/* Main menu */
/*#FFF url(../images/menu-active-bg.png) repeat-x 0 0;*/
/* Används tillsammans med @menuListPadding för att förhindra att menyn hoppa om man använder borders vid hover (@mainMenuHoverBoxBorderWidth) */
/*#FFF url(../images/menu-active-bg.png) repeat-x 0 0;*/
/* Används tillsammans med @menuListPadding för att förhindra att menyn hoppa om man använder borders vid hover (@mainMenuHoverBoxBorderWidth) */
/* 0px 15px*/
/* Normalt @menuLinkPadding left + 20-30px */
/* Main menu dropdown/Flyout */
/* Standard: 38px . Använd inte för att göra mellanrum mellan huvudmeny och unndermeny, då fungerar det ej */
/* Bör oftast vara samma som @menuListPadding för att submenyn ska hämna rätt */
/* ex: 0px 5px 11px rgba(50, 50, 50, 0.75); */
/* Top Content */
/*#FCFCFC url(../images/top-bg-startpage.png) repeat-x 0 0;*/
/*#FCFCFC url(../images/top-bg-subpage.png) repeat-x 0 0;*/
/*0px 45px 30px -40px rgba(50, 50, 50, 0.75);*/
/* Content */
/*3px solid #117542;*/
/* Widgets */
/* 11px solid #76634B */
/* 11px solid #76634B */
/* 0px 20px 30px -15px rgba(50, 50, 50, 0.75); */
/*10px solid #E5ECF3;*/
/* 11px solid #E7E6E2 */
/* 12px 0 12px 0 */
/* Footer widget */
/* Footer */
/* Producerad av... */
/* PAGER */
/* BUTTONS */
/*25px*/
/* FORMS */
/*25px*/
/*25px*/
/* MIXINS / FUNCTIONS */
/* Example:
   -webkit-box-shadow: 0px 6px 15px 4px rgba(0, 0, 0, 0.15);
   -moz-box-shadow: 0px 6px 15px 4px rgba(0, 0, 0, 0.15);
   box-shadow: 0px 6px 15px 4px rgba(0, 0, 0, 0.15);
*/
#site-container {
  background: #FFF;
  padding: 0 20px;
  max-width: 1000px;
  margin: 0px auto;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}
#site-logo {
  float: left;
  width: 26.08%;
  min-width: 220px;
}
#site-logo img {
  float: left;
}
#site-nav-main {
  float: left;
  margin-left: 0;
  min-width: 544px;
}
#nav-below {
  border-top: 1px solid #CCC;
  padding: 10px 0 15px 0;
}
#nav-below .nav-previous {
  float: left;
}
#nav-below .nav-previous a {
  color: #8E8985;
}
#nav-below .nav-next {
  float: right;
  text-align: right;
}
#nav-below .nav-next a {
  color: #8E8985;
}
/*
#site-nav-main {
   width: 58.7%; /* 56.5 + 4.4 - 2.2% *
   margin-right: 2.2%;
   margin-left: 0;
}
#top-nav-bar {
   float: right;
   list-style: none;
   margin: 0;
}
#top-nav-bar li {
   display: inline;
   float: right;
   margin: 0;
}
#top-nav-bar a {
   display: block;
   padding: 12px 15px;
   color: #999999;
   text-transform: uppercase;
   font-size: 14px;
}
#top-nav-bar a:hover { text-decoration: none; }
#top-nav-bar a:hover span {
   color: #575659;
   border-bottom: 1px solid #EB6B2D;
}
#top-nav-bar a:first-child {
   padding-right: 0 !important;
}
*/
#site-header {
  padding: 0 40px;
  margin: 0 -40px 15px -40px;
  background: url('../images/Header-Shadow.png') repeat-x 0 bottom;
}
#site-header-search {
  float: right;
  margin: 0;
  width: 120px;
}
#top_search_form {
  float: right;
  height: 30px;
  width: 130px;
  margin: 35px 0 0 0;
  position: relative;
}
#top_search_value_container {
  width: 110px;
  height: 30px;
  position: relative;
}
#top_search_value {
  position: absolute;
  top: 0;
  left: 0px;
  border: 1px solid #E6E5E4;
  width: 95px;
  padding: 6px 2px 6px 10px;
  z-index: 101;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.search-icon {
  display: inline-block;
  width: 22px;
  height: 28px;
  position: absolute;
  right: -5px;
  top: 3px;
  background: url('../images/FB-Search-Icon.png') no-repeat 0 0;
  border: none;
}
#search-load {
  position: absolute;
  top: 5px;
  left: 0px;
  margin: 0;
  width: 16px;
  height: 16px;
  background: url('../images/form_load.gif') no-repeat center center transparent;
  visibility: hidden;
  z-index: 102;
}
#search-reset {
  position: absolute;
  top: 5px;
  right: 5px;
  margin: 0;
  width: 16px;
  height: 16px;
  background: url('../images/form_clear.png') no-repeat center center transparent;
  background-color: transparent;
  border: none;
  visibility: hidden;
  z-index: 103;
}
#instantsearch {
  position: relative;
  display: none;
  margin: 0 0 40px 0;
  border: 1px solid #ddd;
  max-height: none;
  overflow-y: scroll;
  /*   background: url('images/bgtop.png') no-repeat bottom center;*/
}
#searchresults {
  padding: 20px 30px;
}
/* Search results */
.search-results h1 {
  text-transform: none;
  background: none;
}
#site-header-links {
  margin-top: 35px;
  text-align: right;
}
#site-header-links a {
  display: inline-block;
  padding: 10px 0px 0px 20px;
  text-decoration: underline;
  color: #636466;
}
.search-link-warnings {
  padding-left: 20px;
  background: url('../images/messagebox_warning.png') no-repeat;
  background-size: 16px 16px;
  margin-bottom: 28px;
}
.search-link-warnings a {
  font-size: 15px;
}
#top-content {
  position: relative;
  overflow: visible !important;
}
#flexslider-container {
  width: auto;
  padding: 1px 0;
  border: 1px solid #D2D2D2;
}
#flexslider-container .slider-wrapper {
  margin-top: -1px;
}
#flexslider-nav-container {
  position: absolute;
  bottom: -85px;
}
#flexslider-nav li {
  display: inline-block;
}
#flexslider-nav a {
  padding: 10px 30px 10px 5px;
  position: relative;
  text-transform: uppercase;
  z-index: 999;
  display: inline-block;
}
#flexslider-nav a:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 6px;
  width: 20px;
  height: 30px;
  background: url('../images/Button-Stop.png') no-repeat 0 5px;
}
#flexslider-nav a:hover:after,
#flexslider-nav a.active:after {
  background: url('../images/Button-Play.png') no-repeat 0 5px;
}
.content {
  width: 63% !important;
  margin-right: 4.4%;
}
.red {
  color: #DE3B2C;
}
#top-content-widget-area,
.widget-area {
  /*width: 34.7% !important;
   margin-left: 0;*/
}
#top-content-widget-area {
  padding: 1px 0;
  margin: 0;
  height: 100%;
  color: #58585A;
}
#top-content-widget-area .top-widget {
  position: relative;
  padding: 0;
  width: 434px;
  float: right;
  text-align: left;
  height: 100%;
  line-height: 1;
}
#top-content-widget-area .top-widget h1,
#top-content-widget-area .top-widget h2,
#top-content-widget-area .top-widget h3,
#top-content-widget-area .top-widget h4,
#top-content-widget-area .top-widget h5 {
  background: transparent;
  color: #E8473F;
  font-weight: 600;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  padding: 0;
  line-height: 1;
  margin: 0;
}
#top-content-widget-area .top-widget h1 {
  font-size: 2.0rem;
  margin-bottom: 10px;
}
#top-content-widget-area .top-widget .top-widget-content {
  text-align: justify;
  text-justify: newspaper;
}
#top-content-widget-area .top-widget .box-container {
  bottom: 0;
  margin-right: 10px;
}
#top-content-widget-area .top-widget .box-container .box_header {
  background: #F14841;
  color: white;
  padding: 5px 10px;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  font-size: 15px;
}
#top-content-widget-area .top-widget .box {
  border: 1px solid #D2D2D2;
  padding: 10px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  border-top: 0;
  background: whitesmoke;
  font-size: 1em;
}
#top-content-widget-area .top-widget table {
  width: 100%;
}
#top-content-widget-area .top-widget td {
  padding: 2px 10px;
}
#top-content-widget-area .top-widget ul {
  list-style: disc inside;
  margin: 0;
}
#top-content-widget-area .top-widget li {
  list-style: outside;
  list-style-type: disc;
  margin-left: 1em;
  padding: 5px 5px;
  margin-bottom: 0;
}
#top-content-widget-area .top-widget li a {
  cursor: pointer;
}
#top-content-widget-area .top-widget li:hover a,
#top-content-widget-area .top-widget li a:hover {
  text-decoration: underline;
}
.below-slider-menu {
  margin: 0;
}
.below-slider-menu li {
  display: inline-block;
}
.below-slider-menu a {
  padding: 10px 30px 10px 5px;
  position: relative;
  text-transform: uppercase;
  z-index: 999;
  display: inline-block;
  color: #848688;
  font-size: 1.4rem;
}
.below-slider-menu a:hover,
.below-slider-menu a.active {
  color: #ef4740;
}
.below-slider-menu a:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 6px;
  width: 20px;
  height: 30px;
  background: url('../images/Button-Stop.png') no-repeat 0 5px;
}
.below-slider-menu a:hover:after,
.below-slider-menu a.active:after {
  background: url('../images/Button-Play.png') no-repeat 0 5px;
}
#main-container {
  padding-bottom: 20px;
}
#main-container.no-slider > .row {
  border-top: 1px solid #EB6B2D;
}
.header {
  display: inline-block;
  font-size: 1.8rem;
  /*   color: #828284; */
  border-bottom: 3px solid #939498;
  /*min-width: 155px;
   padding: 0 10px;*/
}
.header.blue {
  border-color: #00B2E0;
}
.header.green {
  border-color: #73BF41;
}
.header.red {
  border-color: #E74941;
}
/* WIDGETS */
.widget .widget-read-more-button {
  font-size: 14px;
}
.widget .widget-read-more-button.arrow {
  position: relative;
  padding-right: 30px;
}
.widget .widget-read-more-button.arrow:after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  height: 25px;
  width: 25px;
  background: url('../images/Button-Stop.png') no-repeat 0 0;
}
.widget .widget_sp_image-description {
  text-align: right;
}
.news-widget h4 {
  border-color: #E74941 ;
}
.article-widget h4 {
  border-color: #73BF41;
}
/* Single news */
.news-single-alert-box {
  padding: 10px;
}
.news-single-alert-box a {
  text-transform: uppercase;
  font-size: 14px;
}
.news-single-alert-box a span {
  color: #ff0000;
}
.news-single-alert-box a:after {
  content: "";
  position: absolute;
  margin-left: 5px;
  margin-top: -1px;
  height: 20px;
  width: 20px;
  background: url('../images/Button-Stop.png') no-repeat 0 0;
}
.widget_get_comments_widget ul li {
  margin-bottom: 10px;
}
.widget_get_comments_widget ul li div:first-child {
  font-weight: bold;
}
/* FOOTER */
#footer-row {
  padding: 0 20px;
  margin: 0 -20px;
  position: relative;
  background: url('../images/Bottom-Bg.png') repeat-x 0 0;
  /*height: 136px;*/
  max-width: 100%;
}
#footer-row .columns {
  width: 33.3%;
  margin: 0;
  padding: 20px 0;
}
#footer-row #knowledge-db-search #knowledge-db-search-form {
  padding: 20px 30px 0 30px;
  margin: 0;
}
#footer-row #knowledge-db-search #knowledge-db-search-value {
  background: #CDCBCC;
  border: 1px solid #A9A9AB;
  padding: 3px 5px 3px 7px;
  font-size: 12px;
}
#footer-row #knowledge-db-search #knowledge-db-search-button {
  width: 78px;
  height: 23px;
  text-align: center;
  border: none;
  color: #FFF;
  text-transform: uppercase;
  font-size: 12px;
  margin-left: 5px;
  background: url('../images/Search-Button.png') repeat-x 0 0;
}
#footer-row #knowledge-db-search h4 {
  text-transform: uppercase;
  font-size: 14px;
  color: #F14841;
}
#footer-row .columns.middle {
  width: 33.4%;
  min-width: 290px;
  padding-top: 9px;
}
#footer-row .columns.middle .middle-container {
  border: 4px dotted #CACACC;
  border-width: 0 4px;
  padding: 10px 0 5px 0;
  text-align: center;
}
#footer-row .columns.middle .middle-container .phone-number {
  position: relative;
  display: block;
  padding: 10px 5px 0px 40px;
  height: 42px;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  width: 250px;
  margin: 0 auto;
  color: #E8473F;
}
#footer-row .columns.middle .middle-container .phone-number:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 2px;
  height: 40px;
  width: 40px;
  background: url('../images/Icon-Phone.png') no-repeat 0 0;
}
#footer-row .columns.middle .middle-container h4 {
  text-transform: uppercase;
  font-size: 14px;
}
#footer-row #get-the-app {
  position: absolute;
  height: 100%;
  padding: 0;
  bottom: 0;
  right: 0;
}
#footer-row #get-the-app a:hover {
  text-decoration: underline;
}
#footer-row #get-the-app .get-app {
  position: absolute;
  right: 60px;
  bottom: -20px;
  padding: 20px 5px;
  height: 40px;
  width: 70px;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  /*
         .rounded(50px);
         background: #73BF43;
         */
  background: url('../images/Blue-Info-Box.png') no-repeat 0 0;
  z-index: 75;
}
#footer-row #get-the-app .mobile-app-img {
  position: absolute;
  right: -15px;
  bottom: 0px;
  padding: 0;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
/*
.home .bottom-row-social {
   background: #EF463F;
   padding: 0 40px;
}
*/
.bottom-row-social {
  /*background: #EF463F;*/
  background: transparent url('../images/footer-bg-paper.jpg') no-repeat;
  padding: 0 20px 20px 20px !important;
  margin: 0 -20px !important;
  max-width: 100%;
}
.bottom-row-social .widget ul {
  background: rgba(255, 255, 255, 0.8);
}
.bottom-row-social.horizontal-divider-before {
  padding-top: 5px;
}
.bottom-row-social.horizontal-divider-before:before {
  top: 5px;
}
.bottom-row-social {
  position: relative;
  /*h4 { display: none; }*/
  /*.widget:before {
      content: "";
      width: 0;
      height: 0;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-bottom: 15px solid rgba(255,255,255,0.8);
      display: block;
      position: absolute;
      left: 22px;
      top: -15px;
   }
   */
}
.bottom-row-social .horizontal-divider {
  position: absolute;
  top: 60px;
  left: 27%;
  width: 71%;
  display: block;
}
.bottom-row-social .footer-header {
  padding: 10px 45px 0 0;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  font-size: 20px;
  white-space: nowrap;
  margin: 0px;
}
.bottom-row-social p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 0px;
  font-weight: bold;
}
.bottom-row-social p span {
  text-transform: none;
  font-size: 10px;
  font-weight: normal;
}
.bottom-row-social p a {
  color: #1F3D58;
  text-decoration: underline;
}
.bottom-row-social .alone {
  margin-top: 45px;
}
.bottom-row-social .alone-2 {
  margin-top: 27px;
  background: #FF423E;
  float: left;
  padding: 5px;
  border: 1px solid #ADA9A6;
  margin-bottom: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.bottom-row-social .big-b {
  margin: 30px 10%;
  width: 80%;
}
.bottom-row-social .widget {
  position: relative;
  margin-top: 0px;
}
.bottom-row-social .widget ul {
  border-radius: 5px;
}
.bottom-row-social .widget li {
  padding: 10px;
}
.bottom-row-social .widget li:before {
  border: none;
}
.bottom-row-social .widget .widget_content {
  background: none;
  padding: 0;
}
.bottom-row-social .widget .widget_content h3 {
  margin-top: 0;
}
.bottom-row-social .widget_facebook_widget a {
  color: #58585A;
}
.bottom-row-social .widget_facebook_widget a:hover {
  text-decoration: underline;
}
.bottom-row-social .badge {
  background: url("../images/footer-badge.png") no-repeat;
  width: 190px;
  height: 278px;
  margin-top: -5px;
  margin-left: -10px;
  text-align: center;
}
.bottom-row-social .badge span {
  display: block;
  padding-top: 155px;
  color: #fff;
  line-height: 1.2;
  font-size: 10px;
}
.bottom-row-social .latest-from {
  background: transparent url("../images/latest_from.png") no-repeat;
}
.bottom-row-social .facebook-footer {
  padding-left: 30px;
  width: 243px;
  height: 302px;
  background: transparent url("../images/fb_footer_bg.png") no-repeat;
  margin-top: -10px;
}
.bottom-row-social .facebook-footer p {
  color: #1f3d58;
}
.bottom-row-social .facebook-footer .widget_facebook_widget {
  width: 220px;
}
.bottom-row-social .info-footer {
  width: 210px;
}
.bottom-row-social .twitter-footer {
  color: #1f3d58;
  width: 273px;
  height: 302px;
  background: transparent url("../images/twitter_footer_bg.png") no-repeat;
  margin-top: -12px;
  margin-left: -10px;
}
.bottom-row-social .twitter-footer p {
  color: #1f3d58;
  padding-left: 60px;
}
.bottom-row-social .twitter-footer p a {
  color: #1f3d58;
}
.bottom-row-social .twitter-footer .widget_twitter_widget {
  padding-left: 30px;
}
.bottom-row-social .warning-footer {
  width: 240px;
}
.widget_p2p .header {
  margin-bottom: 15px;
}
.widget_p2p ul {
  clear: both;
  display: block;
  text-align: right;
}
.widget_p2p ul li:before {
  content: none;
}
.page-header {
  padding: 0 0 5px 0;
  margin: 0 0 15px 0;
  /*  color: #828284; */
  background: url('../images/divider-bg.png') repeat-x bottom left transparent;
}
.news-header {
  margin: 0;
}
/* HOME */
.row-dividers {
  clear: both;
  border-top: 4px dotted #CACACC;
  border-bottom: 4px dotted #CACACC;
  padding: 40px 0;
}
#latest-news ul {
  margin: 8px 0;
}
#latest-news .news-row {
  position: relative;
  height: 16px;
  margin: 0;
  padding: 3px;
  overflow: hidden;
  cursor: pointer;
}
#latest-news .news-title {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Signika Negative', sans-serif;
  font-size: 1.3rem;
}
#latest-news .news-title a,
#latest-news .show-more {
  color: #868688;
  white-space: nowrap;
}
#latest-news .news-title a:hover,
#latest-news .show-more:hover {
  text-decoration: none;
}
#latest-news .news-title a {
  color: #868688;
  white-space: nowrap;
  position: relative;
  padding-left: 20px;
}
#latest-news .news-title a:before {
  content: "+";
  width: 17px;
  height: 17px;
  display: block;
  position: absolute;
  left: 0px;
  top: -3px;
  font-size: 17px;
  font-weight: bold;
}
#latest-news .news-date {
  position: absolute;
  top: 0;
  right: 0;
  background: #FFF;
  padding-left: 15px;
}
#latest-news .news-row:hover .news-title a,
#latest-news .news-row:hover .news-date,
#latest-news .show-more:hover {
  color: #e63c36;
}
#latest-news .show-more {
  position: relative;
  float: right;
  padding: 5px 20px;
}
#latest-news .show-more:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  margin-top: 4px;
  margin-left: 5px;
  background: url('../images/Button-Stop-Small.png') no-repeat 0 0;
}
#latest-news .show-more:hover:after {
  background: #e63c36;
}
#info-box {
  width: 38%;
  margin-left: 5.5%;
}
#info-box #info-box-container {
  /*border-left: 4px dotted #CACACC;*/
  padding: 25px 0 25px 15%;
}
#info-box .box-header {
  color: #F14841;
  text-align: center;
  font-size: 14px;
  margin-bottom: 6px;
}
#info-box p {
  margin: 6px 0;
  text-align: justify;
  text-justify: newspaper;
}
#bottom-row-1 li a {
  display: block;
  padding: 0;
}
#bottom-row-1 h4 {
  margin-bottom: 10px;
}
#bottom-row-1 #afflicted {
  display: block;
}
#bottom-row-1 #afflicted .afflicted-box {
  border: 1px solid #D2D2D2;
  padding: 15px 20px;
}
#bottom-row-1 #afflicted .afflicted-box .afflicted-text {
  font-size: 15px;
  font-style: oblique;
}
#bottom-row-1 #afflicted .afflicted-box .afflicted-by,
#bottom-row-1 #afflicted .afflicted-box .afflicted-by a,
#bottom-row-1 #afflicted .afflicted-box .afflicted-bottom-link,
#bottom-row-1 #afflicted .afflicted-box .afflicted-bottom-link a {
  margin: 0;
  font-size: 1.1rem;
  text-align: right;
}
#bottom-row-1 #afflicted .afflicted-box .afflicted-by,
#bottom-row-1 #afflicted .afflicted-box .afflicted-bottom-link a {
  color: #777777;
}
.startpage-links a {
  color: #868688;
  /*white-space: nowrap; */
  font-size: 1.3rem;
}
#follow-count-row {
  padding-top: 30px;
}
#follow-count-row p {
  float: left;
  margin: 0 30px 0 0;
}
#follow-count-row p a {
  color: #00B0DF;
}
#follow-count-row p a:hover {
  text-decoration: underline;
}
/* HELPCENTER */
.help-row {
  padding-bottom: 30px;
}
.help-header {
  /*   color: #999999; */
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.help-header.indent {
  /*text-indent: 80px;*/
  float: right;
}
#help-info-icon-container {
  position: relative;
  z-index: 101;
}
#help-info-icon-container #help-info-icon {
  margin: -60px auto;
  top: -50px;
  padding: 16px;
  height: 100px;
  width: 100px;
  color: #FFF;
  font-size: 95px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  z-index: 101;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #E74941;
  /*
      background: url('../images/Red-Info-Box.png') no-repeat 0 0;
      */
}
.help-box {
  border: 1px solid #DEDDDC;
  /*min-height: 250px;*/
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.help-box .expnadable-list li {
  margin-bottom: 4px;
}
.help-box.help-box-content ul {
  margin: 10px 30px;
  list-style: disc;
}
.help-box-row {
  clear: both;
  display: block;
}
.help-head {
  position: relative;
  border-top: 1px solid #EDEDED;
  vertical-align: middle;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding: 2px 0 2px 30px;
  height: auto;
}
.help-head h3 {
  margin: 0;
}
.help-head a {
  color: #333;
  font-size: 1.4rem;
}
.help-head.expandable:before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 6px solid #333;
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  display: block;
  position: absolute;
  left: 11px;
  top: 10px;
}
.help-head.expanded:before {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #E74841;
  display: block;
  position: absolute;
  left: 8px;
  top: 12px;
}
.help-head.expandable:hover:before {
  border-left: 6px solid #E74841;
}
.help-head:hover a,
.help-head.expanded a {
  color: #E74841;
}
.help-body {
  display: none;
  margin: 2px 0 2px 0;
  padding: 0 15px 0 30px;
  overflow: hidden;
  word-wrap: break-word;
}
.help-body p:last-child {
  margin: 0;
}
/* ALERT LIST */
.alert-list-top h4 {
  color: #DE3B2C;
  text-transform: uppercase;
}
.alert-list-top h1 {
  color: #DE3B2C;
  margin: 0;
  font-size: 1.8rem;
}
.alert-list-top span {
  font-weight: bold;
  text-transform: uppercase;
}
.alert-list-index-wrapper {
  /*   border-top: 1px solid #ccc;
   border-bottom: 1px solid #ccc; */
  padding: 3px 0;
  margin-bottom: 10px;
  margin-top: 2  0px;
  font-size: 15px;
}
#alert-list-index {
  margin: 0;
  margin-right: 20px;
}
#alert-list-index li {
  display: inline-block;
  margin: 0 25px 0 0;
  margin-right: 25px;
  /*width: 100px;*/
}
#alert-list-index li:first-child {
  margin-right: 10px;
}
#alert_list_tabs {
  float: left;
  margin-top: 10px;
  margin-left: 50px;
}
#alert_list_tabs ul {
  margin: 0;
}
#alert_list_tabs li {
  float: left;
  position: relative;
  margin: 0 0 0 -10px;
  display: inline-block;
  z-index: 10;
}
#alert_list_tabs li.active {
  z-index: 20;
}
#alert_list_tabs a {
  z-index: inherit;
  display: block;
  width: 150px;
  height: 28px;
  margin-top: 2px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom: 2px solid #D23B3B;
  /*background: url('../images/Button-Selected.png') no-repeat 0 0;*/
  padding-top: 5px;
  /*.gradient_adv(#d23b3b, 0%, #df8282, 18%);*/
  background: #df8282;
  /* Old browsers */
  background: -moz-linear-gradient(top, #df8282 0%, #d23b3b 18%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #df8282), color-stop(18%, #d23b3b));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #df8282 0%, #d23b3b 18%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #df8282 0%, #d23b3b 18%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #df8282 0%, #d23b3b 18%);
  /* IE10+ */
  background: linear-gradient(to bottom, #df8282 0%, #d23b3b 18%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#df8282', endColorstr='#d23b3b', GradientType=0);
  /* IE6-9 */
}
#alert_list_tabs li.active a {
  height: 30px;
  margin-top: 0px;
}
#alert_list_tabs li.archive a {
  padding-top: 5px;
  /*background: url('../images/Button-Unselected.png') no-repeat 0 0;*/
  background: #a7a7a8;
  /* Old browsers */
  background: -moz-linear-gradient(top, #a7a7a8 0%, #7a7a7c 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a7a7a8), color-stop(100%, #7a7a7c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #a7a7a8 0%, #7a7a7c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #a7a7a8 0%, #7a7a7c 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #a7a7a8 0%, #7a7a7c 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #a7a7a8 0%, #7a7a7c 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a7a7a8', endColorstr='#7a7a7c', GradientType=0);
  /* IE6-9 */
  border-bottom: 2px solid #7a7a7c;
}
#alert_list_tabs span {
  color: #FFF;
  padding: 6px 5px;
  display: block;
  font-size: 15px;
  line-height: 13px;
  text-align: center;
  font-weight: bold;
}
#alert-list-table-filtering-input-container {
  float: right;
  padding: 10px;
}
#alert_list_category_select {
  position: relative;
  float: right;
  margin-top: 2px;
  margin-left: 10px;
}
#alert_list_category_select:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #000;
  display: block;
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 99;
}
#alert_list_category_select select {
  position: relative;
  border: 1px solid #E6E5E4;
  width: 200px;
  padding: 4px 20px 4px 10px;
  margin: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  z-index: 200;
  background: transparent;
}
#alert_list_category_select:before {
  content: "";
  position: absolute;
  height: 20px;
  right: 20px;
  top: 5px;
  width: 28px;
  z-index: 98;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
  /* IE6-8 */
}
#alert_list_search_box {
  float: right;
  margin-left: 10px;
  border: 1px solid #E6E5E4;
  width: 200px;
  padding: 4px 2px 4px 10px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
#alert_list_click {
  position: absolute;
  z-index: 100;
  width: 118px;
  height: 82px;
  background: transparent url("../images/alert_list_click.png") no-repeat;
  margin-top: 35px;
  margin-left: -40px;
}
#alert_list_table thead {
  background: #D23B3B;
  cursor: pointer;
  font-size: 15px;
}
#alert_list_table thead td {
  padding: 10px 20px 10px 10px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
#alert_list_table thead td.nobg {
  background: #FFF;
}
#alert_list_table thead td:hover,
#alert_list_table thead td.sorting_desc,
#alert_list_table thead td.sorting_asc {
  cursor: pointer;
  text-decoration: underline;
}
#alert_list_table tbody tr {
  cursor: pointer;
}
#alert_list_table tbody td {
  padding: 5px;
}
#alert_list_table tbody td.left-divider {
  border-left: 1px solid #A29C96;
}
#alert_list_table tbody .image-icons {
  white-space: nowrap;
  text-align: right;
  background: #FFF;
}
#alert_list_table tbody .image-icons img {
  display: inline;
  margin-right: 3px;
}
#alert_list_table tbody .new-item {
  float: right;
}
#alert_list_table.archive thead {
  background: #7a7a7c;
}
/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  #alert_list_tabs {
    margin-left: 15px;
  }
  #alert_list_table {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
	Label the data
	*/
  }
  #alert_list_table table,
  #alert_list_table thead,
  #alert_list_table tbody,
  #alert_list_table th,
  #alert_list_table td,
  #alert_list_table tr {
    display: block;
  }
  #alert_list_table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #alert_list_table tr {
    border: 1px solid #ccc;
  }
  #alert_list_table td,
  #alert_list_table td.left-divider {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    border-left: none !important;
    position: relative;
    padding-left: 40% !important;
    width: 55% !important;
    margin: 0;
  }
  #alert_list_table td.table-show-on-phones {
    width: 98% !important;
    font-weight: bold;
    text-transform: uppercase;
  }
  #alert_list_table td.table-show-on-phones a {
    padding-left: 6px;
  }
  #alert_list_table .odd .image-icons,
  #alert_list_table .odd td.sorting_1,
  #alert_list_table .odd:hover td {
    background-color: #EDE8E3;
  }
  #alert_list_table .even .image-icons,
  #alert_list_table .even td.sorting_1,
  #alert_list_table .even:hover td {
    background-color: #FFFFFF;
  }
  #alert_list_table .odd:hover td {
    background-color: #E6E0D9;
  }
  #alert_list_table .even:hover td {
    background-color: #F6F6F6;
  }
  #alert_list_table .image-icons {
    text-align: left !important;
  }
  #alert_list_table .comments-link {
    position: relative;
    float: none;
    margin-left: 0;
    background: none;
    text-align: left;
    vertical-align: top;
    color: #333 !important;
  }
  #alert_list_table .comments-link a {
    display: block;
    font-size: 16px;
    margin: -2px 0;
    padding: 6px 0;
    color: #000;
    line-height: 10px;
    vertical-align: top;
  }
  #alert_list_table td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 40%;
    padding-right: 10px;
    text-align: left;
    white-space: nowrap;
  }
  #alert_list_table td:nth-of-type(1):before {
    content: "";
  }
  #alert_list_table td:nth-of-type(2):before {
    content: "Media";
  }
  #alert_list_table td:nth-of-type(3):before {
    content: "Produktnamn";
  }
  #alert_list_table td:nth-of-type(4):before {
    content: "Företagsnamn";
  }
  #alert_list_table td:nth-of-type(5):before {
    content: "Kommentarer";
  }
  #alert_list_table td:nth-of-type(6):before {
    content: "PG/BG";
  }
  #alert_list_table td:nth-of-type(7):before {
    content: "Org.nr.";
  }
  #alert_list_table td:nth-of-type(8):before {
    content: "Ort";
  }
}
#alert_list_table_paginate {
  font-size: 15px;
  float: left;
  margin-top: 14px;
}
/* ALERT LIST SINGLE */
.box .ping {
  background: url('../images/info-ping.png') no-repeat 10px 9px;
  padding: 10px 20px 10px 40px;
}
.box.alert .ping {
  background: none;
  padding: 10px;
}
.box.ping-wrapper {
  margin-bottom: 10px;
}
.alert-list-related {
  margin-top: 15px;
}
.alert-list-related h2 {
  font-weight: bold;
  font-size: 1.4rem;
}
.alert-list-related th,
.alert-list-related td {
  text-align: left;
  padding: 0 20px 0 0;
}
.alert-list-related th {
  font-weight: bold;
}
.alert-list-section {
  margin-top: 20px;
}
.alert-list-section li {
  margin-bottom: 4px;
}
.alert-list-section .box {
  margin-bottom: 15px;
}
.alert-list-section .box h4 {
  font-size: 12px;
}
.alert-list-section-header {
  position: relative;
  /*width: 100%;*/
  background: #DE3B2C;
  color: #FFF;
  margin-left: -62px;
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 5px 0 5px 62px;
  font-size: 14px;
  height: 15px;
  line-height: 15px;
}
.alert-list-section-header img {
  float: right;
  padding: 3px;
}
.alert-list-section-header a {
  color: #fff;
}
.archive .alert-list-section-header {
  background: #808285;
}
.alert-list-section-header:before {
  position: absolute;
  left: -5px;
  top: -12px;
  padding: 16px 4px;
  height: 20px;
  width: 46px;
  color: #FFF;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #DE3B2C;
  /*background: url('../images/Red-Info-Box.png') no-repeat 0 0;*/
  z-index: 75;
}
.archive .alert-list-section-header:before {
  background: #808285;
}
#section-1 .alert-list-section-header:before {
  content: "1";
}
#section-2 .alert-list-section-header:before {
  content: "2";
}
#section-3 .alert-list-section-header:before {
  content: "3";
}
#section-4 .alert-list-section-header:before {
  content: "4";
}
#section-5 .alert-list-section-header:before {
  content: "5";
  background: #00B0DF;
}
#section-6 .alert-list-section-header:before {
  content: "6";
  background: #00B0DF;
}
#section-7 .alert-list-section-header:before {
  content: "7";
  background: #00B0DF;
}
.archive #section-5 .alert-list-section-header:before {
  content: "5";
  background: #808285;
}
.archive #section-6 .alert-list-section-header:before {
  content: "6";
  background: #808285;
}
.archive #section-7 .alert-list-section-header:before {
  content: "7";
  background: #808285;
}
#section-5 .alert-list-section-header {
  background: #00B0DF;
}
#section-6 .alert-list-section-header {
  background: #00B0DF;
}
#section-7 .alert-list-section-header {
  background: #00B0DF;
}
.archive #section-5 .alert-list-section-header {
  background: #808285;
}
.archive #section-6 .alert-list-section-header {
  background: #808285;
}
.archive #section-7 .alert-list-section-header {
  background: #808285;
}
.alert-list-header {
  color: #FFF;
  text-transform: uppercase;
  padding: 3px 0 3px 10px;
  margin-bottom: 10px;
  font-size: 12px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.alert-list-header-green {
  background: #76B53C;
}
.alert-list-header-blue {
  background: #00A2C7;
}
.alert-list-header-grey {
  background: #999999;
}
.alert-list-info-text {
  font-size: 12px;
  font-style: italic;
}
.alert-list-box {
  border: 1px solid #C6C6C6;
  margin-bottom: 20px;
  padding: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZWZlZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWVmZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(241, 239, 239, 0)), color-stop(100%, #f1efef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f1efef', endColorstr='#f1efef', GradientType=0);
  /* IE6-8 */
}
.alert-list-box .alert-list-media li {
  margin: 5px;
  min-height: 157px;
}
.alert-list-box .alert-list-media a {
  display: block;
  text-align: center;
  color: #58585A;
}
.alert-list-box .alert-list-media h5 {
  text-align: center;
  margin-top: 5px;
  font-weight: normal;
}
.alert-list-box table {
  width: 100%;
}
.alert-list-box table th {
  text-align: left;
  font-weight: bold;
}
.alert-list-box table th,
.alert-list-box table td {
  padding: 0;
  width: 25%;
}
.alert-list-box table .alert-list-table-header {
  font-weight: bold;
  font-size: 1.2rem;
}
.alert-list-box p:last-child {
  margin-bottom: 0;
}
.alert-list-box .alert-list-media-item {
  width: 160px;
  float: left;
}
.alert-list-box h5 {
  font-family: 'Signika Negative', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}
.alert-list-box .alert-list-events ul {
  margin-bottom: 0px;
}
.alert-list-box .alert-list-events #hide-the-rest {
  display: none;
}
.alert-list-box ul {
  list-style: disc;
  margin-left: 15px;
}
.allabolag {
  display: block;
  border: 1px solid #C6C6C6;
  margin: 10px 0;
  padding: 5px 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background: transparent url("../images/allabolag-white.png") no-repeat 99% center;
  color: #828284;
  font-style: italic;
}
.allabolag:hover {
  color: #828284;
  font-style: italic;
  text-decoration: none;
}
.content h2.archive-header {
  color: #181818;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 2.5rem;
}
.content.archive h1 {
  color: #6d6e71;
  font-style: italic;
}
/* PARTNER CONTENT */
.partners-content p {
  color: #666;
}
.partners-content .horizontal-divider {
  margin-bottom: 20px;
}
.partners-content .partner-wrapper {
  margin-bottom: 20px;
}
.partners-content .partner-image-wrapper {
  width: 85px;
  height: 80px;
  overflow: hidden;
  border: 1px solid #efefef;
  margin-right: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
}
.partners-content .partner-image-wrapper img {
  max-width: 1000%;
  height: 100%;
  margin-left: -42px;
}
.partners-content .partner-image-wrapper .partner-tooltip {
  position: absolute;
  display: none;
  width: 450px;
  min-height: 150px;
  margin: 92px 0 0 -10px;
  z-index: 100;
  border: 1px solid #ccc;
  background: #fff;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.partners-content .partner-image-wrapper .partner-tooltip .arrow-big {
  width: 0px;
  height: 0px;
  border-bottom: 10px solid #ccc;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  margin-left: 40px;
  margin-top: -11px;
}
.partners-content .partner-image-wrapper .partner-tooltip .arrow-small {
  width: 0px;
  height: 0px;
  border-left: 9px solid transparent;
  border-bottom: 9px solid #fff;
  border-right: 9px solid transparent;
  position: absolute;
  margin-left: 41px;
  margin-top: -9px;
}
.partners-content .partner-image-wrapper .partner-tooltip img {
  width: 150px;
  height: auto;
  float: right !important;
  margin-left: 10px;
  margin-bottom: 10px;
}
.partners-content .partner-image-wrapper .partner-tooltip ul {
  list-style: disc outside;
  margin-left: 15px;
}
.partners-content .partner-image-wrapper .partner-tooltip > div {
  margin: 40px 30px;
}
/* = STEPS CONTAINER
----------------------------*/
.wizard-steps {
  margin: 0px 10px 0px 10px;
  padding: 0px;
  position: relative;
  clear: both;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.wizard-steps li {
  position: relative;
  float: left;
}
/* = STEP NUMBERS
----------------------------*/
.wizard-steps span {
  display: block;
  float: left;
  font-size: 10px;
  text-align: center;
  width: 15px;
  margin: 2px 5px 0px 0px;
  line-height: 15px;
  color: #ccc;
  background: #FFF;
  border: 2px solid #CCC;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
/* = DEFAULT STEPS
----------------------------*/
.wizard-steps a {
  position: relative;
  display: block;
  width: 120px;
  height: 24px;
  margin-right: 18px;
  padding: 0px 10px 0px 3px;
  float: left;
  font-size: 11px;
  line-height: 24px;
  color: #FFFFFF;
  background: #CBCBCA;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}
.wizard-steps a:before {
  width: 0px;
  height: 0px;
  border-top: 12px solid #CBCBCA;
  border-bottom: 12px solid #CBCBCA;
  border-left: 12px solid transparent;
  position: absolute;
  content: "";
  top: 0px;
  left: -12px;
}
.wizard-steps a:after {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #CBCBCA;
  position: absolute;
  content: "";
  top: 0px;
  right: -12px;
}
/* = COMPLETED STEPS
----------------------------*/
.wizard-steps .completed-step a {
  color: #FFFFFF;
  background: #92C74B;
}
.wizard-steps .completed-step a:before {
  border-top: 12px solid #92C74B;
  border-bottom: 12px solid #92C74B;
}
.wizard-steps .completed-step a:after {
  border-left: 12px solid #92C74B;
}
.wizard-steps .completed-step span {
  border: 2px solid #163038;
  color: #163038;
  text-shadow: none;
}
/* = ACTIVE STEPS
----------------------------*/
.wizard-steps .active-step a {
  color: #FFF;
  background: #82B73B;
}
.wizard-steps .active-step a:before {
  border-top: 12px solid #82B73B;
  border-bottom: 12px solid #82B73B;
}
.wizard-steps .active-step a:after {
  border-left: 12px solid #82B73B;
}
.wizard-steps .active-step span {
  color: #163038;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8);
  text-shadow: none;
  border: 2px solid #A3C1C9;
}
/* = HOVER STATES
----------------------------*/
.wizard-steps .completed-step:hover a,
.wizard-steps .active-step:hover a {
  color: #fff;
  background: #73A92B;
}
.wizard-steps .completed-step:hover span,
.wizard-steps .active-step:hover span {
  color: #8F061E;
}
.wizard-steps .completed-step:hover a:before,
.wizard-steps .active-step:hover a:before {
  border-top: 12px solid #73A92B;
  border-bottom: 12px solid #73A92B;
}
.wizard-steps .completed-step:hover a:after,
.wizard-steps .active-step:hover a:after {
  border-left: 12px solid #73A92B;
}
.shop-page h1 {
  color: #82b73b;
  font-weight: bold;
  background: transparent url("../images/shop_heading_bg.png") no-repeat;
  padding-left: 40px;
  min-height: 29px;
  padding-top: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
#packet-list {
  margin-top: 20px;
}
#packet-list .columns {
  height: 100%;
}
#packet-list .columns .package-header {
  text-align: center;
  text-transform: uppercase;
}
#packet-list .columns .product-container {
  padding-left: 13%;
}
#packet-list .columns .product-price-container {
  padding-left: 13%;
}
#packet-list .columns:first-child .package-header {
  padding-left: 0;
}
#packet-list .columns:first-child .product-container {
  padding-left: 0;
}
#packet-list .columns:first-child .product-price-container {
  padding-left: 0;
}
#packet-list .image-wrapper {
  margin-bottom: 10px;
  text-align: center;
}
.product-content {
  margin-bottom: 0px;
  height: 80px;
}
.product-content p:last-child {
  margin: 0;
}
.product-content ul {
  margin: 0;
}
.product-content ul li {
  margin: 0;
  list-style: circle;
  list-style-position: inside;
}
.toggle-package-content {
  position: relative;
  margin-bottom: 20px;
}
.toggle-package-content:hover {
  cursor: pointer;
}
.toggle-package-content:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #333;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  display: block;
  position: absolute;
  margin-left: 190px;
  bottom: 6px;
}
.toggle-package-content.active:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #333;
  display: block;
  position: absolute;
  margin-left: 190px;
  bottom: 1px;
}
.package-container {
  height: auto;
}
.package-container h2 {
  margin-bottom: 10px;
}
.package-container h3 {
  font-size: 1.4rem;
  font-size: 14px;
  font-weight: bold;
}
.package-bullet-list {
  margin-bottom: 5px;
  width: 245px;
}
.package-bullet-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 2px;
}
.package-bullet-list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent url("../images/included-box.png") no-repeat;
}
.package-bullet-list li.yes:before {
  background: transparent url("../images/included-box.png") no-repeat;
}
.package-bullet-list li.no:before {
  background: transparent url("../images/not-included-box.png") no-repeat;
}
.product-price-container {
  margin-bottom: 20px;
}
.product-price-container .product-buy-button {
  display: block;
  width: 100%;
  padding: 5px 0;
  margin: 0;
  text-align: center;
  color: #000;
  border: 1px solid #C3C3C3;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.product-price-container .product-buy-button.selected {
  color: #FFF;
  border-color: #92C74B;
  background: #92C74B;
  background: -moz-linear-gradient(top, #82B73B 0%, #92C74B 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #82B73B), color-stop(100%, #92C74B));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#82B73B', endColorstr='#92C74B', GradientType=0);
}
.product-price-container .price {
  font-size: 1.6rem;
  font-family: 'Signika Negative', sans-serif;
  color: #828284;
}
.product-price-container .price-footer-text {
  margin-bottom: 20px;
}
/* CONTENT FORMATTING */
.entry .box {
  position: relative;
  border: 1px solid #E7E6E5;
  padding: 20px 25px 5px 25px;
  margin-bottom: 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.entry .box.half {
  padding: 20px 3% 5px 3%;
  margin: 10px 4% 10px 0;
  width: 38%;
  height: 175px;
  float: left;
}
.entry .box.crown-icon:after,
.entry .box.contact-icon:after,
.entry .box.question-icon:after,
.entry .box.paragraph-icon:after,
.entry .box.smiley-icon:after,
.entry .box.chat-icon:after {
  content: "";
  position: absolute;
  top: -16px;
  right: -25px;
  width: 50px;
  height: 50px;
}
.entry .box.crown-icon:after {
  background: transparent url('../images/Contact-Crown.png') no-repeat;
}
.entry .box.contact-icon:after {
  background: transparent url('../images/Contact-Cable.png') no-repeat;
}
.entry .box.question-icon:after {
  background: transparent url('../images/Contact-Question.png') no-repeat;
}
.entry .box.paragraph-icon:after {
  background: transparent url('../images/paragraf_kontakt.png') no-repeat -18px -15px;
}
.entry .box.smiley-icon:after {
  background: transparent url('../images/Contact-Smile.png') no-repeat;
}
.entry .box.chat-icon:after {
  background: transparent url('../images/Chat-Small.png') no-repeat;
}
.entry ul {
  list-style: disc;
  margin-left: 15px;
}
.entry ul li {
  margin-bottom: 5px;
}
.entry input {
  border: 1px solid #CCC;
  margin: 3px 0 0 0;
  padding: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.entry input:focus {
  background: #f9f9f9;
}
.entry input.entry-submit {
  background: #FF423E;
  color: #fff;
  height: 30px;
  border: 0;
  padding: 5px 10px;
}
.entry p {
  margin-bottom: 12px;
  font-size: 14px;
}
.entry-meta {
  margin-bottom: 10px;
}
.box.chat-icon:before {
  content: "";
  position: absolute;
  margin-top: -25px;
  right: -25px;
  width: 60px;
  height: 60px;
  background: transparent url('../images/Warning-Medium.png') no-repeat;
}
.box.old-chat-icon:before {
  content: "";
  position: absolute;
  margin-top: -25px;
  right: -25px;
  width: 60px;
  height: 60px;
  background: transparent url('../images/Chat-Medium.png') no-repeat;
}
/* MISC */
.comments-link {
  position: relative;
  margin-left: 10px;
  background: url('../images/commenticon.png') no-repeat 0 0;
  width: 18px;
  height: 20px;
  text-align: center;
  vertical-align: top;
  display: inline-block;
}
.comments-link a {
  display: inline-block;
  font-size: 9px;
  margin: -2px 0;
  padding: 4px 0;
  color: #FFF !important;
  line-height: 10px !important;
  vertical-align: top;
}
/*Text colors*/
.uppercase {
  text-transform: uppercase;
}
.bold {
  font-weight: bold;
}
.blue-text {
  color: #00A3C6;
}
.green-text {
  color: #73B43D;
}
.red-text {
  color: #E74941;
}
.hide {
  display: none;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.read-more {
  background: #D2D2D2;
  padding: 4px 8px;
  color: #58585A;
  float: right;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.read-more:hover,
.read-more:active {
  color: #fff;
}
table img {
  display: block;
  max-width: 1000px !important;
}
.box {
  border: 1px solid #C5C5C5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZWZlZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWVmZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(241, 239, 239, 0)), color-stop(100%, #f1efef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f1efef', endColorstr='#f1efef', GradientType=0);
  /* IE6-8 */
}
.box.alert {
  border: 1px solid #e53025;
  background: #fff8f6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  color: #e53025;
  margin-top: 15px;
}
.padding-left-sub-p p {
  padding-left: 50px;
}
/*.afflicted-icon:after {
   content: "";
   position: absolute;
   display: block;
   width: 140px;
   height: 60px;
   top: -25px;
   right: 20px;
   background: url('../images/Button-Drabbad.png') no-repeat 0 0 transparent;
}*/
.afflicted-icon .btn-image-wrapper {
  position: absolute;
  right: 10px;
  top: -32px;
}
.afflicted-icon .comment-btn-image-wrapper {
  position: absolute;
  right: 10px;
  top: -32px;
}
.vertical-divider-before:before,
.vertical-divider {
  width: 10px;
  height: 100%;
  background: url('../images/divider-bg.png') repeat-y top center transparent;
  margin: 0;
}
.vertical-divider {
  position: relative;
}
.vertical-divider-before {
  position: relative;
}
.vertical-divider-before:before {
  content: "";
  position: absolute;
  display: block;
  left: -5px;
}
.horizontal-divider-before:before,
.horizontal-divider {
  position: relative;
  height: 10px;
  width: 100%;
  background: url('../images/divider-bg.png') repeat-x center left transparent;
  margin: 0;
  border: none;
}
.horizontal-divider {
  position: relative;
}
.horizontal-divider-before {
  padding-top: 30px;
}
.horizontal-divider-before:before {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
}
.vertical-divider-before,
.horizontal-divider-before {
  position: relative;
}
/* Gradients, from http://www.colorzilla.com/gradient-editor/ */
.vertical-fade {
  position: absolute;
  width: 100%;
  left: 0;
  top: 55px;
  height: 28px;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZWZlZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWVmZWYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(241, 239, 239, 0)), color-stop(100%, #f1efef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(241, 239, 239, 0) 0%, #f1efef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00f1efef', endColorstr='#f1efef', GradientType=0);
  /* IE6-8 */
}
.horizontal-fade {
  position: absolute;
  height: 100%;
  left: -28px;
  top: 0;
  width: 28px;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
  /* IE6-8 */
}
/* SHOP */
form .form-row-first,
form .form-row-last {
  float: left;
  width: 49%;
}
form .form-row.notes {
  clear: both;
}
form .form-row {
  margin: 0 0 6px 0px;
}
#payment ul.payment_methods li input {
  float: left;
}
/* COMMENTS */
#comments-list li.comment {
  margin-bottom: 20px;
}
#comments-list .comment-content {
  float: right;
  width: 320px;
  border: 1px solid #ccc;
  padding: 10px;
  clear: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#comments-list .comment-content .arrow-big {
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ccc;
  position: absolute;
  margin-left: -21px;
  margin-top: 9px;
}
#comments-list .comment-content .arrow-small {
  width: 0px;
  height: 0px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid white;
  position: absolute;
  margin-left: -19px;
  margin-top: 10px;
}
#comments-list .vcard {
  float: left;
  width: 250px;
}
#comments-list .vcard .commenter-name {
  font-size: 1.4rem;
  text-transform: none;
  color: #ed1c24;
}
#comments-list .vcard .comment-meta {
  font-size: 1.1rem;
}
#comments-list .vcard .photo {
  width: 100%;
}
#comments-list .vcard .vcard-left {
  width: 70px;
  height: 70px;
}
#comments-list .vcard .vcard-right {
  width: 150px;
}
#comments-list .vcard div {
  padding: 0;
}
.share-alert-list-wrapper {
  padding: 20px;
}
span.mr_social_sharing,
span.mr_social_sharing_top {
  width: 110px;
}
.post-footer-share {
  margin-top: 15px;
}
.excerpt-read-more {
  padding-right: 20px;
}
.excerpt-read-more:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  margin-top: 4px;
  margin-left: 5px;
  background: url('../images/Button-Stop-Small.png') no-repeat 0 0;
}
/* CAMPAIGN PAGE */
.stripe-wraper .underline {
  font-style: italic;
  font-size: 12px;
  margin-top: 5px;
}
.stripe-wraper .stripe-content {
  margin: 20px 0 10px 0;
  text-align: center;
}
.stripe-wraper .stripe-content > div {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.stripe-wraper > h3 {
  font-family: courier !important;
  text-transform: uppercase  !important;
  color: #88817f;
  font-weight: normal !important;
}
.stripe {
  position: relative;
  margin: 0 0 0 -48px;
  background: #48c0c5;
  height: 25px;
  width: 1048px;
  -webkit-box-shadow: 3px 3px 3px #bbb;
  -moz-box-shadow: 3px 3px 3px #bbb;
  box-shadow: 3px 3px 3px #bbb;
}
.stripe div.border {
  margin-top: 1px;
  height: 21px;
  width: 100%;
  border-top: 1px solid #c7e2c6;
  border-bottom: 1px solid #c7e2c6;
  position: absolute;
}
.stripe div.border span {
  margin-left: 48px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  padding-top: 1px;
  display: block;
}
.stripe:before {
  background: transparent url("../images/stripe-before.png") no-repeat;
  content: "";
  width: 8px;
  height: 7px;
  position: absolute;
  left: 0px;
  top: 25px;
}
.stripe.red {
  background: #ec2327;
}
.stripe.red div.border {
  border-top: 1px solid #fea2a4;
  border-bottom: 1px solid #fea2a4;
}
.campaign-content {
  margin-bottom: 20px;
  color: #88817f;
  font-size: 12px;
}
.campaign-content h1 {
  margin: 0 0 5px 0;
}
.campaign-content h2 {
  margin: 0 0 5px 0;
}
.campaign-content h3 {
  font-family: arial;
  text-transform: none;
  font-weight: bold;
}
.campaign-content .footer-text {
  font-size: 18px;
}
.campaign-content .footer-text span {
  font-style: italic;
}
/* vemringde */
#section-5.vemringde .alert-list-section-header:before {
  content: "5";
  background: #cecece;
}
#section-6.vemringde .alert-list-section-header:before {
  content: "6";
  background: #cecece;
}
.archive #section-5.vemringde .alert-list-section-header:before {
  content: "5";
  background: #808285;
}
.archive #section-6.vemringde .alert-list-section-header:before {
  content: "6";
  background: #808285;
}
#section-5.vemringde .alert-list-section-header {
  background: #cecece;
}
#section-6.vemringde .alert-list-section-header {
  background: #cecece;
}
.archive #section-5.vemringde .alert-list-section-header {
  background: #808285;
}
.archive #section-6.vemringde .alert-list-section-header {
  background: #808285;
}
.vemringde-entry {
  margin-bottom: 20px;
}
.vemringde-quote {
  color: #999;
  font-style: italic;
  margin-bottom: 5px;
}
.vemringde-author {
  color: #999;
  font-style: normal;
}
.vemringde-author span {
  font-weight: bold;
}
.vemringde-link {
  position: absolute;
  float: none;
  margin: -4px 0 0 10px;
}
#payment div.payment_box {
  background-color: #ffffff;
  /* fallback */
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#70AC20), to(#92C74B));
  /* Safari 4-5, Chrome 1-9 */
  background: -webkit-linear-gradient(top, #92C74B, #70AC20);
  /* Safari 5.1, Chrome 10+ */
  background: -moz-linear-gradient(top, #92C74B, #70AC20);
  /* Firefox 3.6+ */
  background: -ms-linear-gradient(top, #92C74B, #70AC20);
  /* IE 10 */
  background: -o-linear-gradient(top, #92C74B, #70AC20);
  /* Opera 11.10+ */
  text-shadow: none;
  color: #333;
}
#payment div.payment_box:after {
  border-bottom-color: #92C74B;
}
