/* General */
:root {
    --companyPrimaryColor: #C21B17;
    --companyHoverColor: #900507;
    --companyTextColor: #575757;
    --lightGray: #F1F1F1;
    --white: #FFFFFF;
    --black: #000000;
    --rootFontSize: 18px;
    --headerHeight: 360px;
    --footerHeight: 105px;
    --siteWidth: 1080px;
    --contentSidePadding: 64px;
    --sectionLargeSpaceTop: 100px;
    --sectionLargeSpaceBottom: 124px;
}

::selection {
    background: var(--companyPrimaryColor);
    color: var(--white);
}

::-moz-selection {
    background: var(--companyPrimaryColor);
    color: var(--white);
}

@media screen and (max-width: 1440px) {
    :root {
        --rootFontSize: 16px;
        --footerHeight: 92px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --contentSidePadding: 24px;
        --sectionLargeSpaceTop: 60px;
        --sectionLargeSpaceBottom: 84px;
    }
}


*, :after, :before {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: var(--white);
    max-width: 100%;
    font-size: var(--rootFontSize);
    text-size-adjust: 100%;
}

body {
    max-width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--companyTextColor);
    text-size-adjust: 100%;
    margin: 0;
}

section, div, header, footer {
    box-sizing: border-box;
}

#wrapper {
    overflow: hidden;
    max-width: var(--siteWidth);
    width: 100%;
    margin: 0 auto;
}

a {
    color: var(--companyPrimaryColor);
    transition: 0.25s ease-in-out;
    text-decoration: none;
}

a:hover {
    color: var(--companyHoverColor);
}

.button, button:not(#ot-sdk-btn) {
    color: var(--white);
    border-radius: 5em;
    text-transform: uppercase;
    background: var(--companyPrimaryColor);
    border: none;
    position: relative;
    padding: .6rem 1.5rem;
    box-shadow: none;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
}

.button:focus,
.button:hover,
button:not(#ot-sdk-btn):focus,
button:not(#ot-sdk-btn):hover {
    background: var(--companyHoverColor);
    color: var(--white);
}

.contentSidePadding {
    padding-left: var(--contentSidePadding);
    padding-right: var(--contentSidePadding);
}

.flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.flexColumn {
    flex-direction: column;
}

.flexEqual > * {
    flex: 1;
}

.listing ul {
    margin: 0 0 0 1em;
    padding: 0;
    list-style: none;
}

.listing ul li {
    margin-bottom: 0.85rem;
}

.listing ul li:last-child {
    margin-bottom: 0;
}

.listing ul > li:before {
    content: "•";
    margin-left: -1em;
    display: block;
    float: left;
}

/* Typography */
h1, h2, h3, h1 b, h2 b, h3 b {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

h1, h1:first-child, h1:last-child {
    font-size: 2.35rem;
    line-height: 2.75rem;
    color: var(--companyPrimaryColor);
    margin-top: 0;
    margin-bottom: 0;
}

h2, h2:first-child, h2:last-child {
    font-size: 2rem;
    line-height: 2.35rem;
    margin-top: 0;
    margin-bottom: 30px;
}

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

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

/* Header */
#header {
    display:flex;
    position: relative;
    z-index: 998;
    background: var(--companyPrimaryColor);
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: var(--headerHeight);
    justify-content: space-between;
    row-gap: 30px;
    column-gap: 100px;
}

.fixed #header {
    position: fixed;
    width: 100%;
    max-width: var(--siteWidth);
    min-height: 160px;
    max-height: 160px;
    padding-top: 30px;
    padding-bottom: 30px;
    row-gap: 40px;
    column-gap: 20px;
}

#stickytitle span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#stickytitle{
    display:none;
    color: var(--white);
    width: 100%;
}

.fixed #stickytitle {
    display:block;
}

#header #right {
    display: flex;
    align-items: flex-end;
}

#header #left {
    display: flex;
    align-items: center;
    width: 100%;
}

