@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url('../fonts/MaterialIcons-Regular.woff2') format('woff2'),
    url('../fonts/MaterialIcons-Regular.woff') format('woff'),
    url('../fonts/MaterialIcons-Regular.ttf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

:root {
    --width: 600px;
    --horizontal-margin: calc((100% - var(--width)) / 2);
    --color-tint-yellow-base: rgb(255, 237, 0);
    --color-button-primary-enabled: rgb(28, 28, 28);
    --background-color-primary: rgb(28, 28, 28);
    --tooltip-text-color: #555;
    --background-color: #1a1a3b;
    --white: rgb(255, 255, 255);
    --country-code-width: 114px;
    --form-control-background: #181829;

    --mdc-theme-primary: rgb(255, 237, 0);
    --mdc-protected-button-container-color: rgb(255, 237, 0);
    --mdc-protected-button-label-text-color: rgb(28, 28, 28);
}

@media (prefers-color-scheme: light) {
    :root {
        --color-tint-yellow-base: rgb(255, 237, 0);
        --color-button-primary-enabled: rgb(28, 28, 28);
        --background-color-primary: rgb(28, 28, 28);
        --tooltip-text-color: #555;
        --background-color: #1a1a3b;
        --white: rgb(255, 255, 255);
        --form-control-background: #181829;
        --mdc-theme-primary: rgb(255, 237, 0);
        --mdc-protected-button-container-color: rgb(255, 237, 0);
        --mdc-protected-button-label-text-color: rgb(28, 28, 28);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-tint-yellow-base: rgb(255, 237, 0);
        --color-button-primary-enabled: rgb(28, 28, 28);
        --background-color-primary: rgb(28, 28, 28);
        --tooltip-text-color: #555;
        --background-color: #1a1a3b;
        --white: rgb(255, 255, 255);
        --form-control-background: #181829;
        --mdc-theme-primary: rgb(255, 237, 0);
        --mdc-protected-button-container-color: rgb(255, 237, 0);
        --mdc-protected-button-label-text-color: rgb(28, 28, 28);
    }
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url("../fonts/AvenirLTPro-Book.woff2") format("woff2"),
    url("../fonts/AvenirLTPro-Book.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url("../fonts/AvenirLTPro-Medium.woff2") format("woff2"),
    url("../fonts/AvenirLTPro-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url("../fonts/AvenirLTPro-Heavy.woff2") format("woff2"),
    url("../fonts/AvenirLTPro-Heavy.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Avenir LT Pro";
    src: url("../fonts/AvenirLTPro-Black.woff2") format("woff2"),
    url("../fonts/AvenirLTPro-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

.auth-container {
    color: var(--white);
    min-height: 100vh;
}

.auth-container .auth-header {
    display: flex;
    align-items: center;
    margin: 58px 0 4px;
}

.auth-container .auth-header.flex-column {
    margin-bottom: 31px;
}

.auth-container .auth-header .logo-link {
    flex-basis: var(--horizontal-margin);
}

.auth-container .auth-header .logo-link a {
    display: block;
    margin-left: 58px;
}

.auth-container .auth-header .logo-link a,
.auth-container .auth-header .logo-link .logo {
    width: 110px;
    height: 120px;
}

.auth-container .auth-header .title {
    flex-grow: 1;
    font-weight: bold; /* Replace with the styles from @include font-heavy() */
    max-width: 600px; /* Replace $titleWidth with its actual value */
    font-size: 32px;
    line-height: 44px;
    text-align: center;
}

.auth-container .auth-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.auth-container .auth-content.content-confirmation {
    min-height: 174px;
}

#kc-page-title {
    font-family: "Avenir LT Pro", serif;
    font-size: 28px;
    @media screen and (max-width: 992px) {
        max-width: 324px;
        font-size: 20px;
        display: inline-block;
        text-align: center;
    }
}

#kc-register-form {
    margin-top: 24px;
}

#kc-totp-settings {
    text-align: left;
}

/* Media queries for large screens */
@media (min-width: 1024px) {
    /* Replace with the actual breakpoint for lg screens */
    .auth-container .auth-header {
        align-items: flex-end;
        margin: 57px 0 5px;
    }

    .auth-container .auth-header.flex-column {
        margin-bottom: 15px;
    }

    .auth-container .auth-header .logo-link {
        flex-basis: var(--horizontal-margin);
    }

    .auth-container .auth-header .logo-link a {
        display: block;
        margin-left: 88px;
    }

    .auth-container .auth-header .logo-link a,
    .auth-container .auth-header .logo-link .logo {
        width: 110px;
        height: 120px;
    }

    .auth-container .auth-header .title {
        max-width: 600px; /* Replace $titleWidth with its actual value */
        font-size: 32px;
        line-height: 44px;
        text-align: center;
    }
}

/* Media queries for extra-large screens */
@media (min-width: 1440px) {
    /* Replace with the actual breakpoint for xl screens */
    .auth-container .auth-header {
        align-items: flex-end;
        margin: 76px 0 53px;
    }

    .auth-container .auth-header.flex-column {
        margin-bottom: 59px;
    }

    .auth-container .auth-header .logo-link {
        flex-basis: var(--horizontal-margin);
    }

    .auth-container .auth-header .logo-link a {
        display: block;
        margin-left: 108px;
    }

    .auth-container .auth-header .logo-link a,
    .auth-container .auth-header .logo-link .logo {
        width: 133px;
        height: 144px;
    }

    .auth-container .auth-header .title {
        max-width: 600px; /* Replace $titleWidth with its actual value */
        font-size: 32px;
        line-height: 44px;
        text-align: center;
        margin-bottom: -12px;
    }
}

body {
    background-color: var(--background-color);
    color: var(--white);
    font-family: 'Avenir LT Pro', serif;
    display: block;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.login-container, .register-container {
    text-align: center;
    width: 300px;
}

.card-pf .login-pf-header, .card-pf .login-pf-header h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

#kc-content .legal-disclaimer {
    font-size: 12px;
    font-weight: 300;
    height: 36px;
    letter-spacing: 0;
    line-height: 18px;
    cursor: default;
    margin: 24px 0;
    text-align: left;
    @media screen and (max-width: 768px) {
        margin: 12px 0;
    }
}

#kc-content .legal-disclaimer a {
    text-decoration: none;
    text-align: left;
    color: var(--color-tint-yellow-base);
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
}

.tooltip {
    width: 16px;
    position: absolute;
    right: 0;
    bottom: 6px;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: var(--white);
    color: var(--tooltip-text-color);
    border-radius: 6px;
    padding: .4rem;
    padding-bottom: 0;
    position: absolute;
    z-index: 1;
    width: 400px;
    bottom: 110%;
    left: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    @media screen and (max-width: 767px) {
        right: -22px;
        width: 280px;
        font-size: 13px;
        left: -280px;
    }
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px; /* Adjust based on tooltip width */
    margin-top: -5px; /* Center the arrow vertically */
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333 transparent transparent; /* Arrow pointing to the container */
}

/* Show the tooltip on hover */
.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

.tooltiptext p {
    font-family: "Avenir LT Pro", serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    padding: 0 6px 0 12px;
    letter-spacing: 0;
    line-height: 18px;
    color: var(--mdc-protected-button-label-text-color);
}

.tooltiptext ul li {
    line-height: 24px;
}

.tooltiptext ul li a {
    font-family: "Avenir LT Pro", sans-serif;
    color: #00a8e1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltip .tooltiptext ul {
    margin: 0;
    padding: 6px 14px 20px 42px;
}

.tooltip .tooltiptext ul li {
    padding: 0;
    font-size: 14px;
    font-family: "Avenir LT Pro", serif;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 20px;
    margin: 0;
}

.form-group .tooltip-password::after {
    font-family: "Material Icons";
    content: "\e5cc";
}

.login-pf-settings {
    display: flex;
    flex-direction: column;
}

.form-group {
    position: relative;
    text-align: left;
    padding-bottom: 16px;
}

.form-group input {
    border-radius: 4px;
    background-color: unset;
    color: var(--white);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px var(--form-control-background);
    @media screen and (max-width: 992px) {
        box-shadow: inset 0 0 20px 20px #000000 !important;
    }
}

#rememberMe {
    display: block;
    float: left;
}

.password-container, .code-container {
    position: relative;
    display: initial;
}

.password-container button {
    position: absolute;
    right: 0;
    border: none;
    background: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
}

.password-container button.toggle-tooltip-password {
    right: 20px;
    bottom: 4px;
}

.password-container button.toggle-password {
    bottom: 8px;
}

.password-container button:first-of-type {
    width: auto;
}

button[type="submit"], button[type="button"] {
    font-family: "Avenir LT Pro", sans-serif;
    font-size: 14px;
}

button[type="submit"], a.back-to-application {
    background-color: var(--color-tint-yellow-base);
    padding: .4rem .8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 106px;
    min-height: 36px;
    display: block;
    width: 100%;
    margin-top: 24px;
    color: var(--form-control-background) !important;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 800;
}

a.back-to-application {
    padding-top: 10px;
    min-height: 24px;
    margin-top: 16px;
}

a.back-to-application-reset-password {
    background-color: var(--color-tint-yellow-base);
    padding: .4rem .8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    min-width: 200px;
    min-height: 25px;
    display: block;
    width: 150%;
    margin-top: 50px;
    line-height: 23px;
    text-align: center;
    color: var(--form-control-background) !important;
    text-transform: none;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 800;
}

button[type="submit"]:hover {
    background-color: #ffdd00;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], textarea {
    outline: none;
    background-color: var(--form-control-background);
    font-family: "Avenir LT Pro", sans-serif;
    font-size: 15px;
    font-weight: 300;
}

.links {
    margin-top: 23px;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    text-align: right;
}

.register-links {
    margin-top: 23px;
    cursor: pointer;
    display: block;
    text-align: center;
}

/*.form-control:hover {*/
/*    border-color: none;*/
/*}*/

.field-icon {
    float: right;
    margin-left: -12px;
    margin-top: -27px;
    margin-right: 8px;
    position: relative;
    z-index: 2;
    width: 16px;
    height: 20px;
}

.links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    text-align: right;
    line-height: 14px;
    font-weight: 300;
}

