/*-------------------------------------------------------------------------------------

  Copyright (c) 2014 Pixelzauber GmbH, Switzerland
  CSS definition for basic layout

-------------------------------------------------------------------------------------*/
@import url("jquery.fancybox.css");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");

:root {
  --color-black: rgb(0, 0, 0);
  --color-white: rgb(255, 255, 255);
  --color-gray: rgb(241, 241, 241);
  --color-lightgray: rgb(222, 222, 222);
  --color-pink: rgb(229, 10, 126);
  --color-white-50: rgba(255, 255, 255, 0.5);

  --font-main: "Jost", Arial, Helvetica, sans-serif;
}

/* Start CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
html {
  height: 100%;
  font-size: 16px;
  line-height: 23px;
}
body {
  height: 100%;
  line-height: 1;
}
body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a,
a:active,
a:focus,
button,
button:focus,
button:active {
  outline: none;
  outline: 0;
}
input::-moz-focus-inner {
  border: 0;
}
ul,
ol {
  padding: 0;
  margin-left: 25px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 8px;
}

/*-----------------------------------------------
 *  Layout
 *---------------------------------------------*/
body,
header,
section,
nav,
article,
main,
address,
footer {
  position: relative;
  float: left;
  width: 100%;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 938px;
  height: auto;
}
.content {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 618px;
  height: auto;
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}
.white {
  background-color: var(--color-white);
}
.gray {
  background-color: var(--color-gray);
}
.pink {
  background-color: var(--color-pink);
}

.block,
.block_05,
.block_10,
.block_15,
.block_20,
.block_25,
.block_30,
.block_33,
.block_35,
.block_40,
.block_45,
.block_50,
.block_55,
.block_60,
.block_65,
.block_66,
.block_70,
.block_75,
.block_80,
.block_85,
.block_90,
.block_95,
.block_100 {
  float: left;
  height: auto;
}
.block {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -11px;
  width: calc(100% + 22px);
}
.block > .block {
  margin: 0 11px;
  display: block;
}
.block.border {
  margin: 11px;
}
.block.half {
  width: calc(50% - 22px);
}
.block.third {
  width: calc(33.3333% - 22px);
}
.block.two-third {
  width: calc(66.6666% - 22px);
}
.block.quarter {
  width: calc(25% - 22px);
}
.block.three-quarter {
  width: calc(75% - 22px);
}
.block.fifth {
  width: calc(20% - 22px);
}
.block.two-fifth {
  width: calc(40% - 22px);
}
.block.three-fifth {
  width: calc(60% - 22px);
}
.block.four-fifth {
  width: calc(80% - 22px);
}
.block.full {
  width: calc(100% - 22px);
}
.block.addr {
  float: right;
  margin: 0 11px;
  width: calc(40% - 22px);
}
.block.form {
  margin: 0 11px;
  width: calc(60% - 22px);
}
.block_05 {
  width: 5%;
}
.block_10 {
  width: 10%;
}
.block_15 {
  width: 15%;
}
.block_20 {
  width: 20%;
}
.block_25 {
  width: 25%;
}
.block_30 {
  width: 30%;
}
.block_33 {
  width: 33.3333%;
}
.block_35 {
  width: 35%;
}
.block_40 {
  width: 40%;
}
.block_45 {
  width: 45%;
}
.block_50 {
  width: 50%;
}
.block_55 {
  width: 55%;
}
.block_60 {
  width: 60%;
}
.block_65 {
  width: 65%;
}
.block_66 {
  width: 66.6666%;
}
.block_70 {
  width: 70%;
}
.block_75 {
  width: 75%;
}
.block_80 {
  width: 80%;
}
.block_85 {
  width: 85%;
}
.block_90 {
  width: 90%;
}
.block_95 {
  width: 95%;
}
.block_100 {
  width: 100%;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.logo {
  float: left;
  margin-top: 50px;
  width: 458px;
}
.logo img {
  float: left;
  margin-bottom: 5px;
  width: 100%;
}

.headerImg {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: calc(100% - 210px);
  z-index: 1;
  background-image: url(../images/headerImg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gradient-top {
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: 10;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75));
}

.klickDown {
  position: absolute;
  left: calc(50% - 20px);
  bottom: 30px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  cursor: pointer;
}

section {
  padding: 80px 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--color-white);
}
section.footer {
  padding: 40px 0 0 0;
  height: 210px;
}