.fixed #header #left {
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#logo {
    display: flex;
}

#logo svg {
    width: 160px;
    height: auto;
}

.fixed #logo svg {
    width: auto;
    height: 100px;
}

@media screen and (min-width: 1401px) {
    .fixed #stickytitle {
        font-size: 0.85rem;
        line-height: 1rem;
    }
}

@media screen and (max-width: 1100px) {
    #header {
        flex-direction: column;
        padding-top: 86px;
        padding-bottom: 40px;
    }
    #header #slogan {
        gap: 20px;
    }
    #header #right {
        justify-content: flex-end;
    }
    #header #logo svg {
        width: 130px;
    }
    .fixed #header {
        flex-direction: row;
    }
    .fixed #logo {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #header #logo svg {
        width: 80px;
    }
    .fixed #header {
        min-height: 60px;
        max-height: 60px;
        padding-left: 80px;
        padding-top: 15px;
        padding-bottom: 15px;
        align-items: flex-start;
    }
    .fixed #logo svg {
        height: 60px;
    }
    .fixed #stickytitle {
        display: none;
    }
}

/* Navigation */
#navigation {
    overflow: hidden;
    display: none;
}

#navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#navigation ul li {
    display: inline-block;
}

#navigation ul li a {
    margin-right: 15px;
    color: var(--white);
    font-weight: 400;
}

#navigation ul li.active a {
    font-weight: 500;
}

#navigation .slicknav_menu {
    display: none;
}

@media screen and (min-width: 1401px) {
    #navigation ul li a {
        font-size: 0.85rem;
        line-height: 1rem;
    }
}

@media screen and (min-width:768px) and (max-width:850px) {
    #navigation ul li a {
        font-size: 0.85rem;
        line-height: 1rem;
    }
}

@media screen and (max-width: 767px) {
    #navigation {
        overflow: hidden;
        position: static;
        top: auto;
        left: auto;
        padding-top: 0;
        display: block !important;
    }

    #navigation ul.menu {
        display: none;
    }

    #navigation .slicknav_menu {
        display: block;
        z-index: 1099;
        position: fixed;
        top: 60px;
        left: 0;
        background: var(--white);
        width: 100%;
    }

    #navigation .slicknav_menu,
    #navigation .slicknav_menu * {
        box-sizing: border-box;
    }

    #navigation .slicknav_menu ul li.active a {
        color: var(--companyTextColor) !important;
    }

    #navigation .slicknav_btn,
    #navigation .slicknav_nav .slicknav_item {
        cursor: pointer;
    }

    #navigation .slicknav_btn {
        position: fixed;
        top: 15px;
        left: 15px;
        display: block;
        vertical-align: middle;
        padding: .438em .625em;
        line-height: 1.125em;
    }

    .fixed #navigation .slicknav_btn {
        display: block !important;
        top: 12px;
    }

    #navigation .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
        margin-top: 6px;
    }

    #navigation .slicknav_menu .slicknav_icon:before {
        background: 0 0;
        width: 1.125em;
        height: .875em;
        display: block;
        content: "";
        position: absolute;
    }

    #navigation .slicknav_menu .slicknav_no-text {
        margin: 0;
    }

    #navigation .slicknav_menu .slicknav_icon-bar {
        display: block;
        width: 1.85em;
        height: 4px;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    #navigation .slicknav_menu:after,
    #navigation .slicknav_menu:before {
        content: " ";
        display: table;
    }

    #navigation .slicknav_menu:after {
        clear: both;
    }

    #navigation .slicknav_nav li,
    #navigation .slicknav_nav ul {
        display: block;
    }

    #navigation .slicknav_nav li {
        float: left;
        display: block;
        width: 100%;
        margin: 0;
    }

    #navigation .slicknav_nav .slicknav_arrow {
        font-size: .8em;
        margin: 0 0 0 .4em;
    }

    #navigation .slicknav_nav .slicknav_item a {
        display: inline;
    }

    #navigation .slicknav_nav .slicknav_row,
    #navigation .slicknav_nav a {
        display: block;
    }

    #navigation .slicknav_nav .slicknav_parent-link a {
        display: inline;
    }

    #navigation .slicknav_nav,
    #navigation .slicknav_nav ul {
        list-style: none;
        overflow: hidden;
        padding: 0;
    }

    #navigation .slicknav_menu .slicknav_icon-bar {
        background: var(--white);
    }

    #navigation .slicknav_btn {
        float: left;
        text-decoration: none;
        text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    #navigation .slicknav_nav {
        clear: both;
        color: var(--companyTextColor);
        margin: 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--companyHoverColor);
        width: 100%;
    }

    #navigation .slicknav_nav .slicknav_row:hover {
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
        background: var(--white);
        color: var(--companyTextColor);
    }

    #navigation .slicknav_nav a {
        text-decoration: none;
        color: var(--companyTextColor) !important;
        padding: 10px 30px;
        margin: 0;
        border-top: 1px solid var(--lightGray);
    }

    #navigation .slicknav_nav a:hover {
        background: var(--lightGray);
        color: var(--companyHoverColor) !important;
    }

    #navigation .slicknav_nav .slicknav_item a,
    #navigation .slicknav_nav .slicknav_parent-link a {
        padding: 0;
        margin: 0;
    }
}