.links a:hover {
    text-decoration: none;
}

.login-pf-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-pf-header h2 {
    text-align: center;
    font-weight: bold;
}

.header-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.header-spacer {
    padding: 20px;
}

.header-wrapper img {
    max-height: 150px;
    max-width: 150px;
}

.alert-error {
    color: red;
}

.form-horizontal {
    display: flex;
    flex-direction: column;
}

#kc-locale ul {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    right: 0;
    top: 20px;
    min-width: 100px;
    padding: 2px 0;
    border: solid 1px #bbb;
}

#kc-locale:hover ul {
    display: block;
    margin: 0;
}

#kc-locale ul li a {
    display: block;
    padding: 5px 14px;
    color: #000 !important;
    text-decoration: none;
    line-height: 20px;
}

#kc-locale ul li a:hover {
    color: #4d5258;
    background-color: #d4edfa;
}

#kc-locale-dropdown a {
    color: #4d5258;
    background: 0 0;
    padding: 0 15px 0 0;
    font-weight: 300;
}

#kc-locale-dropdown a:hover {
    text-decoration: none;
}

a#kc-current-locale-link {
    display: block;
    padding: 0 5px;
}

a#kc-current-locale-link::after {
    content: "\2c5";
    margin-left: 4px;
}

.login-pf .container {
    padding-top: 40px;
}

