@font-face {
    font-family: "Futura LT Pro";
    font-style: normal;
    font-weight: 300;
    font-stretch: normal;
    src: local(""),
    url("../fonts/FuturaLTProLight.woff2") format("woff2"),
    url("../fonts/FuturaLTProLight.woff") format("woff"),
    url("../fonts/FuturaLTProLight.otf") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "Futura LT Pro";
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    src: local(""),
    url("../fonts/FuturaLTProBook.woff2") format("woff2"),
    url("../fonts/FuturaLTProBook.woff") format("woff"),
    url("../fonts/FuturaLTProBook.otf") format("opentype");
    font-display: auto;
}


@font-face {
    font-family: "Futura LT Pro";
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
    src: local(""),
    url("../fonts/FuturaLTProMedium.woff2") format("woff2"),
    url("../fonts/FuturaLTProMedium.woff") format("woff"),
    url("../fonts/FuturaLTProMedium.otf") format("opentype");
    font-display: auto;
}


@font-face {
    font-family: "Futura LT Pro";
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
    src: local(""),
    url("../fonts/FuturaLTProBold.woff2") format("woff2"),
    url("../fonts/FuturaLTProBold.woff") format("woff"),
    url("../fonts/FuturaLTProBold.otf") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: "Futura LT Pro Condensed";
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
    src: local(""),
    url("../fonts/FuturaLTProBoldCond.woff2") format("woff2"),
    url("../fonts/FuturaLTProBoldCond.woff") format("woff"),
    url("../fonts/FuturaLTProBoldCond.otf") format("opentype");
    font-display: auto;
}

@font-face {
    font-family: workingwell-text;
    font-weight: 400;
    src:
    url(../fonts/workingwell-text-regular.woff2) format('woff2'),
    url(../fonts/workingwell-text-regular.woff) format('woff');
}

@font-face {
    font-family: workingwell-text;
    font-weight: 700;
    src:
    url(../fonts/workingwell-text-bold.woff2) format('woff2'),
    url(../fonts/workingwell-text-bold.woff) format('woff');
}

@font-face {
    font-family: workingwell-subline;
    font-weight: 700;
    src:
    url(../fonts/workingwell-subline.woff2) format('woff2'),
    url(../fonts/workingwell-subline.woff) format('woff');
}

@font-face {
    font-family: workingwell-navigation;
    font-weight: 400;
    src:
    url(../fonts/workingwell-navigation.woff2) format('woff2'),
    url(../fonts/workingwell-navigation.woff) format('woff');
}

:root {
    /*FONTS*/
    --font-face-default: "workingwell-text", sans-serif;

    /*COLORS*/
    --color-white: #ffffff;
    --color-black: #000000;
    --color-font: #000;
    --color-grey: #bfbfbf;
    --color-blue: #0092bf;

    --radio-count: 11;
    --radio-width: 26px;

    --font-size-small: 16px;
    --line-height-small: 130%;

    --font-size-medium: 1.3rem;
    --line-height-medium: 2rem;

    --font-size-large: 2rem;
    --line-height-large: 2.6rem;

    --font-size-menu: 20px;
    --line-height-menu: 110%;

    --font-size-subtitle: 25px;
    --line-height-subtitle: 110%;

    --font-size-title: 2rem;
    --line-height-title: 2.6rem;

    --font-size-glider: 80px;
    --line-height-glider: 110%;
}

body, a, td, th, br, input, select, textarea, h1, h2, h3, h4 {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-face-default);
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-medium);
    line-height: var(--line-height-medium);
    text-decoration: none;
    color: var(--color-font);
}

p {
    font-size: 1.3rem;
}

.title {
    font-size: var(--font-size-title);
    line-height: var(--line-height-title);
    font-weight: 600;
}

