.karl-config {
    width:100%;
    background: #eeeeee;
}
.karl-config .page {
    display: none;
}
.karl-config .page[data-id="1"] {
    display: block;
}

.karl-config .head {
    padding: 0;
    margin: 0;
    background: #dddddd;
    height: 23.4px;
}
.karl-config .head > .progress {
    font-weight: bold;
    width: 0;
    background-color: #bbb;
    color: #fff;
    float: left;
    transition: width linear .25s;
}
.karl-config .head > .progress-marker {
    float: left;    
    margin: -5px 0 -5px 0;
    height: 32px;
    padding: 0 .5em;
    background-color: #b50a0a; /* rgba(103, 6, 6, 1); #a0c89b; */
    line-height: 32px;
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.karl-config .head > .progress-marker > picture {
    display: inherit;
}
.karl-config .head > .progress-marker > img,
.karl-config .head > .progress-marker > picture > img {
    max-height: 20px;
    padding: 0 2px;
    opacity: .2;
}
.karl-config .head > .progress-marker > div {
    display: none;
}

.karl-config .head > .progress-marker[step="1"]  img.step1 {
    opacity: 1;
}
.karl-config .head > .progress-marker[step="2"] img.step1,
.karl-config .head > .progress-marker[step="2"] img.step2 {
    opacity: 1;
}
.karl-config .head > .progress-marker[step="3"] img.step1,
.karl-config .head > .progress-marker[step="3"] img.step2,
.karl-config .head > .progress-marker[step="3"] img.step3 {
    opacity: 1;
}
.karl-config .head > .progress-marker[step="4"] img {
    display: none;
}
.karl-config .head > .progress-marker[step="4"] > div.step4 {
    display: block;
}
.karl-config .head > .progress-marker[step="5"] img {
    display: none;
}
.karl-config .head > .progress-marker[step="5"] > div.step5 {
    display: block;
}

/* Wasser */
.karl-config.water .head > .progress-marker[step="3"] img {
    display: none;
}
.karl-config.water .head > .progress-marker[step="3"] > div.step3 {
    display: block;
}
.karl-config.water .head > .progress-marker[step="4"] img {
    display: none;
}
.karl-config.water .head > .progress-marker[step="4"] > div.step4 {
    display: block;
}



.karl-config .tage {
    position: absolute;
    max-width: 80px;
    height: auto;
    right: 0;
    top: 0;
    transform: translate(50%, -34%);
}
.karl-config .tage.left {
    /*
    left: 0;
    transform: translate(-50%, -34%);
    */
}

.haken {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    justify-content: end;
    align-items: flex-end;
}
.haken:after {
    content: "\4e";
    font-family: ETmodules;
    font-size: 1em;
    line-height: 1.75em;
    padding: 0;
    color: #fff;
    width: 100%;
    width: calc(100% + 2px);
    height: 100%;
    height: calc(100% + 2px);
    background: #8ec800;
    border-radius: 50%;
    position: absolute;
    left: -1px;
    top: -1px;
    opacity: 0;
    transition: opacity .2s cubic-bezier(1, .9, 0, 1.4);
}
.haken.checked {
    /* background-color: rgba(103, 6, 6, 1); */
}
.col.active .haken:after,
.haken.checked:after {
    opacity: 1;
}

/*
.haken > span {
    display: block;
    height: 50%;
    background-color: white;
    flex: 0 0 100%;
}
*/

.karl-config .body {
    background: #eeeeee;
    padding: 3em;
    min-height: 250px;
    
}
.karl-config .footer {
    background: #dddddd;
    padding: 1em 3em;
}

.karl-config .body .headline {
    font-size: 22px;
    line-height: 1.2;
    padding: 0 0 2em 0;
}
.karl-config .body .row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.karl-config .body .row > .col {
    flex: 0 0 30%;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.karl-config .body .row > .col.form {
    cursor: default;
}

.karl-config .body .row > .col.quarter {
    flex: 0 0 22%;
}

.karl-config .body .row > .col > .top {
    text-align: center;
    height: 170px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.karl-config .body .row > .col > .bottom {
    text-align: center;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #b50a0a; /* rgba(103, 6, 6, 1); */
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: background-color linear .3s;
    padding: 0 .5em;
}
.karl-config .body .row > .col > .bottom .haken {
    margin-top: .5em;
}


.karl-config .body .row > .col:hover > .bottom,
.karl-config .body .row > .col.active > .bottom {
    background-color: rgba(50, 30, 20, 1);
}

/* Button */
.karl-config button {
    padding: .5em 1.5em;
    cursor: pointer;
    background-color: #fff;
    transition: background-color linear .3s, color linear .3s;
    border: 1px solid #321e13;
    color: rgba(103, 6, 6, 1);
}
.karl-config button:hover,
.karl-config button:active {
    background-color: rgba(50, 30, 20, 1);
    color: #fff;
}

.karl-config fieldset {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.karl-config input[type="text"] {
    padding: 8px;
    margin: 0 0 .5em 0;
}
.karl-config input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
}
.karl-config input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ccc;
}
.karl-config input::-ms-input-placeholder { /* Microsoft Edge */
  color: #ccc;
}


.karl-config button.send {
    background-color: #b50a0a; /* rgba(103, 6, 6, 1); */
    color: white;
}
.karl-config button.send:hover {
    background-color: #321e13;
}

@media(max-width: 767px) {
    .karl-config .body,
    .karl-config .footer {
        padding: 1.5em;
    }
    
    .karl-config .body .row {
        flex-direction: column;
    }
    .karl-config .body .row > .col {
        margin-bottom: 2em;
        display: flex;
        flex-direction: row;
    }
    .karl-config .body .row > .col > .top {
        height: auto;
        flex: 0 0 50%;
    }
    .karl-config .body .row > .col > .bottom {
        flex: 0 0 50%;
    }
    
    .karl-config .page[data-id="4"].body .row .col:first-child {
        display: none;
    }
    
    .karl-config .body .row > .col.form,
    .karl-config .body .row > .col.form > fieldset {
        flex-direction: column;
    }
}
.stempel {
    display: none;
    position: absolute;
    right: 0;
}
.stempel > img {
    width: auto !important;
    height: 60px !important;
}

.karl-config.water .body .row > .col > .bottom {
    background-color: #5cb5eb;
}

.karl-config.water .body .row > .col:hover > .bottom,
.karl-config.water .body .row > .col.active > .bottom {
    background-color: rgba(92, 181, 235, .7);
}
.karl-config.water button {
    padding: .5em 1.5em;
    cursor: pointer;
    background-color: #fff; /* #5cb5eb; */
    transition: background-color linear .3s, color linear .3s;
    border: 1px solid #5cb5eb;
    color: #5cb5eb;
}
.karl-config.water button:hover,
.karl-config.water button:active {
    background-color: rgba(92, 181, 235, .7);
    color: #fff;
}
.karl-config.water button.send {
    background-color: #5cb5eb;
    color: white;
}
.karl-config.water button.send:hover {
    background-color: rgba(92, 181, 235, .7);
}


.karl-config.water .head > .progress-marker {
    background-color: rgba(92, 181, 235, 1);
}





.et_pb_fullwidth_header_0.et_pb_fullwidth_header .et_pb_fullwidth_header_overlay {
    background-color: rgba(0, 0, 0, .2) !important;
}



.checkbox {
    margin-right: 15px;
    opacity: 0;
    transform: scale(1.5);
}
.checkbox + span {
    display: flex;
    justify-content: center;
    align-items: center;
    
    border: 0px solid #ffffff;
    box-shadow: 0 0 0 1px #7f7f7f;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    top: calc(50% - 9px);
    left: 0;
    position: absolute;
    pointer-events: none;
    cursor: pointer;
    
    font-family: ETmodules;
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.5em;
    padding: 0;
    transition: background-color .2s cubic-bezier(1, .9, 0, 1.4);
}
.checkbox + span > span {
    padding: 3px 1px 0 0;
}
.checkbox:checked + span {
    background-color: #8ec800;
}

.error {
	border: 1px solid red !important;
}

input[type="checkbox"].error +label {
	color: red !important;
}



.karl-config.kaffee .col-30-tage {
    flex-direction:row;
    justify-content:flex-start;
    align-items:center;
    padding: 4px 12px;
}
.karl-config.kaffee .col-30-tage.checked {
    background-color: #ffa800;
    color: #b50a0a;
}
.karl-config.kaffee .col-30-tage > span {
    left: 12px;
}

.karl-config.water .col-30-tage {
    flex-direction:row !important;
    justify-content:flex-start;
    align-items:center;
    padding: 4px 12px;
}
.karl-config.water .col-30-tage.checked {
    background-color: #6c2eb9;
    color: #5cb5eb;    
}
.karl-config.water .col-30-tage > span {
    left: 12px;
}

.et-social-icons {
    display: inline-block !important;
}
.et-social-icons .et-social-google-plus > a.icon:before {
    content: '\e09d';
}
#top-header > .container {
    width: 100% !important;
}
.col.form:first-child {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row !important;
}
.col.form:first-child > p {
    width: 100%;
    background-color: #eee;
    line-height: 1.2;
    padding-top: .3em;
}

.auszeichnungen {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 1em 0;
    padding: 0;
}
.auszeichnungen > li {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
    flex: 1;
    text-align: center;
}
.auszeichnungen > li > img,
.auszeichnungen > li > picture > img {
    display: block;
    width: 100%;
    max-width: 40px;
    margin: 0 auto;
}
.auszeichnungen > li > span {
    display: block;
}
