/*
 *  Build File
 *_______________________*/
/*
 *  Bits: Webfonts
 *________________________*/
@import url("http://fast.fonts.net/t/1.css?apiType=css&projectid=93b2f0b5-a09c-49eb-9a4c-38df4f20a040");
@font-face {
  font-family: "HelveticaNeueW02-57Cn";
  src: url("../webfonts/NeueHelvetica/abf5b6e2-74e5-446b-b924-22c9749b33b6.eot?#iefix");
  src: url("../webfonts/NeueHelvetica/abf5b6e2-74e5-446b-b924-22c9749b33b6.eot?#iefix") format("eot"), url("../webfonts/NeueHelvetica/21f9012d-b72a-422e-84c3-96619ee09ae4.woff2") format("woff2"), url("../webfonts/NeueHelvetica/c6206d3d-1ef8-44ad-96fa-c25e22252eb0.woff") format("woff"), url("../webfonts/NeueHelvetica/6fddd219-58f2-42d3-99d5-5abbfcfde1a1.ttf") format("truetype"), url("../webfonts/NeueHelvetica/f620604b-846b-4517-95c0-aa8a60dbb16c.svg#f620604b-846b-4517-95c0-aa8a60dbb16c") format("svg"); }

@font-face {
  font-family: "HelveticaNeueW02-67MdCn_694060";
  src: url("../webfonts/NeueHelvetica/06b85ec8-4a05-49b4-91c2-f44ec792102b.eot?#iefix");
  src: url("../webfonts/NeueHelvetica/06b85ec8-4a05-49b4-91c2-f44ec792102b.eot?#iefix") format("eot"), url("../webfonts/NeueHelvetica/1d0835c8-a06f-45d8-be7f-31caedf5b2d8.woff2") format("woff2"), url("../webfonts/NeueHelvetica/11398868-5e58-467f-86d1-650e10dd998a.woff") format("woff"), url("../webfonts/NeueHelvetica/285f76f1-9aeb-40f3-8df6-f87eb061df28.ttf") format("truetype"), url("../webfonts/NeueHelvetica/95e9b167-72f4-4e05-8337-e993a249b8b5.svg#95e9b167-72f4-4e05-8337-e993a249b8b5") format("svg"); }

/*
 *  Core: Config
 *________________________*/
/*
    Settings
*/
/*
    Breakpoints
*/
/*
    Colors
*/
/*
    Fonts
*/
/*
    Directories
 */
/*
 *  Core: Functions
 *________________________*/
/*
    get()
    _____

    Find and return the matching value
    from the given map and key.

    @param <map> Name of map
    @param <string> Key

    @return <string>

*/
/*
    breakpoint()
    ____________

    Find and return the matching
    breakpoint definition.

    @param <string> Breakpoint name

    @return <string> Condition

*/
/*
    color()
    _______

    Find and return the matching color.
    Returns red if not found.

    @param <string> Color name

    @return <string> Hex value

*/
/*
    rem()
    _____

    Converts a pixel value to a
    rem value.

    @param <string> Your value, in pixels
    @param <string> The base font-size to use

    @return <string>
*/
/*
    ease()
    _____

    @param <string> Name of easing function

    @return easing function
*/
/*
    round()
    _____

    @param <string> The value
    @param <string> Number of places to round to
    @param <string> The rounding mode e.g. round, ceil, floor...

    @return Rounded number
*/
/*
 *  Core: Mixins
 *______________________*/
/*
    media()
    _______

    Add a given media query and css ruleset to
    a sensible data structure.

    Usage:
        .selector {
            attribute: value;

            @include media(
                $query: <condition>,
                $declarations: (
                    attribute: value,
                    attribute: value
                )
            );
        }

    @param <map> The media query condition
    @param <list> CSS
*/
/*
    qualify()
    _________

    Qualify a selector to a specific tag.
    Only meant for use in unfortunate cases. :/

    Usage:
        .selector {
            color: blue;

            @include qualify(a) {
                color: yellow;
            }
        }

    CSS:
        .selector {
            color: blue;
        }

        a.selector {
            color: yellow;
        }

    @param <string> The tag you want to target
    @param <string> A tag specific ruleset
*/
/*
 *  Base: Normalise
 *________________________

    A very simple CSS reset.
    Nothing else should ever
    go in here.

*/
*,
*:before,
*:after {
  box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font: 100%/1.6 Arial, sans-serif;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

hr {
  background: #959faa;
  border: 0;
  height: 1px;
  margin: 1.875rem 0; }

/*
 *  Base: Typography
 *________________________*/
h1, h2, h3, h4, .legacyCss h2, h5, h6 {
  color: #2c3e50;
  font-weight: 400;
  line-height: 1.2; }

h1, h4, .legacyCss h2 {
  font-family: "HelveticaNeueW02-67MdCn_694060", sans-serif; }

h1:before, h1:after, h2:before, h2:after, h3:before, h3:after {
  content: '';
  display: table; }

h1:before, h2:before, h3:before {
  margin-top: -.1em; }

h1:after, h2:after, h3:after {
  margin-bottom: -.1em; }

h2, h3, h5, h6 {
  font-family: "HelveticaNeueW02-57Cn", sans-serif; }

a {
  color: inherit;
  text-decoration: none; }

blockquote {
  margin: 3.125rem 0; }

cite {
  color: #2c3e50;
  font-style: normal; }

ol,
ul {
  list-style-type: none;
  margin: 0;
  padding-left: 0; }

p {
  margin: 1.25rem 0; }

small {
  display: block;
  font-size: 0.875rem; }

sub,
sup {
  line-height: 1; }

/*
 *  Base: Media
 *______________________*/
img {
  border: 0;
  display: block;
  max-width: 100%; }

figure {
  margin: 0; }

iframe {
  border: 0;
  display: block;
  height: auto;
  width: 100%; }

/*
 *  Base: Form
 *________________________*/
form.loading {
  position: relative; }
  form.loading::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    content: ''; }
  form.loading::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    display: block;
    margin-top: -12px;
    margin-left: -12px;
    animation: rotate 1s ease-in-out infinite;
    content: ''; }

@keyframes rotate {
  to {
    transform: rotate(360deg); } }

/*
 *  Bits: Typography
 *______________________*/
/*
    Headlines
*/
h1,
.h1 {
  font-size: 2.25rem; }

h1 {
  margin: 0 0 2.5rem; }

h2,
.h2 {
  font-size: 1.875rem; }

h2 {
  margin: 3.125rem 0 1.875rem; }

h3,
h4,
.legacyCss h2,
h5 {
  margin: 2.5rem 0 1.25rem; }

h3 {
  font-size: 1.5rem; }

h4, .legacyCss h2 {
  font-size: 1.375rem; }

h5 {
  font-size: 1.25rem; }

h6 {
  font-size: 1.125rem;
  margin: 1.875rem 0 0; }
  h6 + * {
    margin-top: 10px !important; }