footer {
  float: left;
  padding: 60px 0 80px 0;
  width: 100%;
}
.coiffureSUISSE {
  float: left;
  margin: 50px 0 0 0;
  width: calc(100% - 142px);
  max-width: 220px;
}
.korrekt_fair {
  float: left;
  margin: 10px 0 0 22px;
  width: 120px;
}
.coiffureSUISSE img,
.korrekt_fair img {
  float: left;
  width: 100%;
}
#copyright {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 20px;
  height: 500px;
  z-index: 3;
}
#copyright .rotate {
  display: block;
  width: 500px;
  height: 20px;
  -webkit-transform: rotate(90deg) translatex(-20px);
  -webkit-transform-origin: left bottom;
  -moz-transform: rotate(90deg) translatex(-20px);
  -moz-transform-origin: left bottom;
  -o-transform: rotate(90deg) translatex(-20px);
  -o-transform-origin: left bottom;
  -ms-transform: rotate(90deg) translatex(-20px);
  -ms-transform-origin: left bottom;
  transform: rotate(90deg) translatex(-20px);
  transform-origin: left bottom;
}
#copyright .rotate .rotate180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.border-top,
.border-right,
.border-bottom,
.border-left {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--color-pink);
  z-index: 200;
}
.border-top {
  top: 0;
  left: 0;
  height: 12px;
}
.border-right {
  top: 0;
  right: 0;
  width: 12px;
}
.border-bottom {
  bottom: 0;
  left: 0;
  height: 12px;
}
.border-left {
  top: 0;
  left: 0;
  width: 12px;
}

.bubble {
  display: flex;
  position: absolute;
  bottom: 150px;
  right: 60px;
  padding: 0;
  width: 200px;
  height: 200px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 90;
  transform: rotate(10deg);
}

/*-----------------------------------------------
 *  Text Basics
 *---------------------------------------------*/
body {
  font-family: var(--font-main);
  color: var(--color-black);
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  -webkit-text-size-adjust: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-main);
  margin: 20px 0 50px 0;
  color: var(--color-pink);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1em;
}
h1,
.h1 {
  font-size: 60px;
  text-align: center;
}
h2,
.h2 {
  font-size: 60px;
  text-align: center;
}
h3,
.h3 {
  font-size: 30px;
}
h4,
.h4 {
  font-size: 26px;
  margin-bottom: 15px;
}
h5,
.h5 {
  font-size: 20px;
  color: var(--color-black);
}
h6,
.h6 {
  font-size: 20px;
  color: var(--color-black);
}
.first {
  margin-top: 0;
}
.center {
  text-align: center;
}

