/* cmsms stylesheet: G23-JOBS modified: 10.11.2025 10:02:33 */
/* cmsms stylesheet: G23-JOBS modified: 25.06.2024 12:44:30 */
/* cmsms stylesheet: G23-JOBS modified: 25.06.2024 12:09:10 */
body, html {
    background: #00050f;
    -webkit-overflow-scrolling: touch;
}

h2, .h2 {
    margin: 0 0 40px 0;
}

h1 svg, h2 svg, h3 svg, .h1 svg, .h2 svg, .h3 svg {
    max-width: 100%;
}

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    background: #00050f;
}

nav {
    width: 64px;
    background: #142338;
    margin: 15px 0 15px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-height: calc(100vh - 30px);
    border-radius: var(--border-radius);
    position: sticky;
    top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    fill: #fff;
    -webkit-box-shadow: 0px 0 20px #00000085;
            box-shadow: 0px 0 20px #00000085;
    z-index: +2;
}

nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
}

nav ul li {
    height: 42px;
    width: 42px;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
}

nav ul li svg {
    fill: #f0ff00;
    -webkit-filter: drop-shadow(0px 0px 4px currentColor);
            filter: drop-shadow(0px 0px 4px currentColor);
    color: #f0ff009e;
}


li.skill {
    background-color: #fff;
    background-image: url(/uploads/assets/jobs/m1.png);
    background-size: 147px;
    -webkit-filter: invert(0);
            filter: invert(0);
    border-radius: 24px;
}

li.skill.marketing {
    background-color: #f0f;
}
li.skill.back-office {
    background-color: #ed5b00;
}
li.skill.kundenservice {
    background-color: #00e92e;
}
li.skill.developer {
    background-color: #0081ff;
}
li.skill.initiativ {
    background-color: #fff;
}

main content {
    padding: 15px 15px 50px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
    /* overflow-x: hidden; */
}



section.loader {
    background-color: #00050f;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 20%;
    right: 20%;
    bottom: 20%;
    top: 20%;
    overflow: hidden;
    /* pointer-events: none; */
    z-index: 100;
    /* background: radial-gradient(#021227, #0c2648d9); */
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    z-index: 101;
    /* animation: loader 1s ease-out 3s both; */
}




loading {
        border: 4px solid var(--gh23-d);
    margin-top: 20px;
    height: 42px;
    width: 539px;
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--gh23-y);
}

loading:before {
    content: "";
    height: calc(100% - 8px);
    background-color: var(--gh23-d);
    min-width: 28px;
    max-width: calc(100% - 8px);
    display: block;
    border-radius: 32px;
    margin: 4px;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    -webkit-animation-name: loading;
            animation-name: loading;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
}

@-webkit-keyframes loading{
    0% {
        width: 0%;
    }
    100% {
        width: 100%
    }
}

@keyframes loading{
    0% {
        width: 0%;
    }
    100% {
        width: 100%
    }
}

@-webkit-keyframes mc5c95c941_inkMask {
    0% {
        -webkit-mask-position: 0 50%;
        mask-position: 0 50%
    }

    to {
        -webkit-mask-position: 100% 50%;
        mask-position: 100% 50%
    }
}

@keyframes mc5c95c941_inkMask {
    0% {
        -webkit-mask-position: 0 50%;
        mask-position: 0 50%
    }

    to {
        -webkit-mask-position: 100% 50%;
        mask-position: 100% 50%
    }
}