/*
    Copy Text
*/
.hr-bright {
  background: #fbb900; }

.hr-dark {
  background: #000; }

.hr-large {
  background: #cacfd3;
  height: 2px; }

.hero,
.meta {
  color: #919191; }

.hero {
  font-size: 1.25em;
  margin-bottom: 2.8125rem; }
  .hero + .hero {
    margin-top: -1.5625rem; }

.desc {
  color: #2c3e50;
  font-weight: 400; }

.caption {
  color: #2c3e50;
  font-size: 0.875rem;
  margin: 1.875rem 0;
  position: relative; }
  .caption:after {
    background: #cacfd3;
    content: '';
    display: block;
    height: 1px;
    margin-top: 1.875rem;
    width: 40px; }

/*
 *  Bits: Images
 *______________________*/
.image {
  margin: 2.5rem 0; }

.image--narrow {
  max-width: 27.5rem; }

.image--large {
  min-width: 5.625rem;
  margin: 2.5rem; }

/*
 *  Bits: Box
 *______________________*/
.box {
  display: block;
  width: 100%; }
  .box > :first-child {
    margin-top: 0; }
  .box > :last-child {
    margin-bottom: 0; }

.box--rounded {
  border-radius: 5px; }

.box--well {
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1); }

.box--fill {
  background-color: #eee; }

.box--fill-dark {
  background-color: #dfdfdf; }

.box--highlight {
  border-top: 2px solid #fbb900; }

.box--forward {
  background-image: url("../images/template/box-arrow.svg");
  background-repeat: no-repeat;
  background-size: auto 100%; }

.box--pad-s,
.box--pad-m,
.box--pad-l {
  padding: 0.875rem; }

.boxes {
  margin: 2.5rem 0; }
  .boxes .box + .box {
    margin-top: 5px; }

.boxes__title {
  background: #dfdfdf;
  border-bottom: 1px solid #cacfd3;
  margin: 0;
  position: relative;
  z-index: 1; }

.boxes__title--dark {
  background: #2c3e50;
  color: #fbb900; }

.boxes__content + .boxes__content {
  margin-top: 0.625rem; }

/*
 *  Bits: Icon
 *______________________*/
form.loading::after,
.icon,
.langnav__close:after {
  background: url("../images/template/icons.svg") no-repeat;
  background-size: 217em 2em;
  display: inline-block;
  height: 1em;
  width: 1em; }

button.icon, button.langnav__close:after {
  border: 0;
  padding: 0; }

.icon--mar-l {
  margin-left: 0.5rem; }

.icon--mar-r, .langnav__close:after {
  margin-right: 0.5rem; }

.icon--rotate180 {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.icon--arrow-fat--blue {
  background-position: -2em 0; }

a:hover .icon--arrow-fat--blue {
  background-position: -4em 0; }

.icon--arrow--blue, .facet__toggle:hover .icon, .facet__toggle:hover .langnav__close:after {
  background-position: -6em 0; }

.icon--arrow--dark, .pagination__control:hover .icon--arrow--yellow, .link:hover .icon--arrow--blue, .no-touchevents .accordion__toggle:hover .icon, .no-touchevents .accordion__toggle:hover .langnav__close:after {
  background-position: -8em 0; }

.icon--arrow--yellow {
  background-position: -10em 0; }

.icon--arrow--white, .no-touchevents .nav-desktop__title:hover .icon--arrow--dark, .btn--diamond:hover .icon--arrow--yellow, .nav-desktop__title.is-active .icon, .nav-desktop__title.is-active .langnav__close:after {
  background-position: -12em 0; }

.icon--arrow-fill--grey {
  background-position: -20em 0; }

.icon--grid--dark {
  background-position: -26em 0; }

.icon--cart--dark {
  background-position: -30em 0; }

.icon--cart--yellow {
  background-position: -32em 0; }

.icon--cart--grey {
  background-position: -34em 0; }

.icon--overview {
  background-position: -36em 0; }

.btn:hover .icon--overview,
.btn--diamond:hover .icon--overview {
  background-position: -38em 0; }

.icon--attention {
  background-position: -40em 0; }

.icon--tick--green {
  background-position: -42em 0; }

.icon--info--blue {
  background-position: -44em 0; }

input[type="checkbox"]:checked + .check .icon, input[type="checkbox"]:checked + .check .langnav__close:after {
  background-position: -48em 0; }

.icon--write, a:hover .icon--write--blue {
  background-position: -50em 0; }

a:hover .icon--write {
  background-position: -52em 0; }

.icon--write--blue {
  background-position: -54em 0; }

.icon--measure {
  background-position: -56em 0; }

a:hover .icon--measure {
  background-position: -58em 0; }

.icon--signal {
  background-position: -60em 0; }

a:hover .icon--signal {
  background-position: -62em 0; }

.icon--book {
  background-position: -64em 0; }

a:hover .icon--book {
  background-position: -66em 0; }

.icon--list {
  background-position: -72em 0; }

.icon--star {
  background-position: -74em 0; }

.icon--apps {
  background-position: -76em 0; }

.icon--lock {
  background-position: -78em 0; }

.icon--box-grid {
  background-position: -80em 0; }

.icon--box-list {
  background-position: -82em 0; }

.icon--play {
  background-position: -88em 0; }

.icon--box-corners {
  background-position: -90em 0; }

a:hover .icon--cross, .icon--cross--yellow {
  background-position: -94em 0; }

.icon--cross {
  background-position: -96em 0; }

.icon--cross--blue, .popup__close:hover .icon--cross-fat {
  background-position: -98em 0; }

a:hover .icon--cross--blue, .icon--cross-fat, .langnav__close:after {
  background-position: -100em 0; }

.icon--download {
  background-position: -106em 0; }

a:hover .icon--download {
  background-position: -108em 0; }

form.loading::after, .icon--swap {
  background-position: -110em 0; }

.icon--save {
  background-position: -114em 0; }

.icon--exit--dark {
  background-position: -116em 0; }

.icon--exit {
  background-position: -118em 0; }

.icon--location--grey {
  background-position: -120em 0; }

.icon--location--yellow {
  background-position: -122em 0; }

.icon--figure--grey {
  background-position: -124em 0; }

.icon--figure--yellow {
  background-position: -126em 0; }

.icon--search {
  background-position: -128em 0; }

.icon--search:hover {
  background-position: -130em 0; }

.icon--mail--grey {
  background-position: -132em 0; }

a:hover .icon--mail--grey {
  background-position: -134em 0; }

.icon--printer--grey {
  background-position: -136em 0; }

a:hover .icon--printer--grey {
  background-position: -138em 0; }

.icon--write--thin {
  background-position: -140em 0; }

.icon--mail--thin {
  background-position: -142em 0; }

.icon--case {
  background-position: -144em 0; }

.icon--portal {
  background-position: -146em 0; }

.icon--document--dark {
  background-position: -148em 0; }

a:hover .icon--document--dark {
  background-position: -150em 0; }

.icon--badge--dark {
  background-position: -152em 0; }

a:hover .icon--badge--dark {
  background-position: -154em 0; }

.icon--tool--dark {
  background-position: -156em 0; }

a:hover .icon--tool--dark {
  background-position: -158em 0; }

.icon--text--dark {
  background-position: -160em 0; }

a:hover .icon--text--dark {
  background-position: -162em 0; }

.icon--phone {
  background-position: -164em 0; }

.icon--fax {
  background-position: -166em 0; }

.icon--letter--yellow {
  background-position: -168em 0; }

.icon--subscribe {
  background-position: -172em 0; }

.icon--subscribe:hover {
  background-position: -174em 0; }

a:hover .icon--xing {
  background-position: -176em 0; }

.icon--xing {
  background-position: -178em 0; }

a:hover .icon--linkedin {
  background-position: -180em 0; }

.icon--linkedin {
  background-position: -182em 0; }

a:hover .icon--facebook {
  background-position: -184em 0; }

.icon--facebook {
  background-position: -186em 0; }

a:hover .icon--twitter {
  background-position: -188em 0; }

.icon--twitter {
  background-position: -190em 0; }

.icon--burger {
  background-position: -196em 0; }

.icon--burger--dark {
  background-position: -198em 0; }

.icon--facebook-badge {
  background-position: -200em 0; }

.icon--large {
  font-size: 1.5rem !important; }

.icon--blank {
  background-position: 0 2em; }

.icon--facebook-badge {
  top: 0.25rem !important; }

.icon--location--dark {
  background: url("../images/template/location.svg") no-repeat;
  display: inline-block;
  height: 1em;
  width: 1em;
  background-size: 12px 16px; }

/*
 *  Bits: Aligned
 *______________________*/
.inline .btn {
  min-width: 0; }

.inline__secondary > * {
  min-width: 0;
  max-width: none;
  width: 100%; }

/*
 *  Bits: Button
 *______________________*/
.btn--primary, input[type="submit"], .btn--secondary:hover, .btn--secondary:focus, .btn--secondary:active, .btn--toggle:hover, .btn--toggle.is-active {
  background: #fbb900;
  color: #2c3e50; }

.btn--secondary {
  background: transparent;
  color: #fbb900; }

.btn {
  border-radius: 5px;
  border: 1px solid #fbb900;
  display: inline-table;
  font-weight: 700;
  max-width: 100%;
  text-align: center;
  transition: background .1s, color .1s; }
  .btn .icon, .btn .langnav__close:after {
    font-size: 1.5em;
    margin: -1px .5em 0 0;
    position: relative;
    vertical-align: middle; }

.btn--primary:hover, input[type="submit"]:hover, .btn--primary:focus, input[type="submit"]:focus, .btn--primary:active, input[type="submit"]:active {
  background: transparent; }
  .footer .btn--primary:hover, .footer input[type="submit"]:hover, .footer .btn--primary:focus, .footer input[type="submit"]:focus, .footer .btn--primary:active, .footer input[type="submit"]:active {
    color: #fbb900; }

.btn--mono {
  background: #ccc;
  border-color: #ccc;
  color: #2c3e50; }
  .btn--mono:hover, .btn--mono:focus, .btn--mono:active {
    background: transparent; }

.btn--toggle {
  background: transparent;
  color: #2c3e50; }

.btn--block {
  width: 100%; }

.btn--tiny,
.btn--small,
.btn--medium {
  font-size: 0.875rem;
  padding: .575em 1em; }

.btn--diamond {
  display: inline-block;
  position: relative;
  height: 3rem;
  width: 3rem; }
  .btn--diamond:after {
    border: 2px solid #fbb900;
    bottom: 14.75%;
    content: '';
    left: 14.75%;
    position: absolute;
    right: 14.75%;
    top: 14.75%;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .btn--diamond:hover:after {
    background: #fbb900; }
  .btn--diamond .icon, .btn--diamond .langnav__close:after {
    font-size: 1.25rem;
    margin: 0.875rem;
    position: relative;
    z-index: 1; }
  .btn--diamond .icon--arrow--yellow {
    margin-left: 1rem; }
  .btn--diamond .icon--arrow--yellow.icon--rotate180 {
    margin-left: 0.75rem; }

/*
 *  Bits: Field
 *______________________*/
input,
select,
textarea, .check {
  background: #fff;
  border: 1px solid #fbb900;
  border-radius: 5px;
  color: #2c3e50;
  font-size: 1rem;
  max-width: 100%;
  padding: 0.625rem;
  width: 100%; }

button {
  cursor: pointer;
  line-height: 1.5; }

input:focus, input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  border-color: #2c3e50;
  outline: none; }

input[type="file"],
select {
  cursor: pointer; }

input {
  appearance: none; }

input[type="submit"] {
  cursor: pointer;
  width: auto; }

input[type="file"] {
  padding: 0.4375rem; }

label {
  color: #2c3e50;
  cursor: pointer;
  display: block;
  font-weight: 700; }

select {
  padding-right: 1em; }
  .dataTables_length select {
    width: auto; }

textarea {
  appearance: none;
  color: #919191;
  font-family: inherit;
  line-height: 1.6;
  max-width: 100%;
  min-height: 9.375rem; }

.field {
  margin-bottom: 1.25rem; }

.field--dark {
  position: relative; }
  .field--dark input {
    background: #2c3e50;
    border: 2px solid #959faa;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #959faa;
    margin: 0; }
    .field--dark input:focus, .field--dark input:active {
      border-color: #ebebeb; }

.field__icon {
  font-size: 1.25rem;
  margin: 0.6875rem;
  position: absolute;
  right: 0;
  top: 0; }
  .field__icon + input {
    padding-right: 2.5rem; }

.field--inline {
  display: inline-block;
  margin-right: 1em; }

.field--wide {
  width: 100%; }

.field--error input, .field--error
select, .field--error
textarea, .field--error .check {
  border-color: #d83500; }

.field--error label {
  color: #d83500; }

.field__label {
  margin-bottom: 0.625rem; }

.field__toggle input {
  display: none; }

.check {
  background: #ebebeb;
  font-weight: 400;
  padding-top: 0.375rem;
  padding-bottom: 0.4375rem;
  padding-left: 2.8125rem;
  position: relative; }
  .check .icon, .check .langnav__close:after {
    background-color: #fff;
    border: 1px solid #fbb900;
    font-size: 1.125em;
    left: .575em;
    position: absolute;
    top: .575em; }
    input[type="radio"] + .check .icon, input[type="radio"] + .check .langnav__close:after {
      border-radius: 50%;
      box-shadow: inset 0 0 0 4px white; }
    input[type="radio"]:checked + .check .icon, input[type="radio"]:checked + .check .langnav__close:after {
      background: #2c3e50; }

input[type="checkbox"]:checked + .check,
input[type="radio"]:checked + .check {
  background: #dfdfdf;
  border-color: #2c3e50; }
  input[type="checkbox"]:checked + .check .icon, input[type="checkbox"]:checked + .check .langnav__close:after,
  input[type="radio"]:checked + .check .icon,
  input[type="radio"]:checked + .check .langnav__close:after {
    border-color: #2c3e50; }

.select {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
  position: relative; }
  .select select {
    background: transparent;
    height: 100%;
    left: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    position: absolute;
    top: 0; }
  .select .icon, .select .langnav__close:after {
    float: right;
    font-size: .75em;
    position: absolute;
    right: 1.2em;
    top: 1.2em; }

/*
 *  Bits: Indicator
 *______________________*/
.indicator {
  background: #ccc;
  display: inline-block;
  font-size: 1.125rem;
  height: 1em;
  margin-right: .5em;
  width: 1em; }

.indicator--yellow {
  background: #f9db18; }

.indicator--green {
  background: #2db200; }

/*
 *  Pieces/UI: Logo
 *______________________*/
.header__logo {
  width: 80px; }
  @media screen and (min-width: 760px) {
    .header__logo {
      width: 100px; } }

.footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 120px; }

.slogan {
  color: #fff;
  display: none;
  font-size: 0.875rem;
  line-height: 1.2;
  margin: 2.375rem 0 1rem 1rem; }

/*
 *  Pieces/UI: Link
 *______________________*/
.link {
  color: #00619b; }
  .link:hover {
    color: #2c3e50; }
  .link.ob-container {
    font-weight: 700;
    margin: 1.25rem 0; }
    .link.ob-container:hover {
      background: #dfdfdf; }
  p .link {
    margin: -.25em;
    padding: .25em;
    position: relative; }
  .link .icon, .link .langnav__close:after {
    font-size: 0.75rem;
    position: relative;
    top: 0; }

.link--alt {
  color: #2c3e50; }
  .link--alt:hover, .link--alt.is-active {
    color: #00619b; }

.link--items {
  font-size: 0.875rem;
  margin-left: 1.5rem !important; }
  .link--items .icon, .link--items .langnav__close:after {
    position: absolute !important;
    left: 0 !important;
    font-size: 0.875rem !important; }
  .link--items a:hover, .link--items a.is-active {
    color: #00619b; }

.link--bright {
  color: #fbb900; }
  .link--bright:hover {
    text-decoration: underline; }

.link--inline {
  text-decoration: underline; }

.link--block {
  display: block;
  position: relative; }
  .link--block.ob-container {
    padding-left: 2.25rem; }
  .link--block .icon, .link--block .langnav__close:after {
    left: .825em;
    font-size: 1rem;
    position: absolute;
    top: 1.1em; }

.link--large {
  font-size: 1.375rem;
  font-weight: 400 !important;
  padding: 0.625rem 1.25rem !important; }
  .link--large .icon, .link--large .langnav__close:after {
    float: right;
    font-size: 0.875rem;
    margin: 0;
    position: relative;
    top: 0.875rem; }

.link--large__meta {
  color: #919191;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  top: 0.5rem; }

.link--pill {
  background: #fff;
  border-radius: 5px;
  color: #2c3e50;
  display: block;
  padding: .5em .8em; }
  .link--pill:hover {
    background: #2c3e50;
    color: #fff; }
  .link--pill .icon, .link--pill .langnav__close:after {
    font-size: inherit;
    margin-right: 1em;
    top: .2em; }

/*
 *  Pieces/UI: List
 *______________________*/
.list, .legacyCss ul {
  margin: 2.5rem 0; }
  .list li, .legacyCss ul li {
    padding-left: 1.875rem;
    position: relative; }
    .list li + li, .legacyCss ul li + li {
      margin-top: 0.5rem; }
  .list li:before, .legacyCss ul li:before, .list:not(.list--links).icon, .list.langnav__close:not(.list--links):after, .legacyCss ul.langnav__close:not(.list--links):after, .legacyCss ul:not(.list--links).icon {
    left: 0;
    position: absolute; }
  .list .list, .legacyCss ul .list, .list .legacyCss ul, .legacyCss .list ul, .legacyCss ul ul {
    margin: 0.625rem 0 0; }

.list--bullets li:before, .legacyCss ul li:before {
  background: #2c3e50;
  content: '';
  top: .55em;
  height: .5em;
  width: .5em; }

.list--bullets li li:before, .legacyCss ul li li:before {
  background: #919191; }

.list--ordered {
  counter-reset: item; }
  .list--ordered li {
    counter-increment: item; }
    .list--ordered li:before {
      color: #2c3e50;
      font-weight: 700;
      top: 0; }
    .list--ordered li li {
      padding-left: 2.5rem; }
      .list--ordered li li:before {
        color: #919191; }

.list--numbered > li:before {
  content: counters(item, ".") "."; }

.list--lettered > li:before {
  content: counter(item, lower-alpha) "."; }

.list--lettered .list--lettered > li:before {
  content: counter(item, lower-roman) "."; }

.list--icons .icon, .list--icons .langnav__close:after {
  left: 0;
  position: absolute;
  top: .3em; }

.list--checks {
  color: #2c3e50;
  font-weight: bold; }

.list--checks--old li {
  background: url("../images/template/tick.svg") no-repeat left 4px;
  background-size: 16px 16px; }

.list--links {
  border-top: 1px solid #cacfd3; }
  .list--links li {
    border-bottom: 1px solid #cacfd3;
    padding-left: 0; }
  .list--links li + li,
  .list--links .link {
    margin: 0; }

/*
 *  Pieces/UI: facet
 *______________________*/
.facet {
  display: none;
  margin-bottom: 1.25rem; }
  .js-drop--active + .facet {
    display: block; }
  .facet .check {
    border-width: 0;
    border-color: rgba(0, 0, 0, 0.25) !important;
    border-radius: 0;
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
    padding-left: 2rem; }
    .facet .check:first-of-type {
      border-top-width: 1px; }
    .facet .check:last-of-type {
      border-bottom-width: 1px; }

.facet__toggle {
  border-bottom: 1px solid #2c3e50;
  color: #2c3e50;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0 1.875rem 0.625rem 0;
  position: relative; }
  .facet__toggle.js-drop--active .icon, .facet__toggle.js-drop--active .langnav__close:after {
    -ms-transform: rotate(270deg);
    transform: rotate(270deg); }
  .facet__toggle .icon, .facet__toggle .langnav__close:after {
    font-size: 0.875rem;
    position: absolute;
    right: .4em;
    top: .4em;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

.facet__clear {
  font-size: 0.875rem; }
  .facet__clear .icon, .facet__clear .langnav__close:after {
    font-size: 0.625rem;
    margin-right: .75em; }

/*
 *  Pieces/UI: Nav-Desktop
 *______________________*/
.nav-desktop {
  background: #626e7c;
  display: none;
  position: relative;
  z-index: 1; }
  .nav-desktop .link + .link {
    border-top: 1px solid #dfdfdf; }

.nav-desktop__list {
  display: flex;
  position: relative;
  width: 100%; }
  .nav-desktop__list a {
    display: block; }

.nav-desktop__item {
  flex-grow: 1; }
  .ie9 .nav-desktop__item {
    display: inline-block; }

.nav-desktop__title {
  color: #fff;
  padding: 1.125rem 0;
  position: relative;
  text-align: center; }
  .no-touchevents .nav-desktop__title:hover, .nav-desktop__title.is-active, .nav-desktop__title.js-drop--active {
    background: #2c3e50; }
  .nav-desktop__title.js-drop--active .icon, .nav-desktop__title.js-drop--active .langnav__close:after {
    background-position: -10em 0 !important; }
  .nav-desktop__title .icon, .nav-desktop__title .langnav__close:after {
    bottom: .5em;
    font-size: 0.875rem;
    left: 50%;
    margin-left: -.5em;
    position: absolute;
    -ms-transform: rotate(90deg);
        transform: rotate(90deg); }
  .ie9 .nav-desktop__title {
    padding: 1.125rem 1.125rem; }

.nav-desktop__dropdown {
  background: #fff;
  border: solid #2c3e50;
  border-width: 0 1px 1px;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  min-width: 100%; }
  .js-drop--active + .nav-desktop__dropdown {
    display: block; }

/*
 *  Pieces/UI: Nav-Dropmenu
 *______________________*/
.dropmenu {
  left: 0;
  min-width: 295px;
  position: absolute;
  top: 100%; }
  .dropmenu__box:nth-last-child(2) .dropmenu {
    left: auto;
    right: 0; }
  .dropmenu a {
    padding: 0.625rem 2.5rem 0.625rem 1.25rem; }

.dropmenu__box {
  position: relative; }

/*
 *  Pieces/UI: Nav-Overlay
 *______________________*/
.nav-overlay {
  background: #fff;
  box-shadow: inset -4px 0 0 rgba(0, 0, 0, 0.5);
  min-height: 100%;
  position: absolute;
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  transition: transform .5s;
  width: 100%;
  z-index: 3; }
  .nav-overlay.is-active {
    box-shadow: 4px 0 0 rgba(0, 0, 0, 0.5);
    -ms-transform: translateX(0);
    transform: translateX(0); }

.nav-overlay__header {
  background: #2c3e50;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  height: 4.8125rem;
  padding: 0 0.625rem;
  position: relative;
  z-index: 1; }
  .nav-overlay__header .icon, .nav-overlay__header .langnav__close:after {
    cursor: pointer;
    font-size: 2rem;
    margin-top: -.5em;
    position: relative;
    top: 50%; }

.nav-overlay__link {
  font-weight: 700;
  padding: .75em 1.25em;
  position: relative;
  z-index: 2; }
  .nav-overlay__link.js-drop--active {
    background: #ebebeb;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: #00619b; }

.nav-overlay__link__icon {
  float: right;
  margin-top: 0.3125rem !important;
  position: static !important;
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }
  .js-drop--active > .nav-overlay__link__icon {
    -ms-transform: rotate(270deg);
    transform: rotate(270deg); }

.nav-overlay__main__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .nav-overlay__main__item > .nav-overlay__link {
    text-transform: uppercase; }

.nav-overlay__sub {
  background: #ebebeb;
  display: none;
  position: relative;
  z-index: 1; }
  .js-drop--active + .nav-overlay__sub {
    display: block; }
  .nav-overlay__sub .nav-overlay__link {
    padding-left: 3.125rem; }
    .nav-overlay__sub .nav-overlay__link .icon, .nav-overlay__sub .nav-overlay__link .langnav__close:after {
      left: 1.25rem;
      top: 1.05em; }

.nav-overlay__sub__item {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .nav-overlay__sub__item > .js-drop--active {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-color: transparent; }

.nav-overlay__lowest {
  background: #dfdfdf;
  display: none;
  padding: 1.25rem; }
  .js-drop--active + .nav-overlay__lowest {
    display: block; }

.nav-overlay__meta {
  margin: 0.5rem 0 1.5rem; }
  .nav-overlay__meta a {
    padding: 0.3125rem 1.25rem; }

/*
 *  Pieces/UI: Nav Footer
 *______________________*/
.nav-social {
  font-size: 1.5rem;
  line-height: 1;
  margin: -0.5em 0 1.5rem;
  text-align: center; }
  .nav-social a {
    background: #626e7c;
    border-radius: 3px;
    display: inline-block;
    height: 1.66667em;
    margin: .5em .2em 0;
    width: 1.66667em; }
  .nav-social .icon, .nav-social .langnav__close:after {
    margin: .33334em; }

.nav-meta {
  font-size: 0.875rem;
  text-align: center; }
  .nav-meta.header__widget {
    margin-right: -.75em; }
  .nav-meta a:not(:first-child) {
    padding-left: .5em; }
  .nav-meta a:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: .75em; }
  .footer .nav-meta a:hover {
    text-decoration: underline; }

/*
 *  Pieces/UI: Language Switch
 *______________________*/
.lang-switch {
  border: 2px solid #959faa;
  border-radius: 5px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  display: table;
  float: right;
  font-size: 0.875rem;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .lang-switch li,
  .lang-switch a {
    display: table-cell; }
  .lang-switch a {
    border-radius: 3px;
    padding: 0.375rem 0.625rem; }
    .lang-switch a:hover, .lang-switch a.is-active {
      background: #626e7c; }
    .lang-switch a.is-active {
      box-shadow: 0 0 0 2px #959faa;
      color: #fbb900;
      position: relative;
      z-index: 1; }

/*
 *  Pieces/UI: Banner
 *______________________*/
.banner {
  background: #ebebeb;
  border-bottom: 2px solid #fbb900;
  display: table;
  width: 100%; }

.banner--small {
  min-height: 7.5rem; }
  .banner--small .banner__content {
    vertical-align: bottom; }

.banner--large {
  min-height: 11.25rem; }
  .banner--large .banner__content {
    padding-bottom: 0.625rem;
    vertical-align: middle; }
  .banner--large .banner__headline {
    max-width: 40rem; }

.banner__content {
  display: table-cell;
  padding-top: 0.625rem;
  position: relative;
  width: 100%; }

.banner__headline {
  margin-bottom: 0; }
  .banner--small .banner__headline {
    padding-top: 1.875rem !important; }

.banner__headline--fill {
  background: rgba(255, 255, 255, 0.9); }
  .banner--small .banner__headline--fill {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important; }

.banner__bg {
  bottom: 2px;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%; }
  .banner__bg img {
    bottom: 0;
    left: 50%;
    max-width: none;
    min-height: 100%;
    position: absolute;
    top: 0;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.banner__shape {
  bottom: 2px;
  position: absolute;
  right: 0; }

/*
 *  Pieces/UI: cta
 *______________________*/
.cta-banner {
  position: relative; }

.cta-banner__content {
  padding: 0 1.875rem; }

.cta-banner__graphic {
  border-color: #959faa transparent transparent transparent;
  border-style: solid;
  border-width: 3em 3em 0;
  font-size: 1.5rem;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0; }
  .cta-banner__graphic:after {
    background: #2c3e50;
    content: '';
    height: 2.1em;
    left: 0;
    position: absolute;
    bottom: 0;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    width: 2.125em; }
  .cta-banner__graphic .icon, .cta-banner__graphic .langnav__close:after {
    bottom: 50%;
    left: 50%;
    margin: 0 0 1em -.5em;
    position: absolute;
    z-index: 1; }

/*
 *  Pieces/UI: Catalog Links
 *______________________*/
.catalog-link,
.catalog-link__img {
  border-radius: 5px; }

.catalog-link {
  display: block;
  height: 4.75rem;
  padding: 0.5rem 1rem;
  position: relative; }

.catalog-link--dark {
  background: #ebebeb; }
  .catalog-link--dark:hover, .catalog-link--dark.is-active {
    background: #dfdfdf; }

.catalog-link--light {
  background: #fff; }
  .catalog-link--light:hover, .catalog-link--light.is-active {
    background: #2c3e50;
    color: #fff; }
    .catalog-link--light:hover .catalog-link__desc, .catalog-link--light.is-active .catalog-link__desc {
      color: inherit; }

.catalog-link__img {
  border-radius: 5px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0; }

.catalog-link__content {
  left: 1rem;
  padding-right: 1rem;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.catalog-link__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2; }

.catalog-link__desc {
  color: #919191;
  font-size: 0.75rem;
  margin-top: 4px; }

/*
 *  Pieces/UI: Form Search
 *______________________*/
.search-form {
  bottom: 0;
  left: 0; }
  .search-form .field--dark {
    display: block;
    margin: auto;
    max-width: 30rem; }

/*
 *  Pieces/UI: Form Login
 *______________________*/
.login-form {
  background: #fff;
  border-bottom: 2px solid #2c3e50;
  color: #2c3e50;
  min-width: 17.5rem;
  padding: 1rem;
  right: 0;
  top: 0;
  z-index: 1; }

/*
 *  Pieces/UI: Nav Footer
 *______________________*/
.nav-social {
  font-size: 1.5rem;
  line-height: 1;
  margin: -0.5em 0 1.5rem;
  text-align: center; }
  .nav-social a {
    background: #626e7c;
    border-radius: 3px;
    display: inline-block;
    height: 1.66667em;
    margin: .5em .2em 0;
    width: 1.66667em; }
  .nav-social .icon, .nav-social .langnav__close:after {
    margin: .33334em; }

.nav-meta {
  font-size: 0.875rem;
  text-align: center; }
  .nav-meta.header__widget {
    margin-right: -.75em; }
  .nav-meta a:not(:first-child) {
    padding-left: .5em; }
  .nav-meta a:not(:last-child) {
    border-right: 1px solid #fff;
    padding-right: .75em; }
  .footer .nav-meta a:hover {
    text-decoration: underline; }

/*
 *  Pieces/UI: Video
 *______________________*/
.video {
  margin: 1.25rem 0;
  position: relative; }
  .video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  .video--4-3:before {
    display: block;
    content: '';
    padding-top: 75%;
    width: 100%; }
  .video--16-9:before {
    display: block;
    content: '';
    padding-top: 56.25%;
    width: 100%; }

/*
 *  Pieces/UI: Autocomplete
 *______________________*/
.autocomplete {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: none;
  left: 0;
  margin-top: 4px;
  padding: 0.25rem;
  position: absolute;
  top: 100%;
  min-width: 100%; }
  input:focus + .autocomplete,
  input:active + .autocomplete {
    display: block; }
  .autocomplete a {
    display: block;
    padding: 0.25rem 0.5rem; }
    .autocomplete a:hover {
      background: #ebebeb; }

/*
 *  Pieces/UI: Carousel
 *______________________*/
.carousel__items {
  overflow: hidden;
  position: relative; }
  .carousel__items img {
    margin: auto; }

.carousel__tag {
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  z-index: 2; }

.carousel__item {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .4s;
  width: 100%;
  border: 4px solid #ebebeb;
  padding: 1.25rem; }
  .carousel__item.is-active {
    opacity: 1;
    position: relative;
    z-index: 1; }
  .carousel__item img {
    border: 4px solid #fff;
    width: 100%; }

.carousel__caption {
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  display: inline-block;
  font-size: 0.875rem;
  max-width: calc(100% - 40px);
  left: 50%;
  padding: 0.125rem 0.375rem;
  position: absolute;
  text-align: center;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.carousel__bullets {
  text-align: center;
  margin-top: 1.25rem; }

.carousel__thumb,
.carousel__bullet {
  cursor: pointer; }

.carousel__bullet {
  border: 2px solid #fbb900;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 1.25rem;
  margin: 0 0.25rem;
  width: 1.25rem; }
  .no-touchevents .carousel__bullet:hover, .carousel__bullet.is-active {
    background: #fbb900; }

.carousel__thumbs {
  margin: 2.5rem 0; }
  .carousel__thumbs .column {
    position: relative; }

.carousel__thumb {
  border: 2px solid #ebebeb; }
  .is-active .carousel__thumb {
    border-color: #fbb900; }

.carousel__thumb__icon {
  cursor: pointer;
  font-size: 1.875rem;
  left: 50%;
  margin: -0.9375rem 0 0 -0.9375rem;
  position: absolute;
  top: 50%; }

/*
 *  Gallery
 *______________________*/
.gallery {
  display: flex;
  flex-wrap: wrap; }
  @media screen and (min-width: 600px) {
    .gallery__box {
      flex: 1 1 50%; } }
  @media screen and (min-width: 1200px) {
    .gallery__box {
      flex: 1 1 25%; } }

.big-button {
  border: 2px solid #fbb900;
  border-radius: 6px;
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  padding-left: 60px;
  flex: 1;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all 300ms ease-in-out;
  background-color: #fbb900;
  color: #2b3d4f;
  font-family: "HelveticaNeueW02-57Cn", sans-serif;
  position: relative;
  /* Global Icon Style*/
  /* Outer Wrapper*/ }
  @media screen and (min-width: 768px) {
    .big-button {
      padding-left: 100px;
      padding-top: 40px;
      padding-bottom: 40px;
      padding-right: 40px;
      margin-bottom: 0;
      width: calc(50% - 20px); } }
  .big-button__icon {
    height: 25px;
    width: 25px;
    position: absolute;
    top: 22px;
    left: 20px; }
    .big-button__icon svg path {
      transition: all 300ms ease-in-out; }
    @media screen and (min-width: 768px) {
      .big-button__icon {
        height: 40px;
        width: 40px;
        top: 40px;
        left: 40px; } }
  .big-button:hover {
    background-color: transparent;
    color: #fbb900; }
    .big-button:hover .big-button__icon svg path {
      fill: #fbb900; }
  .big-button span {
    display: block;
    line-height: 1;
    margin-bottom: 5px; }
  .big-button__head {
    font-size: 30px; }
  .big-button__sub {
    font-family: "Arial", sans-serif; }
  .big-button__wrapper__inner {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    flex-direction: column; }
    @media screen and (min-width: 768px) {
      .big-button__wrapper__inner {
        flex-direction: row; } }

/*
 *  Pieces/UI: Nav Toggle Widget
 *______________________*/
.nav-toggle-widget {
  cursor: pointer;
  margin: 2.375rem 1em 0 0; }

/*
 *  Pieces/UI: Cart Widget
 *______________________*/
.cart-widget {
  color: #fbb900;
  position: relative; }

.cart-widget--empty {
  color: #959faa; }

.cart-widget__count {
  color: #fff; }
  .cart-widget--empty .cart-widget__count {
    color: inherit; }

.cart-widget__popup {
  background: #fbb900;
  border-radius: 3px;
  bottom: 120%;
  color: #2c3e50;
  font-size: 0.75rem;
  font-weight: bold;
  left: 50%;
  line-height: 1;
  padding: 0.125rem 0.375rem;
  position: absolute;
  -ms-transform: translate(-50%);
  transform: translate(-50%); }

/*
 *  Pieces/UI: Login Widget
 *______________________*/
.login-widget {
  position: relative; }

.login-widget__arrow {
  font-size: 0.625rem !important; }

.login-widget__dropdown {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2);
  display: none;
  min-width: 17.5rem;
  padding-top: 1rem;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1; }
  .login-widget__dropdown:after {
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
    content: '';
    height: 0;
    position: absolute;
    right: 20px;
    top: 6px;
    width: 0; }

/*
 *  Pieces/UI: Message Box
 *______________________*/
.message {
  border-top: 4px solid;
  margin: 1.875rem 0;
  min-height: 4.5rem;
  padding: 0 1.875rem 0 4.375rem;
  overflow: auto;
  position: relative; }
  .message p {
    margin: 0.625rem; }

.message--success {
  background: #d7fecd;
  border-color: #2db200;
  color: #2db200; }
  .message--success .message__icon:before {
    border-color: #2db200; }

.message--error {
  background: #ffcfbf;
  border-color: #d83500;
  color: #d83500; }
  .message--error .message__icon:before {
    border-color: #d83500; }

.message--info {
  background: #e1f0ff;
  border-color: #0080ff;
  color: #0080ff; }
  .message--info .message__icon:before {
    border-color: #0080ff; }

.message__icon {
  font-size: 1.5rem;
  left: 1.125rem;
  position: absolute;
  top: 1.125rem; }
  .message__icon:before {
    background: #fff;
    border: 1px solid;
    content: '';
    font-size: 2.125rem;
    height: 1em;
    position: absolute;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 1em; }
  .message__icon .icon, .message__icon .langnav__close:after {
    left: 0.3125rem;
    position: absolute;
    top: 0.3125rem;
    z-index: 1; }

/*
 *  Pieces/UI: News
 *______________________*/
.results {
  margin: 2.5rem 0; }

.result {
  border-bottom: 1px solid #cacfd3; }
  .result + .result {
    margin-top: 1.25rem; }

/*
 *  Pieces/UI: Accordion
 *______________________*/
.accordion__toggle {
  cursor: pointer;
  padding-right: 3rem;
  position: relative; }
  .no-touchevents .accordion__toggle:hover {
    background: #fbb900;
    color: #2c3e50; }
  .accordion__toggle .icon, .accordion__toggle .langnav__close:after {
    font-size: 1rem;
    position: absolute;
    right: 1.125rem;
    top: 1.125rem;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .accordion__toggle.js-drop--active {
    margin-bottom: 0.625rem; }
    .accordion__toggle.js-drop--active .icon, .accordion__toggle.js-drop--active .langnav__close:after {
      -ms-transform: rotate(270deg);
      transform: rotate(270deg); }

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); }
  .js-drop--active + .accordion__content {
    max-height: 2000px;
    transition: max-height 0.5s cubic-bezier(0, 0, 0.95, 1); }

/*
 *  Pieces/UI: Teaser
 *______________________*/
.teaser {
  position: relative; }

.no-touchevents .teaser:hover .teaser--border {
  border-color: transparent; }

.no-touchevents .teaser:hover .teaser__headline {
  color: #2c3e50; }

.no-touchevents .teaser:hover .teaser__overlay,
.no-touchevents .teaser:hover .teaser__asset {
  opacity: 1; }

.teaser__asset {
  bottom: 1.25rem;
  color: #fbb900;
  display: block;
  left: 1.25rem;
  margin: auto;
  min-width: 0 !important;
  opacity: 0;
  position: absolute;
  right: 1.25rem;
  text-align: center;
  width: auto !important;
  z-index: 2; }
  .no-touchevents .teaser__asset:hover {
    text-decoration: underline; }

.teaser__overlay {
  background: rgba(0, 0, 0, 0.8);
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .2s;
  z-index: 1; }

.teaser__overlay__content {
  color: #fff;
  font-family: "HelveticaNeueW02-67MdCn_694060", sans-serif;
  font-size: 1.5rem;
  left: 0;
  padding: 0 1em;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  z-index: 1; }
  .teaser__overlay__content .icon, .teaser__overlay__content .langnav__close:after {
    bottom: 100%;
    left: 50%;
    margin-left: -.5em;
    position: absolute; }

.teaser__img {
  overflow: hidden;
  position: relative; }
  .teaser__img img {
    width: 100%; }

.teaser--border {
  border: 1px solid #fbb900;
  padding: 1.25rem; }

.teaser__caption {
  background: #fbb900;
  border-radius: 5px 0 0 5px;
  bottom: 1.25rem;
  color: #2c3e50;
  font-family: "HelveticaNeueW02-67MdCn_694060", sans-serif;
  font-size: 1.25rem;
  left: 1.25rem;
  line-height: 1.2;
  padding: 0.625rem 0.75rem;
  right: 0;
  position: absolute; }

.teaser__headline {
  margin-top: 0;
  padding-top: 1.25rem; }
  a.teaser .teaser__headline {
    color: #00619b; }

.product-teaser {
  margin: 0.625rem auto;
  max-width: 17.5rem; }

.service-teaser {
  background: #fbb900;
  box-shadow: inset 0 0 0 1px #fbb900;
  color: #2c3e50;
  display: block;
  font-weight: 700;
  line-height: 1.2;
  margin: auto;
  max-width: 10.625rem;
  text-align: center;
  transition: background .2s, color .2s; }
  .service-teaser:after {
    display: block;
    content: '';
    width: 100%;
    padding-top: 100%; }
  .service-teaser:hover {
    background: transparent;
    color: #fbb900; }

.service-teaser__icon {
  font-size: 3rem;
  left: 50%;
  margin: -1.5rem 0 0 -1.5rem;
  position: absolute;
  top: 45%; }

.service-teaser__title {
  bottom: .5em;
  left: 1em;
  margin-bottom: 0;
  min-height: 2em;
  position: absolute;
  right: 1em; }

.catalog-teaser {
  border-top: 6px solid #2c3e50;
  position: relative; }

.catalog-teaser__img {
  width: 100%; }

.catalog-teaser__content {
  padding: 1.875rem; }

/*
 *  Pieces/UI: SVG Map
 *______________________*/
.world-map {
  display: none;
  position: relative; }
  .world-map:before {
    content: "";
    display: block;
    padding-top: 65%; }

.world-map__tooltip {
  background: #2c3e50;
  border-radius: 5px;
  color: #fbb900;
  display: none;
  font-weight: bold;
  left: 50%;
  min-width: 12.5rem;
  opacity: 0;
  padding: 0.5rem 1.25rem;
  pointer-events: none;
  position: absolute;
  top: 45%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: opacity .25s; }
  .world-map__tooltip.active {
    opacity: 1; }

.svg-map {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

/*
 *  Pieces/Layout: Media
 *______________________*/
.media {
  margin: 2.5rem 0; }

.media__body {
  overflow: auto; }

.media__obj {
  display: table;
  margin: 0 0 1.25rem; }

/*
 *  Pieces/Layout: Grid
 *______________________*/
/*
    Grid Options
*/
.grid {
  clear: both; }

.grid--gutter {
  margin: -10px; }
  .grid--gutter > .column {
    padding: 10px; }

.grid--equal {
  display: flex;
  flex-wrap: wrap; }
  .grid--equal > .column {
    display: flex;
    flex-wrap: nowrap;
    margin-right: 0; }
    .grid--equal > .column > * {
      width: 100%; }

/*
    Columns
*/
.column {
  display: inline-block;
  margin-right: -.3em;
  vertical-align: top;
  width: 100%; }

.column--mid {
  align-items: center;
  vertical-align: middle; }

.column--bot {
  vertical-align: bottom; }

.column--1-2 {
  width: 50%; }

.column--1-3 {
  width: 33.33334%; }

.column--2-3 {
  width: 66.66666%; }

/*
 *  Pieces/Layout: Block
 *______________________*/
.block {
  position: relative; }

.block--padded {
  padding: 2.5rem 0; }

.block--blank + .block--blank {
  padding-top: 0; }

.block--light {
  background: #ebebeb; }

.block--dark {
  background: #2c3e50;
  color: #fff; }

.block__bg {
  left: 50%;
  position: absolute;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.block__bg--top {
  top: 0; }

.block__bg--bot {
  bottom: 0; }

/*
 *  Pieces/Layout: Header
 *______________________*/
.header {
  color: #fff;
  margin: auto;
  position: relative;
  max-width: 100rem;
  z-index: 2; }
  .header__top {
    overflow: hidden; }

.header__widgets {
  background: rgba(44, 62, 80, 0.9);
  font-size: 0.875rem;
  padding-bottom: 3.625rem;
  position: relative;
  z-index: 2; }
  .header__widgets a:hover {
    color: #fbb900; }

.header__widgets__section {
  display: inline-block;
  vertical-align: bottom; }

.header__widgets__section--right {
  float: right;
  margin-top: 2.25rem; }
  .header__widgets__section--right .header__widget {
    margin: 0 0.375rem; }

.header__widgets__group {
  display: inline-block;
  text-align: right; }

.header__widget {
  display: inline-block;
  text-align: left;
  vertical-align: top; }
  .header__widget--right, .header__widget--left {
    margin: 0.625rem 0 0.625rem; }
    @media screen and (min-width: 768px) {
      .header__widget--right, .header__widget--left {
        margin: 1.25rem 0 1.875rem; } }
  .header__widget--right {
    text-align: right;
    float: right; }
  .header__widget--left {
    float: left; }

.header__widget__icon {
  font-size: 1.125rem;
  vertical-align: middle; }

.header__widget__text {
  display: inline-block;
  line-height: 1.2;
  vertical-align: middle;
  font-weight: bold;
  /* Sausen */
  color: #2c3e50;
  /* Sausen */ }

.header__meta {
  background: #fff;
  margin: auto;
  max-width: 100rem;
  padding: 0.625rem 0;
  position: relative;
  z-index: 1; }

/*
 *  Pieces/Layout: Footer
 *______________________*/
.footer {
  background: #2c3e50;
  border-top: 2px solid #fbb900;
  box-shadow: inset 0 20px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
  overflow: hidden;
  padding-top: 2em;
  padding-bottom: 4em;
  position: relative; }

.footer__top {
  border-color: transparent transparent #fbb900 transparent;
  border-style: solid;
  border-width: 0 2.5em 2.5em;
  bottom: -4em;
  cursor: pointer;
  height: 0;
  margin-right: -2.5em;
  position: absolute;
  right: 50%;
  width: 0; }
  .footer__top .icon, .footer__top .langnav__close:after {
    left: 50%;
    margin: 1em 0 0 -.5em;
    position: absolute;
    top: 50%;
    -ms-transform: rotate(270deg);
    transform: rotate(270deg); }

.footer__widget__title {
  border-bottom: 1px solid #959faa;
  cursor: pointer;
  font-family: "HelveticaNeueW02-67MdCn_694060", sans-serif;
  font-size: 1.5rem;
  margin: -.5em 0 0;
  padding: .25em 0; }
  .footer__widget__title .icon, .footer__widget__title .langnav__close:after {
    float: right;
    font-size: 1.125rem;
    margin: .54em 0 0 1em;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  .footer__widget__title.js-drop--active {
    margin-bottom: .5em; }
    .footer__widget__title.js-drop--active .icon, .footer__widget__title.js-drop--active .langnav__close:after {
      -ms-transform: rotate(270deg);
      transform: rotate(270deg); }

.js-drop--active + .footer__widget__group {
  display: block; }

/*
 *  Pieces/Layout: Page
 *______________________*/
.heroheader {
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #f4f4f4;
  background-image: url(/assets/images/template/banner_gfx.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }
  @media screen and (min-width: 760px) {
    .heroheader {
      padding-top: 60px;
      padding-bottom: 100px; } }
  .heroheader__logo {
    display: inline-block;
    margin-bottom: 20px;
    max-width: 80%; }
  .heroheader__headline {
    text-align: center; }
    @media screen and (min-width: 760px) {
      .heroheader__headline {
        margin-left: 20%;
        margin-right: 20%; } }

.langnav {
  /* Root Class*/
  position: relative;
  display: none;
  /* Small Corner Image*/
  /* Entry `<li>` Style*/
  /* Link Element */ }
  .langnav:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 6px;
    left: 7.5%;
    height: 24px;
    width: 24px;
    transition: all 300ms ease-in-out;
    background-color: #e9e9e9;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    display: none; }
  .langnav.is-active:before {
    top: -12px; }
  @media screen and (min-width: 768px) {
    .langnav {
      padding-left: 35px;
      padding-right: 35px;
      padding-top: 35px;
      padding-bottom: 45px;
      background-color: #e9e9e9; }
      .langnav:before {
        display: block; } }
  .langnav__trigger {
    padding-top: 5px;
    cursor: pointer; }
  .langnav__close {
    display: block;
    cursor: pointer;
    color: #2c3e50;
    padding-left: 16px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd; }
    .langnav__close span {
      display: none; }
    .langnav__close:after {
      content: '';
      position: relative;
      top: 3px;
      margin-left: 5px;
      font-size: 20px; }
    @media screen and (min-width: 768px) {
      .langnav__close {
        display: inline-block;
        position: absolute;
        right: 20px;
        bottom: 20px;
        padding-left: 0;
        border: 0; }
        .langnav__close span {
          display: inline; }
        .langnav__close:after {
          top: 1px;
          font-size: 14px; } }
  .langnav__list {
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 1px solid #ddd; }
    @media screen and (min-width: 768px) {
      .langnav__list {
        margin-bottom: -20px;
        border-bottom: 0; } }
  .langnav__entry {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #ddd; }
    @media screen and (min-width: 768px) {
      .langnav__entry {
        border-top: 0;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        float: left;
        width: calc((100% / 3) - 20px); } }
    @media screen and (min-width: 960px) {
      .langnav__entry {
        width: calc((100% / 4) - 20px); } }
    .langnav__entry.is-active {
      background-color: #dddddd; }
  .langnav__link {
    /* Flag Width */
    display: block;
    color: #2c3e50;
    position: relative;
    /* Flag Icon*/
    /* Flagmap*/
    /* Build Flagmodifier*/ }
    @media screen and (min-width: 768px) {
      .langnav__link {
        padding-left: 42px; } }
    .langnav__link:before {
      content: '';
      height: 24px;
      width: 30px;
      background-color: #c4c4c4;
      background-size: cover;
      background-repeat: no-repeat;
      position: absolute;
      top: 0;
      left: 0;
      display: none; }
      @media screen and (min-width: 768px) {
        .langnav__link:before {
          display: block; } }
    .langnav__link--global:before {
      background-image: url(/assets/images/flags/global.svg); }
    .langnav__link--germany:before {
      background-image: url(/assets/images/flags/de.svg); }
    .langnav__link--czech-republic:before {
      background-image: url(/assets/images/flags/cz.svg); }
    .langnav__link--austria:before {
      background-image: url(/assets/images/flags/at.svg); }
    .langnav__link--brazil:before {
      background-image: url(/assets/images/flags/br.svg); }
    .langnav__link--switzerland:before {
      background-image: url(/assets/images/flags/ch.svg); }
    .langnav__link--united-kingdom:before {
      background-image: url(/assets/images/flags/gb.svg); }
    .langnav__link--usa:before {
      background-image: url(/assets/images/flags/us.svg); }
    .langnav__link--spain:before {
      background-image: url(/assets/images/flags/es.svg); }
    .langnav__link--france:before {
      background-image: url(/assets/images/flags/fr.svg); }
    .langnav__link--hungary:before {
      background-image: url(/assets/images/flags/hu.svg); }
    .langnav__link--poland:before {
      background-image: url(/assets/images/flags/pl.svg); }
    .langnav__link--portugal:before {
      background-image: url(/assets/images/flags/pt.svg); }
    .langnav__link--romania:before {
      background-image: url(/assets/images/flags/ro.svg); }
    .langnav__link--slovenia:before {
      background-image: url(/assets/images/flags/si.svg); }
    .langnav__link--slovakia:before {
      background-image: url(/assets/images/flags/sk.svg); }

/*
 *  Bullshit File
 *_______________________*/
.legacyCss img {
  display: inline-block; }

.legacyCss li + li {
  margin-top: 0 !important; }

.legacyCss li:before {
  background: #fbb900 !important; }

.legacyCss p + ul {
  margin-top: -1.25rem;
  margin-bottom: 0; }

.legacyCss .table-wrap {
  margin: 1.875rem 0 !important; }

.legacyCss .table--alt {
  width: 100%; }

.legacyCss .bestelltab {
  width: 100%; }
  .legacyCss .bestelltab tr:first-child {
    border-bottom: 2px solid #fbb900; }
  .legacyCss .bestelltab tr:nth-child(even) {
    background: #f4f5f7; }

.legacyCss .texttab th {
  font-weight: 400; }

.legacyCss .transtab td {
  padding: 0 1.25rem 0 0; }

/*
 *  Utility: Objects
 *______________________*/
.ob-offline {
  outline: 2px dashed red; }

.ob-border {
  border: 1px solid #cacfd3; }

.ob-flt-r {
  float: right; }

.ob-box-right {
  display: table;
  margin-right: 0;
  margin-left: auto; }

.ob-box-narrow {
  max-width: 55rem; }

.ob-box-wide, .langnav__list {
  max-width: 75rem; }

.ob-box--xwide {
  max-width: 1400px; }
  @media screen and (min-width: 1600px) {
    .ob-box--xwide .ob-box__innerbleed {
      margin-left: -100px;
      margin-right: -100px; } }

.ob-box--xxwide {
  max-width: 1600px; }

@media screen and (min-width: 1400px) {
  .ob-box--half-bleed {
    margin-left: -100px;
    margin-right: -100px; } }

@media screen and (min-width: 1600px) {
  .ob-box--quarter-bleed {
    margin-left: -200px;
    margin-right: -200px; } }

.ob-box-center {
  margin-right: auto;
  margin-left: auto; }

.ob-clear:after, .grid:after {
  clear: both;
  content: " ";
  display: table; }

.ob-container > :first-child {
  margin-top: 0; }

.ob-container > :last-child {
  margin-bottom: 0; }

.ob-inline {
  display: inline;
  width: auto; }

.ob-box-padded {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

.ob-rel {
  position: relative; }

.ob-rounded {
  border-radius: 3px; }

.ob-circle {
  border-radius: 50%; }

/*
 *  Utility: Box Model
 *______________________*/
.bx-top-0 {
  margin-top: 0 !important; }

.bx-bot-0 {
  margin-bottom: 0 !important; }

.bx-top-xs {
  margin-top: 0.625rem !important; }

.bx-top-xs-n {
  margin-top: -0.625rem !important; }

.bx-bot-xs {
  margin-bottom: 0.625rem !important; }

.bx-top-s {
  margin-top: 1.25rem !important; }

.bx-top-s-n {
  margin-top: -1.25rem !important; }

.bx-left-s {
  margin-left: 1.25rem !important; }

.bx-bot-s {
  margin-bottom: 1.25rem !important; }

.bx-top-m {
  margin-top: 1.875rem !important; }

.bx-bot-m {
  margin-bottom: 1.875rem !important; }

.bx-top-l {
  margin-top: 2.5rem !important; }

.bx-bot-l {
  margin-bottom: 2.5rem !important; }

.bx-top-xl {
  margin-top: 3.125rem !important; }

.bx-bot-xl {
  margin-bottom: 3.125rem !important; }

.bx-padl-0 {
  padding-left: 0 !important; }

.bx-padr-0 {
  padding-right: 0 !important; }

.bx-padt-l {
  padding-top: 2.5rem !important; }

.bx-padb-l {
  padding-bottom: 2.5rem !important; }

/*
 *  Utility: States
 *______________________*/
.is-hidden {
  display: none; }

.is-fixed {
  position: fixed; }

/*
 *  Utility: Text
 *______________________*/
.tx-center {
  text-align: center !important; }

.tx-light {
  color: #fff !important; }

.tx-dark {
  color: #2c3e50 !important; }

.tx-highlight {
  color: #fab800 !important; }

.tx-upper {
  text-transform: uppercase !important; }

.tx-chubby {
  font-size: 1.25rem; }

.tx-fat {
  font-family: "HelveticaNeueW02-67MdCn_694060", sans-serif;
  font-size: 1.625rem; }

.tx-mark {
  background: #fbb900;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  padding: .25em .4em; }

/*
 *  Utility: Query
 *______________________*/
/* Must come last. */
/*
 *  Core: Media Queries
 *______________________

    Do not touch.

    Spit out all of the stored
    media query data.

*/
@media screen and (min-width: 320px) {
  .column--1-2-xxs {
    width: 50%; } }

@media screen and (max-width: 479px) {
  .btn:not(.btn--toggle) {
    width: 100%; }
  .btn + .btn:not(.btn--toggle) {
    margin-top: 1em; }
  .cta-banner__content h3 {
    max-width: 60%; }
  .mq-hide-s {
    display: none; } }

@media screen and (min-width: 480px) {
  p > .btn:not(:last-child) {
    margin-right: 1em; }
  .nav-overlay__header .icon, .nav-overlay__header .langnav__close:after {
    font-size: 2.25rem; }
  .column--1-2-xs {
    width: 50%; }
  .column--1-3-xs {
    width: 33.33334%; }
  .mq-show-s {
    display: none; } }

@media screen and (min-width: 480px) and (max-width: 639px) {
  h1, .h1 {
    font-size: 2.5rem; }
  h2, .h2 {
    font-size: 2.125rem; }
  h3 {
    font-size: 1.75rem; }
  .nav-overlay__header {
    height: 5.25rem; }
  .banner--large {
    min-height: 15.625rem; } }

@media screen and (min-width: 480px) and (max-width: 839px) {
  .banner--small {
    min-height: 9.375rem; }
  .cta-banner__content h3 {
    max-width: 80%; } }

@media screen and (min-width: 600px) {
  .world-map {
    display: block; } }

@media screen and (min-width: 640px) and (max-width: 839px) {
  h1, .h1 {
    font-size: 2.75rem; }
  h2, .h2 {
    font-size: 2.375rem; }
  h3 {
    font-size: 2rem; }
  h4, .legacyCss h2 {
    font-size: 1.5rem; }
  h5 {
    font-size: 1.375rem; }
  h6 {
    font-size: 1.25rem; }
  .box--pad-l {
    padding: 1.25rem; }
  .field {
    margin-bottom: 1.875rem; }
  .nav-overlay__header {
    height: 5.375rem; }
  .banner--large {
    min-height: 21.875rem; }
  .cta-banner__graphic {
    font-size: 2rem; }
  .accordion__toggle .icon, .accordion__toggle .langnav__close:after {
    top: 1.25rem; }
  .block--padded {
    padding: 3.75rem 0; } }

@media screen and (max-width: 639px) {
  .inline__secondary {
    margin-top: 0.625rem; }
  .catalog-link__img {
    display: none; }
  .footer__widget__group {
    margin-bottom: 2.5rem; }
  .mq-hide-m {
    display: none; } }

@media screen and (min-width: 640px) {
  .image--inline {
    float: left;
    margin: 0.3em 1em 0 0;
    max-width: 50%;
    padding-right: 1em; }
  .box--pad-m {
    padding: 1.25rem; }
  .inline > div {
    float: left; }
  .inline__primary {
    width: 70%; }
  .inline__secondary {
    padding-left: 1.875rem;
    width: 30%; }
  .btn--tiny {
    min-width: 6.25rem; }
  .btn--small {
    min-width: 10rem; }
  .btn--medium {
    font-size: 1rem;
    min-width: 10rem;
    padding: 0.725em 1em; }
  .field--fat {
    padding: 0.9375rem; }
  .slogan {
    display: block; }
  .catalog-link__content {
    padding-left: 4.75rem; }
  .message {
    padding-left: 6.25rem; }
  .service-teaser__icon {
    font-size: 4rem;
    margin: -2rem 0 0 -2rem; }
  .media__obj {
    float: left;
    margin-right: 1.25rem;
    margin-bottom: 0;
    max-width: 30%; }
  .column--1-2-s {
    width: 50%; }
  .column--1-3-s {
    width: 33.33334%; }
  .column--1-4-s {
    width: 25%; }
  .column--1-5-s {
    width: 20%; }
  .footer__widget__title {
    margin-bottom: 2.5rem; }
  .footer__widget {
    margin-bottom: 2.5rem; }
  .ob-first {
    float: left;
    padding-right: 1.5em;
    text-align: right;
    width: 35%; }
  .ob-second {
    float: left;
    max-width: 65%;
    width: 65%; }
  .mq-show-m {
    display: none; } }

@media screen and (max-width: 767px) {
  .mq-hide-l {
    display: none; } }

@media screen and (min-width: 768px) {
  .link--large__meta {
    float: right;
    margin-bottom: 0;
    margin-left: 2em; }
  .carousel__items img {
    width: 100%; }
  .cart-widget__popup {
    display: none; }
  .column--1-2-m {
    width: 50%; }
  .column--1-3-m {
    width: 33.33334%; }
  .column--1-4-m {
    width: 25%; }
  .column--1-5-m {
    width: 20%; }
  .mq-show-l {
    display: none; } }

@media screen and (max-width: 839px) {
  .mq-hide-xl {
    display: none; } }

@media screen and (min-width: 840px) {
  h1, .h1 {
    font-size: 3.125rem; }
  h2, .h2 {
    font-size: 2.75rem; }
  h3 {
    font-size: 2.25rem; }
  h4, .legacyCss h2 {
    font-size: 1.625rem; }
  h5 {
    font-size: 1.5rem; }
  h6 {
    font-size: 1.375rem; }
  .box--pad-l {
    padding: 2.5rem; }
  .btn--medium {
    min-width: 12.5rem; }
  .field {
    margin-bottom: 2.5rem; }
  .nav-overlay__header {
    height: 5.75rem; }
  .banner--small {
    min-height: 12.5rem; }
  .banner--large {
    min-height: 25rem; }
  .cta-banner__content {
    padding: 0 6.25% 0 12.5%; }
  .cta-banner__graphic {
    font-size: 3rem;
    left: 0;
    margin-left: -2em; }
  .accordion__toggle .icon, .accordion__toggle .langnav__close:after {
    top: 1.375rem; }
  .catalog-teaser {
    background: #eee url("../images/template/diamonds-catalog.svg") no-repeat right 0;
    background-size: contain; }
  .catalog-teaser__img {
    float: left;
    margin-right: 1.875rem;
    max-height: 100%;
    max-width: 30%;
    width: auto; }
  .world-map__tooltip {
    display: block; }
  .column--1-2-l {
    width: 50%; }
  .column--1-3-l {
    width: 33.33334%; }
  .column--1-4-l {
    width: 25%; }
  .column--1-5-l {
    width: 20%; }
  .block--padded {
    padding: 5rem 0; }
  .footer {
    padding-top: 3em;
    padding-bottom: 2em; }
  .footer__top {
    border-color: #fbb900 transparent transparent transparent;
    border-width: 2.5em 2.5em 0;
    margin-right: 0;
    right: 0;
    top: -3em; }
  .footer__top .icon, .footer__top .langnav__close:after {
    bottom: 50%;
    margin: 0 0 1em -0.5em;
    top: auto; }
  .mq-show-xl {
    display: none; } }

@media screen and (min-width: 840px) and (max-width: 939px) {
  .slogan {
    margin-top: 2.75rem; } }

@media screen and (max-width: 939px) {
  .search-form {
    background: #626e7c;
    margin-left: 0 !important;
    padding: 0.5rem;
    position: absolute;
    width: 100%; }
  .mq-hide-xxl {
    display: none; } }

@media screen and (min-width: 940px) {
  .slogan {
    margin-top: 3.25rem; }
  .nav-desktop {
    display: block; }
  .nav-overlay {
    display: none; }
  .nav-social a {
    margin-right: 0.5em;
    margin-left: 0.5em; }
  .search-form .field--dark {
    min-width: 22.5rem; }
  .carousel__items {
    margin-right: 2.5rem; }
  .carousel__bullets {
    margin-right: 2.5rem; }
  .nav-toggle-widget {
    display: none; }
  .cart-widget .icon, .cart-widget .langnav__close:after {
    font-size: 1.75rem;
    margin: 0 0.25em 0 0.5em; }
  .no-touchevents .login-widget:hover .login-widget__dropdown {
    display: block; }
  .column--1-2-xl {
    width: 50%; }
  .column--2-3-xl {
    width: 66.66666%; }
  .column--1-3-xl {
    width: 33.33334%; }
  .column--1-4-xl {
    width: 25%; }
  .column--1-5-xl {
    width: 20%; }
  .header__widgets {
    padding-bottom: 0; }
  .header__widgets__section--right {
    margin-top: 0.625rem; }
  .header__widgets__section--right .header__widget {
    margin-right: 0;
    margin-left: 1.875rem; }
  .header__widgets__group {
    display: block; }
  .header__widgets__group + .header__widgets__group {
    margin-top: 1rem; }
  .header__widget {
    vertical-align: middle; }
  .page {
    display: block;
    position: static; }
  .mq-show-xxl {
    display: none; } }

@media screen and (max-width: 1219px) {
  .mq-hide-huge {
    display: none; } }

@media screen and (min-width: 1220px) {
  .teaser__asset {
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem; } }

/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important; }

#swipebox-overlay img {
  border: none !important; }

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  user-select: none; }

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%; }

#swipebox-slider {
  transition: transform .4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer; }

#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block; }

#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px; }

#swipebox-slider .slide .swipebox-inline-container, #swipebox-slider .slide .swipebox-video-container, #swipebox-slider .slide img {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle; }

#swipebox-slider .slide .swipebox-video-container {
  background: 0 0;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  box-sizing: border-box; }

#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }

#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

#swipebox-slider .slide-loading {
  background: url(../images/template/loader.gif) center center no-repeat; }

#swipebox-bottom-bar, #swipebox-top-bar {
  transition: .5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%; }

#swipebox-bottom-bar {
  bottom: -50px; }

#swipebox-bottom-bar.visible-bars {
  transform: translate3d(0, -50px, 0); }

#swipebox-top-bar {
  top: -50px; }

#swipebox-top-bar.visible-bars {
  transform: translate3d(0, 50px, 0); }

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center; }

#swipebox-close, #swipebox-next, #swipebox-prev {
  background-image: url(../images/template/icons-swipebox.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0; }

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px; }

#swipebox-prev {
  background-position: -32px 13px;
  float: left; }

#swipebox-next {
  background-position: -78px 13px;
  float: right; }

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px; }

.swipebox-no-close-button #swipebox-close {
  display: none; }

#swipebox-next.disabled, #swipebox-prev.disabled {
  opacity: .3; }

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  animation: rightSpring .3s; }

.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  animation: leftSpring .3s; }

.swipebox-touch #swipebox-container:after, .swipebox-touch #swipebox-container:before {
  backface-visibility: hidden;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0; }

.swipebox-touch #swipebox-container:before {
  left: 0;
  box-shadow: inset 10px 0 10px -8px #656565; }

.swipebox-touch #swipebox-container:after {
  right: 0;
  box-shadow: inset -10px 0 10px -8px #656565; }

.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before, .swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1; }

@keyframes rightSpring {
  0% {
    left: 0; }
  50% {
    left: -30px; }
  100% {
    left: 0; } }

@keyframes leftSpring {
  0% {
    left: 0; }
  50% {
    left: 30px; }
  100% {
    left: 0; } }

@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px; }
  #swipebox-arrows {
    width: 92%;
    max-width: 800px; } }

#swipebox-overlay {
  background: #0d0d0d; }

#swipebox-bottom-bar, #swipebox-top-bar {
  text-shadow: 1px 1px 1px #000;
  background: #000;
  opacity: .95; }

#swipebox-top-bar {
  color: #fff !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica,Arial,sans-serif; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #2c3e50; }

.select2-container--default .select2-selection--multiple {
  min-height: 40px;
  border-color: #fbb900; }
  .field--error .select2-container--default .select2-selection--multiple {
    border-color: #d83500; }

/*# sourceMappingURL=style.min.css.map */