p {
  line-height: 1.3em;
  margin-bottom: 8px;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a:hover {
  color: var(--color-pink);
  text-decoration: none;
}
a.active {
}
a[name],
a[name]:hover {
  color: var(--color-black);
  text-decoration: none;
}

em {
  font-style: italic;
}

pre {
  padding: 10px 19px;
  margin: 18px 0 12px 0;
  line-height: 20px;
  width: auto;
  color: var(--color-blue);

  border: 1px solid var(--color-lightgray);
  background-color: var(--color-gray-241);

  overflow: auto;
  overflow-y: hidden;
}

sup {
  line-height: 1em;
}

blockquote {
  display: inline-block;
  position: relative;
  padding: 40px 50px;
  margin: 11px 22px;
  width: auto;
  max-width: calc(100% - 44px);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--color-gray);
  border-radius: 8px;
  background-color: var(--color-white);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
blockquote::before {
  position: absolute;
  display: inline-block;
  top: -12px;
  left: -15px;
  height: 60px;
  width: 60px;
  content: "";
  background-image: url(../images/icon_quote.svg);
  background-size: 60px auto;
  background-repeat: no-repeat;
}
blockquote cite {
  left: 40px;
  margin-bottom: 8px;
  font-size: 1em;
  color: var(--color-lightgray);
}
blockquote cite:before {
  content: "\2014 \2009";
}

ol,
ul {
  margin: 0;
  padding: 0 0 15px 0;
  width: 100%;
}
ul ul,
ol ol {
  margin: 0;
  padding: 0;
  width: 100%;
}
ul li {
  list-style: none;
  text-align: left;
  line-height: 1.5em;
  margin: 0 0 0 18px;
}
ul li::before {
  float: left;
  content: "\25CF";
  color: var(--color-blue);
  margin: 0 0 -10px -14px;
  display: block;
  font-size: 0.8em;
}
ol li {
  margin-left: 30px;
  line-height: 1.5em;
  list-style: decimal;
}
@media print {
  ol {
    margin: 0 0 0 24px;
    padding: 0;
    list-style: decimal;
  }
  ul {
    margin: 0 0 0 17px;
    padding: 0;
    list-style: disc;
  }
  ol li,
  ul li {
    margin: 0;
    padding: 0;
    background: none;
  }
}

b,
strong {
  font-weight: 500;
}

hr {
  padding: 0 0 20px 0;
  margin: 20px 0 0 0;
  height: 0;
  border: 0;
  border-top: 1px dotted var(--color-black);
}

table {
  margin-bottom: 10px;
  font-family: var(--font-main);
  font-size: 1em;
}
table th {
  border-bottom: 1px dotted var(--color-black);
  font-weight: 400;
  padding: 2px 0;
  text-align: left;
}
table td {
  padding: 4px 0;
}
table.none,
table.none td {
  padding: 0px;
  margin-bottom: 0px;
}
table.zebra thead tr {
  background-color: rgb(233, 233, 233);
}
table.zebra tbody tr:nth-child(even) {
  background-color: var(--color-gray-241);
}

.column {
  column-count: 2;
  column-gap: 30px;
}

/*-----------------------------------------------
 *  Text Customising
 *---------------------------------------------*/
section a.pdf,
section a.doc,
section a.xls,
section a.ppt,
section a.jpg,
section a.zip,
section a.mp4,
section a.xd {
  background-color: transparent;
  background-position: 0 6px;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-left: 22px;
  padding-right: 0;
  text-decoration: underline;
}
section a.pdf {
  background-image: url("../images/icon_files_pdf.svg");
}
section a.doc {
  background-image: url("../images/icon_files_doc.svg");
}
section a.xls {
  background-image: url("../images/icon_files_xls.svg");
}
section a.ppt {
  background-image: url("../images/icon_files_ppt.svg");
}
section a.jpg {
  background-image: url("../images/icon_files_img.svg");
}
section a.zip {
  background-image: url("../images/icon_files_zip.svg");
}
section a.mp4 {
  background-image: url("../images/icon_files_mp4.svg");
}
section a.xd {
  background-image: url("../images/icon_files_xd.svg");
}
section a.none,
section a:hover.none {
  background: none;
  padding-right: 0px;
  padding-left: 0px;
}

p.button {
  padding: 20px 0 30px 0;
}
p.button a {
  padding: 8px 50px;
  cursor: pointer;
  color: var(--color-white);
  background: none;
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 3px;
}
p.button a:hover {
  color: var(--color-white) !important;
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
}

.headline h2 {
  line-height: 1em;
  font-size: 78px;
  color: var(--color-white);
}
.headline p {
  margin-bottom: 0;
  font-size: 24px;
  color: var(--color-white);
}

.toggle {
  float: left;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-blue);
  cursor: pointer;
}
.toggle h3 {
  position: relative;
  margin: 0;
  padding: 14px 0 14px 36px;
  line-height: 1.2em;
}
.toggle h3::before,
.toggle h3::after {
  position: absolute;
  display: block;
  content: "";
  top: 31px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-blue);
  transition: 0.3s;
}
.toggle h3::after {
  top: 22px;
  left: 9px;
  width: 2px;
  height: 20px;
}
.toggle .display {
  display: none;
  position: relative;
  float: left;
  padding: 0 0 10px 0;
  margin-left: 40px;
  width: calc(100% - 40px);
}
.toggle.open h3::after {
  transform: rotate(270deg);
}

