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

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

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

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

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
.hidden {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

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

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

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

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

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


/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Define consistent border, margin, and padding.

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
 */
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

td,
th {
  padding: 0;
}

/*! _blank Theme starts here... */
/*
 * Colors
 */
/*
 * Fonts
 */
/*
 * Beaking Points
 */
/*
 * Useful mixins
 */
/*
 * Basics
 */
html {
  box-sizing: border-box;
  background-color: #FFF;
}

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

body {
  /*font-family: "thesans", Arial, sans-serif;*/
  font-family: "Source Sans Pro", Arial, sans-serif;
  
  font-size: 16px;
  line-height: 1.5;
  color: #16161d;
}

a {
  text-decoration: none;
  color: #014B96;
}

/* Image Gallery */
a[rel~="group"]{
	float: left;
	display:block;
	height:10rem;
	width:200px;
	overflow:hidden;
	border:1px solid white;
	margin:2px;
	border-radius: 8px;
}
a[rel~="group"] img{
	display:block;
	border:0px solid white;
	height:auto;
	width:250px;
}
a:hover {
	/*color: #E17700;*/
}


.site-wrap {
  margin: 0 auto;
}

.site-header-inner, .top-themen-inner, .product-wrap-inner, .content-wrap-inner, .rate-calculator-wrap-inner, .site-footer-inner {
  margin: 0 auto;
  max-width: 1060px;
}

.site-header {
  background-color: white;
}
.site-header .site-header-inner {
  position: relative;
  padding: 1.25rem 0;
}
.site-header .site-header-inner:after {
  content: '';
  clear: both;
  display: block;
}
.site-header .logo {
	/*position:absolute;*/
  display: block;
  margin: 0 2rem 0 1rem;
  float: left;
  width: 160px;
  height: 33px;
  background: url(/layout/sww.svg) no-repeat center center;
  background-size: 160px 33px;
  text-indent: -1000em;
  z-index:9999;
}
.site-header .logolink {
  position:absolute;
  display: block;
  margin: 0 2rem 0 1rem;
  float: left;
  width: 160px;
  height: 33px;
  z-index:9999;
}

@media only screen and (min-width: 768px) {
  .site-header .logo {
    margin-left: 1.5rem;
  }
}
.site-header .skip-link {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}


/*
.site-header .open-menu {
  display: block;
  float: right;
  margin: 0.5rem 1.5rem 0 0;
  padding: 0.25rem 0 0.25rem 2rem;
  font-size: 0.875em;
  line-height: 1;
  color: #014b96;
  background: url(/layout/menu-icon.svg) no-repeat left center;
  background-size: 24px 18px;
}
@media only screen and (min-width: 768px) {
  .site-header .open-menu {
    position: absolute;
    margin: -1px;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
.site-header .site-navigation {
  position: absolute;
  left: 0;
  top: 4.5rem;
  width: 100%;
  height: 0px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  z-index: 11;
}
.site-header .site-navigation:after {
  content: '';
  clear: both;
  display: block;
}
@media only screen and (min-width: 768px) {
  .site-header .site-navigation {
    position: static;
    left: auto;
    top: auto;
    float: left;
    width: auto;
    height: auto;
    margin-top: 0.75rem;
    background: transparent;
  }
}
.site-header .site-navigation.open {
  height: auto;
}
.site-header .site-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .site-header .site-navigation ul {
    float: left;
  }
}
@media only screen and (min-width: 768px) {
  .site-header .site-navigation li {
    display: inline-block;
    padding: 0 0.5rem;
  }
}
@media only screen and (min-width: 880px) {
  .site-header .site-navigation li {
    padding: 0 1rem;
  }
}
.site-header .site-navigation a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #014b96;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid rgba(2, 107, 175, 0.1);
}
@media only screen and (min-width: 768px) {
  .site-header .site-navigation a {
    display: inline-block;
    padding: 0;
    border: none;
  }
}
.site-header .site-navigation li.active a {
  color: #e18c14;
}
.site-header .site-navigation li:last-child a {
  padding-left: 2.75rem;
  background: url(/layout/login-icon-blue.png) no-repeat 1.5rem center;
  background-size: 12px 13px;
}
@media only screen and (min-width: 768px) {
  .site-header .site-navigation li:last-child a {
    position: absolute;
    right: 1rem;
    top: 2rem;
    padding-left: 0;
    width: 12px;
    background: url(/layout/login-icon-blue.png) no-repeat left 0.1rem;
    background-size: 12px 13px;
    text-indent: -1000em;
  }
}
@media only screen and (min-width: 960px) {
  .site-header .site-navigation li:last-child a {
    padding-left: 1rem;
    width: auto;
    text-indent: 0;
  }
}
*/


.site-header .meta-navigation {
  position: fixed;
 /* position: absolute;*/
  top: 100px;
  top: 6rem;
  right: -12.5em;
  z-index: 10;
  display: none;
}
@media only screen and (min-width: 769px) {
  .site-header .meta-navigation {
    display: block;
  }
}
.site-header .meta-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;

}
.site-header .meta-navigation li {
  position: relative;
  clear: both;
  left: 0px;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0 0 3rem;
  width: 14.5rem;
  min-height: 2rem;
  border-radius: 10px 0 0 10px;
  transition: all 0.5s ease 0s;
  background-color:#FFF;
}
.site-header .meta-navigation li:after {
  content: '';
  clear: both;
  display: block;
}
.site-header .meta-navigation li.search {
  padding: 0 0 0 2rem;
}
.site-header .meta-navigation li.open {
  left: -12.3em;
}
.site-header .meta-navigation .meta-button {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  color: white;
  background-color: #014b96;
  overflow: hidden;
  text-indent: -1000em;
  border-radius: 3px 0 0 3px;
}