#kc-logo {
    width: 100%;
}

.password-wrapper {
    display: flex;
    align-items: center;
}

.toggle-password-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
}

#kc-logo-wrapper {
    background-repeat: no-repeat;
    height: 63px;
    width: 300px;
    margin: 57px 0 5px
}

.kc-logo-text {
    height: 120px;
    width: 110px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

div.kc-logo-text span {
    display: none;
}

#kc-header {
    width: 100%;
}

#kc-header-wrapper {
    padding: 62px 20px 0 20px;
    white-space: normal;
}

#kc-content {
    width: 100%;
    min-width: 300px;
}

#kc-content-wrapper {
    text-align: center;
    margin-top: 2.4rem;
    @media screen and (max-width: 992px) {
        margin-top: 1.2rem;
    }
}

.mdc-card {
    background-color: #e4e4e4;
    border-radius: 6px;
    padding: 12px;
    margin: 16px 0;
}

.mdc-card.mdc-card--success {
    background-color: #2b391c;
}

.mdc-card.mdc-card--error {
    background-color: #40161b;
}

.mdc-card.mdc-card--warning {
    background-color: #47371d;
}

.mdc-card.mdc-card--info {
    background-color: #353434;
}

.mdc-card__content {
    font-family: "Avenir LT Pro", serif;
    color: var(--white);
    width: 100%;
    word-break: break-all;
}