header {
  font-size: 22px;
}

.bubble h3 {
  margin: 0;
  font-size: 24px;
  text-align: center;
}
.bubble,
.bubble h1,
.bubble h2,
.bubble h3,
.bubble h4,
.bubble p,
.bubble a,
footer,
footer h1,
footer h2,
footer h3,
footer h4,
footer p,
footer a {
  color: var(--color-white);
}
footer a:hover {
  color: var(--color-lightgray);
}

#copyright {
  font-size: 14px;
  color: var(--color-white);
}
#copyright a {
  color: var(--color-white);
}
#copyright a:hover {
  color: var(--color-lightgray);
}

#react-cookie-banner {
  font-size: 1.1em;
  font-weight: 400;
  color: var(--color-white);
}
#react-cookie-banner a {
  color: var(--color-white);
  text-decoration: underline;
}
#react-cookie-banner a:hover {
  color: var(--color-lightgray);
}
#react-cookie-banner .button {
  float: right;
  margin: 0;
  margin-top: -20px;
}
#react-cookie-banner .button a {
  text-decoration: none;
}

/*-----------------------------------------------
 *  Navigation
 *---------------------------------------------*/

/**
 * socialmedia
 *
 */
ul.socialmedia {
  display: inline-flex;
  float: left;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: left;
  margin: 0;
  padding: 0;
  width: auto;
  list-style: none;
}
footer ul.socialmedia {
  margin: 11px 0 0 -11px;
}
ul.socialmedia li {
  display: inline;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
ul.socialmedia li a {
  float: left;
  margin: 0;
  padding: 0;
}
ul.socialmedia svg {
  float: left;
  width: 40px;
  height: 40px;
}
ul.socialmedia svg .sm_st0 {
  fill: transparent;
}
ul.socialmedia svg .sm_st1 {
  fill: var(--color-blue);
  transition: all 0.2s ease-in-out;
}
footer ul.socialmedia svg .sm_st1 {
  fill: var(--color-white);
  transition: all 0s ease-in-out;
}
ul.socialmedia li:hover svg .sm_st1 {
  fill: var(--color-lightgray);
}
.transparent ul.socialmedia svg .sm_st1 {
  fill: var(--color-white);
}

/*-----------------------------------------------
 *  Formular
 *---------------------------------------------*/
form,
fieldset {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
fieldset {
  margin: 0 0 10px 0;
  width: 100%;
}
label,
legend {
  float: left;
  margin: 0 11px;
  padding-top: 15px;
  width: calc(30% - 22px);
}
.group {
  float: left;
  margin: 0;
  padding: 6px 0;
  width: 70%;
}
/*
fieldset .group {
	float: right;
	margin: 0 15px;
	width: calc(70% - 30px);
}
fieldset .group label {
	margin: 0 0 5px 0;
	width: 100%;
}
*/
.required {
  color: var(--color-red);
}
select,
input,
textarea {
  float: left;
  margin: 0 11px 6px 11px;
  padding: 10px 11px;
  width: calc(70% - 22px);
  border-radius: 3px;
  border: 1px solid var(--color-gray);
  background-color: var(--color-gray-241);
  outline: none;

  font-family: var(--font-main);
  font-weight: 400;
  font-size: 20px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input.plz {
  margin-right: 6px;
  width: 100px;
}
input.ort {
  margin-left: 0;
  width: calc(70% - 128px);
}
select {
  padding: 10px 50px 10px 7px;
  background-image: url("../images/icon_down.svg");
  background-position: calc(100% - 11px) center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  cursor: pointer;
}
select:required:invalid {
  color: var(--color-lightgray);
}
select option[value=""][disabled] {
  display: none;
}
select option,
select:required:invalid option {
  color: var(--color-black);
}
textarea {
  padding-top: 10px;
  height: 124px;
}
input[type="text"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
  -webkit-padding-before: 2px;
  -webkit-padding-after: 2px;
}

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
	select {
		background-image: url('../images/bg_select.png');
		background-position: right center;
		background-repeat: no-repeat;
	}
}
select {
	background-image: url('../images/bg_select.png');
	background-position: right center;
	background-repeat: no-repeat;
}
select::-ms-value {
	background: none;
}
*/
::-webkit-input-placeholder {
  color: var(--color-lightgray);
}
:-moz-placeholder {
  color: var(--color-lightgray);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--color-lightgray);
  opacity: 1;
}
::placeholder {
  color: var(--color-lightgray);
}
select.placeholder {
  color: var(--color-lightgray);
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  float: left;
  margin-top: 10px;
  cursor: pointer;
  color: var(--color-white);
  width: calc(35% - 22px);

  border: none;
  border-radius: 3px;
  background-color: var(--color-blue);
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: var(--color-black);
}

.container {
  display: block;
  position: relative;
  margin: 4px 11px 4px 11px;
  padding: 2px 0 0 40px;
  width: calc(100% - 22px);
  min-height: 30px;
  line-height: 1.3;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.group.rail .container {
  width: auto;
  margin-right: 33px;
}
.group.rail .container:last-child {
  margin-right: 0;
}
.container input {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 0;
  height: 0;
}
.checkmark,
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  width: 28px;
  border: 1px solid var(--color-gray);
  background-color: var(--color-gray-241);
  border-radius: 3px;
}
.radiomark {
  border-radius: 50%;
}
.error .checkmark,
.error .radiomark {
  border: 1px solid var(--color-red);
}

.checkmark:after,
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}
.container:hover input ~ .checkmark:after,
.container input:checked ~ .checkmark:after,
.container:hover input ~ .radiomark:after,
.container input:checked ~ .radiomark:after {
  display: block;
}
.container:hover .checkmark:after {
  left: 9px;
  top: 3px;
  width: 7px;
  height: 14px;
  border: solid var(--color-gray-222);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container .checkmark:after,
.container:hover input:checked ~ .checkmark:after {
  left: 9px;
  top: 3px;
  width: 7px;
  height: 14px;
  border: solid var(--color-black);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container:hover .radiomark:after {
  top: 7px;
  left: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gray-222);
}
.container .radiomark:after,
.container:hover input:checked ~ .radiomark:after {
  top: 7px;
  left: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-black);
}