.meldungen  {
	position: absolute;
	width: 8em;
	height: 7em;
	top: 5em;
	right: 4em;
	border: 0px solid red;
	z-index: 3;
	text-align: center;
	color:#FFF;
	text-shadow: 1px 1px #333;
}
@media only screen and (max-width: 769px) {
.meldungen  {
	top: 6em;
	right: 0;
	}
}

/* TEMP */
.challenge  {
	position: absolute;
	width: 8em;
	height: 8em;
	top: 7em;
	right: 2em;
	border: 0px solid red;
	z-index: 3;
	text-align: center;
	color:#FFF;
	text-shadow: 1px 1px #333;
	/*cursor:pointer;*/
}
@media only screen and (min-width: 769px) {
	.challenge  {
		position: absolute;
		width: 14em;
		height: 7em;
		top: 7em;
		right: 9em;
		border: 0px solid red;
		z-index: 3;
		text-align: center;
		color:#FFF;
		text-shadow: 1px 1px #333;
	}
}
/* TEMP */


.site-header .meta-navigation .login .meta-button {
  background: #014b96 url(/layout/login-icon.svg) no-repeat center center;
  background-size: 28px 28px;
}
.site-header .meta-navigation .search .meta-button {
  background: #014b96 url(/layout/search-icon.svg) no-repeat center center;
  background-size: 30px 30px;
}
.site-header .meta-navigation .mail .meta-button {
  background: #014b96 url(/layout/mail-icon.svg) no-repeat center center;
  background-size: 28px 26px;
}
.site-header .meta-navigation .phone .meta-button {
  background: #014b96 url(/layout/phone-icon.svg) no-repeat center center;
  background-size: 30px 30px;
}
.site-header .meta-navigation #search-form {
  display: block;
  padding: 0;
  border: none;
}
.site-header .meta-navigation #search-form #search {
  margin: 0;
  padding-left: 0.5rem;
  height: 2rem;
  border: none;
}
.site-header .meta-navigation #search-form input[type="submit"] {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.site-header .meta-navigation a {
  color: #014b96;
}
.site-header .meta-navigation a:hover {
  text-decoration: underline;
}


.content-navigation {
	padding:2.2rem 0 0 0;
	border:0px solid red;
	display:none;
}
@media only screen and (min-width: 769px) {
.content-navigation {
		display:block;
	}
}



/* Image Sliders: -> all slider styles in slider.css */





.topinfos {
	margin:0 -1.0rem 0 0;
		border: 0px solid blue;
}


