:root {
    --pf-global--FontSize--md: 16px;
    --pf-global--FontSize--sm: 12px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-height: 100%;
    font-family: "SpaceGrotesk", "Verdana", "Arial", sans-serif;
    margin: 0;
    font-size: 16px;
    line-height: 1.66666667;
}

input {
    font-family: "SpaceGrotesk", "Verdana", "Arial", sans-serif;
}

a:hover {
    color: #660CFA;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-exclamation-triangle:before {
    content: "\f071";
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.alert {
    color: #CC1F33;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 10px;
}

.alert-error {
    background-color: #fff;
    display: flex;
}

.alert .fa {
    font-size: 14px;
    margin-right: 8px;
    margin-top: 2px;
}

::placeholder {
    color: #8A87AD;
    opacity: 1;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-backdrop.active {
    visibility: visible;
    opacity: 1;
}


.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-field {
    border: 2px solid red !important;
    outline: none;
    box-shadow: 0 0 3px red;
}

.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border: 1px solid #660CFA;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #660CFA;
}

.btn-primary:hover {
    background-color: #5004CD;
    border-color: #5004CD;
}

.btn-primary:active {
    background-color: #3D039B;
}

.btn-primary:disabled {
    color: #8A87AD;
    background-color: #F3F3F7;
}

#wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

header .container,
footer .container {
    display: flex;
    max-width: 92vw;
    margin: 0 auto;
}

footer .container {
    height: auto;
    background-color: #fff;
    border-radius: 16px 16px 0px 0px;
    border: 1px solid #D0CFDE;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    flex-wrap: wrap-reverse;
    padding-top: 16px;
    padding-bottom: 16px;
    row-gap: 16px;
}

header .container {
    justify-content: center;
}

header,
footer,
#kc-container {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.container {
    margin-right: 18vw;
    margin-left: auto;
    padding: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 1279px) {
    .container {
        width: 92vw;
    }
}

footer {
    display: flex;
    justify-content: flex-end;
}

footer .footer-menu {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4px;
}

footer .footer-menu a {
    color: #660CFA;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    display: inline-block;
    margin-left: 0px;
    margin-right: 48px;
    text-decoration: none;
}

footer .copyright {
    float: left;
    color: #2D276B;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
    margin-right: 8px;
}

.copyright {
    min-width: 126px;
}

.copyrightMobile {
    min-width: 126px;
    display: none;
}

.container-copyright {
    display: flex;
    flex-flow: row;
    height: auto;
    align-items: center;
    justify-content: space-between;
}

header {
    max-height: 74px;
    min-height: 74px;
    position: absolute;
    z-index: 1000;
    width: 100%;
}

.headerBrand {
    position: absolute;
    height: 66px;
    width: 92vw;
    background-color: #fff;
    border-bottom: 1px solid #D0CFDE;
    z-index: 10;
    border-radius: 0px 0px 16px 16px;
}

.headerWrapper {
    display: flex;
    position: relative;
    justify-content: space-between;
    max-width: 92vw;
    height: auto;
    width: 100%;
}

.bgheaderText {
    background-color: #35F200;
    height: fit-content;
    border-radius: 0px 10px 10px 10px;
    position: absolute;
    top: 26px;
    left: 96px;
}

.logo-group {
    display: flex;
    flex-flow: row;
    float: left;
    z-index: 20;
}

#headerText {
    margin-left: 57px;
    margin-right: 16px;
    margin-bottom: 12px;
    margin-top: 12px;
    font-weight: 500;
    font-size: 16px;
    color: #160F5B;
    display: flex;
    align-items: center;
    height: auto;
}

#kc-logo {
    display: flex;
    align-items: center;
    height: 66px;
    padding: 24px;
    background-color: #160F5B;
    border-radius: 0px 0px 16px 16px;
    z-index: 10;
}

#kc-logo-wrapper {
    background-image: url("img/AirPlus_wordmark_white_rgb.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 89px;
    height: 18px;
    cursor: pointer;
}