.mdc-snackbar {
    position: absolute;
    top: -100px;
    left: 46%;
    transform: translateX(-50%);
    width: auto;
    min-width: 50px;
    max-width: 100px;
}

.mdc-snackbar__surface {
    padding-right: 0 !important;
    background: #1C1C1C;
    min-width: 80px;
    justify-content: center;
}

.mdc-snackbar__label.peax-snackbar {
    font-family: "Avenir LT Pro", sans-serif;
    font-size: 13px;
    padding: 6px 0;
    text-align: center;
    width: 80px;
}

#message-icon {
    display: inline-block;
    padding-right: 16px;
    font-size: 20px
}

.message-header {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
}

.message-header .kc-feedback-text {
    text-align: left;
    word-break: break-word;
}

#kc-form-wrapper {
    display: flex;
    flex-direction: column;
}

#kc-info-wrapper {
    font-size: 13px;
}

#kc-form-options span {
    display: block;
}

#kc-form-options.request-new-sms {
    width: 100%;
    display: inline-block;
    text-align: left;
    font-size: 15px;
    font-weight: 300;
    height: 20px;
    letter-spacing: 0;
}

#kc-form-options.request-new-sms span {
    display: inline;
    color: var(--color-tint-yellow-base);
    cursor: pointer;
}


#kc-form-options .checkbox {
    margin-top: 0;
    color: #72767b;
}

#kc-terms-text {
    margin-bottom: 20px;
}

#kc-registration {
    display: flex;
    justify-content: space-between;
}

#kc-registration a {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--color-tint-yellow-base);
}

#kc-registration a:hover {
    color: #ffdd00;
}

.overlay-wrapper {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: flex-start;
}

.overlay-pane {
    position: static;
    margin-top: 32px;
    margin-right: 24px;
    max-width: none !important;
    pointer-events: auto;
    box-sizing: border-box;
    z-index: 1000;
    display: flex;
}

.popup {
    background-color: var(--white);
    z-index: 1000;
    display: flex;
    gap: 24px;
    padding: 24px;
    position: relative;
    max-width: 632px;
    min-height: 92px;
    border-radius: 8px;
    font-family: "Avenir LT Pro", serif;
    line-height: 22px;
    box-shadow: 0 0 4px #00000014, 0 4px 8px -2px #00000014, 0 8px 16px -4px #00000014;
}

.popup-content {
    display: flex;
    width: 680px;
    flex-direction: row-reverse;
}

.popup-content img {
    position: absolute;
    width: 132px;
    bottom: 0;
    right: 60px;
}

.popup-text {
    color: var(--background-color-primary);
    text-align: left;
    width: 100%;
}

.popup-text p:first-child {
    font-family: "Avenir LT Pro", serif;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    max-width: 442px
}

.popup-text p {
    line-height: 18px;
    font-size: 14px;
    letter-spacing: normal;
    font-family: "Avenir LT Pro", serif;
    font-weight: 300;
    max-width: 440px;
    margin-top: 0;
}

.popup-text p a {
    margin: 0;
    color: #188e9b;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.popup-text a:hover {
    text-decoration: underline;
}

.popup-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.popup-image img {
    max-height: 100px;
    width: auto;
}

@media screen and (max-width: 1024px) {
    .popup {
        display: none;
    }
}