/* Slogan */
#slogan {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #fff;
    margin-left: 10%;
}

.top-slogan {
    font-size: 2.8rem;
    line-height: 3.4rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
}

.bottom-slogan {
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1.75rem;

}

.fixed #slogan {
    display: none;
}

@media screen and (max-width: 1040px) {
    #slogan {
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .top-slogan {
        font-size: 2.4rem;
        line-height: 3.05rem;
    }
}

/* Empty Containers for fixed Header and Footer */
#empty.headerEmpty {
    display: none;
}

.fixed #empty.headerEmpty {
    display: block;
    height: var(--headerHeight);
}

#empty.footerEmpty {
    display: block;
    height: var(--footerHeight);
}

/* Content */
.pensum {
    display: block;
}

#introduction {
    padding-top: 80px;
    font-weight: 400;
}

#introduction p {
    font-size: 1.45rem;
    line-height: 2.05rem;
    margin: 56px 0;
}

/* Tasks and Skills */
@media screen and (max-width: 960px) {
    #tasksAndSkills {
        flex-direction: column;
    }
}

/* Workplace */
#place-of-work {
    padding-top: var(--sectionLargeSpaceTop);
}

#place-of-work .location {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

#place-of-work .location:hover svg path {
    fill: var(--companyHoverColor);
}

#place-of-work .location svg {
    min-width: 48px;
}

#place-of-work .location svg path  {
    stroke: var(--white);
    stroke-width: 2px;
    transition: 0.25s ease-in-out;
}

/* Europ Assistance */
@media screen and (max-width: 960px) {
    #EuropAssistance > div {
        flex-direction: column;
    }
}

/* Benefits */
#benefits {
    padding-top: var(--sectionLargeSpaceTop);
    padding-bottom: var(--sectionLargeSpaceBottom);
}

#benefits .benefit,
#benefits .benefit:focus,
#benefits .benefit:hover,
#benefits .benefit:active,
#benefits .benefit:hover {
    outline: 0;
    cursor: default;
}

#benefits .benefit {
    padding: 20px 30px;
    background: var(--companyPrimaryColor);
    overflow: hidden;
    display: inline-block;
    height: 100%;
    width: 100%;
}

#benefits .benefit.hidden {
    display: none;
}

#benefits .benefit-link {
    display: none;
    text-align: center;
}

#benefits .benefit .content {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.35rem;
}

#benefits .benefit .content h3 {
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 25px;
}

#benefits .show-less,
#benefits .benefit .content br {
    display: none;
}

#benefits #show-benefits {
    padding: 20px;
    display: block;
}