.langWrap {
    display: flex;
    flex-flow: row;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 2px;
}

.lang {
    display: none;
    margin-left: 16px;
    margin-right: 8px;
}

.langDE {
    background-image: url("img/DE.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.langEN {
    background-image: url("img/EN.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.langES {
    background-image: url("img/ES.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.langFR {
    background-image: url("img/FR.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.langIT {
    background-image: url("img/IT.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.langNL {
    background-image: url("img/NL.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}

#kc-locale {
    height: 66px;
    display: flex;
    align-items: top;
    z-index: 20;
    background-color: #fff;
    border-radius: 0px 0px 16px 16px;
}

#kc-locale ul {
    display: none;
    height: auto;
    background-color: #fff;
    list-style: none;
    right: 0px;
    top: 0px;
    padding: 0px;
    padding-top: 8px;
    position: relative;
    z-index: 100;
    box-shadow: 0px 0px 8px 0px rgba(22, 15, 91, .16);
    border-radius: 0px 0px 16px 16px;
}

#kc-locale ul li {
    height: 44px;
    width: 100%;
    margin-left: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#kc-locale ul li a {
    color: #660CFA;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
    display: block;
    line-height: 32px;
    background: none;
    text-decoration: none;
}

#kc-locale ul li a:hover {
    color: #660CFA;
    font-weight: 400;
}

#kc-locale:hover ul {
    display: block;
    margin: 0;
    width: 100%;
}

#kc-locale #kc-locale-dropdown {
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#kc-locale:hover #kc-locale-dropdown {
    box-shadow: 0px 0px 8px 0px rgba(22, 15, 91, .16);
    border-radius: 0px 0px 16px 16px;
    background-color: #fff;
}

#kc-locale-dropdown>a {
    font-weight: 400;
    line-height: 48px;
    text-decoration: none;
}

a#kc-current-locale-link {
    justify-content: center;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    color: #660CFA;
    height: 66px;
    width: 100%;
    padding: 0px 48px;
    align-items: center;
}

a#kc-current-locale-link:hover {
    background-color: transparent;
}

#kc-container {
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    transition: background-image 1s ease-in-out;
}

.kc-container-bgImg-1 {
    background-image: url(img/airplus_background_1.jpg);
}

#kc-header {
    overflow: visible;
}

#kc-content {
    position: relative;
}

#kc-info {
    width: auto;
}

#kc-info-wrapper {
    font-size: 16px;
}

#kc-form-options span {
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
}

#kc-container #kc-container-wrapper {
    height: 100%;
    width: 100%;
}

#kc-container #kc-container-wrapper #kc-header {
    font-size: 16px;
    color: #2D276B;
    line-height: 24px;
    font-weight: 500;
}

#kc-header-wrapper-strong {
    font-size: 24px;
    font-weight: 600;
    margin-top: 2px;
    color: #160F5B;
    margin-bottom: 36px;
}

#kc-container #kc-container-wrapper #kc-content {
    width: 428px;
    min-height: 428px;
    max-height: fit-content;
    background: #fff;
    box-shadow: 0px 0px 8px 0px rgba(22, 15, 91, 0.16);
    border: 1px solid #D0CFDE;
    border-radius: 10px;
    padding: 28px 40px 24px 40px;
    color: #2D276B;
    display: flex;
    font-weight: 400;
    flex-flow: column;
    margin-top: 30vh;
    margin-bottom: 8vh;
}

#kc-content-wrapper {
    display: flex;
    flex-flow: column;
}

.form-input {
    width: 100%;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-flow: column;
}

.form-group:last-of-type {
    margin-bottom: 0;
    flex-flow: column;
}

.form-group .form-label {
    display: none;
}

.form-group .form-control {
    height: 48px;
    border: 1px solid #D0CFDE;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 16px;
    color: #160F5B;
    font-weight: 400;
    outline: 0;
    width: 100%;
}

.form-group .form-control:hover {
    border-color: #5004CD;
}

