/*------------------------------------*\
    VARIABLES
\*------------------------------------*/
/* Colors */
/* Typography */
/* Layout */
/* Border */
/* Box Shadow */
/* Z-index */
/* Images */
/* Header */
/* Transition Mixins */
/* Gradient Mixins */
/*------------------------------------*\
    BASIC
\*------------------------------------*/
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
}
* {
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
}
/* Hiermit können Safari >=1.1, Opera >=9.5, IE9 was anfangen*/
::selection {
  background: #192d50;
  color: #ffffff;
}
::-moz-selection {
  background: #192d50;
  color: #ffffff;
}
/* und hiermit der Firefox >=1 */
.son-style-secondary *::selection {
  background: #ffffff;
  color: #192d50;
}
.son-style-secondary *::-moz-selection {
  background: #ffffff;
  color: #192d50;
}
/* Fonts */
@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?48292396');
  src: url('../font/fontello.eot?48292396#iefix') format('embedded-opentype'), url('../font/fontello.woff2?48292396') format('woff2'), url('../font/fontello.woff?48292396') format('woff'), url('../font/fontello.ttf?48292396') format('truetype'), url('../font/fontello.svg?48292396#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Typography */
p {
  color: #444444;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  line-height: 1.22em;
  margin: 15px 0;
}
p {
  font-size: 17px;
  line-height: 1.5em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
em {
  color: #192d50;
  font-weight: 600;
  font-style: italic;
}
strong {
  color: #192d50;
  font-weight: 700;
}
.son-caption {
  color: #192d50;
  font-weight: 600;
  font-style: italic;
  margin-top: 7px;
  line-height: 1.22em;
  text-align: center;
}
/* Headlines */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #192d50;
  font-family: 'Source Sans Pro', sans-serif;
}
h1 {
  font-size: 32px;
  line-height: 1.1em;
  font-weight: 400;
  margin: 0 0 20px 0;
}
h2 {
  font-size: 32px;
  line-height: 1.1em;
  font-weight: 700;
  margin: 0 0 20px 0;
}
h3 {
  font-size: 26px;
  line-height: 1.1em;
  font-weight: 700;
  margin: 0 0 20px 0;
}
h4 {
  font-size: 19px;
  line-height: 1.1em;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 10px 0;
}
p + h3,
p + h2 {
  margin-top: 35px;
}
/* Links */
a {
  font-family: 'Source Sans Pro', sans-serif;
  color: #192d50;
  font-weight: 700;
}
a:hover {
  color: #bd0f41;
}
p a {
  text-decoration: underline;
  font-weight: 600;
  font-style: italic;
}
h1 a,
h2 a,
h3 a,
h4 a {
  text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  text-decoration: none;
}
/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  line-height: 1.22em;
  font-weight: 400;
}
/* Buttons */
.son-button {
  display: inline-block;
  border: 2px solid #192d50;
  padding: 12px 15px 12px 15px;
  color: #192d50;
  font-size: 19px;
  line-height: 1em;
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
}
.son-button:focus {
  background-color: transparent;
  color: #192d50;
}
.son-button:hover,
.son-button:active {
  background-color: #192d50;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: background-color 0.5s, color 0.5s;
  /* Safari */
  transition: background-color 0.5s, color 0.5s;
}
.son-button-secondary {
  background-color: #192d50;
  border: none;
  color: #ffffff;
}
.son-button-secondary:focus {
  background-color: #192d50;
  color: #ffffff;
}
.son-button-secondary:hover,
.son-button-secondary:active {
  background-color: #bd0f41;
}
.son-button.son-button-with-arrow {
  position: relative;
  padding-right: 25px;
}
.son-button.son-button-with-arrow::after {
  content: '\e802';
  position: absolute;
  font-family: fontello;
  font-style: normal;
  right: 7px;
  top: 50%;
  margin-top: -10px;
  font-weight: 400;
}
.son-button.son-button-icon {
  padding: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}