/*.top-themen {
  display: none;
  background-color: white;
}
.top-themen .top-themen-inner {
  padding-top: 2rem;
}
.top-themen h1 {
  margin: 0 0 1rem 0;
  padding: 0 1rem;
  font-size: 1em;
  line-height: 1.2;
}
.top-themen .box:after {
  content: '';
  clear: both;
  display: block;
}
.top-themen .box img {
  margin: 0;
  width: 100%;
  height: auto;
  text-align: bottom;
}
.top-themen .box h2 {
  margin: 0 0 1rem 0;
  padding: 0 1rem;
  font-size: 1.25em;
  line-height: 1.2;
  font-weight: 400;
  color: white;
}
.top-themen .box .button {
  display: block;
  float: right;
  background-color: rgba(255, 255, 255, 0.85);
  color: #026baf;
}
.top-themen .blue, .top-themen .green, .top-themen .gray, .top-themen .orange {
  color: white;
}
.top-themen .blue {
  background-color: #026baf;
}
.top-themen .green {
  background-color: #53a120;
}
.top-themen .gray {
  background-color: #a0a0a0;
}
.top-themen .orange {
  background-color: #e18c14;
}
*/




/*
 * The Grid
 * Used by sidebars/content and also inside the content area!
 */
.row {
  clear: both;
  /*background:none !important;*/
}
.row:after {
  content: '';
  clear: both;
  display: block;
}
.row .column {
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
		border:0px solid orange;
}
.row .column:after {
  content: '';
  clear: both;
  display: block;
}
@media only screen and (min-width: 769px) {

  .row .column {
    float: left;
  }
  .row .column.col-20 {
    width: 20%;
  }
  .row .column.col-25 {
    width: 25%;
  }
  .row .column.col-30 {
    width: 30%;
  }
  .row .column.col-33 {
    width: 33.33333%;
  }
  .row .column.col-50 {
    width: 50%;
  }
  .row .column.col-70 {
    width: 70%;
  }
  .row .column.col-75 {
    width: 75%;
	min-height:20rem;
	/*padding-right:1.5rem;*/
  }
  .row .column.col-100 {
    width: 100%;
  }
}

.row.product-wrap-inner .column {
  /*margin-bottom: 0;
  border:0px solid red;
  padding: 0 1.5rem;*/
 }
/*
@media only screen and (min-width: 769px) {
  .row.product-wrap-inner .column {
    padding: 0 0 0 1rem;
  }
}*/
.row .row {
  margin: 0 -1.5rem 2rem -1.5rem;
  /*margin: 0 0rem 2rem 0rem;*/
}
.row .row:after {
  content: '';
  clear: both;
  display: block;
}
h1 {
  color: #026baf;
}
h2 {
  color: #026baf;
}
h3 {
  color: #026baf;
}
.product-wrap {
  background-color: white;
}
.product-wrap .product-wrap-inner {
  padding: 0.5rem 0 0.5rem 0;
}

@media only screen and (min-width: 769px) {
  .product-wrap .product-wrap-inner {
    padding: 0.5rem 1rem;
  }
} 

.product-wrap h2 {
 /* margin: 0 0 0.5rem 0;*/
  font-size: 1.3em;
  line-height: 1.2;
	margin: 0.67em 0;
}
.product-wrap p {
  margin: 0 0 1rem 0;
  /*font-size: 0.875em;*/
}
.acc p {
  margin: 0;
  /*font-size: 0.875em;*/
}
/*.zumangebot {
	margin: 0 !important; 
}
.rechner_ergebniss_big {
	height: 1rem;
}*/




fieldset {
  margin: 0;
  padding: 0 1rem;
  border: none;
}
@media only screen and (min-width: 768px) {
  fieldset {
    padding: 1rem 1rem 0;
  }
}
fieldset p {
  margin: 0;
  padding: 1rem 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
fieldset p:after {
  content: '';
  clear: both;
  display: block;
}
@media only screen and (min-width: 768px) {
  fieldset p {
    padding: 0;
  }
}
fieldset p label {
  float: left;
}
fieldset p input[type="text"] {
  padding: 0.5rem;
  border: none;
  color: #16161d;
}



.product-wrap .button, .content-wrap .button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem 0.5rem 1.25rem;
 /* font-size: 0.75em;*/
  font-weight: bold;
  line-height: 1;
  color: #026baf;
  background: rgba(255, 255, 255, 0.9) url(/layout/arrow-right-blue.png) no-repeat 0.5rem center;
  background-size: 6px 10px;
  border: none;
  border-radius: 3px 0 0 0;
}