.form-group .form-control:focus {
    border-color: #3D039B;
    color: #3D039B;
}

.form-control:invalid {
    background-color: #fff;
    border-color: #CC1F33;
}

.form-control:valid,
.form-control:focus {
    background-color: #fff;
    color: #160F5B;
}

#kc-form-options {
    width: 100%;
    float: none;
    display: block;
    text-align: right;
    margin-top: 8px;
}

#kc-form-options a {
    font-weight: 400;
    font-size: 16px;
    color: #660CFA;
    text-decoration: underline;
}

#kc-form-options a:hover {
    font-weight: 400;
    color: #5004CD;
}

#kc-form-buttons {
    text-align: right;
    width: 100%;
}

::placeholder {
    color: #8A87AD;
    opacity: 1;
}

#registerBox {
    margin-top: 34px;
    border-top: 1px solid #D0CFDE;
}

.registerBoxWrapper {
    display: flex;
    flex-flow: column;
    font-size: 14px;
    line-height: 24px;
}

.registerBoxpromt {
    margin-top: 16px;
}

.registerBoxLink {
    font-weight: 400;
    color: #2D276B;
}

.hyperlinkmigrate {
    text-decoration: underline;
    color: #660CFA;
    font-weight: 400;
}

@media (max-width: 1279px) {
    .btn {
        font-size: 14px;
        line-height: 24px;
        height: 40px;
        min-width: 164px;
    }

    #kc-container #kc-container-wrapper #kc-header {
        font-size: 14px;
    }

    #kc-header-wrapper-strong {
        font-size: 22px;
    }

    .form-group .form-control {
        font-size: 14px;
    }

    #kc-form-options a {
        font-size: 14px;
    }

    a#kc-current-locale-link {
        font-size: 14px;
    }

    #kc-locale ul li a {
        font-size: 14px;
    }

    footer .footer-menu a {
        font-size: 12px;
        margin-right: 24px;
    }

    footer .copyright {
        font-size: 12px;
    }

    #kc-info-wrapper {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    header {
        min-height: 48px;
        max-height: 48px;
    }

    .headerWrapper {
        height: 48px;
        width: 100%;
        display: flex;
        position: relative;
        justify-content: space-between;
        max-width: 92vw;
    }

    .bgheaderText {
        left: 85px;
        top: 16px;
    }

    .headerBrand {
        height: 48px;
    }

    #headerText {
        margin-left: 50px;
        margin-right: 16px;
        margin-bottom: 8px;
        margin-top: 8px;
    }

    #kc-container #kc-container-wrapper #kc-header {
        font-size: 16px;
    }

    #kc-header-wrapper-strong {
        font-size: 24px;
    }

    #kc-logo {
        height: 48px;
        padding: 15px;
    }

    #kc-info-wrapper {
        font-size: 16px;
    }

    #kc-locale {
        z-index: 99;
        height: 48px;
    }

    #kc-locale ul li {
        white-space: nowrap;
        width: auto;
    }

    #kc-locale #kc-locale-dropdown {
        margin-top: 0px;
    }

    a#kc-current-locale-link {
        height: 48px;
    }

    a#kc-current-locale-link::after {
        padding: 4px 5px;
    }

    #kc-container #kc-container-wrapper {
        width: 100%;
    }

    #kc-container #kc-container-wrapper #kc-content {
        width: 340px;
        height: fit-content;
        padding: 28px 30px 16px 30px;
        margin-top: 20vh;
    }

    #kc-container #kc-container-wrapper #kc-content:before {
        display: none;
    }

    #kc-container #kc-container-wrapper #kc-content #kc-form #kc-form-options {
        text-align: center;
        margin-bottom: 16px;
        margin-top: 14px;
    }

    #kc-container #kc-container-wrapper #kc-content #kc-form #kc-form-options a {
        text-decoration: underline;
        letter-spacing: 0;
    }

    #kc-container #kc-container-wrapper #kc-content #kc-form #kc-form-buttons {
        text-align: center;
        font-size: 12px;
    }

    #kc-content {
        margin-right: auto;
    }

    .form-group .form-control {
        font-size: 16px;
    }

    #kc-form-options a {
        font-size: 16px;
    }

    .btn {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
        height: 48px;
    }

    #registerBox {
        margin-top: 20px;
    }

    footer {
        padding: 0;
    }

    footer .copyright {
        font-size: 16px;
    }

    .copyrightMobile {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        color: #2D276B;
        font-size: 14px;
        line-height: 24px;
    }

    .copyright {
        display: none;
    }

    .container-copyright {
        display: flex;
        flex-flow: column;
        height: auto;
    }

    footer .container {
        row-gap: 0px;
    }

    footer .footer-menu {
        row-gap: 16px;
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }

    footer .footer-menu a {
        font-size: 14px;
        margin-right: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .kc-container-bgImg-1 {
        background-image: url(img/airplus_background_mobile_1.jpg);
    }

    #kc-form-buttons {
        margin-bottom: 10px;
    }

    #kc-container #kc-container-wrapper #kc-content {
        height: fit-content;
    }
}