.switch {
  position: relative;
  display: inline-block;
  margin: 7px 11px;
  padding: 0;
  width: 56px;
  height: 30px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-green);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 15px;
}

.slider.round:before {
  border-radius: 50%;
}

form p {
  /* Pflichtfeld */
  float: left;
  margin-right: 11px;
  margin-left: calc(30% + 11px);
  width: calc(70% - 22px);
}
div.error {
  display: none;
  float: left;
  margin: 0;
  width: 100%;
  color: var(--color-red);
}

/* Form stretched */
form.stretched label {
  display: none;
}
form.stretched label.container {
  display: block;
}
form.stretched legend {
  margin-bottom: 5px;
  width: calc(100% - 30px);
}
form.stretched fieldset .group {
  width: calc(100% - 30px);
}
form.stretched fieldset .group label {
  display: block;
}
form.stretched input[type="text"],
form.stretched input[type="number"],
form.stretched input[type="url"],
form.stretched input[type="tel"],
form.stretched input[type="email"],
form.stretched input[type="password"],
form.stretched select,
form.stretched textarea {
  width: calc(100% - 30px);
}
form.stretched input[type="submit"],
form.stretched input[type="button"],
form.stretched input[type="reset"] {
  width: calc(50% - 30px);
}
form.stretched p {
  float: left;
  margin: 11px;
  width: calc(100% - 22px);
}

.block.addition {
  margin-top: -10px;
  height: 0px;
  overflow: hidden;
}

/*-----------------------------------------------
 *  Search
 *---------------------------------------------*/