.close-btn {
    top: -8px;
    border: none;
    cursor: pointer;
    background: lightgrey;
    border-radius: 55%;
    color: var(--background-color-primary);
    width: 24px;
    height: 24px;
    padding: 8px 0;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.close-btn span {
    position: relative;
    font-size: 16px;
    font-weight: 800;
    width: 1em;
    height: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}


/*#mobile-message {*/
/*    display: none;*/
/*}*/

.login-pf body {
    min-height: 100vh;
    background-color: #181829;
    display: block;
    color: #ffffff;
}

@media only screen and (min-width: 992px) {
    .kc-logo-text {
        margin-left: 6rem;
    }
}

.mdc-text-field .mdc-field-appearance--filled {
    background-color: white;
    border-radius: 5px;
}

.mat-mdc-form-field-focus-overlay {
    border-bottom: yellow !important;
}

.mdc-text-field .mdc-floating-label,
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #ccc;
    left: 0;
    margin-top: -8px;
    font-weight: 300;
    font-family: "Avenir LT Pro", sans-serif;
    font-size: 14px;
}

.mdc-text-field.password-container, .mdc-text-field.code-container {
    padding-bottom: 6px !important;
    padding-top: 16px !important;
}

.mdc-text-field:hover {
    border-bottom: medium !important;
}

.mdc-text-field.mdc-text-field--focused .mdc-floating-label {
    color: var(--color-tint-yellow-base);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
    color: var(--white);
    padding-top: 24px;
}

.mdc-text-field--filled, .mdc-text-field--filled:not(.mdc-text-field--disabled) {
    width: 100%;
    background-color: #181829;
    padding: 0;
}

.mdc-text-field__input::placeholder {
    color: #ccc !important;
}

.mdc-text-field .mdc-text-field__input {
    caret-color: var(--white);
    background-color: rgb(24, 24, 41) !important;
}

.mdc-text-field--disabled.mdc-text-field--filled {
    background-color: #181829;
}

@media screen and (max-width: 992px) {
    .mdc-text-field--disabled.mdc-text-field--filled {
        caret-color: var(--white);
        background-color: #000000;
    }
}

.mdc-text-field--disabled .mdc-text-field__input {
    color: var(--white);
    cursor: no-drop;
}

.mdc-text-field--filled::before {
    display: inline;
}

.mdc-text-field--filled::after {
    padding-bottom: 16px;
}

.mdc-text-field--filled .mdc-line-ripple::after {
    background: transparent !important;
}

.mdc-text-field--filled .mdc-line-ripple::before {
    border-bottom-color: #ccc !important;
}

@media only screen and (max-width: 992px) {
    body {
        background-color: #000000 !important;
    }

    .kc-logo-text {
        height: 60px;
        width: 55px;
    }

    #kc-header-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 32px 0;
    }

    .form-group .mdc-text-field .mdc-text-field__input {
        background-color: #000000 !important;
    }

}

@media (min-width: 768px) {
    #kc-container-wrapper {
        position: absolute;
        width: 100%;
    }

    .login-pf .container {
        padding-right: 80px;
    }

    #kc-locale {
        position: relative;
        text-align: right;
        z-index: 9999;
    }
}

.kc-social-providers {
    margin-bottom: 20px;
    text-align: center;
}

.kc-social-providers ul {
    list-style: none;
    padding: 0;
}

.kc-social-providers li {
    display: inline-block;
    margin: 10px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background-color: #f9f9f9;
    transition: background-color 0.3s;
}

.btn-social:hover {
    background-color: #e0e0e0;
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    #kc-header-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px !important;
        font-weight: bold;
        letter-spacing: 0;
    }

    div.kc-logo-text {
        margin: 0;
        background-size: 100%;
    }

    #kc-social-providers li {
        display: block;
        margin-right: 5px;
    }
}

/*    .login-pf .container {*/
/*        padding-top: 15px;*/
/*        padding-bottom: 15px;*/
/*    }*/
/*    #kc-locale {*/
/*        position: absolute;*/
/*        width: 200px;*/
/*        top: 20px;*/
/*        right: 20px;*/
/*        text-align: right;*/
/*        z-index: 9999;*/
/*    }*/
/*    #kc-logo-wrapper {*/
/*        background-size: 100px 21px;*/
/*        height: 21px;*/
/*        width: 100px;*/
/*        margin: 20px 0 0 20px;*/
/*    }*/
/*    .card-pf {*/
/*        height: 100% !important;*/
/*    }*/
/*}*/
@media (min-height: 646px) {
    #kc-container-wrapper {
        bottom: 12%;
    }
}

@media (max-height: 645px) {
    #kc-container-wrapper {
        padding-top: 50px;
        top: 20%;
    }
}