.green .button {
  color: #53a120;
  background: rgba(255, 255, 255, 0.9) url(/layout/arrow-right-green.png) no-repeat 0.5rem center;
  background-size: 6px 10px;
}

.orange .button {
  color: #e18c14;
  background: rgba(255, 255, 255, 0.9) url(/layout/arrow-right-orange.png) no-repeat 0.5rem center;
  background-size: 6px 10px;
}

.gray .button {
  color: #a0a0a0;
  background: rgba(255, 255, 255, 0.9) url(/layout/arrow-right-gray.png) no-repeat 0.5rem center;
  background-size: 6px 10px;
}

.silver .button {
  color: #026baf;
  background: rgba(255, 255, 255, 0.6) url(/layout/arrow-right-blue.png) no-repeat 0.5rem center;
  background-size: 6px 10px;
}

.products {
  /*padding-right: 0.5rem !important;*/
}

.product-box {
  float: left;
  padding: 0 1rem 1rem 0;
  width: 100%;
}

.contentimage{
	float:left;
	margin-right:1rem;
}

@media only screen and (min-width: 420px) {
  .product-box {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .product-box:nth-child(4) {
    clear: both;
  }
}

.product-box-inner p{
  padding:1rem;
  color:#FFF;
}
.product-box.green .product-box-inner {
  background: #53a120;
}
.product-box.orange .product-box-inner {
  background: #e18c14;
}
.product-box.blue .product-box-inner {
  background: #026baf;
}
.product-box.gray .product-box-inner {
  background: #a0a0a0;
}
.product-box.silver .product-box-inner {
  background: #ececec;
}

.content-wrap .product-box {
  width: 100%;
}
@media only screen and (min-width: 420px) {
  .content-wrap .product-box {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .content-wrap .product-box {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  .content-wrap .product-box:nth-child(4) {
    clear: both;
  }
}
.content-wrap .product-box:nth-child(2n+2) {
  clear: both;
}
@media only screen and (min-width: 768px) {
  .content-wrap .product-box:nth-child(2n+2) {
    clear: none;
  }
}


.product-box-inner {
  position: relative;
  /*padding: 0 0 1rem 0;*/ 
  /* 0 0 2rem 0; -> rz 20.05.2016 */
  }
.product-box-inner img {
  margin: 0;
  width: 100%;
  height: auto;
  text-align: bottom;
}
.product-box-inner .boxtext {
  margin: 0;
  padding: 0.5rem 1rem;
  height: 6rem;
  font-size: 1.0em;
  color: white;
}

.silver .product-box-inner p {
  color: #026baf;
}

.product-box-inner h3 {
	margin:0;
	padding: 0 0.5em 0 1rem;
	color:#FFFFFF;
	font-size:1.0rem;
}

.content-wrap .product-box-inner p { /* höhe des textbereichs in den topnews boxen */
 height: 6rem;
 /*  height: 13rem;
*/
}
@media only screen and (min-width: 768px) {
	  .content-wrap .product-box-inner p { /* höhe des textbereichs in den topnews boxen */
	  height: 13rem;
	}
}


.claim {
  clear: both;
  padding: 0 1.5rem;
  font-size: 1.25em;
  font-weight: bold;
  color: #e18c14;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .claim {
    padding: 0 1rem;
  }
}
.claim .dot {
  color: #026baf;
}

.content-wrap .claim {
  padding-top: 1rem;
}

.content-wrap {
  background-color: white;
}
.content-wrap .content-wrap-inner {
  padding: 1.5rem 1rem;
}
.content-wrap .row {
  margin-bottom: 1.5rem;
}
.content-wrap .column {
  margin-bottom: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .content-wrap .column {
    padding: 0;
  }
}

/*.content-wrap h1 {
  margin: 0 0 1rem 0;
  color: #16161d;
  font-size: 1.5em;
  line-height: 1.2;
}*/

.content-wrap h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1em;
  line-height: 1.2;
}
.content-wrap p {
  margin: 0 0 1rem 0;
  font-size: 0.875em;
}

/*.download:before {
  content: '';
  clear: both;
  display: block;
}*/
/* 
	pdfs [target=_blank] 
	https://www.w3.org/community/webed/wiki/Advanced_CSS_selectors
*/    
a[href$=".pdf"], a[href$=".zip"], a[href$=".xls"], a[href$=".xlsx"], a[href$=".PDF"]   {         
	padding-left: 20px;         
	background: url(/images/icons/pdf-downloads.svg) no-repeat left 0rem;
	background-size: 14px;
	line-height:1.5rem;
} 
.textimage a[href$=".pdf"]  {        
	padding-left: 0px;         
	background-size: 0px 0px;
}
.preistabelle a[href$=".pdf"]  {        
	padding-left: 16px;         
	background: url(/images/icons/pdf-downloads.svg) no-repeat left 0rem;
	background-size: 12px;
	line-height:1.5rem;
/*	
Das nix gut, da sonst alle PDF Links links floaten ...

  margin-top: .7rem;
  float: left;
*/  
}  
.download {
	border:0px solid red;
	display: block;
	margin: 0rem 0 2.5rem 0;
	padding: 0 0 0 2.4rem;
	color: #014b96;
	/*background: url(/layout/download-icon.png) no-repeat left 0.4rem;*/
	background: url(/images/icons/pdf-downloads.svg)no-repeat left 0.4rem;
	background-size: 32px;
}
.download a[href$=".pdf"]  {         
	padding-left: 0px;         
	background-size: 0px 0px;
}

@media only screen and (min-width: 768px) {
  .download {
    float: right;
    margin: 0rem 1rem 0 2rem;
  }
  .textimage {
	float: right;
	margin-left: 1rem;
  }
}
.download span {
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1;
  font-weight: bold;
}
.download small {
  display: block;
  color: #16161d;
}

.product-wrap #service-wrap h1, .product-wrap #service-wrap h2 {
	font-size: 2em;
	margin: 0.67em 0;
}