.navSearchIconX {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 38px;
  right: 30px;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;

  -webkit-transition: background 300ms;
  -moz-transition: background 300ms;
  -o-transition: background 300ms;
  transition: background 300ms;

  background-color: transparent;
}
.navSearchIconX span {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: none;
}
.navSearchIconX span:before,
.navSearchIconX span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  content: "";
}
.navSearchIconX span:before {
  top: 0;
  transform: rotate(45deg);
}
.navSearchIconX span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.search form {
  margin: 0;
  padding: 8px;
  margin-left: calc(50% - 300px);
  width: 584px;
  background: var(--color-gray-241);
  /*
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.75);
	*/
}
.search input {
  float: left;
  border: none;
  margin: 0;
  padding: 5px 10px;
  height: 44px !important;
  width: calc(100% - 44px);
  color: rgba(51, 51, 51, 1);
  border: none;
  background: transparent;
}
.search input:focus {
  color: rgba(51, 51, 51, 1);
}
.search input[type="submit"] {
  float: left;
  margin: 0;
  padding: 0;
  height: 44px !important;
  width: 44px;
  background: transparent url("../images/icon_search.svg") center no-repeat;
  background-size: 25px auto;
  box-shadow: none;
}
.search input[type="submit"]:hover {
  border: none;
}

.searchForm {
  float: left;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}
.searchForm input {
  float: left;
  margin: 0;
  height: 50px;
  width: 66.6666%;
}
.searchForm input[type="submit"] {
  float: left;
  margin: 0;
  height: 50px;
  width: 33.3333%;
}
.searchResult {
  float: left;
  margin-top: 20px;
  margin-bottom: 5px;
  width: 100%;
  cursor: pointer;
}
.searchResult h3,
.searchResult p {
  margin: 0;
}
.searchResult p .resultPath {
  color: var(--color-gray);
}

/*-----------------------------------------------
 *  Loader
 *---------------------------------------------*/