.card-pf form.form-actions .btn {
    float: right;
    margin-left: 10px;
}

#kc-reset-password-form {
    min-height: 263px;
    margin-top: 24px;
}

#kc-reset-password-form .form-group.login-pf-settings {
    margin-top: 150px;
}

#kc-form-login {
    display: flex;
    flex-direction: column;
    min-height: 263px;
    margin-top: 20px;
}

#backToApplication {
    color: var(--color-tint-yellow-base);
    text-decoration: none;
}

#backToApplication:hover {
    color: #ffdd00;
}

#kc-form-buttons #kc-login {
    margin-top: 57.5px;
}

#kc-form-buttons button[type="submit"] span {
    color: #1a1a1a;
}

#kc-form-buttons.form-group {
    padding-bottom: 0;
}

.login-pf-page .login-pf-brand {
    margin-top: 20px;
    max-width: 360px;
    width: 40%;
}

.card-pf {
    margin: 0 auto;
    padding: 0;
    max-width: 300px;
    border-top: 0;
    width: 100%;
    max-height: 100%;
    font-family: "Avenir LT Pro", serif;
}

.card-pf-wide {
    margin: 0 auto;
    padding: 0;
    margin-top: -64px;
    max-width: 400px;
    border-top: 0;
    width: 100%;
    max-height: 100%;
    font-family: "Avenir LT Pro", serif;
    @media screen and (max-width: 992px) {
        margin: 0 auto;
        padding: 0;
        max-width: 324px;
    }
}

.login-pf-options {
    font-family: "Avenir LT Pro", sans-serif;
    text-align: center;
    padding-top: 20px;
}

.login-pf-options span a {
    color: var(--color-tint-yellow-base);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
}

.login-pf-options span a:hover {
    color: #ffdd00;
}

.login-pf-page .login-pf-signup {
    font-size: 15px;
    margin-top: 20px;
}

#kc-content-wrapper .row {
    margin-left: 0;
    margin-right: 0;
}

.login-pf-page .login-pf-social-link {
    margin-bottom: 25px;
}

.login-pf-page .login-pf-social-link a {
    padding: 2px 0;
}

.login-pf-page.login-pf-page-accounts {
    margin-left: auto;
    margin-right: auto;
}

.login-pf-page .btn-primary {
    margin-top: 0;
}

/* =======================================
            PROJECT COLOURS
   ======================================= */
/* ---------------------------------------
            PRIMARY COLOUR
   --------------------------------------- */
a {
    color: var(--white);
    line-height: 14px;
}

.project-primary-color {
    color: var(--color-button-primary-enabled) !important;
}

.project-primary-color-background {
    background-color: var(--color-tint-yellow-base) !important;
}

.instruction_summary {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Avenir LT Pro", serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 24px;
}

.instruction {
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-family: "Avenir LT Pro", serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 24px;
}

.instruction a {
    display: inline-block;
    font-family: "Avenir LT Pro", serif;
    color: var(--color-tint-yellow-base);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 18px;
}

.instruction .checkmark {
    width: 12px;
    height: 12px;
    background-color: yellow;
    border-radius: 50%;
    padding: 4px;
    margin-left: 8px;
}

/* ---------------------------------------
            ON PRIMARY COLOUR
   --------------------------------------- */
.project-on-primary-color {
    color: var(--color-button-primary-enabled) !important;
}


/* ---------------------------------------
            SECONDARY COLOUR
   --------------------------------------- */
.project-default-color-background {
    background-color: var(--background-color-primary) !important;
}


/* ---------------------------------------
           SELECT AUTHENTICATION
   --------------------------------------- */
.sliding-tabs {
    display: flex;
    overflow: hidden;
    border-radius: 10px;
    background-color: #343434;
    border: 3px solid rgb(42, 42, 42);
    padding: 4px;
    max-height: 32px;
}

.sliding-tabs button {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Avenir LT Pro", serif;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    background-color: #343434;
    color: #b3b3b3;
    border: 0;
    outline: none;
    cursor: pointer;
    box-shadow: none;
    letter-spacing: 0;
}

.sliding-tabs button:last-child {
    margin-left: 10px;
}

