/* Responsive */
.hide {
    display: none;
}

.visible {
    display: unset;
}

@media only screen and (max-width: 640px) {
    .hide-xs {
        display: none;
    }

    .visible-xs {
        display: unset;
    }
}

@media only screen and (min-width: 641px) and (max-width: 900px) {
    .hide-s {
        display: none;
    }

    .visible-s {
        display: unset;
    }
}

@media only screen and (min-width: 901px) and (max-width: 1200px) {
    .hide-md {
        display: none;
    }

    .visible-md {
        display: unset;
    }
}

@media only screen and (min-width: 901px) and (max-width: 1200px) {
    .hide-l {
        display: none;
    }

    .visible-l {
        display: unset;
    }
}

@media only screen and (min-width: 1920px) {
    .hide-xl {
        display: none;
    }

    .visible-xl {
        display: unset;
    }
}
/* Responsive ENDE */

/* Xing Login Button */
.login-3rdparty iframe {
    display: none;
}

div.spi-wrapper {
    width: 100%;
}

div#xing-login {
    width: calc(100% - 65px);
}

img {
    max-width: 100%;
}

/* Borders entfernen - Navigation */
header > nav > div.mainmenu > ul > li {
    border: none !important;
}

/* FONTS */

@font-face {
    font-family: "Open Sans";
    src: local("Open Sans Regular"), url("../webfonts/OpenSans-Regular.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Open Sans Thin";
    src: local("Open Sans Light"), url("../webfonts/OpenSans-Light.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Open Sans Thick";
    src: local("Open Sans Bold"), url("../webfonts/OpenSans-Bold.woff2");
    font-display: swap;
}

@-moz-document url-prefix() {
    body {
        font-weight: lighter !important;
    }
}

/* ANIMATIONS */

@keyframes invalid-pulse {
    0% {
        box-shadow: 0 0 2px 1px #ccc;
        background-color: #fff;
    }
    50% {
        box-shadow: 0 0 2px 1px #ff5e00;
        background-color: #ffe8db;
    }
    100% {
        box-shadow: 0 0 2px 1px #ccc;
        background-color: #fff;
    }
}

@keyframes valid-pulse {
    0% {
        box-shadow: 0 0 2px 1px #ccc;
        background-color: #fff;
    }
    50% {
        box-shadow: 0 0 2px 1px var(--primary_color);
        background-color: #c6f7b0;
    }
    100% {
        box-shadow: 0 0 2px 1px #ccc;
        background-color: #fff;
    }
}

@keyframes vertical-wobble {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(3px);
    }
    75% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes horizontal-wobble {
    0% {
        transform: translateX(0px);
    }
    25% {
        transform: translateX(3px);
    }
    75% {
        transform: translateX(-3px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes wiggle {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    2% {
        transform: translate(-1px, -1px) rotate(-0.3deg);
    }
    4% {
        transform: translate(-1px, 0px) rotate(0.3deg);
    }
    6% {
        transform: translate(0px, 1px) rotate(0deg);
    }
    8% {
        transform: translate(1px, -1px) rotate(0.3deg);
    }
    10% {
        transform: translate(-1px, 1px) rotate(-0.3deg);
    }
    10%, 100% {
        transform: rotateY(0deg);
    }
}

@keyframes spinning {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes coinspin {
    0% {
        transform: rotateY(0deg);
        top: 0;
    }
    10% {
        top: -20px;
    }
    20% {
        top: 0;
    }
    30% {
        top: -15px;
    }
    40% {
        top: 0;
    }
    50% {
        top: -10px;
    }
    60% {
        top: 0;
    }
    100% {
        transform: rotateY(360deg);
        top: 0;
    }
}

/* TEXT SELECTION & SCROLLBARS */

::selection {
    background-color: transparent;
}

input::selection, label::selection, a::selection,
p::selection, span::selection, strong::selection,
h1::selection, h2::selection, h3::selection,
h4::selection, h5::selection, h6::selection,
i::selection, b::selection, s::selection, u::selection,
pre::selection, q::selection,
textarea::selection, div.text > li::selection,
ul.text > li::selection, ol > li::selection,
td.text::selection, th.text::selection {
    background-color: var(--secondary_color);
    color: #f2f2f2;
}

/* Anastasia ist kein Fan.

::-webkit-scrollbar
    {width: 14px; height: 14px;}

::-webkit-scrollbar-track
    {background-color: var(--light_grey2);}

::-webkit-scrollbar-thumb
	{
	background-color: var(--primary_color);
    border-radius: 2px;
	border: 1px solid #93b34a;
	box-shadow: 0 0 2px 0 #93b34a;
	}

::-webkit-scrollbar-thumb:hover
	{background-color: #a4c753;}

*/

::-webkit-input-placeholder {
    color: #aaa;
    font-family: "Open Sans Thin", arial;
}

::-moz-placeholder {
    color: #aaa;
    font-family: "Open Sans Thin", arial;
}

:-ms-input-placeholder {
    color: #aaa;
    font-family: "Open Sans Thin", arial;
}

::placeholder {
    color: #aaa;
    font-family: "Open Sans Thin", arial;
}


/* GLOBAL CLASSES */

.btn-color-1 {
    background-color: var(--primary_button_color);
    border-bottom: solid 2px var(--primary_button_border_color);
    /*
    background: linear-gradient(to bottom, var(--primary_color) 0%, #a8c54f 100%) repeat scroll 0 0;
    text-shadow: 1px 1px 2px #7b7b7b;
    box-shadow: 1px 2px 2px #888;
    border: 1px solid #93b34a;
    */
}

.btn-color-1:hover {
    background-color: var(--primary_button_color_hover);
    /*
    background: linear-gradient(to bottom,#a4c753 0%,#8aa944 100%) repeat scroll 0 0;
    */
}

.btn-color-2 {
    background-color: var(--secondary_button_color);
    border-bottom: solid 2px var(--secondary_button_border_color);
    /*
    background: linear-gradient(to bottom, #325386 0%, #365482 100%) repeat scroll 0 0;
    text-shadow: 1px 1px 2px #7b7b7b;
    box-shadow: 1px 2px 2px #888;
    border: 1px solid #3d5e8e;
    */
}

.btn-color-2:hover {
    background-color: var(--secondary_button_color_hover);
    /*
    background: linear-gradient(to bottom, #2c4c7c 0%, #263a58 100%) repeat scroll 0 0;
    */
}

.grey {
    background-color: #c1c1c1;
}

.grey:hover {
    background-color: #b4b4b4;
}

.bright-grey {
    background-color: var(--light_grey2);
}

.bright-grey:hover {
    background-color: #c1c1c1;
}

.pulse-red,
.pulse-red + label:before {
    animation: invalid-pulse 1s infinite;
}

.pulse-green,
.pulse-green + label:before {
    animation: valid-pulse 1s infinite;
}

.tooltip {
    background-color: var(--light_grey2);
    border-radius: 8px;
    position: absolute;
    opacity: 0.0;
    transition: opacity 0.25s, right 0.25s, left 0.25s;
    transition-timing-function: ease-out;
    font-size: 10.5pt;
    transform: translateY(9px);
    z-index: 12;
    padding: 16px 20px;
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.4);
}

.tooltip.visible {
    opacity: 1.0;
    transition-timing-function: ease-in;
    height: auto;
}

.tooltip {
    padding: 8px 10px;
    font-size: 10.5pt;
    border: solid 1px #ccc;
}

.tooltip.to-right {
    border-top-left-radius: 0;
}

.tooltip.to-left {
    border-top-right-radius: 0;
}

.tooltip > span {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: -20px;
}

.tooltip.to-right > span {
    left: -1px;
    background: linear-gradient(45deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 50%,
    #ccc 51%,
    #ccc 52%,
    rgba(242, 242, 242, 0) 53%,
    rgba(242, 242, 242, 0) 100%);
    border-left: solid 1px #ccc;
}

.tooltip.to-left > span {
    right: -1px;
    background: linear-gradient(316deg,
    rgba(242, 242, 242, 1) 0%,
    rgba(242, 242, 242, 1) 50%,
    #ccc 51%,
    #ccc 52%,
    rgba(242, 242, 242, 0) 53%,
    rgba(242, 242, 242, 0) 100%);
    border-right: solid 1px #ccc;
}

.tooltip > ul,
.tooltip > div {
    position: relative;
    z-index: 1;
}

.tooltip > ul > li:not(.no-results) {
    padding: 2px 6px;
}

.tooltip > ul > li:not(.no-results):hover {
    cursor: pointer;
    background-color: #ddd;
    border-radius: 4px;
}

.msg {
    font-size: 10.5pt;
    padding: 4px 6px;
    display: block;
    font-weight: bold;
    border-radius: 3px;
    white-space: normal;
}

.msg.notice {
    background-color: #e7effc;
    border: solid 1px var(--secondary_color);
    color: var(--secondary_color);
}

.msg.notice:before {
    content: "\f05a";
}

.msg.warning {
    background-color: #ffefcc;
    border: solid 1px #ffb71e;
    color: #ffb71e;
}

.msg.warning:before {
    content: "\f071";
}

.msg.failure {
    background-color: #ffcfb2;
    border: solid 1px #b50000;
    color: #b50000;
}

.msg.failure:before {
    content: "\f057";
}

.msg.success {
    background-color: #e3fdd2;
    border: solid 1px #658532;
    color: #658532;
}

.msg.success:before {
    content: "\f058";
}

.msg.notice:before,
.msg.warning:before,
.msg.failure:before,
.msg.success:before {
    font-family: Font Awesome\ 5 Pro;
    margin-right: 8px;
}

.prompt {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.25s;
    opacity: 0.0;
    z-index: 9;
}

.prompt.visible {
    opacity: 1.0;
}

.prompt > div {
    padding: 40px;
    border-radius: 8px;
    background-color: #fff;
    border-bottom: 3px solid #ddd;
    box-shadow: 0 2px 6px 0 rgb(0 0 0 / 40%);
    position: inherit;
    top: 50%;
    left: 0;
    right: 0;
    margin: 1% auto;
    transform: translate(0%,-50%);
    max-height: 95%;
    max-width: 900px;
    -ms-transform: translateZ(0);
}

.prompt.iframe > div {
    padding: 20px;
    min-width: 480px;
    width: 50%;
}

.prompt.iframe > div > iframe {
    width: 100%;
}

.prompt > div > p {
    margin-bottom: 20px;
}

.prompt > div > button {
    width: 100%;
}

.prompt.choice > div > button {
    width: 49%;
}

.prompt.choice > div > button:last-of-type {
    float: right;
}

.prompt > div > i:last-child {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 14pt;
}

.prompt > div > i:last-child:hover {
    cursor: pointer;
}

.prompt img {
    max-width: 100%;
    height: 100%;
}

@media only screen and (max-width: 640px) {
    .prompt > div,
    .prompt.iframe > div {
        padding: 40px 20px;
        width: 90%;
        min-width: auto;
    }
}

/* COMMON TAGS */

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

a, *[data-href] {
    color: var(--secondary_color);
    text-decoration: none;
}

a.disabled, *[data-href].disabled {
    display: none;
}

p > a {
    font-weight: bold;
}

a:hover,
*[data-href]:hover {
    text-decoration: underline;
    cursor: pointer;
}

strong, b {
    font-family: "Open Sans Thick";
    font-weight: normal;
    letter-spacing: 0.5px;
}

pre {
    white-space: pre-wrap;
}

/* Inputs */

input,
button,
select,
textarea {
    font-family: inherit;
    vertical-align: middle;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="date"],
input[type="file"],
textarea {
    color: inherit;
    font-size: 10.5pt;
    height: 35px;
    padding: 4px 8px;
    border: solid 1px #ccc;
    box-shadow: inset 0 14px 14px -14px rgba(92, 89, 89, 0.32);
    background-color: #fff;
}

input:disabled,
button:disabled,
select:disabled {
    opacity: 0.5;
}

input:disabled[type="checkbox"] + label,
input:disabled[type="radio"] + label {
    opacity: 0.5;
}

input[type="text"].invalid,
input[type="password"].invalid,
input[type="checkbox"].invalid + label:before,
input[type="radio"].invalid + label:before,
input[type="number"].invalid,
textarea.invalid {
    box-shadow: 0 0 2px 1px #ff5e00;
    background-color: #ffe8db;
    position: relative;
    z-index: 1;
}

input[type="text"].valid:not([data-no-validation-checkmark]),
input[type="password"].valid:not([data-no-validation-checkmark]) {
    background-image: url("/img/checkmark.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 26px 26px !important;
    padding-right: 36px;
}

input[type="password"].valid:not([data-no-validation-checkmark]) {
    background-image: url("/img/pw-eye-open-checkmark.png");
    background-size: 52px 26px !important;
}

input[type="text"].valid.visible-password:not([data-no-validation-checkmark]) {
    background-image: url("/img/pw-eye-closed-checkmark.png");
    background-size: 52px 26px !important;
}

/* Checkbox and radio buttons */

input[type="checkbox"],
input[type="radio"] {
    display: none;
    vertical-align: middle;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "_";
    color: transparent !important;
    display: inline-block;
    background-color: #fff;
    width: 18px;
    height: 18px;
    box-shadow: inset 0 14px 14px -14px #ddd;
    border: solid 1px #ccc;
    font-size: 10pt;
    line-height: 18px;
    margin-right: 4px;
    overflow: hidden;
    vertical-align: -4px;
    font-weight: bold;
    border-radius: 3px;
}

input[type="checkbox"] + label[data-invisible-input]:before,
input[type="radio"] + label[data-invisible-input]:before {
    display: none;
}

input[type="checkbox"].small + label:before,
input[type="radio"].small + label:before {
    width: 13px;
    height: 13px;
    font-size: 8pt;
    line-height: 13px;
    vertical-align: -1px;
}

input[type="radio"] + label:before {
    border-radius: 18px;
}

input[type="checkbox"] + label:hover:before,
input[type="radio"] + label:hover:before {
    cursor: pointer;
    background-color: var(--light_grey2);
}

input[type="checkbox"]:disabled + label:before,
input[type="radio"]:disabled + label:before {
    color: #ccc;
}

input[type="checkbox"]:checked + label:before {
    content: "\f00c";
    text-align: center;
    font-family: Font Awesome\ 5 Pro;
    color: #434343 !important;
}

input[type="radio"]:checked + label:before {
    content: "\f058";
    text-align: center;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 900;
    color: #434343 !important;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    vertical-align: middle;
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 10.5pt;
    line-height: 24px;
    font-family: "Open Sans", arial;
}

input[type="checkbox"] + label:hover,
input[type="radio"] + label:hover {
    cursor: pointer;
}

/* Alternative checkbox style */

input[type="checkbox"].alt + label:before {
    content: "\f111";
    width: 40px;
    height: 25px;
    border-radius: 25px;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
    color: #fff !important;
    font-family: Font Awesome\ 5 Pro;
    padding: 0 3px 0 2px;
    background-color: #c1c1c1;
    box-shadow: none;
}

input[type="checkbox"].alt + label:after {
    width: 30px;
    /*content: "AUS";*/
    text-align: right;
    float: left;
    line-height: 26px;
    margin-right: 8px;
}

input[type="checkbox"]:checked.alt + label:before {
    text-align: right;
    background-color: var(--primary_color);
}

/*input[type="checkbox"]:checked.alt + label:after {
    content: "AN";
}*/

/* Custom password input */

input[type="password"] {
    font-size: 18pt;
    font-family: monospace;
    background-image: url("/img/pw-eye-open.png");
}

input[type="password"]::placeholder {
    font-size: 10.5pt;
    font-family: "Open Sans", arial;
}

input[type="password"].valid {
    background-image: url("/img/pw-eye-open-checkmark.png");
}

input[type="password"],
input[type="text"].visible-password {
    padding-right: 72px !important;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 52px 26px !important;
}

input[type="text"].visible-password {
    background-image: url("/img/pw-eye-closed.png");
}

input[type="text"].visible-password.valid {
    background-image: url("/img/pw-eye-closed-checkmark.png");
}

/* Buttons */

input[type="submit"],
input[type="button"],
button, .button {
    color: #fff;
    font-size: 10.5pt;
    line-height: 14pt;
    text-align: center;
    border-radius: 4px;
    padding: 8px 12px;
    display: inline-block;
    vertical-align: middle;
    /* Hebt seltsames Submit-Button-Rendering auf iPhone/Safari auf */
    -webkit-appearance: none;
}

input[type="submit"].cta,
input[type="button"].cta,
button.cta, .button.cta {
    font-family: "Open Sans Thick";
    text-transform: uppercase;
}

input[type="submit"].big-cta,
input[type="button"].big-cta,
button.big-cta, .button.big-cta {
    font-family: "Open Sans Thick";
    text-transform: uppercase;
    font-size: 15pt;
    line-height: 20pt;
    padding: 26px 18px;
    border-radius: 7px;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover,
a.button:hover {
    cursor: pointer;
    text-decoration: none;
}

input[type="submit"]:active,
input[type="button"]:active,
button:active,
a.button:active {
    transform: translate(2px, 2px);
}

label {
    font-size: 10.5pt;
    font-family: "Open Sans Thick";
    font-weight: normal;
    vertical-align: middle;
}

select {
    vertical-align: middle;
    width: inherit;
    color: inherit;
    font-size: 10.5pt;
    height: 35px;
    padding: 3px 8px;
    border: solid 1px #ccc;
    box-shadow: inset 0 14px 14px -14px #ddd;
    background-color: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: "Open Sans Thick";
    font-weight: normal;
    text-transform: uppercase;
    color: inherit;
}

/* CSS text-transform: uppercase ändert ß zu SS
ß können in span gewrapped werden um das zu verhindern */
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span {
    text-transform: none;
}

h1 {
    font-size: 30pt;
    line-height: 36pt;
    margin-bottom: 40px;
}

h2 {
    font-size: 24pt;
    line-height: 30pt;
    margin-bottom: 30px;
}

h3 {
    font-size: 18pt;
    line-height: 22pt;
    margin-bottom: 20px;
}

h4 {
    font-size: 16pt;
    line-height: 20pt;
    margin-bottom: 10px;
}

h5 {
    font-size: 15pt;
    line-height: 19pt;
    margin-bottom: 10px;
}

@media only screen and (max-width: 640px) {
    h1 {
        font-size: 22pt;
        line-height: 26pt;
    }

    h2 {
        font-size: 20pt;
        line-height: 24pt;
        line-height: 24pt;
    }

    h3 {
        font-size: 16pt;
        line-height: 18pt;
    }

    h4 {
        font-size: 15pt;
        line-height: 17pt;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:checked ~ li.group1 > a,
    header > nav > div.usermenu > ul > input[type="radio"].group2:checked ~ li.group2 > a {
        height: 35px !important;
    }
}

hr {
    clear: both;
}

ul {
    list-style-type: none;
}

ol {
    padding-left: 30px;
    margin: 10px;
}

ul.job-list > li {
    border-bottom: solid 1px #c1c1c1;
    position: relative;
    white-space: nowrap;
    color: #515151;
    font-size: 0;
}

ul.job-list > li:last-child {
    border-bottom: none;
}

ul.job-list > li > a:first-child {
    display: block;
    padding: 14px 18px;
    color: inherit;
}

ul.job-list ul.kinds {
    width: 90px;
    display: inline-block;
    vertical-align: top; /* middle */
}

ul.job-list > li.featured {
    background-color: var(--featured_job_background);
    border-bottom: solid 1px #A5BBCE;
    color: #6e8fb1;
}

ul.job-list > li.featured:before {
    content: "";
    background-image: url("/img/top-job-badge.png");
    width: 35px;
    height: 47px;
    display: block;
    position: absolute;
    top: -6px;
    left: 18px;
}

ul.job-list > li.featured > a:first-child {
    padding-left: 72px;
}

ul.kinds > li {
    font-size: 9pt;
    line-height: 12pt;
    margin: 2px 0;
    padding: 2px 6px;
    text-align: center;
    border-radius: 3px;
    color: #fff;
    /* text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3); */
}

ul.job-list > li div {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin-bottom: 20px;
}

ul.job-list span.title {
    font-size: 11.5pt;
    display: block;
    color: #434343;
    white-space: normal;
    overflow-wrap: break-word;
    padding-right: 30px;
    margin-bottom: 4px;
    font-family: "Open Sans Thick";
    /* ellipsis on second line, works in webkit only */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

ul.job-list span.company {
    font-size: 10pt;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    min-height: 20px;
}

ul.job-list span.company > i.fa-crown {
    color: #FFB71E;
}

ul.job-list span.meta {
    font-size: 9pt;
    position: absolute;
    right: 18px;
    bottom: 8px;
}

ul.job-list li > a:hover {
    cursor: pointer;
    text-decoration: none;
    background-color: var(--job_hover_background);
    border-radius: 3px;
}

ul.job-list li > a > span {
    right: 18px;
    font-size: 14pt;
    position: absolute;
}

ul.job-list li > a > span > i.fa-heart {
    position: relative;
    font-weight: normal;
}

ul.job-list li > a > span > i.fa-heart.active {
    font-weight: 900;
    animation: coinspin 1.4s ease-out;
}

ul.job-list li > a + a {
    font-size: 8pt;
    border-radius: 3px;
    padding: 0 8px;
    border: solid 1px #c1c1c1;
    position: absolute;
    right: 18px;
    bottom: 34px;
    background-color: #fff;
    line-height: 16pt;
    text-transform: uppercase;
    color: #434343;
    font-weight: bold;
}

ul.job-list li > a + a:hover {
    background-color: var(--job_hover_background);
}

ul.job-list li.featured > a + a:hover {
    border: solid 1px #A5BBCE;
    background-color: #fff;
}

ul.kinds > li.jobkind-fulltime {
    background-color: var(--jobkind_fulltime_color);
}

ul.kinds > li.jobkind-parttime {
    background-color: var(--jobkind_parttime_color);
}

ul.kinds > li.jobkind-sideline {
    background-color: var(--jobkind_sideline_color);
}

ul.kinds > li.jobkind-internship {
    background-color: var(--jobkind_internship_color);
}

ul.kinds > li.jobkind-apprenticeship {
    background-color: var(--jobkind_apprenticeship_color);
}

ul.kinds > li.jobkind-furthereducation {
    background-color: var(--jobkind_furthereducation_color);
}

li.social-fb-like {
    background-color: #31507F;
}

li.social-fb-share {
    background-color: #3B5998;
}

li.social-linkedin {
    background-color: #0073B1;
}

li.social-twitter {
    background-color: #55ACEE;
}

li.social-whatsapp {
    background-color: #26D367;
}

li.social-xing {
    background-color: #026466;
}

li.social-mail {
    background-color: #5D5D5D;
}

div.or {
    margin: 10px 0;
}

.dashboard-icon-img{
    max-height: 22px;
    font-size: 16pt;
    vertical-align: middle;
    margin-right: 0;
    width: 40px;
    object-fit: contain;
    text-align: center;
    font-weight: normal;
}

div.or > hr {
    display: inline-block;
    border: solid 1px var(--secondary_color);
    width: 40%;
    vertical-align: middle;
    max-width: calc(50% - 49px);
}

div.or > span {
    display: inline-block;
    width: 20%;
    vertical-align: middle;
    text-align: center;
    font-family: "Open Sans Thick";
    color: var(--secondary_color);
    font-size: 10.5pt;
    min-width: 44px;
}

div#support-buttons {
    position: fixed;
    right: 0;
    bottom: 90px;
    z-index: 2;
    overflow: hidden;
    padding-bottom: 6px;
    padding-left: 6px;
}

div#support-buttons > a {
    display: block;
    background-color: #fff;
    border-radius: 8px 0 0 8px;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
    width: 70px;
    height: 60px;
    padding: 12px;
    margin-top: 20px;
    text-align: center;
    margin-left: 10px;
    transition: width 0.1s, margin-left 0.1s;
}

div#support-buttons > a > i {
    font-size: 30pt;
    line-height: 36px;
    color: #3d5a9a;
}

div#support-buttons > a > i.fa-linkedin {
    color: #2867B2;
}

div#support-buttons > a:hover {
    width: 80px;
    margin-left: 0;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    div#support-buttons {
        display: none;
    }
}

i[class^="fa"] > label {
    font-size: 0;
}

/* UNIQUE TAGS */

body {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 25px;
    background-size: 100% auto;
    color: #434343;
    font-family: "Open Sans", arial;
    min-width: 320px; /* 360px; 420px */
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 10.5pt;
    line-height: 18pt;
    transform-origin: 0% 0%;
    padding-top: 35px;
}

footer {
    opacity: 0.0;
    transition: opacity 0.2s;
}

/* Header - Navigation */

/* General structure */

header > nav {
    font-size: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .4);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
}

header > nav > div {
    display: inline-block;
    vertical-align: top;
}

header > nav > div.mainmenu {
    font-size: 12pt;
}

@media only screen and (min-width: 1025px) {
    header > nav > div.mainmenu {
        width: calc(100% - 520px);
        height: 100%;
    }
}

/* alert indicator within menu option */

header > nav > div.usermenu > ul > li > a > span.label > span {
    font-family: "Open Sans", arial;
    font-size: 10pt;
    background-color: #b50000;
    color: #fff;
    padding: 0 3px;
    line-height: 18px;
    border-radius: 30%;
    min-width: 18px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin-left: 6px;
}

@media only screen and (min-width: 1025px) {
    /* General structure */
    header > nav {
        background-color: var(--nav_background);
        background: linear-gradient(to bottom, var(--nav_gradient_start) 0%, var(--nav_gradient_end) 100%);
    }

    header > nav > div.mainmenu {
        /* width: 70%; */
        /* max-width: calc(100% - 440px); */
        font-size: 0;
    }

    header > nav > div.usermenu {
        float: right;
    }

    /* Icons */
    header > nav > div > a > i.fa-comment-alt-exclamation,
    header > nav > div > a > i.fa-envelope {
        position: relative;
        top: -4px;
        left: -46px;
        font-size: 18pt;
        width: 44px;
        line-height: 44px;
        height: 0;
        text-align: center;
        color: #fff;
        display: block;
    }

    header > nav > div > a + a > i.fa-comment-alt-exclamation {
        left: -84px;
    }

    header > nav > div > a + a > i.fa-comment-alt-exclamation:before {
        position: relative;
        top: 2px;
    }

    header > nav > div > a > i.fa-comment-alt-exclamation > span,
    header > nav > div > a > i.fa-envelope > span {
        font-family: "Open Sans", arial;
        font-size: 10pt;
        background-color: #b50000;
        color: #fff;
        padding: 0 3px;
        line-height: 18px;
        border-radius: 30%;
        min-width: 18px;
        display: inline-block;
        position: absolute;
        top: 6px;
        right: 2px;
    }

    /* Main menu list style */
    header > nav > div.mainmenu > label,
    header > nav > div.usermenu > label > i {
        display: none;
    }

    header > nav > div.mainmenu > ul > li {
        display: inline-block;
        font-size: 10pt;
        position: relative;
        white-space: nowrap;
    }

    header > nav > div.mainmenu > ul > li > a {
        color: #fff;
        text-transform: uppercase;
        font-family: "Open Sans Thick";
        padding: 4px 12px;
        display: block;
    }

    header > nav > div.mainmenu > ul > li > a:hover {
        text-decoration: none;
        background-color: #466594;
    }

    header > nav > div.mainmenu > ul > li > a > i {
        margin-right: 6px;
    }

    header > nav > div.mainmenu li.mobile-only {
        display: none;
    }

    /* Mainmenu submenu */
    header > nav > div.mainmenu > ul > li > a > label {
        margin-left: 8px;
    }

    header > nav > div.mainmenu > ul > li > ul {
        display: block;
        position: absolute;
        z-index: 1;
        width: 100%;
    }

    header > nav > div.mainmenu > ul > li > ul > li,
    header > nav > div.usermenu > ul > li {
        background-color: var(--dropdown_background_color);
        font-size: 10.5pt;
        white-space: nowrap;
    }

    header > nav > div.mainmenu > ul > li.lang-menu{
        float: right;
    }

    header > nav > div.mainmenu > ul > li > ul > li > a,
    header > nav > div.usermenu > ul > li > a {
        height: 0;
        display: block;
        color: #434343;
        line-height: 34px;
        display: block;
        overflow: hidden;
        transition: height 0.3s ease-in; /* LELE */
    }

    header > nav > div.mainmenu > ul > li > ul > li > a {
        padding: 0 12px;
    }

    header > nav > div.mainmenu > ul > li:hover > ul > li > a {
        height: 34px;
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.mainmenu > ul > li:hover > ul > li:last-child > a {
        border-bottom: none;
    }

    header > nav > div.mainmenu > ul > li > ul > li > a:hover,
    header > nav > div.usermenu > ul > li > a:hover,
    header > nav > div.usermenu > ul > li.selected > a {
        text-decoration: none;
        background-color: #fff;
    }

    header > nav > div.mainmenu > ul > li > ul > li > a[href="auftrag"] {
        background-color: var(--primary_color);
        font-weight: bold;
        color: #fff;
    }

    /* Dashboard menu list style */
    header > nav > div.usermenu {
        position: relative;
        text-align: right;
    }

    header > nav > div.usermenu > ul {
        position: absolute;
        z-index: 10;
        top: 35px;
        right: 0;
        width: 50%;
        text-align: left;
        /* transition: right 0.3s; */
        width: 100%;
    }

    header > nav > div.usermenu > ul > li > a > i {
        width: 40px;
        text-align: center;
    }

    header > nav > div.usermenu > ul > li > a > span.label {
        width: calc(100% - 50px);
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

    header > nav > div.usermenu > ul > li > a > span.new {
        display: none;
    }

    /* Dashboard menu buttons */
    header > nav > div.usermenu > a[href="jobs"],
    header > nav > div.usermenu > ul > label,
    header > nav > div.usermenu > label:before {
        display: none;
    }

    header > nav > div.usermenu > label {
        font-size: 0;
        width: 100%;
        line-height: 0;
        margin-right: 0;
        min-width: 260px;
        max-width: 280px;
    }

    header > nav > div.usermenu > label > a {
        display: inline-block;
        line-height: 35px;
        font-size: 10pt;
        color: #fff;
        padding: 0 14px;
        /* width: 50%; */
        width: 100%;
        text-align: center;
        border-bottom: 0;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    header > nav > div.usermenu > label > a + a {
        background-color: #c1c1c1;
    }

    header > nav > div.usermenu > label > a:hover {
        text-decoration: none;
        /* background-color: #a4c753; */
    }

    header > nav > div.usermenu > label > a + a:hover {
        background-color: #b4b4b4;
    }

    header > nav > div.usermenu > label > a > i {
        margin-right: 8px;
    }

    header > nav > div.usermenu > label > a > img {
        vertical-align: middle;
        margin-right: 8px;
    }

    header > nav > div.usermenu > label > a > img[src^="media/companies"] {
        border-radius: 3px;
        background-color: #fff;
        border: solid 1px #fff;
    }

    header > nav > div.usermenu > label > a > img[src^="media/avatars"] {
        border-radius: 50%;
        background-color: #fff;
        border: solid 1px #fff;
    }

    header > nav > div.usermenu > label > a > i.fas {
        margin-left: 8px;
        animation: vertical-wobble 0.4s;
    }

    /* Dashboard menu toggling */
    header > nav > div.usermenu > input[type="radio"]:checked ~ ul > li > a {
        height: 34px;
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.usermenu > input[type="radio"]:checked ~ ul > li:last-child > a {
        border-bottom: none;
    }

    header > nav > div.usermenu > input[type="radio"]:not(:checked) ~ ul > li > a,
    header > nav > div.usermenu > input[type="radio"]:not(:checked) ~ ul > label {
        height: 0 !important;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:not(:checked) ~ li.group1 > a,
    header > nav > div.usermenu > ul > input[type="radio"].group2:not(:checked) ~ li.group2 > a {
        height: 0;
        /* transition: height 0.3s; */
        /* transition: none; */
        border-bottom: none;
    }

    header > nav > div.usermenu > ul > label:before {
        display: none;
    }

    header > nav > div.usermenu > ul > label {
        text-transform: uppercase;
        font-size: 13pt;
        line-height: 45px;
        font-family: "Open Sans Thick";
        background-color: #efefef;
        display: block;
        padding: 0 25px;
        margin: 0;
        transition: height 0.3s ease-in; /* LELE */
        height: 46px;
        overflow: hidden;
    }

    header > nav > div.usermenu > ul > input[type="radio"] + label:after {
        font-family: "Font Awesome 5 Pro";
        font-weight: bold;
        margin-left: 8px;
    }

    header > nav > div.usermenu > ul > input[type="radio"]:checked + label:after {
        content: "\f106";
    }

    /* arrow down */
    header > nav > div.usermenu > ul > input[type="radio"]:not(:checked) + label:after {
        content: "\f107";
    }

    /* arrow up */
    header > nav > div.usermenu > ul > input[type="radio"] + label:hover {
        background-color: #fff;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:checked + label {
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1 + label {
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group2 + label {
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.usermenu > input[type="radio"]:not(:checked) ~ ul > input[type="radio"] + label {
        border-top: none;
        border-bottom: none;
    }
}

body.minimal.in-iframe {
    padding-top: 0 !important;
}

@media only screen and (max-width: 640px) {
    body {
        padding-top: 5vh !important;
    }
}

@media only screen and (min-width: 641px) and (max-width: 1024px) {
    body {
        padding-top: 15vh !important;
    }
}

@media only screen and (max-width: 1024px) {
    /* General structure */
    .mobile-text-justify {
        text-align: justify !important;
    }

    header {
        position: fixed !important;
        z-index: 8;
        width: 100%;
        top: 0;
    }

    header > nav {
        background: none;
        background-color: var(--light_grey2);
        position: relative;
        z-index: 2;
        height: 50px;
    }

    header > nav > div {
        height: 0;
    }

    header > nav > div.mainmenu {
        width: calc(100% - 200px);
    }

    header > nav > div.usermenu {
        width: 200px;
        text-align: right;
    }

    header > nav > div.mainmenu > ul > li > a > label {
        font-size: inherit;
        width: 32px;
        height: 32px;
        display: inline-block;
        text-align: center;
    }

    header > nav > div.mainmenu > ul > li > a > label > i.fa-angle-down {
        vertical-align: top;
        line-height: 32px;
    }

    header > nav > div.mainmenu > ul > li > ul > li {
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease-out;
    }

    header > nav > div.mainmenu > ul > li > input[type="checkbox"]:checked ~ ul > li {
        height: 34px;
    }

    header > nav > div.mainmenu > ul > li > input[type="checkbox"]:checked + a > label > i:before {
        content: "\f106";
    }

    header > nav > div.usermenu > label > a {
        display: none;
    }

    /* Icons */
    header > nav > div > a > i.fa-comment-alt-exclamation,
    header > nav > div > a > i.fa-envelope {
        position: relative;
    }

    header > nav > div > a > i.fa-comment-alt-exclamation > span,
    header > nav > div > a > i.fa-envelope > span {
        font-family: "Open Sans", arial;
        font-size: 10pt;
        background-color: #b50000;
        color: #fff;
        padding: 0 3px;
        line-height: 18px;
        border-radius: 30%;
        min-width: 18px;
        display: inline-block;
        position: absolute;
        top: 4px;
        right: -2px;
    }

    header > nav > div > a + a > i.fa-comment-alt-exclamation {
        display: none;
    }

    header > nav > div > a > i.fas,
    header > nav > div > a > i.far,
    header > nav > div > label > i.fas,
    header > nav > div > label > i.far {
        line-height: 50px;
        text-align: center;
        color: var(--secondary_color);
    }

    header > nav > div.mainmenu > label > i {
        font-size: 32pt;
        width: 54px;
    }

    header > nav > div.usermenu > a > i,
    header > nav > div.usermenu > label > i {
        font-size: 24pt;
        width: 44px;
    }

    header > nav > div.usermenu > label {
        vertical-align: top;
    }

    header > nav > div > label:before {
        display: none !important;
    }

    /* Menu toggling */
    header > nav > div > label {
        height: 50px;
    }

    header > nav > div > ul {
        display: table;
        transition: transform 0.3s ease-out;
        font-size: 13pt;
        text-align: left;
        white-space: nowrap;
        font-family: "Open Sans Thick";
    }

    header > nav > div > ul:after {
        content: "";
        height: 2000px;
        display: block;
        background-color: var(--light_grey2);
    }

    header > nav > div.mainmenu > ul {
        transform: translateX(-120%);
    }

    header > nav > div.usermenu > ul {
        transform: translateX(120%);
        float: right;
    }

    header > nav > div > input[type="radio"]:checked ~ ul {
        transform: translateX(0%);
    }

    /* Menu list style */
    header > nav ul > li {
        background-color: var(--light_grey2);
    }

    header > nav ul > li > a {
        color: #434343;
        display: block;
        padding: 2px 30px 2px 10px;
        line-height: 45px;
        overflow: hidden;
    }

    header > nav ul > li > a > span.new {
        display: none;
    }

    header > nav ul > li > a:hover,
    header > nav ul > li.selected > a {
        text-decoration: none;
        background-color: #fff;
        width: calc(100% + 10px);
        border: solid 2px #f2f2f2;
        padding-top: 0;
        padding-bottom: 0;
    }

    header > nav > div > input[type="radio"]:not(:checked) ~ ul > li.selected > a {
        border: none;
    }

    header > nav > div.mainmenu > ul > li > a:hover,
    header > nav > div.mainmenu > ul > li.selected > a {
        border-radius: 0 8px 8px 0;
        border-left: none;
        padding-right: 28px;
    }

    header > nav > div.usermenu > ul > li > a:hover,
    header > nav > div.usermenu > ul > li.selected > a {
        position: relative;
        left: -10px;
        border-radius: 8px 0 0 8px;
        border-right: none;
        padding-left: 18px;
        padding-right: 20px;
    }

    header > nav > div.usermenu > ul > li > a > span.new {
        display: none;
    }

    header > nav ul > li > a > i {
        width: 50px;
        text-align: center;
        font-size: 16pt;
        vertical-align: middle;
    }

    header > nav ul > li > ul {
        padding-left: 50px;
        font-size: 12pt;
    }

    header > nav ul > li > ul > li > a {
        line-height: 30px;
    }

    header > nav ul > li > ul > li > a:hover {
        border: none;
        background-color: transparent;
        padding: 2px 30px 2px 10px;
        text-decoration: underline;
    }

    /* Dashboard menu separators */
    header > nav > div.usermenu > ul > input[type="radio"] ~ li.group1 > a,
    header > nav > div.usermenu > ul > input[type="radio"] ~ li.group2 > a {
        height: 0;
        padding-top: 0;
        padding-bottom: 0;
        transition: height 0.3s;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:checked ~ li.group1 > a,
    header > nav > div.usermenu > ul > input[type="radio"].group2:checked ~ li.group2 > a {
        height: 49px;
        height: 49px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:not(:checked) ~ li.group1 > a,
    header > nav > div.usermenu > ul > input[type="radio"].group2:not(:checked) ~ li.group2 > a {
        border: none;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:checked ~ li.group1 > a:hover,
    header > nav > div.usermenu > ul > input[type="radio"].group1:checked ~ li.group1.selected > a,
    header > nav > div.usermenu > ul > input[type="radio"].group2:checked ~ li.group2 > a:hover,
    header > nav > div.usermenu > ul > input[type="radio"].group2:checked ~ li.group2.selected > a {
        padding-top: 0;
        padding-bottom: 0;
    }

    header > nav > div.usermenu > ul > label:before {
        display: none;
    }

    header > nav > div.usermenu > ul > label {
        text-transform: uppercase;
        font-size: 13pt;
        line-height: 45px;
        font-family: "Open Sans Thick";
        background-color: #efefef;
        display: block;
        padding: 0 25px;
        margin: 0;
    }

    header > nav > div.usermenu > ul > input[type="radio"] + label:after {
        font-family: "Font Awesome 5 Pro";
        font-weight: bold;
        margin-left: 8px;
    }

    header > nav > div.usermenu > ul > input[type="radio"]:checked + label:after {
        content: "\f106";
    }

    /* arrow down */
    header > nav > div.usermenu > ul > input[type="radio"]:not(:checked) + label:after {
        content: "\f107";
    }

    /* arrow up */
    /*
    header>nav>div.usermenu>ul>input[type="radio"] + label:hover:after
        {content: "\f107";}

    header>nav>div.usermenu>ul>input[type="radio"]:checked + label:hover:after
        {content: "\f106";}
    */
    header > nav > div.usermenu > ul > input[type="radio"] + label:hover {
        background-color: #fff;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group1:checked + label {
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.usermenu > ul > input[type="radio"].group2 + label {
        border-top: solid 1px #c1c1c1;
        border-bottom: solid 1px #c1c1c1;
    }

    header > nav > div.mainmenu > ul > li:first-of-type,
    header > nav > div.usermenu > ul > label:first-of-type {
        box-shadow: inset 0px 4px 2px -3px rgba(0, 0, 0, .4);
    }
}

/* Nav options responsive content */

header > nav > div.mainmenu > ul > li > a > span:last-of-type {
    display: none;
}

@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    header > nav > div.mainmenu > ul > li > a > span:first-of-type {
        display: none;
    }

    header > nav > div.mainmenu > ul > li > a > span:last-of-type {
        display: inline-block;
    }
}

/* Login */

@media only screen and (min-width: 1025px) {
    header > nav > div.usermenu > div.floating-login > a {
        display: none;
    }

    /* Login buttons */
    header > nav > div.usermenu > div.floating-login > div {
        width: 50%;
        min-width: 260px;
        display: inline-block;
        position: relative;
    }

    header > nav > div.usermenu > div.floating-login > div > a {
        display: block;
        line-height: 35px;
        text-transform: uppercase;
        font-family: "Open Sans Thick";
        font-size: 10pt;
        color: #fff;
        text-align: center;
        background-color: var(--floating_login_background);
        white-space: nowrap;
        padding: 0 20px;
    }

    header > nav > div.usermenu > div.floating-login > div > a > i {
        margin-right: 8px;
    }

    header > nav > div.usermenu > div.floating-login > div + div > a {
        background-color: var(--floating_login2_background);
    }

    header > nav > div.usermenu > div.floating-login > div > a:hover {
        text-decoration: none;
        background-color: var(--floating_login_background_hover);
    }

    header > nav > div.usermenu > div.floating-login > div + div > a:hover {
        background-color: var(--floating_login2_background_hover);
    }

    /* Login form */
    header > nav > div.usermenu > div.floating-login > div > a {
        position: relative;
        z-index: 3;
    }

    header > nav > div.usermenu > div.floating-login > div > form {
        position: absolute;
        z-index: 2;
        width: 100%;
        background-color: var(--light_grey2);
        text-align: center;
        font-size: 10.5pt;
        padding: 20px;
        bottom: 0;
        transition: bottom 0.3s;
    }

    header > nav > div.usermenu > div.floating-login > div > form > input {
        width: 100%;
        margin-bottom: 8px;
    }

    header > nav > div.usermenu > div.floating-login > div > form > a {
        display: block;
        text-align: right;
    }

    /* 3rd party login buttons */
    header > nav > div.usermenu > div.floating-login > div > form a.button {
        text-align: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        padding-left: 20px;
        width: 100%;
    }

    header > nav > div.usermenu > div.floating-login > div > form a.button > i {
        margin-right: 8px;
    }

    header > nav > div.usermenu > div.floating-login > div > form a.button:not(:first-of-type) {
        margin-top: 8px;
    }
}

@media only screen and (max-width: 1024px) {
    header > nav > div.usermenu > div.floating-login > a:first-of-type {
        font-size: 24pt;
        display: inline-block;
        padding: 8px 0 0;
    }

    header > nav > div.usermenu > div.floating-login > a:last-of-type {
        display: block;
        width: 100px;
        height: 50px;
        font-size: 20pt;
        text-align: center;
        line-height: 15pt;
        font-family: "Open Sans Thick";
        padding: 8px 0 0;
        text-decoration: none;
        float: right;
    }

    header > nav > div.usermenu > div.floating-login > a > span {
        display: block;
        letter-spacing: 6px;
        padding-left: 6px;
    }

    header > nav > div.usermenu > div.floating-login > div {
        display: none;
    }
}

/* Header - Logo */

header > div.logo {
    width: 1200px;
    margin: 80px auto;
}

header > div.logo > span {
    position: relative;
    display: inline-block;
    background-color: #fff;
    border-radius: 0 8px 8px 0;
    padding-right: 60px;
}

header > div.logo > span:before {
    content: "";
    position: absolute;
    right: 100%;
    width: 960px;
    height: 100%;
    background-color: #fff;
}

header > div.logo > span > a:nth-child(1) img {
    max-height: 100px;
    max-width: 100%;
    margin: 20px 0;
    display: block;
    object-fit: contain;
}

@media only screen and (max-width: 1200px) {
    header > div.logo {
        width: 100%;
    }

    header > div.logo > span {
        margin: 0 36px;
    }
}

@media only screen and (max-width: 1024px) {
    header > div.logo {
        height: 0;
        overflow: hidden;
        margin: 0;
    }

    header > div.logo span {
        position: static;
    }

    /* Börsen Logo */
    header > div.logo span > a:nth-child(1) img {
        position: absolute !important;
        top: 50% !important;
        left: 62px !important;
        margin: 0 !important;
        z-index: 2 !important;
        max-width: calc(100% - 205px) !important;
        max-height: 42px !important;
        transform: translateY(-50%) !important;
    }

    /* Jobsuche-Regional Logo */
    header > div.logo span > a:nth-child(2):last-child {
        display: none;
    }
}

/* Form background query frame */

body > iframe[name="bg_query"] {
    opacity: 0.0;
    width: 1px;
    height: 1px;
    position: fixed;
    top: -100px;
    left: -100px;
}

body > iframe[name="bg_query"].debug-view {
    width: 400px;
    height: 300px;
    opacity: 1.0;
    top: auto;
    left: 20px;
    bottom: 20px;
    border: solid 2px #434343;
    background-color: #ddd;
}

/* Main */

main {
    width: 1200px;
    margin: 0 auto 0;
    padding: 40px 4% 40px;
    border-radius: 8px;
    background-color: #fff;
    display: block;
    /*
    border: solid 1px rgb(248, 248, 248);
    border-bottom: 3px solid #ddd;
    */
    /* box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4); */
}

@media only screen and (max-width: 1200px) {
    main {
        width: 100%;
        border-radius: 0;
    }
}

/* Footer */

footer.fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer > small {
    text-align: center;
    display: block;
    padding: 4px;
    font-size: 10pt;
    line-height: 18pt;
    background-color: rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

footer > small > span {
    white-space: nowrap;
}

@media only screen and (max-width: 640px) {
    footer > small {
        font-size: 8pt;
        line-height: 12pt;
    }
}

@media only screen and (max-width: 480px) {
    footer > small {
        font-size: 6.5pt;
        font-family: "Open Sans Thick";
    }
}

/* Responsive content */

.responsive-content > span {
    text-transform: inherit;
}

@media only screen and (min-width: 641px) {
    .responsive-content > span:last-of-type,
    .responsive-content > img:last-of-type {
        display: none;
    }
}

@media only screen and (max-width: 640px) {
    .responsive-content > span:first-of-type,
    .responsive-content > img:first-of-type {
        display: none;
    }
}

/* Kleiner Text beim AGB akzeptieren */

p.legal-sub-text {
    font-size: 10pt;
    line-height: 14pt;
}

/* Über Google Tag Manager eingebundener Live-Chat */

body > div.userlike {
    z-index: 2 !important;
}

body > div.userlike #userlike-tab {
    right: 0 !important;
    border-radius: 8px 0 0 8px !important;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
    width: 70px !important;
    max-width: none !important;
    padding-left: 3px !important;
    transition: width 0.1s, padding-left 0.1s, bottom 0.5s ease-in-out !important;
}

body > div.userlike #userlike-tab:hover {
    width: 80px !important;
    padding-left: 8px !important;
    cursor: pointer !important;
}

/* Push-Subscription Guide */

div.push-guide {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 100;
}

div.push-guide > i.fa-times {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: #ccc;
}

div.push-guide > div {
    position: absolute;
    background-color: #fff;
    padding: 25px;
    font-size: 10pt;
    width: 100%;
}

div.push-guide > div > strong {
    display: block;
    margin-bottom: 4px;
    white-space: nowrap;
}

div.push-guide > div > p {
    line-height: 12pt;
}

div.push-guide > div > a {
    float: right;
}

div.push-guide > div > hr {
    height: 1px;
    background-color: #efefef;
    margin: 8px 0;
}

div.push-guide > div > img {
    width: 32px;
    vertical-align: middle;
}

div.push-guide > div > img + p {
    padding-left: 8px;
    width: calc(100% - 32px);
    vertical-align: middle;
    display: inline-block;
}

div.push-guide.chrome > div,
div.push-guide.firefox > div {
    background-repeat: no-repeat;
    background-image: url('/img/push-guide-arrow-left-large.png');
}

div.push-guide.chrome > div {
    padding-left: 580px;
    background-position: 290px 130px;
    background-size: 260px;
    padding-right: 40%;
}

div.push-guide.firefox > div {
    padding-left: 780px;
    background-position: 420px 120px;
    background-size: 320px;
    padding-right: 30%;
}

div.push-guide.chrome.mac > div,
div.push-guide.firefox.mac > div {
    background-image: url('/img/push-guide-arrow-left.png');
    background-size: auto;
}

div.push-guide.chrome.mac > div {
    background-position: 400px 100px;
}

div.push-guide.firefox.mac > div {
    background-position: 600px 100px;
}

@media only screen and (max-width: 1680px) {
    div.push-guide.chrome > div {
        padding-right: 30%;
    }
}

@media only screen and (max-width: 1430px) {
    div.push-guide.chrome > div {
        padding-right: 20%;
    }
}

@media only screen and (max-width: 1240px) {
    div.push-guide.chrome > div {
        padding-right: 10%;
    }
}

@media only screen and (max-width: 1120px) {
    div.push-guide.chrome > div {
        padding-right: 25px;
    }
}

@media only screen and (max-width: 1760px) {
    div.push-guide.firefox > div {
        padding-right: 20%;
    }
}

@media only screen and (max-width: 1540px) {
    div.push-guide.firefox > div {
        padding-right: 10%;
    }
}

@media only screen and (max-width: 1370px) {
    div.push-guide.firefox > div {
        padding-right: 25px;
    }
}

@media only screen and (max-width: 1090px) {
    div.push-guide.firefox {
        display: none;
    }
}

div.push-guide.vivaldi > div {
    padding-right: 580px;
}

div.push-guide.edge > div {
    bottom: 54px;
    left: 50%;
    transform: translateX(calc(-50% + 8px));
    width: 960px;
    max-width: calc(100% - 26px);
    border: solid 2px #0078d7;
}

@media only screen and (max-width: 770px) {
    div.push-guide.edge > div {
        bottom: 60px;
    }
}

@media only screen and (max-width: 585px) {
    div.push-guide.edge > div {
        bottom: 78px;
    }
}

@media only screen and (max-width: 552px) {
    div.push-guide.edge > div {
        bottom: 128px;
    }
}

@media only screen and (max-width: 527px) {
    div.push-guide.edge > div {
        bottom: 134px;
    }
}

@media only screen and (max-width: 870px) {
    div.push-guide:not(.edge) {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    div.push-guide {
        display: none;
    }
}

div.push-guide.new-edge > div {
    background-repeat: no-repeat;
    background-image: url('/img/push-guide-arrow-right-large.png');
}

div.push-guide.new-edge > div {
    padding-left: 580px;
    padding-right: 40%;
    background-position: 1300px 130px;
    background-size: 260px;
}

@media only screen and (max-width: 1540px) {
    div.push-guide.new-edge > div {
        padding-right: 40%;
        padding-left: 25px;
        background-image: none;
    }
}

/*
div.push-guide.other>div
    {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    }
*/

/* 3rd party login buttons missing their auth URLs */

a.login-waiting-for-auth-url {
    visibility: hidden;
}

/* provider colors */

div.floating-login > div > form > a.button[data-provider="facebook"],
div.login-3rdparty > a.button[data-provider="facebook"] {
    background-color: #2e5287;
    border-bottom-color: #133a6b;
}

div.floating-login > div > form > a.button[data-provider="google"],
div.login-3rdparty > a.button[data-provider="google"] {
    background-color: #4086f4;
    border-bottom-color: #005df8;
}

div.floating-login > div > form > a.button[data-provider="linkedin"],
div.login-3rdparty > a.button[data-provider="linkedin"] {
    background-color: #0075b4;
    border-bottom-color: #005383;
}

div.floating-login > div > form > a.button[data-provider="xing"],
div.login-3rdparty > a.button[data-provider="xing"] {
    background-color: #006567;
    border-bottom-color: #003637;
}

/* Responsive banners */

@media only screen and (max-width: 640px) {
    img.banner.desktop,
    iframe.banner.desktop {
        display: none !important;
    }

    img.banner.tablet,
    iframe.banner.tablet {
        display: none !important;
    }
}

@media only screen and (min-width: 641px) and (max-width: 1440px) {
    img.banner.desktop,
    iframe.banner.desktop {
        display: none !important;
    }

    img.banner.phone,
    iframe.banner.phone {
        display: none !important;
    }
}

@media only screen and (min-width: 1441px) {
    img.banner.phone,
    iframe.banner.phone {
        display: none !important;
    }

    img.banner.tablet,
    iframe.banner.tablet {
        display: none !important;
    }
}

.contact-firstname {
    display: none;
}