#benefits .arrow {
    display: none;
}

.benefit-1 img {
    padding: 10px;
}


@media screen and (max-width: 1110px) {
    #benefits .benefit-link {
        position: relative;
        display: block;
    }

    #benefits .benefit {
        padding: 15px;
        margin-bottom: 10px;
    }

    #benefits .benefit .content h3 {
        margin-bottom: 0;
    }

    #benefits .benefit .image {
        height: 130px;
        padding: 0;
        position: relative;
    }
    #benefits .benefit-1 .image {
        padding: 10px;
    }
}

@media screen and (min-width: 600px) and (max-width: 1110px) {
    #benefits li .card {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    #benefits li .card .face {
        flex: 1;
    }
    #show-benefits {
        display: none !important;
    }
    #benefits .benefit.hidden {
        display: block !important;
    }
    #benefits .benefit {
        display: flex;
        flex-direction: column;
        padding: 35px;
    }
    #benefits .benefit .content {
        text-align: center;
    }
    #benefits .benefit .image {
        float: none;
        display: block;
        margin: 0 auto;
    }
}

/**
 * Flip carousel.
 */
#benefits ul,
#benefits li {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (min-width: 1111px) {
    #benefits {
        padding-right: 0;
        padding-left: 0;
    }

    #benefits h2 {
        padding-left: var(--contentSidePadding);
        padding-right: var(--contentSidePadding);
    }

    #benefits .benefits {
        margin: 0 auto;
        display: block;
        overflow: hidden;
        position: relative;
        text-align: center;
    }

    #benefits .benefits .benefit.hidden {
        display: block;
    }

    #benefits .benefits > ul {
        margin: 0 auto;
        padding: 0;
        display: flex;
        max-width: calc(100% - 100px);
    }

    #benefits .benefits > ul > li {
        flex: 1;
        margin: 10px;
        padding: 0;
        display: inline-block;
        list-style-type: none;
        position: relative;
        -webkit-perspective: 1500px;
        perspective: 1500px;

    }

    #benefits .benefits .card {
        position: relative;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        min-height: 420px;
    }

    #benefits .benefit .content {
        margin-top: 20px;
    }

    /**
     * IE Fix.
     */
    #benefits .benefits .card.rotate {
        -ms-transform: rotateY(0deg);
    }

    #benefits .benefits .card .face {
        position: absolute;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #benefits .benefits .card .front {
        z-index: 1;
        transform: rotateY(0deg);
    }

    #benefits .benefits .card .back {
        z-index: 0;
        transform: rotateY(180deg);
    }

    #benefits .benefits .controls {
        display: block;
        margin: 0 auto;
        overflow: hidden;
    }

    #benefits .benefits .controls img {
        padding: 0 5px 0 0;
    }

    #benefits .benefits .controls .arrow {

        cursor: pointer;
        top: 48%;
        position: absolute;
        width: 40px;
        height: 40px;
    }

    #benefits .benefits .controls .arrow svg {
        fill: var(--companyTextColor);
        opacity: 0.35;
        transition: 0.25s ease-in-out;
    }

    #benefits .benefits .controls .arrow:hover svg {
        fill: var(--companyTextColor);
        opacity: 1;
    }

    #benefits .benefits .controls .arrow:hover {
        opacity: 1;
    }

    #benefits .benefits .controls .arrow.left {
        left: 0;
        right: auto;
        background: none;
        display: block;
    }

    #benefits .benefits .controls .arrow.right {
        right: 0;
        left: auto;
        background: none;
        display: block;
    }
}

@media screen and (max-width: 599px) {
    #benefits .benefit {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 30px 60px;
        text-align: center;
    }

    #benefits .benefit .image {
        height: 100px;
    }
}

@media screen and (max-width: 360px) {
    #benefits .benefit {
        padding: 30px;
    }
}

/* Contact */
#contact {
    background: var(--lightGray);
    padding-top: var(--sectionLargeSpaceTop);
    padding-bottom: var(--sectionLargeSpaceBottom);
}