.sliding-tabs .active {
    background-color: #1c1c1c;
    color: #fff101;
    cursor: default;
    box-shadow: none;
    border-radius: 5px;
    padding: 2px;
}

.tablinks.active {
    background-color: rgb(38, 38, 38);
    color: var(--color-tint-yellow-base);
    transition: transform .2s ease-in-out;
}

.tabcontent {
    display: none;
    border: none;
}

.select-phone-code {
    position: relative;
}

.select-phone-code::after {
    content: "";
    color: #ccc;
}

.select-phone-code label {
    color: #ccc;
    font-weight: 300;
    font-family: "Avenir LT Pro", sans-serif;
    font-size: 14px;
    opacity: .7;
}

.select-phone-code select {
    background-color: unset;
    width: 114px;
    height: 38px;
    font-size: 15px;
    font-weight: 300;
    font-family: "Avenir LT Pro", serif;
    line-height: 26px;
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    border: none;
    background-image: url(../img/flag-swiss.svg);
    color: #ccc;
    background-repeat: no-repeat;
    background-position: 0.4rem center;
    padding: .2rem .4rem .2rem 2rem;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
}

.tabcontent .phone-number-input {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.tabcontent .phone-input {
    outline: none;
    border: none;
    background: none;
    font-size: 1.4rem;
    padding-bottom: 0;
    color: rgb(170, 170, 170);
    padding-right: 88px;
    box-sizing: border-box;
    @media only screen and (max-width: 992px) {
        padding-right: 70px;
    }
}

.tabcontent .phone-input:focus {
    outline: none;
}

.authentication-selection {
    max-width: 420px !important;
}

.authentication-selection .submit-2fa-container {
    margin-top: 2rem;
}

.authentication-selection .security-context {
    font-family: "Avenir LT Pro", serif;
    font-size: 13px;
    font-weight: 300;
    height: 40px;
    letter-spacing: 0;
    padding-bottom: 24px;
    line-height: 20px;
    text-align: center;
    margin: 0;
}

.authentication-selection .security-context a {
    color: var(--color-tint-yellow-base);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 18px;
}

.tabcontent .manual-input-container {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #343434;
    color: white;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 300;
    border-radius: 5px;
    text-align: justify;
    cursor: pointer;
    user-select: none;
    @media screen and (max-width: 768px) {
        letter-spacing: 3px;
    }
}

.tabcontent .manual-input-container:active {
    background-color: #2A2A2A;
}

.tabcontent .manual-input-container span {
    letter-spacing: 3px;
    display: inline-block;
    width: 80%;
    padding-left: 16px;
}

.tabcontent .manual-input-container .copy-button {
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin-top: 8px;
}

.form-group .totp-secret-code {
    display: none;
    text-align: left;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    font-family: "Avenir LT Pro", serif;
    margin-bottom: 8px;
    @media screen and (max-width: 768px) {
        display: inline-block;
    }
}

.form-group .totp-web-secret-code {
    display: none;
    text-align: left;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    font-family: "Avenir LT Pro", serif;
    margin-bottom: 8px;
    @media screen and (min-width: 768px) {
        display: inline-block;
    }
}

.qr-code-container {
    margin-top: 24px;
    @media screen and (max-width: 768px) {
        display: none;
    }
}

.qr-code-container .qr-code-img {
    width: 128px;
    border-radius: 4px;
}

.input-group {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 1.4rem;
    border-bottom: 1px solid #ccc;
}

.wand-container {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    background: #343434;
    padding: 0 10px;
    border-radius: 10px;
    @media screen and (min-width: 767px) {
        display: none;
    }
}

.wand-text {
    display: flex;
    align-items: center;
    flex: 0 0 70%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    height: 54px;
    letter-spacing: 0px;
    line-height: 18px;
    padding: 11px 0 13px 16px;
    text-align: left;
}

.wand-animation {
    flex: 0 0 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wand {
    position: absolute;
    width: 60px;
    height: 10px;
    background-color: #000;
    border-radius: 5px;
    transform: rotate(45deg);
    animation: rotateWand 2s infinite;
}

.wand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 10px;
    background-color: #d28e8e;
    border-radius: 5px 0 0 5px;
}

@keyframes rotateWand {
    0% {
        transform: rotate(125deg);
    }
    50% {
        transform: rotate(160deg);
    }
    100% {
        transform: rotate(125deg);
    }
}

.sparkles {
    position: absolute;
    width: 60px;
    height: 60px;
    background: url('../../resources/img/Magic-stick.gif') no-repeat center;
    background-size: contain;
}


.six-digit-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: .8rem;
    width: 100%;
}

