/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.range-slider-target,
.range-slider-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.range-slider-target {
  position: relative;
  direction: ltr;
}
.range-slider-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}
.range-slider-connect {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
.range-slider-origin {
  position: absolute;
  height: 0;
  width: 0;
}
.range-slider-handle {
  position: relative;
  z-index: 1;
}
.range-slider-state-tap .range-slider-connect,
.range-slider-state-tap .range-slider-origin {
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}
.range-slider-state-drag * {
  cursor: inherit !important;
}
/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.range-slider-base,
.range-slider-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/* Slider size and handle placement;
 */
.range-slider-horizontal {
  height: 18px;
}
.range-slider-horizontal .range-slider-handle {
  width: 24px;
  height: 24px;
  left: -12px;
  top: -4px;
}
/* Styling;
 */
.range-slider-target {
  background: #e8e8e8;
  border-left: 2px solid #757575;
  border-right: 2px solid #757575;
  cursor: pointer;
}
.range-slider-connect {
  background: #00a6aa;
  -webkit-transition: background 450ms;
  transition: background 450ms;
}
/* Handles and cursors;
 */
.range-slider-draggable {
  cursor: ew-resize;
}
.range-slider-vertical .range-slider-draggable {
  cursor: ns-resize;
}
.range-slider-handle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #dedede;
  background: #fff;
  cursor: move;
  -webkit-box-shadow: 0 1px 1px 0 #8a8a8a;
          box-shadow: 0 1px 1px 0 #8a8a8a;
  /* Handle stripes;
     */
}
.range-slider-handle:before,
.range-slider-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 8px;
  width: 2px;
  background: #c8c8c8;
  left: 8px;
  top: 6px;
}
.range-slider-handle:after {
  left: 12px;
}
.range-slider-handle:hover,
.range-slider-handle:focus {
  outline: 0;
}
.range-slider-handle:hover:before,
.range-slider-handle:focus:before,
.range-slider-handle:hover:after,
.range-slider-handle:focus:after {
  background: #48c0b7;
}
.range-slider-handle-lower {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.range-slider-handle-upper {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  /* Handle stripes;
     */
}
.range-slider-handle-upper:before,
.range-slider-handle-upper:after {
  left: 7px;
}
.range-slider-handle-upper:after {
  left: 11px;
}
.range-slider-active {
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Disabled state;
 */
[disabled] .range-slider-connect {
  background: #B8B8B8;
}
[disabled].range-slider-target,
[disabled].range-slider-handle,
[disabled] .range-slider-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.range-slider-pips,
.range-slider-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.range-slider-pips {
  position: absolute;
  color: #999;
  font-size: 10px;
}
/* Values;
 *
 */
.range-slider-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
  font-size: 13px;
  line-height: 13px;
  color: #242424;
}
.range-slider-value-sub {
  font-size: 10px;
}
/* Markings;
 *
 */
.range-slider-marker {
  display: none;
}
.range-slider-marker-sub {
  display: none;
}
.range-slider-marker-large {
  display: none;
}
/* Horizontal layout;
 *
 */
.range-slider-pips-horizontal {
  padding: 10px 0;
  height: 10px;
  top: 100%;
  left: 0;
  width: 100%;
}
.range-slider-value-horizontal {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}
.range-slider-marker-horizontal.range-slider-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.range-slider-marker-horizontal.range-slider-marker-sub {
  height: 10px;
}
.range-slider-marker-horizontal.range-slider-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.range-slider-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.range-slider-value-vertical {
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  padding-left: 25px;
}
.range-slider-marker-vertical.range-slider-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.range-slider-marker-vertical.range-slider-marker-sub {
  width: 10px;
}
.range-slider-marker-vertical.range-slider-marker-large {
  width: 15px;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-size: 106.25%;
  line-height: 1.8823529412em;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  line-height: 1.8823529412em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin: 0.9411764706em 0; }

h2 {
  font-size: 1.5em;
  line-height: 1.2549019608em;
  margin: 1.2549019608em 0; }

h3 {
  font-size: 1.17em;
  line-height: 1.6088486677em;
  margin: 1.6088486677em 0; }

h4 {
  font-size: 1em;
  line-height: 1.8823529412em;
  margin: 1.8823529412em 0; }

h5 {
  font-size: 0.83em;
  line-height: 2.2678951099em;
  margin: 2.2678951099em 0; }

h6 {
  font-size: 0.67em;
  line-height: 2.8094820018em;
  margin: 2.8094820018em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
blockquote {
  margin: 1.8823529412em 40px; }

dl,
ol,
ul {
  margin: 1.8823529412em 0; }

/**
 * Turn off margins on nested lists.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

dd {
  margin: 0 0 0 40px; }

ol,
ul {
  padding: 0 0 0 40px; }

/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1.8823529412em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * Add the correct display in IE.
 */
main {
  display: block; }

/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
p,
pre {
  margin: 1.8823529412em 0; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.8823529412em;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
  /*
   * 1. Set 1 unit of vertical rhythm on the top and bottom margin.
   * 2. Set consistent space for the list style image.
   */
  margin: 1.8823529412em 0;
  /* 1 */
  padding: 0 0 0 40px;
  /* 2 */
  /**
   * Turn off margins on nested lists.
   */ }
  menu menu, ol menu, ul menu {
    margin: 0; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

.background--blue {
  background: #009a9d; }

.color--blue {
  color: #009a9d; }

.background--burntred {
  background: #f06060; }

.background--turquoise {
  background: #90d8d8; }

.background--product-tv {
  background: #48a8c0; }

.background--product-fridge {
  background: #88b14b; }

.background--product-washingmachine {
  background: #90d8d8; }

.background--white {
  background: #fff; }

.text-color--white {
  color: #fff; }

.background--alabaster {
  background: #fafafa; }

.background--mercury {
  background: #e5e5e5; }

.background--silver {
  background: #c8c8c8; }

.background--gray {
  background: #8a8a8a; }

.background--boulder {
  background: #757575; }

.background--scorpion {
  background: #595959; }

.background--mine-shaft {
  background: #242424; }

.text-color--mine-shaft {
  color: #242424; }

.background--black {
  background: #000; }

.font-regular {
  font-family: 'Roboto', serif;
  font-weight: 400; }
  .kss-modifier__wrapper .font-regular {
    font-size: 48px;
    margin-bottom: 18px; }

.font-regular--light {
  font-weight: 300; }

.font-regular--semi-bold {
  font-weight: 600; }

.font-roboto {
  font-family: 'Roboto', serif;
  font-weight: 400; }
  .kss-modifier__wrapper .font-roboto {
    font-size: 48px;
    margin-bottom: 18px; }

.font-roboto-condensed {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px; }
  .kss-modifier__wrapper .font-roboto-condensed {
    font-size: 48px;
    margin-bottom: 18px; }

.font-roboto-condensed--regular {
  font-weight: 400; }

svg {
  width: 100%; }

img, embed, object, video {
  width: 100%;
  height: auto; }

.icon-file, .downloadIcon {
  width: 48px;
  float: left;
  margin: 20px 10px 10px 0;
  height: 90px;
  background-repeat: no-repeat;
  background-position: center top; }

.icon-file-default, .icon_sonstiges {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-default.svg); }

.icon-file-bmp {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-bmp.svg); }

.icon-file-doc {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-doc.svg); }

.icon-file-gif {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-gif.svg); }

.icon-file-jpg, .icon_img {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-jpg.svg); }

.icon-file-pdf, .icon_pdf {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-pdf.svg); }

.icon-file-png {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-png.svg); }

.icon-file-txt {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-txt.svg); }

.icon-file-xls, .icon_excel {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-xls.svg); }

.icon-file-zip, .icon_software {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Fileicons/icon-zip.svg); }

table {
  width: 100%; }

.table-content {
  border-collapse: separate;
  border-spacing: 0 3px; }
  .table-content tr {
    background-color: #fff;
    padding: 5px; }
  .table-content tbody tr:hover {
    background-color: #191919;
    color: #fff;
    cursor: pointer; }

th, td {
  text-align: left; }

th {
  font-weight: 400;
  width: 100px; }

.cell--highlighted {
  font-weight: 500; }

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

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

b, strong {
  font-weight: 600; }

.list-unordered, .career-show ul {
  max-width: 660px;
  list-style: disc; }

.list-ordered {
  max-width: 660px; }

.styles-hisense .container__text-left ul {
  max-width: calc(680px - 40px); }

.styles-hisense p {
  font-family: 'Roboto', serif;
  font-weight: 400;
  margin: 0.9411764706em 0;
  max-width: 680px;
  color: #242424;
  line-height: 1.5em; }

.paragraph--large {
  font-size: 18px;
  font-weight: 400; }
  @media (min-width: 768px) {
    .paragraph--large {
      font-size: 17px; } }

.headline, h1, h2, h3,
.h1-alike, .h2-alike, .h3-alike {
  font-family: 'Roboto', serif;
  font-weight: 400;
  color: #242424;
  font-weight: 400;
  max-width: 680px;
  line-height: 1.2em; }

.h1-alike, h1 {
  font-size: 40px;
  font-weight: 600; }
  @media (min-width: 768px) {
    .h1-alike, h1 {
      font-size: 48px; } }

.h2-alike, h2 {
  font-size: 36px;
  font-weight: 600; }
  @media (min-width: 768px) {
    .h2-alike, h2 {
      font-size: 44px; } }

.h2-small, .h2-alike-small {
  font-size: 32px;
  font-weight: 600;
  line-height: 1; }
  @media (min-width: 768px) {
    .h2-small, .h2-alike-small {
      font-size: 28px; } }

.h3-alike, h3 {
  font-size: 18px;
  font-weight: 600; }
  @media (min-width: 768px) {
    .h3-alike, h3 {
      font-size: 22px; } }

p a,
.anchor--regular {
  color: #009a9d;
  text-decoration: none; }
  p a:focus, p a:hover,
  .anchor--regular:focus,
  .anchor--regular:hover {
    color: #00686a; }
  p a.active, p a:active,
  .anchor--regular.active,
  .anchor--regular:active {
    color: #003637; }

.btn {
  -webkit-appearance: none;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 400;
  color: #191919;
  text-transform: uppercase;
  background: transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  position: relative;
  z-index: 1; }
  .btn:focus, .btn:hover {
    outline: 0; }
  .btn.active, .btn:active {
    -webkit-transition: all .0s;
    transition: all .0s; }
  .btn:disabled {
    opacity: 0.3;
    pointer-events: none; }

.btn--color-regular, .btn--color-dark, .blog-list-item__inner:hover .blog-list-item__text-wrap .btn {
  border-color: #191919;
  color: #191919; }
  .btn--color-regular:hover, .btn--color-dark:hover, .blog-list-item__inner:hover .blog-list-item__text-wrap .btn:hover {
    background: #191919;
    color: #191919; }
  .btn--color-regular:focus, .btn--color-dark:focus, .blog-list-item__inner:hover .blog-list-item__text-wrap .btn:focus, .btn--color-regular.active, .active.btn--color-dark, .blog-list-item__inner:hover .blog-list-item__text-wrap .active.btn, .btn--color-regular:active, .btn--color-dark:active, .blog-list-item__inner:hover .blog-list-item__text-wrap .btn:active {
    background: rgba(25, 25, 25, 0.9);
    color: #fff; }
  .btn--color-regular::after, .btn--color-dark::after, .blog-list-item__inner:hover .blog-list-item__text-wrap .btn::after {
    color: #fff; }

.btn--color-light {
  border-color: #fff;
  color: #fff; }
  .btn--color-light:focus, .btn--color-light:hover {
    background: #fff;
    color: #fff; }
  .btn--color-light.active, .btn--color-light:active {
    background: rgba(255, 255, 255, 0.9);
    color: #191919; }
  .btn--color-light::after {
    color: #191919; }

.btn--size-regular {
  height: 48px;
  line-height: 44px;
  padding: 0 48px;
  border-radius: 48px;
  font-size: 15px; }

.btn--size-small {
  height: 36px;
  line-height: 32px;
  padding: 0 36px;
  border-radius: 36px;
  font-size: 13px; }

.btn--image {
  padding: 7px 30px;
  background: rgba(36, 36, 36, 0.15); }
  .btn--image:focus, .btn--image:hover {
    background: rgba(36, 36, 36, 0.25); }
  .btn--image.active, .btn--image:active {
    background: rgba(36, 36, 36, 0.35); }

img.btn__image {
  width: auto;
  height: 29px;
  max-height: 29px;
  max-width: 200px; }

.btn--effect-winona {
  overflow: hidden;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 1, 0.4, 1);
  transition-timing-function: cubic-bezier(0.3, 1, 0.4, 1); }

.btn--effect-winona::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translate(0, 25%);
  transform: translate(0, 25%); }

.btn--effect-winona > span {
  display: block; }

.btn--effect-winona::after,
.btn--effect-winona > span {
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 1, 0.5, 1);
  transition-timing-function: cubic-bezier(0.4, 1, 0.5, 1); }

.btn--effect-winona:hover::after {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

.btn--effect-winona:hover > span {
  opacity: 0;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%); }

.field-wrap {
  padding: 8px 0; }

.full-size-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.hide-handheld {
  display: none; }
  @media (min-width: 768px) {
    .hide-handheld {
      display: table-cell; } }

b {
  font-weight: 500; }

.at span {
  display: none; }
.at::before {
  content: "@";
  display: inline-block; }

.logo {
  width: 150px;
  display: block; }

.logo__image {
  width: 100%;
  height: auto;
  font-size: 0; }

.logo--header .logo-fill {
  fill: #009a9d; }
.logo--footer .logo-fill {
  fill: #646464; }

.message {
  width: 350px;
  padding: 32px;
  margin: 32px; }
  .message--neutral {
    background: #e5e5e5; }
  .message--negative {
    background: #f06060;
    color: #fff; }

table.contenttable {
  margin: 40px 0;
  border-spacing: 0;
  line-height: 1.25; }
  table.contenttable thead {
    vertical-align: top; }
    table.contenttable thead th {
      font-weight: 600;
      border-bottom: 2px solid #e5e5e5;
      padding: 8px; }
      table.contenttable thead th:first-child {
        padding-left: 0; }
      table.contenttable thead th:last-child {
        padding-right: 0; }
  table.contenttable tbody tr {
    vertical-align: top; }
    table.contenttable tbody tr td:first-child {
      padding-left: 0; }
    table.contenttable tbody tr td:last-child {
      padding-right: 0; }
    table.contenttable tbody tr:last-child td {
      border-bottom: 0; }
  table.contenttable tbody td {
    border-bottom: 1px solid #e5e5e5;
    padding: 8px; }
  table.contenttable tbody p {
    margin: 0;
    padding: 0; }

.form-label {
  display: inline-block;
  width: 30%;
  margin-right: 16px; }

input[type=checkbox] {
  float: left;
  position: relative;
  border: none;
  display: none; }
  input[type=checkbox]:disabled + .form-label {
    pointer-events: none;
    opacity: 0.3; }

#TSFE_ADMIN_PANEL_FORM input[type=checkbox] {
  display: inline-block; }

.field-wrap--checkbox {
  position: relative; }

.form-label--checkbox {
  display: block;
  position: relative; }

.form-checkbox__fake-checkbox {
  cursor: pointer;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  background-color: #e5e5e5;
  border: 2px solid #c8c8c8; }
  .form-checkbox__fake-checkbox:after {
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 6px;
    left: 7px;
    border: 3px solid #e5e5e5;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.form-label--checkbox {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 2px 0 2px 36px;
  line-height: 25px;
  cursor: pointer; }
  .form-label--checkbox:hover .form-checkbox__fake-checkbox {
    background-color: #f4f4f4; }
    .form-label--checkbox:hover .form-checkbox__fake-checkbox:after {
      border-color: #c8c8c8; }
  .form-label--checkbox:active .form-checkbox__fake-checkbox {
    background-color: #f4f4f4; }
    .form-label--checkbox:active .form-checkbox__fake-checkbox:after {
      border-color: #c8c8c8; }
  .form-input--checkbox:checked + .form-label--checkbox .form-checkbox__fake-checkbox {
    background-color: #009a9d; }

input[type=radio] {
  float: left;
  position: relative;
  border: none;
  display: none; }
  input[type=radio]:disabled {
    pointer-events: none; }
    input[type=radio]:disabled + .form-label {
      pointer-events: none;
      opacity: 0.3; }

.form-label--radio {
  display: block;
  position: relative; }

.form-radio__fake-radio {
  cursor: pointer;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  background-color: #e5e5e5;
  border: 2px solid #c8c8c8;
  border-radius: 50%; }
  .form-radio__fake-radio:after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background: transparent;
    top: 6px;
    left: 6px;
    border-radius: 50%; }

.form-label--radio {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 2px 0 2px 36px;
  line-height: 25px;
  cursor: pointer; }
  .form-label--radio:hover .form-radio__fake-radio {
    background-color: #f4f4f4; }
    .form-label--radio:hover .form-radio__fake-radio:after {
      background: #c8c8c8; }
  .form-label--radio:active .form-radio__fake-radio {
    background-color: #f4f4f4; }
    .form-label--radio:active .form-radio__fake-radio:after {
      background: #c8c8c8; }
  .form-input--radio:checked + .form-label--radio .form-radio__fake-radio {
    background-color: #009a9d; }
    .form-input--radio:checked + .form-label--radio .form-radio__fake-radio:after {
      background: #c8c8c8; }

.field-wrap--radio .field-wrap__inner + .field-wrap__inner {
  margin-top: 10px; }

select {
  border: 1px solid #c8c8c8;
  width: 50%;
  padding: 8px;
  background: #fff;
  border-radius: 0;
  line-height: 1.4em;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background: #fff url("/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_keyboard_arrow_down_black_24px.svg") center right no-repeat; }

input[type="date"],
input[type="tel"],
input[type="email"],
input[type="text"],
input[type="password"] {
  border: 1px solid #c8c8c8;
  width: 50%;
  padding: 8px;
  background: #fff;
  border-radius: 0;
  line-height: 1.4em;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

textarea {
  border: 1px solid #c8c8c8;
  width: 50%;
  padding: 8px;
  background: #fff;
  border-radius: 0;
  line-height: 1.4em;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  resize: none; }

.cookie-notice {
  position: fixed;
  z-index: 400;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 25, 25, 0.95);
  color: #fff;
  border-top: 1px solid #009a9d;
  padding: 16px 64px;
  font-size: 14px;
  line-height: 1.4em; }
  .cookie-notice a {
    color: #009a9d; }

.cookie-notice__btn {
  display: block;
  margin: 12px auto; }
  @media (min-width: 768px) {
    .cookie-notice__btn {
      float: right;
      margin: 0 0 0 32px; } }

.footer-social__headline {
  color: #fff;
  margin-top: 0;
  line-height: 1em;
  font-size: 18px; }

.footer-social__anchor {
  display: inline-block;
  width: 48px;
  height: 48px; }
  .footer-social__anchor + .footer-social__anchor {
    margin-left: 10px; }

.container.container--footer {
  background-color: #051817;
  color: #fff;
  max-width: 100%;
  position: relative; }

.container__inner.footer__inner-top {
  padding-top: 32px; }
  @media (min-width: 1000px) {
    .container__inner.footer__inner-top {
      padding-top: 64px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

.footer__navigation {
  width: 100%; }
  @media (min-width: 1000px) {
    .footer__navigation {
      width: 100%; } }

.footer__social {
  margin-bottom: 32px;
  text-align: center; }
  @media (min-width: 1000px) {
    .footer__social {
      text-align: left;
      margin-left: 60px; } }

.footer__col-left {
  width: 100%; }

.footer__col-right {
  width: 100%; }

@media (min-width: 1000px) {
  .footer__col-left {
    width: 60%; }

  .footer__col-right {
    width: 40%; } }
.container__inner.footer__inner-bottom {
  border-top: 1px solid #595959;
  padding-top: 24px;
  padding-bottom: 40px;
  text-align: center; }

.footer__logo {
  width: 126px;
  float: left;
  display: none; }
  @media (min-width: 1000px) {
    .footer__logo {
      display: block; } }

.footer__navigation-meta {
  font-size: 13px;
  color: #c8c8c8; }
  @media (min-width: 768px) {
    .footer__navigation-meta {
      display: inline; } }

.footer__copyright {
  font-size: 13px;
  color: #c8c8c8; }
  @media (min-width: 768px) {
    .footer__copyright {
      display: inline;
      margin-left: 40px; } }

.container {
  background-color: #fff;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-width: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .container:after {
    content: '';
    display: block;
    clear: both; }

.container__inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px; }
  @media (min-width: 481px) {
    .container__inner {
      padding: 0;
      width: 417px; } }
  @media (min-width: 768px) {
    .container__inner {
      width: 704px; } }
  @media (min-width: 1000px) {
    .container__inner {
      width: 936px; } }
  @media (min-width: 1280px) {
    .container__inner {
      width: 1216px; } }
  @media (min-width: 1440px) {
    .container__inner {
      width: 1376px; } }

.container__text-left {
  text-align: left; }

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

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

.container__inner--full-width {
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px; }
  @media (min-width: 768px) {
    .container__inner--full-width {
      max-width: 1920px; } }

.container__inner--content-width {
  padding-top: 16px;
  padding-bottom: 16px; }
  @media (min-width: 768px) {
    .container__inner--content-width {
      max-width: 1440px; } }

.container__inner--small-width {
  padding-top: 16px;
  padding-bottom: 64px; }
  @media (min-width: 768px) {
    .container__inner--small-width {
      max-width: 820px; } }

.container__inner--all-centered {
  text-align: center; }
  .container__inner--all-centered.container__inner--small-width {
    padding-top: 32px;
    padding-bottom: 64px; }
    .container__inner--all-centered.container__inner--small-width * {
      max-width: 100%; }

.container__color--wild-sand {
  background-color: #f5f5f5; }

.container__color--cod-gray {
  background-color: #191919; }

.container__color--chelsea-cucumber {
  background-color: #88b14b; }

.container__color--putty {
  background-color: #e5e28e; }

.container__color--burnt-sienna {
  background-color: #f06060; }

.container__color--pelorous {
  background-color: #48a8c0; }

.container__text-color--white {
  color: #fff; }
  .container__text-color--white h1, .container__text-color--white h2, .container__text-color--white h3, .container__text-color--white p, .container__text-color--white ul, .container__text-color--white ol {
    color: #fff; }
  .container__text-color--white a, .container__text-color--white p a {
    color: #fff;
    text-decoration: none; }
    .container__text-color--white a:focus, .container__text-color--white a:hover, .container__text-color--white p a:focus, .container__text-color--white p a:hover {
      color: #cccccc; }
    .container__text-color--white a.active, .container__text-color--white a:active, .container__text-color--white p a.active, .container__text-color--white p a:active {
      color: #b3b3b3; }

body {
  padding-top: 50px; }
  @media (min-width: 768px) {
    body {
      padding-top: 70px; } }

.container--header {
  position: fixed;
  z-index: 200;
  top: 0;
  max-width: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 0 0;
          box-shadow: rgba(0, 0, 0, 0.15) 0 2px 0 0; }

.container__inner.header__inner {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 768px) {
    .container__inner.header__inner {
      height: 70px; } }

.header__col-center {
  width: 100%;
  padding: 0 10.6666666667px;
  display: none;
  visibility: hidden; }
  @media (min-width: 768px) {
    .header__col-center {
      display: block;
      visibility: visible; } }

.header__col-left,
.header__col-right {
  width: 190px; }

.header__logo {
  display: inline-block;
  margin-top: 9px; }
  @media (min-width: 768px) {
    .header__logo {
      margin-top: 18px; } }

.header__navigation-handheld-toggle {
  float: right; }

#map {
  min-height: 450px;
  margin: 32px 0; }

.tx-mymap .ajaxMessage {
  padding: 10px;
  color: white;
  background-color: #009a9d;
  border-radius: 5px;
  display: none; }

/* used in ajaxSearch */
.tx-mymap .hidden {
  display: none; }

.locations-list__item {
  padding: 24px 24px 12px 24px;
  border: 1px solid #e5e5e5;
  margin-bottom: 32px; }

.locations-list__item__row-logo-title {
  height: 45px;
  line-height: 45px;
  font-size: 20px; }

.locations-list__item__logo {
  width: 100px;
  height: auto;
  float: left;
  margin-right: 20px; }

@media (min-width: 768px) {
  .locations-list__item__row-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

@media (min-width: 768px) {
  .locations-list__item__row-address__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 50%; } }

.locations-list__item__row-address p {
  line-height: 2em;
  font-size: 16px; }

#tx_mymap_city {
  width: calc(100% - 16px); }
  @media (min-width: 481px) {
    #tx_mymap_city {
      width: 50%; } }

.range-slider_summary {
  margin-top: 32px; }

.range-slider__input-label {
  font-size: 14px; }

.range-slider_summary .range-slider__input {
  margin: 0 8px;
  width: 60px;
  height: 34px;
  border-radius: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline;
  border-color: #c8c8c8;
  color: #009a9d;
  text-align: center; }

.container__inner.stage__inner {
  width: 100%;
  max-width: 1920px;
  padding: 0; }

.container-content--filter {
  padding: 32px 0;
  background-color: #f5f5f5; }

.blog-list-filter {
  list-style: none;
  margin: 0;
  padding: 0; }

.standard-headline-element__inner li.blog-list-filter-item {
  display: block;
  padding: 0 30px 5px 0; }
  .standard-headline-element__inner li.blog-list-filter-item::before {
    display: none;
    visibility: hidden; }
  @media (min-width: 768px) {
    .standard-headline-element__inner li.blog-list-filter-item {
      padding: 20px 30px 20px 0;
      display: inline-block; } }

.blog-list-filter-item__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  text-align: left;
  font-size: 14px;
  outline: none;
  color: #242424;
  text-transform: uppercase;
  cursor: pointer; }
  .blog-list-filter-item__button.current {
    color: #242424; }
  .blog-list-filter-item__button.blog-list-item__category--1 {
    color: #242424; }
  .blog-list-filter-item__button.blog-list-item__category--2 {
    color: #242424; }
  .blog-list-filter-item__button.blog-list-item__category--3 {
    color: #242424; }
  .blog-list-filter-item__button.blog-list-item__category--4 {
    color: #242424; }

.blog-list-filter-item__dot {
  display: inline-block;
  float: left;
  margin-right: 20px;
  height: 18px;
  width: 18px;
  border: 2px solid #8a8a8a;
  border-radius: 20px;
  position: relative; }
  .blog-list-filter-item__button:hover .blog-list-filter-item__dot {
    border-color: #009a9d; }
  .blog-list-item__category--2:hover .blog-list-filter-item__dot {
    border-color: #f06060; }
  .blog-list-item__category--3:hover .blog-list-filter-item__dot {
    border-color: #48a8c0; }
  .blog-list-item__category--4:hover .blog-list-filter-item__dot {
    border-color: #88b14b; }
  .current .blog-list-filter-item__dot {
    border-color: #009a9d; }
    .current .blog-list-filter-item__dot::before {
      content: '';
      position: absolute;
      top: 3px;
      left: 3px;
      height: 12px;
      width: 12px;
      background-color: #009a9d;
      border-radius: 12px; }
  .current.blog-list-item__category--2 .blog-list-filter-item__dot {
    border-color: #f06060; }
    .current.blog-list-item__category--2 .blog-list-filter-item__dot::before {
      background-color: #f06060; }
  .current.blog-list-item__category--3 .blog-list-filter-item__dot {
    border-color: #48a8c0; }
    .current.blog-list-item__category--3 .blog-list-filter-item__dot::before {
      background-color: #48a8c0; }
  .current.blog-list-item__category--4 .blog-list-filter-item__dot {
    border-color: #88b14b; }
    .current.blog-list-item__category--4 .blog-list-filter-item__dot::before {
      background-color: #88b14b; }

.blog-list-filter__label {
  text-transform: uppercase;
  font-size: 14px;
  color: #8a8a8a; }

p.blog-list-filter--headline {
  font-weight: 700;
  margin-top: 20px;
  border-bottom: 1px solid silver;
  display: inline-block; }

.blog-list {
  margin: 0 -25px; }
  .blog-list.blog-list--standard {
    margin-bottom: 60px; }
  .blog-list.blog-list--head {
    margin: 0; }

.blog-list-item {
  width: 100%;
  position: relative; }
  @media (min-width: 1000px) {
    .blog-list-item {
      width: 50%; } }
  @media (min-width: 1280px) {
    .blog-list-item {
      width: 33.3334%; } }
  .blog-list-item.blog-list-item--big {
    width: 100%;
    padding: 0;
    margin: 0; }

.blog-list-item__inner {
  margin: 25px; }
  .blog-list-item--big .blog-list-item__inner {
    padding: 0; }
  .blog-list--head .blog-list-item__inner {
    background-color: #fff;
    margin: 0; }
  @media (min-width: 1000px) {
    .blog-list--head .blog-list-item__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .blog-list-item__inner:hover {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4); }

.blog-list-item__anchor {
  text-decoration: none; }
  @media (min-width: 0) and (max-width: 480px) {
    .blog-list-item__anchor {
      width: 30px;
      height: 30px; } }

.blog-list-item__image-wrap {
  padding: 0;
  margin: 0;
  width: 100%; }
  @media (min-width: 1000px) {
    .blog-list--head .blog-list-item__image-wrap {
      width: 50%; } }
  @media (min-width: 1280px) {
    .blog-list--head .blog-list-item__image-wrap {
      width: 66.6667%; } }

.blog-list-item__image {
  padding: 0;
  margin: 0;
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto; }

.blog-list-item__text-wrap {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-bottom: 3px solid #fff; }
  @media (min-width: 1000px) {
    .blog-list-item__text-wrap {
      width: 50%; } }
  @media (min-width: 1280px) {
    .blog-list-item__text-wrap {
      width: 33.3334%; } }
  .blog-list-item__text-wrap .btn {
    margin-top: 40px; }
  .blog-list-item__inner:hover .blog-list-item__text-wrap {
    border-color: #009a9d; }

.blog-list-item__text-wrap__inner {
  padding: 20px; }
  @media (min-width: 768px) {
    .blog-list-item__text-wrap__inner {
      padding: 60px; } }

.blog-list-item__caption {
  position: relative;
  padding: 20px 20px 30px;
  background-color: #fff;
  border-bottom: 3px solid #fff;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }
  .blog-list-item--big .blog-list-item__caption {
    padding: 0; }
  .blog-list-item__inner:hover .blog-list-item__caption {
    border-color: #009a9d; }

.blog-list-item__category {
  display: inline-block;
  color: #009a9d;
  line-height: 17px;
  padding: 10px 0 25px 0;
  font-size: 17px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0); }

.blog-list-item__title {
  font-size: 22px;
  letter-spacing: -1px;
  margin-top: 0; }
  .blog-list-item__title a {
    color: #242424; }
  @media (min-width: 0) and (max-width: 480px) {
    .blog-list-item__title {
      font-size: 15px;
      font-weight: 400;
      padding: 10px 50px 10px 10px;
      min-height: 34px; } }

.blog-list-item__top-title {
  margin-top: 0; }
  .blog-list-item__top-title a {
    color: #242424; }

p.blog-list-item__teaser-text, .blog-list-item__teaser-text p {
  line-height: 1.4em;
  color: #242424;
  margin: 20px 0 0;
  font-size: 17px; }
  .blog-list-item--big p.blog-list-item__teaser-text, .blog-list-item--big .blog-list-item__teaser-text p {
    font-size: 19px; }

.blog-list-item__category--1 {
  color: #009a9d; }

.blog-list-item__category--2 {
  color: #f06060; }

.blog-list-item__category--3 {
  color: #48a8c0; }

.blog-list-item__category--4 {
  color: #88b14b; }

.blog-single__back {
  position: relative; }

.blog-single__back-button {
  position: absolute;
  left: 0;
  top: 30px; }

p.blog-single__date {
  max-width: 100%;
  font-size: 15px;
  text-align: right; }

.blog-single__headline {
  max-width: 100%; }

p.blog-single__abstract {
  max-width: 100%;
  font-size: 22px;
  margin-bottom: 48px; }

.blog-single__content {
  max-width: 620px;
  margin: 0 auto; }

p.blog-single__share-title {
  font-size: 15px;
  color: #009a9d;
  border-bottom: 1px solid #e5e5e5;
  width: auto;
  line-height: 40px;
  display: inline-block;
  margin-top: 48px; }

.news-related-files,
.news-related-news,
.news-related-links {
  padding: 0;
  border: none; }

.news-related-files-link a {
  color: #009a9d;
  text-decoration: none; }
  .news-related-files-link a:focus, .news-related-files-link a:hover {
    color: #00686a; }
  .news-related-files-link a.active, .news-related-files-link a:active {
    color: #003637; }

.page-navigation {
  text-align: center; }
  .page-navigation ul.pagination {
    margin: auto;
    float: none;
    display: inline-block; }

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #009a9d;
  border: 1px solid #009a9d; }
.pagination > li > a:focus,
.pagination > li > a:hover {
  background-color: #009a9d;
  border: 1px solid #009a9d;
  color: #fff; }
.pagination > li > a,
.pagination > li > span {
  border: 1px solid #e5e5e5;
  color: #009a9d;
  display: block;
  height: 24px;
  line-height: 24px;
  text-decoration: none;
  padding: 2px 8px;
  min-width: 12px; }

.career-job-list {
  width: 100%; }

.career-list__inner {
  padding: 32px 0 64px; }

.career-job-list__button {
  width: 24px;
  height: 48px;
  display: block;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  position: relative;
  margin: auto; }
  .career-job-list__button::after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(/typo3conf/ext/socura_sitepackage/Resources/Public/Images/Icons/icon-arrow-right-real-monza.svg) center no-repeat;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  .career-job-list__row:hover .career-job-list__button::after {
    background-image: url(/typo3conf/ext/socura_sitepackage/Resources/Public/Images/Icons/icon-arrow-right-real-white.svg); }

.career-job-list__row--header th {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 0;
  text-align: left;
  font-size: 13px; }
  @media (min-width: 1000px) {
    .career-job-list__row--header th {
      font-size: 15px; } }
  .career-job-list__row--header th:first-child {
    border: none;
    width: 10px; }
  .career-job-list__row--header th span {
    border-left: 1px solid #c8c8c8;
    padding: 0 15px;
    display: inline-block; }

.career-job-list__row {
  cursor: pointer;
  -webkit-transition: all ease .3s;
  transition: all ease .3s; }
  .career-job-list__row td {
    padding: 10px 2px 10px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 13px;
    font-weight: 500; }
    @media (min-width: 1000px) {
      .career-job-list__row td {
        padding: 0 15px;
        font-size: 15px; } }
    .career-job-list__row td:first-child {
      width: 10px;
      padding: 0;
      line-height: 1; }

.career-show-attributes {
  margin-bottom: 60px;
  clear: both; }

.career-show-attributes__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.career-show-attributes__item {
  -webkit-box-flex: .3;
      -ms-flex: .3;
          flex: .3; }

.career-show-attributes__item-inner {
  border: 1px solid #8a8a8a;
  margin: 10px;
  padding: 4px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .career-show-attributes__item:first-child .career-show-attributes__item-inner {
    margin-left: 0; }
  .career-show-attributes__item:last-child .career-show-attributes__item-inner {
    margin-right: 0; }
  .career-show-attributes__item-inner::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin: 6px auto;
    background: center no-repeat; }

.career-show-attributes__item--city::before {
  background-image: url(/typo3conf/ext/socura_sitepackage/Resources/Public/Images/Icons/icon-location-gray.svg); }

.career-show-attributes__item--jobtype::before {
  background-image: url(/typo3conf/ext/socura_sitepackage/Resources/Public/Images/Icons/icon-jobtype-gray.svg); }

.career-show-attributes__item--entrydate::before {
  background-image: url(/typo3conf/ext/socura_sitepackage/Resources/Public/Images/Icons/icon-date-gray.svg); }

.career-show-attributes__label {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 24px;
  color: #8a8a8a;
  margin-bottom: -10px; }

.career-show .standard-headline-element__headline {
  margin-top: 30px; }
.career-show h3 {
  margin: 48px 0 16px 0; }
.career-show ul {
  margin-top: 0;
  margin-bottom: 48px; }

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  /* Default for 1600x900 videos 16:9 ratio*/
  padding-top: 0px;
  height: 0;
  overflow: hidden; }

.container-split-33-66__inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative; }
  @media (min-width: 768px) {
    .container-split-33-66__inner {
      max-width: 1920px; } }
  @media (min-width: 1000px) {
    .container-split-33-66__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

@media (min-width: 1000px) {
  .container-split-33-66__col {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }

.container-split-33-66__col-inner {
  width: 100%; }

.container-split-33-66__col-side {
  position: relative;
  height: 100px;
  width: 100%; }
  @media (min-width: 1000px) {
    .container-split-33-66__col-side {
      height: 100%;
      padding-top: 0;
      position: absolute;
      width: 33%; } }

@media (min-width: 1000px) {
  .container-split-33-66__col-side--fixed {
    position: fixed; } }

.container-split-33-66__col-main {
  position: relative;
  width: 100%; }
  @media (min-width: 1000px) {
    .container-split-33-66__col-main {
      float: left;
      margin-left: 33%;
      width: 66%; } }

.container-split-33-66__col-main-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 32px 16px; }
  @media (min-width: 768px) {
    .container-split-33-66__col-main-inner {
      padding: 32px 64px; } }
  @media (min-width: 1000px) {
    .container-split-33-66__col-main-inner {
      padding: 32px 64px; } }
  @media (min-width: 1280px) {
    .container-split-33-66__col-main-inner {
      padding: 32px 96px;
      width: 853.3333333333px; } }
  @media (min-width: 1440px) {
    .container-split-33-66__col-main-inner {
      width: 960px; } }

.container-split-50-50 {
  position: relative;
  z-index: 120; }

.container__inner.container-split-50-50__inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 768px) {
    .container__inner.container-split-50-50__inner {
      max-width: 1920px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.container-split-50-50__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 2px; }
  @media (min-width: 768px) {
    .container-split-50-50__col {
      margin: 2px 1px; }
      .container-split-50-50__col:first-child {
        margin-left: 0; }
      .container-split-50-50__col:last-child {
        margin-right: 0; } }

.container-split-50-50__col-left {
  background: #007c7e;
  color: #fff; }

.container-split-50-50__col-right {
  background: #009a9d;
  color: #fff; }

.container-split-50-50__anchor {
  color: #fff;
  text-decoration: none;
  padding: 0 5px; }
  .container-split-50-50__anchor:focus, .container-split-50-50__anchor:hover {
    color: #cccccc; }
  .container-split-50-50__anchor.active, .container-split-50-50__anchor:active {
    color: #b3b3b3; }

.container-split-50-50__col-inner {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (min-width: 481px) {
    .container-split-50-50__col-inner {
      width: 417px;
      margin: 0 auto;
      padding: 32px 0; } }
  @media (min-width: 768px) {
    .container-split-50-50__col-inner {
      padding: 32px 0 32px;
      width: 352px; }
      .container-split-50-50__col-left .container-split-50-50__col-inner {
        margin-right: 0;
        padding-right: 32px; }
      .container-split-50-50__col-right .container-split-50-50__col-inner {
        margin-left: 0;
        padding-left: 32px; } }
  @media (min-width: 1000px) {
    .container-split-50-50__col-inner {
      width: 468px; }
      .container-split-50-50__col-left .container-split-50-50__col-inner {
        padding-right: 60px; }
      .container-split-50-50__col-right .container-split-50-50__col-inner {
        padding-left: 60px;
        padding-right: 60px; } }
  @media (min-width: 1280px) {
    .container-split-50-50__col-inner {
      padding-top: 64px;
      padding-bottom: 64px;
      width: 608px; } }
  @media (min-width: 1440px) {
    .container-split-50-50__col-inner {
      width: 688px; } }

.container-split-50-50__headline {
  margin: 0 0 0.4705882353em 0;
  color: #fff; }

.styles-hisense .container-split-50-50__paragraph {
  margin: 0 0 1.8823529412em 0;
  color: #fff; }

.container-split-50-50__btn {
  margin: 0 0 0.4705882353em 0;
  width: 180px;
  margin-right: 15px; }

.container-split-66-33 h1, .container-split-66-33 h2 {
  margin: .3em 0; }
.container-split-66-33 p {
  font-size: 20px; }

.container-split-66-33__inner {
  padding: 100px 0 100px 0;
  position: relative; }
  @media (min-width: 1000px) {
    .container-split-66-33__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 768px) {
    .container-split-66-33__inner.standardteaser__content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.container-split-66-33__col-inner {
  width: 100%; }

.container-split-66-33__col-left {
  position: relative;
  width: 100%; }
  @media (min-width: 1000px) {
    .container-split-66-33__col-left {
      width: 66.66666%; } }

.container-split-66-33__col-right {
  position: relative;
  width: 100%; }
  @media (min-width: 1000px) {
    .container-split-66-33__col-right {
      width: 33.33333%; } }

@media (min-width: 1000px) {
  .downloads-wrap {
    min-height: 750px; } }

#pcatwrap {
  display: none; }

.resultDownload {
  padding-top: 32px; }
  @media (min-width: 1000px) {
    .resultDownload {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: wrap;
          flex-flow: wrap; } }

.download-item {
  font-size: 14px; }
  @media (min-width: 768px) {
    .download-item {
      margin-right: 3%;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 30%;
              flex: 0 1 30%; } }

.download-item__desc {
  min-height: 90px;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

.download-item__label {
  font-weight: 400; }

.carousel {
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .carousel {
      margin-bottom: 0; } }

.carousel-cell {
  width: 100%;
  margin-right: 10px; }

/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center;
  line-height: 200px; }

.carousel-nav .carousel-cell {
  height: 50px;
  width: 65px;
  padding: 10px; }

.carousel-nav .carousel-cell:before {
  font-size: 50px;
  line-height: 80px; }

.carousel-nav .carousel-cell.is-nav-selected {
  -webkit-box-shadow: inset 0 -3px 0 0 #009a9d;
          box-shadow: inset 0 -3px 0 0 #009a9d; }

.carousel-main {
  margin: 0; }
.carousel-cell {
  overflow: hidden; }
.carousel-image {
  display: block; }

/*! Flickity v2.0.9
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }
  .flickity-enabled:focus {
    outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
  .flickity-prev-next-button:hover {
    background: white; }
  .flickity-prev-next-button:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 5px #000;
            box-shadow: 0 0 0 5px #000; }
  .flickity-prev-next-button:active {
    opacity: 0.6; }
  .flickity-prev-next-button.previous {
    left: 10px; }
  .flickity-prev-next-button.next {
    right: 10px; }
  .flickity-prev-next-button:disabled {
    opacity: 0.3;
    cursor: auto; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }
  .flickity-page-dots .dot.is-selected {
    opacity: 1; }

.tako-form-block {
  border: none;
  margin: 0 0 40px 0;
  padding: 0;
  display: block; }

@media (min-width: 768px) {
  .tako-form-block__50-50 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

@media (min-width: 768px) {
  .tako-form-block__col {
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5; } }

.form-textarea--tako-form {
  width: 100%;
  min-height: 269px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.container--tako-form {
  padding-top: 40px;
  background: transparent; }

.form-label.form-label--input.form-label--input-tako-form {
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0; }

.form-input.form-input--text.form-input--text-tako-form {
  width: 70%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.form-select.form-select--tako-form {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.container--tako-form legend {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    .container--tako-form legend {
      font-size: 24px; } }
@media (min-width: 0) and (max-width: 767px) {
  .container--tako-form .form-input--text,
  .container--tako-form .form-label--input,
  .container--tako-form .form-input.form-input--text.form-input--text-tako-form,
  .container--tako-form .form-select {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }

.box-side-fixed {
  background-color: #009a9d;
  background: -webkit-gradient(linear, right top, left bottom, from(#00686a), to(#009a9d));
  background: linear-gradient(to bottom left, #00686a, #009a9d);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5; }

.box-side-fixed__inner {
  padding: 32px 16px; }
  @media (min-width: 1000px) {
    .box-side-fixed__inner {
      text-align: center;
      padding: 96px 32px 32px 32px;
      height: 100%; } }
  @media (min-width: 1440px) {
    .box-side-fixed__inner {
      padding: 96px 64px 32px 64px; } }

.box-side-fixed__headline {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2em;
  display: block; }
  @media (min-width: 768px) {
    .box-side-fixed__headline {
      text-align: center;
      font-size: 32px;
      float: left;
      width: 50%; } }
  @media (min-width: 1000px) {
    .box-side-fixed__headline {
      width: 100%;
      float: none; } }
  @media (min-width: 1440px) {
    .box-side-fixed__headline {
      font-size: 38px; } }

.box-side-fixed__image {
  display: none; }
  @media (min-width: 768px) {
    .box-side-fixed__image {
      display: block;
      float: right;
      height: 200px;
      width: auto; } }
  @media (min-width: 1000px) {
    .box-side-fixed__image {
      width: 100%;
      height: auto;
      position: absolute;
      bottom: 0;
      left: 0; } }

.faq {
  padding: 96px 0; }
  .faq__header {
    margin-top: 0; }
  .faq__cat-container {
    margin: 0 -10px 20px; }
    .faq__cat-container-inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  .faq__cat-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
            flex: 1 1 25%;
    height: 64px;
    line-height: 64px;
    text-align: center;
    cursor: pointer; }
    .faq__cat-item-inner {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      height: 64px;
      margin: 0 10px;
      -webkit-transition: all ease .3s;
      transition: all ease .3s;
      border-bottom: 4px solid #e5e5e5; }
    .faq__cat-item-title {
      font-size: 20px; }
    .faq__cat-item:hover .faq__cat-item-inner {
      border-bottom: 4px solid #009a9d; }
    .faq__cat-item--active .faq__cat-item-inner {
      border-bottom: 4px solid #009a9d; }
    .faq__cat-item--active:hover .faq__cat-item-inner {
      border-bottom: 4px solid #90d8d8; }
  .faq__item {
    padding: 10px; }
    .faq__item-container {
      display: none; }
      .faq__item-container--active {
        display: block; }
    .faq__item-question {
      position: relative;
      margin-bottom: 15px;
      padding-bottom: 4px;
      -webkit-transition: all ease .3s;
      transition: all ease .3s;
      border-bottom: 2px solid #e5e5e5;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer; }
      .faq__item-question:hover {
        border-bottom: 2px solid #009a9d; }
        .faq__item-question:hover .faq__item-toggle {
          -webkit-transform: translate(0, -50%) scale(1.3);
                  transform: translate(0, -50%) scale(1.3); }
          .faq__item-question:hover .faq__item-toggle::before {
            height: 3px; }
          .faq__item-question:hover .faq__item-toggle::after {
            width: 3px; }
    .faq__item-toggle {
      display: block;
      position: absolute;
      top: 50%;
      right: 0;
      width: 20px;
      height: 20px;
      float: right;
      -webkit-transform: translate(0, -50%) rotate(720deg);
              transform: translate(0, -50%) rotate(720deg);
      -webkit-transition: all ease .3s;
      transition: all ease .3s; }
      .faq__item-toggle::before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 2px;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        background-color: #009a9d; }
      .faq__item-toggle::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2px;
        height: 16px;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-transition: all ease .3s;
        transition: all ease .3s;
        opacity: 1;
        background-color: #009a9d; }
    .faq__item-answer {
      display: none;
      font-size: 15px; }
      .faq__item-answer p:first-child {
        margin-top: 0; }
      .faq__item-answer p:last-child {
        margin-bottom: 0; }
    .faq__item--active .faq__item-toggle {
      -webkit-transform: translate(0, -50%) rotate(-720deg);
              transform: translate(0, -50%) rotate(-720deg); }
      .faq__item--active .faq__item-toggle::after {
        -webkit-transition: all ease .3s;
        transition: all ease .3s;
        opacity: 0; }
    .faq__item--active .faq__item-question:hover .faq__item-toggle {
      -webkit-transform: translate(0, -50%) scale(1.3) rotate(-720deg);
              transform: translate(0, -50%) scale(1.3) rotate(-720deg); }

.headerimage {
  position: relative;
  background-size: cover;
  overflow: hidden;
  background-position: center;
  z-index: 101;
  border-bottom: 2px solid #fff; }
  .headerimage.headerimagesize--standard {
    height: 180px; }
    @media (min-width: 481px) {
      .headerimage.headerimagesize--standard {
        height: 240px; } }
    @media (min-width: 768px) {
      .headerimage.headerimagesize--standard {
        height: 360px; } }
    @media (min-width: 1000px) {
      .headerimage.headerimagesize--standard {
        height: 520px; } }
    @media (min-width: 1280px) {
      .headerimage.headerimagesize--standard {
        height: 640px; } }
    @media (min-width: 1680px) {
      .headerimage.headerimagesize--standard {
        height: 720px; } }
  .headerimage.headerimagesize--small {
    height: 180px; }
    @media (min-width: 481px) {
      .headerimage.headerimagesize--small {
        height: 240px; } }
    @media (min-width: 768px) {
      .headerimage.headerimagesize--small {
        height: 260px; } }
    @media (min-width: 1000px) {
      .headerimage.headerimagesize--small {
        height: 280px; } }
    @media (min-width: 1280px) {
      .headerimage.headerimagesize--small {
        height: 300px; } }
    @media (min-width: 1680px) {
      .headerimage.headerimagesize--small {
        height: 320px; } }
  .headerimage.headerimageoverlay-true::after {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 102; }

.headerimage__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  line-height: 1.2;
  z-index: 103;
  width: 75%; }

.headerimage__header {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px; }
  @media (min-width: 481px) {
    .headerimage__header {
      font-size: 30px; } }
  @media (min-width: 768px) {
    .headerimage__header {
      font-size: 36px; } }
  @media (min-width: 1000px) {
    .headerimage__header {
      font-size: 42px; } }
  @media (min-width: 1280px) {
    .headerimage__header {
      font-size: 50px; } }
  @media (min-width: 1680px) {
    .headerimage__header {
      font-size: 54px; } }

.headerimage__subheader {
  font-size: 15px; }
  @media (min-width: 481px) {
    .headerimage__subheader {
      font-size: 16px; } }
  @media (min-width: 768px) {
    .headerimage__subheader {
      font-size: 17px; } }
  @media (min-width: 1000px) {
    .headerimage__subheader {
      font-size: 18px; } }
  @media (min-width: 1280px) {
    .headerimage__subheader {
      font-size: 19px; } }
  @media (min-width: 1680px) {
    .headerimage__subheader {
      font-size: 20px; } }

@media (min-width: 768px) {
  .navigation-megamenu-elements {
    padding: 16px 0 32px;
    line-height: 32px; } }
.navigation-handheld .navigation-megamenu-elements {
  background: #fafafa; }

.navigation-megamenu-elements__list {
  text-align: center;
  margin: 0;
  padding: 0; }

@media (min-width: 768px) {
  .navigation-megamenu-elements__list-item {
    display: inline-block;
    margin: 0 16px; } }
.navigation-handheld .navigation-megamenu-elements__list-item {
  display: block;
  border-top: 1px solid #e5e5e5; }

.navigation-megamenu-elements__anchor {
  text-decoration: none;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #242424;
  text-decoration: none; }
  .navigation-megamenu-elements__anchor:focus, .navigation-megamenu-elements__anchor:hover {
    color: #00686a; }
  .navigation-megamenu-elements__anchor.active, .navigation-megamenu-elements__anchor:active {
    color: #003637; }
  @media (min-width: 768px) {
    .navigation-megamenu-elements__anchor {
      max-width: 200px;
      display: block; } }
  .navigation-handheld .navigation-megamenu-elements__anchor {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.navigation-megamenu-elements__image {
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  @media (min-width: 768px) {
    .navigation-megamenu-elements__image {
      margin-bottom: -40px; } }
  .navigation-handheld .navigation-megamenu-elements__image {
    width: 75px;
    height: auto; }
  .navigation-megamenu-elements__anchor:hover .navigation-megamenu-elements__image, .navigation-megamenu-elements__anchor:focus .navigation-megamenu-elements__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

.navigation-megamenu-elements__title {
  display: block; }

.standardteaser > div {
  padding: 0; }

.standardteaser__position--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.standardteaser__position--right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse; }

.standardteaser__text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9vw 20px; }
  @media (min-width: 768px) {
    .standardteaser__text {
      padding: 9vw 4vw; } }
  .standardteaser__text > div {
    max-width: 100%; }
    @media (min-width: 1000px) {
      .standardteaser__text > div {
        max-width: 60%; } }

.standardteaser__backgroundcolor--white > div {
  background-color: #fff; }

.standardteaser__backgroundcolor--gray > div {
  background-color: #f5f5f5; }

.standardteaser__image > div {
  width: 100%;
  height: 100%; }
.standardteaser__image img {
  display: block; }
  @media (min-width: 768px) {
    .standardteaser__image img {
      display: none; } }

.standardteaser__image--wrapper {
  background-size: cover;
  height: 100%;
  background-position: center;
  position: relative;
  width: 100%;
  display: block; }

.standardteaser__text--bodytext > p {
  font-size: 15px;
  max-width: 100%;
  margin-bottom: 1.4em; }
  @media (min-width: 1000px) {
    .standardteaser__text--bodytext > p {
      font-size: 17px; } }

h2.standardteaser__text--header {
  line-height: 1.25;
  margin: 0 0 30px 0; }
  @media (min-width: 1000px) {
    h2.standardteaser__text--header {
      margin-bottom: 50px; } }

.standardteaser__text {
  position: relative;
  width: 100%; }
  @media (min-width: 768px) {
    .standardteaser__text {
      -ms-flex-preferred-size: calc(100% / 3 * 2);
          flex-basis: calc(100% / 3 * 2); } }

.standardteaser__image {
  position: relative;
  width: 100%; }
  @media (min-width: 768px) {
    .standardteaser__image {
      -ms-flex-preferred-size: calc(100% / 3);
          flex-basis: calc(100% / 3); } }

.container--teaser-highlight {
  overflow: hidden; }

.container--teaser-highlight__inner {
  padding: 1px 0; }
  @media (min-width: 768px) {
    .container--teaser-highlight__inner {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: wrap;
          flex-flow: wrap; } }

.teaser-highlight {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1px 0; }
  @media (min-width: 768px) {
    .teaser-highlight {
      padding: 1px 1px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%;
      margin-left: -1px;
      margin-right: -1px; } }
  @media (min-width: 1000px) {
    .teaser-highlight {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 25%;
              flex: 0 1 25%; } }

.teaser-highlight__figure {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden; }

.teaser-highlight__anchor {
  display: block; }

.teaser-highlight__image {
  display: block;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .teaser-highlight__anchor:hover .teaser-highlight__image, .teaser-highlight__anchor:focus .teaser-highlight__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

.teaser-highlight__figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  height: 48px;
  font-size: 20px;
  line-height: 48px;
  text-align: center; }

.container--teaser-product-group {
  padding-bottom: 32px; }
  @media (min-width: 768px) {
    .container--teaser-product-group {
      padding-bottom: 48px; } }
  @media (min-width: 1000px) {
    .container--teaser-product-group {
      padding-bottom: 64px; } }

@media (min-width: 768px) {
  .container--teaser-product-group__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap; } }

.teaser-product-group {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  margin-bottom: 21.3333333333px; }
  @media (min-width: 768px) {
    .teaser-product-group {
      padding: 0 8px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%;
      margin-left: -8px;
      margin-right: -8px; } }
  @media (min-width: 1000px) {
    .teaser-product-group {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 25%;
              flex: 0 1 25%; } }

.teaser-product-group__headline {
  margin: 12px 0; }

.teaser-product-group__figure {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden; }

.teaser-product-group__anchor {
  display: block; }

.teaser-product-group__image-bg {
  display: block; }

.teaser-product-group__image {
  display: block;
  position: absolute;
  top: 0;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .teaser-product-group__anchor:hover .teaser-product-group__image, .teaser-product-group__anchor:focus .teaser-product-group__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

.teaser-product-group__figcaption {
  text-transform: uppercase;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  color: #009a9d;
  height: 64px;
  font-size: 18px;
  line-height: 48px;
  text-align: center; }

.teaserflex {
  padding: 96px 0; }
  .teaserflex__header {
    max-width: 100%;
    margin-top: 0;
    text-align: center; }
  .teaserflex__flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .teaserflex__flexbox-outer {
      margin: 0 -40px; }
  .teaserflex__item {
    text-align: center; }
    .teaserflex__flex-items-1 .teaserflex__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; }
    .teaserflex__flex-items-2 .teaserflex__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; }
      @media (min-width: 1000px) {
        .teaserflex__flex-items-2 .teaserflex__item {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
    .teaserflex__flex-items-3 .teaserflex__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; }
      @media (min-width: 1000px) {
        .teaserflex__flex-items-3 .teaserflex__item {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 33.33333333334%;
                  flex: 0 0 33.33333333334%; } }
    .teaserflex__flex-items-4 .teaserflex__item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%; }
      @media (min-width: 768px) {
        .teaserflex__flex-items-4 .teaserflex__item {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 50%;
                  flex: 0 0 50%; } }
      @media (min-width: 1280px) {
        .teaserflex__flex-items-4 .teaserflex__item {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 25%;
                  flex: 0 0 25%; } }
    .teaserflex__item-inner {
      margin: 0 40px; }
    .teaserflex__item-title {
      max-width: 100%;
      margin-bottom: 40px; }
    .teaserflex__item-text p {
      max-width: 100%; }
    .teaserflex__item-text-container {
      margin-top: 40px; }
    .teaserflex__item-btn {
      margin-top: 40px; }

.video {
  padding: 96px 0; }
  .video__header {
    margin-top: 0; }

.modal__container {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  cursor: pointer;
  width: 100%;
  height: 100%; }

.modal {
  position: absolute;
  width: calc(80% - 60px);
  padding: 30px 30px 40px 30px;
  background: #fff;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  -webkit-transition: top 0.5s;
  transition: top 0.5s; }
  @media (min-width: 768px) and (max-width: 999px) {
    .modal {
      width: calc(60% - 60px); } }
  @media (min-width: 1000px) {
    .modal {
      width: calc(50% - 60px); } }
  @media (min-width: 1440px) {
    .modal {
      width: calc(35% - 60px); } }

.modal__header {
  position: relative;
  height: 60px;
  width: 100%; }

.radial-timer {
  overflow: hidden;
  height: 64px;
  width: 64px;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }
  .radial-timer .radial-timer-half {
    height: 64px;
    width: 32px;
    border-radius: 32px 0 0 32px;
    background: #f06060;
    position: absolute; }
    .radial-timer .radial-timer-half:nth-of-type(2) {
      z-index: 99999999;
      -webkit-transform-origin: center right;
              transform-origin: center right;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .radial-timer .radial-timer-half:before {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      height: 60px;
      width: 30px;
      border-radius: 31px 0 0 31px;
      background: #fff; }
    .radial-timer .radial-timer-half:after {
      content: "";
      position: absolute;
      background: #fff;
      height: 128px;
      width: 96px;
      left: -64px;
      top: -32px;
      -webkit-transform-origin: center right;
              transform-origin: center right; }
  .radial-timer.s-animate {
    -webkit-transform-origin: center right;
            transform-origin: center right; }
    .radial-timer.s-animate .radial-timer-half:nth-of-type(1):after {
      -webkit-animation: rotateLeftMask 6s 1 linear forwards;
              animation: rotateLeftMask 6s 1 linear forwards; }
    .radial-timer.s-animate .radial-timer-half:nth-of-type(2):after {
      -webkit-animation: rotateRightMask 6s 1 linear forwards;
              animation: rotateRightMask 6s 1 linear forwards; }

@-webkit-keyframes rotateLeftMask {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); } }

@keyframes rotateLeftMask {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); } }
@-webkit-keyframes rotateRightMask {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    visibility: hidden; }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    visibility: hidden; } }
@keyframes rotateRightMask {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    visibility: hidden; }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    visibility: hidden; } }
.modal__warn-badge {
  font-family: 'Roboto', serif;
  font-weight: 400;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background-color: #f06060;
  color: #fff;
  border: 2px solid #fff;
  line-height: 56px;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  vertical-align: middle;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 2px;
  position: absolute; }

.modal__content {
  padding-top: 30px; }

.modal__content {
  width: 100%; }
  .modal__content h3 {
    margin: 0 auto 13px;
    padding: 0;
    text-align: center;
    letter-spacing: -1px;
    color: #f06060;
    display: block;
    width: 100%; }
  .modal__content p {
    width: 100%;
    text-align: center;
    font-size: 15px;
    margin: 0 auto;
    display: block; }

.modal__button-container {
  display: block;
  text-align: center; }

.navigation-footer__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.navigation-footer__list-item {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    .navigation-footer__list-item {
      padding-right: 10px;
      width: 25%; } }

.navigation-footer__anchor {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1em;
  display: block; }
  .navigation-footer__anchor:focus, .navigation-footer__anchor:hover {
    color: #cccccc; }
  .navigation-footer__anchor.active, .navigation-footer__anchor:active {
    color: #b3b3b3; }

.navigation-footer__anchor--current:hover, .navigation-footer__anchor--current:focus {
  color: inherit; }
.navigation-footer__anchor--current:active {
  color: inherit; }

.navigation-footer__list-second {
  margin: 12px 0 24px;
  padding: 0;
  list-style: none; }

.navigation-footer__anchor-second {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  padding: 5px 0;
  display: block; }
  .navigation-footer__anchor-second:focus, .navigation-footer__anchor-second:hover {
    color: #cccccc; }
  .navigation-footer__anchor-second.active, .navigation-footer__anchor-second:active {
    color: #b3b3b3; }

.navigation-handheld-toggle {
  position: absolute;
  z-index: 2000;
  right: 13px;
  display: block;
  width: 50px;
  height: 50px;
  padding: 13px 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px; }
  @media (min-width: 768px) {
    .navigation-handheld-toggle {
      display: none;
      visibility: hidden; } }

.navigation-handheld-toggle__bar {
  background: #009a9d;
  margin-top: 6px;
  display: block;
  left: 11px;
  width: 32px;
  height: 4px;
  will-change: transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: .333s;
          transition-duration: .333s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  border-radius: 1px; }
  .navigation-handheld-toggle__bar:first-child {
    margin-top: 0; }
  .navigation-handheld-toggle__bar:nth-child(1) {
    width: 24px;
    margin-left: 8px; }
  .navigation-handheld-toggle__bar:nth-child(3) {
    width: 20px;
    margin-left: 12px; }
  .body--handheld-navigation-visible .navigation-handheld-toggle__bar:nth-child(1) {
    width: 24px;
    -webkit-transform: translate(-3px, 10px) rotate(-45deg);
            transform: translate(-3px, 10px) rotate(-45deg); }
  .body--handheld-navigation-visible .navigation-handheld-toggle__bar:nth-child(2) {
    opacity: 0; }
  .body--handheld-navigation-visible .navigation-handheld-toggle__bar:nth-child(3) {
    width: 24px;
    -webkit-transform: translate(-6px, -10px) rotate(45deg);
            transform: translate(-6px, -10px) rotate(45deg); }

.navigation-handheld {
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  will-change: opacity;
  background: rgba(36, 36, 36, 0.7); }
  .body--handheld-navigation-visible .navigation-handheld {
    opacity: 1; }
  @media (min-width: 768px) {
    .navigation-handheld {
      display: none;
      visibility: hidden; } }

.navigation-handheld__inner {
  top: 0;
  right: 0;
  width: 60vw;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 1px #e5e5e5;
          box-shadow: 0 1px 1px #e5e5e5;
  padding: 96px 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  will-change: transform;
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll; }
  .body--handheld-navigation-visible .navigation-handheld__inner {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    pointer-events: all;
    background: #fff;
    opacity: 1;
    z-index: 20; }
  @media (min-width: 0) and (max-width: 359px) {
    .navigation-handheld__inner {
      width: 80vw; } }
  @media (min-width: 481px) {
    .navigation-handheld__inner {
      width: 50vw; } }

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

@media (min-width: 768px) {
  .header__navigation-main {
    display: block;
    line-height: 70px; }

  .navigation-main__list-item {
    display: inline-block;
    width: 25%;
    max-width: 160px; }

  .navigation-main__list {
    text-align: center; } }
.navigation-handheld .navigation-main__list-item {
  border-top: 1px solid #e5e5e5; }

.navigation-main__anchor {
  color: #242424;
  text-decoration: none;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px; }
  .navigation-main__anchor:focus, .navigation-main__anchor:hover {
    color: #00686a; }
  .navigation-main__anchor.active, .navigation-main__anchor:active {
    color: #003637; }
  @media (min-width: 768px) {
    .navigation-main__anchor {
      padding: 0;
      width: 100%;
      display: inline-block;
      height: 70px;
      line-height: 70px; } }
  .navigation-handheld .navigation-main__anchor {
    display: block;
    text-align: left;
    padding: 16px 16px 10.6666666667px;
    font-size: 22px; }
  .navigation-main__anchor--has-megamenu {
    pointer-events: none; }

.navigation-main__anchor--current {
  pointer-events: none; }

@media (min-width: 768px) {
  .navigation-main__anchor {
    position: relative; }
    .navigation-main__anchor:before, .navigation-main__anchor:after {
      content: '';
      position: absolute;
      bottom: 0;
      width: 0;
      left: 49%;
      height: 3px;
      background: transparent;
      will-change: width;
      -webkit-transition-property: width;
      transition-property: width;
      -webkit-transition-duration: 0.25s;
              transition-duration: 0.25s;
      -webkit-transition-timing-function: ease-out;
              transition-timing-function: ease-out; }
    .navigation-main__anchor:before {
      left: auto;
      right: 49%;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .navigation-main__list-item:hover .navigation-main__anchor:before, .navigation-main__list-item:hover .navigation-main__anchor:after, .navigation-main__anchor--active:before, .navigation-main__anchor--active:after, .navigation-main__anchor--current:before, .navigation-main__anchor--current:after, .navigation-main__anchor:hover:before, .navigation-main__anchor:hover:after, .navigation-main__anchor:focus:before, .navigation-main__anchor:focus:after {
      background: #09aaad;
      width: 51%; }
    .navigation-main__anchor--active:before, .navigation-main__anchor--active:after, .navigation-main__anchor--current:before, .navigation-main__anchor--current:after, .navigation-main__anchor:active:before, .navigation-main__anchor:active:after {
      background: #009a9d;
      width: 51%; } }
@media (min-width: 768px) {
  .navigation-megamenu {
    overflow: hidden;
    position: absolute;
    z-index: 1;
    width: 100vw;
    left: 0;
    border-top: 2px solid #e5e5e5;
    padding-bottom: 2px;
    opacity: 0;
    pointer-events: none; }
    .navigation-main__list-item:hover .navigation-megamenu, .navigation-main__anchor:hover + .navigation-megamenu, .navigation-main__anchor:focus + .navigation-megamenu {
      pointer-events: all;
      opacity: 1; }
      .navigation-main__list-item:hover .navigation-megamenu .navigation-megamenu__inner, .navigation-main__anchor:hover + .navigation-megamenu .navigation-megamenu__inner, .navigation-main__anchor:focus + .navigation-megamenu .navigation-megamenu__inner {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0); }

  .navigation-megamenu__inner {
    position: relative;
    z-index: -1;
    background: #fff;
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 0 0;
            box-shadow: rgba(0, 0, 0, 0.15) 0 2px 0 0;
    will-change: opacity, transform;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    opacity: 0;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px); } }
.navigation-meta__list {
  display: inline;
  margin: 0;
  padding: 0; }
  .navigation-meta__list * {
    display: inline; }

.navigation-meta__list-item + .navigation-meta__list-item {
  border-left: 1px solid #c8c8c8;
  color: #c8c8c8; }

.navigation-meta__anchor {
  color: #fff;
  text-decoration: none;
  text-decoration: underline;
  padding: 0 5px;
  color: #c8c8c8; }
  .navigation-meta__anchor:focus, .navigation-meta__anchor:hover {
    color: #cccccc; }
  .navigation-meta__anchor.active, .navigation-meta__anchor:active {
    color: #b3b3b3; }

.navigation-meta__anchor--current:hover, .navigation-meta__anchor--current:focus {
  color: inherit; }
.navigation-meta__anchor--current:active {
  color: inherit; }

.region-switch {
  font-size: 13px;
  color: #c8c8c8; }
  @media (min-width: 1000px) {
    .region-switch {
      float: right; } }

.footer__region-switch__anchor {
  color: #fff;
  text-decoration: none;
  color: #c8c8c8;
  text-decoration: underline;
  padding: 0 5px; }
  .footer__region-switch__anchor:focus, .footer__region-switch__anchor:hover {
    color: #cccccc; }
  .footer__region-switch__anchor.active, .footer__region-switch__anchor:active {
    color: #b3b3b3; }

.navigation-sub {
  height: 40px;
  width: 100%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2px 0 0;
          box-shadow: rgba(0, 0, 0, 0.15) 0 2px 0 0; }
  @media (min-width: 768px) {
    .navigation-sub {
      height: 50px; } }

.navigation-sub--fixed {
  top: 50px;
  position: fixed;
  z-index: 199;
  max-width: 100%; }
  @media (min-width: 768px) {
    .navigation-sub--fixed {
      top: 70px; } }

.navigation-sub__inner {
  padding: 0; }

.navigation-sub__col-left {
  width: 48px;
  float: left; }
  @media (min-width: 768px) {
    .navigation-sub__col-left {
      width: 76px; } }

.navigation-sub__col-center {
  float: left; }

select.navigation-sub__select {
  width: 200px;
  border: 2px solid #fff;
  color: #fff;
  background-image: url("/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_keyboard_arrow_down_white_24px.svg");
  background-color: transparent;
  line-height: 14px;
  padding: 4px;
  margin: 7px 0 0 0;
  font-size: 14px;
  height: 14px;
  letter-spacing: 0; }
  select.navigation-sub__select:focus {
    outline: none; }
  @media (min-width: 768px) {
    select.navigation-sub__select {
      height: 18px;
      line-height: 17px;
      font-size: 17px;
      padding: 6px;
      margin: 8px 0 0 0; } }

.navigation-sub__col-right {
  width: 40px;
  float: right;
  text-align: right; }
  @media (min-width: 768px) {
    .navigation-sub__col-right {
      width: 160px; } }

.navigation-sub__button-back {
  display: inline-block;
  padding-top: 3px;
  width: 48px;
  height: 40px;
  text-align: center; }
  .navigation-sub__button-back:hover {
    background-color: rgba(255, 255, 255, 0.05); }
  .navigation-sub__button-back:active {
    background-color: rgba(255, 255, 255, 0.1); }
  @media (min-width: 768px) {
    .navigation-sub__button-back {
      padding-top: 2px;
      height: 48px; } }

.navigation-sub__button-back__icon {
  fill: #fff;
  width: 36px;
  height: 36px; }
  @media (min-width: 768px) {
    .navigation-sub__button-back__icon {
      width: 48px;
      height: 48px; } }

.navigation-sub__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

@media (min-width: 768px) {
  .navigation-sub__list-item {
    display: inline-block;
    margin-right: 48px; }

  .navigation-sub__list-item--big {
    font-size: 120%; }

  .navigation-sub__list {
    text-align: left; } }
.navigation-sub__anchor {
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  font-weight: 400;
  line-height: 50px;
  display: inline-block; }
  .navigation-sub__anchor:focus, .navigation-sub__anchor:hover {
    color: #cccccc; }
  .navigation-sub__anchor.active, .navigation-sub__anchor:active {
    color: #b3b3b3; }
  .navigation-sub__anchor:focus, .navigation-sub__anchor:hover {
    color: rgba(255, 255, 255, 0.8); }
  .navigation-sub__anchor.active, .navigation-sub__anchor:active {
    color: rgba(255, 255, 255, 0.6); }

.navigation-sub__button-dealer {
  width: 40px;
  height: 40px;
  background-color: #fff;
  display: inline-block;
  text-indent: -999em; }
  .navigation-sub__button-dealer:hover {
    background-color: #f7f7f7; }
  .navigation-sub__button-dealer:active {
    background-color: #f0f0f0; }
  @media (min-width: 768px) {
    .navigation-sub__button-dealer {
      text-indent: 0;
      color: #242424;
      text-decoration: none;
      line-height: 50px;
      text-align: center;
      width: 160px;
      height: 50px; } }

.navigation-sub__button-dealer-label {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  display: none;
  font-weight: 400; }
  @media (min-width: 768px) {
    .navigation-sub__button-dealer-label {
      display: block; } }

.navigation-sub__button-dealer-icon {
  width: 40px;
  height: 40px;
  display: block;
  background: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_location_on_jade_24px.svg) center no-repeat;
  background-size: 24px; }
  @media (min-width: 768px) {
    .navigation-sub__button-dealer-icon {
      display: none; } }

@media (min-width: 768px) {
  .navigation-sub__anchor {
    position: relative; }
    .navigation-sub__anchor:before, .navigation-sub__anchor:after {
      content: '';
      position: absolute;
      bottom: 0;
      width: 0;
      left: 49%;
      height: 3px;
      background: transparent;
      will-change: width;
      -webkit-transition-property: width;
      transition-property: width;
      -webkit-transition-duration: 0.25s;
              transition-duration: 0.25s;
      -webkit-transition-timing-function: ease-out;
              transition-timing-function: ease-out; }
    .navigation-sub__anchor:before {
      left: auto;
      right: 49%;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .navigation-sub__list-item:hover .navigation-sub__anchor:before, .navigation-sub__list-item:hover .navigation-sub__anchor:after, .navigation-sub__anchor--active:before, .navigation-sub__anchor--active:after, .navigation-sub__anchor--current:before, .navigation-sub__anchor--current:after, .navigation-sub__anchor:hover:before, .navigation-sub__anchor:hover:after, .navigation-sub__anchor:focus:before, .navigation-sub__anchor:focus:after {
      background: #fff;
      width: 51%; }
    .navigation-sub__anchor--active:before, .navigation-sub__anchor--active:after, .navigation-sub__anchor--current:before, .navigation-sub__anchor--current:after, .navigation-sub__anchor:active:before, .navigation-sub__anchor:active:after {
      background: #fff;
      width: 51%; } }
.feature-frigerator {
  padding: 2px 0; }
  @media (min-width: 1280px) {
    .feature-frigerator.container--section-fullimage {
      max-height: 100%; } }

.feature-frigerator__inner {
  width: 100%; }
  @media (min-width: 1000px) {
    .feature-frigerator__inner {
      max-width: 1440px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

@media (min-width: 1000px) {
  .feature-frigerator--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; } }

@media (min-width: 1000px) {
  .feature-frigerator--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

@media (min-width: 1000px) {
  .feature-frigerator--center {
    display: block; } }

@media (min-width: 1000px) {
  .feature-frigerator__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }

@media (min-width: 1000px) {
  .feature-frigerator__col-image {
    width: 65%; } }
@media (min-width: 1280px) {
  .feature-frigerator__col-image {
    width: 73%; } }
@media (min-width: 1440px) {
  .feature-frigerator__col-image {
    width: 76%; } }

.feature-frigerator__image {
  float: left; }

.feature-frigerator__col-text {
  background-size: cover;
  background-position: center top; }
  @media (min-width: 1000px) {
    .feature-frigerator__col-text {
      width: 35%; } }
  @media (min-width: 1280px) {
    .feature-frigerator__col-text {
      width: 27%; } }
  @media (min-width: 1440px) {
    .feature-frigerator__col-text {
      width: 24%; } }

@media (min-width: 1000px) {
  .feature-frigerator--center .feature-frigerator__col-image,
  .feature-frigerator--center .feature-frigerator__col-text {
    display: block;
    width: 100%;
    text-align: center; } }

.feature-frigerator__col-text-inner {
  padding: 32px; }
  @media (min-width: 1440px) {
    .feature-frigerator__col-text-inner {
      padding: 64px 32px; } }

.feature-frigerator--center .feature-frigerator__col-text .feature-frigerator__col-text-inner {
  padding: 32px; }
  @media (min-width: 1440px) {
    .feature-frigerator--center .feature-frigerator__col-text .feature-frigerator__col-text-inner {
      padding: 64px 32px 96px 32px; } }

.feature-frigerator__col-text-inner p {
  color: #fff;
  margin-left: auto;
  margin-right: auto; }

.feature-frigerator__headline {
  color: #fff;
  margin: auto; }

.feature-television {
  max-height: 100%;
  margin: 2px auto;
  padding: 1px 0;
  overflow: hidden;
  background-position: center;
  background-size: 0; }
  @media (min-width: 768px) {
    .feature-television {
      height: 660px;
      background-size: cover; } }
  @media (min-width: 1000px) {
    .feature-television {
      height: 660px; } }
  @media (min-width: 1280px) {
    .feature-television {
      height: 750px; }
      .feature-television.container--section-fullimage {
        max-height: 100%; } }
  @media (min-width: 1440px) {
    .feature-television {
      height: 900px; } }

.feature-television__mobile-img {
  display: block;
  width: 100%; }
  @media (min-width: 768px) {
    .feature-television__mobile-img {
      display: none; } }

.feature-television__inner {
  position: relative;
  height: 100%; }

.feature-television__text {
  display: block;
  position: relative;
  height: 100%;
  width: 100%; }
  @media (min-width: 768px) {
    .feature-television__text {
      display: table;
      position: absolute;
      width: 50%;
      z-index: 150; } }
  @media (min-width: 1280px) {
    .feature-television__text {
      width: 40%; } }

.feature-television__text-inner {
  padding: 32px 16px;
  height: 100%; }
  @media (min-width: 768px) {
    .feature-television__text-inner {
      display: table-cell; } }
  @media (min-width: 1000px) {
    .feature-television__text-inner {
      padding: 32px 0; } }
  @media (min-width: 1280px) {
    .feature-television__text-inner {
      padding: 48px 0; } }
  @media (min-width: 1440px) {
    .feature-television__text-inner {
      padding: 64px 0; } }

.feature-television__text-position--left-top .feature-television__text-inner {
  vertical-align: top; }

.feature-television__text-position--left-center {
  left: 0; }
  @media (min-width: 768px) {
    .feature-television__text-position--left-center {
      width: 45%; } }
  .feature-television__text-position--left-center .feature-television__text-inner {
    vertical-align: middle; }

.feature-television__text-position--left-bottom .feature-television__text-inner {
  vertical-align: bottom; }

.feature-television__text-position--center-top {
  width: 100%; }
  .feature-television__text-position--center-top .feature-television__text-inner {
    vertical-align: top; }
    @media (min-width: 768px) {
      .feature-television__text-position--center-top .feature-television__text-inner {
        width: 66%;
        margin: auto;
        text-align: center; } }

.feature-television__text-position--center-center {
  width: 100%; }
  .feature-television__text-position--center-center .feature-television__text-inner {
    vertical-align: middle; }
    @media (min-width: 768px) {
      .feature-television__text-position--center-center .feature-television__text-inner {
        margin: auto;
        text-align: center;
        width: 66%; } }
    @media (min-width: 1440px) {
      .feature-television__text-position--center-center .feature-television__text-inner {
        width: 75%; } }

.feature-television__text-position--center-bottom {
  width: 100%; }
  .feature-television__text-position--center-bottom .feature-television__text-inner {
    vertical-align: bottom; }
    @media (min-width: 768px) {
      .feature-television__text-position--center-bottom .feature-television__text-inner {
        margin: auto;
        text-align: center;
        width: 66%; } }
    @media (min-width: 1440px) {
      .feature-television__text-position--center-bottom .feature-television__text-inner {
        width: 75%; } }

.feature-television__text-position--right-top {
  right: 0; }
  .feature-television__text-position--right-top .feature-television__text-inner {
    vertical-align: top; }

.feature-television__text-position--right-center {
  right: 0;
  width: 100%; }
  @media (min-width: 768px) {
    .feature-television__text-position--right-center {
      width: 45%; } }
  .feature-television__text-position--right-center .feature-television__text-inner {
    vertical-align: middle; }

.feature-television__text-position--right-bottom {
  right: 0; }
  .feature-television__text-position--right-bottom .feature-television__text-inner {
    vertical-align: bottom; }

.feature-television__headline {
  margin: 0 auto 8px auto;
  max-width: 900px; }

.feature-television__text-inner p {
  margin: 0 auto 8px auto;
  max-width: 900px; }

.feature-television__text-color--white {
  background-color: rgba(0, 0, 0, 0.8); }
  @media (min-width: 768px) {
    .feature-television__text-color--white {
      background-color: transparent; } }
  .feature-television__text-color--white .feature-television__headline {
    color: #fff; }
  .feature-television__text-color--white p {
    color: #fff; }

.feature-television__text-color--mine-shaft {
  background-color: rgba(255, 255, 255, 0.8); }
  @media (min-width: 768px) {
    .feature-television__text-color--mine-shaft {
      background-color: transparent; } }
  .feature-television__text-color--mine-shaft .feature-television__headline {
    color: #242424; }
  .feature-television__text-color--mine-shaft .feature-television__text-inner p {
    color: #242424; }

.feature-television__image-color--white {
  background-color: rgba(0, 0, 0, 0.8); }
  @media (min-width: 768px) {
    .feature-television__image-color--white {
      background-color: transparent; } }

.feature-television__image-color--mine-shaft {
  background-color: rgba(255, 255, 255, 0.8); }
  @media (min-width: 768px) {
    .feature-television__image-color--mine-shaft {
      background-color: transparent; } }

.feature-television__image {
  display: block;
  position: relative;
  width: 100%;
  height: 100%; }
  @media (min-width: 768px) {
    .feature-television__image {
      display: table;
      position: absolute;
      z-index: 149;
      width: 50%;
      background-color: transparent; } }

.feature-television__image-inner {
  padding: 16px;
  height: 100%;
  text-align: center; }
  @media (min-width: 768px) {
    .feature-television__image-inner {
      vertical-align: middle;
      display: table-cell; } }

.feature-television__image-position--left {
  left: 0; }

.feature-television__image-position--right {
  right: 0; }

.feature-television__image-position--center {
  position: relative;
  margin: auto;
  width: 100%; }
  @media (min-width: 768px) {
    .feature-television__image-position--center {
      width: 75%; } }

.feature-television__image-position--center-bottom {
  position: relative;
  margin: auto;
  width: 100%; }
  @media (min-width: 768px) {
    .feature-television__image-position--center-bottom {
      width: 75%; } }
  @media (min-width: 768px) {
    .feature-television__image-position--center-bottom .feature-television__image-inner {
      vertical-align: bottom; } }

.feature-television__image-img {
  width: auto;
  max-width: 100%;
  display: inline-block; }
  @media (min-width: 768px) {
    .feature-television__image-img {
      width: 75%; } }

.feature-television__icon {
  display: none; }
  @media (min-width: 768px) {
    .feature-television__icon {
      position: absolute;
      display: block;
      z-index: 150; } }

.feature-television__icon-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.feature-television__icon-position--top {
  left: 0;
  top: 64px; }

.feature-television__icon-position--bottom {
  left: 0;
  bottom: 64px; }

.feature-television__icon-img {
  width: auto;
  margin-right: 48px; }
  @media (min-width: 768px) {
    .feature-television__icon-img {
      height: 50px; } }
  @media (min-width: 1280px) {
    .feature-television__icon-img {
      height: 75px; } }

.feature-washingmachine {
  padding: 2px 0; }
  @media (min-width: 1280px) {
    .feature-washingmachine.container--section-fullimage {
      max-height: 100%; } }

.feature-washingmachine__inner {
  padding: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover; }
  @media (min-width: 768px) {
    .feature-washingmachine__inner {
      background-size: auto 432px; } }
  @media (min-width: 1000px) {
    .feature-washingmachine__inner {
      max-width: 1440px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0 20px; } }
  @media (min-width: 1000px) {
    .feature-washingmachine__inner {
      height: 600px; } }
  @media (min-width: 1280px) {
    .feature-washingmachine__inner {
      height: 700px; } }
  @media (min-width: 1440px) {
    .feature-washingmachine__inner {
      height: 810px; } }

@media (min-width: 768px) {
  .feature-washingmachine--left {
    background-position: left bottom; } }
@media (min-width: 1000px) {
  .feature-washingmachine--left {
    background-size: cover;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; } }

@media (min-width: 768px) {
  .feature-washingmachine--right {
    background-position: right bottom; } }
@media (min-width: 1000px) {
  .feature-washingmachine--right {
    background-size: cover;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

@media (min-width: 768px) {
  .feature-washingmachine--center {
    background-position: center bottom; } }
@media (min-width: 1000px) {
  .feature-washingmachine--center {
    background-size: cover;
    display: block; } }

@media (min-width: 768px) {
  .feature-washingmachine--center-center {
    background-position: center bottom; } }
@media (min-width: 1000px) {
  .feature-washingmachine--center-center {
    background-size: cover;
    display: block; } }

@media (min-width: 1000px) {
  .feature-washingmachine__col {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; } }

@media (min-width: 1000px) {
  .feature-washingmachine__col-image {
    width: 650px; } }
@media (min-width: 1280px) {
  .feature-washingmachine__col-image {
    width: 930px; } }
@media (min-width: 1440px) {
  .feature-washingmachine__col-image {
    width: 60%; } }

.feature-washingmachine__col-image-inner {
  height: 0; }
  @media (min-width: 768px) {
    .feature-washingmachine__col-image-inner {
      height: 432px; } }
  @media (min-width: 1000px) {
    .feature-washingmachine__col-image-inner {
      height: 0; } }

.feature-washingmachine__col-text {
  background-color: rgba(255, 255, 255, 0.7); }
  @media (min-width: 1000px) {
    .feature-washingmachine__col-text {
      width: 37%; } }
  @media (min-width: 1440px) {
    .feature-washingmachine__col-text {
      background-color: transparent; } }

.feature-washingmachine__col-text-inner {
  padding: 48px 32px; }

.feature-washingmachine__headline {
  margin: 0; }

@media (min-width: 1000px) {
  .feature-washingmachine--center .feature-washingmachine__col-text {
    width: 100%; } }
.feature-washingmachine--center .feature-washingmachine__col-text-inner {
  margin: auto;
  text-align: center; }

.feature-washingmachine--center-center {
  display: block;
  position: relative; }
  @media (min-width: 1000px) {
    .feature-washingmachine--center-center .feature-washingmachine__col-text {
      display: table;
      position: relative;
      width: 100%;
      height: 100%; } }
  @media (min-width: 1000px) {
    .feature-washingmachine--center-center .feature-washingmachine__col-text-inner {
      display: table-cell;
      text-align: center;
      vertical-align: middle; } }
  @media (min-width: 1000px) {
    .feature-washingmachine--center-center .feature-washingmachine__headline {
      margin: auto;
      max-width: 400px; } }
  @media (min-width: 1000px) {
    .feature-washingmachine--center-center .feature-washingmachine__col-text-inner p {
      margin: 0 auto 120px auto;
      max-width: 400px; } }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0; }

.feature-list-item {
  position: relative;
  text-align: left;
  padding: 4px 0 4px 32px;
  margin: 0;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300; }
  .feature-list-item:before {
    content: "";
    width: 24px;
    height: 24px;
    line-height: 32px;
    margin: -1px 7px 0 0;
    -webkit-mask-size: 24px;
            mask-size: 24px;
    position: absolute;
    left: 0;
    background: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_black_24px.svg) center no-repeat; }
  @media (min-width: 768px) {
    .feature-list-item {
      font-size: 17px; } }
  .feature-list--small .feature-list-item {
    padding: 3px 0 3px 32px;
    font-size: 16px; }
    .feature-list--small .feature-list-item:before {
      width: 24px;
      height: 24px;
      line-height: 32px;
      margin: -1px 7px 0 0;
      -webkit-mask-size: 24px;
              mask-size: 24px; }

.feature-list__term {
  color: #242424;
  text-decoration: none;
  width: 60%;
  height: 36px;
  display: inline-block;
  margin: 0;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 5px; }

.feature-list__description {
  color: #242424;
  text-decoration: none;
  width: 40%;
  height: 36px;
  float: right;
  margin: 0;
  font-weight: 400; }

.feature-list__icon {
  width: 100px;
  height: 32px;
  background-color: #e5e5e5; }

.filter-panel-handheld-toggle {
  display: none;
  visibility: hidden;
  color: #000; }
  @media (min-width: 0) and (max-width: 767px) {
    .filter-panel-handheld-toggle {
      display: inherit;
      visibility: visible;
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 2000;
      width: 200px;
      -webkit-box-shadow: inset 0 0 0 50px #fff;
              box-shadow: inset 0 0 0 50px #fff; } }

.filter-panel-handheld-toggle__label--cta-open {
  color: #000; }
  .body--handheld-filter-panel-visible .filter-panel-handheld-toggle__label--cta-open {
    display: none; }

.filter-panel-handheld-toggle__label--cta-close {
  display: none;
  color: #000; }
  .body--handheld-filter-panel-visible .filter-panel-handheld-toggle__label--cta-close {
    display: inherit; }

@media (min-width: 0) and (max-width: 767px) {
  .filter-panel {
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 180;
    opacity: 0;
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    will-change: opacity;
    background: rgba(36, 36, 36, 0.7); }
    .body--handheld-filter-panel-visible .filter-panel {
      opacity: 1; }

  .filter-panel__inner {
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    max-width: 360px;
    height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    -webkit-box-shadow: 0 1px 1px #e5e5e5;
            box-shadow: 0 1px 1px #e5e5e5;
    padding: 96px 20px;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    will-change: transform;
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll; }
    .body--handheld-filter-panel-visible .filter-panel__inner {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      pointer-events: all;
      background: #fff;
      opacity: 1;
      z-index: 20; }

  .filter-form__search {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 2000;
    width: 260px;
    -webkit-box-shadow: inset 0 0 0 50px #fff;
            box-shadow: inset 0 0 0 50px #fff;
    pointer-events: all; } }
.grouped-variants {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 32px; }
  .product-list-item__grouped-variants .grouped-variants {
    margin-bottom: 16px; }

.grouped-variants__item {
  display: inline-block;
  margin-right: 10px; }
  .product-list-item__grouped-variants .grouped-variants__item {
    margin: 0 5px; }

.grouped-variants__anchor {
  font-family: 'Roboto', serif;
  font-weight: 400;
  color: #242424;
  text-decoration: none;
  display: inline-block;
  width: 48px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  text-align: center; }
  .grouped-variants__anchor:focus, .grouped-variants__anchor:hover {
    color: #00686a; }
  .grouped-variants__anchor.active, .grouped-variants__anchor:active {
    color: #003637; }
  @media (min-width: 768px) {
    .grouped-variants__anchor {
      width: 64px;
      font-size: 24px;
      height: 50px;
      line-height: 50px; }
      .product-list-item__grouped-variants .grouped-variants__anchor {
        width: 42px;
        height: 36px;
        font-size: 18px;
        line-height: 36px; } }

.grouped-variants__anchor--active {
  pointer-events: none;
  position: relative; }
  .grouped-variants__anchor--active:before, .grouped-variants__anchor--active:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 3px;
    background: #09aaad; }

@media (min-width: 768px) {
  .grouped-variants__anchor {
    position: relative; }
    .grouped-variants__anchor:before, .grouped-variants__anchor:after {
      content: '';
      position: absolute;
      bottom: 0;
      width: 0;
      left: 49%;
      height: 3px;
      background: transparent;
      will-change: width;
      -webkit-transition-property: width;
      transition-property: width;
      -webkit-transition-duration: 0.25s;
              transition-duration: 0.25s;
      -webkit-transition-timing-function: ease-out;
              transition-timing-function: ease-out; }
    .grouped-variants__anchor:before {
      left: auto;
      right: 49%;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .grouped-variants__item:hover .grouped-variants__anchor:before, .grouped-variants__item:hover .grouped-variants__anchor:after, .grouped-variants__anchor--active:before, .grouped-variants__anchor--active:after, .grouped-variants__anchor--current:before, .grouped-variants__anchor--current:after, .grouped-variants__anchor:hover:before, .grouped-variants__anchor:hover:after, .grouped-variants__anchor:focus:before, .grouped-variants__anchor:focus:after {
      background: #09aaad;
      width: 51%; }
    .grouped-variants__anchor--active:before, .grouped-variants__anchor--active:after, .grouped-variants__anchor--current:before, .grouped-variants__anchor--current:after, .grouped-variants__anchor:active:before, .grouped-variants__anchor:active:after {
      background: #009a9d;
      width: 51%; } }
.product-single--fridgerator .product-specs__list-item__icon-check:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_frigerator_24px.svg); }
.product-single--fridgerator .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_frigerator_24px.svg); }
.product-single--fridgerator .product-info__product-model {
  color: #88b14b; }
.product-single--fridgerator .product-features__headline--altcolor {
  color: #88b14b; }

.navigation-sub--fridgerator {
  background-color: #88b14b; }

.product-list--fridgerator .product-list-item__name {
  color: #88b14b; }
.product-list--fridgerator .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_frigerator_24px.svg); }

.product-single--lasertelevision .product-specs__list-item__icon-check:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_laser_television_24px.svg); }
.product-single--lasertelevision .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_laser_television_24px.svg); }
.product-single--lasertelevision .product-info__product-model {
  color: #757575; }
.product-single--lasertelevision .product-features__headline--altcolor {
  color: #757575; }

.navigation-sub--lasertelevision {
  background-color: #757575; }

.product-list--lasertelevision .product-list-item__name {
  color: #757575; }
.product-list--lasertelevision .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_laser_television_24px.svg); }

.product-single--television .product-specs__list-item__icon-check:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_television_24px.svg); }
.product-single--television .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_television_24px.svg); }
.product-single--television .product-info__product-model {
  color: #48a8c0; }
.product-single--television .product-features__headline--altcolor {
  color: #48a8c0; }

.navigation-sub--television {
  background-color: #48a8c0; }

.product-list--television .product-list-item__name {
  color: #48a8c0; }
.product-list--television .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_television_24px.svg); }

.product-single--washingmachine .product-specs__list-item__icon-check:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_washingmachine_24px.svg); }
.product-single--washingmachine .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_washingmachine_24px.svg); }
.product-single--washingmachine .product-info__product-model {
  color: #90d8d8; }
.product-single--washingmachine .product-features__headline--altcolor {
  color: #90d8d8; }

.navigation-sub--washingmachine {
  background-color: #90d8d8; }

.product-list--washingmachine .product-list-item__name {
  color: #90d8d8; }
.product-list--washingmachine .feature-list-item:before {
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_washingmachine_24px.svg); }

.energy-class-icon {
  position: relative;
  display: inline-block;
  margin-right: 15px; }

.energy-class-icon__body {
  display: inline-block;
  width: 38px;
  height: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px 0 0 5px;
  padding-left: 10px;
  text-align: left;
  line-height: 32px;
  vertical-align: middle; }
  .energy-class-icon__body:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 3px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent; }

.energy-class-icon--aaaa .energy-class-icon__body {
  background-color: #009136; }
  .energy-class-icon--aaaa .energy-class-icon__body:after {
    border-left-color: #009136; }
.energy-class-icon--aaa .energy-class-icon__body {
  background-color: #58ab27; }
  .energy-class-icon--aaa .energy-class-icon__body:after {
    border-left-color: #58ab27; }
.energy-class-icon--aa .energy-class-icon__body {
  background-color: #c9d100; }
  .energy-class-icon--aa .energy-class-icon__body:after {
    border-left-color: #c9d100; }
.energy-class-icon--a .energy-class-icon__body {
  background-color: #feed01; }
  .energy-class-icon--a .energy-class-icon__body:after {
    border-left-color: #feed01; }
.energy-class-icon--b .energy-class-icon__body {
  background-color: #fbbb01; }
  .energy-class-icon--b .energy-class-icon__body:after {
    border-left-color: #fbbb01; }
.energy-class-icon--c .energy-class-icon__body {
  background-color: #eb690b; }
  .energy-class-icon--c .energy-class-icon__body:after {
    border-left-color: #eb690b; }
.energy-class-icon--d .energy-class-icon__body {
  background-color: #e3001b; }
  .energy-class-icon--d .energy-class-icon__body:after {
    border-left-color: #e3001b; }

#kss-node .energy-class-info {
  width: 250px; }

.energy-class-info__icon.energy-class-icon {
  float: right; }

.energy-class-info__label {
  display: inline-block;
  font-size: 16px;
  line-height: 38px;
  height: 38px;
  font-weight: 300; }

.energy-class-info__anchor {
  color: #242424;
  text-decoration: none;
  text-decoration: underline; }
  .energy-class-info__anchor:focus, .energy-class-info__anchor:hover {
    color: #00686a; }
  .energy-class-info__anchor.active, .energy-class-info__anchor:active {
    color: #003637; }

.product-list__filter-reset {
  margin-bottom: 12px; }

.filter-reset__anchor {
  color: #242424;
  text-decoration: none;
  text-decoration: underline; }
  .filter-reset__anchor:focus, .filter-reset__anchor:hover {
    color: #00686a; }
  .filter-reset__anchor.active, .filter-reset__anchor:active {
    color: #003637; }

.filter-form {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  font-weight: 400; }

.filter-form__range-slider-wrapper {
  margin: 16px 0; }

.filter-form__range-slider {
  padding-right: 30px;
  padding-left: 15px; }

.filter-form__collapse-anchor {
  color: #242424;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 2px solid #e5e5e5;
  display: block;
  line-height: 44px; }
  .filter-form__collapse-anchor:focus, .filter-form__collapse-anchor:hover {
    color: #00686a; }
  .filter-form__collapse-anchor.active, .filter-form__collapse-anchor:active {
    color: #003637; }
  .filter-form__collapse-anchor:after {
    content: "";
    width: 24px;
    height: 24px;
    margin-top: 10px;
    margin-right: 10px;
    display: inline-block;
    float: right;
    background: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_control_point_boulder_24px.svg) center no-repeat;
    will-change: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out; }
  .filter-form__collapse-anchor:hover:after {
    background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_control_point_jade_24px.svg); }
  .filter-form__collapse-anchor.filter-form__collapse-anchor--active:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }

.filter-form__fieldset {
  padding: 0;
  border: none;
  will-change: max-height;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  max-height: 0;
  overflow: hidden; }
  .filter-form__collapse-anchor--active + .filter-form__fieldset {
    max-height: 200px; }

.filter-form__legend {
  display: none; }

@media (min-width: 768px) {
  .filter-form__search {
    display: none; } }

.body--grouped-search .grouped-item {
  display: none; }
.body--grouped-search .grouped-item--visible {
  display: block; }

.container--product-image-header {
  height: 372px;
  overflow: hidden; }

.product-list-item {
  text-align: center;
  -webkit-box-shadow: inset 0 0 0 2px #e5e5e5;
          box-shadow: inset 0 0 0 2px #e5e5e5;
  margin-right: -2px;
  margin-bottom: -2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item {
      -webkit-box-shadow: none;
              box-shadow: none;
      border-top: 2px solid #e5e5e5;
      margin: 0;
      padding: 0;
      width: 100%; } }
  @media (min-width: 481px) {
    .product-list-item {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%; } }
  @media (min-width: 1000px) {
    .product-list-item {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 33.3333%;
              flex: 0 1 33.3333%; } }
  .product-list-item:hover {
    background-color: #fafafa; }
  .product-list-item:active {
    background-color: #f7f7f7; }

.product-list-item__anchor {
  color: #242424;
  text-decoration: none;
  display: block;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.product-list-item__inner {
  padding: 16px 21.3333333333px; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__inner {
      padding: 16px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  @media (min-width: 1280px) {
    .product-list-item__inner {
      padding: 16px 21.3333333333px; } }

.product-list-item__type {
  color: #242424;
  text-decoration: none;
  font-size: 22px; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__type {
      font-size: 16px;
      line-height: 21.3333333333px; } }

.product-list-item__name {
  color: #242424;
  text-decoration: none;
  font-size: 18px; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__name {
      font-size: 14px;
      line-height: 21.3333333333px; } }

.product-list-item__price {
  color: #242424;
  text-decoration: none;
  margin-bottom: 16px; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__price {
      font-size: 12px;
      line-height: 21.3333333333px;
      margin-bottom: 8px;
      margin-bottom: 0; } }

@media (min-width: 0) and (max-width: 480px) {
  .product-list-item__top {
    width: 60%;
    padding-left: 10px;
    text-align: left; } }

.product-list-item__new-badge {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.5px;
  position: absolute;
  top: -10px;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #f06060;
  color: #fff;
  border: 2px solid #fff;
  line-height: 50px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase; }

.product-list-item__image {
  font-size: 0;
  float: left;
  width: 100%;
  position: relative; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__image {
      width: 40%; }
      .product-list-item__image img {
        margin: 0 auto;
        font-size: 0;
        float: left; } }
  @media (min-width: 1280px) {
    .product-list-item__image img {
      max-width: 320px; } }

.product-list-item__energy-class-info {
  max-width: 200px;
  margin: 16px auto; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__energy-class-info {
      display: none; } }

.product-list-item__feature-list {
  margin: 0; }
  @media (min-width: 0) and (max-width: 480px) {
    .product-list-item__feature-list {
      display: none; } }

.product-list-meta {
  will-change: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.333s;
          transition-duration: 0.333s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }
  .product-list--loading .product-list-meta {
    opacity: 0.3;
    pointer-events: none; }

.product-list-meta__num-found {
  white-space: nowrap;
  color: white;
  line-height: 40px; }
  @media (min-width: 768px) {
    .product-list-meta__num-found {
      line-height: 50px; } }

.num-found__label {
  padding-left: 16px; }
  @media (min-width: 768px) {
    .num-found__label {
      padding-left: 0; } }

.product-list {
  padding-top: 40px; }
  @media (min-width: 768px) {
    .product-list {
      padding-top: 50px; } }

.container__inner.product-list__inner {
  padding: 16px 16px 32px 16px;
  min-height: 80vh; }
  @media (min-width: 768px) {
    .container__inner.product-list__inner {
      padding: 64px 0 96px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 481px) and (max-width: 999px) {
    .container__inner.product-list__inner {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; } }
  @media (min-width: 1000px) and (max-width: 1279px) {
    .container__inner.product-list__inner {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px; } }

@media (min-width: 768px) {
  .product-list__col-filter {
    width: 240px; } }
@media (min-width: 1440px) {
  .product-list__col-filter {
    width: 240px; } }

.product-list__col-products {
  width: 100%; }
  @media (min-width: 768px) {
    .product-list__col-products {
      width: calc(100% - 240px); } }
  @media (min-width: 1280px) {
    .product-list__col-products {
      width: 1040px; } }
  @media (min-width: 1440px) {
    .product-list__col-products {
      width: 1200px; } }

.filter-form {
  will-change: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.333s;
          transition-duration: 0.333s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }
  .product-list--loading .filter-form {
    opacity: 0.3;
    pointer-events: none; }

.filter-results {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  will-change: opacity;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.333s;
          transition-duration: 0.333s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }
  .product-list--loading .filter-results {
    opacity: 0.3;
    pointer-events: none; }

.loading-indicator {
  opacity: 0;
  -webkit-transform: scale(1.3333);
          transform: scale(1.3333);
  will-change: opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.16667s;
          transition-duration: 0.16667s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out; }
  .product-list--loading .loading-indicator {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }

.container--product-downloads {
  padding-top: 64px;
  padding-bottom: 64px;
  background-image: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/Development/fancy-grey-bg.jpg); }

.product-downloads__headline {
  max-width: 100%;
  width: 100%;
  margin: 32px 0; }

.product-downloads__list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 300px;
  text-align: left; }

.product-downloads__list-item {
  margin-bottom: 16px; }

.product-downloads__anchor {
  color: #242424;
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  display: inline-block; }
  .product-downloads__anchor:focus, .product-downloads__anchor:hover {
    color: #00686a; }
  .product-downloads__anchor.active, .product-downloads__anchor:active {
    color: #003637; }
  .product-downloads__anchor:before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    float: left;
    margin-right: 8px;
    background: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_file_download_jade_24px.svg) center no-repeat; }

.container--product-features {
  padding: 16px 0; }

.container--product-features__inner {
  padding: 16px; }

.product-features__headline {
  max-width: 900px;
  width: 100%;
  margin: 32px auto; }

.product-features__description p {
  max-width: 900px;
  width: 100%;
  margin: 32px auto; }

.product-features__feature-wrap {
  margin-top: 48px;
  margin-bottom: 64px;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap; }

.product-features__item {
  width: 110px;
  margin: 16px; }

.product-features__feature-image {
  width: 110px; }

.product-features__caption {
  font-size: 12px;
  line-height: 1.4em; }

.container--product-info {
  padding: 32px 16px; }
  @media (min-width: 768px) {
    .container--product-info {
      padding: 64px 0 0 0; } }

.container--product-info__inner {
  padding-left: 0;
  padding-right: 0;
  position: relative; }
  @media (min-width: 1000px) {
    .container--product-info__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.product-info__col-left {
  position: relative;
  margin-bottom: 48px; }
  @media (min-width: 1000px) {
    .product-info__col-left {
      width: 55%;
      padding-right: 96px; } }
  @media (min-width: 1440px) {
    .product-info__col-left {
      width: 66%; } }

@media (min-width: 1000px) {
  .product-info__col-right {
    width: 45%;
    padding-left: 32px; } }
@media (min-width: 1440px) {
  .product-info__col-right {
    width: 33%; } }

.product-info__image {
  max-width: 820px; }

.product-info__image--thumb {
  width: 65px;
  height: 42px; }

.product-info__product-name {
  font-family: 'Roboto', serif;
  font-weight: 400;
  font-size: 24px;
  font-weight: 400;
  margin: 0; }

.product-info__product-model {
  font-family: 'Roboto', serif;
  font-weight: 400;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px 0; }

p.product-info__product-price {
  margin: 0;
  font-size: 16px; }
  @media (min-width: 768px) {
    p.product-info__product-price {
      font-size: 18px; } }

.product-info__energy-class-info {
  max-width: 320px;
  margin: -32px 0 0 0;
  height: 38px; }
  .product-info__energy-class-info .energy-class-info__label {
    font-size: 16px; }
    @media (min-width: 768px) {
      .product-info__energy-class-info .energy-class-info__label {
        font-size: 18px; } }

.product-info__spec-list {
  display: none; }
  @media (min-width: 768px) {
    .product-info__spec-list {
      display: block; } }

.product-info__spec-list-term {
  width: 48%;
  display: inline-block;
  margin: 0 0 6px 0;
  font-weight: 300;
  line-height: 1.3em;
  margin-bottom: 8px; }

.product-info__spec-list-description {
  width: 48%;
  display: inline-block;
  margin: 0 0 6px 0;
  font-weight: 400;
  line-height: 1.3em; }

.container--product-specs {
  padding: 32px 0; }

.product-specs__headline {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 32px 0 0;
  text-align: left; }
  @media (min-width: 768px) {
    .product-specs__headline {
      text-align: center; } }

.product-specs__list--big {
  padding: 0; }
  @media (min-width: 768px) {
    .product-specs__list--big {
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  @media (min-width: 1000px) {
    .product-specs__list--big {
      padding: 0 32px; } }

.product-specs__wrapper {
  margin-top: 32px; }
  @media (min-width: 1000px) {
    .product-specs__wrapper {
      -webkit-columns: 2;
              columns: 2; } }

.product-specs__block {
  -webkit-column-break-inside: avoid;
          break-inside: avoid; }

.product-specs__list-item__term {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 30px;
  text-align: left;
  display: block;
  margin: 0;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px; }
  .product-specs__list-item__term:last-of-type {
    border-bottom: none; }
  @media (min-width: 768px) {
    .product-specs__list-item__term {
      padding: 10.6666666667px 16px;
      width: 50%;
      text-align: right;
      display: inline-block;
      border-bottom: 1px solid #c8c8c8; } }

.product-specs__list-item__description {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-height: 30px;
  text-align: left;
  display: block;
  margin: 0 0 12px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  border-bottom: 1px solid #c8c8c8; }
  .product-specs__list-item__description:last-of-type {
    border-bottom: none; }
  @media (min-width: 768px) {
    .product-specs__list-item__description {
      margin: 0;
      padding: 10.6666666667px 16px;
      width: 50%;
      display: inline-block; } }

.product-specs__list-item__icon-check {
  display: inline-block;
  height: 30px;
  width: 30px;
  position: relative; }
  .product-specs__list-item__icon-check:before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    float: left;
    margin-right: 8px;
    background: url(/typo3conf/ext/hisense_sitepackage/Resources/Public/Images/MaterialIcons/ic_done_black_24px.svg) center no-repeat;
    background-size: 36px; }

.product-single {
  padding-top: 40px; }
  @media (min-width: 768px) {
    .product-single {
      padding-top: 50px; } }

.sliderbutton--style-rounded {
  border-radius: 48px; }

.sliderbutton--style-round {
  border-radius: 100%; }

.sliderbutton {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 120px;
  max-height: 120px;
  overflow: hidden;
  text-decoration: none; }
  @media (min-width: 768px) {
    .sliderbutton {
      max-width: 180px;
      max-height: 180px; } }
  @media (min-width: 1000px) {
    .sliderbutton {
      right: calc(20px + 96px); } }
  @media (min-width: 1280px) {
    .sliderbutton {
      max-width: 100%;
      max-height: 100%; } }

.sliderbutton__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain; }

.sliderbutton__text {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1.25;
  text-align: center; }
  @media (min-width: 768px) {
    .sliderbutton__text {
      padding: 30px; } }
  .sliderbutton--style-rounded .sliderbutton__text {
    border-radius: 48px; }
  .sliderbutton--style-round .sliderbutton__text {
    border-radius: 100%; }

@media (min-width: 1280px) {
  .container--section-fullimage {
    max-height: 660px; } }

@media (min-width: 1000px) {
  .container--section-fullimage__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap; } }

.section-fullimage {
  padding: 32px 0; }
  @media (min-width: 1000px) {
    .section-fullimage {
      padding: 96px 0; } }

@media (min-width: 1000px) {
  .container--section-fullimage__style-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

.section-fullimage__col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
  @media (min-width: 1000px) {
    .section-fullimage__col {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%; } }
  .section-fullimage__col:first-child {
    padding-left: 0; }
  .section-fullimage__col:last-child {
    padding-right: 0; }

@media (min-width: 1000px) {
  .section-fullimage__col-inner {
    padding: 0 16px; } }
.section-fullimage__col:first-child .section-fullimage__col-inner {
  padding-left: 0; }
.section-fullimage__col:last-child .section-fullimage__col-inner {
  padding-right: 0; }

.section-fullimage__headline {
  margin: 21.3333333333px 0; }

.section-fullimage p {
  margin: 21.3333333333px 0; }

p.section-fullimage__subheadline {
  margin: 21.3333333333px 0;
  line-height: 1.4em;
  font-size: 20px;
  font-weight: 400; }

.section-fullimage__image-description {
  color: #595959;
  font-size: 16px;
  font-style: italic;
  padding: 20px; }

.styles-hisense {
  font-family: 'Roboto', serif;
  font-weight: 400;
  background-color: #e5e5e5;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #242424;
  letter-spacing: -0.5px; }
  @media (min-width: 768px) {
    .styles-hisense {
      font-size: 18px; } }

.cookie-notice {
  display: none;
  visibility: visible; }
  .body--cookie-note-visible .cookie-notice {
    display: block;
    visibility: visible; }
  .body--cookie-note-acknowledged .cookie-notice {
    display: none;
    visibility: visible; }