.contactContainer {
    row-gap: 24px;
    column-gap: 48px;
}

.contactContainer > div {
    flex: 1;
    max-width: calc(50% - 24px);
}

#contact .last-but-not-least {
    margin-top: 48px;
    display: none;
}

#contact .info {
    margin-top: 20px;
}

#contact .recruiter {
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
}

#contact .recruiter.hasLinkedinLink {
    align-items: flex-start;
}

#contact .recruiter .content {
    overflow: hidden;
}

#contact .recruiter.hasLinkedinLink .content {
    margin-top: 40px;
}

#contact .recruiter .content span {
    display: block;
}

#contact .recruiter .content .recruiterLinkedinLabel {
    margin-top: 40px;
}

#contact .name {
    font-size: 1.3rem;
    line-height: 1.65rem;
    margin-bottom: 5px;
}

#contact .function {
    font-weight: 500;
    margin-bottom: 15px;
}

#contact .email {
    font-weight: 400;
}

#contact .recruiter .image {
    border-radius: 50%;
    max-height: 180px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: 100%;
    min-width: 180px;
    max-width: 180px;
}

@media screen and (max-width: 1100px) {
    .contactContainer {
        flex-direction: column;
    }
    .contactContainer > div {
        max-width: 100%;
    }
    #contact .apply-button {
        width: 100%;
    }
    #contact .first .info,
    #contact .first .apply-button {
        display: none;
    }
    #contact .last-but-not-least {
        display: block;
    }
    #contact .last {
        padding-top: 0;
    }
}

@media screen and (max-width: 620px) {
    #contact .recruiter {
        align-items: flex-start;
    }
    #contact .recruiter .image {
        max-height: 100px;
        max-width: 100px;
        min-width: 100px;
    }
    #contact .recruiter.hasLinkedinLink .content {
        margin-top: 0;
    }
}

/* About */
#about {
    padding-top: var(--sectionLargeSpaceTop);
}

#about > .flex {
    justify-content: space-between;
}

.aboutText {
    flex-basis: 50%;
}

.external.links {
    flex-basis: 31%;
    min-width: 330px;
}

@media screen and (max-width: 890px) {
    .aboutText, .external.links {
        flex-basis: 100%;
        min-width: 100%;
    }
}

.external.link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 0;
    border-top: 3px solid var(--companyPrimaryColor);
}

.external.link svg {
    min-width: 23px;
}

.external.link svg path {
    transition: 0.25s ease-in-out;
}

.external.link:hover svg path {
    fill: var(--companyHoverColor);
}

.external.link:last-child {
    border-bottom: 3px solid var(--companyPrimaryColor);
}

/* Awards */
#awards {
    width: 100%;
    margin-top: 90px;
}

.awardImagesContainer {
    flex-wrap: wrap;
    align-items: center;
    gap: 42px;
}

/* Video */
#video {
    padding-top: var(--sectionLargeSpaceTop);
    line-height: 0;
}

#video iframe {
    height: auto;
    aspect-ratio: 16 / 6;
}

#video iframe[data-src] {
    height: 0;
}

/* Similar jobs */
#similar-jobs {
    padding-top: var(--sectionLargeSpaceTop);
    padding-bottom: var(--sectionLargeSpaceBottom);
}

#similar-jobs .grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 64px;
}

#similar-jobs .jobs .job {
    background: var(--lightGray);
    padding: 48px;
}

#similar-jobs .jobs .job .title {
    color: var(--companyTextColor);
    font-weight: 300;
    margin-bottom: 24px;
    font-size: 1.2rem;
    line-height: 1.45rem;
    word-wrap: break-word;
    transition: 0.25s ease-in-out;
}

#similar-jobs .jobs .job .place-of-work {
    color: var(--companyTextColor);
    font-weight: 500;
    transition: 0.25s ease-in-out;
}