.uk-icon-button {
  background-color: #192d50;
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.uk-icon-button.uk-icon-remove::before {
  font-family: fontello;
  content: '\e808';
}
.uk-icon-button:focus {
  background-color: #192d50;
  color: #ffffff;
}
.uk-icon-button:hover,
.uk-icon-button:active {
  background-color: #bd0f41;
  color: #ffffff;
}
.son-scroll-top {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 10px;
  border: 1px solid #ffffff;
  background-color: rgba(25, 45, 80, 0.85);
  z-index: 8000;
}
.son-scroll-top.son-active {
  display: block;
}
.son-stamps {
  position: absolute;
  bottom: -40px;
  z-index: 200;
  width: max-content;
}
.son-stamps-right {
  right: 0;
}
.son-stamps-right .son-stamp {
  float: right;
  margin-right: 0;
  margin-left: 10px;
}
.son-stamp {
  float: left;
  text-align: center;
  margin-right: 5px;
  font-weight: 400;
  width: 78px;
  height: 78px;
}
.son-stamp-text {
  background-color: #192d50;
  color: #fff;
  font-size: 16px;
  line-height: 1.1em;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 5px;
  padding-top: 16px;
  overflow: hidden;
}
.son-stamp-img {
  width: 75px;
  height: 75px;
}
.son-stamp-img span {
  display: inline-block;
  position: relative;
  top: 39px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.son-stamp-img img {
  padding: 2px;
}
.son-stamp-flag {
  width: 20px;
  margin-top: 2px;
}
a.son-stamp-text:hover {
  background-color: #bd0f41;
  -webkit-transition: background-color 0.5s, color 0.5s;
  /* Safari */
  transition: background-color 0.5s, color 0.5s;
  text-decoration: none;
  color: #ffffff;
}
.son-img-tag {
  position: absolute;
  text-transform: uppercase;
  z-index: 4000;
  top: 0;
  left: 30px;
  background-color: #192d50;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  width: 55px;
  height: 55px;
  text-align: center;
}
.son-img-tag span {
  font-size: 20px;
  font-weight: 400;
}
.son-pdf {
  display: block;
}
.son-pdf::before {
  content: 'PDF';
  display: inline-block;
  background-color: #192d50;
  margin-right: 10px;
  color: #ffffff;
  padding: 7px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
.son-pdf:hover::before {
  background-color: #bd0f41;
}
.son-pdf + .son-pdf {
  margin-top: 10px;
}
p .son-pdf {
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
}
p .son-pdf:hover {
  text-decoration: underline;
}
.son-product-description ul,
.son-ul-style {
  position: relative;
}
.son-product-description ul > li,
.son-ul-style > li {
  margin-bottom: 7px;
  list-style-type: none;
  position: relative;
}
.son-product-description ul > li::before,
.son-ul-style > li::before {
  content: '';
  position: absolute;
  display: inline-block;
  height: 14px;
  width: 14px;
  background-color: #bd0f41;
  left: -23px;
  top: 3px;
}
.son-product-description ul > li:last-of-type,
.son-ul-style > li:last-of-type {
  margin-bottom: 0;
}
/* Icons */
.son-icon-arrow-down::before {
  content: '\e800';
  font-family: fontello;
  font-style: normal;
  font-weight: 400;
}
.son-icon-arrow-up::before {
  content: '\e803';
  font-family: fontello;
  font-style: normal;
  font-weight: 400;
}
.son-icon-arrow-right::before {
  content: '\e802';
  font-family: fontello;
  font-style: normal;
  font-weight: 400;
}
.son-icon-dynamo::after {
  font-family: fontello;
  content: '\e80c';
  font-style: normal;
  font-weight: 400;
}
.son-icon-edelux::after {
  font-family: fontello;
  content: '\e80a';
  font-style: normal;
  font-weight: 400;
}
.son-icon-ruecklicht::after {
  font-family: fontello;
  content: '\e80b';
  font-style: normal;
  font-weight: 400;
}
.son-icon-verkabelung::after {
  font-family: fontello;
  content: '\e80d';
  font-style: normal;
  font-weight: 400;
}
p + .son-button {
  margin-top: 0;
}
.uk-tooltip {
  border: 1px solid #ffffff;
  background-color: #192d50;
  color: #ffffff;
  z-index: 9000;
  font-size: 15px;
  line-height: 1.22em;
  padding: 15px;
  width: 400px;
  max-width: 85%;
}
.uk-tooltip.uk-tooltip-top-left,
.uk-tooltip.uk-tooltip-top-right {
  border-bottom: none;
}
.uk-tooltip.uk-tooltip-bottom-left,
.uk-tooltip.uk-tooltip-bottom-right {
  top-bottom: none;
}
.uk-modal-dialog {
  max-width: 90%;
  margin: 40px auto;
}
.uk-modal-dialog .uk-modal-caption {
  border-radius: 3px;
  background-color: #ffffff;
  color: #192d50;
  padding: 20px;
  white-space: initial;
  bottom: auto;
}
.uk-modal-dialog .uk-slidenav::before {
  color: #fff;
  text-shadow: 0 0 3px #000;
}
.uk-modal-dialog .uk-slidenav:hover::before {
  color: #ccc;
  text-shadow: 0 0 3px #000;
}
.son-marker {
  display: inline-block;
  position: relative;
  top: 2px;
  height: 17px;
  width: 17px;
  background-color: #bd0f41;
  margin-right: 7px;
}
.son-breadcrumbs {
  display: none;
  position: absolute;
  top: 10px;
  color: #ffffff;
  left: 0;
  right: 0;
  z-index: 4000;
}
.son-breadcrumbs .son-breadcrumb,
.son-breadcrumbs span {
  color: #ffffff;
  text-shadow: 0 0 8px #333;
  font-size: 15px;
  padding: 0 5px;
}
.son-breadcrumbs a.son-breadcrumb {
  font-weight: 400;
}
.son-breadcrumbs a.son-breadcrumb:hover {
  text-decoration: underline;
  color: #ffffff;
}
.son-breadcrumbs .son-container > div {
  margin-left: 15px;
}
/* TABLET + DESKTOP */
@media (min-width: 480px) {
  h1 {
    font-size: 38px;
    line-height: 1em;
  }
  h2 {
    font-size: 38px;
    line-height: 1em;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 32px;
    line-height: 1em;
    font-weight: 700;
  }
  p + h3,
  p + h2 {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .son-breadcrumbs {
    display: block;
  }
  .uk-tooltip {
    width: 500px;
    max-width: 42%;
  }
  .uk-modal-dialog {
    max-width: 80%;
  }
  .son-scroll-top {
    bottom: 25px;
    right: 25px;
  }
  .son-stamps {
    position: absolute;
    bottom: -50px;
    z-index: 200;
  }
  .son-stamps-right {
    right: 0;
  }
  .son-stamps-right .son-stamp {
    float: right;
    margin-right: 0;
    margin-left: 20px;
  }
  .son-stamp {
    float: left;
    text-align: center;
    margin-right: 20px;
    font-weight: 400;
    width: 100px;
    height: 100px;
  }
  .son-stamp-text {
    background-color: #192d50;
    color: #fff;
    font-size: 19px;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 10px;
    padding-top: 23px;
    overflow: hidden;
  }
  .son-stamp-img span {
    display: inline-block;
    position: relative;
    top: 50px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .son-stamp-img img {
    padding: 7px;
  }
  .son-stamp-flag {
    width: 25px;
    margin-top: 4px;
  }
}
/* DESKTOP */
@media (min-width: 960px) {
  h1 {
    font-size: 45px;
    line-height: 1em;
    margin-bottom: 40px;
  }
  h2 {
    font-size: 45px;
    line-height: 1em;
    margin-bottom: 40px;
  }
  h3 {
    font-size: 34px;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 30px;
  }
  p + h3,
  p + h2 {
    margin-top: 50px;
  }
  .son-scroll-top {
    bottom: 40px;
    right: 40px;
  }
}
/* DESKTOP LARGE */
@media (min-width: 1200px) {
  .son-scroll-top {
    bottom: 50px;
    right: 50px;
  }
}
/*------------------------------------*\
    STYLE SECONDARY
\*------------------------------------*/
.son-style-secondary {
  /* Buttons */
  /* PDF */
}
.son-style-secondary.son-background,
.son-style-secondary .son-background {
  background-color: #192d50;
}
.son-style-secondary.son-background-transparent,
.son-style-secondary .son-background-transparent {
  background-color: rgba(25, 45, 80, 0.92);
}
.son-style-secondary h1,
.son-style-secondary h2,
.son-style-secondary h3,
.son-style-secondary h4,
.son-style-secondary h5,
.son-style-secondary h6,
.son-style-secondary p,
.son-style-secondary strong,
.son-style-secondary figcaption {
  color: #ffffff;
}
.son-style-secondary a {
  color: #ffffff;
}
.son-style-secondary .son-button {
  border-color: #ffffff;
  color: #ffffff;
}
.son-style-secondary .son-button:focus {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.son-style-secondary .son-button:hover,
.son-style-secondary .son-button:active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #192d50;
}
.son-style-secondary .son-button-secondary {
  border: none;
  background-color: #bd0f41;
}
.son-style-secondary .son-button-secondary:hover {
  background-color: #d00f45;
  color: #ffffff;
}
.son-style-secondary .son-pdf::before {
  background-color: #ffffff;
  color: #192d50;
}
/*------------------------------------*\
    SLIDENAV
\*------------------------------------*/
/* Arrows */
.uk-slidenav-position .uk-slidenav {
  display: block;
  margin-top: -13px;
}
.uk-slidenav {
  top: auto;
  width: 26px;
  height: 26px;
  font-size: 26px;
  line-height: 26px;
}
.uk-slidenav::before {
  font-size: 26px;
  line-height: 26px;
  color: rgba(25, 45, 80, 0.5);
}
.uk-slidenav:hover::before {
  color: rgba(25, 45, 80, 0.92);
}
.uk-slidenav.son-disabled {
  display: none !important;
}
.uk-slidenav.son-disabled:hover {
  cursor: auto;
}
.uk-slidenav.son-disabled:hover::before {
  color: rgba(25, 45, 80, 0.5);
}
.son-style-secondary .uk-slidenav::before {
  color: rgba(255, 255, 255, 0.3);
}
.son-style-secondary .uk-slidenav:hover::before {
  color: rgba(255, 255, 255, 0.5);
}
.uk-slidenav-position .uk-slidenav-previous {
  left: 5px;
}
.uk-slidenav-position .uk-slidenav-previous::before {
  content: '\e801';
  font-family: fontello;
  font-weight: 400;
}
.uk-slidenav-position .uk-slidenav-next {
  right: 5px;
}
.uk-slidenav-position .uk-slidenav-next::before {
  content: '\e802';
  font-family: fontello;
  font-weight: 400;
}
/* Dots */
.uk-dotnav {
  margin-bottom: 0;
}
.uk-dotnav > * > * {
  width: 15px;
  height: 15px;
}
.uk-dotnav a {
  background-color: rgba(25, 45, 80, 0.5);
}
.uk-dotnav a:hover {
  background-color: rgba(25, 45, 80, 0.92);
}
.uk-dotnav .uk-active a {
  background-color: #192d50;
}
.son-style-secondary .uk-dotnav a {
  background-color: rgba(255, 255, 255, 0.3);
}
.son-style-secondary .uk-dotnav a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.son-style-secondary .uk-dotnav .uk-active a {
  background-color: #ffffff;
}
/* TABLET */
@media screen and (min-width: 480px) {
  .uk-slidenav-position .uk-slidenav {
    top: 50%;
  }
  .uk-slidenav-position .uk-slidenav-previous {
    left: 0px;
  }
  .uk-slidenav-position .uk-slidenav-next {
    right: 0px;
  }
}
/* TABELT + DESKTOP */
@media screen and (min-width: 768px) {
  /* Dots */
}
/*------------------------------------*\
    SECTION
\*------------------------------------*/
.son-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.son-section.son-section-small {
  padding-top: 35px;
  padding-bottom: 45px;
}
.son-section.son-section-large {
  padding-top: 50px;
  padding-bottom: 50px;
}
.son-section-title {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  line-height: 1.1em;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.son-section-description {
  text-align: center;
}
.son-section.son-section-light + .son-section-light {
  padding-top: 0;
}
.son-section.son-section-light + .son-section-light.son-section-large {
  padding-top: 60px;
}
.son-section.son-section-light.son-section-large + .son-section-light.son-section-large {
  padding-top: 0;
}
/* TABLET */
@media screen and (min-width: 480px) {
  .son-section-title {
    font-size: 28px;
    line-height: 1.1em;
    margin-bottom: 20px;
  }
}
/* TABLET + DESKTOP*/
@media (min-width: 768px) {
  .son-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .son-section.son-section-small {
    padding-top: 35px;
    padding-bottom: 45px;
  }
  .son-section.son-section-large {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .son-section.son-section-light + .son-section-light.son-section-large {
    padding-top: 20px;
  }
  .son-section.son-section-light.son-section-large + .son-section-light.son-section-large {
    padding-top: 0;
  }
  .son-section-title {
    font-size: 28px;
    line-height: 1.1em;
    margin-bottom: 20px;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .son-section.son-section-small {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .son-section.son-section-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .son-section.son-section-light + .son-section-light.son-section-large {
    padding-top: 40px;
  }
  .son-section.son-section-light.son-section-large + .son-section-light.son-section-large {
    padding-top: 0;
  }
  .son-section-title {
    font-size: 32px;
    line-height: 1.1em;
    margin-bottom: 25px;
  }
}
/*------------------------------------*\
    SLIDER
\*------------------------------------*/
.uk-slideset h4 {
  font-size: 21px;
  line-height: 1.1em;
}
.uk-slideset figure p {
  font-size: 17px;
  line-height: 1.3em;
  margin: 0;
}
.uk-slideset-nav.uk-invisible + div {
  display: none;
}
.uk-slideset-nav {
  bottom: -30px;
}
/* TABLET */
/* TABLET + DESKTOP*/
/* DESKTOP*/
/*------------------------------------*\
    FORM
\*------------------------------------*/
.son-input-result {
  color: #192d50;
  border: 2px solid #192d50;
  font-weight: 700;
}
label,
.uk-form .uk-form-row legend {
  color: #192d50;
  display: inline-block;
  font-weight: 600;
  font-style: italic;
  font-size: 17px;
  line-height: 1em;
  margin-top: 0;
  padding-bottom: 0;
}
label::after,
.uk-form .uk-form-row legend::after {
  border-bottom: none;
}
.son-label-small {
  font-size: 15px;
  line-height: 1em;
  font-weight: 400;
  font-style: normal;
  color: #666;
}
fieldset {
  min-width: 0;
}
legend,
.uk-form legend {
  font-size: 24px;
  line-height: 1em;
  font-weight: 700;
  color: #192d50;
}
legend ::after,
.uk-form legend ::after {
  border-color: #192d50;
}
.uk-form-width-small {
  width: 95px;
}
/*------------------------------------*\
    SPOKE CALCULATOR
\*------------------------------------*/
.son-spoke-calculator .uk-form-width-small {
  width: 110px;
}
.son-spoke-calculator .uk-form-label {
  position: relative;
}
.son-spoke-calculator .son-result-wrap {
  border-top: 1px solid #192d50;
  padding-top: 20px;
}
.son-spoke-calculator .son-tooltip-wrap {
  display: block;
}
.son-spoke-calculator .son-tooltip-icon {
  position: relative;
  font-size: 25px;
  top: 3px;
}
.son-spoke-calculator .son-button-reset {
  border: none;
  background-color: #ccc;
}
.son-spoke-calculator .son-button-reset:hover {
  background-color: #ddd;
  color: #192d50;
}
.son-spoke-calculator .son-input-result {
  color: #192d50 !important;
  font-weight: 700 !important;
}
.son-spoke-calculator button {
  cursor: pointer;
  display: block;
  text-align: center;
  width: 300px;
  max-width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  .son-spoke-calculator.uk-form-horizontal .uk-form-label {
    width: 180px;
  }
  .son-spoke-calculator.uk-form-horizontal .uk-form-controls {
    margin-left: 195px;
  }
}
/*------------------------------------*\
    LAYOUT
\*------------------------------------*/
html {
  overflow-y: scroll;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.son-all {
  background-color: #192d50;
  max-width: 100%;
  overflow: hidden;
  min-height: 100vh;
}
main {
  background-color: #ffffff;
  position: relative;
  z-index: 3500;
  box-shadow: 0 0 20px rgba(25, 45, 80, 0.5);
}
/*------------------------------------*\
    CONTAINER
\*------------------------------------*/
.son-container {
  max-width: 1300px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}
.son-container-left {
  max-width: none;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.son-container-right {
  max-width: none;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
.son-container.son-section {
  max-width: none;
}
.son-container.son-slider {
  padding-left: 35px;
  padding-right: 35px;
}
/* TABLET */
@media screen and (min-width: 480px) {
  .son-container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .son-container-right {
    padding-left: 40px;
    padding-right: 40px;
  }
  .son-container-left {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* TABLET + DESKTOP*/
@media (min-width: 768px) {
  .son-container-left {
    max-width: 600px;
    padding-left: 40px;
    padding-right: 0;
    float: right;
  }
  .son-container-right {
    max-width: 600px;
    padding-left: 0;
    padding-right: 40px;
    float: left;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .son-container-left {
    padding-left: 50px;
  }
  .son-container-right {
    padding-right: 50px;
  }
}
/*------------------------------------*\
    GRID
\*------------------------------------*/
@media (min-width: 768px) {
  /* Horizontal */
  .uk-grid-medium {
    margin-left: -40px;
  }
  .uk-grid-large {
    margin-left: -50px;
  }
  .uk-grid-medium > * {
    padding-left: 40px;
  }
  .uk-grid-large > * {
    padding-left: 50px;
  }
  /* Vertical */
  .uk-grid-medium + .uk-grid-medium,
  .uk-grid-medium > .uk-grid-margin,
  .uk-grid-medium > * > .uk-panel + .uk-panel {
    margin-top: 40px;
  }
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 50px;
  }
}
@media (min-width: 960px) {
  /* Horizontal */
  .uk-grid-medium {
    margin-left: -50px;
  }
  .uk-grid-large {
    margin-left: -100px;
  }
  .uk-grid-medium > * {
    padding-left: 50px;
  }
  .uk-grid-large > * {
    padding-left: 100px;
  }
  /* Vertical */
  .uk-grid-medium + .uk-grid-medium,
  .uk-grid-medium > .uk-grid-margin,
  .uk-grid-medium > * > .uk-panel + .uk-panel {
    margin-top: 50px;
  }
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large .uk-grid-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 100px;
  }
}
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid-medium {
    margin-left: -50px;
  }
  .uk-grid-large {
    margin-left: -100px;
  }
  .uk-grid-medium > * {
    padding-left: 50px;
  }
  .uk-grid-large > * {
    padding-left: 100px;
  }
  /* Vertical */
  .uk-grid-medium + .uk-grid-medium,
  .uk-grid-medium > .uk-grid-margin,
  .uk-grid-medium > * > .uk-panel + .uk-panel {
    margin-top: 50px;
  }
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 100px;
  }
}
/*------------------------------------*\
    HEADER
\*------------------------------------*/
.son-header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 7000;
}
/* Header Logo*/
/*------------------------------------*/
.son-header-logo {
  background-color: #ffffff;
  height: 60px;
  text-align: center;
}
.son-header-logo .son-container {
  height: 100%;
  position: relative;
}
.son-header-logo img {
  height: 100%;
}
.son-header-logo .son-nav-toggle {
  position: absolute;
  left: 25px;
  top: 12px;
}
.son-header-logo .son-nav-toggle i {
  font-size: 34px;
}
.son-header-logo .son-nav-toggle i::before {
  font-family: fontello;
  content: '\e809';
}
.son-header-logo .son-nav-toggle.son-active i::before {
  content: '\e808';
}
/* TABLET */
@media screen and (min-width: 480px) {
  .son-header-logo {
    height: 70px;
  }
  .son-header-logo .son-nav-toggle {
    left: 40px;
    top: 17px;
  }
}
/* TABLET + DESKTOP*/
@media (min-width: 768px) {
  /* Header Logo*/
  .son-header-logo .son-nav-toggle {
    left: 50px;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-header.son-nav-active {
    position: relative;
  }
  /* Header Logo*/
  .son-header-logo {
    height: 100px;
  }
  .son-header-logo .son-nav-toggle {
    left: 50px;
    top: 25px;
  }
}
/*------------------------------------*\
    LANGUAGE SWITCHER
\*------------------------------------*/
.son-language-switcher {
  position: absolute;
  top: 15px;
  right: 25px;
}
.son-language-switcher .son-language-active {
  color: #192d50;
  display: block;
  top: 10px;
  font-size: 14px;
  text-transform: uppercase;
}
.son-language-switcher .son-language-toggler {
  cursor: pointer;
}
.son-language-switcher .son-language-toggler i {
  display: block;
  line-height: 5px;
  color: #192d50;
}
.son-language-switcher > .uk-open .son-language-toggler i::before {
  content: "\f0d8";
}
.son-language-switcher .uk-dropdown {
  background-color: #192d50;
  padding: 7px 0;
  margin-top: 0;
  width: 100px;
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.son-language-switcher .uk-dropdown ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.son-language-switcher .uk-dropdown li {
  margin-bottom: 0;
}
.son-language-switcher .uk-dropdown a {
  display: block;
  padding: 2px 0;
  width: 100px;
  font-weight: 400;
  text-decoration: none;
}
.son-language-switcher .uk-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
/* TABLET */
@media screen and (min-width: 480px) {
  .son-language-switcher {
    right: 40px;
    top: 20px;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-language-switcher {
    right: 50px;
    top: 35px;
  }
}
/*------------------------------------*\
    NAVIGATION
\*------------------------------------*/
/* Variables */
/*------------------------------------*/
/* Link */
/* Sub Link */
/* Nav Mobile */
/* Nav Mobile Overlay*/
/* Nav Desktop*/
/* SON Nav (RESET Uk Nav)*/
/*------------------------------------*/
.uk-navbar {
  background-color: transparent;
}
.son-nav {
  /* Links */
  /* Links hovered*/
  /* Links active*/
  /* geöffnete Links */
}
.son-nav > li > a {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.22em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: transparent;
  color: #ffffff;
  outline: none;
}
.son-nav > li > a:focus {
  color: #ffffff;
}
.son-nav > li > a:hover,
.son-nav > li > a:active,
.son-nav > li:hover > a,
.son-nav > li:hover > a:hover,
.son-nav > li.uk-active:hover > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}
.son-nav > li.uk-active > a,
.son-nav > li.uk-active > a:active,
.son-nav > li.uk-active > a:focus {
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
}
.son-nav > li.uk-open > a {
  background-color: transparent;
  color: #ffffff;
}
.son-nav-sub {
  /* Links */
  /* Links hovered*/
  /* Links active*/
  /* geöffnete Links */
}
.son-nav-sub > li > a {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  background-color: transparent;
  color: #444444;
  outline: none;
}
.son-nav-sub > li > a:focus {
  color: #444444;
}
.son-nav-sub > li > a:hover,
.son-nav-sub > li > a:active,
.son-nav-sub > li:hover > a,
.son-nav-sub > li:hover > a:hover {
  cursor: pointer;
}
.son-nav-sub > li.uk-active > a,
.son-nav-sub > li.uk-active > a:active,
.son-nav-sub > li.uk-active > a:focus,
.son-nav-sub > li.uk-active:hover > a:hover {
  background-color: transparent;
  color: #444444;
  cursor: pointer;
}
.son-nav-sub > li.uk-open > a {
  background-color: transparent;
  color: #444444;
}
.son-nav-sub.level-0 > li > a {
  font-weight: 700;
}
/* RESET Uk Dropdown */
/*------------------------------------*/
.uk-dropdown {
  max-width: none;
}
.uk-dropdown-navbar {
  background-color: transparent;
}
/* Nav Mobile */
/*------------------------------------*/
.son-navigation-mobile {
  /* Parent Icons */
}
.son-navigation-mobile .son-nav-mobile-dropdown {
  position: absolute;
  z-index: 7000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 7px;
  max-height: 100vh;
  overflow-y: scroll;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
.son-navigation-mobile .son-nav-mobile-dropdown::-webkit-scrollbar {
  display: none;
}
.son-navigation-mobile .son-nav-mobile-line {
  height: 7px;
}
.son-navigation-mobile .son-nav > li > a {
  padding: 15px 20px;
}
.son-navigation-mobile .son-nav .son-parent-icon {
  background-color: rgba(255, 255, 255, 0.2);
}
.son-navigation-mobile .son-nav-sub {
  background-color: #ffffff;
  padding: 3px 0;
}
.son-navigation-mobile .son-nav-sub.level-1 {
  padding-bottom: 10px;
}
.son-navigation-mobile .son-nav-sub > li.level-1 {
  border-bottom: 1px solid #ddd;
  padding-left: 20px;
}
.son-navigation-mobile .son-nav-sub > li.level-1:last-child {
  border-bottom: none;
}
.son-navigation-mobile .son-nav-sub > li.level-1 > a {
  font-weight: 700;
}
.son-navigation-mobile .son-nav-sub > li.level-2 > a {
  padding: 5px 0;
}
.son-navigation-mobile .son-nav-sub > li > a {
  padding: 10px 0;
}
.son-navigation-mobile .son-nav-sub > li > a i {
  margin-right: 6px;
}
.son-navigation-mobile .son-nav-sub .son-parent-icon {
  background-color: rgba(0, 0, 0, 0.1);
  right: -20px;
}
.son-navigation-mobile .uk-parent {
  position: relative;
}
.son-navigation-mobile .uk-parent.uk-open > .son-parent-icon::after {
  content: '\f068';
}
.son-navigation-mobile .uk-parent .son-parent-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  z-index: 1111111111111111;
  padding-left: 0;
  padding-right: 0;
}
.son-navigation-mobile .uk-parent .son-parent-icon::after {
  content: '\f067';
  width: 60px;
  margin-right: -2px;
  font-size: 13px;
}
.son-navigation-mobile .uk-parent .son-parent-link::after {
  content: none !important;
}
/* Nav Mobile Overlay */
/*------------------------------------*/
.son-navigation-mobile-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  cursor: pointer;
  position: fixed;
  top: 67px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6500;
  touch-action: none;
  overflow-y: scroll ;
}
.son-navigation-mobile-overlay.son-active {
  display: block;
}
/* TABLET*/
@media (min-width: 480px) {
  .son-navigation-mobile-overlay {
    top: 77px;
  }
}
/* Nav Desktop*/
/*------------------------------------*/
.son-navigation-desktop {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
}
.son-navigation-desktop .son-nav {
  /* Links */
}
.son-navigation-desktop .son-nav > li {
  position: static;
  /* Links current Page, open Dropdown */
}
.son-navigation-desktop .son-nav > li > a {
  position: relative;
  z-index: 7100;
  height: 44px;
  padding: 10px 17px;
  /* hover */
}
.son-navigation-desktop .son-nav > li > a::after {
  width: 0;
  content: '';
  display: inline-block;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 6px;
  background: #bd0f41;
}
.son-navigation-desktop .son-nav > li > a:hover::after {
  width: 100%;
  -webkit-transition: width 0.5s;
  -moz-transition: width 0.5s;
  -ms-transition: width 0.5s;
  transition: width 0.5s;
}
.son-navigation-desktop .son-nav > li.uk-active > a::after,
.son-navigation-desktop .son-nav > li.uk-open > a::after {
  width: 100%;
}
.son-navigation-desktop .uk-dropdown {
  position: absolute;
  z-index: 7000;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(25, 45, 80, 0.5);
  padding: 15px 30px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li {
  box-sizing: content-box;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li > a {
  padding: 3px 10px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li > a:hover {
  color: #666666;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li > a:hover .son-link-marker::before {
  width: 7px;
  margin-left: -10px;
  margin-right: 3px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li > a i {
  margin-right: 6px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li > a img {
  margin-bottom: 4px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li .son-link-marker::before {
  content: '';
  display: inline-block;
  position: relative;
  height: 15px;
  top: 1px;
  background-color: #bd0f41;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub > li.uk-active > a .son-link-marker::before {
  width: 7px;
  margin-left: -10px;
  margin-right: 3px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub.level-0 {
  border-left: 1px solid #ccc;
  height: 100%;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub.level-0 > li + li {
  margin-top: 10px;
}
.son-navigation-desktop .uk-dropdown .son-nav-sub .son-description {
  display: inline-block;
  padding-left: 10px;
  font-size: 15px;
  line-height: 16px;
}
.son-navigation-desktop .son-dropdown-title a {
  font-size: 30px;
  line-height: 1.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  text-decoration: none;
}
.son-navigation-desktop .son-dropdown-title a:hover {
  color: #999;
}
.son-navigation-desktop .son-dropdown-column {
  margin-top: 10px;
}
.son-navigation-desktop .son-dropdown-column.son-empty-column .son-nav-sub {
  border-left: none;
}
/* TABLET + DESKTOP*/
@media (min-width: 1220px) {
  .son-navigation-desktop .uk-dropdown {
    padding: 30px 60px;
  }
  .son-navigation-desktop .uk-dropdown .son-nav-sub > li > a {
    padding: 3px 20px;
  }
  .son-navigation-desktop .uk-dropdown .son-nav-sub > li > a:hover .son-link-marker::before {
    width: 15px;
    margin-left: -20px;
    margin-right: 5px;
  }
  .son-navigation-desktop .uk-dropdown .son-nav-sub > li.uk-active > a .son-link-marker::before {
    width: 15px;
    margin-left: -20px;
    margin-right: 5px;
  }
  .son-navigation-desktop .uk-dropdown .son-nav-sub > li .son-description {
    display: inline-block;
    padding-left: 20px;
    font-size: 15px;
    line-height: 16px;
  }
  .son-navigation-desktop .son-dropdown-title a {
    font-size: 40px;
    line-height: 1.22em;
  }
}
/*------------------------------------*\
    OPENER
\*------------------------------------*/
.son-opener {
  position: relative;
  margin-top: 67px;
}
.son-opener.son-opener-with-stamps + main .son-products:first-of-type {
  padding-top: 80px;
}
.son-opener.son-opener-with-stamps .son-opener-content {
  padding-bottom: 80px;
}
/* TABLET + DESKTOP*/
@media (min-width: 480px) {
  .son-opener {
    margin-top: 77px;
  }
}
/* TABLET + DESKTOP */
@media (min-width: 768px) {
  .son-opener.son-opener-with-stamps + main .son-products:first-of-type {
    padding-top: 100px;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-opener {
    margin-top: 145px;
  }
}
/*------------------------------------*\
    OPENER BASIC
\*------------------------------------*/
.son-opener-basic {
  position: relative;
  z-index: 3600;
}
.son-opener-basic .son-opener-content {
  padding-top: 40px;
  padding-bottom: 50px;
  text-align: center;
}
.son-opener-basic .son-opener-content h1:last-child {
  margin-bottom: 0;
}
.son-opener-basic .son-opener-content p {
  max-width: 800px;
  margin: 0 auto;
}
.son-opener-basic .son-opener-content p + p {
  margin-top: 15px;
}
.son-opener-basic .son-opener-content > *:last-child {
  margin-bottom: 0;
}
/* TABLET + DESKTOP */
@media (min-width: 768px) {
  .son-opener-basic .son-opener-content {
    padding-bottom: 60px;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-opener-basic .son-opener-content {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
/*------------------------------------*\
    OPENER POST
\*------------------------------------*/
.son-opener-post {
  position: relative;
  overflow: visible;
  z-index: 3600;
}
.son-opener-post .uk-cover-background {
  height: 250px;
}
.son-opener-post .uk-cover-background.son-img-contain {
  background-size: contain;
}
.son-opener-post .son-overlay-container .son-container {
  background-color: #ffffff;
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
}
.son-opener-post .son-overlay h1 {
  margin-bottom: 0;
  line-height: 1.15em;
  font-weight: 600;
}
.son-opener-post .son-overlay-back-link {
  position: absolute;
  top: -30px;
  color: #ffffff;
  text-shadow: 0 0 8px #555;
}
.son-opener-post .son-overlay-back-link i {
  margin-right: 5px;
  font-weight: 700;
}
.son-opener-post .son-overlay-slidenav .uk-slidenav {
  height: 30px;
  width: 30px;
  font-size: 30px;
  line-height: 30px;
}
.son-opener-post .son-overlay-slidenav .uk-slidenav::before {
  font-size: 30px;
  line-height: 30px;
}
.son-opener-post .son-overlay-slidenav .uk-slidenav-previous {
  left: -30px;
}
.son-opener-post .son-overlay-slidenav .uk-slidenav-next {
  right: -30px;
}
.son-opener-post .son-background-gradient {
  background: transparent;
  /* Old browsers */
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0) 40%);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0) 40% 1%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0) 40%);
}
.son-opener-post.son-background-1 {
  background-color: #ffffff;
}
.son-opener-post.son-background-2 {
  background-color: #192d50;
}
.son-opener-post.son-background-3 {
  background-color: #eeeeee;
}
/* SMARTPHONE */
@media (min-width: 480px) {
  .son-opener-post .uk-cover-background {
    height: 350px;
  }
  .son-opener-post .son-overlay-slidenav .uk-slidenav-previous {
    left: -40px;
  }
  .son-opener-post .son-overlay-slidenav .uk-slidenav-next {
    right: -40px;
  }
}
/* TABLET */
@media (min-width: 768px) {
  .son-opener-post .uk-cover-background {
    height: 600px;
  }
  .son-opener-post .son-overlay-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .son-opener-post .son-overlay-slidenav .uk-slidenav::before {
    color: #ffffff;
    text-shadow: 0 0 8px #555;
  }
}
/* DESKTOP */
@media (min-width: 960px) {
  .son-opener-post .uk-cover-background {
    height: 600px;
  }
  .son-opener-post .son-overlay-slidenav .uk-slidenav-previous {
    left: -50px;
  }
  .son-opener-post .son-overlay-slidenav .uk-slidenav-next {
    right: -50px;
  }
}
/*------------------------------------*\
    OPENER SPLITED
\*------------------------------------*/
.son-opener-splited {
  position: relative;
  background-color: #192d50;
  overflow: hidden;
  z-index: 3600;
}
.son-opener-splited .son-opener-img {
  overflow: hidden;
  min-height: 250px;
}
.son-opener-splited .son-opener-content {
  background-color: #ffffff;
  padding-top: 25px;
}
.son-opener-splited .son-opener-content h1 {
  margin-bottom: 10px;
}
.son-opener-splited .son-product-preview .son-preview {
  margin-top: 20px;
}
/* TABLET + DESKTOP */
@media (min-width: 768px) {
  .son-opener-splited .son-opener-img {
    min-height: 350px;
  }
  .son-opener-splited .son-opener-content {
    padding-top: 40px;
  }
  .son-opener-splited .son-container-right {
    max-width: none;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* DESKTOP */
@media (min-width: 960px) {
  .son-opener-splited .son-opener-img {
    min-height: 600px;
  }
  .son-opener-splited .son-opener-content {
    padding-top: 50px;
  }
  .son-opener-splited .son-container-right {
    max-width: 600px;
    padding-left: 0;
    padding-right: 50px;
    float: left;
  }
}
/*------------------------------------*\
    OPENER IMAGE
\*------------------------------------*/
.son-opener-img .uk-cover-background {
  min-height: 170px;
}
.son-opener-img .son-opener-img-content {
  position: relative;
  z-index: 3600;
  box-shadow: 0 0 20px rgba(25, 45, 80, 0.5);
  padding: 30px 0 25px 0;
}
.son-opener-img .son-opener-img-content .son-container {
  text-align: center;
}
.son-opener-img .son-opener-img-content .son-container > div {
  max-width: 800px;
  margin: 0 auto;
}
.son-opener-img .son-opener-img-content h1:last-child {
  margin-bottom: 0;
}
.son-opener-img.son-opener-with-stamps .son-opener-img-content {
  padding-bottom: 60px;
}
/* TABLET + DESKTOP */
@media (min-width: 768px) {
  .son-opener-img .uk-cover-background {
    min-height: 300px;
  }
}
/* DESKTOP */
@media (min-width: 960px) {
  .son-opener-img .uk-cover-background {
    min-height: 450px;
  }
}
/*------------------------------------*\
    OPENER SLIDESHOW
\*------------------------------------*/
.son-opener-slideshow {
  height: auto;
  position: relative;
  z-index: 1000;
  /* Overlay */
  /* Overlay Rotator */
}
.son-opener-slideshow + main {
  box-shadow: 0 0 20px rgba(25, 45, 80, 0.5);
}
.son-opener-slideshow .uk-slideshow {
  height: 250px;
}
.son-opener-slideshow .uk-slideshow > li {
  height: 250px;
}
.son-opener-slideshow .son-overlay {
  background-color: #192d50;
  position: relative;
  width: 100%;
  /* Slideshow Nav */
}
.son-opener-slideshow .son-overlay > div {
  padding: 25px 40px 50px 40px;
}
.son-opener-slideshow .son-overlay h1 {
  font-size: 26px;
  line-height: 1.1em;
  margin-bottom: 7px;
}
.son-opener-slideshow .son-overlay p + h2 {
  margin-top: -15px;
}
.son-opener-slideshow .son-overlay .son-slide-description {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.son-opener-slideshow .son-overlay .uk-dotnav {
  bottom: 15px;
}
.son-opener-slideshow .son-overlay-rotate {
  position: absolute;
  opacity: 0;
  overflow: hidden;
}
.son-opener-slideshow .son-overlay-rotate.son-active {
  position: relative;
  opacity: 1;
  -webkit-animation-name: uk-fade;
  animation-name: uk-fade;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* TABLET + DESKTOP*/
@media (min-width: 768px) {
  .son-opener-slideshow .uk-slideshow {
    height: 350px;
  }
  .son-opener-slideshow .uk-slideshow > li {
    height: 350px;
  }
  .son-opener-slideshow .son-overlay > div {
    padding: 35px 55px 60px 55px;
  }
  .son-opener-slideshow .son-overlay h2 {
    font-size: 38px;
    line-height: 1em;
    margin-bottom: 30px;
  }
  .son-opener-slideshow .son-overlay h1 {
    font-size: 28px;
    line-height: 1em;
    margin-bottom: 10px;
  }
  .son-opener-slideshow .son-overlay p {
    font-size: 19px;
  }
}
/* DESKTOP */
@media (min-width: 960px) {
  .son-opener-slideshow {
    height: 600px;
    /* Overlay */
  }
  .son-opener-slideshow .uk-slideshow {
    height: 600px;
  }
  .son-opener-slideshow .uk-slideshow > li {
    height: 600px;
  }
  .son-opener-slideshow .son-overlay-container {
    position: absolute;
    width: 100%;
    max-width: 1300px;
    top: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    padding-left: 50px;
    padding-right: 50px;
  }
  .son-opener-slideshow .son-overlay-container.son-overlay-right {
    text-align: right;
  }
  .son-opener-slideshow .son-overlay {
    position: static;
    display: inline-block;
    background-color: rgba(25, 45, 80, 0.92);
    min-height: 0;
    bottom: auto;
    height: auto;
    width: 450px;
    margin: auto;
    text-align: left;
    /* Slideshow Nav */
  }
  .son-opener-slideshow .son-overlay > div {
    padding: 35px 35px 60px 35px;
  }
  .son-opener-slideshow .son-overlay .son-button {
    margin-top: 20px;
  }
}
/*------------------------------------*\
    OPENER SUBNAV
\*------------------------------------*/
.son-opener-subnav {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 3000;
  -webkit-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out 0s;
}
.son-opener-subnav.son-active {
  -webkit-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.son-opener-subnav .son-subnav-toggle {
  position: absolute;
  background-color: #ffffff;
  left: -40px;
  height: 40px;
  width: 44px;
  border-radius: 4px;
}
.son-opener-subnav .son-subnav-toggle::after {
  font-family: 'fontello';
  content: '';
  color: #192d50;
  font-size: 32px;
  line-height: 40px;
  margin-left: 4px;
  cursor: pointer;
}
.son-opener-subnav .son-subnav-toggle:hover::after {
  color: #bd0f41;
}
.son-opener-subnav .son-subnav-toggle.son-icon-dynamo::after {
  font-family: fontello;
  content: '\e80c';
}
.son-opener-subnav .son-subnav-toggle.son-icon-edelux::after {
  font-family: fontello;
  content: '\e80a';
}
.son-opener-subnav .son-subnav-toggle.son-icon-ruecklicht::after {
  font-family: fontello;
  content: '\e80b';
}
.son-opener-subnav .son-subnav-toggle.son-icon-verkabelung::after {
  font-family: fontello;
  content: '\e80d';
}
.son-opener-subnav .son-subnav-toggle.son-icon-menu::after {
  font-family: fontello;
  content: '\e809';
}
.son-opener-subnav .son-subnav-toggle.son-icon-close::after {
  font-family: fontello;
  content: '\e808';
}
.son-opener-subnav .son-subnav-title a {
  font-weight: 700;
  font-style: normal;
  padding-top: 0;
  padding-bottom: 0;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
}
.son-opener-subnav .son-subnav-title a:hover {
  text-decoration: none;
}
.son-opener-subnav .son-subnav-content {
  background-color: #ffffff;
  padding: 0;
}
.son-opener-subnav .son-subnav {
  padding-left: 10px;
  padding-bottom: 5px;
}
.son-opener-subnav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.son-opener-subnav a {
  display: inline-block;
  padding: 6px 10px;
  font-weight: 400;
  width: 100%;
}
.son-opener-subnav a:hover,
.son-opener-subnav a.son-active {
  color: #bd0f41;
  text-decoration: none;
}
/* TABLET + DESKTOP*/
@media (min-width: 480px) {
  .son-opener-subnav {
    position: absolute;
    right: 0;
  }
}
/* TABLET + DESKTOP */
@media (min-width: 768px) {
  .son-opener-subnav {
    position: absolute;
    top: 50px;
    right: 0;
  }
}
/* DESKTOP*/
@media (min-width: 960px) {
  .son-opener-subnav {
    position: absolute;
    top: 60px;
    right: 0;
  }
  .son-opener-subnav .son-subnav-toggle {
    left: -50px;
    height: 50px;
    width: 54px;
  }
  .son-opener-subnav .son-subnav-toggle::after {
    font-size: 40px;
    line-height: 50px;
    margin-left: 5px;
    cursor: pointer;
  }
  .son-opener-subnav .son-subnav-title a {
    height: 50px;
    line-height: 50px;
  }
}
/*------------------------------------*\
    SUBPAGE NAV
\*------------------------------------*/
.son-subpage-nav {
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 190px;
}
.son-subpage-nav ul {
  list-style: none;
  margin: 0;
  padding: 5px 0 5px 5px;
}
.son-subpage-nav ul a {
  display: block;
  padding: 5px 10px;
}
.son-subpage-nav ul a:hover {
  background-color: #192d50;
  color: #ffffff;
}
.son-subpage-nav ul a.son-active {
  background-color: #192d50;
  color: #ffffff;
  cursor: text;
}
/*------------------------------------*\
    PRODUCT
\*------------------------------------*/
.son-products {
  background-color: #eeeeee;
}
.son-products .son-container {
  padding: 0;
}
.son-products + .son-products {
  padding-top: 0;
}
.son-products .son-section-description {
  margin-top: 0;
  margin-bottom: 30px;
}
/* Product */
.son-product-wrap {
  position: relative;
}
.son-product {
  background-color: #ffffff;
  box-shadow: 0 0 4px #999999;
  padding: 35px 25px;
  position: relative;
  overflow: hidden;
}
.son-product.son-product-1 {
  margin-bottom: 15px;
  padding: 35px 25px 50px 25px;
}
/* Product Tag*/
.son-product-tags,
.son-product-large div.son-product-tags {
  position: absolute;
  z-index: 4000;
  top: 0;
  right: 30px;
}
.son-product-tags .son-product-tag,
.son-product-large div.son-product-tags .son-product-tag {
  float: left;
  text-transform: uppercase;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  background-color: #192d50;
  height: 55px;
  text-align: center;
}
.son-product-tags .son-product-tag + .son-product-tag,
.son-product-large div.son-product-tags .son-product-tag + .son-product-tag {
  margin-left: 12px;
}
.son-product-tags .son-product-tag span,
.son-product-large div.son-product-tags .son-product-tag span {
  font-size: 20px;
  font-weight: 400;
}
.son-product-tags .son-product-tag:last-of-type::after,
.son-product-large div.son-product-tags .son-product-tag:last-of-type::after {
  clear: both;
}
.son-product-tags .son-product-tag.son-product-tag-small span,
.son-product-large div.son-product-tags .son-product-tag.son-product-tag-small span {
  font-size: 14px;
  line-height: 16px;
}
/* MOBILE + TABLET + DESKTOP */
@media screen and (min-width: 480px) {
  .son-products .son-container {
    padding: 0 50px;
  }
  .son-product.son-product-1 {
    padding: 35px 35px 50px 35px;
  }
}
/* MOBILE + TABLET*/
@media screen and (min-width: 768px) {
  .son-product-large .son-product-tags {
    right: auto;
    left: 30px;
  }
  .son-product.son-product-1 {
    padding: 40px 40px 50px 40px;
  }
  .son-product-large .son-product-tag {
    font-size: 30px;
    top: 30px;
    left: 30px;
  }
}
/*------------------------------------*\
    PRODUCT SMALL
\*------------------------------------*/
.son-product-small {
  padding: 25px;
}
.son-product-small .son-product-title {
  font-size: 26px;
  line-height: 1.1em;
  margin-bottom: 10px;
}
.son-product-small.son-product-with-tag {
  padding-top: 30px;
}
.son-product-small.son-product-with-tag .son-product-title {
  margin-right: 60px;
}
.son-product-small .son-product-tag {
  right: 20px;
  left: auto;
}
/*------------------------------------*\
    PRODUCT FILTER
\*------------------------------------*/
/* Product Filter */
.son-products-filter {
  text-align: right;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: -30px;
}
.son-products-filter h5 {
  margin-bottom: 5px;
  text-transform: uppercase;
}
.son-products-filter .son-filters {
  display: inline-block;
}
.son-products-filter .son-filter {
  display: inline-block;
  color: #192d50;
  border: 2px solid #192d50;
  padding: 5px 10px;
  font-weight: 400;
}
.son-products-filter .son-filter:hover {
  background-color: #192d50;
  color: #ffffff;
}
.son-products-filter li.uk-active .son-filter {
  background-color: #192d50;
  color: #ffffff;
}
/* MOBILE + TABLET + DESKTOP */
@media screen and (min-width: 480px) {
  .son-products-filter {
    margin-left: 0;
    margin-right: 0;
  }
}
/*------------------------------------*\
    PRODUCT SLIDESHOW / IMAGE
\*------------------------------------*/
.son-product-slideshow {
  margin: 0 auto;
  width: 92%;
  /* Slidenav */
}
.son-product-slideshow .uk-cover-background {
  background-size: contain;
}
.son-product-slideshow.uk-slidenav-position .uk-slidenav::before {
  color: rgba(25, 45, 80, 0.3);
}
.son-product-slideshow.uk-slidenav-position .uk-slidenav:hover::before {
  color: rgba(25, 45, 80, 0.5);
}
.son-product-slideshow.uk-slidenav-position .uk-slidenav-previous {
  left: -40px;
}
.son-product-slideshow.uk-slidenav-position .uk-slidenav-next {
  right: -40px;
}
.son-product-large .son-product-slideshow {
  max-width: 400px;
  margin-top: -20px;
}
.son-product-2 .son-product-slideshow {
  margin-bottom: 20px;
}
.son-product-small .son-product-slideshow.son-product-img {
  width: 100%;
}
.son-product-small .son-product-slideshow .uk-dotnav {
  margin-top: -5px;
}
.son-product-3 .son-product-slideshow {
  max-width: -30px;
}
.son-product-3 .uk-slidenav-position .uk-slidenav-previous {
  left: -30px;
}
.son-product-3 .uk-slidenav-position .uk-slidenav-next {
  right: -30px;
}
.son-product-4 .son-product-slideshow {
  margin-top: 15px;
}
/* TABLET + DESKTOP */
/* TABLET + DESKTOP */
/*------------------------------------*\
    PRODUCT TOGGLE
\*------------------------------------*/
/* Toggle Button*/
.son-toggle-button {
  position: absolute;
  border-radius: 50%;
  padding: 0;
  bottom: -20px;
  left: 50%;
  margin-left: -30px;
  height: 60px;
  width: 60px;
  cursor: pointer;
  text-align: center;
}
.son-toggle-button i::before {
  font-size: 28px;
  line-height: 60px;
}
.son-toggle-button.son-active-toggle i::before {
  content: '\e803';
}
.son-toggle-button:active {
  background-color: #192d50;
  color: #ffffff;
}
/* Toggle Section*/
.son-product-toggle {
  display: none;
  height: auto;
  max-height: 800px;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  -moz-transition: max-height 1s;
  -ms-transition: max-height 1s;
  -o-transition: max-height 1s;
  transition: max-height 1s;
}
.son-product-toggle > div:first-of-type {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .son-product-toggle {
    margin-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .son-product-toggle {
    margin-top: 40px;
  }
}
/*------------------------------------*\
    PRODUCT COLORS
\*------------------------------------*/
.son-product-colors {
  margin-left: -5px;
  margin-top: 5px;
}
.son-product-colors li {
  padding-left: 5px;
  margin-top: 5px;
}
.son-color,
.son-color-fields .son-color {
  float: left;
  height: 40px;
  width: 40px;
  cursor: pointer;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 5px;
  border-radius: 50%;
  box-sizing: content-box;
  text-indent: 0;
  text-align: center;
}
.son-color.son-polished,
.son-color-fields .son-color.son-polished {
  background: #e0e0e0;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #fefefe 0%, #e0e0e0 54%, #6c6c6c 68%, #525252 100%);
  background: -webkit-linear-gradient(-65deg, #fefefe 0%, #e0e0e0 54%, #6c6c6c 68%, #525252 100%);
  background: linear-gradient(155deg, #fefefe 0%, #e0e0e0 54%, #6c6c6c 68%, #525252 100%);
}
.son-color.son-silver,
.son-color-fields .son-color.son-silver {
  background: #c4c4c4;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #e8e8e8 0%, #c4c4c4 48%, #848484 70%, #515151 100%);
  background: -webkit-linear-gradient(-65deg, #e8e8e8 0%, #c4c4c4 48%, #848484 70%, #515151 100%);
  background: linear-gradient(155deg, #e8e8e8 0%, #c4c4c4 48%, #848484 77%, #515151 100%);
}
.son-color.son-nature,
.son-color-fields .son-color.son-nature {
  background: #cdcdcd;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #e8e8e8 0%, #cdcdcd 48%, #a8a8a8 70%, #919191 100%);
  background: -webkit-linear-gradient(-65deg, #e8e8e8 0%, #cdcdcd 48%, #a8a8a8 70%, #919191 100%);
  background: linear-gradient(155deg, #e8e8e8 0%, #cdcdcd 48%, #a8a8a8 77%, #919191 100%);
}
.son-color.son-black,
.son-color-fields .son-color.son-black {
  background: #4f4f4f;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #939393 0%, #4f4f4f 48%, #111111 70%, #000000 100%);
  background: -webkit-linear-gradient(-65deg, #939393 0%, #4f4f4f 48%, #111111 70%, #000000 100%);
  background: linear-gradient(155deg, #939393 0%, #4f4f4f 48%, #111111 77%, #000000 100%);
}
.son-color.son-red,
.son-color-fields .son-color.son-red {
  background: #ae230e;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #de5d54 0%, #ae230e 48%, #600b0c 70%, #2c0203 100%);
  background: -webkit-linear-gradient(-65deg, #de5d54 0%, #ae230e 48%, #600b0c 70%, #2c0203 100%);
  background: linear-gradient(155deg, #de5d54 0%, #ae230e 48%, #600b0c 77%, #2c0203 100%);
}
.son-color.son-blue,
.son-color-fields .son-color.son-blue {
  background: #466bb1;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #6097da 0%, #466bb1 48%, #171350 70%, #010631 100%);
  background: -webkit-linear-gradient(-65deg, #6097da 0%, #466bb1 48%, #171350 70%, #010631 100%);
  background: linear-gradient(155deg, #6097da 0%, #466bb1 48%, #171350 77%, #010631 100%);
}
.son-color.son-orange,
.son-color-fields .son-color.son-orange {
  background: #e29516;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #eeae2b 0%, #e29516 48%, #853f00 70%, #512000 100%);
  background: -webkit-linear-gradient(-65deg, #eeae2b 0%, #e29516 48%, #853f00 70%, #512000 100%);
  background: linear-gradient(155deg, #eeae2b 0%, #e29516 48%, #853f00 77%, #512000 100%);
}
.son-color.son-darkgreen,
.son-color-fields .son-color.son-darkgreen {
  background: #456040;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #668b5f 0%, #456040 48%, #253f21 70%, #010f00 100%);
  background: -webkit-linear-gradient(-65deg, #668b5f 0%, #456040 48%, #253f21 70%, #010f00 100%);
  background: linear-gradient(155deg, #668b5f 0%, #456040 48%, #253f21 77%, #010f00 100%);
}
.son-color.son-gold,
.son-color-fields .son-color.son-gold {
  background: #dbb220;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #ffe16f 0%, #dbb220 48%, #a57707 70%, #533801 100%);
  background: -webkit-linear-gradient(-65deg, #ffe16f 0%, #dbb220 48%, #a57707 70%, #533801 100%);
  background: linear-gradient(155deg, #ffe16f 0%, #dbb220 48%, #a57707 77%, #533801 100%);
}
.son-color.son-pink,
.son-color-fields .son-color.son-pink {
  background: #edceca;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #f3e7e4 0%, #edceca 48%, #b08087 70%, #5c363f 100%);
  background: -webkit-linear-gradient(-65deg, #f3e7e4 0%, #edceca 48%, #b08087 70%, #5c363f 100%);
  background: linear-gradient(155deg, #f3e7e4 0%, #edceca 48%, #b08087 77%, #5c363f 100%);
}
.son-color.son-purple,
.son-color-fields .son-color.son-purple {
  background: #ac44bb;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #e8aaff 0%, #ac44bb 48%, #600b5b 70%, #2c0227 100%);
  background: -webkit-linear-gradient(-65deg, #e8aaff 0%, #ac44bb 48%, #600b5b 70%, #2c0227 100%);
  background: linear-gradient(155deg, #e8aaff 0%, #ac44bb 48%, #600b5b 77%, #2c0227 100%);
}
.son-color.son-lightgreen,
.son-color-fields .son-color.son-lightgreen {
  background: #6eb551;
  /* Old browsers */
  background: -moz-linear-gradient(-65deg, #84da6f 0%, #6eb551 48%, #2e640f 70%, #0f2e03 100%);
  background: -webkit-linear-gradient(-65deg, #84da6f 0%, #6eb551 48%, #2e640f 70%, #0f2e03 100%);
  background: linear-gradient(155deg, #84da6f 0%, #6eb551 48%, #2e640f 77%, #0f2e03 100%);
}
.son-color.son-carte,
.son-color-fields .son-color.son-carte {
  background-color: #eee;
}
.son-color.son-si,
.son-color-fields .son-color.son-si,
.son-color.son-si-carte,
.son-color-fields .son-color.son-si-carte {
  background-color: #d3d3d3;
}
.son-color.son-sw,
.son-color-fields .son-color.son-sw,
.son-color.son-sw-carte,
.son-color-fields .son-color.son-sw-carte {
  background-color: #111111;
}
.son-color.son-silver-clear,
.son-color-fields .son-color.son-silver-clear {
  background: #c4c4c4;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e8e8e8 0%, #c4c4c4 28%, #848484 60%, #e2e2e2 61%);
  background: -webkit-linear-gradient(top, #e8e8e8 0%, #c4c4c4 28%, #848484 60%, #e2e2e2 61%);
  background: linear-gradient(to bottom, #e8e8e8 0%, #c4c4c4 28%, #848484 60%, #e2e2e2 61%);
}
.son-color.son-silver-red,
.son-color-fields .son-color.son-silver-red {
  background: #c4c4c4;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e8e8e8 0%, #c4c4c4 28%, #848484 60%, #d1443b 61%);
  background: -webkit-linear-gradient(top, #e8e8e8 0%, #c4c4c4 28%, #848484 60%, #d1443b 61%);
  background: linear-gradient(to bottom, #e8e8e8 0%, #c4c4c4 28%, #848484 60%, #d1443b 61%);
}
.son-color.son-polished-red,
.son-color-fields .son-color.son-polished-red {
  background: #e0e0e0;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e0e0e0 0%, #e0e0e0 28%, #e0e0e0 60%, #d1443b 61%);
  background: -webkit-linear-gradient(top, #e0e0e0 0%, #e0e0e0 28%, #e0e0e0 60%, #d1443b 61%);
  background: linear-gradient(to bottom, #e0e0e0 0%, #e0e0e0 28%, #e0e0e0 60%, #d1443b 61%);
}
.son-color.son-black-clear,
.son-color-fields .son-color.son-black-clear {
  background: #4f4f4f;
  /* Old browsers */
  background: -moz-linear-gradient(top, #939393 0%, #4f4f4f 28%, #111111 60%, #e2e2e2 61%);
  background: -webkit-linear-gradient(top, #939393 0%, #4f4f4f 28%, #111111 60%, #e2e2e2 61%);
  background: linear-gradient(to bottom, #939393 0%, #4f4f4f 28%, #111111 60%, #e2e2e2 61%);
}
.son-color.son-black-red,
.son-color-fields .son-color.son-black-red {
  background: #4f4f4f;
  /* Old browsers */
  background: -moz-linear-gradient(top, #939393 0%, #4f4f4f 28%, #111111 60%, #d1443b 61%);
  background: -webkit-linear-gradient(top, #939393 0%, #4f4f4f 28%, #111111 60%, #d1443b 61%);
  background: linear-gradient(to bottom, #939393 0%, #4f4f4f 28%, #111111 60%, #d1443b 61%);
}
.son-color.son-red-clear,
.son-color-fields .son-color.son-red-clear {
  background: #ae230e;
  /* Old browsers */
  background: -moz-linear-gradient(top, #de5d54 0%, #ae230e 28%, #600b0c 60%, #e2e2e2 61%);
  background: -webkit-linear-gradient(top, #de5d54 0%, #ae230e 28%, #600b0c 60%, #e2e2e2 61%);
  background: linear-gradient(to bottom, #de5d54 0%, #ae230e 28%, #600b0c 60%, #e2e2e2 61%);
}
.son-color.son-blue-clear,
.son-color-fields .son-color.son-blue-clear {
  background: #466bb1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #6097da 0%, #466bb1 28%, #171350 60%, #e2e2e2 61%);
  background: -webkit-linear-gradient(top, #6097da 0%, #466bb1 28%, #171350 60%, #e2e2e2 61%);
  background: linear-gradient(to bottom, #6097da 0%, #466bb1 28%, #171350 60%, #e2e2e2 61%);
}
.son-color.son-orange-clear,
.son-color-fields .son-color.son-orange-clear {
  background: #e29516;
  /* Old browsers */
  background: -moz-linear-gradient(top, #eeae2b 0%, #e29516 28%, #853f00 60%, #e2e2e2 61%);
  background: -webkit-linear-gradient(top, #eeae2b 0%, #e29516 28%, #853f00 60%, #e2e2e2 61%);
  background: linear-gradient(to bottom, #eeae2b 0%, #e29516 28%, #853f00 60%, #e2e2e2 61%);
}
.son-color.son-lightgreen-clear,
.son-color-fields .son-color.son-lightgreen-clear {
  background: #6eb551;
  /* Old browsers */
  background: -moz-linear-gradient(top, #84da6f 0%, #6eb551 28%, #2e640f 60%, #e2e2e2 61%);
  background: -webkit-linear-gradient(top, #84da6f 0%, #6eb551 28%, #2e640f 60%, #e2e2e2 61%);
  background: linear-gradient(to bottom, #84da6f 0%, #6eb551 28%, #2e640f 60%, #e2e2e2 61%);
}
.son-color.son-carte,
.son-color-fields .son-color.son-carte,
.son-color.son-si-carte,
.son-color-fields .son-color.son-si-carte,
.son-color.son-sw-carte,
.son-color-fields .son-color.son-sw-carte {
  color: #999999;
}
.son-color.son-carte::after,
.son-color-fields .son-color.son-carte::after,
.son-color.son-si-carte::after,
.son-color-fields .son-color.son-si-carte::after,
.son-color.son-sw-carte::after,
.son-color-fields .son-color.son-sw-carte::after {
  content: '?';
  font-weight: 700;
  font-size: 35px;
  line-height: 40px;
}
.son-color.son-carte.uk-active::after,
.son-color-fields .son-color.son-carte.uk-active::after,
.son-color.son-si-carte.uk-active::after,
.son-color-fields .son-color.son-si-carte.uk-active::after,
.son-color.son-sw-carte.uk-active::after,
.son-color-fields .son-color.son-sw-carte.uk-active::after,
.son-color.son-carte.son-active::after,
.son-color-fields .son-color.son-carte.son-active::after,
.son-color.son-si-carte.son-active::after,
.son-color-fields .son-color.son-si-carte.son-active::after,
.son-color.son-sw-carte.son-active::after,
.son-color-fields .son-color.son-sw-carte.son-active::after {
  line-height: 42px;
  font-size: 36px;
}
.son-color:hover,
.son-color-fields .son-color:hover {
  color: #999999;
  text-decoration: none;
  box-shadow: 0 2px 4px #969696;
}
.son-color.uk-active,
.son-color-fields .son-color.uk-active,
.son-color.son-active,
.son-color-fields .son-color.son-active {
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px #969696;
  width: 42px;
  height: 42px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: -2px;
}
.son-colors-inactive .son-color:hover,
.son-color-filds.son-colors-inactive .son-color:hover {
  box-shadow: none;
  cursor: default;
}
/* DESKTOP */
@media (min-width: 960px) {
  .son-product-colors {
    margin-left: -15px;
    margin-right: -10px;
  }
}
/*------------------------------------*\
   PRODUCT TABLE
\*------------------------------------*/
.son-product-table {
  width: 100%;
}
.son-product-table.son-active {
  display: table;
}
.son-product-table.son-active + .son-product-table.son-active {
  margin-top: 15px;
}
.son-product-table .son-tag {
  padding-left: 10px;
  font-weight: 700;
  color: #192d50;
  text-transform: uppercase;
}
.son-product-table thead th:last-of-type {
  font-size: 23px;
  color: #192d50;
  line-height: 1.1em;
  text-align: left;
  font-weight: 700;
}
.son-product-table th {
  text-align: left;
  padding-bottom: 4px;
}
.son-product-table th:last-of-type {
  text-align: right;
}
.son-product-table .son-price {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 20px;
}
.son-product-table .son-price th {
  color: #bbb;
  line-height: 1.22em;
  padding-bottom: 0;
  padding-top: 4px;
}
.son-product-table .son-price th span {
  color: #192d50;
  font-weight: 700;
  font-size: 23px;
  margin-left: 7px;
}
.son-product-1 .son-product-table {
  display: none;
}
.son-product-1 .son-product-table.son-active {
  display: table;
}
.son-product-2 .son-product-table {
  margin-top: 20px;
}
.son-product-3 .son-product-table {
  margin-top: 10px;
}
.son-product-4 .son-product-table thead th:last-of-type {
  font-size: 21px;
}
/*------------------------------------*\
   PRODUCT DESCRIPTION + DETAILS
\*------------------------------------*/
.son-product-description,
.son-product-details {
  font-size: 17px;
  line-height: 1.22em;
}
.son-product-description p,
.son-product-details p {
  margin-top: 7px;
  margin-bottom: 7px;
  line-height: 1.22em;
}
.son-product-description p:first-child,
.son-product-details p:first-child {
  margin-top: 0;
}
.son-product-description img,
.son-product-details img {
  border: 1px solid #ccc;
  width: 400px;
  display: block;
  margin: auto;
}
.son-product-description a,
.son-product-details a {
  text-decoration: underline;
}
.son-product-description > *:last-child,
.son-product-details > *:last-child {
  margin-bottom: 0;
}
.son-product-details {
  margin-bottom: 15px !important;
}
.son-product-details > *:last-child {
  margin-bottom: 0;
}
.son-product-3 .son-product-description {
  margin-top: 10px;
}
.son-product-pdfs {
  margin-top: 20px;
}
/*------------------------------------*\
    POST PREVIEW / POST ARCHIVE
\*------------------------------------*/
.son-post-preview,
.son-post-archive {
  background: #eeeeee;
}
.son-post-preview > .son-fullwidth,
.son-post-archive > .son-fullwidth {
  max-width: none;
}
.son-post-preview + .son-post-preview,
.son-post-archive + .son-post-preview {
  padding-top: 0;
}
.son-post-preview .son-post,
.son-post-archive .son-post {
  background-color: #ffffff;
  box-shadow: 0 0 3px #888888;
  overflow: hidden;
}
.son-post-preview .son-post .son-post-title,
.son-post-archive .son-post .son-post-title {
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 15px;
}
.son-post-preview .son-post .son-post-title a,
.son-post-archive .son-post .son-post-title a {
  font-weight: 600;
}
.son-post-preview .son-post .son-post-img,
.son-post-archive .son-post .son-post-img {
  background-color: #ffffff;
  width: 100%;
}
.son-post-preview .son-post .son-post-img .son-background-2,
.son-post-archive .son-post .son-post-img .son-background-2 {
  background-color: #192d50;
}
.son-post-preview .son-post .son-post-img .son-background-3,
.son-post-archive .son-post .son-post-img .son-background-3 {
  background-color: #eeeeee;
}
.son-post-preview .son-post .son-post-img img,
.son-post-archive .son-post .son-post-img img {
  width: 100%;
  margin: 0 auto;
}
.son-post-preview .son-post .son-post-content,
.son-post-archive .son-post .son-post-content {
  padding: 20px;
}
.son-post-preview .son-post .son-post-content p,
.son-post-archive .son-post .son-post-content p {
  margin-top: 7px;
  margin-bottom: 0;
  line-height: 1.22em;
}
.son-post-preview .son-post .son-button,
.son-post-archive .son-post .son-button {
  padding: 10px 12px 10px 12px;
  margin-top: 15px;
}
.son-post-preview .uk-slideset-nav,
.son-post-archive .uk-slideset-nav {
  padding-top: 20px;
}
.son-post-preview .uk-slideset-nav.uk-invisible,
.son-post-archive .uk-slideset-nav.uk-invisible {
  display: none;
}
.son-news-preview + .son-news-banner,
.son-news-banner + .son-news-preview,
.son-technology-preview + .son-technology-banner,
.son-technology-banner + .son-technology-preview {
  margin-top: -30px;
}
/* TABLET */
@media (min-width: 768px) {
  .son-news-preview + .son-news-banner,
  .son-news-banner + .son-news-preview,
  .son-technology-preview + .son-technology-banner,
  .son-technology-banner + .son-technology-preview {
    margin-top: -40px;
  }
}
/* DESKTOP */
@media (min-width: 960px) {
  .son-news-preview + .son-news-banner,
  .son-news-banner + .son-news-preview,
  .son-technology-preview + .son-technology-banner,
  .son-technology-banner + .son-technology-preview {
    margin-top: -60px;
  }
}
/*------------------------------------*\
    SINGLE POST PAGES
\*------------------------------------*/
.single .son-container p {
  max-width: 100%;
}
.single .son-post-title-tooltip {
  max-width: 250px;
}
.single .son-post-title-tooltip strong {
  color: #ffffff;
  line-height: 20px;
}
.single .son-section-content p {
  font-size: 19px;
  line-height: 1.5em;
}
.single .son-post-intro {
  font-weight: 600;
}
.single .son-post-intro p {
  font-size: 20px;
  line-height: 1.5em;
}
.single .son-post-intro .son-post-date {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
}
.single .son-post-intro .son-line {
  border-bottom: 3px solid #666;
  width: 40px;
}
.single .son-post-intro b,
.single .son-post-intro strong {
  font-weight: 700;
  font-style: normal;
}
/* TABLET */
@media (min-width: 768px) {
  .single .son-section-content p {
    font-size: 20px;
    line-height: 1.5em;
  }
  .single .son-post-intro p {
    font-size: 21px;
    line-height: 1.5em;
  }
}
/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.son-footer {
  position: relative;
  z-index: 5000;
  border-top: 3px solid #ffffff;
}
.son-footer h3 {
  font-weight: 400;
  margin-bottom: 20px !important;
}
.son-footer a {
  font-weight: 400;
  text-decoration: none;
}
.son-footer-menu {
  border-left: 3px solid #fff;
  padding-left: 20px;
  margin-bottom: 35px !important;
}
.son-footer-menu h4 {
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.son-footer-menu ul {
  padding-left: 0;
  list-style-type: none;
}
.son-footer-menu li {
  margin-bottom: 7px;
}
/*------------------------------------*\
    CONTENT
\*------------------------------------*/
/*------------------------------------*\
    CONTENT IMAGE
\*------------------------------------*/
.son-content-text p[style="text-align: center;"] {
  margin-left: auto;
  margin-right: auto;
}
/*------------------------------------*\
    CONTENT IMAGE
\*------------------------------------*/
.son-content-image {
  position: relative;
}
.son-content-image .son-image-container {
  overflow: hidden;
  height: 250px;
}
.son-content-image.son-section {
  padding: 0;
}
.son-content-image .uk-overlay-panel {
  position: relative;
  background-color: #192d50;
  padding-top: 35px;
  padding-bottom: 35px;
}
.son-content-image .son-overlay-right {
  float: right;
  text-align: right;
}
.son-content-image .son-cover-image {
  height: 100%;
  width: 100%;
}
.son-content-image h2 {
  font-size: 28px;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 0 0 3px #000000;
}
.son-content-image h3 {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 0 3px #000000;
}
.son-content-image figcaption {
  font-size: 28px;
  line-height: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 0 0 3px #000000;
}
.son-content-image p {
  font-size: 23px;
  line-height: 1.1em;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-shadow: 0 0 3px #000000;
}
.son-content-image .son-button {
  text-shadow: 0 0 3px #000000;
}
.son-content-image .son-button:hover {
  text-shadow: none;
}
.son-content-image [data-uk-scrollspy*=uk-animation-]:not([data-uk-scrollspy*=target]) {
  opacity: 1;
}
@media (min-width: 768px) {
  .son-content-image .son-image-container {
    height: 350px;
  }
  .son-content-image .uk-overlay-panel {
    position: absolute;
    background-color: transparent;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .son-content-image .uk-overlay-panel > div {
    max-width: 450px;
  }
  .son-content-image h2 {
    font-size: 35px;
    line-height: 1.1em;
    margin-bottom: 15px;
  }
  .son-content-image p {
    font-size: 26px;
    line-height: 1.1em;
  }
}
@media (min-width: 960px) {
  .son-content-image .son-image-container {
    height: 460px;
  }
  .son-content-image .uk-overlay-panel {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .son-content-image h2 {
    font-size: 40px;
    line-height: 1.1em;
    margin-bottom: 15px;
  }
}
/*------------------------------------*\
    CONTENT VIDEO
\*------------------------------------*/
.son-content-video video {
  cursor: pointer;
}
/*------------------------------------*\
    CONTENT GRID
\*------------------------------------*/
.son-content-grid .son-section-img {
  position: relative;
  min-height: 250px;
}
.son-content-grid .uk-grid > div:first-child {
  margin-bottom: 50px;
}
.son-content-grid .son-section-text p:last-child {
  margin-bottom: 0;
}
/* TABELT + DESKTOP */
@media (min-width: 768px) {
  .son-content-grid .uk-grid > div:first-child {
    margin-bottom: 0;
  }
}
/*------------------------------------*\
    PRODUCT FEATURES
\*------------------------------------*/
.son-product-features {
  text-align: center;
}
.son-product-features .uk-slider > li {
  padding-left: 10px;
  padding-right: 10px;
}
.son-product-features h4 {
  font-weight: 600;
  font-style: normal;
}
.son-product-features h4:after {
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: 12px;
  border-top: 1px solid #ffffff;
  width: 30px;
}
.son-product-features p {
  margin-top: 12px;
}
.son-product-features .son-feature-img {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  overflow: hidden;
}
/*------------------------------------*\
    PRODUCT ACCESSORIES
\*------------------------------------*/
.son-product-accessories {
  background-color: #eeeeee;
}
.son-product-accessories .son-section-title {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.son-product-accessories .son-section-description {
  text-align: left;
  line-height: 1.22em;
}
.son-product-accessories .son-product-title {
  font-size: 21px;
  line-height: 1.22em;
  font-style: normal;
  font-weight: 600;
}
.son-product-accessories .son-product {
  position: relative;
  padding: 15px;
  height: 100%;
}
.son-product-accessories .son-product .son-product-img {
  height: 100%;
}
.son-product-accessories .son-product .son-button {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.son-product-accessories .son-product.son-product-separated-link .son-product-title {
  margin-top: 15px;
  margin-bottom: 0;
  margin-right: 40px;
}
.son-product-accessories.son-one-link .son-section-title {
  line-height: 40px;
}
.son-product-accessories.son-one-link .son-section-title .son-button-icon {
  margin-left: 10px;
}
.son-product-accessories.son-one-link .son-product-title {
  margin-bottom: 0;
  text-align: center;
}
/* SMARTPHONE + TABELT */
@media (min-width: 480px) {
  .son-product-accessories .son-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
/* TABELT + DESKTOP */
@media (min-width: 768px) {
  .son-product-accessories .son-section-title .son-button-icon {
    margin-left: 20px;
  }
}
/*------------------------------------*\
    PRODUCT PREVIEW
\*------------------------------------*/
.son-product-preview .son-preview .uk-slidenav {
  top: auto;
  bottom: -30px;
}
.son-product-preview .son-preview figure {
  position: relative;
  overflow: hidden;
}
.son-product-preview .son-preview img {
  margin-bottom: 49px;
}
.son-product-preview .son-preview figcaption,
.son-product-preview .son-preview .son-img-caption {
  position: relative;
  text-align: center;
  margin-top: -50px;
  padding-top: 15px;
}
.son-product-preview .son-preview h4 {
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 15px;
}
.son-product-preview .son-preview h4::after {
  content: '\e802';
  position: absolute;
  font-family: fontello;
  font-style: normal;
  right: 7px;
  top: 50%;
  margin-top: -10px;
  font-weight: 400;
}
.son-product-preview .son-preview p {
  font-size: 17px;
  line-height: 1.22em;
  margin: 0;
  padding: 0 20px 20px 20px;
}
.son-product-preview .son-preview .son-button {
  width: 100%;
}
.son-product-preview .uk-slideset-nav {
  margin-top: 0;
}
.son-product-preview .uk-slideset-nav.uk-invisible {
  display: none;
}
@media (min-width: 960px) {
  .son-product-preview .son-preview {
    overflow: hidden;
  }
  .son-product-preview .son-preview > div figcaption {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition-duration: .3s;
    transition-timing-function: ease-out;
    transition-property: opacity,transform,filter;
  }
  .son-product-preview .son-preview > div:hover figcaption {
    -webkit-transform: translateX(0) translateY(50px);
    transform: translateX(0) translateY(50px);
    background-color: #2a4065;
  }
  .son-product-preview .son-preview figcaption {
    position: absolute;
    left: 0;
    right: 0;
    padding-top: 0;
    bottom: 50px;
  }
  .son-product-preview .son-preview h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    position: relative;
    min-height: 50px;
    line-height: 1em;
    margin-bottom: 0;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .son-product-preview .son-preview h4:after {
    top: 0;
    margin-top: 0;
    padding-top: 14px;
  }
  .son-product-preview .son-preview .son-tag {
    position: absolute;
    top: -23px;
    height: 46px;
    width: 46px;
    background-color: #192d50;
    border-radius: 50%;
    border: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .son-product-preview .son-preview p {
    opacity: 0;
    transition-duration: .3s;
    transition-timing-function: ease-out;
    transition-property: opacity,transform,filter;
  }
  .son-product-preview .son-preview:hover p {
    opacity: 1;
  }
}
/*------------------------------------*\
    ACCORDION
\*------------------------------------*/
.son-accordion-entry {
  border-bottom: 2px solid #192d50;
  margin-bottom: 20px;
}
.uk-accordion-title {
  position: relative;
  margin-bottom: 0;
  background-color: transparent;
  padding: 3px 30px 3px 0;
  line-height: 1.1em;
}
.uk-accordion-title:hover {
  color: #bd0f41;
}
.uk-accordion-title.uk-active::after {
  content: '\e803';
}
.uk-accordion-title::after {
  content: '\e800';
  font-family: fontello;
  display: inline-block;
  position: absolute;
  right: 0;
}
.uk-accordion-content {
  padding-left: 0;
  padding-right: 0;
  padding-top: 7px;
}
.uk-accordion-content a {
  text-decoration: underline;
}
/* Accordion Secondary */
.son-accordion-secondary .son-accordion-entry {
  border-bottom: none;
}
.son-accordion-secondary .uk-accordion-title {
  background-color: #192d50;
  padding: 10px 25px 10px 15px;
  color: #ffffff;
}
.son-accordion-secondary .uk-accordion-title:hover {
  background-color: #2a4065;
}
.son-accordion-secondary .uk-accordion-title::after {
  right: 10px;
}
.son-accordion-secondary .uk-accordion-content {
  padding: 15px 0 5px 0;
}
.son-accordion-secondary .uk-accordion-content a {
  text-decoration: underline;
}
/* TABELT + DESKTOP */
@media (min-width: 768px) {
  .son-accordion .uk-grid > * > :last-child {
    margin-bottom: 20px;
  }
  .son-accordion-secondary .uk-accordion-title {
    padding: 10px 30px;
  }
  .son-accordion-secondary .uk-accordion-title::after {
    right: 30px;
  }
}
/*------------------------------------*\
    IMG GALLERY
\*------------------------------------*/
.son-gallery-entry {
  padding: 4px;
  border: 1px solid rgba(25, 45, 80, 0.5);
  border-radius: 3px;
}
.uk-modal {
  z-index: 9000;
}
.uk-modal .uk-modal-dialog {
  padding: 7px;
  border-radius: 3px;
}
/*------------------------------------*\
    CONTENT TEXT
\*------------------------------------*/
.son-section-content p,
.son-section-content ul > li {
  max-width: 900px;
  margin-bottom: 7px;
}
.son-section-content h4 {
  font-size: 21px;
  line-height: 1.1em;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
.son-section-content h4 + p {
  margin-top: 10px;
}
.son-section-content h4 + ul {
  margin-top: 10px;
}
.son-section-content p + h4 {
  margin-top: 25px;
}
.son-section-content ul + h4 {
  margin-top: 25px;
}
.son-section-content .son-lightbox-link .son-zoom-icon {
  display: none;
}
.son-section-content .son-lightbox-link .son-zoom-icon i {
  color: #192d50;
  width: 50px;
  height: 50px;
  background-color: rgba(220, 220, 220, 0.6);
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-size: 23px;
}
.son-section-content .son-lightbox-link:hover .son-zoom-icon {
  display: flex;
}
/* TABELT + DESKTOP */
@media (min-width: 768px) {
  .son-section-content h4 {
    font-size: 24px;
    line-height: 1.1em;
    margin-bottom: 15px;
  }
  .son-section-content img + p {
    max-width: 100%;
  }
  .son-section-content p + h4 {
    margin-top: 30px;
  }
  .son-section-content ul + h4 {
    margin-top: 30px;
  }
  .son-section-content .alignright {
    float: right;
    margin-left: 30px;
  }
  .son-section-content .alignleft {
    float: left;
    margin-right: 30px;
  }
}
/*------------------------------------*\
    CONTENT TIMELINE
\*------------------------------------*/
main > .son-content-timeline:first-child {
  padding-top: 0;
}
.son-content-timeline .son-timeline-entry {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.son-content-timeline .son-timeline-label {
  position: relative;
  padding-left: 7px;
  border-left: 2px solid #192d50;
  min-height: 94px;
  float: left;
  width: 100%;
}
.son-content-timeline .son-timeline-line {
  display: none;
}
.son-content-timeline .son-timeline-year {
  position: absolute;
  color: #ffffff;
  top: 7px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.son-content-timeline .son-timeline-text {
  padding: 7px 0 7px 20px;
  border-left: 2px solid #192d50;
  width: 100%;
}
/* TABELT + DESKTOP */
@media (min-width: 480px) {
  .son-content-timeline .son-timeline-entry {
    max-width: 900px;
    margin: 0 auto;
  }
  .son-content-timeline .son-timeline-entry:first-of-type .son-timeline-line {
    padding-top: 35px;
  }
  .son-content-timeline .son-timeline-entry:first-of-type .son-timeline-year {
    top: 35px;
  }
  .son-content-timeline .son-timeline-entry:first-of-type .son-timeline-text {
    padding-top: 35px;
  }
  .son-content-timeline .uk-grid > div:first-child {
    max-width: 115px;
  }
  .son-content-timeline .son-timeline-line {
    display: block;
    min-height: 87px;
    width: 40px;
    float: left;
    padding: 15px 0;
    height: 100%;
  }
  .son-content-timeline .son-timeline-line-left {
    border-right: 1px solid #192d50;
  }
  .son-content-timeline .son-timeline-line-right {
    border-left: 1px solid #192d50;
  }
  .son-content-timeline .son-timeline-year {
    top: 15px;
  }
  .son-content-timeline .son-timeline-label {
    border-left: none;
    padding-left: 0;
    min-height: 110px;
    width: auto;
  }
  .son-content-timeline .son-timeline-text {
    border-left: none;
    padding: 15px 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .son-content-timeline .uk-width-small-1-4 {
    width: 26%;
  }
  .son-content-timeline .uk-width-small-3-4 {
    width: 74%;
  }
}
/*------------------------------------*\
    CONTENT IMG ROW
\*------------------------------------*/
.son-content-image-row img {
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.son-content-image-row h4 {
  font-size: 21px;
  line-height: 1.1em;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
.son-content-image-row .uk-slideset img {
  border-left: none;
  border-right: none;
}
/* TABELT + DESKTOP */
@media (min-width: 768px) {
  .son-content-image-row h4 {
    font-size: 24px;
    line-height: 1.1em;
    margin-bottom: 15px;
  }
}
/*------------------------------------*\
    DEALERS
\*------------------------------------*/
.son-dealer {
  position: relative;
  background-color: #eeeeee;
  padding: 7px 15px;
  margin-bottom: 15px !important;
}
.son-dealer i {
  position: absolute;
  top: -2px;
  right: 10px;
  font-size: 26px;
}
.son-dealer p {
  line-height: 1.1em;
  margin-top: 7px;
  margin-bottom: 7px;
}
.son-dealer a {
  font-weight: 400;
}
/*------------------------------------*\
    DOWNLOADS
\*------------------------------------*/
.son-content-downloads .son-downloads-main {
  margin-bottom: 30px;
}
.son-download {
  line-height: 1em;
  border-radius: 5px;
  overflow: hidden;
}
.son-download .son-button {
  font-size: 16px;
  padding: 7px;
  font-style: normal;
  text-transform: uppercase;
  float: right;
  text-decoration: none;
}
.son-download .son-button::after {
  clear: both;
}
.son-download .son-download-title {
  background-color: #192d50;
  color: #ffffff;
  padding: 10px 20px 10px 15px;
}
.son-download .son-download-title:hover {
  background-color: #bd0f41;
  -webkit-transition: background-color 0.5s, color 0.5s;
  /* Safari */
  transition: background-color 0.5s, color 0.5s;
}
.son-download .son-download-title::after {
  right: 5px;
}
.son-download .son-download-content {
  background-color: #F1F1F1;
  margin: 0;
  padding: 10px;
}
.son-download .son-download-row + .son-download-row {
  margin-top: 5px;
}
.son-download .son-download-row::after {
  clear: both;
}
.son-download table {
  text-align: left;
  width: 100%;
}
.son-download table i {
  margin-right: 4px;
}
.son-download table .son-download-description {
  padding-bottom: 4px;
  padding-top: 4px;
}
.son-download table .son-download-description a {
  font-weight: 400;
  text-decoration: none;
}
.son-download table .son-download-button {
  text-align: right;
}
.son-download .son-language-flag {
  display: inline-block;
  max-width: 18px;
  position: relative;
  top: -2px;
  margin-left: 4px;
}
/*------------------------------------*\
    LINK BANNER
\*------------------------------------*/
.son-link-banner {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.son-link-banner.son-full-hover:hover {
  background-color: #bd0f41;
  -webkit-transition: background-color 0.5s, color 0.5s;
  /* Safari */
  transition: background-color 0.5s, color 0.5s;
}
.son-link-banner.son-section-small {
  padding-top: 25px;
  padding-bottom: 25px;
}
.son-link-banner p {
  text-align: center;
  margin-right: 30px;
  margin-left: 30px;
}
.son-link-banner p:last-of-type {
  margin-bottom: 0;
}
.son-link-banner .son-link-banner-title {
  font-size: 26px;
  line-height: 1.1em;
}
.son-link-banner .son-icon-arrow-right {
  font-size: 26px;
  line-height: 26px;
  color: #ffffff;
  position: absolute;
  right: 20px;
  top: 50%;
}
.son-link-banner .son-icon-arrow-right::before {
  position: relative;
  top: -13px;
}
/* SMARTPHONE + TABLET */
@media (min-width: 480px) {
  .son-link-banner .son-icon-arrow-right {
    right: 30px;
  }
}
/* TABELT + DESKTOP */
@media (min-width: 768px) {
  .son-link-banner.son-section-small {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .son-link-banner .son-icon-arrow-right {
    font-size: 30px;
    line-height: 1.1em;
  }
  .son-link-banner .son-link-banner-title {
    font-size: 30px;
    line-height: 1.1em;
  }
}
/*------------------------------------*\
   LIGHT CHECK
\*------------------------------------*/
.son-light-check-preview {
  position: relative;
  border-top: 6px solid #ffffff;
}
.son-light-check-preview:hover {
  cursor: pointer;
  border-top-color: #bd0f41;
}
.son-light-check-preview.uk-active {
  border-top-color: #bd0f41;
  padding-bottom: 15px;
  margin-bottom: -15px;
}
.son-light-check-preview h4 {
  font-size: 19px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.son-light-check-preview .son-number {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
  font-size: 30px;
  color: #ffffff;
}
/*------------------------------------*\
  SON XS A LA CARTE
\*------------------------------------*/
.son-content-son-xs-carte {
  background-color: #192d50;
}
.son-content-son-xs-carte .son-xs-img-wrap {
  position: relative;
  max-width: 700px;
}
.son-content-son-xs-carte .son-carte-img {
  max-width: 100%;
}
.son-content-son-xs-carte .son-carte-img.son-absolute {
  position: absolute;
  top: 0;
  left: 0;
}
.son-content-son-xs-carte .son-carte-img.son-hover {
  opacity: 0.8;
}
.son-content-son-xs-carte .son-hover-zone-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.son-content-son-xs-carte .son-hover-zone {
  cursor: pointer;
  height: 100%;
}
.son-content-son-xs-carte .son-hover-zone-1 {
  width: 13%;
}
.son-content-son-xs-carte .son-hover-zone-2 {
  width: 18%;
}
.son-content-son-xs-carte .son-hover-zone-3 {
  width: 20%;
}
.son-content-son-xs-carte .son-hover-zone-4 {
  width: 49%;
}
.son-content-son-xs-carte .son-color-examples .son-color {
  cursor: inherit;
}
.son-content-son-xs-carte .uk-modal-dialog {
  padding: 20px;
}
.son-content-son-xs-carte .son-pdf {
  margin-top: 20px;
}