a:hover {
    color: var(--color-blue);
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.hidden {
    visibility: hidden;
}

.error {
    margin-top: 20px;
    font-size: 18px;
    color: red;
}

.content.formular {
    max-width: 990px;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.field__container {
    width: 100%;
    margin: 0 0 20px 0;
}

.field__container.required {
    position: fixed;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity:0.01;
}

.row .field__container {
    width: 50%;
}

.row .field__container.single {
    width: 49%;
}

.field__container label {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}

.field__container label .duty {
    color: #e80000;
}

.field {
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 12px;
    background: #f7f7f7;
    border: 1px solid #c4c4c4;
    border-radius: 0;
    box-shadow: none;
    /*color: #787878;*/
    color: var(--color-font);
    transition: all .5s;
    font-size: 20px;
}

header {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vw 4vw 1.5vw 4vw;
    background-color: #ffffff;
}

header .logo {
    display: block;
    max-width: 166px;
}

header .logo img {
    width: 166px;
    max-width: 100%;
}

header .menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

header .menu figure {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
    margin: 0;
}

header .menu figure img {
    width: 3.6vw;
}

header .menu figure img.hidden {
    display: none;
}

header .menu figure figcaption {
    text-align: center;
    color: var(--color-grey);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}

header .menu #sections_1 figcaption,
header .menu #sections_2 figcaption,
header .menu #sections_3 figcaption,
header .menu #sections_4 figcaption,
header .menu #sections_5 figcaption {
    min-width: 80px;
}

header .menu figure.active figcaption,
header .menu figure.checked figcaption {
    color: var(--color-blue);
}

header .menu figure.active figcaption {
    font-weight: 600;
}

main {
    box-sizing: border-box;
    height: 85vh;
    padding: 4% 11% 4% 11%;
    background-color: #f3f4f4;
}

#content {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 6% 4% 2% 4%;
    background-color: #ffffff;
}

.fullheight #content {
    padding-top: 5vh;
    padding-bottom: 3vh;
}

#content.data {
    padding-top: 4%;
}

#questions {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#questions:not(.result) .section,
#questions:not(.result) .section .section__questions,
#questions:not(.result) .section .question__container {
    display: none;
}

#questions .section.finish .finish {
    position: relative;
    overflow: visible;
    height: auto;
}

#questions .section {
    height: 100%;
    overflow: hidden;
}

#questions .section > .steps {
    position: absolute;
    top: -3%;
    left: 50%;
    width: 100%;
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#questions .section > .steps ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#questions .section > .steps ul li {
    box-sizing: border-box;
    max-width: 20%;
    padding: 1.5% 3%;
    border: 1px solid var(--color-grey);
    background-color: #ffffff;
    color: var(--color-grey);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: auto;
    cursor: not-allowed;
}

#questions .section > .steps ul li.active,
#questions .section > .steps ul li.checked {
    border-color: var(--color-blue);
    pointer-events: auto;
    cursor: pointer;
}

#questions .section > .steps ul li.checked {
    background-color: #ffffff;
    color: var(--color-blue);
}

#questions .section > .steps ul li.active {
    background-color: var(--color-blue);
    color: #ffffff;
}

#questions .section > .steps ul li:hover {
    cursor: not-allowed;
}

#questions .section > .steps ul li.active:hover,
#questions .section > .steps ul li.checked:hover {
    cursor: pointer;
}

#questions .section .section__questions {
    position: relative;
    height: 100%;
}

#questions .section.finish .section__questions {
    height: auto;
}

#questions .section .question__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

#questions .section .question__container h2 {
    font-weight: 600;
}

#questions .section .question__container .info {
    margin: 7% 0 0 0;
}

#questions .section .question__container .info p {
    font-size: clamp(0.625rem, 0.4772rem + 0.7391vw, 1.05rem);;
}

#questions .section .question__container .info dl {
    display: grid;
    grid-template-columns: 65px auto;
    row-gap: 5px;
}

#questions .section .question__container .info dl * {
    margin: 0;
    font-size: 1rem;
    line-height: 120%;
    font-weight: 500;
}

#questions .section .question__container .info dl dt {
    text-align: right;
    margin-right: 40px;
    width: 25px;
    display: inline-block;
    float: left;
}

#questions .section .question__container .info dl dt:after {
    content: '=';
    display: inline-block;
    margin: 5px -40px 0 0;
    width: 40px;
    text-align: center;
}

#questions .section .question__container .info dl dd {
    margin-top: 5px;
}

#questions .section .steps ul li a span:not(.text),
#questions > .content > .title {
    display: none;
}

#questions .section .content .section__title,
#questions .section .content .steps {
    display: none;
}

#questions .questions__select .item:hover,
#questions .questions__select .item.active {
    background-color: var(--color-blue);
    color: #ffffff;
}

.range__container {
    display: flex;
    flex-direction: row;
    align-content: stretch;
    position: relative;
    left: calc((((100% / var(--radio-count)) / 2) * -1) + ((var(--radio-width) / 2) + 1px));
    width: 100%;
    height: 50px;
    margin: 3vw 0 0 0;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.range__container .background {
    position: absolute;
    height: 1px;
    width: calc(100% * ((var(--radio-count) - 1) / var(--radio-count)));
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--color-blue);
}