#similar-jobs .jobs .job:hover .title,
#similar-jobs .jobs .job:hover .place-of-work {
    color: var(--black);
}

.similarJobsLinks {
    justify-content: space-between;
    row-gap: 16px;
    column-gap: 48px;
}

#similar-jobs .open-jobs {
    display: inline-block;
}

#similar-jobs .job-newsletter {
    display: none;
}

@media screen and (max-width: 1200px) {
    #similar-jobs .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
@media screen and (max-width: 1040px) {
    #similar-jobs .job-newsletter {
        display: inline-block;
    }
}
@media screen and (max-width: 400px) {
    #similar-jobs .jobs .job {
        padding: 24px;
    }
}

/* Footer */
#footer #follow-us {
    background: var(--companyPrimaryColor);
    color: #fff;
    text-align: center;
    padding-top: 77px;
    padding-bottom: 105px;
}

.footerHashtagClaim {
    font-size: 2rem;
    line-height: 2.35rem;
    font-weight: 300;
}

.followUsTitle {
    margin-bottom: 1rem;
    font-weight: 300;
}

#footer #bottom {
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#footer #bottom > .flex {
    align-items: center;
    flex-wrap: nowrap;
}

#footer #bottom  .flex a {
    display: flex;
    align-items: center;
    gap: 20px;
}

#footer #bottom svg path {
    transition: 0.25s ease-in-out;
}

#footer #bottom  .flex > div > a:hover path {
    stroke: var(--companyHoverColor);
}

.fixed #footer #bottom {
    position: fixed;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: var(--siteWidth);
    min-height: var(--footerHeight);
}

#follow-us {
    gap: 60px;
}

#footer .social-follow-icons {
    display: inline-flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#footer .social-follow-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 64px;
}

.social-share-icons {
    position: relative;
}

#social-icon-tooltip {
    position: absolute;
    bottom: calc(100% + 18px);
    left: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 14px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transition-delay: 0.1s;
    transform: translate(-50%, 10px);
}

#social-icon-tooltip.active {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.social-icons-tooltip-container {
    flex-wrap: nowrap;
    gap: 10px;
}

.social-icons-tooltip-container svg:hover path {
    fill: var(--companyHoverColor);
}

@media screen and (max-width: 1040px) {
    #footer #bottom .flex .job-newsletter {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #footer #bottom .flex .print,
    #footer #bottom .footerIconLabel {
        display: none;
    }
    .footerHashtagClaim {
        font-size: 1.6rem;
        line-height: 1.95rem;
    }
    #footer .social-follow-icons a {
        width: 32px;
    }

    #footer .social-follow-icons a svg {
        max-height: 32px;
    }
    #social-icon-tooltip svg {
        width: 36px;
        height: 36px;
    }
    #social-icon-tooltip {
        bottom: calc(100% + 18px);
        left: 0;
        transform: translate(0, 10px);
    }
    #social-icon-tooltip.active {
        transform: translate(0, 0);
    }
}

/* Cookie Banner */
#cookieSettingsButtonContainer {
    margin: 62px 0;
}

#ot-sdk-btn {
    color: var(--white) !important;
    border-color: var(--companyPrimaryColor) !important;
    background-color: var(--companyPrimaryColor) !important;
    border-radius: 5em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem !important;
    font-size: 1rem !important;
    line-height: 1.4rem !important;
    font-weight: 500 !important;
    font-family: "Roboto", sans-serif !important;
    transition: 0.2s ease-in-out !important;
}

#ot-sdk-btn:hover {
    background-color: var(--companyHoverColor) !important;
    border-color: var(--companyHoverColor) !important;
}

#onetrust-consent-sdk #onetrust-banner-sdk *:focus, #onetrust-consent-sdk #onetrust-banner-sdk:focus {
    outline-color: var(--white) !important;
}

/* Expired Page */
#job-newsletter {
    padding-top: var(--sectionLargeSpaceTop);
}

/* Print */
.printable-only {
    display: none !important;
}