.six-digit-code-container label {
    font-family: "Avenir LT Pro", serif;
    font-size: 13px;
    font-weight: 500;
    height: 24px;
    letter-spacing: 0;
    line-height: 24px;
    width: 100%;
    text-align: left;
}

.auth-code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.auth-code-inputs input {
    display: flex;
    height: 72px;
    border: 1px solid #777;
    border-radius: 4px;
    background-color: transparent;
    color: white;
    text-align: center;
    font-size: 24px;
    outline: none;
    flex: 1;
    width: calc(100% / 6);
    @media screen and (max-width: 992px) {
        height: 50px;
    }
}

.copy-clipboard-container {
    margin-top: 16px;
}

.copy-from-clipboard {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0;
    line-height: 18px;
    text-align: center;
    color: var(--color-tint-yellow-base);
    cursor: pointer;
}

#error-message {
    display: none;
    text-align: left;
    color: #f6ccd1;
    font-weight: 800;
    font-size: 15px;
}

.auth-code-inputs input:focus {
    border-color: var(--color-tint-yellow-base);
}

#loadingSpinner {
    display: none;
    position: relative;
    color: var(--white);
    font-weight: 600;
    animation: spin 1s linear infinite;
    left: 8px;
    top: 8px;
}

.inline-button {
    position: absolute;
    top: 2px;
    right: -4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
    background: none;
    color: var(--color-tint-yellow-base);
    font-weight: 600;
    border: none;
    margin-top: 1rem;
    bottom: 0;
    width: 113px;
    @media only screen and (max-width: 992px) {
        cursor: pointer;
        right: -20px;
        padding-left: 0;
        padding-right: 0;
        width: 95px;
    }
}

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

.custom-tooltip-wrapper {
    width: 28px;
    height: 30px;
    position: absolute;
    right: 0;
    bottom: 6px;
    cursor: pointer;
}

.mdc-tooltip__trigger {
    width: 16px;
    height: 16px;
}


.custom-tooltip {
    position: absolute;
    bottom: 40%;
    transform: translate(16px, -8px);
    left: 56%;
    opacity: 0;
    visibility: hidden;
    color: #333;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    font-size: 0.85rem;
    line-height: 1.3;
    z-index: 1000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    width: max-content;
}


.custom-tooltip__surface ul {
    padding-left: 16px;
    margin: 0;
    font-size: 14px;
    font-family: "Avenir LT Pro", serif;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 20px;
    color: var(--tooltip-text-color);
    background-color: transparent;
}


.custom-tooltip__surface ul li {
    font-size: 14px;
    font-family: "Avenir LT Pro", serif;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 20px;
}

.custom-tooltip__surface ul li a {
    font-family: "Avenir LT Pro", sans-serif;
    color: #00a8e1;
}

.custom-tooltip.show {
    opacity: 1;
    visibility: visible;
}


/*@media only screen and (max-width: 540px) {*/
/*    .card-pf {*/
/*        padding-left: 1.8rem;*/
/*        padding-right: 2.2rem;*/
/*        width: 85%;*/
/*    }*/
/*}*/

/*@media only screen and (min-width: 766px) {*/
/*    #mobile-message {*/
/*        display: none;*/
/*        text-align: center;*/
/*        margin-top: 20px;*/
/*    }*/
/*}*/

/*@media only screen and (max-width: 767px) {*/
/*#kc-content {*/
/*    display: none;*/
/*}*/

/*.card-pf .login-pf-header {*/
/*    display: none;*/
/*}*/

/*    #mobile-message {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 1.6rem;*/
/*}*/

/*#mobile-message .app-links {*/
/*    text-align: center;*/
/*}*/

/*#mobile-message p {*/
/*    max-width: 400px;*/
/*    text-align: center;*/
/*    margin-left: .8rem;*/
/*    margin-right: .8rem;*/
/*}*/
/*}*/