@media (max-width: 479px) {
    #kc-locale #kc-locale-dropdown {
        width: 104px;
    }

    #kc-locale ul li {
        margin-left: 16px;
    }
}

@media (max-width: 374px) {
    .bgheaderText {
        left: 77px;
    }

    .lang {
        margin-left: 8px;
    }

    #kc-container #kc-container-wrapper #kc-content {
        width: 100%;
        height: fit-content;
        padding: 28px 30px 16px 30px;
    }

    footer {
        min-height: 94px;
        max-height: 108px;
        justify-content: flex-start;
    }

    .container-copyright {
        display: flex;
        flex-flow: column;
    }
}

@media (max-width: 319px) {
    .bgheaderText {
        display: none;
    }
}

@font-face {
    font-family: 'SpaceGrotesk';
    font-style: normal;
    font-weight: 300;
    src: local('SpaceGrotesk Light'), local('SpaceGrotesk-Light'), url('fonts/SpaceGrotesk-Light.otf') format('opentype'), url('fonts/SpaceGrotesk-Light.woff2') format('woff2'), url('fonts/SpaceGrotesk-Light.ttf') format('truetype'), ;
}

@font-face {
    font-family: 'SpaceGrotesk';
    font-style: normal;
    font-weight: 400;
    src: local('SpaceGrotesk'), local('SpaceGrotesk-Regular'), url('fonts/SpaceGrotesk-Regular.otf') format('opentype'), url('fonts/SpaceGrotesk-Regular.woff2') format('woff2'), url('fonts/SpaceGrotesk-Regular.ttf') format('truetype'), ;
}

@font-face {
    font-family: 'SpaceGrotesk';
    font-style: normal;
    font-weight: 500;
    src: local('SpaceGrotesk Medium'), local('SpaceGrotesk-Medium'), url('fonts/SpaceGrotesk-Medium.otf') format('opentype'), url('fonts/SpaceGrotesk-Medium.woff2') format('woff2'), url('fonts/SpaceGrotesk-Medium.ttf') format('truetype'), ;
}

@font-face {
    font-family: 'SpaceGrotesk';
    font-style: normal;
    font-weight: 700;
    src: local('SpaceGrotesk Bold'), local('SpaceGrotesk-Bold'), url('fonts/SpaceGrotesk-Bold.otf') format('opentype'), url('fonts/SpaceGrotesk-Bold.woff2') format('woff2'), url('fonts/SpaceGrotesk-Bold.ttf') format('truetype'), ;
}

@font-face {
    font-family: FontAwesome;
    src: url(fonts/fontawesome-webfont.eot?v=4.2.0);
    src: url(fonts/fontawesome-webfont.eot?#iefix&v=4.2.0) format('embedded-opentype'), url(fonts/fontawesome-webfont.woff?v=4.2.0) format('woff'), url(fonts/fontawesome-webfont.ttf?v=4.2.0) format('truetype'), url(fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal
}