/* Footer styles corporate */

#search-form-footer{
  display: none;
}

#search-form-footer label{
  margin: 0 0 1rem 0;
  font-size: 1em;
  color: white;
  display: block;
}

#search-form-footer [type="text"]{
  color: #222;
  border: none;
  padding: 3.5px;
  margin-right: 5px
}

#search-form-footer [type="submit"]{
  color: #026baf;
  background-color: #fff;
  box-shadow: none;
  border: none;
  outline: none;
}

.site-footer {
  background-color: #026baf;
  color: white;
}
.site-footer .site-footer-inner {
  padding: 2rem 0 2rem  0;
}
.site-footer .row {
  margin-bottom: 0rem;
}
.site-footer .column {
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}
.site-footer h3 {
  margin: 0 0 1rem 0;
  font-size: 1em;
  color: white;
}
.site-footer a {
  color: white;
  text-decoration: none;
}
.site-footer a:hover, .site-footer a:focus {
  text-decoration: underline;
}
.site-footer dl {
  font-size: 0.875em;
  /*line-height: 1.5;*/
}
.site-footer dt {
  clear: both;
  float: left;
  margin: 0 0 0.5rem 0;
  width: 30%;
}
.site-footer dd {
  float: left;
  margin: 0 0 0.5rem 0;
  width: 50%;
  text-align: right;
}
.site-footer .left, .site-footer .right {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}
.site-footer .left li, .site-footer .right li {
  margin-bottom: 1rem;
}
.site-footer .left li:last-child, .site-footer .right li:last-child {
  margin-bottom: 0;
}
.site-footer .left .active, .site-footer .right .active {
  color: #e18c14;
  font-weight: bold;
}
.site-footer .left {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  #search-form-footer{
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .site-footer .left {
    width: 40%;
    margin-left: 10%;
    text-align: right;
  }
}
.site-footer .right {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .site-footer .right {
    width: 40%;
    padding-left: 10%;
    margin-left: 10%;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
  
  .siegel {
  	text-align:center;
	margin-left:18%;
  }
}
.site-footer .company-info {
  padding: 0 1.5rem 1rem;
}
.site-footer .company-info:after {
  content: '';
  clear: both;
  display: block;
}
@media only screen and (min-width: 768px) {
  .site-footer .company-info {
    padding: 0 1rem 0 1rem;
  }
}
.site-footer .company-info .company-info-inner {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.site-footer .company-info .logo {
  display: block;
  margin: 0 2rem 1.5rem 0;
  float: left;
  width: 120px;
  height: 24px;
  width: 160px;
  height: 32px;
  background: url(/layout/sww-white.svg) no-repeat center center;
  background-size: 160px 32px;
  text-indent: -1000em;
}
.site-footer .company-info .youtube {
    background: url(/images/icons/icon-youtube.svg) no-repeat;
	background-position: left -5px;
    background-size: 2rem 2rem;
    font-size: 0.875em;
	height: 2em;
	padding-left:20px;
	display: inline-block;
}
.site-footer .company-info .facebook {
    background: url(/images/icons/icon-facebook.svg) no-repeat;
	background-position: left 0px;
    background-size: 1.6rem;
    font-size: 0.875em;
	height: 2.2em;
	padding-left:6px;
	display: inline-block;
	margin-left: 6px;
}
.site-footer .company-info .instagram {
    background: url(/images/icons/icon-instagram.svg) no-repeat;
	background-position: left 0px;
    background-size: 1.7rem;
    font-size: 0.875em;
	height: 2.2em;
	padding-left:4px;
	display: inline-block;
	margin-left: 6px;
}
.site-footer .company-info .linkedin {
    background: url(/images/icons/icon-linkedin.svg) no-repeat;
	background-position: left -4px;
    background-size: 2.2rem;
    font-size: 0.875em;
	height: 2.2em;
	padding-left:16px;
	display: inline-block;
	margin-left: 0px;
}
.site-footer .company-info .tiktok {
    background: url(/images/icons/icon-tiktok.svg) no-repeat;
	background-position: left -4px;
    background-size: 2.1rem;
    font-size: 0.875em;
	height: 2.2em;
	padding-left:26px;
	display: inline-block;
	margin-left: 0px;
}
.site-footer .company-info .social {
	color:transparent;
	text-indent: -35px;
	
}
.site-footer .company-info ul {
  clear: both;
  font-size: 0.875em;
  line-height: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .site-footer .company-info ul {
    margin-top: 0.35rem;
    clear: none;
    float: right;
  }
}
.site-footer .company-info li {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
}
@media only screen and (min-width: 768px) {
  .site-footer .company-info li {
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
  .site-footer .company-info li:first-child {
    padding-left: 0;
    border: none;
  }
}
.site-footer .company-info a {
  color: white;
}

.screen-reader-text {
  position: absolute;
  margin: -1px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.meldungen-home {
	font-size:0.9em;
	padding:0 1em; 
	background-color: white; 
	position:absolute; 
	top:106px; 
	width:90%; 
/*	overflow:hidden;
	height:62px;
	width:300px; 
	margin: 0px 50%;*/
	max-width:1024px; 
	z-index:999;
	opacity:0.99;
	box-shadow: 10px 10px 20px #0000007a;
	display:none;
}

.meldungen-home-mwst {
	font-size:0.9em;
	padding:0 1em; 
	background-color: white; 
	position:relative; 
	top:10px; 
	width:100%; 
/*	overflow:hidden;
	height:62px;
	width:300px; 
	margin: 0px 50%;*/
	max-width:1024px; 
	z-index:999;
	opacity:0.99;
	box-shadow: 10px 10px 20px #0000007a;
	display:block;
	margin-bottom: 4em;
}
.meldungen-home h2 {
	line-height:1.8em;
	color: #014b96;
	background-image: url('/layout/fancybox_close.png'); background-repeat:no-repeat; background-position:top right;
	cursor: pointer;
	z-index: 8040;
	padding-right:40px;
}
.meldungen-home-mwst h2 {
	line-height:1.8em;
	color: #014b96;
	z-index: 8040;
	padding-right:40px;
}

.meldungen-home .presse-tb {
	padding: 0em;
}

/* rz 03.07.2020 */
.prodmwsthint {
	clear:both;
	margin-top:0.25em;
	padding:5px;
	border:1px solid #E17700;
	font-size:0.8em;
}
/* rz 03.07.2020 */