/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

html.with-featherlight {
	/* disable global scrolling when featherlights are visible */
	overflow: hidden;
}

.featherlight {
	display: none;

	/* dimensions: spanning the background from edge to edge */
	position:fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 2147483647; /* z-index needs to be >= elements on the site. */

	/* position: centering content */
	text-align: center;

	/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
	white-space: nowrap;

	/* styling */
	cursor: pointer;
	background: #333;
	/* IE8 "hack" for nested featherlights */
	background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */

.featherlight:last-of-type {
	background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
	/* position: trick to center content vertically */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.featherlight .featherlight-content {
	/* make content container for positioned elements (close button) */
	position: relative;

	/* position: centering vertical and horizontal */
	text-align: left;
	vertical-align: middle;
	display: inline-block;

	/* dimensions: cut off images */
	overflow: auto;
	padding: 25px 25px 0;
	border-bottom: 25px solid transparent;

	/* dimensions: handling large content */
	margin-left: 5%;
	margin-right: 5%;
	max-height: 95%;

	/* styling */
	background: #fff;
	cursor: auto;

	/* reset white-space wrapping */
	white-space: normal;
}

/* contains the content */

.featherlight .featherlight-inner {
	/* make sure its visible */
	display: block;
}

/* don't show these though */

.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
	display: none;
}

.featherlight .featherlight-close-icon {
	/* position: centering vertical and horizontal */
	position: absolute;
	z-index: 9999;
	top: 0;
	right: 0;

	/* dimensions: 25px x 25px */
	line-height: 25px;
	width: 25px;

	/* styling */
	cursor: pointer;
	text-align: center;
	font-family: Arial, sans-serif;
	background: #fff; /* Set the background in case it overlaps the content */
	background: rgba(255, 255, 255, 0.3);
	color: #000;
	border: none;
	padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */

.featherlight .featherlight-close-icon::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.featherlight .featherlight-image {
	/* styling */
	width: 100%;
}

.featherlight-iframe .featherlight-content {
	/* removed the border for image croping since iframe is edge to edge */
	border-bottom: 0;
	padding: 0;
	-webkit-overflow-scrolling: touch;
}

.featherlight iframe {
	/* styling */
	border: none;
}

.featherlight * { /* See https://github.com/noelboss/featherlight/issues/42 */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* handling phones and small screens */

@media only screen and (max-width: 1024px) {
	.featherlight .featherlight-content {
		/* dimensions: maximize lightbox with for small screens */
		margin-left: 0;
		margin-right: 0;
		max-height: 98%;

		padding: 10px 10px 0;
		border-bottom: 10px solid transparent;
	}
}

/* hide non featherlight items when printing */

@media print {
	html.with-featherlight > * > :not(.featherlight) {
		display: none;
	}
}

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/

.featherlight-next,
.featherlight-previous {
	display: block;
	position: absolute;
	top: 25px;
	right: 25px;
	bottom: 0;
	left: 80%;
	cursor: pointer;
	/* preventing text selection */
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	/* IE9 hack, otherwise navigation doesn't appear */
	background: rgba(0,0,0,0);
}

.featherlight-previous {
	left: 25px;
	right: 80%;
}

.featherlight-next:hover,
.featherlight-previous:hover {
	background: rgba(255,255,255,0.25);
}

.featherlight-next span,
.featherlight-previous span {
	display: none;
	position: absolute;

	top: 50%;
	left: 5%;
	width: 82%;

	/* center horizontally */
	text-align: center;

	font-size: 80px;
	line-height: 80px;

	/* center vertically */
	margin-top: -40px;

	text-shadow: 0px 0px 5px #fff;
	color: #fff;
	font-style: normal;
	font-weight: normal;
}

.featherlight-next span {
	right: 5%;
	left: auto;
}

.featherlight-next:hover span,
.featherlight-previous:hover span {
	display: inline-block;
}

.featherlight-swipe-aware .featherlight-next,
.featherlight-swipe-aware .featherlight-previous {
	display: none;
}

/* Hide navigation while loading */

.featherlight-loading .featherlight-previous, .featherlight-loading .featherlight-next {
	display:none;
}

/* Hide navigation in case of single image */

.featherlight-first-slide.featherlight-last-slide .featherlight-previous,
.featherlight-first-slide.featherlight-last-slide .featherlight-next {
	display:none;
}

/* Always display arrows on touch devices */

@media only screen and (max-device-width: 1024px){
	.featherlight-next:hover,
	.featherlight-previous:hover {
		background: none;
	}
	.featherlight-next span,
	.featherlight-previous span {
		display: block;
	}
}

/* handling phones and small screens */

@media only screen and (max-width: 1024px) {
	.featherlight-next,
	.featherlight-previous {
		top: 10px;
		right: 10px;
		left: 85%;
	}

	.featherlight-previous {
		left: 10px;
		right: 85%;
	}

	.featherlight-next span,
	.featherlight-previous span {
		margin-top: -30px;
		font-size: 40px;
	}
}

/*@import url("http://fast.fonts.net/t/1.css?apiType=css&projectid=3116dcbf-eccb-4b0f-9c17-2fbc838995de");*/

@font-face{
  font-family:"Conduit ITC W01 Light";
  src:url("../Fonts/conduit/Fonts/45fa0132-0858-4e18-9594-5a070788a059.eot?#iefix");
  src:url("../Fonts/conduit/Fonts/45fa0132-0858-4e18-9594-5a070788a059.eot?#iefix") format("eot"),url("../Fonts/conduit/Fonts/0f250d3b-13fd-469c-a4ec-9f9984165dea.woff2") format("woff2"),url("../Fonts/conduit/Fonts/e924c59f-bc21-471f-ad1b-cefd0c1a6315.woff") format("woff"),url("../Fonts/conduit/Fonts/13b88c12-e5f0-46c4-932a-57fe881b7c46.ttf") format("truetype"),url("../Fonts/conduit/Fonts/cf39e66c-fff7-43d5-b865-0a45543d590a.svgrgba(207, 57, 230, 0.42353)-fff7-43d5-b865-0a45543d590a") format("svg");
}

@font-face{
  font-family:"Conduit ITC W01 Bold";
  src:url("../Fonts/conduit/Fonts/ef1cf8c3-989e-4b7e-ad89-9e034d47686d.eot?#iefix");
  src:url("../Fonts/conduit/Fonts/ef1cf8c3-989e-4b7e-ad89-9e034d47686d.eot?#iefix") format("eot"),url("../Fonts/conduit/Fonts/4680ad80-371f-497c-8926-35654adc2249.woff2") format("woff2"),url("../Fonts/conduit/Fonts/fdaf48d4-c023-4a03-b948-53535ee4d571.woff") format("woff"),url("../Fonts/conduit/Fonts/ca6dc25e-d400-4735-9fb9-ee2d025ebb5c.ttf") format("truetype"),url("../Fonts/conduit/Fonts/aa206b9b-b888-4ce6-8039-669469e9b429.svgrgba(170, 32, 107, 0.60784)-b888-4ce6-8039-669469e9b429") format("svg");
}

:root {
  --font-family-sans-serif: 'Conduit ITC W01 Light', sans-serif;
  --font-family-sans-serif-bold: 'Conduit ITC W01 Bold', sans-serif;
  --font-weight-regular: normal;
  --font-weight-bold: bold;
  --font-weight-headlines: normal;
}

:root {
  --brand-primary: #5b717f;
  --brand-secondary: #5b717f;
  --brand-tertiary: #5b717f;
  --brand-tec: #2bc2ef;
  --brand-art: #e5005a;

  --white: #fff;
  --gray: #68757e;
  --gray-light: #f2f2f2;
  --gray-lighter: #e3e2e4;
  --gray-lightest: #f6f6f6;
  --black: #000000;

  --transparent-primary: rgba(229, 0, 90, 0.7);
  --transparent-primary-dark: rgba(229, 0, 90, 0.9);
}

div.button, a.button, button.button, .flowing-text a.button {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 23px;
  text-decoration: none;
  padding: 5px 10px;
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  border: none;
  background: #5b717f;
  background: #5b717f;
  background: var(--brand-primary);
  color: #fff;
  color: #fff;
  color: var(--white);
  cursor: pointer;
  -webkit-transition: -webkit-transform 150ms ease-in-out;
  transition: -webkit-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out
}

div.button:hover, a.button:hover, button.button:hover, .flowing-text a.button:hover {/*transform: scale(1.05);*/
}

div.button.button--invert, a.button.button--invert, button.button.button--invert, .flowing-text a.button.button--invert {
	background: #fff;
	background: #fff;
	background: var(--white);
	color: #68757e;
	color: #68757e;
	color: var(--gray);
}

div.button.button--ghost, a.button.button--ghost, button.button.button--ghost, .flowing-text a.button.button--ghost {
	background: transparent;
	color: #fff;
	color: #fff;
	color: var(--white);
	border: 1px solid #fff;
	border: 1px solid #fff;
	border: 1px solid var(--white);
}

div.button.button--ghost:hover, a.button.button--ghost:hover, button.button.button--ghost:hover, .flowing-text a.button.button--ghost:hover {
	background: #fff;
	background: #fff;
	background: var(--white);
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

div.button.button--ghost-gray, a.button.button--ghost-gray, button.button.button--ghost-gray, .flowing-text a.button.button--ghost-gray {
	background: transparent;
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	border: 1px solid #68757e;
	border: 1px solid #68757e;
	border: 1px solid var(--gray);
}

div.button.button--ghost-gray:hover, a.button.button--ghost-gray:hover, button.button.button--ghost-gray:hover, .flowing-text a.button.button--ghost-gray:hover {
	background: #68757e;
	background: #68757e;
	background: var(--gray);
	color: #fff;
	color: #fff;
	color: var(--white);
}

div.button.button--icon, a.button.button--icon, button.button.button--icon, .flowing-text a.button.button--icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

div.button.button--icon .button__icon, a.button.button--icon .button__icon, button.button.button--icon .button__icon, .flowing-text a.button.button--icon .button__icon {
      display: block;
      width: 50px;
      height: auto;
      margin-left: 20px;
}

body {
  font-size: 16px;
  line-height: 22px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

/*h3 {
  font-size: 48px;
  line-height: 50px;
  font-family: var(--font-family-sans-serif);
  font-weight: var(--font-weight-headlines);
}

h4 {
  margin: 0;
  font-size: 27px;
  line-height: 32px;
  font-weight: normal;
  font-family: var(--font-family-sans-serif-bold);
}*/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.select-replace {
  position: relative;
  width: 100%;
  height: 44px;
  background: transparent;
  border: solid 1px #f2f2f2;
  border: solid 1px #f2f2f2;
  border: solid 1px var(--gray-light);
  border-radius: 0;
  -webkit-transition: background 500ms;
  transition: background 500ms;

}

.select-replace >select {
    position: absolute;
    width: 100%;
    padding: 10px 10px 10px 16px;
    font-size: 20px;
    line-height: 22px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
    background: #fff;
    background: #fff;
    background: var(--white);
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    border: none;
    border-radius: 0;
    height: 44px;
    outline: none;
    background: transparent;
    -webkit-box-shadow:none !important;
            box-shadow:none !important;
    cursor: pointer;
    text-align: left;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance:none
  }

.select-replace >select::-ms-expand {
	display: none;
}

.select-replace >select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #414141;
}

.select-replace >select option {
      color: #000;
}

.select-replace:after {
	content: "";
	position: absolute;
	right: 16px;
	top: 17px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 7px 0 7px;
	border-color: #f2f2f2 transparent transparent transparent;
	border-color: #f2f2f2 transparent transparent transparent;
	border-color: var(--gray-light) transparent transparent transparent;
}

.select-replace:hover >.icon {

}

.select-replace:focus {
	background: #fff;
}

.radio-replace {
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}

.radio-replace >input {
    display: none
  }

.radio-replace >input + .text {
	display: inline-block;
}

.radio-replace >input + .text >.icon {
        position: relative;
        display: inline-block;
        top: 4px;
        width: 18px;
        height: 18px;
        border: solid 1px #5b717f;
        border: solid 1px #5b717f;
        border: solid 1px var(--brand-tertiary);
        border-radius: 18px;
        margin-right: 5px;
        background: transparent;
        text-align: center;
        font-size: 13px;
        line-height: 18px;
        padding: 1px 0 0 0;
        color: red;
        -webkit-transition: color 100ms;
        transition: color 100ms;
}

.radio-replace >input + .text >.icon::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 18px;
	background: transparent;
	-webkit-transition: all 150ms, background 300ms;
	transition: all 150ms, background 300ms;
}

.radio-replace >input:checked + .text >.icon::before {
	left: 2px;
	top: 2px;
	width: 12px;
	height: 12px;
	background: #5b717f;
	background: #5b717f;
	background: var(--brand-tertiary);
}

dialog {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

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

.default-modal {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 90%;
  max-width: 635px;
  max-height: 98vh;
  margin: 0;
  padding: 0;
  border: solid 6px #fff;
  border: solid 6px #fff;
  border: solid 6px var(--white);
  z-index: 1100;
  overflow: auto;
  color: #fff;
  color: #fff;
  color: var(--white);
  font-size: 20px;
  line-height: 30px;

}

.default-modal .content-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
  }

@media (min-width: 1024px) {

	.default-modal .content-wrap {
		padding: 30px;
	}
}

.default-modal .content-wrap.primary {
	background-color: #5b717f;
	background-color: #5b717f;
	background-color: var(--brand-primary);
}

.default-modal .content-wrap.secondary {
	background-color: #5b717f;
	background-color: #5b717f;
	background-color: var(--brand-secondary);
}

.default-modal .content-wrap.tertiary {
	background-color: #5b717f;
	background-color: #5b717f;
	background-color: var(--brand-tertiary);
}

.default-modal .content-wrap.modal-video-content {
	padding: 0;
}

.default-modal h4 {
    margin: 0;
    max-width: 90%;
    font-size: 32px;
    line-height: 32px;
    color: #fff;
    color: #fff;
    color: var(--white);
    font-family: var(--font-family-headlines);
    font-family: var(--font-family-headlines);
    font-family: var(--font-family-headlines);
    font-family: var(--font-family-headlines);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
  }

.default-modal p:last-of-type {
    margin-bottom: 0;
  }

.default-modal .default-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    z-index: 1;
    overflow: hidden;
    text-indent: -1000px;
    border: none;
    background: transparent no-repeat center;
    background-image: url(../Images/close.svg);
  }

.default-modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #707070;
  opacity: .5;
  z-index: 1000;
  cursor: pointer;
}

/* modal */

.default-modal {

}

/*
.default-modal-close:focus,
.default-modal-close:hover,
.default-modal-close:active {
  background: #882525;
}
*/

.default-modal-overlay[data-background-click="disabled"] {
  cursor: auto;
}

figure.table {
  margin: 0;
}

.table-responsive {
  width: 100%;
  overflow-y: auto;
  margin: 0 0 20px 0;
  color: #68757e;
  color: #68757e;
  color: var(--gray)
}

.table-responsive::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

.table-responsive::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}