#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100000;
}
.loader {
  position: relative;
  margin: 0 auto;
  top: calc(50% - 50px);
  width: 100px;
  height: 100px;
  text-align: center;
}
.loader > div {
  background-color: var(--color-white);
  height: 100%;
  width: 4px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: loader 1.2s infinite ease-in-out;
  animation: loader 1.2s infinite ease-in-out;
}
.loader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.loader .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.loader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.loader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes loader {
  0%,
  60%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  30% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes loader {
  0%,
  60%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  30% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/*-----------------------------------------------
 *  Module
 *---------------------------------------------*/
.team {
  display: flex;
  float: left;
  margin: 0 11px;
  width: calc(50% - 22px);
}
.team .image {
  margin-right: 22px;
  width: calc(40% - 22px);
}
.team .image img {
  float: left;
  width: 100%;
  border-radius: 50%;
  background-color: var(--color-gray);
  object-fit: cover;
}
.team .text {
  margin-right: 22px;
  width: calc(60% - 22px);
}

.keuneLogo {
  float: left;
  margin-top: 10px;
  margin-bottom: 40px;
  width: 80%;
  max-width: 280px;
}

.slide {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  float: left;
}
.slide::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}
.slide .slide-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.slide .slide-wrapper .slide-show {
  float: left;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------------------------------------------------
  CSS DEFINITIONS FOR jcarousel
-------------------------------------------------------------------------------------*/
/* SLIDER */
ul.slides-container {
  display: none;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
ul.slides-container li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgb(240, 240, 240);
  background-position: center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.slides-pagination {
  position: absolute;
  margin: 0;
  padding: 0;
  bottom: 0;
  width: 100%;
  height: 37px;
  text-align: center;
  z-index: 3;
}
.slides-pagination a {
  padding: 0;
  margin: 0 4px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-indent: -100px;
}
.slides-pagination a.current {
  background-color: var(--color-white);
}
.slides-navigation {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 5;
}
.slides-navigation a {
  position: absolute;
  display: block;
  padding: 0;
  margin: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  text-indent: -200%;
}
.slides-navigation a.prev {
  left: 0;
  background: transparent url("../images/icon_prev.svg") center left no-repeat;
  background-size: 38px auto;
}
.slides-navigation a.next {
  right: 0;
  background: transparent url("../images/icon_next.svg") center right no-repeat;
  background-size: 38px auto;
}

/*-----------------------------------------------
 *  Responsive
 *---------------------------------------------*/
@media only screen and (max-width: 1280px) {
  .bubble {
    right: 30px;
    bottom: 180px;
  }
}
@media only screen and (max-width: 990px) {
  .footer .block.half,
  footer .block.half {
    width: auto;
    min-width: 240px;
  }
  .team {
    margin: 0 11px 22px 11px;
    width: calc(100% - 22px);
  }
  .team .text {
    margin-right: 0;
    width: 60%;
  }
}
@media only screen and (max-width: 800px) {
  section.footer .block.half:last-child {
    display: none;
  }
}
@media only screen and (max-width: 580px) {
  .border-top,
  .border-bottom {
    height: 8px;
  }
  .border-right,
  .border-left {
    width: 8px;
  }

  .inner {
    width: calc(100% - 50px);
  }

  .logo {
    float: left;
    margin-top: 50px;
    width: 100%;
  }
  .headerImg {
    height: calc(100% - 170px);
  }
  section {
    padding: 40px 0;
  }
  section.footer {
    padding: 25px 0 0 0;
    height: 170px;
  }
  section.footer .block.half:last-child {
    display: none;
  }
  section.footer .block.half,
  footer .block.half {
    width: calc(100% - 22px);
    min-width: unset;
  }
  section.footer .block.half:last-child {
    display: none;
  }
  footer {
    padding: 40px 0;
  }
  footer span {
    float: left;
    width: 100% !important;
  }
  footer span:last-child {
    margin-top: 8px;
  }
  .coiffureSUISSE {
    margin: 40px 0 50px 0;
  }
  .korrekt_fair {
    margin: 0 0 0 22px;
  }
  .keuneLogo {
    float: left;
    margin: 0 13% 40px 17%;
    width: 70%;
    max-width: unset;
  }
  .klickDown {
    bottom: 15px;
  }

  .bubble {
    width: 160px;
    height: 160px;
    right: 15px;
    bottom: 230px;
  }
  .bubble h3 {
    font-size: 20px;
  }

  /* Formulare */
  label,
  legend {
    margin: 5px 0 0 0;
    width: 100%;
  }
  label {
    margin-bottom: 8px;
  }
  label.noCaption {
    width: calc(100% - 25px);
  }
  input,
  textarea,
  select {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    width: 100% !important;
    height: inherit;
    padding: 10px 3% !important;
  }
  input[type="submit"],
  input[type="button"],
  input[type="resete"] {
    padding: 15px 0;
    height: auto;
  }
  input[type="checkbox"],
  input[type="radio"] {
    padding: 0;
    width: auto !important;
  }
  .newsletter input[type="text"],
  .newsletter input[type="submit"] {
    border-radius: 3px;
  }
  .container,
  .group {
    margin: 0 0 5px 0;
    width: 100%;
  }
  form p {
    margin: 0 0 5px 0;
    width: 100%;
  }

  .search input {
    width: calc(100% - 44px) !important;
  }
  .search input[type="submit"] {
    width: 44px !important;
  }

  .block_05,
  .block_10,
  .block_15,
  .block_20,
  .block_25,
  .block_30,
  .block_33,
  .block_35,
  .block_40,
  .block_45,
  .block_50,
  .block_55,
  .block_60,
  .block_65,
  .block_66,
  .block_70,
  .block_75,
  .block_80,
  .block_85,
  .block_90,
  .block_95,
  .block_100 {
    margin: 0;
    width: 100%;
  }
  .block.half,
  .block.third,
  .block.two-third,
  .block.quarter,
  .block.three-quarter,
  .block.fifth,
  .block.two-fifth,
  .block.three-fifth,
  .block.four-fifth,
  .block.full,
  .block.addr,
  .block.form {
    width: calc(100% - 22px);
  }

  /* Texte */
  h1,
  .h1,
  h2,
  .h2 {
    font-size: 30px;
  }

  blockquote {
    margin: 11px 0;
    padding: 25px;
    max-width: calc(100% - 50px);
  }
  blockquote::before,
  blockquote::after {
    font-size: 60px;
  }
  blockquote::before {
    left: -10px;
  }
  blockquote::after {
    right: -20px;
  }

  /*
	blockquote {
		padding: 15px 0 15px 35px;
	}
	blockquote:before {
		left: 0px;
	}
	*/
  .column {
    column-count: 1;
    column-gap: 0;
  }
}