@-webkit-keyframes mc5c95c941_fade-out {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes mc5c95c941_fade-out {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}


section {
    /* min-height: 80vh; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding-bottom: 60px;
}

content * {
    /* border: 1px dashed #ff94d2; */
}

content section {
    border-width: 4px;
    border-color: #a7fbff;
    position: relative;
}

section.panel--single.section--hero {
    min-height: 100vh;
}

section.panel--single wrapper {
    background-color: var(--gh23-w);
    border-radius: 20px;
    text-align: center;
    /* overflow: hidden; */
    max-width: 1073px;
    /* box-shadow: 0 15px 30px #02122721; */
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    width: 100%;
    z-index: 1;
}
section.panel--single:before {
    content: "";
    position: absolute;
    top: 15%;
    left: 5%;
    right: 5%;
    bottom: 15%;
    background-color: #142338;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
}

section.panel--single:after {
    content: "";
    position: absolute;
    top: 10%;
    left: 5%;
    right: 5%;
    bottom: 10%;
    background-color: #f9ea00;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    blur: 20px;
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    opacity: 0.1;
}


.section--hero .content--theme {
    height: 530px;
    background-position: bottom;
    background-size: cover;
}

.content--text {
    padding: 40px 30px 30px 30px;
    position: relative;
}

section.panel--single wrapper .content--text {
    padding: 20px 5% 70px 5%;
}

section.panel--lr .content--text {
    padding: 100px 30px 70px 30px;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    background-color: #fff;
    z-index: +1;
    position: r;
}
section.panel--lr wrapper:after {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background-color: #f9ea00;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    blur: 20px;
    -webkit-transform: rotate(-2deg);
        -ms-transform: rotate(-2deg);
            transform: rotate(-2deg);
    opacity: 0.1;
    z-index: -1;
}

section.panel--lr wrapper:before {
    content: "";
    position: absolute;
    top: -3%;
    left: -5%;
    right: -5%;
    bottom: 7%;
    background-color: #142338;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    blur: 20px;
    -webkit-filter: blur(-119px);
            filter: blur(-119px);
    z-index: -1;
}

h2 strong {
    font-size: 3rem;
    font-size: clamp(2rem, 1.158rem + 4.22vw, rem);
    text-transform: uppercase;
    line-height: 85%;
    letter-spacing: -0.15rem;
}

.section--hero h2 > span {
    font-weight: 800;
    text-transform: uppercase;
}

.section--hero h2, .section--hero h2 strong {
    font-size: clamp(2rem, 1.158rem + 4.22vw, 6rem);
    font-size: 3rem;
    font-size: clamp(2rem, 1.158rem + 5.22vw, 5rem);
    text-transform: uppercase;
    line-height: 80%;
    letter-spacing: -0.15rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section--hero h2 sub {
    font-size: clamp(2rem, 1.158rem + 5.22vw, 5rem);
    text-transform: uppercase;
    line-height: 80%;
    letter-spacing: -0.15rem;
    margin-top: 3%;
    scale: 0.9;
}

p {
    font-size: 1.2rem;
    line-height: 2rem;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

ul.actions {
    bottom: 2.5rem;
    left: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
}

ul.actions li {
    height: 44px;
    min-width: 42px;
    border: 4px solid var(--gh23-b);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    padding: 0 10px !important;
    margin: 0;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}

section.panel--lr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.content--map {
    width: 50%;
    /* aspect-ratio: 3 / 4; */
    border-radius: 20px;
}

section.panel--lr wrapper {
    width: 50%;
    text-align: center;
    max-width: 1080px;
    /* backdrop-filter: saturate(180%) blur(19px); */
    /* box-shadow: 0 2px 5px #0000000d; */
    /* background-color: #ffffff4a; */
    position: relative;
}

ul.paneled--grid {
    list-style: none;
    display: -ms-grid;
    display: grid;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    max-width: 1920px;
}

content ul.paneled--grid li:not(:first-of-type) {
    background-color: var(--gh23-w);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    /* max-width: 1080px; */
    padding: 50px 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

content ul.paneled--grid li img {
    max-height: 150px;
    margin: 30px 0;
}

li.grid--full {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    width: 100%;
}

ul.paneled--grid.perks {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

li.grid--row-full {
    -ms-grid-row-span: 2;
    grid-row: span 2;
}


section.panel--lr.section--progressmap {
    /* background-color: #ffffff; */
    border-radius: 20px;
    padding: 2.5rem;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    max-width: 1920px;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
}

ul.paneled--grid.requirements {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

ul.paneled--grid.requirements .grid--full {
    /* grid-row: span 5; */
    -ms-grid-column-span: 5;
    grid-column: span 5;
    text-align: left;
    margin: 0;
}

h3, h4 {
    font-size: 2rem;
    font-size: clamp(1rem, 1.158rem + 2.22vw, 1.5rem);
    font-weight: 800;
    max-width: 450px;
}

content ul.paneled--grid li:first-of-type {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}


section.bonuslevel {
    display: -ms-grid;
    display: grid;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1920px;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
}

.level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    /* height: 300px; */
    background-color: var(--gh23-w);
    border-radius: 20px;
    width: 100%;
    min-height: 500px;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
}

.level p {
    line-height: 1.4;
}

.level--theme {
    aspect-ratio: 16 / 12;
    background-size: cover;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    background-position: center;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.level--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    bottom: 0;
    color: #fff;
    z-index: 1;
    padding: 20px 50px;
}

section.bonuslevel h2 {-ms-grid-column-span: 2;grid-column: span 2;margin: 0;}

.level--theme:before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(48%, rgba(0, 0, 0, 0.07)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.level--content h4 {
    margin: 0 0 10px 0;
    font-size: 2rem;
    line-height: 100%;
}

.level:hover play {
    opacity: 1;
}

.level play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f0ff001f;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    z-index: +3;
    display: -ms-grid;
    display: grid;
    place-content: center;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
}

play svg {
    fill: #fff;
    height: 200px;
    width: 200px;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
    fill: #f0ff00;
    -webkit-filter: drop-shadow(0px 0px 6px currentColor);
            filter: drop-shadow(0px 0px 6px currentColor);
    color: #f0ff00;
}

.level:hover .level--theme {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

.level play a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: +1;
}


ul.paneled--grid.requirements .grid--full h2 {
    margin: 0;
}

ul.paneled--grid.perks .grid--row-full {
    -ms-grid-column-span: 4;
    grid-column: span 4;
    grid-row: unset;
    text-align: left;
    margin: 0;
}

ul.paneled--grid.perks {}

ul.paneled--grid.perks .grid--row-full h2 {
    margin: 0;
}

section.loader h1 {
    text-transform: uppercase;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 54px;
    width: 246px;
    font-weight: 800;
    /* text-shadow: 10px -10px 30px #e300ff, -10px 10px 30px #004eff; */
    letter-spacing: -2.5px;
    margin: 0;
    padding-top: 19px;
}

.center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* text-align: center; */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  scale: 1;
  -webkit-transition: scale .3s;
  -o-transition: scale .3s;
  transition: scale .3s;
}
.ring{
  position: absolute;
  width: 348px;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-animation: ring 2s linear infinite;
          animation: ring 2s linear infinite;
}
@-webkit-keyframes ring {
  0%{
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-box-shadow: 1px 15px 10px #f0ff00;
            box-shadow: 1px 15px 10px #f0ff00;
  }
  35%{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-box-shadow: 1px 15px 10px #18b201;
            box-shadow: 1px 15px 10px #18b201;
  }
  75%{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    -webkit-box-shadow: 1px 15px 10px #0456c8;
            box-shadow: 1px 15px 10px #0456c8;
  }
  100%{
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-box-shadow: 1px 15px 10px #f0ff00;
            box-shadow: 1px 15px 10px #f0ff00;
  }
}
@keyframes ring {
  0%{
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-box-shadow: 1px 15px 10px #f0ff00;
            box-shadow: 1px 15px 10px #f0ff00;
  }
  35%{
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-box-shadow: 1px 15px 10px #18b201;
            box-shadow: 1px 15px 10px #18b201;
  }
  75%{
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    -webkit-box-shadow: 1px 15px 10px #0456c8;
            box-shadow: 1px 15px 10px #0456c8;
  }
  100%{
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-box-shadow: 1px 15px 10px #f0ff00;
            box-shadow: 1px 15px 10px #f0ff00;
  }
}
.ring:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 156px rgb(0 204 255 / 29%);
          box-shadow: 0 0 156px rgb(0 204 255 / 29%);
}
span{
  text-transform: uppercase;
  /* animation: text 3s ease-in-out infinite; */
}
@-webkit-keyframes text {
  50%{
    color: black;
  }
}
@keyframes text {
  50%{
    color: black;
  }
}





ul.classes {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    gap: 10px;
    height: 520px;
    width: 100%;
    max-width: 1920px;
}

section.select {
    background-color: #021227;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    z-index: 100;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #000000a3;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    -webkit-box-shadow: 0 2px 5px #0000000d;
            box-shadow: 0 2px 5px #0000000d;
    padding-bottom: 70px;
    padding: 0 5% 70px 5%;
}

section.select h2 {
    color: #fff;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 64px;
}

span.promt {
    -webkit-animation:1s promt step-end infinite;
            animation:1s promt step-end infinite;
    color: var(--gh23-y);
}

@-webkit-keyframes promt {
    from, to {
        color: transparent;
    }
    50% {
        color: var(--gh23-y);
    }
}

@keyframes promt {
    from, to {
        color: transparent;
    }
    50% {
        color: var(--gh23-y);
    }
}

ul.classes li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
    -webkit-box-shadow: 0 0 0 #000;
            box-shadow: 0 0 0 #000;
    padding: 0 !important;
    -webkit-filter: drop-shadow(0px 0px 0px black);
            filter: drop-shadow(0px 0px 0px black);
    position: relative;
    width: 100%;
}

ul.classes li.inactive {
    /* pointer-events: none; */
    scale: 0.8;
    -webkit-filter: grayscale(1) blur(7px) opacity(0.8);
    filter: grayscale(1) blur(7px) opacity(0.8);
    cursor: default;
}
@media(min-width: 780px){
ul.classes li:not(.inactive):hover {
    scale: 1.1;
    -webkit-filter: drop-shadow(0 25px 16px #0006);
            filter: drop-shadow(0 25px 16px #0006);
    z-index: 1;
}
}
li class {
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    /* background-color: white; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10;
    position: absolute;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(48%, rgba(0, 0, 0, 0.07)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    /* z-index: 0; */
    color: #fff;
}

ul.classes li:before {
    content:"";
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    background-color: #021227;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    background-size: cover;
    background-position: center 19%;
    background-repeat: no-repeat;
}

ul.classes li:not([data-skill="initiativ"]):after{
    position: absolute;
    opacity: 1;
    content: attr(data-jobcount);
    z-index: 3;
    text-align: center;
    font-size: 2rem;
    top: 15px;
    right: 20px;
    z-index: +10;
    font-weight: 800;
    background-image: url(/uploads/assets/ico-m-partner.svg);
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: left center;
    padding-left: 36px;
    height: 32px;
    line-height: 32px;
    -webkit-filter: invert(1);
            filter: invert(1);
}

li class name {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    height: 100px;
    max-width: calc(100% - 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 52px;
    z-index: 1000;
    text-transform: uppercase;
}
ul.classes li[data-skill="marketing"]:before {
    background-color: #490b49;
    background-image: url(/uploads/assets/jobs/m1.png);
}


ul.classes li[data-skill="support"]:before {
    background-color: #0c3423;
    background-image: url(/uploads/assets/jobs/m3.png);
}


ul.classes li[data-skill="backoffice"]:before {
    background-color: #511f08;
    background-image: url(/uploads/assets/jobs/m2.png);
}

ul.classes li[data-skill="sales"]:before {
    background-color: #511f08;
    background-image: url(/uploads/assets/jobs/m2.png);
}


ul.classes li[data-skill="developer"]:before {
    background-color: #032957;
    background-image: url(/uploads/assets/jobs/m4.png);
}

ul.classes li[data-skill="initiativ"]:before {
    background-image: url(/uploads/assets/jobs/m5.png);
}

/**/

ul.classes li[data-skill="marketing"]:not(.inactive):hover {
    -webkit-filter: drop-shadow(2px 4px 26px #e500ed);
            filter: drop-shadow(2px 4px 26px #e500ed);
}


ul.classes li[data-skill="support"]:not(.inactive):hover {
   -webkit-filter: drop-shadow(2px 4px 26px #13ed96);
           filter: drop-shadow(2px 4px 26px #13ed96);
}
a

ul.classes li[data-skill="backoffice"]:not(.inactive):hover {
    -webkit-filter: drop-shadow(2px 4px 26px #ff5e00);
            filter: drop-shadow(2px 4px 26px #ff5e00);
}

ul.classes li[data-skill="sales"]:not(.inactive):hover {
    -webkit-filter: drop-shadow(2px 4px 26px #ff5e00);
            filter: drop-shadow(2px 4px 26px #ff5e00);
}


ul.classes li[data-skill="developer"]:not(.inactive):hover {
    -webkit-filter: drop-shadow(2px 4px 26px #0accf5);
            filter: drop-shadow(2px 4px 26px #0accf5);
}

ul.classes li[data-skill="initiativ"]:not(.inactive):hover {
    -webkit-filter: drop-shadow(2px 4px 26px #e6e600);
            filter: drop-shadow(2px 4px 26px #e6e600);
}

team.marketing badge {
    background-color: #490b49;
    background-image: url(/uploads/assets/jobs/m1.png);
    background-size: cover;
}

team.support badge {
    background-color: #0c3423;
    background-image: url(/uploads/assets/jobs/m3.png);
    background-size: cover;
}

team.backoffice badge {
    background-color: #511f08;
    background-image: url(/uploads/assets/jobs/m2.png);
    background-size: cover;
}

team.sales badge {
    background-color: #511f08;
    background-image: url(/uploads/assets/jobs/m2.png);
    background-size: cover;
}

team.developer badge {
    background-color: #032957;
    background-image: url(/uploads/assets/jobs/m4.png);
    background-size: cover;
}

team.initiativ badge {
    background-color: #0f116a;
        background-image: url(/uploads/assets/jobs/m5.png);
    background-size: cover;
}

ul.classes img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 110%;
    left: 10%;
    display: block;
    max-width: inherit;
    margin-left: -50%;
    pointer-events: none;
}


bar {
    display: block;
    overflow: hidden;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    position: absolute;
    -webkit-clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);
    /* background-color: red; */
    -webkit-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    -webkit-clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);
    -webkit-animation: loadingbar 3s ease-in-out 1s both;
            animation: loadingbar 3s ease-in-out 1s both;
}

bar svg {
    fill: currentColor;
    width: 100%;
    -webkit-transform: skewX(36deg);
        -ms-transform: skewX(36deg);
            transform: skewX(36deg);
    scale: 1.4;
}

section.loader loader {
    position: absolute;
    bottom: 59px;
    left: 30px;
    right: 30px;
    height: 50px;
    padding: 0;
    margin: 0;
    width: auto;
    border: 4px solid #ffffff4a;
    border-radius: 6px;
}

@-webkit-keyframes loadingbar {
    0% {
        -webkit-clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);
                clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);
        color: #e621ed;
       
    }
    25% {
       -webkit-clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
               clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
        color: #00d953;
    }
    50% {
       -webkit-clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
               clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
        color: #0095ff;
    }
     75% {
       -webkit-clip-path: polygon(0% 0%,50% 0%, 50% 100%, 0% 100%);
               clip-path: polygon(0% 0%,50% 0%, 50% 100%, 0% 100%);
         color: #ff5200;
    }
    100% {
        -webkit-clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);
        color: #f0ff00;
    }
}

@keyframes loadingbar {
    0% {
        -webkit-clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);
                clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);
        color: #e621ed;
       
    }
    25% {
       -webkit-clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
               clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
        color: #00d953;
    }
    50% {
       -webkit-clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
               clip-path: polygon(0% 0%,20% 0%, 20% 100%, 0% 100%);
        color: #0095ff;
    }
     75% {
       -webkit-clip-path: polygon(0% 0%,50% 0%, 50% 100%, 0% 100%);
               clip-path: polygon(0% 0%,50% 0%, 50% 100%, 0% 100%);
         color: #ff5200;
    }
    100% {
        -webkit-clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);
        color: #f0ff00;
    }
}

@-webkit-keyframes loader {
    0% {
       opacity: 100%;
       -webkit-transform: translateY(0px);
               transform: translateY(0px);
       
    }
   
    100% {
        opacity: 0%;
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      pointer-events: none;
    }
}

@keyframes loader {
    0% {
       opacity: 100%;
       -webkit-transform: translateY(0px);
               transform: translateY(0px);
       
    }
   
    100% {
        opacity: 0%;
      -webkit-transform: translateY(-50px);
              transform: translateY(-50px);
      pointer-events: none;
    }
}


section.loader:before {
    background-image: url(/uploads/assets/jobs/loader.jpg?);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
    background-position: bottom;
    background-size: cover;
}


section.section--loadingscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    backdrop-filter: saturate(180%) blur(20px);
    padding: 5%;
    -webkit-filter: drop-shadow(0px 18px 16px #6200ff61);
            filter: drop-shadow(0px 18px 16px #6200ff61);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    margin: 0;
    -webkit-animation: loader 1s ease-out 4s both;
            animation: loader 1s ease-out 4s both;
}

splash {
    overflow: hidden;
    z-index: 100;
    /* background: radial-gradient(#021227, #0c2648d9); */
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    max-width: 1385px;
    aspect-ratio: 2 / 1.2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 101;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #00050f;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
}

splash:before {
    background-image: url(/uploads/assets/jobs/loader.jpg?);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
    background-position: bottom;
    background-size: cover;
}

splash h1 {
    text-transform: uppercase;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 54px;
    width: 246px;
    font-weight: 800;
    /* text-shadow: 10px -10px 30px #e300ff, -10px 10px 30px #004eff; */
    letter-spacing: -2.5px;
    margin: 0;
    padding-top: 19px;
}

section.section--loadingscreen loader {
    position: absolute;
    bottom: 59px;
    left: 30px;
    right: 30px;
    height: 50px;
    padding: 0;
    margin: 0;
    width: auto;
    border: 4px solid #ffffff4a;
    border-radius: 6px;
}

team {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 14px;
    z-index: +3;
    -webkit-filter: drop-shadow(2px 4px 6px black);
            filter: drop-shadow(2px 4px 6px black);
    cursor: pointer;
}

team badge {
    height: 60px;
    width: 60px;
    background-color: #fff;
    display: block;
    border-radius: 50%;
}

team name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

team name span {
    display: block;
}

teamname {
    font-size: 24px;
    font-weight: 800;
    height: 34px;
    line-height: 24px;
    text-transform: uppercase;
}
team.marketing teamname:before {
    content: "Marketing";
}
team.support teamname:before {
    content: "Support";
}
team.backoffice teamname:before {
    content: "Back Office";
}
team.backoffice teamname:before {
    content: "Sales";
}
team.developer teamname:before {
    content: "Developer";
}team.initiativ teamname:before {
    content: "Initiativ";
}


nav ul li svg {
    fill: #f0ff00;
    -webkit-filter: drop-shadow(0px 0px 4px currentColor);
            filter: drop-shadow(0px 0px 4px currentColor);
    color: #f0ff009e;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
}

nav ul li:before {
    content: attr(data-title);
    position: absolute;
    top: calc(50% - 10px);
    white-space: nowrap;
    left: 80%;
    background-color: #313c15;
    -webkit-clip-path: polygon(0 5px, 5px 0px, calc(100% - 5px) 0px, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px));
            clip-path: polygon(0 5px, 5px 0px, calc(100% - 5px) 0px, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px));
    padding: 0 10px;
    z-index: +100;
    color: #f0ff00;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    pointer-events: none;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg?1);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
}

@media (min-width: 800px){
nav ul li:hover:before {
    opacity: 1;
    left: 115%;
}
}    

.led {
    -webkit-filter: drop-shadow(0px 0px 4px #f0ff009e);
            filter: drop-shadow(0px 0px 4px #f0ff009e);
    color: #f0ff00;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
}

content ul.paneled--grid.requirements li:not(:first-of-type) {
    padding: 20px 15px 30px 15px;
    background-color: transparent;
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-filter: drop-shadow(1px 1px 0px #00d953) drop-shadow(-1px -1px 0px #00d953) drop-shadow(-1px 1px 0px #00d953) drop-shadow(1px -1px 0px #00d953);
            filter: drop-shadow(1px 1px 0px #00d953) drop-shadow(-1px -1px 0px #00d953) drop-shadow(-1px 1px 0px #00d953) drop-shadow(1px -1px 0px #00d953);
}



content ul.paneled--grid.requirements li:not(:first-of-type) h4 {
    font-size: 1.2rem;
    line-height: 100%;
    z-index: 1;
    color: #00fc65;
    font-weight: 100;
    /* color: #00fc1985; */
    -webkit-filter: drop-shadow(0px 0px 3px #00fc1985);
            filter: drop-shadow(0px 0px 3px #00fc1985);
}

content ul.paneled--grid.requirements li:not(:first-of-type) img {
    margin: 19px 0 15px 0;
}


img.background {}

content ul.paneled--grid.perks li:not(:first-of-type) {
    background-size: cover;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    background-position: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 15px 35px 15px;
    background-color: #df1ff2;
    min-height: 350px;
}

content ul.paneled--grid.perks li:not(:first-of-type):before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(48%, rgba(0, 0, 0, 0.07)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

content ul.paneled--grid.perks li:not(:first-of-type) panel {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

content ul.paneled--grid.perks li:not(:first-of-type) panel p {
    line-height: 1.2;
    margin: 0;
}

.theme {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: -10px;
    background-size: cover;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    background-position: center;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.6;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

content ul.paneled--grid.perks li:not(:first-of-type):hover .theme {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    opacity: 1;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

content ul.paneled--grid.perks li:not(:first-of-type) panel h4 {
    margin: 0 0 10px 0;
    line-height: 1;
}

ul.paneled--grid.perks .led {
    -webkit-filter: drop-shadow(0px 0px 4px #df1ff2ba);
            filter: drop-shadow(0px 0px 4px #df1ff2ba);
    color: #e800ff;
}
content ul.paneled--grid.facts li:not(:first-of-type) {
    background-size: cover;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    background-position: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 20px 50px 20px;
    background-color: #f0ff00;
    min-height: 500px;
}

content ul.paneled--grid.facts li:not(:first-of-type):before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(48%, rgba(0, 0, 0, 0.07)), to(#000));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.07) 48%, #000 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

content ul.paneled--grid.facts li:not(:first-of-type) panel {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

content ul.paneled--grid.facts li:not(:first-of-type) panel p {
    line-height: 1.4;
    margin: 0;
}

.theme {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    bottom: -10px;
    background-size: cover;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    background-position: center;
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.6;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
}

content ul.paneled--grid.facts li:not(:first-of-type):hover .theme {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
    opacity: 1;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}

content ul.paneled--grid.facts li:not(:first-of-type) panel h4 {
    margin: 0 0 15px 0;
    line-height: 1;
}

ul.paneled--grid.facts .led {
    /* filter: drop-shadow(0px 0px 4px #df1ff2ba); */
    /* color: #e800ff; */
}


section.footer {
    color: #fff !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1920px;
    margin-left: auto;
    width: 100%;
    margin-right: auto;
    margin-top: 20px;
}

ul.legals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 14px;
    margin-bottom: 6px;
}

ul.legals a {
    color: #fff;
}

.copyright {
    font-weight: 800;
}

content ul.legals li {
    padding: 0;
    margin: 0;
    line-height: 20px;
}

content ul.legals li:not(:last-child) {
    border-right: 1px solid #ffffff36;
    padding-right: 14px;
}

content ul.legals a:hover:not([class]):not(:empty) {
    background-image: -webkit-gradient(linear,left top, left bottom,from(#f0ff004f),to(#f0ff004f));
    background-image: -o-linear-gradient(#f0ff004f,#f0ff004f);
    background-image: linear-gradient(#f0ff004f,#f0ff004f);
}

bewerben {
    position: fixed;
    bottom: 25px;
    right: 0;
    z-index: 100;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 5px;
    z-index: +3;
    -webkit-filter: drop-shadow(2px 4px 6px black);
            filter: drop-shadow(2px 4px 6px black);
    cursor: pointer;
    -webkit-filter: drop-shadow(0px 0px 4px #df1ff2ba);
            filter: drop-shadow(0px 0px 4px #df1ff2ba);
    color: #e800ff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #37043cb3;
    -webkit-clip-path: polygon(0 10px, 10px 0px, 100% 0px, 100% 0px, 100% 100%, calc(100% - 9px) 100%, 10px 100%, 0 calc(100% - 10px));
            clip-path: polygon(0 10px, 10px 0px, 100% 0px, 100% 0px, 100% 100%, calc(100% - 9px) 100%, 10px 100%, 0 calc(100% - 10px));
    -webkit-backdrop-filter: saturate(180%) blur(20px);
            backdrop-filter: saturate(180%) blur(20px);
    padding: 10px 30px 10px 19px;
    -webkit-filter: drop-shadow(0px 18px 16px #6200ff61);
            filter: drop-shadow(0px 18px 16px #6200ff61);
}

bewerben badge {
    height: 42px;
    width: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

bewerben svg {
    -webkit-filter: drop-shadow(0px 0px 4px #df1ff2ba);
            filter: drop-shadow(0px 0px 4px #df1ff2ba);
    fill: #e800ff;
}

bewerben h3 {
    -webkit-filter: drop-shadow(0px 0px 4px #df1ff2ba);
            filter: drop-shadow(0px 0px 4px #df1ff2ba);
    color: #e800ff;
    margin: 0;
}

bewerben #f1 {
    -webkit-animation: 2s flash step-end infinite;
            animation: 2s flash step-end infinite;
}

bewerben #f2 {
    -webkit-animation: 2s flash step-end 0.4s infinite;
            animation: 2s flash step-end 0.4s infinite;
}

@-webkit-keyframes flash {
    from, to {
        fill: transparent;
    }
    50% {
        fill: var(--gh23-y);
    }
}

@keyframes flash {
    from, to {
        fill: transparent;
    }
    50% {
        fill: var(--gh23-y);
    }
}

ul.paneled--grid.bewerben {
    -ms-grid-columns: 1fr 20px 2fr 20px 1fr;
    grid-template-columns: 1fr 2fr 1fr;
    -ms-grid-rows: -webkit-max-content 20px -webkit-max-content;
    -ms-grid-rows: max-content 20px max-content;
    grid-template-rows: -webkit-max-content -webkit-max-content;
    grid-template-rows: max-content max-content;
    gap: 20px;
    width: 100%;
}

ul.paneled--grid.bewerben > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

ul.paneled--grid.bewerben > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

ul.paneled--grid.bewerben > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}

ul.paneled--grid.bewerben > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

ul.paneled--grid.bewerben > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

ul.paneled--grid.bewerben > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

ul.paneled--grid.bewerben .grid--full {
    /* grid-row: span 5; */
    -ms-grid-column-span: 3;
    grid-column: span 3;
    text-align: left;
    margin: 0;
}

content ul.paneled--grid.bewerben li {
    padding: 0;
    margin: 0;
    -webkit-clip-path: none;
            clip-path: none;
    background: transparent;
    color: #fff;
    overflow: visible;
    text-align: left;
}



ul.paneled--grid.bewerben ul.classes {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 1fr 1fr 1fr; */
    height: auto;
}


ul.paneled--grid.bewerben ul.classes li:last-child {
     -ms-grid-column-span: 2;
     grid-column: span 2
    
}

ul.paneled--grid.bewerben ul.classes li {
    min-height: 228px;
}

ul.paneled--grid.bewerben ul.classes li class name {
    padding-bottom: 21px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

content ul.paneled--grid.bewerben li h4 {
    margin: 0 0 20px 0;
    max-width: 100%;
}

ul.paneled--grid.bewerben ul.classes li:before, ul.paneled--grid.bewerben ul.classes li:after, ul.paneled--grid.bewerben ul.classes li class {
    -webkit-clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
}

li.bewerben-roll panel {
    background-color: #14233878;
    color: #000 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    -webkit-clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
}

li.bewerben-roll panel ul {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
}

content ul.paneled--grid.bewerben panel li {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

li.bewerben-roll panel ul.roll {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 15px;
}

li.bewerben-roll panel ul.roll li {
    display: -ms-grid;
    display: grid;
    border: 1px solid #0045ed;
    -ms-grid-columns: 62px 15px 1fr;
    grid-template-columns: 62px 1fr;
    gap: 0 15px;
    border-radius: 0;
    padding: 5px;
    cursor: pointer;
}

li.bewerben-roll panel ul.roll li name {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.2rem;
    -ms-flex-item-align: self-end;
        -ms-grid-row-align: self-end;
        align-self: self-end;
    margin-bottom: 5px;
}

li.bewerben-roll panel ul.roll li desc {
    font-size: 1rem;
    line-height: 1rem;
}

li.bewerben-roll panel ul.roll li icon {
    height: 100%;
    background-color: #003eed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    aspect-ratio: 1 /1;
    background-size: cover;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 800;
    font-size: 2rem;
}


li.bewerben-roll panel ul.roll li.active, li.bewerben-roll panel ul.roll li:hover {
    background-color: #0045ed75;
}

ul.paneled--grid.bewerben ul.classes li.active {
    -webkit-filter: drop-shadow(1px 1px 0px #0045ed) drop-shadow(-1px -1px 0px #0045ed) drop-shadow(-1px 1px 0px #0045ed) drop-shadow(1px -1px 0px #0045ED);
            filter: drop-shadow(1px 1px 0px #0045ed) drop-shadow(-1px -1px 0px #0045ed) drop-shadow(-1px 1px 0px #0045ed) drop-shadow(1px -1px 0px #0045ED);
}

ul.reqirements {
    padding: 20px 20px 70px 20px;
    overflow: auto;
}

ul.reqirements p {
    font-size: 1rem;
    line-height: 1.7;
}

skillbar {
    width: 100%;
    height: 15px;
    border: 2px solid #003eed;
    border-radius: 20px;
    background-image: -webkit-gradient(linear,left top, left bottom,from(#003eed),to(#003eed));
    background-image: -o-linear-gradient(#003eed,#003eed);
    background-image: linear-gradient(#003eed,#003eed);
    background-size: 60% 100%;
    background-repeat: no-repeat;
}





content ul.paneled--grid.bewerben panel .skill li {
    line-height: 1.5;
    margin-bottom: 17px;
}


/*NS*/

section.jobselect {
    background-color: #021227;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    z-index: +50000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: #000000a3;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding-bottom: 70px;
    padding: 5% 5%;
    display: none;
    overflow: auto;
    box-sizing: border-box;
    justify-content: center;
}

section.jobselect > panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 80vh;
    width: 100%;
    max-width: 1920px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    height: 200px;
    flex: 0 0;
    justify-content: center;
}

.job--title {
    font-size: 38px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px 0;
    flex: 0 0;
    box-sizing: border-box;
}

ul.job {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 23px;
    max-height: 800px;
    /* height: 100%; */
}

ul.job > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    opacity: 0;
    -webkit-filter: blur(2px);
            filter: blur(2px);
}

ul.job > li.active {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
}

ul.job.step--2 .job--roll {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    height: auto;
    overflow: hidden;
    -webkit-filter: drop-shadow(4px 4px 11px var(--skill-color));
            filter: drop-shadow(4px 4px 11px var(--skill-color));
}

ul.job.step--2 .teams .classes, ul.job.step--3 .teams .classes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
}


ul.job.step--2 .teams .classes li {
    min-width: 33%;
    min-height: 33%;
}

ul.job.step--3 .teams .classes li {
    min-width: 33%;
    min-height: 33%;
}
@media(min-width: 800px){
ul.job > li {
    -webkit-transition: opacity ease-in-out 1s, flex.3s, -webkit-filter ease-in-out 1s;
    transition: opacity ease-in-out 1s, flex.3s, -webkit-filter ease-in-out 1s;
    -o-transition: filter ease-in-out 1s, opacity ease-in-out 1s, flex.3s;
    transition: filter ease-in-out 1s, opacity ease-in-out 1s, flex.3s;
    transition: filter ease-in-out 1s, opacity ease-in-out 1s, flex.3s, -webkit-filter ease-in-out 1s;
}

}  


ul.job.step--3 li.job--form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: #fff;
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    /* height: auto; */
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
    max-height: 800px;
    height: 100vh;
    position: relative;
}

.job--form div#bewerben-form {
    height: 100%;
}

li.job--roll > panel {
    background-color: #00050f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
    min-height: 800px;
    position: relative;
}

li.job--roll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    height: 0;
}

li.job--roll > panel ul.roll {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    color: #fff;
}

li.job--roll panel ul.roll {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px;
    overflow: auto;
}

li.job--roll panel ul.roll li {
    display: -ms-grid;
    display: grid;
    /* display: flex; */
    border: 1px solid var(--skill-color);
    -ms-grid-columns: 58px 15px 1fr;
    grid-template-columns: 58px 1fr;
    gap: 0 15px;
    border-radius: 0;
    padding: 5px 5px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    min-height: max-content;
    /* max-height: max-content; */
    /* height: 120px; */
    flex: 1 0;
}

li.job--roll panel ul.roll li name {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.2rem;
    -ms-flex-item-align: self-end;
        -ms-grid-row-align: self-end;
        align-self: self-end;
    margin-bottom: 5px;
    margin-top: 10px;
}

li.job--roll panel ul.roll li desc {
    font-size: 1rem;
    line-height: 1rem;
    margin-bottom: 10px;
}

li.job--roll panel ul.roll li icon {
    height: 100%;
    background-color: var(--skill-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    /* aspect-ratio: 1 /1; */
    background-size: cover;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 800;
    font-size: 2rem;
}

li.job--roll panel ul.roll li.active icon {
    /* background-color: var(--skill-color-dark); */
}


li.job--roll panel ul.roll li.active, li.job--roll panel ul.roll li:hover {
    background-color: var(--skill-color);
}

ul.paneled--grid.bewerben ul.classes li.active {
    -webkit-filter: drop-shadow(1px 1px 0px #0045ed) drop-shadow(-1px -1px 0px #0045ed) drop-shadow(-1px 1px 0px #0045ed) drop-shadow(1px -1px 0px #0045ED);
            filter: drop-shadow(1px 1px 0px #0045ed) drop-shadow(-1px -1px 0px #0045ed) drop-shadow(-1px 1px 0px #0045ed) drop-shadow(1px -1px 0px #0045ED);
}


li.job--roll panel:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
}

.marketing {
    --skill-color: #e621ed;
    --skill-color-light: #e621ed;
    --skill-color-dark: #e621ed;
}
.support {
    --skill-color: #00d953;
    --skill-color-light: #00d953;
    --skill-color-dark: #00d953;
}
.developer {
    --skill-color: #149dff;
    --skill-color-light: #4fcded63;
    --skill-color-dark: #0048e8;
}
.initiativ {
    --skill-color: #eced0a;
    --skill-color-light: #e621ed;
    --skill-color-dark: #e621ed;
}

.sales {
    --skill-color: #ed380a;
    --skill-color-light: #ed380a;
    --skill-color-dark: #ed380a;
}
.sales panel:before {
    background-color: #471609;
}
.marketing panel:before {
    background-color: #440a44;
}
.support panel:before {
    background-color: #0b3021;
}
.developer panel:before {
    background-color: #0049ed;
}
.initiativ panel:before {
    background-color: #021124;
}

ul.classes [data-skill="marketing"].active {
    -webkit-filter: drop-shadow(1px 1px 0px #e621ed) drop-shadow(-1px -1px 0px #e621ed) drop-shadow(-1px 1px 0px #e621ed) drop-shadow(1px -1px 0px #e621ed)!important;
    filter: drop-shadow(1px 1px 0px #e621ed) drop-shadow(-1px -1px 0px #e621ed) drop-shadow(-1px 1px 0px #e621ed) drop-shadow(1px -1px 0px #e621ed) !important;
}

ul.classes [data-skill="support"].active {
    -webkit-filter: drop-shadow(1px 1px 0px #00d953) drop-shadow(-1px -1px 0px #00d953) drop-shadow(-1px 1px 0px #00d953) drop-shadow(1px -1px 0px #00d953)!important;
            filter: drop-shadow(1px 1px 0px #00d953) drop-shadow(-1px -1px 0px #00d953) drop-shadow(-1px 1px 0px #00d953) drop-shadow(1px -1px 0px #00d953)!important;
}

ul.classes [data-skill="developer"].active {
    -webkit-filter: drop-shadow(1px 1px 0px #0049ed) drop-shadow(-1px -1px 0px #0049ed) drop-shadow(-1px 1px 0px #0049ed) drop-shadow(1px -1px 0px #0049ed)!important;
            filter: drop-shadow(1px 1px 0px #0049ed) drop-shadow(-1px -1px 0px #0049ed) drop-shadow(-1px 1px 0px #0049ed) drop-shadow(1px -1px 0px #0049ed)!important;
}

ul.classes [data-skill="sales"].active {
    -webkit-filter: drop-shadow(1px 1px 0px #ed380a) drop-shadow(-1px -1px 0px #ed380a) drop-shadow(-1px 1px 0px #ed380a) drop-shadow(1px -1px 0px #ed380a)!important;
            filter: drop-shadow(1px 1px 0px #ed380a) drop-shadow(-1px -1px 0px #ed380a) drop-shadow(-1px 1px 0px #ed380a) drop-shadow(1px -1px 0px #ed380a)!important;
}

ul.classes [data-skill="initiativ"].active {
    -webkit-filter: drop-shadow(1px 1px 0px #eced0a) drop-shadow(-1px -1px 0px #eced0a) drop-shadow(-1px 1px 0px #eced0a) drop-shadow(1px -1px 0px #eced0a)!important;
            filter: drop-shadow(1px 1px 0px #eced0a) drop-shadow(-1px -1px 0px #eced0a) drop-shadow(-1px 1px 0px #eced0a) drop-shadow(1px -1px 0px #eced0a)!important;
}


li.job--roll > panel ul.reqirements {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    overflow: auto;
    background-color: #0000005c;
    list-style: none;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
}

li.job--form {
    overflow: hidden;
    height: 0;
}

.job--choice {
    position: absolute;
    font-weight: 800;
    background-color: #fff;
    bottom: 0;
    right: 0;
    font-size: 1.3rem;
    padding: 20px 40px;
    -webkit-clip-path: polygon(0 20px, 20px 0px, 100% 0px, 100% 100%, 0 100% );
    clip-path: polygon(0 20px, 20px 0px, 100% 0px, 100% 100%, 0 100% );
    line-height: 1.3rem;
    cursor: pointer;
    z-index: 1;
    display: none;
}
a.job--choice-url {
    position: absolute;
    font-weight: 800;
    background-color: #fff;
    bottom: 0;
    right: 0;
    font-size: 1.3rem;
    padding: 20px 40px;
    -webkit-clip-path: polygon(0 20px, 20px 0px, 100% 0px, 100% 100%, 0 100%);
    clip-path: polygon(0 20px, 20px 0px, 100% 0px, 100% 100%, 0 100%);
    line-height: 1.3rem;
    cursor: pointer;
    z-index: 1;
}

.job--top {
    position: absolute;
    font-weight: 800;
    background-color: #fff;
    bottom: 0;
    left: 0;
    font-size: 1.3rem;
    padding: 20px 40px;
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 0px, 100% 100%, 0 100% );
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 0px, 100% 100%, 0 100% );
    line-height: 1.3rem;
    cursor: pointer;
    z-index: 1;
    display: none;
}
@media (max-width: 800px) {
  .job--top {
    
    display: block;
}
}

panel .skill li:after {
    content: "";
    width: 100%;
    height: 23px;
    margin-top: 2px;
    line-height: 20px;
    border: 2px solid var(--skill-color);
    border-radius: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--skill-color)), to(var(--skill-color)));
    background-image: -o-linear-gradient(var(--skill-color), var(--skill-color));
    background-image: linear-gradient(var(--skill-color), var(--skill-color));
    background-size: 0% 100%;
    background-repeat: no-repeat;
    --percent: attr(data-skill-level);
}

content ul .skill li {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
}

ul.skill {
    list-style: none;
}


panel .skill [data-skill-level="5"]:after {
    background-size: 100% 100%;
    content: "100%";
    text-align: right;
    padding-right: 7px;
}

panel .skill [data-skill-level="4"]:after {
    background-size: 80% 100%;
    content: "80%";
    text-align: right;
    padding-right: calc(20% + 7px);
}

panel .skill [data-skill-level="3"]:after {
    background-size: 60% 100%;
    content: "60%";
    text-align: right;
    padding-right: calc(40% + 7px);
}

panel .skill [data-skill-level="2"]:after {
    background-size: 40% 100%;
    content: "40%";
    text-align: right;
    padding-right: calc(60% + 7px);
}

panel .skill [data-skill-level="1"]:after {
    background-size: 20% 100%;
    content: "20%";
    text-align: right;
    padding-right: calc(80% + 7px);
}

panel .skill [data-skill-level="100"]:after {
    background-size: 100% 100%;
    content: "100%";
    text-align: right;
    padding-right: calc(0% + 7px);
}

panel .skill [data-skill-level="90"]:after {
    background-size: 90% 100%;
    content: "90%";
    text-align: right;
    padding-right: calc(10% + 7px);
}

panel .skill [data-skill-level="80"]:after {
    background-size: 80% 100%;
    content: "80%";
    text-align: right;
    padding-right: calc(20% + 7px);
}

panel .skill [data-skill-level="70"]:after {
    background-size: 70% 100%;
    content: "70%";
    text-align: right;
    padding-right: calc(30% + 7px);
}

panel .skill [data-skill-level="60"]:after {
    background-size: 60% 100%;
    content: "60%";
    text-align: right;
    padding-right: calc(40% + 7px);
}

panel .skill [data-skill-level="50"]:after {
    background-size: 50% 100%;
    content: "50%";
    text-align: right;
    padding-right: calc(50% + 7px);
}

panel .skill [data-skill-level="40"]:after {
    background-size: 40% 100%;
    content: "40%";
    text-align: right;
    padding-right: calc(60% + 7px);
}

panel .skill [data-skill-level="30"]:after {
    background-size: 30% 100%;
    content: "30%";
    text-align: right;
    padding-right: calc(70% + 7px);
}

panel .skill [data-skill-level="20"]:after {
    background-size: 20% 100%;
    content: "20%";
    text-align: right;
    padding-right: calc(80% + 7px);
}

panel .skill [data-skill-level="10"]:after {
    background-size: 10% 100%;
    content: "10%";
    text-align: right;
    padding-right: calc(90% + 7px);
}

ul.panel--job-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    z-index: +1;
    position: relative;
}

li.panel--job-category {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    opacity: 0;
    z-index: 50;
    pointer-events: none;
}

li.panel--job-category {
    /* opacity: 1; */
}

li.job--roll > panel ul.reqirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marketing li.panel--job-category[data-category="marketing"] {
    opacity: 1;
    pointer-events: all;
    z-index: +1000;
}

.support li.panel--job-category[data-category="support"] {
    opacity: 1;
    pointer-events: all;
    z-index: +1000;
}

.initiativ li.panel--job-category[data-category="initiativ"] {
    opacity: 1;
    pointer-events: all;
    z-index: +1000;
}

.developer li.panel--job-category[data-category="developer"] {
    opacity: 1;
    pointer-events: all;
    z-index: +1000;
}

.backoffice li.panel--job-category[data-category="backoffice"] {
    opacity: 1;
    pointer-events: all;
    z-index: +1000;
}

.sales li.panel--job-category[data-category="sales"] {
    opacity: 1;
    pointer-events: all;
    z-index: +1000;
}

li.reqirements--beschreibung {
    display: none;
}

li.reqirements--beschreibung.active {
    display: block;
}

.panel-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 50px;
    color: #fff;
}

.panel-404 h3 {
    font-size: 3rem;
}

.panel-404 p {
    font-size: 1rem;
    line-height: 1.5;
}


.form--nxtlvl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* justify-content: center; */
    position: relative;
    padding: 70px 8% 140px 8%;
    overflow: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

div#bewerben-form form {
    height: 100%;
    position: relative;
}

.submit input {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: Oscine;
    background-color: var(--gh23-y);
    color: #000;
    padding: 20px 40px 50px 40px;
    border: none;
    border-top: 4px solid #000;
    text-transform: uppercase;
    letter-spacing: 0px;
    cursor: pointer;
    -webkit-transition: padding .3s;
    -o-transition: padding .3s;
    transition: padding .3s;
    -webkit-appearance: none;
    border-radius: 0;
}
.form--nxtlvl div.submit:hover {
    top: calc(100% - 70px);
}

input, textarea {
    width: 100%;
    resize: none;
    font-size: 1.2rem;
    font-weight: 800;
    border: 2px solid;
    padding: 9px 12px;
    font-family: Oscine, arial;
}

div#bewerben-form form > div {
    width: 100%;
    /* overflow: auto; */
    position: relative;
    background-color: #fff;
}

.form--nxtlvl div {
    width: 100%;
    margin-bottom: 10px;
}

label {
    font-weight: 800;
    font-size: 0.875rem;
}

.form--nxtlvl div.submit {
    top: calc(100% - 64px);
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    position: absolute;
}
section.jobselect .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 0 0 0;
    -webkit-filter: drop-shadow(1px 1px 0px #ffffff) drop-shadow(-1px -1px 0px #ffffff) drop-shadow(-1px 1px 0px #ffffff) drop-shadow(1px -1px 0px #ffffff);
            filter: drop-shadow(1px 1px 0px #ffffff) drop-shadow(-1px -1px 0px #ffffff) drop-shadow(-1px 1px 0px #ffffff) drop-shadow(1px -1px 0px #ffffff);
}


section.jobselect .action--bewerbung-abrechen {
    background-color: #000208;
    display: block;
    padding: 6px 25px;
    -webkit-clip-path: polygon(0 8px, 8px 0px, calc(100% - 8px) 0px, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
            clip-path: polygon(0 8px, 8px 0px, calc(100% - 8px) 0px, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
    font-weight: 800;
    color: #fff;
    cursor: pointer;
}

section.jobselect .action--bewerbung-abrechen:hover {
    background-color: #000c3bf0;
    color: ##fff;
}

#seq-1, #seq-2, #seq-3, #seq-4, #seq-5, #seq-6{
z-index: 1;
}

.show #seq-1 {
    opacity: 0;
    -webkit-animation: fadeIn 0.75s linear 0s both;
            animation: fadeIn 0.75s linear 0s both;
}
.show #seq-2 {
    -webkit-animation: fadeIn 0.75s linear 1s both;
            animation: fadeIn 0.75s linear 1s both;
}
.show #seq-3 {
    -webkit-animation: fadeIn 1s linear 2.5s both;
            animation: fadeIn 1s linear 2.5s both;
}
.show #seq-3-1 {
    -webkit-animation: fadeIn 1s linear 1s both;
            animation: fadeIn 1s linear 1s both;
}
.show #seq-4 {
    -webkit-animation: fadeIn 1.5s linear 1.5s both;
            animation: fadeIn 1.5s linear 1.5s both;
}
.show #seq-5 {
    -webkit-animation: fadeIn 1s linear 3.5s both;
            animation: fadeIn 1s linear 3.5s both;
}
.show #seq-6 {
    -webkit-animation: fadeIn 1s linear 5.0s both;
            animation: fadeIn 1s linear 5.0s both;
}

.show #line-1 {
    -webkit-animation: drawRight 0.25s linear 0.5s both;
            animation: drawRight 0.25s linear 0.5s both;
}
.show #line-2 {
    -webkit-animation: drawDown 0.25s linear 0.5s both;
            animation: drawDown 0.25s linear 0.5s both;
}
.show #line-3 {
    -webkit-animation: drawRight 0.25s linear 2.0s both;
            animation: drawRight 0.25s linear 2.0s both;
}
.show #line-4 {
    -webkit-animation: drawDown 0.25s linear 4.5s both;
            animation: drawDown 0.25s linear 4.5s both;
}
.show #line-5-2 {
    -webkit-animation: drawRight 0.25s linear 3.5s both;
            animation: drawRight 0.25s linear 3.5s both;
}

.show #line-5 {
    -webkit-animation: drawDown 0.25s linear 4.5s both, moveDown 1s linear 4.5s infinite;
            animation: drawDown 0.25s linear 4.5s both, moveDown 1s linear 4.5s infinite;
}


@-webkit-keyframes fadeIn {
  0% { opacity: 0;
  }
  100% { 
       opacity: 1;
}
}


@keyframes fadeIn {
  0% { opacity: 0;
  }
  100% { 
       opacity: 1;
}
}

@-webkit-keyframes drawRight {
  0% {-webkit-clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%); }
  100% { -webkit-clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%); clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);}
}

@keyframes drawRight {
  0% {-webkit-clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%);clip-path: polygon(0% 0%,0% 0%, 0% 100%, 0% 100%); }
  100% { -webkit-clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%); clip-path: polygon(0% 0%,100% 0%, 100% 100%, 0% 100%);}
}

@-webkit-keyframes moveDown{
  0% {-webkit-transform: translateY(0%);transform: translateY(0%) }
  100% { -webkit-transform: translateY(2%); transform: translateY(2%);}
}

@keyframes moveDown{
  0% {-webkit-transform: translateY(0%);transform: translateY(0%) }
  100% { -webkit-transform: translateY(2%); transform: translateY(2%);}
}


@-webkit-keyframes drawDown{
  0% { -webkit-clip-path: polygon(0 0, 100% 0%, 0 0, 100% 0); clip-path: polygon(0 0, 100% 0%, 0 0, 100% 0); }
  100% { -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%,0 100%); clip-path: polygon(0 0, 100% 0%, 100% 100%,0 100%); }
}


@keyframes drawDown{
  0% { -webkit-clip-path: polygon(0 0, 100% 0%, 0 0, 100% 0); clip-path: polygon(0 0, 100% 0%, 0 0, 100% 0); }
  100% { -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%,0 100%); clip-path: polygon(0 0, 100% 0%, 100% 100%,0 100%); }
}

content ul.paneled--grid.requirements li svg {
    max-height: 120px;
    margin: 30px 0 15px 0;
    z-index: 1;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
    fill: #00ff18;
    -webkit-filter: drop-shadow(0px 0px 6px currentColor);
            filter: drop-shadow(0px 0px 6px currentColor);
    color: #00d0ffcf;
}

content ul.paneled--grid.requirements li:not(:first-of-type):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
    -webkit-mask-repeat: repeat;
    -webkit-mask-size: 40px 3px;
    background-color: #02f189;
    opacity: 0.4;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
}

content ul.paneled--grid.requirements li:not(:first-of-type):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #002017;
    opacity:1;
    -webkit-clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 0px), calc(60% + 20px) calc(100%), 60% calc(100% - 20px), 40% calc(100% - 20px), calc(40% - 20px) calc(100% - 0px), 20px calc(100% - 0px), 0 calc(100% - 20px));
}

ul.paneled--grid.requirements .led {
    color: #00fc65;
    font-weight: 100;
    /* color: #00fc1985; */
    -webkit-filter: drop-shadow(0px 0px 7px #00fc1985);
            filter: drop-shadow(0px 0px 7px #00fc1985);
    max-width: 480px;
    -ms-flex-item-align: start;
        align-self: flex-start;
}


content ul.paneled--grid.requirements li:not(:first-of-type):hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}


li.job--roll > panel ul.reqirements ul .briefing ol {
  list-style: none;
  counter-reset: gh-counter;
  margin: 0;
  padding: 0;
}
li.job--roll > panel ul.reqirements ul .briefing ol li, li.job--roll > panel ul.reqirements ul ol.task li {
  counter-increment: gh-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
li.job--roll > panel ul.reqirements ul .briefing ol li::before, li.job--roll > panel ul.reqirements ul ol.task  li::before {
  content: "0" counter(gh-counter);
  font-weight: 800;
  line-height: 1;
  background-color: var(--skill-color);
  width: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1 / 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  -webkit-filter: drop-shadow(0px 0px 4px var(--skill-color));
          filter: drop-shadow(0px 0px 4px var(--skill-color));
  -webkit-mask-image: url(/uploads/assets/jobs/icons/layer-mask.svg);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: 40px 3px;
  border-radius: 4px;
}
player {
    background-color: #021227;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    z-index: 500;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #020110a3;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    -webkit-box-shadow: 0 2px 5px #0000000d;
    box-shadow: 0 2px 5px #0000000d;
    padding-bottom: 70px;
    padding: 5% 5%;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    transform: translateX(200vw);
    overflow: auto;
}

player.active {
    opacity: 1;
    pointer-events: all;
    display: flex;
    transform: translateX(0);
}

.player--wrapper {
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 16 /9;
    -webkit-filter: drop-shadow(0px 10px 24px #f0ff0087);
            filter: drop-shadow(0px 10px 24px #f0ff0087);
}

.player--wrapper:before {
    width: 100%;
    aspect-ratio: 16 /9;
    -webkit-filter: drop-shadow(0px 10px 24px #f0ff0087);
            filter: drop-shadow(0px 10px 24px #f0ff0087);
    background-color: #020110a3;
    
}

.player--wrapper iframe {
    width: 100%;
    height: 100%;
    -webkit-clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
            clip-path: polygon(0 20px, 20px 0px, calc(100% - 20px) 0px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px));
}



.close {
    height: 60px;
    width: 52px;
    position: absolute;
    right: 15px;
    top: 16px;
    z-index: +20;
    fill: #fff;
    cursor: pointer;
}
@media (max-width: 1100px) {
splash{
    height: 100%;
}
    splash .center {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);    
}
section.section--loadingscreen loader {
    bottom: 40px;
    left: 20px;
    right: 20px;
    height: 40px;
}
}

@media (max-height: 600px) {
splash{
    height: 100%;
}
    splash .center {
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
    margin-bottom: 50px;
}

    section.section--loadingscreen loader {
    bottom: 40px;
    left: 20px;
    right: 20px;
    height: 40px;
}

section.section--loadingscreen {
    padding: 2%;
}    
    
}

@media (max-width: 700px){
main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

nav {
    position: sticky;
    bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /* right: 0; */
    /* left: 0; */
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 4px 12px;
    margin: 5px;
    gap: 34px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    border-radius: 50px;
    /* display: none; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 5px;
}

nav ul li {
    height: 42px;
    width: 42px;
    padding: 6px;
}

li[data-section="anfang"] {
    display: none;
}

nav ul:nth-child(3) {
    display: none;
}

nav > svg {
    height: 28px;
    width: 28px;
    padding: 9px 2px;
}
}


@media (max-width: 1080px){
section.panel--lr.section--progressmap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 70px;
    padding: 0;
}

section.panel--lr.section--progressmap > wrapper {
    width: 100%;
}

    ul.paneled--grid.perks {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

ul.paneled--grid.perks .grid--row-full {
    grid-column: auto;
}
    
}

@media (max-width: 1080px){


    ul.paneled--grid.perks {
    -ms-grid-columns: 1fr 1fr ;
    grid-template-columns: 1fr 1fr ;
}

ul.paneled--grid.perks .grid--row-full {
    grid-column: auto;
}

ul.paneled--grid.requirements {
    -ms-grid-columns: 1fr 1fr ;
    grid-template-columns: 1fr 1fr ;
}

ul.paneled--grid.requirements .grid--full {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}    
    
}

@media (max-width: 780px){


    ul.paneled--grid.perks {
    -ms-grid-columns: 1fr ;
    grid-template-columns: 1fr ;
}

ul.paneled--grid.perks .grid--row-full {
    -ms-grid-column-span: 1;
    grid-column: span 1;
}

ul.paneled--grid.requirements {
    -ms-grid-columns: 1fr ;
    grid-template-columns: 1fr ;
}

ul.paneled--grid.requirements .grid--full {
    -ms-grid-column-span: 1;
    grid-column: span 1;
}

section.bonuslevel {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px 0;
} 

ul.paneled--grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
}

li.grid--full {
    -ms-grid-column-span: 1;
    grid-column: span 1;
}

.content--map {
    width: 100%;
}

bewerben {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    bottom: auto;
    right: -13px;
    top: 0;
    /* display: none; */
    /* z-index: +10000; */
}    
.section--hero .content--theme {
    height: 320px;
}   

main content {
    max-width: 100%;
    overflow: hidden;
}

section.bonuslevel h2 {
    -ms-grid-column-span: 1;
    grid-column: span 1;
}  
    
}

close {
    display: none;
}

@media(max-width: 780px){

section.jobselect > panel {
    height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
}

ul.job {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
    -ms-flex-preferred-size: fit-content;
    flex-basis: fit-content;
    padding-bottom: 20px;
    gap: 35px 0;
    -webkit-overflow-scrolling: touch;
}

ul.job > li.teams {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
}

ul.classes li {
    min-width: 48%;
    min-height: 200px;
    filter: none !important;
    scale: 1 !important;
}

ul.classes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.job--title {
    font-size: 22px;
    line-height: 26px;
    margin-top: 40px;
    margin-bottom: 60px;
}

section.jobselect {
    overflow: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

ul.job.step--2 .teams .classes, ul.job.step--3 .teams .classes {
    height: 520px;
}

ul.job.step--2 .job--roll {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    -ms-flex-preferred-size: fit-content;
    flex-basis: fit-content;
    overflow: visible;
    height: unset;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    height: fit-content;
    -ms-flex-preferred-size: max-content;
    flex-basis: max-content;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
}

li.job--roll > panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    -ms-flex-preferred-size: fit-content;
        flex-basis: fit-content;
    min-height: unset;
}

ul.panel--job-group li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0;
            flex: 0 0;
}

ul.panel--job-group {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    -ms-flex-preferred-size: fit-content;
        flex-basis: fit-content;
}

li.job--roll > panel ul.reqirements {
    overflow: auto;
    -ms-flex-preferred-size: fit-content;
        flex-basis: fit-content;
}

li.job--roll panel ul.roll {
    overflow: visible;
}

li.job--roll panel:before {
    -webkit-mask-image: none;
}  

ul.job.step--3 li.job--form {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
    height: 100vh;
    -ms-flex-preferred-size: max-content;
        flex-basis: max-content;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
}


.form--nxtlvl {
    padding: 70px 5% 100px 5%;
    position: relative;
}

.form--nxtlvl div.submit {
}

ul.job:after {
    content: "";
    display: list-item;
    height: 20px;
    opacity: 0;
}

    section.jobselect .actions {
    display: none;
}
close {
    display: flex;
    height: 56px;
    width: 56px;
    position: sticky;
    right: 0;
    top: 0;
    z-index: +20;
    fill: #fff;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    cursor: pointer;
    -webkit-filter: drop-shadow(2px 4px 6px black);
    filter: drop-shadow(2px 4px 6px black);
    z-index: 1000;
}

ul.job > li.job--roll, ul.job > li.job--form {
    display: none;
}

ul.job.step--2 > li.job--roll{
    display: flex;
}

ul.job.step--3 > li.job--form, ul.job.step--2 > li.job--form{
    display: flex;
}  
  
}

@media (max-width: 1400px){
li.panel--job-category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

li.job--roll panel ul.roll {flex-basis: max-content;}

ul.job.step--2 .job--roll {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
}

.marketing li.panel--job-category[data-category="marketing"],
.developer li.panel--job-category[data-category="developer"],
.support li.panel--job-category[data-category="support"],
.backoffice li.panel--job-category[data-category="backoffice"],
.sales li.panel--job-category[data-category="sales"] {
    display: flex;
    position: relative;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-overflow-scrolling: touch;
}   
}
div#bewerben-form form > div.submit {
    position: absolute;
    bottom: 0;
    left: 0;
    left: ;
    right: 0;
}
.submit {}
div#bewerben-form form > div.submit:hover input {
    padding: 20px 40px 60px 40px;
}


@media(max-height: 1000px){

section.jobselect {
    flex-direction: column;
    justify-content: flex-start;
}

section.jobselect > panel {
    min-height: auto;
    justify-content: flex-start;
}

}



.job--roll, .job--roll *:before, .job--roll *:after {

    -webkit-filter: !important;
    filter: none !important;
}

print {
    position: absolute;
    top: 0;
    right: 30px;
    height: 60px;
    width: 90px;
    background-color: var(--skill-color);
    clip-path: polygon(0 0, 100% 0px, 100% 100%, 20px 100%, 0 calc(100% - 20px) );
    padding: 16px 31px 16px 17px;
    cursor: pointer;
    z-index: +1;
}

print svg {
    height: 100%;
    width: 100%;
    /* fill: #fff; */
    height: 26px;
    width: 30px;
}

copy {
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 60px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0px, 100% 100%, 20px 100%, 0 calc(100% - 20px) );
    padding: 15px;
    cursor: pointer;
    z-index: +1;
}

copy svg {
    height: 100%;
    width: 100%;
}


copy #done {fill: transparent;}
}

copy #link {
     animation: fadeOutIn 5s linear;
}

copy #load {opacity: 0;}


copy.active #done {
    animation: copydone 1s linear 1s forwards;
    fill: transparent;
}

copy.active #link {
     animation: fadeOutIn 0.5s linear forwards;
}

copy.active #load {
    transform-origin: center;
    fill: var(--skill-color);
    animation: rotate 1s linear 0.5s forwards;
    opacity: 0;
    }

@keyframes rotate {
         0% { opacity: 0;
              transform: rotate(0deg)
            }
     20% { opacity: 1;}
     90% { opacity: 0;}   
    100% {opacity: 1;
          transform: rotate(720deg)
         }
}

@keyframes fadeOutIn {
      0% { opacity: 1;}   
    100% {opacity: 0;}
}

@keyframes copydone  {
      0% {
        fill: transparent;
    }
    33% {
        fill: var(--skill-color);
    }
     66% {
        fill: transparent;
    }
    100% {
        fill: var(--skill-color);     
    }
}
//* STAND ALONE *//

main.standalone content {
    padding: 2%;
}

main.standalone {
    background-image: url(/uploads/assets/jobs/gh-nxt-lvl-bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2%;
    background-attachment: fixed;
    background-color: #010207;
}

main.standalone content.pannel {
    background-color: #fff;
}

printarea wrapper.paneled,main.standalone wrapper.paneled {
    background-color: #fff;
    padding: 0 30px 5% 30px;
    max-width: 800px;
    margin: 0 auto;
    clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    position: relative;
}

wrapper.paneled h1 {
    font-size: clamp(2rem, 1.158rem + 5.22vw, 4rem);
    text-transform: uppercase;
    line-height: 85%;
    letter-spacing: -0.15rem;
    max-width: 760px;
    font-weight: 800;
    text-align: center;
    margin: 40px auto 15px auto;
}

main.standalone wrapper.paneled h2.location {
    font-weight: 100;
    margin-top: 20px;
}

main.standalone section.footer {
    align-items: center;
}

printarea wrapper.paneled h4,main.standalone wrapper.paneled h4 {
    max-width: initial;
    font-size: 1rem;
    margin: 0;
}

printarea wrapper.paneled p,main.standalone wrapper.paneled p {
    font-size: 1rem;
    line-height: 1.8;
}

printarea wrapper.paneled h2,main.standalone wrapper.paneled h2 {
    font-weight: 800;
    margin: 40px 0 30px 0;
    font-size: 1.8rem;
    letter-spacing: -1px;
    text-align: center;
    line-height: 1.3;
}

printarea wrapper.paneled ul, printarea wrapper.paneled ol, main.standalone wrapper.paneled ul, main.standalone wrapper.paneled ol {
    padding: 0 0 0 18px;
}

printarea wrapper.paneled li, main.standalone content wrapper.paneled li {
    padding: 0 0 15px 5px;
}



printarea wrapper.paneled li p,main.standalone content wrapper.paneled li p {
    padding: 0;
    margin: 0;
}

printarea wrapper.paneled h3,main.standalone wrapper.paneled h3 {
    margin: 4% 0;
    font-size: 1.8rem;
    max-width: initial;
    text-align: center;
}


 main.standalone ul.skill li:after {
    content: "";
    width: 100%;
    height: 23px;
    margin-top: 2px;
    line-height: 20px;
    border: 2px solid #000;
    border-radius: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#df1ff2), to(#df1ff2));
    background-image: -o-linear-gradientdf1ff2000, #df1ff2);
    background-image: linear-gradient(#df1ff2, #df1ff2);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    --percent: attr(data-skill-level);
    color: #000;
}

printarea ul.skill li:after {
    content: "";
    width: 100%;
    height: 23px;
    margin-top: 2px;
    line-height: 20px;
    border: 2px solid #000;
    border-radius: 20px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#df1ff2));
    background-image: -o-linear-gradient(#000, #000);
    background-image: linear-gradient(#000, #000);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    --percent: attr(data-skill-level);
    color: #fff;
}

printarea ul.skill li, main.standalone ul.skill li {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
}

printarea wrapper.paneled ul.skill, main.standalone wrapper.paneled ul.skill {
    list-style: none;
    padding: 0;
}


printarea .skill [data-skill-level="5"]:after, main.standalone .skill [data-skill-level="5"]:after {
    background-size: 100% 100%;
    content: "100%";
    text-align: right;
    padding-right: 7px;
}

printarea .skill [data-skill-level="4"]:after, main.standalone .skill [data-skill-level="4"]:after {
    background-size: 80% 100%;
    content: "80%";
    text-align: right;
    padding-right: calc(20% + 7px);
}

printarea .skill [data-skill-level="3"]:after, main.standalone .skill [data-skill-level="3"]:after {
    background-size: 60% 100%;
    content: "60%";
    text-align: right;
    padding-right: calc(40% + 7px);
}

printarea .skill [data-skill-level="2"]:after, main.standalone .skill [data-skill-level="2"]:after {
    background-size: 40% 100%;
    content: "40%";
    text-align: right;
    padding-right: calc(60% + 7px);
}

printarea .skill [data-skill-level="1"]:after, main.standalone .skill [data-skill-level="1"]:after {
    background-size: 20% 100%;
    content: "20%";
    text-align: right;
    padding-right: calc(80% + 7px);
}

printarea .skill [data-skill-level="100"]:after, main.standalone .skill [data-skill-level="100"]:after {
    background-size: 100% 100%;
    content: "100%";
    text-align: right;
    padding-right: calc(0% + 7px);
}

printarea .skill [data-skill-level="90"]:after, main.standalone .skill [data-skill-level="90"]:after {
    background-size: 90% 100%;
    content: "90%";
    text-align: right;
    padding-right: calc(10% + 7px);
}

printarea .skill [data-skill-level="80"]:after, main.standalone .skill [data-skill-level="80"]:after {
    background-size: 80% 100%;
    content: "80%";
    text-align: right;
    padding-right: calc(20% + 7px);
}

printarea .skill [data-skill-level="70"]:after, main.standalone .skill [data-skill-level="70"]:after {
    background-size: 70% 100%;
    content: "70%";
    text-align: right;
    padding-right: calc(30% + 7px);
}

printarea .skill [data-skill-level="60"]:after, main.standalone .skill [data-skill-level="60"]:after {
    background-size: 60% 100%;
    content: "60%";
    text-align: right;
    padding-right: calc(40% + 7px);
}

printarea .skill [data-skill-level="50"]:after, main.standalone .skill [data-skill-level="50"]:after {
    background-size: 50% 100%;
    content: "50%";
    text-align: right;
    padding-right: calc(50% + 7px);
}

printarea .skill [data-skill-level="40"]:after, main.standalone .skill [data-skill-level="40"]:after {
    background-size: 40% 100%;
    content: "40%";
    text-align: right;
    padding-right: calc(60% + 7px);
}

printarea .skill [data-skill-level="30"]:after, main.standalone .skill [data-skill-level="30"]:after {
    background-size: 30% 100%;
    content: "30%";
    text-align: right;
    padding-right: calc(70% + 7px);
}

printarea .skill [data-skill-level="20"]:after, main.standalone .skill [data-skill-level="20"]:after {
    background-size: 20% 100%;
    content: "20%";
    text-align: right;
    padding-right: calc(80% + 7px);
}

printarea .skill [data-skill-level="10"]:after, main.standalone .skill [data-skill-level="10"]:after {
    background-size: 10% 100%;
    content: "10%";
    text-align: right;
    padding-right: calc(890% + 7px);
}


img.header {
    margin: 0 -8% -3% -8%;
    max-width: calc(100% + 16%);
}

main.standalone div#bewerben-form {
    max-width: 800px;
    margin: 0 auto;
    clip-path: polygon(0 20px, 20px 0, calc(40% - 20px) 0%, 40% 20px, 60% 20px, calc(60% + 20px) 0%, calc(100% - 20px) 0%, 100% 19px, 100% calc(100% - 40px), calc(100% - 20px) calc(100% - 20px), calc(60% + 20px) calc(100% - 20px), 60% 100%, 40% 100%, calc(40% - 20px) calc(100% - 20px), 20px calc(100% - 20px), 0 calc(100% - 40px));
    background-color: #fff;
}

div#bewerben-form form > div h3 {
    text-align: center;
    margin: 3% auto !important;
}

::marker {
    font-weight: 800;
}

main.standalone wrapper.paneled nav {
    position: sticky;
    display: block;
    top: 0;
    margin-left: -30px;
    margin-bottom: -60px;
    margin-top: 0;
    border-radius: 0;
    height: 60px;
    width: 120px;
    background-color: #320c36d4;
    clip-path: polygon(0 0, 100% 0px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100% );
    padding: 15px;
    cursor: pointer;
    z-index: +1;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    filter: drop-shadow(0px 0px 4px #df1ff2ba);
    color: #e800ff;
    font-weight: 800;
}
main.standalone content a.jobs--back, main.standalone content a.jobs--back:visited {
    width: 120px;
    filter: drop-shadow(0px 0px 4px #df1ff2ba);
    color: #e800ff;
    font-weight: 800;
}

a.jobs--back span {
    filter: drop-shadow(0px 0px 4px #df1ff2ba);
    color: #e800ff;
}

printarea {
    display: none;
}

@media print {

printarea {
    display: block;
}

main:not(.standalone){
  display:none
}
  * {
    clip-path: none !important;
    max-width: 100%;
  }

  body, html, main.standalone {
    background-color: #fff;
    background-image: none;
}

printarea a.jobs--back, main.standalone content a.jobs--back, main.standalone content a.jobs--back:visited, footer, div#bewerben-form form > div {
    display: none;
}
  
}

nav > a  {
    width: 42px;
    height: 42px;
    color: #fff;
}
nav > a svg {
    height: 42px;
    width: 42px;
    fill: currentColor;
}
@media(max-width: 780px){
nav > a  {
    width: 26px;
    height: 26px;
    color: #fff;
    padding: 0 7px;
}
nav > a svg {
    height: 26px;
    width: 26px;
    fill: currentColor;
}
    }
.g-recaptcha {
    display: flex;
    justify-content: center;
}
div#cookie-einstellungen {
    z-index: 100;
}