table.contenttable {
  width: 100%;
  max-width: 100%;
  border-bottom: solid 1px #68757e;
  border-bottom: solid 1px #68757e;
  border-bottom: solid 1px var(--gray);
  font-size: 23px;
  line-height: 28px;
  background: #fff;
  background: #fff;
  background: var(--white);
  border-collapse: collapse;

}

table.contenttable thead {
    border-bottom: solid 1px #68757e;
    border-bottom: solid 1px #68757e;
    border-bottom: solid 1px var(--gray);
  }

table.contenttable thead th {
      padding: 10px;
      color: #68757e;
      color: #68757e;
      color: var(--gray);
      text-align: left;
      font-family: 'Conduit ITC W01 Bold', sans-serif;
      font-family: 'Conduit ITC W01 Bold', sans-serif;
      font-family: var(--font-family-sans-serif-bold);
      font-weight: normal;
      vertical-align: top;
      background: #fff;
      background: #fff;
      background: var(--white);
    }

table.contenttable td {
    padding: 10px;
    vertical-align: middle;
  }

table.contenttable tr {
    background: #f2f2f2;
    background: #f2f2f2;
    background: var(--gray-light);
    vertical-align: top
  }

table.contenttable tr:nth-child(even) {
	background: none;
}

table.contenttable p {
    margin: 0 !important;
  }

.flowing-text {
  font-size: 23px;
  line-height: 27px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);

}

.flowing-text strong {
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
  }

.flowing-text a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
    text-decoration: underline
  }

.flowing-text a:hover {
	text-decoration: none;
}

.flowing-text ul {
    margin: 30px 0;
    padding: 0 0 0 25px;
    list-style-type: circle;
  }

.flowing-text p {
    margin: 0 0 30px 0
  }

.flowing-text p:last-of-type {
	margin: 0;
}

.flowing-text p.small {
	margin: 0 0 10px 0;
	font-size: 13px;
	line-height: 16px;
}

.flowing-text h1.h1-with-topline {
    margin: 0 0 30px 0;
    font-size: 40px;
    line-height: 43px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
  }

@media (min-width: 1024px) {

	.flowing-text h1.h1-with-topline {
		font-size: 48px;
		line-height: 50px;
	}
}