.range__container input {
    visibility: hidden;
    box-sizing: border-box;
    flex: 1;
    width: 0;
    height: 0;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.range__container label {
    display: inline-block;
    position: relative;
    width: calc(100% / 11);
    height: 100%;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.range__container label::before {
    content: attr(data-value);
    position: absolute;
    left: 50%;
    padding-top: 20px;
    -o-transform: translate(-50%, 30px);
    -ms-transform: translate(-50%, 30px);
    -moz-transform: translate(-50%, 30px);
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
    font-size: 1.3rem;
    letter-spacing: 0.4px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.85;
    transition: all 0.15s ease-in-out;
}

.range__container input:checked + label::before {
    transition: all 0.15s linear;
}

.range__container label::after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: var(--radio-width);
    height: var(--radio-width);
    border: 1px solid var(--color-blue);
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 1;
    transition: all 0.15s ease-in-out;
}

.range__container input:checked + label::after,
.range__container input.checked + label::after,
.range__container input:hover + label::after {
    background-color: var(--color-blue);
}

.finish .content {
    width: fit-content;
    margin: 3vh auto 0 auto;
}

.finish .content .index {
    text-align: center;
}

#workingwell-index {
    margin: 2vh 0 0 0;
    font-size: 50px;
    line-height: 50px;
}

#questions .section.finish .question__container .info {
    margin: 2vh 0 0 0;
}

.finish .content .index__sections {
    margin: 3vh 0 0 0;
}

.finish .content .index__sections .index__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    min-width: 350px;
    height: 40px;
    /*background: -o-linear-gradient(90deg, rgb(196, 196, 196) 0% 0%, rgb(0, 146, 191) 0%, rgb(232, 0, 0) 100%);
    background: -ms-linear-gradient(90deg, rgb(196, 196, 196) 0% 0%, rgb(0, 146, 191) 0%, rgb(232, 0, 0) 100%);
    background: -moz-linear-gradient(90deg, rgb(196, 196, 196) 0% 0%, rgb(0, 146, 191) 0%, rgb(232, 0, 0) 100%);
    background: -webkit-linear-gradient(90deg, rgb(196, 196, 196) 0% 0%, rgb(0, 146, 191) 0%, rgb(232, 0, 0) 100%);
    background: linear-gradient(90deg, rgb(196, 196, 196) 0% 0%, rgb(0, 146, 191) 0%, rgb(232, 0, 0) 100%);*/
    background: -o-linear-gradient(90deg, rgb(0, 146, 191) 0%, rgb(220, 220, 220) 100%);
    background: -ms-linear-gradient(90deg, rgb(0, 146, 191) 0%, rgb(220, 220, 220) 100%);
    background: -moz-linear-gradient(90deg, rgb(0, 146, 191) 0%, rgb(220, 220, 220) 100%);
    background: -webkit-linear-gradient(90deg, rgb(0, 146, 191) 0%, rgb(220, 220, 220) 100%);
    background: linear-gradient(90deg, rgb(0, 146, 191) 0%, rgb(220, 220, 220) 100%);
}

.finish .content .index__sections .row {
    align-items: center;
}

.finish .content .index__sections .row + .row {
    margin-top: 15px;
}

.finish .content .index__sections .index__section * {
    font-size: 1.4rem;
    line-height: 1.4rem;
}

#pageing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 3vw;
}

#pageing button {
    box-sizing: border-box;
    padding: 1vw 2vw 1vw 2vw;
    border: 1px solid var(--color-blue);
    background-color: var(--color-blue);
    color: #ffffff;
    font-family: var(--font-face-default);
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}

#pageing button:hover {
    border-color: var(--color-grey);
    background-color: var(--color-grey);
    color: #ffffff;
    cursor: pointer;
}

#pageing button:disabled {
    border-color: var(--color-grey);
    background-color: #ffffff;
    color: var(--color-grey);
    cursor: not-allowed;
}

#progress {
    text-align: center;
    font-size: 1.1rem;
    line-height: 24px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#progress .name {
    display: none;
}

footer {
    box-sizing: border-box;
    padding: 2vw 1vw 2vw 1vw;
    background-color: #ffffff;
}

footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li.icon {
    width: 66px;
    background-image: url(../images/icons/linkedin.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 21px;
    text-indent: -4000px;
}

footer ul li.icon.xing {
    background-image: url(../images/icons/xing.svg);
}

footer ul li.icon.instagram {
    background-image: url(../images/icons/instagram.svg);
}

footer ul li.icon:hover {
    opacity: 0.5;
}

footer ul li a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 300;
}


@media (max-width: 1400px) {
    :root {
        --radio-width: 20px;
        --font-size-medium: 1.1rem;
        --line-height-medium: 1.6rem;
        --font-size-title: 1.5rem;
        --line-height-title: 2rem;
    }

    p {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }

    main {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    #questions .section.first {
        overflow: visible;
    }
}

@media (max-width: 1024px) {
    :root {
        --radio-width: 20px;
        --font-size-medium: 1rem;
        --line-height-medium: 1.6rem;
        --font-size-title: 1.5rem;
        --line-height-title: 2rem;
    }

    main.fullheight {
        height: auto;
        min-height: 85vh;
    }

    p {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .range__container {
        margin-top: 2vw;
    }

    .range__container label::before {
        font-size: 18px;
        padding-top: 15px;
    }

    #content {
        padding-top: 5%;
    }

    main.fullheight,
    main.fullheight #questions .section .section__questions,
    main.fullheight #questions .section .question__container {
        position: relative;
        height: auto;
        overflow: visible;
    }
    main.fullheight #questions,
    main.fullheight #questions .section {
        height: auto;
        overflow: visible;
    }

    main.fullheight #pageing {
        margin-top: 1.5vw;
    }

    #questions .section > .steps ul li {
        padding: 1% 2%;
        font-size: 17px;
    }

    #questions .section .question__container .info {
        margin-top: 9%;
    }

    #questions .section .question__container .info p + p {
        margin-top: 2%;
    }

    #pageing button {
        font-weight: 400;
        font-size: 17px;
        padding: 1% 2%;
    }

    #progress {
        font-size: 16px;
        line-height: 22px;
    }

    .field__container label {
        font-size: 1rem;
        line-height: 120%;
    }

    .field {
        padding: 0.5% 1.5%;
        font-size: 1.1rem;
        line-height: 120%;
        height: 2.5rem;
    }

    #workingwell-index {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 650px) {
    :root {
        --radio-width: 15px;
        --font-size-medium: 0.9rem;
        --line-height-medium: 1.4rem;
        --font-size-title: 1.5rem;
        --line-height-title: 2rem;
    }

    p {
        font-size: 0.8rem;
        line-height: 1.3rem;
    }

    .row {
        flex-direction: column;
    }

    .row .field__container {
        width: 94%;
    }

    header {
        padding-left: 2vw;
        padding-right: 2vw;
    }

    header .logo {
        max-width: 110px;
        display: flex;
    }

    header .menu figure img.separator {
        width: 15px;
    }

    header .menu figure figcaption {
        font-size: 14px;
        line-height: 14px;
    }

    main {
        padding-left: 4%;
        padding-right: 4%;
    }

    #content {
        min-height: 60vh;
    }

    .range__container label::before {
        font-size: 14px;
    }

    #questions .section > .steps {
        display: none;
    }

    #questions .section .question__container .info {
        margin-top: 15%;
    }

    #progress {
        font-size: 14px;
        line-height: 20px;
    }

    #questions .section .question__container .info dl * {
        font-size: 0.8rem;
    }

    .field__container label {
        font-size: 0.8rem;
    }

    .field {
        font-size: 0.9rem;
        height: 2rem;
    }

    /*footer ul {
        flex-direction: column;
    }*/

    footer ul li a {
        font-size: 0.9rem;
        line-height: 1rem;
    }

    footer ul li.icon {
        width: 30px;
    }

    footer ul li:last-child {
        display: none;
    }
}

@media (max-width: 500px) {
    header {
        padding-top: 2vw;
        padding-bottom: 2vw;
    }

    header .logo {
        max-width: 100px;
    }

    header .menu figure img {
        width: 8vw;
    }

    header .menu figure img.separator {
        width: 10px;
    }

    header .menu figure figcaption {
        font-size: 12px;
        line-height: 12px;
        display: none;
    }

    #pageing button {
        font-weight: 400;
        font-size: 16px;
        padding: 2% 3%;
    }
}

@media (max-width: 450px) {
    header .logo {
        max-width: 100px;
    }

    header .menu figure img.separator {
        width: 5px;
    }

    header .menu figure figcaption {
        font-size: 12px;
        line-height: 12px;
    }
}