.flowing-text .h1-with-topline__topline {
    display: block;
    margin: 0 0 10px 0;
    font-size: 28px;
    line-height: 31px;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

@media (min-width: 1024px) {

	.flowing-text .h1-with-topline__topline {
		font-size: 35px;
		line-height: 40px;
	}
}

.flowing-text .header-teaser__headline {
    display: block;
  }

.flowing-text h3 {
    margin: 30px 0;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
    font-size: 35px;
    line-height: 38px;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.flowing-text h4 {
    margin: 30px 0;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
    font-size: 28px;
    line-height: 31px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

/*@import 'Components/btn.css';*/

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  background: #fff;
  background: #fff;
  background: var(--white);
  min-height: 100%;
}

body {
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-weight: normal;
  color: #000000;
  color: #000000;
  color: var(--black);
  hyphenate-limit-chars: 8 auto auto;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
}

body > .main {
  position: relative;
  overflow: hidden;
}

/*body > .main >.content-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}*/

.cc-window {
  padding: 0 !important;
  font-size: 15px !important;
}

.cc-message {
  padding: 10px !important;
}

.cc-message a {
    color: #68757e;
    text-decoration: underline
  }

.cc-message a:hover {
	text-decoration: none;
}

.cc-btn {
  padding: 10px !important
}

.cc-btn:hover {
	background: #5b717f !important;
	background: #5b717f !important;
	background: var(--brand-primary) !important;
	text-decoration: underline;
}

.cc-deny {
  font-weight: normal !important;
/*  text-transform: uppercase !important;*/
}

.cc-dismiss {
/*  text-transform: uppercase !important;*/
}

.cc-revoke {
  display: none !important;
}

.content-structure--shop-page {
}

.content-structure__columns {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
  overflow: hidden;
}

@media (min-width: 1024px) {

	.content-structure__columns {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-structure__columns {
		margin: 0 auto;
	}
}

.content-structure__header {
  position: relative;
  min-height: 240px;
  margin-bottom: 70px;
}

.content-structure__column--navigation {
  display: none;
  position: relative;
  width: 240px;
  min-height: 200px;
  margin-right: 40px;
}

@media (min-width: 1024px) {

	.content-structure__column--navigation {
		display: block;
		float: left;
	}
}

.content-structure__column--main {
  position: relative;

}

@media (min-width: 1024px) {

	.content-structure__column--main {
		float: left;
		width: -webkit-calc(100% - 240px - 40px);
		width: calc(100% - 240px - 40px);
	}
}

.page-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.page-header__section-1 {
  width: 100%;
  height: 50px;
  background: #fff;
  background: #fff;
  background: var(--white);
}

.page-header__section-2 {
  display: none;
  width: 100%;
  height: 80px;
  background: #fff;
  background: #fff;
  background: var(--white);
}

@media (min-width: 1024px) {

	.page-header__section-2 {
		display: block;
	}
}

.page-header__section-1__inner-wrap, .page-header__section-2__inner-wrap {
  position: relative;
  margin: 0;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.page-header__section-1__inner-wrap, .page-header__section-2__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.page-header__section-1__inner-wrap, .page-header__section-2__inner-wrap {
		margin: 0 auto;
	}
}

.page-header__navigations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}

@media (max-width: 1023px) {

	.page-header__navigations {
		position: absolute;
		right: 50px;
	}

	.page-header__navigations .page-header__service-navigation {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin-left: 15px;
	}

	.page-header__navigations .page-header__language-navigation {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
	}
}

.page-header__logo {
  position: absolute;
  top: 0;
  left: 50px;
  width: 50px;
  height: 160px;
  z-index: 120;
  -webkit-transition: width 150ms ease;
  transition: width 150ms ease;
}

@media (min-width: 1024px) {

	.page-header__logo {
		left: 0;
		width: 75px;
		height: 240px;
	}
}

.page-header__logo img {
    display: block;
    width: 100%;
    height: auto;
  }

.page-header__login-status {
  display: none;
  margin-right: 10px;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

@media (min-width: 768px) {

	.page-header__login-status {
		display: block;
	}
}

.page-header__login-status a {
    font-family: 'Conduit ITC W01 Bold', sans-serif;
    font-family: 'Conduit ITC W01 Bold', sans-serif;
    font-family: var(--font-family-sans-serif-bold);
    font-weight: normal;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    text-decoration: underline
  }

.page-header__login-status a:hover {
	text-decoration: none;
}

.scrolled .page-header {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scrolled .page-header .page-header__logo {
    width: 50px;
    height: 160px;
  }

/*.main-navigation-open .page-header {
  .page-header__section-2 {
    background: var(--white);
  }
}*/

.page-header__main-navigation {
  position: relative;
  margin-left: 115px;

}

@media (max-width: 767px) {

	.page-header__main-navigation {
		display: none;
	}
}

.page-header__main-navigation ul.lvl-0 {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

.page-header__main-navigation ul.lvl-0 >li {
      display: inline-block;
      margin-right: 40px;
      position: relative
    }

.page-header__main-navigation ul.lvl-0 >li.sub-active >a {
	color: #5b717f !important;
	color: #5b717f !important;
	color: var(--brand-primary) !important;
}

.page-header__main-navigation ul.lvl-0 >li.sub-active >a .arrow {
          -webkit-transform: translateY(0);
                  transform: translateY(0);
          opacity: 1;
}

.page-header__main-navigation ul.lvl-0 >li .arrow {
        position: absolute;
        left: 0;
        bottom: -12px;
        z-index: 10;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12px 12px 0 12px;
        border-color: #ffffff transparent transparent transparent;
        opacity: 0;
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
        -webkit-transition: all 100ms;
        transition: all 100ms;
}

.page-header__main-navigation ul.lvl-0 >li >a {
      color: #fff;
      color: #fff;
      color: var(--white);
      font-size: 35px;
      line-height: 75px;
      text-decoration: none;
      -webkit-transition: color 200ms;
      transition: color 200ms
    }

.page-header__main-navigation ul.lvl-0 >li >a:hover {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

.page-header__main-navigation .lvl-1__wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 130px;
    height: -webkit-calc(100% - 130px);
    height: calc(100% - 130px);
    width: 100%;
/*    align-items: center;*/

    padding-top: 100px;
    background: rgba(104, 117, 126, .9);
  }

.page-header__main-navigation .lvl-1__wrap-inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 1200px;
  }

@media (min-width: 1024px) {

	.page-header__main-navigation .lvl-1__wrap-inside {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.page-header__main-navigation .lvl-1__wrap-inside {
		margin: 0 auto;
	}
}

.page-header__main-navigation ul.lvl-1 {
    display: block;
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 0 0 0 115px;
    padding: 0;
    list-style: none;
}

/*    @md-min {
      margin: 0 50px;
    }*/

.page-header__main-navigation ul.lvl-1 li {
      margin: 0 0 25px 0;

      opacity: 0;
      -webkit-animation: left-to-right;
              animation: left-to-right;
      -webkit-animation-duration: 300ms;
              animation-duration: 300ms;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards
    }

.page-header__main-navigation ul.lvl-1 li:nth-child(1) {
	-webkit-animation-delay: 75ms;
	        animation-delay: 75ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(2) {
	-webkit-animation-delay: 150ms;
	        animation-delay: 150ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(3) {
	-webkit-animation-delay: 225ms;
	        animation-delay: 225ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(4) {
	-webkit-animation-delay: 300ms;
	        animation-delay: 300ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(5) {
	-webkit-animation-delay: 375ms;
	        animation-delay: 375ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(6) {
	-webkit-animation-delay: 450ms;
	        animation-delay: 450ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(7) {
	-webkit-animation-delay: 525ms;
	        animation-delay: 525ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(8) {
	-webkit-animation-delay: 600ms;
	        animation-delay: 600ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(9) {
	-webkit-animation-delay: 675ms;
	        animation-delay: 675ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(10) {
	-webkit-animation-delay: 750ms;
	        animation-delay: 750ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(11) {
	-webkit-animation-delay: 825ms;
	        animation-delay: 825ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(12) {
	-webkit-animation-delay: 900ms;
	        animation-delay: 900ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(13) {
	-webkit-animation-delay: 975ms;
	        animation-delay: 975ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(14) {
	-webkit-animation-delay: 1050ms;
	        animation-delay: 1050ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(15) {
	-webkit-animation-delay: 1125ms;
	        animation-delay: 1125ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(16) {
	-webkit-animation-delay: 1200ms;
	        animation-delay: 1200ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(17) {
	-webkit-animation-delay: 1275ms;
	        animation-delay: 1275ms;
}

.page-header__main-navigation ul.lvl-1 li:nth-child(18) {
	-webkit-animation-delay: 1350ms;
	        animation-delay: 1350ms;
}

.page-header__main-navigation ul.lvl-1 li.active a {
          text-decoration: underline;
}

.page-header__main-navigation ul.lvl-1 li a {
        position: relative;
        font-size: 35px;
        line-height: 40px;
        font-family: 'Conduit ITC W01 Bold', sans-serif;
        font-family: 'Conduit ITC W01 Bold', sans-serif;
        font-family: var(--font-family-sans-serif-bold);
        color: #fff;
        color: #fff;
        color: var(--white);
        text-decoration: none;
}

.page-header__main-navigation ul.lvl-1 li a:hover {
	color: #fff;
	color: #fff;
	color: var(--white);
	text-decoration: underline;
}

.page-header__main-navigation ul.lvl-1 li a img {
          display: none;
}

.page-header__main-navigation ul.lvl-1 li a .abstract {
          display: none;
}

.page-header__main-navigation ul.lvl-1 li ul.lvl-2 {
        display: none;
}

.page-header__main-navigation ul.lvl-2 {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-header__main-navigation ul.lvl-2 li {
      display: block;
      margin: 10px 0;

      opacity: 0;
      -webkit-animation: left-to-right;
              animation: left-to-right;
      -webkit-animation-duration: 300ms;
              animation-duration: 300ms;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards
    }

.page-header__main-navigation ul.lvl-2 li:nth-child(1) {
	-webkit-animation-delay: 75ms;
	        animation-delay: 75ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(2) {
	-webkit-animation-delay: 150ms;
	        animation-delay: 150ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(3) {
	-webkit-animation-delay: 225ms;
	        animation-delay: 225ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(4) {
	-webkit-animation-delay: 300ms;
	        animation-delay: 300ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(5) {
	-webkit-animation-delay: 375ms;
	        animation-delay: 375ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(6) {
	-webkit-animation-delay: 450ms;
	        animation-delay: 450ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(7) {
	-webkit-animation-delay: 525ms;
	        animation-delay: 525ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(8) {
	-webkit-animation-delay: 600ms;
	        animation-delay: 600ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(9) {
	-webkit-animation-delay: 675ms;
	        animation-delay: 675ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(10) {
	-webkit-animation-delay: 750ms;
	        animation-delay: 750ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(11) {
	-webkit-animation-delay: 825ms;
	        animation-delay: 825ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(12) {
	-webkit-animation-delay: 900ms;
	        animation-delay: 900ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(13) {
	-webkit-animation-delay: 975ms;
	        animation-delay: 975ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(14) {
	-webkit-animation-delay: 1050ms;
	        animation-delay: 1050ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(15) {
	-webkit-animation-delay: 1125ms;
	        animation-delay: 1125ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(16) {
	-webkit-animation-delay: 1200ms;
	        animation-delay: 1200ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(17) {
	-webkit-animation-delay: 1275ms;
	        animation-delay: 1275ms;
}

.page-header__main-navigation ul.lvl-2 li:nth-child(18) {
	-webkit-animation-delay: 1350ms;
	        animation-delay: 1350ms;
}

.page-header__main-navigation ul.lvl-2 li img {
        display: none;
}

.page-header__main-navigation ul.lvl-2 li .abstract {
        display: none;
}

.page-header__main-navigation ul.lvl-2 a {
      font-size: 22px;
      line-height: 24px;
      color: #fff;
      color: #fff;
      color: var(--white);
      text-decoration: none
    }

.page-header__main-navigation ul.lvl-2 a:hover {
	text-decoration: underline;
}

.page-header__main-navigation .lvl-1__close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: transparent;
    -webkit-transition: background 200ms;
    transition: background 200ms;
}

.page-header__main-navigation .lvl-1__close-btn:hover {
	background: #fff;
	background: #fff;
	background: var(--white);
}

.page-header__main-navigation .lvl-1__close-btn:hover .lvl-1__close-btn__bar {
        background: #5b717f;
        background: #5b717f;
        background: var(--brand-primary);
}

.page-header__main-navigation .lvl-1__close-btn.lvl-1__close-btn--with-infobox {
	right: 360px;
}

.page-header__main-navigation .lvl-1__close-btn__bar {
    display: block;
    position: absolute;
    left: 5px;
    top: 23px;
    width: 40px;
    height: 2px;
    background: #fff;
    background: #fff;
    background: var(--white);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: background 200ms;
    transition: background 200ms;
}

.page-header__main-navigation .lvl-1__close-btn__bar.lvl-1__close-btn__bar--bar-2 {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.page-header__main-navigation .lvl-1__info-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 340px;
    height: 100%;
}

.page-header__main-navigation .lvl-1__info-box__img-wrap {
    display: block;
    position: relative;
    width: 100%;
    background: #f6f6f6;
    background: #f6f6f6;
    background: var(--gray-lightest);
}

.page-header__main-navigation .lvl-1__info-box__img-wrap img {
      display: block;
      width: 100%;
      height: auto;
    }

.page-header__main-navigation .lvl-1__info-box__text-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 38px;
    background: #f6f6f6;
    background: #f6f6f6;
    background: var(--gray-lightest);
    overflow-y: auto;
    font-size: 22px;
    line-height: 26px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
}

.page-header__main-navigation .lvl-1__info-box__phone-wrap {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 62px;
    background: #fff;
    background: #fff;
    background: var(--white);
    text-align: center;
    font-size: 22px;
    line-height: 62px;
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
}

.page-header__main-navigation .lvl-1__info-box__phone-wrap img {
      display: inline-block;
      position: relative;
      top: 5px;
      width: 32px;
      height: 32px;
      margin-right: 10px;
    }

.page-header__main-navigation .lvl-2-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    max-width: 350px;
/*    align-items: center;*/
}

.sub-active .lvl-1__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.scrolled .page-header__main-navigation ul.lvl-0 > li > a, .main-navigation-open .page-header__main-navigation ul.lvl-0 > li > a {
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.scrolled .page-header__main-navigation ul.lvl-0 > li >a:hover, .main-navigation-open .page-header__main-navigation ul.lvl-0 > li >a:hover {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.scrolled .page-header__main-navigation ul.lvl-0 > li.active > a, .main-navigation-open .page-header__main-navigation ul.lvl-0 > li.active > a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.subpage .page-header__main-navigation ul.lvl-0 > li > a {
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.subpage .page-header__main-navigation ul.lvl-0 > li > a:hover {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.subpage .page-header__main-navigation ul.lvl-0 > li.active > a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

@-webkit-keyframes left-to-right {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes left-to-right {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.page-header__service-navigation {
  position: relative;
}

.page-header__service-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }

.page-header__service-navigation ul li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 1px 0 0;
    }

.service-navigation__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
}

.service-navigation__item__icon {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #5b717f;
  background-color: #5b717f;
  background-color: var(--brand-primary);
  background-repeat: no-repeat;
  background-position: center;
}

.service-navigation__item--oeko-tex {
  margin-right: 10px !important;
}

@media (min-width: 1024px) {

	.service-navigation__item--oeko-tex {
		margin-right: 20px !important;
	}
}

.service-navigation__item--oeko-tex .service-navigation__item__icon {
    background-color: transparent;
    background-image: url(../Images/service-oekotex-icon.svg);
    background-size: 40px;
  }

@media (max-width: 1023px) {

	.service-navigation__item--search .service-navigation__item__icon {
		display: none;
	}
}

.service-navigation__item--search .service-navigation__item__icon {
	background-image: url(../Images/service-icon-search.svg);
}

@media (max-width: 1023px) {

	.service-navigation__item--phone .service-navigation__item__icon {
		display: none;
	}
}

.service-navigation__item--phone .service-navigation__item__icon {
	background-image: url(../Images/service-icon-phone.svg);
}

.service-navigation__item--login .service-navigation__item__icon {
  background-image: url(../Images/service-icon-login.svg);
}

.service-navigation__item--basket .service-navigation__item__icon {
  background-image: url(../Images/service-icon-basket.svg);
}

.service-navigation__item__icon__badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  padding-top: 1px;
  border-radius: 8px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  background: #fff;
  background: #fff;
  background: var(--white);
  color: #5b717f;
  color: #5b717f;
  color: var(--brand-primary);
}

.service-navigation__item__content {
  display: block;
  width: 0;
  overflow: hidden;
  -webkit-transition: width 200ms;
  transition: width 200ms;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-size: 20px;
  line-height: 50px;
  text-align: center;
}

.service-navigation__item__content .search-field {
    display: inline-block;
    height: 50px;
    width: 100%;
    padding: 0 10px;
    font-size: 20px;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.service-navigation__item__content a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
    text-decoration: none
  }

.service-navigation__item__content a:hover {
	text-decoration: underline;
}

.service-navigation__item__content.open {
  width: 280px;
  overflow: visible;
}

.service-navigation__item:hover {
/*  overflow: visible;

  .service-navigation__item__content {
    width: 200px;
  }*/
}

.page-header__socialmedia-navigation {
  display: none;
  height: 50px;
  padding: 0 10px 0 0;
}

@media (min-width: 1024px) {

	.page-header__socialmedia-navigation {
		display: block;
	}
}

.page-header__socialmedia-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }

.page-header__socialmedia-navigation ul li {
      display: inline-block;
      margin: 0;
      padding: 0;
    }

.page-header__socialmedia-navigation ul li a {
        position: relative;
        display: block;
        width: 40px;
        height: 50px;
        overflow: hidden;
        text-indent: -1000px;
        background: no-repeat center
      }

.page-header__socialmedia-navigation ul li a:hover {
	opacity: 0.7;
}

.page-header__socialmedia-navigation ul li:nth-child(1) a {
	background-image: url(../Images/facebook-icon-gray.svg);
}

.page-header__socialmedia-navigation ul li:nth-child(1) a:hover {

}

.page-header__socialmedia-navigation ul li:nth-child(2) a {
	background-image: url(../Images/instagram-icon-gray.svg);
}

.page-header__socialmedia-navigation ul li:nth-child(2) a:hover {

}

.page-header__language-navigation {
  display: block;
  padding-left: 10px;
}

.page-header__language-navigation >ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

.page-header__language-navigation >ul li {
      display: inline-block;
      padding: 0 0 0 10px;
    }

@media (min-width: 1024px) {

	.page-header__language-navigation >ul li {
		padding: 0 0 0 15px;
	}
}

.page-header__language-navigation >ul li a {
        font-size: 18px;
        line-height: 50px;
        color: #68757e;
        color: #68757e;
        color: var(--gray);
        text-decoration: none
      }

.page-header__language-navigation >ul li a:hover {
	text-decoration: underline;
}

.page-header__language-navigation >ul li.active a {
          color: #5b717f;
          color: #5b717f;
          color: var(--brand-primary);
}

.page-header__navigation-toggle {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: background 500ms;
  transition: background 500ms;
  z-index: 110;
}

@media (min-width: 1024px) {

	.page-header__navigation-toggle {
		display: none;
	}
}

.page-header__navigation-toggle .bar {
    display: block;
    position: absolute;
    left: 15px;
    top: 17px;
    width: 21px;
    height: 2px;
    background: #5b717f;
    background: #5b717f;
    background: var(--brand-secondary);
    -webkit-transition: all 200ms;
    transition: all 200ms;
    will-change: left, top
  }

.page-header__navigation-toggle .bar:nth-child(2) {
	top: 25px;
}

.page-header__navigation-toggle .bar:nth-child(3) {
	top: 33px;
}

.page-header__navigation-toggle:hover {

}

.page-header__navigation-toggle.open .bar {

}

.page-header__navigation-toggle.open .bar:nth-child(1) {
      -webkit-transform: rotate(405deg);
              transform: rotate(405deg);
      top: 24px;
}

.page-header__navigation-toggle.open .bar:nth-child(2) {
      height: 0;
}

.page-header__navigation-toggle.open .bar:nth-child(3) {
      -webkit-transform: rotate(315deg);
              transform: rotate(315deg);
      top: 24px;
}

body.mobile-navigation-open {
  overflow: hidden;
}

.mini-search-form {
  display: block;
  position: relative;
  z-index: 100;
}

.mini-search-form__form {
  width: 100%;
  height: 50px;
}

.mini-search-form__term {
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px;
  border: none;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px var(--gray-lighter);
  font-size: 16px;
  line-height: 16px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  outline: none
}

.mini-search-form__term::-webkit-input-placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: var(--font-family-sans-serif);
}

.mini-search-form__term::-ms-input-placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: var(--font-family-sans-serif);
}

.mini-search-form__term::placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: var(--font-family-sans-serif);
}

.mini-search-form__results {
  display: none;
  overflow: hidden;
  width: -webkit-calc(100% + 1px);
  width: calc(100% + 1px);
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
  border-top: none;
  background: #fff;
  background: #fff;
  background: var(--white);
}

.mini-search-form__show-all-results {
  display: none;
  border: none;
  width: 100%;
  padding: 10px;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  background: #f6f6f6;
  background: #f6f6f6;
  background: var(--gray-lightest);
  outline: none
}

.mini-search-form__show-all-results:hover {
	text-decoration: underline;
}

.search-results-mini__list {
  display: block;
}

.search-results-mini-product {
  display: block;
  height: 50px;
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px var(--gray-lighter);
}

.search-results-mini-product__inside a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 14px;
    line-height: 16px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.search-results-mini-product__image {
  display: block;
  width: 50px;
  height: 50px;
  background: #f6f6f6;
  background: #f6f6f6;
  background: var(--gray-lightest);
}

.search-results-mini-product__image img {
    display: block;
    width: 100%;
    height: auto;
  }

.search-results-mini-product__text {
  display: block;
  width: -webkit-calc(100% - 75px);
  width: calc(100% - 75px);
  margin-left: 15px;
  margin-right: 10px;
  font-size: 15px;
  line-height: 16px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  text-align: left;
}

.search-results-mini-product__title {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  font-weight: normal;
}

.page-header .search-results-mini-product__variant-title {
    display: none;
  }

.search-results-mini-product__id {
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
}

.page-footer {
  position: relative;
  margin-top: 40px;
  padding-top: 40px;
  overflow: hidden;
  background: #f2f2f2;
  background: #f2f2f2;
  background: var(--gray-light);
  font-size: 20px;
  line-height: 26px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

@media (min-width: 1024px) {

	.page-footer {
		margin-top: 75px;
		font-size: 23px;
		line-height: 28px;
	}
}

.page-footer a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.page-footer h4 {
    margin: 30px 0 0 0;
    font-weight: normal;
    font-family: 'Conduit ITC W01 Bold', sans-serif;
    font-family: 'Conduit ITC W01 Bold', sans-serif;
    font-family: var(--font-family-sans-serif-bold);
    font-size: 24px;
    line-height: 26px;
  }

@media (min-width: 768px) {

	.page-footer h4 {
		font-size: 27px;
		line-height: 34px;
	}
}

@media (min-width: 1024px) {

	.page-footer h4:first-child {
		margin: 0;
	}
}

.page-footer p {
    margin: 0;
  }

.page-footer img {
    max-width: 100%;
    height: auto;
  }

.page-footer__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.page-footer__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.page-footer__inner-wrap {
		margin: 0 auto;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {

	.page-footer__columns {
		max-width: 50%;
	}
}

@media (min-width: 1024px) {

	.page-footer__columns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

@media (min-width: 1024px) {

	.page-footer__columns .column:nth-child(2) {
		margin: 0 30px;
	}
}

.page-footer__img {
  margin-top: 20px;
}

.page-footer__service-navigation {
  margin-bottom: 30px;
}

.page-footer__service-navigation ul {
/*  display: flex;
  justify-content: left;*/
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}

/*  @md-min {
    justify-content: space-between;
  }*/

.page-footer__service-navigation ul li {
    display: block;
  }

.page-footer__service-navigation ul a {
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    text-decoration: underline;
  }

@media (max-width: 1023px) {

	.page-footer__service-navigation ul a {
		margin: 0 20px 0 0;
	}
}

.page-footer__service-navigation ul a:hover {
	text-decoration: none;
}

p.page-footer__links {
  margin-top: 40px;
}

@media (min-width: 1024px) {

	p.page-footer__links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		margin: 0;
	}
}

@media (max-width: 767px) {

	p.page-footer__links a {
		display: block;
	}
}

p.page-footer__links a {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
	text-decoration: underline;
}

p.page-footer__links a:hover {
	text-decoration: none;
}

.page-footer__logo-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
  }

.page-footer__logo-navigation ul li {
      margin-right: 10px
    }

.page-footer__logo-navigation ul li:before {
	display: none;
}

.page-footer__logo-navigation img {
    display: block;
    width: 80px;
    height: auto;
  }

.page-footer__socialmedia-navigation {
  margin: 30px 0;
}

.page-footer__socialmedia-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
  }

.page-footer__socialmedia-navigation ul li {
      display: inline-block;
      margin: 0 20px 0 0;
      padding: 0;

    }

.page-footer__socialmedia-navigation ul li a {
        position: relative;
        display: block;
        width: 28px;
        height: 28px;
        overflow: hidden;
        text-indent: -1000px;
        background-size: auto 100%;
        background-repeat: no-repeat
      }

.page-footer__socialmedia-navigation ul li a:hover {
	text-decoration: underline;
}

.page-footer__socialmedia-navigation ul li:nth-child(1) a {
	background-image: url(../Images/facebook-gray.svg);
}

.page-footer__socialmedia-navigation ul li:nth-child(1) a:hover {
	background-image: url(../Images/facebook-color.svg);
}

.page-footer__socialmedia-navigation ul li:nth-child(2) a {
	background-image: url(../Images/instagram-gray.svg);
}

.page-footer__socialmedia-navigation ul li:nth-child(2) a:hover {
	background-image: url(../Images/instagram-color.svg);
}

.mobile-navigation {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: -webkit-calc(100vmax - 50px);
  height: calc(100vmax - 50px);
  z-index: 110;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  background: rgba(104, 117, 126, .9);
}

.mobile-navigation .mobile-navigation__main-navigation ul {
      margin: 35px;
      padding: 0;
      list-style: none;
    }

.mobile-navigation .mobile-navigation__main-navigation ul li {
        position: relative;
        display: block;
        margin: 20px 0;
      }

.mobile-navigation .mobile-navigation__main-navigation ul li >.icon {
          position: absolute;
          left: 0;
          top: 0;
          width: 30px;
          height: 48px;
        }

.mobile-navigation .mobile-navigation__main-navigation ul li >.icon svg {
            position: absolute;
            left: 0;
            top: 14px;
            width: 18px;
            height: 18px;
            -webkit-transition: -webkit-transform 200ms;
            transition: -webkit-transform 200ms;
            transition: transform 200ms;
            transition: transform 200ms, -webkit-transform 200ms;
          }

.mobile-navigation .mobile-navigation__main-navigation ul li >.icon svg .st0 {
              fill: #fff;
              fill: #fff;
              fill: var(--white);
              -webkit-transition: fill 200ms;
              transition: fill 200ms;
            }

.mobile-navigation .mobile-navigation__main-navigation ul li >.icon.open svg {
              -webkit-transform: rotate(90deg);
                      transform: rotate(90deg);
}

.mobile-navigation .mobile-navigation__main-navigation ul li >a {
          display: inline-block;
          height: 48px;
          padding: 0 0 0 30px;
          color: #fff;
          color: #fff;
          color: var(--white);
          font-size: 35px;
          line-height: 48px;
          font-family: 'Conduit ITC W01 Bold', sans-serif;
          font-family: 'Conduit ITC W01 Bold', sans-serif;
          font-family: var(--font-family-sans-serif-bold);
          font-weight: normal;
          text-decoration: none;
        }

.mobile-navigation .mobile-navigation__main-navigation ul li.active >.icon svg .st0 {
              /*              fill: #fff;*/
            }

.mobile-navigation .mobile-navigation__main-navigation ul li.active >a {
            /*            background-color: var(--brand-secondary);
                        color: var(--white);
                        border-top-color: var(--gray);*/
}

.mobile-navigation .mobile-navigation__main-navigation ul li.current >a {/*text-decoration: underline;*/
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-1 {
	display: none;
	margin: 0;
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-1 > li {
          margin: 0;
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-1 li >.icon svg .st0 {
            fill: #fff;
          }

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-1 li >a {
          padding-bottom: 20px;
          font-size: 35px;
          line-height: 48px;
          font-family: 'Conduit ITC W01 Light', sans-serif;
          font-family: 'Conduit ITC W01 Light', sans-serif;
          font-family: var(--font-family-sans-serif);
          font-weight: normal;
          font-weight: normal;
          font-weight: var(--font-weight-regular);
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-1 li >a.active >a {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-2 {
	display: none;
	margin: 0 0 0 55px;
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-2 > li {
          margin: 0;
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-2 li >.icon svg .st0 {
            fill: #fff;
          }

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-2 li >a {
          height: auto;
          padding: 0;
          font-size: 23px;
          line-height: 40px;
          font-weight: normal;
          font-weight: normal;
          font-weight: var(--font-weight-regular);
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-3 {
	display: none;
	border-top: solid 1px #fff;
}

.mobile-navigation .mobile-navigation__main-navigation ul.lvl-3 li >a {
          background-color: #dd9dab;
          color: #fff;
          border-top: none;
          text-transform: none;
}

.mobile-navigation-open .mobile-navigation {
  display: block;
}

.subpage-navigation > ul {
    font-size: 36px;
    line-height: 25px;
  }

.subpage-navigation > ul > li > a {
        margin-bottom: 20px;
        font-family: 'Conduit ITC W01 Light', sans-serif;
        font-family: 'Conduit ITC W01 Light', sans-serif;
        font-family: var(--font-family-sans-serif);
        font-weight: normal;
      }

.subpage-navigation > ul > li > ul {
        font-size: 23px;
        line-height: 25px;
      }

.subpage-navigation > ul > li > ul > li > a {
            margin-bottom: 10px;
          }

.subpage-navigation > ul > li > ul > li > ul {
            margin-left: 20px;
          }

.subpage-navigation > ul > li > ul > li > ul > li > a {
                margin-bottom: 10px;
              }

.subpage-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

.subpage-navigation a {
    display: inline-block;
    text-decoration: none;
    color: #68757e;
    color: #68757e;
    color: var(--gray)
  }

.subpage-navigation a.active, .subpage-navigation a:hover {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

.subpage-navigation__level-1 > li {
    display: none;
  }

ul.subpage-navigation__level-3 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 22px;

}

ul.subpage-navigation__level-3 a {
    margin-bottom: 0 !important;
  }

@media (min-width: 768px) {

	.content-structure--product-page .subpage-navigation {
		padding-top: 300px;
	}
}

.content-slider {
  position: relative;
  height: 305px;
}

@media (max-width: 767px) {

	.content-slider {
		margin-top: 50px;
	}
}

@media (min-width: 768px) {

	.content-slider {
		height: 100vh;
	}
}

.content-slider .slick-arrow {
    display: none !important;
  }

.content-slider .slick-dots {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
  }

.content-slider .slick-dots li {
      display: inline-block;
    }

.content-slider .slick-dots li button {
        display: block;
        width: 16px;
        height: 16px;
        margin: 0 10px 0 0;
        padding: 0;
        border: none;
        border-radius: 8px;
        background: rgba(255,255,255,.7);
        text-indent: -100px;
        overflow: hidden;
      }

.content-slider .slick-dots li.slick-active button {
          background: #5b717f;
          background: #5b717f;
          background: var(--brand-primary);
}

.content-slider__inner-wrap {
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {

	.content-slider__inner-wrap {
		margin: 0;
	}
}

.content-slider__items {
  overflow: hidden;
}

.scroll-down-button {
  position: absolute;
  left: 50%;
  bottom: 20px;
  margin-left: -37px;
  width: 100px;
  height: 100px;
  padding: 0;
  border: none;
  color: #fff;
  color: #fff;
  color: var(--white);

  background: rgba(0,0,0,0.2);
  border-radius: 50px;

  /*    mix-blend-mode: multiply;*/
  cursor: pointer;
}

@media (max-width: 767px) {

	.scroll-down-button {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {

	.scroll-down-button {
		display: none;
	}
}

.scroll-down-button .scroll-down-button__text {
    position: absolute;
    display: block;
    top: 68px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    text-transform: lowercase;
  }

.scroll-down-button .scroll-down-button__icon {
    position: absolute;
    display: block;
    width: 30px;
    height: 50px;
    left: 50%;
    top: 13px;
    margin-left: -15px;
    -webkit-box-shadow: inset 0 0 0 1px #fff;
            box-shadow: inset 0 0 0 1px #fff;
    border-radius: 20px
  }

.scroll-down-button .scroll-down-button__icon:before {
	content: '';
	position: absolute;
	width: 7px;
	height: 7px;
	background: #fff;
	left: 12px;
	top: 8px;
	border-radius: 7px;
	-webkit-animation-duration: 1.5s;
	        animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-name: icon-scroll;
	        animation-name: icon-scroll;
}

.content-slider__dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;

}

.content-slider__dots__inner-wrap {
  position: relative;
  bottom: 0;
  height: 0;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-slider__dots__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-slider__dots__inner-wrap {
		margin: 0 auto;
	}
}

.content-slider__dots__inner-wrap-2 {
  position: absolute;
  width: 200px;
  height: 20px;
  bottom: 28px;
  left: 50px;
}

@media (min-width: 768px) {

	.content-slider__dots__inner-wrap-2 {
		left: 100px;
		bottom: 77px;
	}
}

.content-slider--2 {
  height: -webkit-calc(100dvh - 50px);
  height: calc(100dvh - 50px);
}

@media (min-width: 768px) {

	.content-slider--2 {
		height: -webkit-calc(100vh - 50px);
		height: calc(100vh - 50px);
	}
}

.content-slider--2 .content-slider__dots__inner-wrap {
    margin: 0;
  }

@media (min-width: 768px) {

	.content-slider--2 .content-slider__dots__inner-wrap-2 {
		left: 0;
	}
}

@-webkit-keyframes icon-scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

@keyframes icon-scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

.content-slider-item {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 767px) {

	.content-slider-item {
		height: 305px;
	}
}

.content-slider-item__inner-wrap {
  width: 100%;
  height: 100%;
}

.content-slider-item__image-wrap {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}

.content-slider-item__text {
  position: absolute;
  bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {

	.content-slider-item__text {
		bottom: 20vh;
	}
}

.content-slider-item__text .content-slider-item__text__inner-wrap {
    margin: 0 25px;
    max-width: 1200px;
  }

@media (min-width: 1024px) {

	.content-slider-item__text .content-slider-item__text__inner-wrap {
		margin: 0 50px;
		padding-top: 20vh;
	}
}

@media (min-width: calc(1300px)) {

	.content-slider-item__text .content-slider-item__text__inner-wrap {
		margin: 0 auto;/*padding-top: 50vh;*/
	}
}

.content-slider-item__text .content-slider-item__text__headline {
    display: inline;
    position: relative;
    margin: 0;
    padding: 5px 10px;
    font-size: 35px;
    line-height: 35px;
    font-weight: normal;
    background: rgba(91, 113, 127, 0.9);
    color: #fff;
    color: #fff;
    color: var(--white);
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
}

@media (min-width: 1024px) {

	.content-slider-item__text .content-slider-item__text__headline {
		max-width: 50%;
		font-size: 62px;
		line-height: 62px;
	}
}

.content-slider-item__text .content-slider-item__text__description {
    max-width: 50%;
    margin-top: 20px;
}

@media (max-width: 767px) {

	.content-slider-item__text .content-slider-item__text__description {
		display: none;
	}
}

.content-slider-item__text .content-slider-item__text__description p {
      display: inline;
      margin: 0;
      padding: 0 10px;
      -webkit-box-decoration-break: clone;
              box-decoration-break: clone;
      font-size: 28px;
      line-height: 34px;
      color: #fff;
      color: #fff;
      color: var(--white);
      background: rgba(91, 113, 127, 0.9);
    }

.content-slider-item__text a {
    display: block;
    width: 40px;
    height: 40px;
    margin: 20px 0 0 0;
    background: rgba(255,255,255,.9);
    text-decoration: none;
    overflow: hidden;
    text-indent: -500px;
    background-image: url("../Images/link-arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px;
}

@media (min-width: 768px) {

	.content-slider-item__text a {
		width: 75px;
		height: 75px;
		margin: 35px 0 0 0;
	}
}

.content-slider-item__text a:hover {
	background-size: 28px;
}

.content-slider-item__teasers {
  display: none;
  position: absolute;
  bottom: 50px;
  width: 100%;
  height: -webkit-calc(100vh - 100px);
  height: calc(100vh - 100px);
}

@media (min-width: 1024px) {

	.content-slider-item__teasers {
		display: block;
	}
}

.content-slider-item__teasers__inside {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 25px;
  max-width: 1200px;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {

	.content-slider-item__teasers__inside {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-slider-item__teasers__inside {
		margin: 0 auto;/*padding-top: 50vh;*/
	}
}

.content-slider-item__teasers__inside-2 {
  position: relative;
}

.content-slider-item__teasers__inside-2 .content-teaser {
    position: relative;
    width: 290px;
    height: 290px;
  }

@media (min-width: 1600px) {

	.content-slider-item__teasers__inside-2 .content-teaser {
		width: 320px;
		height: 320px;
	}
}

.content-slider-item__teasers__inside-2 .content-teaser__inner-wrap {
    margin: 0;
  }

.content-text {
  position: relative;
  margin: 30px 0;
  font-size: 23px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal;
}

@media (min-width: 768px) {

	.content-text {
		margin: 50px 0;
	}
}

/*  @md-min {
    font-size: 23px;
    line-height: 28px;
  }*/

.content-text h1 {
    margin: 0 0 15px 0;
    font-size: 48px;
    line-height: 50px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
  }

@media (min-width: 1024px) {

	.content-text h1 {
		font-size: 48px;
		line-height: 50px;
	}
}

.content-text__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-text__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-text__inner-wrap {
		margin: 0 auto;
	}
}

.content-structure--product-page .content-text__inner-wrap {
    margin: 0;
  }

.content-teaser-carousel {
  position: relative;
}

.content-teaser-carousel .slick-arrow {
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -10px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 20px;
    background-size: 15px;
    background: url(../Images/prev-icon.svg) no-repeat center;
    cursor: pointer;
    overflow: hidden;
    text-indent: -160px;
    -webkit-transition: all 100ms;
    transition: all 100ms;
    opacity: 1;
    outline: none;
  }

@media (min-width: 768px) {

	.content-teaser-carousel .slick-arrow {
		left: 0;
	}
}

.content-teaser-carousel .slick-arrow:hover {
	opacity: 1;/*background-color: #fff;*/
}

.content-teaser-carousel .slick-arrow.slick-prev {

}

.content-teaser-carousel .slick-arrow.slick-next {
	left: auto;
	right: 10px;
	background-image: url(../Images/next-icon.svg);
}

@media (min-width: 768px) {

	.content-teaser-carousel .slick-arrow.slick-next {
		right: 0;
	}
}

.content-teaser-carousel .slick-arrow.slick-disabled {
	opacity: 0.8;
}

.content-teaser-carousel .slick-dots {
    display: none;
  }

.content-teaser-carousel__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-teaser-carousel__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-teaser-carousel__inner-wrap {
		margin: 0 auto;
	}
}

.content-teaser-carousel__items {
  position: relative;
/*  .content-teaser__inner-wrap {
    margin: 0 20px;
  }*/
}

.content-teaser-carousel__items .slick-list {
    margin: 0 -10px;
  }

.content-teaser-carousel__items .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

.content-teaser-carousel__items .slick-slide {
    position: relative;
    float: none;
    height: auto;
  }

.content-teaser-carousel__items .slick-slide >div {
      height: 100%;
    }

.content-teaser-carousel__items .content-teaser {
    height: 100%;
  }

.content-teaser-carousel__items .content-teaser >div {
      margin: 0 10px;
    }

.content-teaser {
  position: relative;
  min-height: 300px;
}

.content-teaser a {
    text-decoration: none;
    outline: none;
  }

.content-teaser:hover .content-teaser__overlay {
      opacity: 1;
}

.content-teaser:hover .content-teaser__icon {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%) scale(1);
              transform: translate(-50%, -50%) scale(1);
}

.content-teaser:hover .content-teaser__icon-bar {
      opacity: 1;
}

.content-teaser:hover.content-teaser--full-image-text-behaviour-hover .content-teaser__text-wrap {
        opacity: 1;
}

.content-teaser.link-active .content-teaser__image-wrap .image {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
}

.content-teaser__inner-wrap {
  position: relative;
  height: -webkit-calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 20px 10px 0 10px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#f2f2f2), to(#fff));
  background: -webkit-linear-gradient(left, #f2f2f2, #fff);
  background: linear-gradient(90deg, #f2f2f2, #fff);
  background: linear-gradient(90deg, #f2f2f2, #fff);
  background: -webkit-gradient(linear, left top, right top, from(var(--gray-light)), to(var(--white)));
  background: -webkit-linear-gradient(left, var(--gray-light), var(--white));
  background: linear-gradient(90deg, var(--gray-light), var(--white));

}

.content-teaser__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  z-index: 10;
}

.content-teaser__image-wrap .image {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    transition: -webkit-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center
  }

.content-teaser__image-wrap .image.icon {
	background-position: center center;
	background-size: 40%;
}

.content-teaser__text-wrap {
  height: -webkit-calc(100% - 220px);
  height: calc(100% - 220px);
  overflow: hidden;
  margin: 20px 20px;
  font-size: 23px;
  line-height: 27px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  z-index: 10;
}

@media (min-width: 768px) {

	.content-teaser__text-wrap {
		margin: 20px 35px;
	}
}

.content-teaser__text-wrap h3 {
    margin: 0;
    font-size: 27px;
    line-height: 32px;
    font-weight: normal;
    font-family: 'Conduit ITC W01 Bold', sans-serif;
    font-family: 'Conduit ITC W01 Bold', sans-serif;
    font-family: var(--font-family-sans-serif-bold);
  }

.content-teaser__text-wrap .content-teaser__text {
    max-height: 81px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

.content-teaser--style-full-image .content-teaser__text-wrap .content-teaser__text {
      max-height: 162px;
    }

.content-teaser--full-image-text-behaviour-hover .content-teaser__text-wrap {
    opacity: 0;
    -webkit-transition: opacity 150ms ease-in-out;
    transition: opacity 150ms ease-in-out;
  }

.content-teaser__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b717f;
  background: #5b717f;
  background: var(--brand-primary);
  mix-blend-mode: multiply;
  -webkit-transition: opacity 150ms ease-in-out;
  transition: opacity 150ms ease-in-out;
  opacity: 0;
  z-index: 20;
}

.content-teaser__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
          transform: translate(-50%, -50%) scale(1.5);
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border: solid 2px #fff;
  border: solid 2px #fff;
  border: solid 2px var(--white);
  -webkit-transition: all 150ms ease-out;
  transition: all 150ms ease-out;
  opacity: 0;
  z-index: 30
}

.content-teaser__icon:hover {
	width: 60px;
	height: 60px;
}

.content-teaser__icon-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  background: #fff;
  background: var(--white);
  -webkit-transition: opacity 150ms ease-out;
  transition: opacity 150ms ease-out;
  opacity: 0;
  z-index: 30
}

.content-teaser__icon-bar + .content-teaser__icon-bar {
	width: 20px;
	height: 2px;
}

/* style full image: */

.content-teaser--style-full-image .content-teaser__inner-wrap {
    overflow: hidden;
  }

.content-teaser--style-full-image .content-teaser__image-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

.content-teaser--style-full-image.content-teaser--text-color-gray .content-teaser__text-wrap {
      color: #68757e;
      color: #68757e;
      color: var(--gray);
      text-shadow: none;
}

.content-teaser--style-full-image .content-teaser__text-wrap {
    position: relative;
    /*    position: absolute;
        top: 0;
        left: 0;*/
    z-index: 30;
    height: auto;
    color: #fff;
    color: #fff;
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.content-teaser--style-full-image .content-teaser__text-wrap.link-trigger:hover {
	text-decoration: underline;
}

.content-teaser--style-full-image .content-teaser__icon {
    display: none;
}

.content-teaser--style-full-image .content-teaser__icon-bar {
    display: none;
}

/*.content-teaser--text-color-kragoart {
  h3 {
    color: var(--brand-art);
  }
}
.content-teaser--text-color-kragotec {
  h3 {
    color: var(--brand-tec);
  }
}*/

/* background color main: */

.content-teaser--background-main .content-teaser__inner-wrap {
    position: relative;
    background: #5b717f;
    background: #5b717f;
    background: var(--brand-primary);
  }

.content-teaser--background-main .content-teaser__text-wrap {
    color: #fff;
    color: #fff;
    color: var(--white);
  }

/* background color white: */

.content-teaser--background-white .content-teaser__inner-wrap {
    position: relative;
    background: #fff;
    background: #fff;
    background: var(--white);
  }

.content-teaser--background-white .content-teaser__text-wrap {
    margin: 20px 0;
  }

.content-website-teaser {
  position: relative;
  min-height: 300px;
}

.content-website-teaser a {
    text-decoration: none;
    outline: none;
  }

.content-website-teaser__inner-wrap {
  position: relative;
  height: -webkit-calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 20px 10px 0 10px;
}

.content-website-teaser__image-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

@media (min-width: 1024px) and (max-width: 1199px) {

	.content-website-teaser__image-wrap {
		height: 380px;
	}
}

@media (min-width: 1200px) {

	.content-website-teaser__image-wrap {
		height: 500px;
	}
}

.content-website-teaser__image-wrap .image {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 150ms ease-in-out;
    transition: -webkit-transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out;
    transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }

.content-website-teaser__logo {
  position: absolute;
  right: 26px;
  top: 0;
  height: 200px;
  width: auto;
}

@media (min-width: 1024px) {

	.content-website-teaser__logo {
		height: 270px;
		right: 80px;
	}
}

.content-website-teaser__text-wrap {
  margin: 20px 0;
  font-size: 23px;
  line-height: 27px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

@media (min-width: 768px) {

	.content-website-teaser__text-wrap {
		margin: 20px 0;
	}
}

.content-website-teaser__text-wrap h3 {
    margin: 0 0 25px 0;
    font-size: 48px;
    line-height: 50px;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: normal;
  }

@media (min-width: 1200px) {

	.content-website-teaser__text-wrap h3 {
		font-size: 48px;
		line-height: 50px;
	}
}

.content-website-teaser__text-link {
  margin-top: 27px;
}

.content-website-teaser__text-link a {
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    text-decoration: underline
  }

.content-website-teaser__text-link a:hover {
	text-decoration: none;
}

.content-grid {
  margin: 0;
}

@media print {

	.content-grid {
		display: none;
	}
}

.content-grid__inner-wrap {
  position: relative;
  margin: 0 15px;
  max-width: 1220px;
  overflow: hidden;
}

@media (min-width: 1024px) {

	.content-grid__inner-wrap {
		margin: 0 40px;
	}
}

@media (min-width: calc(1320px)) {

	.content-grid__inner-wrap {
		margin: 0 auto;
	}
}

@supports (display: grid) {

	.content-grid__inner-wrap {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {

	.content-grid__inner-wrap {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1024px) {

	.content-grid__inner-wrap {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.content-grid__inner-wrap .content-teaser {
    width: 100%;
}

@media (min-width: 768px) {

	.content-grid__inner-wrap .content-teaser {
		float: left;
		width:50%;
	}

	@supports (display: grid) {

		.content-grid__inner-wrap .content-teaser {
			width: 100%;
			float: none;
		}
	}
}

@media (min-width: 1024px) {

	.content-grid__inner-wrap .content-teaser {
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}

	@supports (display: grid) {

		.content-grid__inner-wrap .content-teaser {
			width: 100%;
		}
	}
}

.content-grid__inner-wrap .content-teaser.content-teaser--size-2x2 {
	height: 100%;
}

@media (min-width: 768px) {

	.content-grid__inner-wrap .content-teaser.content-teaser--size-2x2 {
		grid-column: auto / span 2;
		grid-row: auto / span 2;
	}
}

.content-grid__inner-wrap .content-teaser.content-teaser--size-2x2 .content-teaser__text-wrap {

}

@media (min-width: 768px) {

	.content-grid__inner-wrap .content-teaser.content-teaser--size-2x1 {
		grid-column: auto / span 2;
		grid-row: auto / span 1;
	}
}

@media (min-width: 1024px) {

	.content-grid.columns-4 .content-grid__inner-wrap {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media (min-width: 1024px) {

	.content-grid.columns-4 .content-teaser {
		width: 25%;
	}

	@supports (display: grid) {

		.content-grid.columns-4 .content-teaser {
			width: 100%;
		}
	}
}

@media (min-width: 1024px) {

	.content-grid.columns-2 .content-grid__inner-wrap {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1024px) {

	.content-grid.columns-2 .content-teaser {
		width: 50%;
	}

	@supports (display: grid) {

		.content-grid.columns-2 .content-teaser {
			width: 100%;
		}
	}
}

.content-grid.columns-2 .content-teaser h3 {
      margin-bottom: 10px;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal;
      font-weight: normal;
      font-weight: var(--font-weight-headlines);
    }

@media (min-width: 1024px) {

	.content-grid.columns-2 .content-teaser h3 {
		font-size: 48px;
		line-height: 50px;
	}
}

@media (min-width: 1024px) and (max-width: 1199px) {

	.content-grid.columns-2 .content-teaser__image-wrap {
		height: 400px;
	}
}

@media (min-width: 1200px) {

	.content-grid.columns-2 .content-teaser__image-wrap {
		height: 500px;
	}
}

.content-image {
  position: relative;
  margin: 70px 0;
}

.content-image__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-image__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-image__inner-wrap {
		margin: 0 auto;
	}
}

.content-image__inner-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.content-image__inner-wrap figcaption {
    font-size: 23px;
    line-height: 27px;
    margin-top: 10px;
    max-width: 1120px;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
}

.content-two-columns {
  position: relative;
  margin: 70px 0;
}

@media (min-width: 768px) {

	.content-two-columns__columns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

.content-two-columns__column {
  position: relative;
}

@media (min-width: 768px) {

	.content-two-columns__column {
		max-width: -webkit-calc(50% - 37px);
		max-width: calc(50% - 37px);
		-ms-flex-preferred-size: calc(50% - 37px);
		    flex-basis: -webkit-calc(50% - 37px);
		    flex-basis: calc(50% - 37px);
	}
}

.content-two-columns__column:nth-child(1) {

}

.content-two-columns__column:nth-child(2) {

}

.content-two-columns__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-two-columns__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-two-columns__inner-wrap {
		margin: 0 auto;
	}
}

.content-three-columns {
  position: relative;
  margin: 70px 0;
}

@media (min-width: 768px) {

	.content-three-columns__columns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

.content-three-columns__column {
  position: relative;
}

@media (min-width: 768px) {

	.content-three-columns__column {
		max-width: -webkit-calc(50% - 37px);
		max-width: calc(50% - 37px);
		-ms-flex-preferred-size: calc(50% - 37px);
		    flex-basis: -webkit-calc(50% - 37px);
		    flex-basis: calc(50% - 37px);
	}
}

@media (min-width: 1024px) {

	.content-three-columns__column {
		max-width: -webkit-calc((100% / 3) - 37px);
		max-width: calc((100% / 3) - 37px);
		-ms-flex-preferred-size: calc((100% / 3) - 37px);
		    flex-basis: -webkit-calc((100% / 3) - 37px);
		    flex-basis: calc((100% / 3) - 37px);
	}
}

.content-three-columns__column:nth-child(1) {

}

.content-three-columns__column:nth-child(2) {

}

.content-three-columns__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-three-columns__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-three-columns__inner-wrap {
		margin: 0 auto;
	}
}

.content-column-image {
  margin: 0 0 25px 0;
}

@media (min-width: 768px) {

	.content-column-image {
		margin: 0 0 50px 0;
	}
}

.content-column-image:last-child {
	margin: 0;
}

.content-column-image img {
    display: block;
    width: 100%;
    height: auto;
}

.content-column-image figcaption {
    font-size: 23px;
    line-height: 27px;
    margin-top: 10px;
    max-width: 480px;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
}

.content-column-image.borderless {
	position: relative;
	width: 100vw;
}

@media (min-width: 768px) {

	.content-column-image.borderless {
		width: 50vw;
	}
}

@media (min-width: 1024px) {

	.content-column-image.borderless {
		width: -webkit-calc(50vw - 25px);
		width: calc(50vw - 25px);
	}
}

.content-column-image.borderless .content-column-image__inner-wrap {
      direction: rtl;
}

.content-column-image.borderless img {
      width: 100vw;
      max-width: 1070px;
      height: auto;
}

.content-column-image__inner-wrap {
  margin: 0;
  padding: 0;
}

.content-two-columns__column:nth-child(2) .content-column-image.borderless {
    overflow: hidden;
  }

@media (min-width: 768px) {

	.content-two-columns__column:nth-child(2) .content-column-image.borderless {
		width: -webkit-calc(50vw - 25px);
		width: calc(50vw - 25px);
	}
}

.content-two-columns__column:nth-child(2) .content-column-image__inner-wrap {
    direction: ltr;
  }

.content-column-text {
  margin: 0;
}

@media (min-width: 1024px) {

	.content-column-text {
		margin: 50px 0;
	}
}

.content-column-text__header {

}

.content-column-text__inner-wrap {
  max-width: 480px;
}

.content-two-columns__column:nth-child(1) .content-column-text {
    overflow: hidden;
  }

.content-two-columns__column:nth-child(1) .content-column-text {
    float: right;
  }

@media (max-width: 1023px) {

	.content-two-columns__column:nth-child(2) .content-column-text {
		margin: 50px 0;
	}
}

.content-search {
  position: relative;
  margin: 50px 0;
  font-size: 23px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal;
}

.content-search .tx-indexedsearch-browsebox {
    margin: 20px 0;
  }

.content-search .tx-indexedsearch-browsebox p {
      font-size: 18px;
      line-height: 22px;
      text-align: center;
    }

.content-search .tx-indexedsearch-browsebox ul {
      margin: 0;
      padding: 0;
      list-style: none;
      text-align: center;
      font-size: 18px;
      line-height: 50px;
    }

.content-search .tx-indexedsearch-browsebox ul li {
        display: inline-block;
        margin: 0 20px
      }

.content-search .tx-indexedsearch-browsebox ul li.tx-indexedsearch-browselist-currentPage strong {
            font-weight: normal;
}

.content-search .tx-indexedsearch-browsebox ul li.tx-indexedsearch-browselist-currentPage a {
            color: #5b717f;
            color: #5b717f;
            color: var(--brand-primary);
}

.content-search .tx-indexedsearch-browsebox ul li a {
          text-decoration: none;
          color: #68757e;
          color: #68757e;
          color: var(--gray);
}

.content-search .tx-indexedsearch-browsebox ul li a:hover {
	text-decoration: underline;
}

.content-search .tx-indexedsearch-info-sword {
    margin: 20px 0;
    text-align: center;
  }

.content-search .tx-indexedsearch-info-noresult {
    margin: 20px 0;
    text-align: center;
  }

.content-search .tx-indexedsearch-searchbox fieldset {
      margin: 0;
      padding: 0;
      border: none;
    }

.content-search .tx-indexedsearch-searchbox legend {
      display: none;
    }

.content-search .tx-indexedsearch-searchbox label {
      display: none;
    }

.content-search .tx-indexedsearch-searchbox .tx-indexedsearch-form {
      float: left;
      width: -webkit-calc(100% - 150px);
      width: calc(100% - 150px);
    }

.content-search .tx-indexedsearch-searchbox .tx-indexedsearch-searchbox-sword {
      width: 100%;
      height: 50px;
      margin: 0;
      padding: 0 20px;
      font-size: 18px;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal;
      color: #68757e;
      color: #68757e;
      color: var(--gray);
      border: solid 1px #68757e;
      border: solid 1px #68757e;
      border: solid 1px var(--gray);
      border-right: none;
    }

.content-search .tx-indexedsearch-searchbox .tx-indexedsearch-search-submit {
      position: relative;
      float: left;
    }

.content-search .tx-indexedsearch-searchbox .tx-indexedsearch-search-submit input {
        width: 150px;
        height: 50px;
        background: #5b717f;
        background: #5b717f;
        background: var(--brand-primary);
        color: #fff;
        color: #fff;
        color: var(--white);
        font-size: 18px;
        text-transform: uppercase;
        font-family: 'Conduit ITC W01 Bold', sans-serif;
        font-family: 'Conduit ITC W01 Bold', sans-serif;
        font-family: var(--font-family-sans-serif-bold);
        font-weight: normal;
        border: none;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
      }

.content-search__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.content-search__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.content-search__inner-wrap {
		margin: 0 auto;
	}
}

.content-search__result {
  margin: 50px 0;
}

.content-search__result__headline {
  margin: 0;
  font-size: 25px;
  line-height: 30px;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-headlines);
}

@media (min-width: 1024px) {

	.content-search__result__headline {
		font-size: 48px;
		line-height: 50px;
	}
}

.content-search__result__headline a {
    text-decoration: none;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary)
  }

.content-search__result__headline a:hover {
	text-decoration: underline;
}

.content-search__result__description {
  margin: 0;
}

.contact-person {

}

.contact-person__inner-wrap {
  background: none;
}

.contact-person__image-wrap {
  position: relative;
  height: 280px;
  width: 100%;
  margin-bottom: 20px;
  border: solid 1px #68757e;
  border: solid 1px #68757e;
  border: solid 1px var(--gray);
}

.contact-person__image-wrap .image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }

.contact-person__text-wrap  {
  margin-bottom: 50px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-size: 23px;
  line-height: 27px;
}

.contact-person__text-wrap h3 {
    margin: 0;
    font-size: 27px;
    line-height: 32px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
  }

.contact-person__text-wrap a {
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    text-decoration: underline
  }

.contact-person__text-wrap a:hover {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

.header-teaser {
  position: relative;
  margin: 30px 0 70px 0;
  font-size: 23px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal
}

.header-teaser:first-child {
	margin-top: 0;
	padding-top: 190px;
}

@media (min-width: 768px) {

	.header-teaser:first-child {
		padding-top: 300px;
	}
}

.header-teaser h2.header-teaser__teaser {
    margin: 0 0 30px 0;
    font-size: 23px;
    line-height: 28px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
}

.header-teaser ul {
    margin: 30px 0;
    padding: 0 0 0 25px;
    list-style-type: circle;
}

.header-teaser p {
    margin: 0 0 30px 0;
}

.header-teaser p:last-of-type {
	margin: 0;
}

.header-teaser p.small {
	margin: 0 0 10px 0;
	font-size: 13px;
	line-height: 16px;
}

.header-teaser a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
    text-decoration: none;
}

.header-teaser a:hover {
	text-decoration: underline;
}

.header-teaser__inner-wrap {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.header-teaser__inner-wrap {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.header-teaser__inner-wrap {
		margin: 0 auto;
	}
}

.header-image {
  position: relative;
  width: 100%;
  height: -webkit-calc(100dvh - 75px);
  height: calc(100dvh - 75px);
  margin: 0 0 70px 0;
}

.header-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

.header-image__inside {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
  height: 100%;
}

@media (min-width: 1024px) {

	.header-image__inside {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.header-image__inside {
		margin: 0 auto;
	}
}

.header-image__overlay {
  position: absolute;
  bottom: 35px;
}

@media (min-width: 768px) {

	.header-image__overlay {
		bottom: 75px;
	}
}

h1.header-image__headline {
  margin: 0 0 30px 0;
  font-size: 40px;
  line-height: 43px;
  color: #fff;
  color: #fff;
  color: var(--white);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
}

@media (min-width: 1024px) {

	h1.header-image__headline {
		font-size: 48px;
		line-height: 50px;
	}
}

@media (min-width: 1200px) {

	h1.header-image__headline {
		font-size: 60px;
		line-height: 60px;
	}
}

.flowing-text p.header-image__subheadline {
  margin: 0 !important;
  color: #fff;
  color: #fff;
  color: var(--white);
}

@media (min-width: 1200px) {

	.flowing-text p.header-image__subheadline {
		font-size: 28px;
		line-height: 35px;
	}
}

.frame-type-felogin_login {
  position: relative;
  margin: 0;
  font-size: 23px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal;
}

.tx-felogin-pi1 {
  position: relative;
}

.tx-felogin-pi1 h3 {
    margin: 0 0 10px 0;
    font-size: 35px;
    line-height: 37px;
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
  }

.tx-felogin-pi1 fieldset {
    border: none;
    padding: 0;
    margin: 30px 0 0 0;
  }

.tx-felogin-pi1 fieldset legend {
      display: none;
    }

.tx-felogin-pi1 label {
    display: block;
    margin: 0 0 5px 0;
    font-size: 23px;
    line-height: 27px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
  }

.tx-felogin-pi1 input[type=text], .tx-felogin-pi1 input[type=password] {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 10px;
    border: solid 1px #e3e2e4;
    border: solid 1px #e3e2e4;
    border: solid 1px var(--gray-lighter);
    font-size: 23px;
    line-height: 27px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.tx-felogin-pi1 input[type=submit] {
    margin-top: 20px;
    padding: 10px;
    font-size: 20px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
    border: none;
    background: #5b717f;
    background: #5b717f;
    background: var(--brand-primary);
    color: #fff;
    color: #fff;
    color: var(--white);
    cursor: pointer;
  }

.tx-felogin-pi1__permalogin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 30px 0;
}

.tx-felogin-pi1__permalogin__checkbox {
  position: relative;
  margin: 7px 8px 0 0;
}

.tx-felogin-pi1--status-error .message-container {
    background: #5b717f;
    background: #5b717f;
    background: var(--brand-primary);
    padding: 20px;
    color: #fff;
    color: #fff;
    color: var(--white);
  }

.contact-form {
  position: relative;
  margin: 0 0 70px 0;
  font-size: 23px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal;
}

.contact-form__inside {
  position: relative;
/*  margin: 0 25px;
  max-width: 1200px;

  @md-min {
    margin: 0 50px;
  }

  @media (min-width: calc(1300px)) {
    margin: 0 auto;
  }*/
}

/*  h2 {
    display: none;
  }*/

.contact-form a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.contact-form .clearfix {
    font-size: 18px;
    line-height: 22px;
  }

.contact-form .clearfix p {
      margin: 0;
    }

.contact-form fieldset {
    position: relative;
    display: block;
    border: none;
    padding: 39px 47px;
    background: #f2f2f2;
    background: #f2f2f2;
    background: var(--gray-light)
  }

.contact-form fieldset.form-group {
	margin-bottom: 40px;
}

.contact-form fieldset legend {
      display: none;
      float: left;
      margin: 0 0 20px 0;
      padding: 0;
      width: 100%;
      font-weight: bold;
      font-weight: bold;
      font-weight: var(--font-weight-bold);
}

.contact-form fieldset legend + * {
        clear: both;
      }

.contact-form fieldset#registerung-859-fieldset-company legend {
        display: table;
}

.contact-form .row {
    position: relative;
  }

@media (min-width: 768px) {

	.contact-form .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

@media (max-width: 767px) {

	.contact-form .row .col-xs-12 {
		width: 100%;
	}
}

.contact-form .row .col-sm-12 {
      width: 100%;
    }

@media (min-width: 768px) {

	.contact-form .row .col-sm-6 {
		width: -webkit-calc(50% - 10px);
		width: calc(50% - 10px);
	}
}

@media (min-width: 768px) {

	.contact-form .row .col-sm-8 {
		width: -webkit-calc((100% / 12 * 8) - 10px);
		width: calc((100% / 12 * 8) - 10px);
	}
}

@media (min-width: 768px) {

	.contact-form .row .col-sm-4 {
		width: -webkit-calc((100% / 12 * 4) - 10px);
		width: calc((100% / 12 * 4) - 10px);
	}
}

.contact-form .form-group {
    margin-bottom: 15px;

  }

.contact-form .form-group .control-label {
      display: block;
      margin-bottom: 5px;
      font-size: 23px;
      line-height: 27px;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal;
      font-weight: normal;
      font-weight: var(--font-weight-regular);
      color: #68757e;
      color: #68757e;
      color: var(--gray);
    }

.contact-form .form-group .form-control {
      width: 100%;
    }

.contact-form .form-group .radio {
      display: inline-block;
      margin: 0 20px 0 0;
    }

.contact-form .form-group input[type=text], .contact-form .form-group input[type=email], .contact-form .form-group input[type=tel], .contact-form .form-group input[type=date], .contact-form .form-group textarea {
      display: block;
      width: 100%;
      margin: 0 0 20px 0;
      padding: 10px;
      border: solid 1px #e3e2e4;
      border: solid 1px #e3e2e4;
      border: solid 1px var(--gray-lighter);
      font-size: 18px;
      line-height: 27px;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: 'Conduit ITC W01 Light', sans-serif;
      font-family: var(--font-family-sans-serif);
      font-weight: normal;
      font-weight: normal;
      font-weight: var(--font-weight-regular);
      color: #68757e;
      color: #68757e;
      color: var(--gray);
    }

.contact-form .form-group input[type=checkbox] {
      position: relative;
      top: 0;
      margin-right: 5px;
    }

.contact-form .form-group input[type=radio] {
      position: relative;
      top: 0;
      margin-right: 5px;
    }

.contact-form .form-group select {
      height: 40px;
    }

.contact-form .actions {
    margin: 30px 0;
  }

.contact-form .actions button {
      padding: 10px;
      font-size: 20px;
      font-weight: normal;
      font-weight: normal;
      font-weight: var(--font-weight-regular);
      border: none;
      background: #5b717f;
      background: #5b717f;
      background: var(--brand-primary);
      color: #fff;
      color: #fff;
      color: var(--white);
      cursor: pointer;
    }

.contact-form .advice {
    margin-bottom: 15px;
    color: darkred;
  }

.contact-form input.form-control.error {
    outline: solid 1px darkred;
  }

.contact-form .fieldset-deliveryaddress {
    display: none;
  }

.multi-slider {
  display: block;
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 800px;
  background: #e3e2e4;
  background: #e3e2e4;
  background: var(--gray-lighter);
  margin-bottom: 30px;
}

@media (min-width: 768px) {

	.multi-slider {
		margin-bottom: 70px;
	}
}

.multi-slider__background-1 {
  display: none;
  position: absolute;
  width: 25vw;
  left: 50vw;
  height: -webkit-calc(40% + 70px);
  height: calc(40% + 70px);
  background: rgba(59, 159, 255, .8);
  z-index: 10;
}

@media (min-width: 1024px) {

	.multi-slider__background-1 {
		display: block;
		width: 30vw;
		left: 70vw;
	}
}

@media (min-width: 1200px) {

	.multi-slider__background-1 {
		width: 25vw;
		left: 50vw;
	}
}

.multi-slider__background-2 {
  display: none;
  position: absolute;
  width: 25vw;
  left: 50vw;
  top: -webkit-calc(40% + 70px);
  top: calc(40% + 70px);
  height: -webkit-calc(60% - 70px);
  height: calc(60% - 70px);
  background: rgba(82, 219, 134, .8);
  z-index: 10;
}

@media (min-width: 1024px) {

	.multi-slider__background-2 {
		display: block;
		width: 30vw;
		left: 70vw;
	}
}

@media (min-width: 1200px) {

	.multi-slider__background-2 {
		width: 25vw;
		left: 50vw;
	}
}

.multi-slider__controls {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  right: 0;
  bottom: 0;
  width: 25vw;
  padding: 45px;
  z-index: 20;
}

@media (min-width: 1200px) {

	.multi-slider__controls {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

.multi-slider__state {
  display: none;
  color: #fff;
  color: #fff;
  color: var(--white);
}

@media (min-width: 1200px) {

	.multi-slider__state {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.multi-slider__state__current-page {
  margin-right: 3px;
  min-width: 60px;
  font-size: 48px;
  line-height: 50px;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
}

@media (min-width: 1200px) {

	.multi-slider__state__current-page {
		font-size: 60px;
		line-height: 60px;
	}
}

.multi-slider__state__total-pages {
  font-size: 23px;
  line-height: 30px;
}

@media (min-width: 1200px) {

	.multi-slider__state__total-pages {
		font-size: 35px;
		line-height: 45px;
	}
}

.multi-slider__buttons {

}

.multi-slider_button {
  position: relative;
  display: block;
  border: solid 1px #fff;
  border: solid 1px #fff;
  border: solid 1px var(--white);
  background: none;
  margin: 0 0 22px 0;
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  cursor: pointer;
  opacity: 0
}

.multi-slider_button:last-child {
	margin-bottom: 0;
}

.multi-slider_button:before,
  .multi-slider_button:after {
	content: "";
	position: absolute;
	left: -webkit-calc(50% + 6px);
	left: calc(50% + 6px);
	top: 50%;
	width: 14px;
	height: 1px;
	background: #fff;
	background: #fff;
	background: var(--white);
	-webkit-transform-origin: right center;
	        transform-origin: right center;
}

.multi-slider_button:before {
	-webkit-transform: translate(-100%, -50%) rotate(45deg);
	        transform: translate(-100%, -50%) rotate(45deg);
}

.multi-slider_button:after {
	-webkit-transform: translate(-100%, -50%) rotate(-45deg);
	        transform: translate(-100%, -50%) rotate(-45deg);
}

.multi-slider_button--prev:before,
    .multi-slider_button--prev:after {
	left: -webkit-calc(50% - 6px);
	left: calc(50% - 6px);
	-webkit-transform-origin: left center;
	        transform-origin: left center;
}

.multi-slider_button--prev:before {
	-webkit-transform: translate(0, -50%) rotate(-45deg);
	        transform: translate(0, -50%) rotate(-45deg);
}

.multi-slider_button--prev:after {
	-webkit-transform: translate(0, -50%) rotate(45deg);
	        transform: translate(0, -50%) rotate(45deg);
}

.multi-slider_button:hover {
	background: rgba(255, 255, 255, 0.1);
	border-width: 2px;
}

.multi-slider_button:hover:before, .multi-slider_button:hover:after {
	height: 2px;
}

.multi-slider-item {
  display: none;
  position: absolute;
  height: 100%
}

.multi-slider-item:first-child {
	display: block;
}

.multi-slider-item__image-1__wrap {
  position: absolute;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) {

	.multi-slider-item__image-1__wrap {
		width: 75vw;
	}
}

.multi-slider-item__image-1 {
  position: absolute;
  width: 100%;
  height: 100%;
}

.multi-slider-item__image-1 img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

.multi-slider-item__image-2__wrap {
  display: none;
  position: absolute;
  left: 75vw;
  width: 25vw;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) {

	.multi-slider-item__image-2__wrap {
		display: block;
	}
}

.multi-slider-item__image-2 {
  position: absolute;
  width: 25vw;
  height: 100%;
}

.multi-slider-item__image-2 img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

.multi-slider-item__text-section1__wrap {
  position: absolute;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  z-index: 5;
}

@media (min-width: 1200px) {

	.multi-slider-item__text-section1__wrap {
		width: 75vw;
	}
}

.multi-slider-item__text-section1__wrap-inside {
  position: absolute;
  width: 100vw;
  height: 100%;
}

@media (min-width: 1024px) {

	.multi-slider-item__text-section1__wrap-inside {
		width: 50vw;
	}
}

@media (min-width: 1200px) {

	.multi-slider-item__text-section1__wrap-inside {
		width: 50vw;
	}
}

.multi-slider-item__text-section1 {
  position: absolute;
  left: 45px;
  bottom: 45px;
  right: 90px;
}

@media (min-width: 1200px) {

	.multi-slider-item__text-section1 {
		left: 90px;
		top: auto;
		right: 90px;
	}
}

h2.multi-slider-item__headline1 {
  margin: 0 0 30px 0;
  font-size: 40px;
  line-height: 43px;
  color: #fff;
  color: #fff;
  color: var(--white);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
}

@media (min-width: 1024px) {

	h2.multi-slider-item__headline1 {
		font-size: 48px;
		line-height: 50px;
	}
}

@media (min-width: 1200px) {

	h2.multi-slider-item__headline1 {
		font-size: 60px;
		line-height: 60px;
	}
}

p.multi-slider-item__subheadline {
  margin: 0 0 30px 0 !important;
  color: #fff;
  color: #fff;
  color: var(--white);
}

@media (min-width: 1200px) {

	p.multi-slider-item__subheadline {
		font-size: 28px;
		line-height: 35px;
	}
}

.multi-slider-item__text-section2__wrap {
  display: none;
  position: absolute;
  left: 50vw;
  width: 50vw;
  height: 100%;
  z-index: 15;
  overflow: hidden;
}

@media (min-width: 1024px) {

	.multi-slider-item__text-section2__wrap {
		display: block;
		left: 70vw;
		width: 30vw;
	}
}

@media (min-width: 1200px) {

	.multi-slider-item__text-section2__wrap {
		left: 50vw;
		width: 50vw;
	}
}

.multi-slider-item__text-section2 {
  position: absolute;
  width: 25vw;
  height: 100%;
  padding: -webkit-calc(45px + 130px) 45px 0 45px;
  padding: calc(45px + 130px) 45px 0 45px;
}

.multi-slider-item__text-section2__inside {
  margin: 0 0 30px 0;
  font-size: 40px;
  line-height: 43px;
  color: #fff;
  color: #fff;
  color: var(--white);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-headlines);
}

@media (min-width: 1200px) {

	.multi-slider-item__text-section2__inside {
		font-size: 48px;
		line-height: 50px;
	}
}

.multi-slider-item__additional-content {
  position: absolute;
  top: -webkit-calc(40% + 45px + 70px);
  top: calc(40% + 45px + 70px);
  color: #fff;
  color: #fff;
  color: var(--white);
}

@media (min-width: 1200px) {

	.multi-slider-item__additional-content {
		padding-right: 45px;
	}
}

ul.multi-slider-item__icons {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.multi-slider-item__icons li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }

ul.multi-slider-item__icons img {
    display: block;
    width: 45px;
    height: auto;
    margin-right: 22px;
  }

.product-list {
  overflow: hidden;
}

.product-list__items {
  overflow: hidden;
}

@media (min-width: 768px) {

	.product-list__items {
		margin: 0 -10px;
	}
}

@media (min-width: 768px) {

	.product-list__items .product-teaser {
		float: left;
		width: 50%;
	}
}

@media (min-width: 1200px) {

	.product-list__items .product-teaser {
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}

@media (min-width: 768px) {

	.product-list__items .product-teaser .product-teaser__inner-wrap {
		margin: 0 10px;
	}
}

.product-teaser {
  margin-bottom: 60px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

.product-teaser a {
    text-decoration: none;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.product-teaser h3 {
    margin: 20px 0 0 0;
    font-size: 27px;
    line-height: 32px;
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
  }

@media (min-width: 768px) {

	.product-teaser h3 {
		min-height: 64px;
	}
}

.product-teaser .product-teaser__teaser {
    font-size: 23px;
    line-height: 27px;
  }

.product-teaser:hover a {
      color: #000000;
      color: #000000;
      color: var(--black);
}

.product-teaser__inner-wrap {

}

.product-teaser__features {
  margin: 0 0 10px 0;
  overflow: hidden;
}

.product-teaser__features dt, .product-teaser__features dd {
    display: block;
    float: left;
    margin: 0;
    font-size: 23px;
    line-height: 27px;
  }

.product-teaser__features dt {
    width: 70px;
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
  }

.product-teaser__features dd {
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
  }

.product-teaser__price {
  margin: 0;
  color: #5b717f;
  color: #5b717f;
  color: var(--brand-primary);
  font-size: 27px;
  line-height: 41px;
  font-weight: bold;
  font-weight: bold;
  font-weight: var(--font-weight-bold);
}

.product-teaser__image {
  width: 100%;
/*  height: 290px;*/
  aspect-ratio: 1;
  background: #fff;
  background: #fff;
  background: var(--white);
  border: solid 1px #68757e;
  border: solid 1px #68757e;
  border: solid 1px var(--gray);
  overflow: hidden;
}

.product-teaser__image img {
    display: block;
    width: 100%;
    height: auto;
  }

.product-show h2 {
   font-size: 23px;
   line-height: 27px;
   font-weight: bold;
   font-weight: bold;
   font-weight: var(--font-weight-bold);
 }

.product-show__section-1 {
  position: relative;
  overflow: hidden;

  margin-bottom: 40px;
}

@media (min-width: 768px) {

	.product-show__section-1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

.product-show__images {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {

	.product-show__images {
		width: auto;
		-ms-flex-preferred-size: 390px;
		    flex-basis: 390px;
		margin-top: 2px;
		margin-right: 40px;
	}
}

.product-show__features {
  margin: 0 0 10px 0;
  overflow: hidden;
}

.product-show__features dt, .product-show__features dd {
    display: block;
    float: left;
    margin: 0;
    font-size: 23px;
    line-height: 27px;
  }

.product-show__features dt {
    width: 70px;
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
  }

.product-show__features dd {
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
  }

.product-show__infos {
  position: relative;
  width: 100%;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

@media (min-width: 768px) {

	.product-show__infos {
		width: auto;
		-ms-flex-preferred-size: calc(100% - 390px - 40px);
		    flex-basis: -webkit-calc(100% - 390px - 40px);
		    flex-basis: calc(100% - 390px - 40px);
		padding-right: 100px;
	}
}

.product-show__infos h1 {
    margin: 0;
    font-size: 48px;
    line-height: 53px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-headlines);
  }

.product-show__infos .teaser {
    margin: 10px 0;
    font-size: 23px;
    line-height: 27px;
  }

.product-show__infos .button__add-to-basket {
    display: block;
    width: 100%;
    margin-top: 15px;
  }

.product-show__price {
  color: #5b717f;
  color: #5b717f;
  color: var(--brand-primary);
  font-size: 34px;
  line-height: 44px;
  font-weight: bold;
  font-weight: bold;
  font-weight: var(--font-weight-bold);
}

.product-show__price__advice--no-user {
  display: none;
  margin: 40px 0;
  font-size: 20px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  font-style: italic;
}

.product-show__price__advice--no-user a {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
    text-decoration: none
  }

.product-show__price__advice--no-user a:hover {
	text-decoration: underline;
}

.product-show__price__advice--no-price {
  display: none;
  margin: 40px 0;
  font-size: 20px;
  line-height: 28px;
}

.product-show__price__price {
  display: none;
  margin: 20px 0 20px 0;
}

.product-show__variants {
  display: block;
  width: 100%;
}

.product-show__variants__label {
  display: block;
  width: 100%;
  margin: 0 0 5px 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  font-weight: bold;
  font-weight: var(--font-weight-bold);
}

.product-show__variants-buttons {
  position: relative;
  width: 100%;
  margin: 0 -5px 20px -5px;
  overflow: hidden;
}

.product-show__variants-button {
  float: left;
  width: -webkit-calc(25% - 10px);
  width: calc(25% - 10px);
  margin: 0 5px 10px 5px;
  padding: 10px;
  font-size: 20px;
  line-height: 22px;
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  border: solid 1px #f2f2f2;
  border: solid 1px #f2f2f2;
  border: solid 1px var(--gray-light);
  background: #fff;
  background: #fff;
  background: var(--white);
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  text-decoration: none;
  text-align: center
}

.product-show__variants-button:hover {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

.product-show__variants-button--current {
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
}

.product-show__variants__two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-show__variants__column {
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
}

.product-show__quantity-input {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  line-height: 22px;
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  border: solid 1px #f2f2f2;
  border: solid 1px #f2f2f2;
  border: solid 1px var(--gray-light);
  background: #fff;
  background: #fff;
  background: var(--white);
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  text-decoration: none;
  text-align: left;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
}

.product-show__add-to-cart-btn {
  margin-top: 25px;
  width: 100%;
}

.product-show__descriptions {
}

.product-show__description_nav a {
    margin-right: 50px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
    font-size: 27px;
    line-height: 32px;
    text-decoration: none;
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold)
  }

.product-show__description_nav a:hover {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

.product-show__description_nav a.active {
	color: #5b717f;
	color: #5b717f;
	color: var(--brand-primary);
}

.product-show__description {
  position: relative;
  font-size: 23px;
  line-height: 27px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

.product-show__related-products h4 {
    margin: 0 0 30px 0;
    font-size: 23px;
    line-height: 27px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.product-show__related-products__items {
  overflow: hidden;
}

@media (min-width: 768px) {

	.product-show__related-products__items {
		margin: 0 -10px;
	}
}

@media (min-width: 768px) {

	.product-show__related-products__items .product-teaser {
		float: left;
		width: 50%;
	}
}

@media (min-width: 1200px) {

	.product-show__related-products__items .product-teaser {
		width: -webkit-calc(100% / 3);
		width: calc(100% / 3);
	}
}

@media (min-width: 768px) {

	.product-show__related-products__items .product-teaser .product-teaser__inner-wrap {
		margin: 0 10px;
	}
}

.product-show--login-only {
  display: none;
}

.add-to-cart-form {
//  display: none;
}

.product-show__available {
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-size: 23px;
  line-height: 30px;
}

.product-show__available__advice--no-user {
  display: none;
}

.product-show__available__advice--no-available {
  display: none;
}

.product-show__available__available {
  display: none;
  margin: 20px 0 40px 0;
}

.product-show__available__label {
  font-weight: bold;
  font-weight: bold;
  font-weight: var(--font-weight-bold);
}

.product-images {
  position: relative;
}

.product-images__main {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  margin-bottom: 15px;
  border: solid 1px #68757e;
  border: solid 1px #68757e;
  border: solid 1px var(--gray);
}

@media (min-width: 768px) {

	.product-images__main {
		height: 390px;
	}
}

.product-images__main img {
    width: 100%;
    height: auto;
  }

.product-images__main a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
  }

@media (min-width: 768px) {

	.product-images__main a:after {
		content: "";
		position: absolute;
		bottom: 15px;
		left: 15px;
		width: 30px;
		height: 30px;
		background: url("../Images/product-zoom-icon.svg") no-repeat center;
	}
}

.product-images__previews {
  position: relative;
  height: 130px;
  overflow: hidden;
}

.product-images__previews .product-images__previews__item {
    display: block;
    position: relative;
    width: -webkit-calc((100% / 3) - 15px);
    width: calc((100% / 3) - 15px);
    margin: 0 15px 0 0;
    float: left;
  }

.product-images__previews img {
    display: block;
    width: 100%;
    height: auto;
  }

.tx-cart__cart {
  position: relative;
  margin: 0 0 70px 0;
  font-size: 23px;
  line-height: 28px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-weight: normal;
}

.tx-cart__cart__inside {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.tx-cart__cart__inside {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.tx-cart__cart__inside {
		margin: 0 auto;
	}
}

.tx-cart__checkout-product-table {
  border-collapse: collapse;
}

.product-table-item {
  font-size: 23px;
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
}

.product-table-item td {
    padding: 26px 36px;
    vertical-align: top;
  }

td.product-table-item__td--image {
  text-align: center;
  padding: 0 36px;
  vertical-align: center;
}

td.product-table-item__td--image img {
    display: block;
    width: 150px;
    height: auto;
  }

.product-table-item__product-name {
  margin: 0 0 5px 0;
  font-size: 36px;
  line-height: 36px;
}

.product-table-item__section-amount-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-table-item__amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 16px;
}

.product-table-item__amount-input {
  width: 85px;
  margin-left: 8px;
  padding: 8px;
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
  font-size: 18px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

.product-table-item__remove {
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  text-decoration: underline;
  font-size: 16px
}

.product-table-item__remove:hover {
	text-decoration: none;
}

.product-table-item__remove__icon {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 16px;
  height: 18px;
  margin: 0 4px;
  background: url(../Images/remove-icon.svg) no-repeat center;
  background-size: auto 18px;
}

.product-table-item__price-item {
  white-space: nowrap;
}

.product-table-item__price-total {
  margin: 0 0 5px 0;
  font-size: 36px;
  line-height: 36px;
  color: #5b717f;
  color: #5b717f;
  color: var(--brand-primary);
}

.tx-cart__update-btn__wrap {
  display: block;
  width: 100%;
  text-align: right;
}

.tx-cart__update-btn {
  margin: 0 0 36px 0;
  padding: 10px;
  font-size: 20px;
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  border: solid 1px #68757e;
  border: solid 1px #68757e;
  border: solid 1px var(--gray);
  background: #fff;
  background: #fff;
  background: var(--white);
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  cursor: pointer;
}

.order-success-message {
  margin: 90px 0;
  text-align: center;
}

.order-success-message h3 {
    margin: 0 0 20px 0;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-secondary);
    font-weight: normal;
    font-size: 35px;
    line-height: 45px;
  }

@media (min-width: 1024px) {

	.order-success-message h3 {
		margin: 0 0 30px 0;
		font-size: 48px;
		line-height: 50px;
	}
}

.tx-cart__form-section .checkout-step {
    margin-bottom: 30px;
    background: none !important;
  }

.tx-cart__form-section a {
    font-weight: normal;
    text-decoration: underline;
    color: #000000;
    color: #000000;
    color: var(--black)
  }

.tx-cart__form-section a:hover {
	text-decoration: none;
}

.tx-cart__form-section .checkout-step-title {
    margin-bottom: 10px;
    padding: 0 !important;
    font-size: 35px;
    line-height: 53px;
    font-weight: normal;
    background: #fff;
    background: #fff;
    background: var(--white);
  }

.tx-cart__form-section .checkout-step-number {
    display: none !important;
  }

.tx-cart__form-section .checkout-step-content {
    /*    padding: 20px;
        background: #f7f7f9;*/
    padding: 28px;
    border: solid 1px #e3e2e4;
    border: solid 1px #e3e2e4;
    border: solid 1px var(--gray-lighter);
  }

.tx-cart__form-section .checkout-step-content fieldset {
      margin: 0;
      padding: 0;
      border: none;
    }

.tx-cart__form-section .checkout-step-content .field {
      position: relative;
      margin-bottom: 15px;
    }

.tx-cart__form-section .checkout-step-content .field label {
        margin: 0;
        font-size: 23px;
        line-height: 30px;
        font-weight: normal;
      }

.tx-cart__form-section .checkout-step-content .field a {
        color: #68757e;
        color: #68757e;
        color: var(--gray);
      }

.tx-cart__form-section .checkout-step-content .field input[type=text],
      .tx-cart__form-section .checkout-step-content .field input[type=email] {
        display: block;
        width: 100%;
        height: 50px;
        padding: 5px 20px;
        border: none;
        font-weight: normal;
        font-size: 18px;
        line-height: 28px;
        background: #f7f7f9;
      }

.tx-cart__form-section .checkout-step-content .field textarea {
        display: block;
        width: 100%;
        height: 100px;
        padding: 5px 20px;
        border: none;
        font-weight: normal;
        font-size: 18px;
        line-height: 28px;
        background: #f7f7f9;
      }

.tx-cart__form-section .order-form__address-field .order-form__address-field__label {
      display: inline-block;
      width: 110px;
      margin: 0;
      padding: 0;
      font-family: 'Conduit ITC W01 Bold', sans-serif;
      font-family: 'Conduit ITC W01 Bold', sans-serif;
      font-family: var(--font-family-sans-serif-bold);
      font-weight: normal;
    }

.tx-cart__form-section .order-form__address-field .order-form__address-field__input {
      display: inline;
    }

@media (min-width: 768px) {

	.tx-cart__form-section .method-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}

.tx-cart__form-section .method-item-name {
    font-weight: normal;
  }

.tx-cart__form-section .method-item-info {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 36px;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary)
  }

.tx-cart__form-section .method-item-info:last-child {
	margin-bottom: 0;
}

.tx-cart__form-section__order-btn__wrap {
  display: block;
  width: 100%;
  text-align: right;
}

.tx-cart__form-section__order-btn {
  padding: 10px;
  font-size: 20px;
  font-weight: normal;
  font-weight: normal;
  font-weight: var(--font-weight-regular);
  border: none;
  background: #5b717f;
  background: #5b717f;
  background: var(--brand-primary);
  color: #fff;
  color: #fff;
  color: var(--white);
  cursor: pointer;
}

#checkout-step-shipping-address {

}

.checkout-step-shipping-address__addresses label {
  display: block;
  margin-bottom: 10px;
}

.checkout-step-shipping-address__addresses label input {
    margin-right: 10px;
  }

.checkout-step-shipping-address__hidden-fields {
  display: none;
}

.tx-cart__checkout-summary-table {
  width: 100%;
  max-width: 100%;
  font-size: 23px;
  line-height: 42px;
  border-collapse: collapse;
}

@media (max-width: 767px) {

	.tx-cart__checkout-summary-table thead {
      display: none;
	}

	.tx-cart__checkout-summary-table tr {
      display: block;
	}

	.tx-cart__checkout-summary-table td {
      display: block;
      padding: 10px !important;
	}

	.tx-cart__checkout-summary-table td:first-child {
		padding-bottom: 0 !important;
		font-size: 13px;
		line-height: 16px;
	}
}

.tx-cart__checkout-summary-table thead {
    display: none;
  }

.tx-cart__checkout-summary-table td {
    padding: 0 28px 0 0;
    vertical-align: text-bottom;
  }

.tx-cart__checkout-summary-table tr {
    background: none;
    vertical-align: top;
    white-space: nowrap;
  }

.tx-cart__checkout-summary-table .price {
    font-size: 36px;
    line-height: 36px;
    color: #5b717f;
    color: #5b717f;
    color: var(--brand-primary);
  }

.search-results {
  position: relative;
  margin: 50px 0;
/*  font-size: 23px;
  line-height: 28px;
  color: var(--gray);
  font-weight: normal;*/
}

.search-results__inside {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
}

@media (min-width: 1024px) {

	.search-results__inside {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.search-results__inside {
		margin: 0 auto;
	}
}

.search-results__search-form {
  display: block;
  position: relative;
  z-index: 200;
  margin: 50px 0;
}

.search-results__search-form__form {
  width: 100%;
  height: 50px;
}

.search-results__search-form__term {
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px;
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
  font-size: 16px;
  line-height: 16px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  outline: none
}

.search-results__search-form__term::-webkit-input-placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: var(--font-family-sans-serif);
}

.search-results__search-form__term::-ms-input-placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: var(--font-family-sans-serif);
}

.search-results__search-form__term::placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: 'Conduit ITC W01 Light', sans-serif;
	font-family: var(--font-family-sans-serif);
}

.search-results__search-form__results {
  position: absolute;
  display: none;
  overflow: hidden;
  width: 100%;
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
  border-top: none;
  background: #fff;
  background: #fff;
  background: var(--white);
}

.search-results__search-form__show-all-results {
  display: none;
  border: none;
  width: 100%;
  padding: 10px;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  background: #f6f6f6;
  background: #f6f6f6;
  background: var(--gray-lightest);
  outline: none
}

.search-results__search-form__show-all-results:hover {
	text-decoration: underline;
}

.search-results-mini__list {
  display: block;
}

.search-results-mini__list__advice {
  display: block;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
}

.search-results-mini-product {
  display: block;
  height: 50px;
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px var(--gray-lighter);
}

.search-results-mini-product__inside {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.search-results-mini-product__inside a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 12px;
    line-height: 14px;
    color: #68757e;
    color: #68757e;
    color: var(--gray);
  }

.search-results-mini-product__inside form {
    display: block;
  }

button.search-results-mini-product__add-to-cart-button {
  display: block;
  padding: 0 10px;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  cursor: pointer;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-weight: bold;
  font-weight: bold;
  font-weight: var(--font-weight-bold);
  font-size: 16px;
  line-height: 20px;
  color: #5b717f;
  color: #5b717f;
  color: var(--brand-primary);
  text-decoration: underline
}

button.search-results-mini-product__add-to-cart-button:hover {
	text-decoration: none;
}

.search-results-mini-product__image {
  display: block;
  width: 50px;
  height: 50px;
  background: #f6f6f6;
  background: #f6f6f6;
  background: var(--gray-lightest);
}

.search-results-mini-product__image img {
    display: block;
    width: 100%;
    height: auto;
  }

.search-results-mini-product__text {
  display: block;
  width: -webkit-calc(100% - 75px);
  width: calc(100% - 75px);
  margin-left: 15px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 16px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  text-align: left;
}

.search-results-mini-product__title {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  font-weight: normal;
}

.search-results-mini-product__id {
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
}

.search-to-basket-form__container {
  position: relative;
  margin: 0 0 70px 0;
}

.search-to-basket-form__container__inside {
  position: relative;
  margin: 0 25px;
  max-width: 1200px;
  padding: 28px;
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
  background: #5b717f;
  background: #5b717f;
  background: var(--brand-primary);
  color: #fff;
  color: #fff;
  color: var(--white);
}

@media (min-width: 1024px) {

	.search-to-basket-form__container__inside {
		margin: 0 50px;
	}
}

@media (min-width: calc(1300px)) {

	.search-to-basket-form__container__inside {
		margin: 0 auto;
	}
}

.search-to-basket-form__description {
  margin: 0 0 10px 0;
  font-size: 23px;
  line-height: 28px;
}

.search-to-basket-form {
  display: block;
  position: relative;
  z-index: 50;
}

.search-to-basket-form__form {
  width: 100%;
  height: 50px;
}

.search-to-basket-form__term {
  display: block;
  width: 100%;
  height: 50px;
  padding: 10px;
  border: none;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px #e3e2e4;
  border-bottom: solid 1px var(--gray-lighter);
  font-size: 18px;
  line-height: 22px;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: 'Conduit ITC W01 Bold', sans-serif;
  font-family: var(--font-family-sans-serif-bold);
  outline: none
}

.search-to-basket-form__term::-webkit-input-placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
}

.search-to-basket-form__term::-ms-input-placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
}

.search-to-basket-form__term::placeholder {
	color: #68757e;
	color: #68757e;
	color: var(--gray);
}

.search-to-basket-form__results {
  position: absolute;
  display: none;
  overflow: hidden;
  width: 100%;
  border: solid 1px #e3e2e4;
  border: solid 1px #e3e2e4;
  border: solid 1px var(--gray-lighter);
  border-top: none;
  background: #fff;
  background: #fff;
  background: var(--white);

}

.search-to-basket-form__results .search-results-mini__list {
    max-height: 420px;
    overflow: hidden;
    overflow-y: auto;
  }

@media (max-width: 767px) {

	.search-to-basket-form__results .search-results-mini-product {
		height: auto;
		padding: 10px;
	}
}

@media (min-width: 768px) {

	.search-to-basket-form__results .search-results-mini-product {
		height: 70px;
	}
}

.search-to-basket-form__results .search-results-mini-product__inside {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

@media (max-width: 767px) {

	.search-to-basket-form__results .search-results-mini-product__inside {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}

@media (min-width: 768px) {

	.search-to-basket-form__results .search-results-mini-product__inside {
		padding: 20px;
		height: 70px;
	}
}

.search-to-basket-form__results .search-results-mini-product__text {
    width: 100%;
  }

@media (max-width: 767px) {

	.search-to-basket-form__results .search-results-mini-product__text {
		margin-left: 0;
		margin-bottom: 10px;
	}
}

@media (min-width: 768px) {

	.search-to-basket-form__results .search-results-mini-product__text {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		font-size: 18px;
		line-height: 22px;
	}
}

@media (min-width: 768px) {

	.search-to-basket-form__results .search-results-mini-product__id {
		width: 200px;
	}
}

.search-to-basket-form__results h3.search-results-mini-product__title {
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: bold;
    font-weight: bold;
    font-weight: var(--font-weight-bold);
  }

@media (min-width: 768px) {

	.search-to-basket-form__results h3.search-results-mini-product__title {
		font-size: 18px;
		line-height: 22px;
	}
}

.search-to-basket-form__results .search-results-mini-product__variant-title {
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: 'Conduit ITC W01 Light', sans-serif;
    font-family: var(--font-family-sans-serif);
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
  }

@media (min-width: 768px) {

	.search-to-basket-form__results .search-results-mini-product__variant-title {
		font-size: 18px;
		line-height: 22px;
	}
}

.search-to-basket-form__results .search-results-mini-product__add-to-cart-button {
    padding: 10px;
    font-size: 20px;
    font-weight: normal;
    font-weight: normal;
    font-weight: var(--font-weight-regular);
    border: none;
    background: #5b717f;
    background: #5b717f;
    background: var(--brand-primary);
    color: #fff;
    color: #fff;
    color: var(--white);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
  }

.search-to-basket-form__show-all-results {
  display: none;
  border: none;
  width: 100%;
  padding: 10px;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: 'Conduit ITC W01 Light', sans-serif;
  font-family: var(--font-family-sans-serif);
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  color: #68757e;
  color: #68757e;
  color: var(--gray);
  background: #f6f6f6;
  background: #f6f6f6;
  background: var(--gray-lightest);
  outline: none
}

.search-to-basket-form__show-all-results:hover {
	text-decoration: underline;
}
