/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

html,
body {
    height: 100%;
    height: -webkit-fill-available;
    width: 100%;
    margin: 0;
    padding: 0
}

body {
    overscroll-behavior-x: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
}


ul {
    margin: 0;
    padding: 0;
    list-style-type: none
}

/* UTILS */

@media screen and (max-width: 599px) {
    .hidden-xs {
        display: none !important
    }
}

@media screen and (min-width: 600px) {
    .hidden-sm {
        display: none !important
    }
}

@media screen and (min-width: 1025px) {
    .hidden-md {
        display: none !important
    }
}

@media screen and (min-width: 1441px) {
    .hidden-lg {
        display: none !important
    }
}

@media screen and (max-width: 599px) {
    .visible-sm {
        display: none !important
    }
    .hide-on-mobile {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .visible-md {
        display: none !important
    }
}

@media screen and (max-width: 1440px) {
    .visible-lg {
        display: none !important
    }
}

.fill {
    width: 100%;
}

.text-center {
    text-align: center
}

.flex {
    display: flex;
    flex-wrap: wrap
}

.flex.horizontal {
    flex-direction: row
}

.flex.horizontal-reverse {
    flex-direction: row-reverse
}

.flex.vertical {
    flex-direction: column
}

.flex.inline, 
.inline-flex {
    display: inline-flex
}

.flex.no-wrap {
    flex-wrap: nowrap
}

.row {
    display: flex;
    margin-left: 0;
    margin-right: 0
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start
}

.items-inital {
    align-items: initial
}

.items-end {
    align-items: flex-end
}

.items-baseline {
    align-items: baseline
}

.justify-center {
    justify-content: center
}

.justify-start {
    justify-content: flex-start
}

.justify-between {
    justify-content: space-between
}

.justify-end {
    justify-content: flex-end
}

.row,
.column {
    display: flex;
    flex-wrap: wrap
}

.row.inline,
.column.inline {
    display: inline-flex
}

.row.reverse {
    flex-direction: row-reverse
}

.column {
    flex-direction: column
}

.column.reverse {
    flex-direction: column-reverse
}

.wrap {
    flex-wrap: wrap
}

.no-wrap {
    flex-wrap: nowrap
}

.reverse-wrap {
    flex-wrap: wrap-reverse
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-16 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}


.pos-relative {
    position: relative;
}

.hidden {
    visibility: hidden;
    display: none;
}
.text-center {
    text-align: center;
}

/* END: UTILS */

/* LAYOUT */
.onboarding-layout-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-container {
    flex: 1;
    flex-basis: 100%;
    align-items: stretch;
    justify-content: stretch;
}
/* SITE HEADER */
.site-header{
    display: flex;
    align-items: center;
    height: 100px;
}
.site-header:not(.header-full):after {
    content: "";
    background: var(--theme-dark-color, #120C2B);
    flex-basis: 50%;
} 
.site-header .operational-status-link {
    padding-right: 40px;
}
.site-header .language-selector-dropdown-wrapper {
    padding-left: 40px;
    transform: translate3d(-10px, 0, 0);
}

.header-button-wrapper {
    margin-bottom: 16px;
    display: flex;
    width: 100%;
}
.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}

.back-button:hover .back-button-icon{
    background: #EBE6FF;
}

.back-button-icon {
    background: var(--theme-bright-light, #fff);
    border-radius: 38px;
    padding: 11px;
}

/* LANGUAGE SELECTOR */
.language-selector-dropdown-wrapper {
    color: var(--theme-onboarding-language-color)
}

.language-selector-dropdown-wrapper .language-icon {
    transform: translate3d(4px, 0, 0);
    width: 13px;
}

.language-selector-dropdown-wrapper .choices__inner {
    background: transparent;
    border-color: transparent;
    display: flex;
    align-items: center
}

.language-selector-dropdown-wrapper .choices[data-type*=select-one]:after {
    background-image: var(--theme-onboarding-dropdown-arrow-bg-image);
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
    border: 0;
    margin: 0;
    top: 50%;
    transform: translate3d(4px, -50%, 0);
    transition: transform 0.2s ease;
}

.language-selector-dropdown-wrapper .choices[data-type*=select-one].is-open:after {
    margin-top: 0;
    transform: rotate(180deg) translate3d(-4px, 50%, 0);
}
.is-focused .choices__inner, .is-open .choices__inner {
    border-color: transparent !important;
}

.language-selector-dropdown-wrapper .choices .choices__item {
    white-space: nowrap;
    font-size: 12px;
}

.language-selector-dropdown-wrapper .choices .choices__list--dropdown {
    left: 0;
    width: auto;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
    min-width: 150px;
    max-width: 250px;
    padding-top: 5px;
    padding-bottom: 5px
}


.language-selector-dropdown-wrapper .choices .choices__list--dropdown .choices__item--selectable {
    padding: 5px 16px;
    color: rgba(0, 0, 0, .87)
}

.card {
    background: var(--theme-bright-light);
    box-shadow: 
        0px 23px 51px 0px rgba(0, 0, 0, 0.03),
        0px 92px 92px 0px rgba(0, 0, 0, 0.03),
        0px 207px 124px 0px rgba(0, 0, 0, 0.02),
        0px 368px 147px 0px rgba(0, 0, 0, 0),
        0px 575px 161px 0px rgba(0, 0, 0, 0);

    max-height: fit-content;
    gap: 8px;
    padding: 32px;
    border-radius: 16px;
}

.card a {
    text-decoration: none;
}

.card a:not(.zenegy-button) {
    color: var(--theme-form-field-link-text-color, #6E30FD);
    font-weight: 500;
    text-decoration: none;
    line-height: 20px;
    font-size: 12px;
}

.card,
.header-button-wrapper {
    max-width: 530px;
    min-width: 400px;
}

.wide-card .card,
.wide-card .header-button-wrapper {
    max-width: 615px;
    min-width: 615px;
}

.form-wrapper {
    flex-basis: 100%;
}

.card header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 24px;
}

.card header h1,
.card header .title {
    color: var(--theme-dark-color, #120C2B);
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 8px;
}

.card header h2,
.subtitle {
    color: var(--theme-mono-l50, #808080);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}


/* LAYOUT */
.left-layout-panel {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    justify-content: center;
    align-items: center;
}
.left-layout-panel:not(:has(+ .right-banner-layout)) {
    flex-basis: 100%;
}
.left-layout-panel:not(:has(+ .right-banner-layout)) .content-box-wrapper {
    flex-basis: 100%;
}
.left-layout-panel:not(:has(+ .right-banner-layout)) .card,
.left-layout-panel:not(:has(+ .right-banner-layout)) .header-button-wrapper {
    max-width: 1200px;
    min-width: 400px;
}

.left-layout-panel:not(:has(+ .right-banner-layout)) .header-button-wrapper {
    width: 100%;
}

.content-box-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-basis: 50%;
    margin-bottom: 30px;
    padding: 0 20px;
}

.right-banner-layout {
    flex-basis:50%;
    background: var(--theme-dark-color, #120C2B);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px 60px;
    box-sizing: border-box;
}

.right-banner-layout img {
    width: 100%;
    max-width: 477px;
    height: 477px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.right-banner-layout .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--theme-bright-light, #FFF);
    max-width: 500px;
}

.right-banner-layout .banner-text {
    line-height: 1.2;
}

.right-banner-layout .banner-text p {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.right-banner-layout .banner-text .username {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-bright-light, #FFF);
}

.right-banner-layout .banner-text .location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
}

/* Opening quote */
.right-banner-layout .banner-text p::before,
.right-banner-layout .banner-text p::after {
    content: "";
    display: inline-block;
    background: url("/css/themes/zenegy-rebrand/img/quotes.svg") no-repeat center center;
    background-size: 11px 11px;
    width: 11px;
    height: 11px;
    vertical-align: middle;
}
.right-banner-layout .banner-text p::before {
    transform: translate3d(0,-100%,0);
}

.right-banner-layout .banner-text p::after {
    transform: translate3d(0,-50%,0);
}

.site-footer {
    position: fixed;
    bottom: 0;
    width: 50%;
    padding: 0 40px;
}

.operational-status-link a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #707070;
    font-size: 12px;
    line-height: 20px;
    text-decoration: none;
}


/* FORM FIELD */
.zenegy-form-field {
    margin-bottom: 8px;
}

.site-footer {
    margin-bottom: 0;
}

.field-group {
    display: flex;
    gap: 8px;
}

.field-group #passwordCheckList {
    margin-bottom: 16px;
}

.field-group .zenegy-form-field {
    flex: 1;
}

.zenegy-form-field .zenegy-form-field-label label {
    position: absolute;
    left: 16px;
    top: 0;
    font-size: 14px;
    color: var(--theme-form-field-label-text-color, #848484);
    pointer-events: none;
    transition: 0.2s ease;
    transform: translate3d(0, 17px, 0);
    transform-origin: left top;
    z-index: 1;
}

.zenegy-form-field .zenegy-form-field-label:has(+ .zenegy-form-field-element-wrapper .zenegy-form-field-element > input:focus) label,
.zenegy-form-field .zenegy-form-field-label:has(+ .zenegy-form-field-element-wrapper .zenegy-form-field-element > input:not([type="hidden"]):not(:placeholder-shown)) label,
.zenegy-form-field .zenegy-form-field-label:has(+ .zenegy-form-field-element-wrapper:is(.is-active)) label,
.zenegy-form-field-element:has(input:focus) label,
.zenegy-form-field-element:has(input:not([type="hidden"]):not(:placeholder-shown)) label{
    transform: translate3d(0,8px,0) scale(0.85);
    line-height: 20px;
}

 
.zenegy-form-field-prefix {
    background: var(--theme-form-field-prefix-background, #F0F0F0);
    border-radius: 16px;
    margin-left: 4px;
}

.zenegy-form-field .choices__list--dropdown,
.zenegy-form-field .choices__list {
    width: auto !important;
    max-width: 200px;
}

.zenegy-form-field .choices__list--dropdown input {
    border-radius: 0;
}
.zenegy-form-field .choices__list--dropdown .choices__item {
    white-space: nowrap;
}

.zenegy-form-field-prefix .choices__inner {
    background: transparent;
    border: 0;
    padding-top: 9.5px;
    padding-bottom: 9.5px;
}
.has-error.zenegy-form-field-element-wrapper {
    border: 1px solid rgba(255, 30, 70, 1);
}
.error-message {
    background: var(--theme-error-message-background-color, #FF1E46);
    color: var(--theme-error-message-text-color, #fff) !important;
    padding: 6px 16px;
    border-radius: 16px;
    margin: 8px 0;
    font-size: 12px;
    line-height: 20px;
}

p.error-message:empty {
    display: none;
}


/*** INPUT WRAP ***/
.zenegy-form-field-wrapper {
    position: relative;
}

.zenegy-form-field-element-wrapper {
    border: 1px solid var(--theme-input-border-color, #F0F0F0);
    border-radius: 16px;
    flex-wrap: nowrap;
}
.zenegy-form-field-element {
    flex: 1;
}
/*** INPUT ***/
.zenegy-form-field-wrapper input {
    width: 100%;
    padding: 26px 16px 7px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 16px;
    border: 0;
    outline: none;
    transition: border 0.2s ease;
    color: var(--theme-input-text-color, #323232);
}

/* floating label placeholder trick */
.zenegy-form-field-wrapper input::placeholder {
    color: transparent;
}

/* BUTTON */

.zenegy-button:disabled {
    cursor: not-allowed;
    background: rgba(217, 217, 217, 1);
}

.zenegy-button {
    border: 0;
    outline: none !important;
    cursor: pointer;
    padding: 18px 16px;
    border-radius: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--theme-primary-button-background-color, rgba(51, 16, 112, 1));
    color: var(--theme-primary-button-text-color, #fff);

    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zenegy-button:not(.outline-button):hover:not(:disabled), .zenegy-button:not(.outline-button):focus:not(:disabled) {
    background: var(--theme-primary-button-hover-background-color, #1E0A43);
}

.zenegy-button.inline-flex {
    padding: 12px 16px;
    width: auto;
    display: inline-flex;
}

.zenegy-button-wrapper {
    gap: 8px;
}

.zenegy-button img {
    width: 16px;
    margin-left: 8px;
}

.outline-button {
    border: 1px solid var(--theme-outline-button-border-color);
    background: transparent;
    color: var(--theme-outline-button-text-color) !important;
    gap: 8px;
    padding: 17px 16px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;

    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;

}
.outline-button:hover {
    background: var(--theme-outline-button-hover-background-color);
}
/* END BUTTON */

.signup-wrapper {
    margin-top: 32px;
}
.forgot-password-wrapper,
.login-msg-wrapper {
    color: var(--theme-form-field-label-text-color, rgba(17, 17, 17, 0.6));
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.forgot-password-wrapper,
.login-msg-wrapper {
    letter-spacing: 0;
    line-height: 20px;
}
.forgot-password-wrapper .forgot-password,
.login-msg-wrapper .forgot-password {
    margin-bottom: 8px
}
.forgot-password-wrapper a:hover,
.login-msg-wrapper a:hover {
    text-decoration: none
}

.separator {
    display: block;
    font-size: 1.2rem;
    line-height: 2rem;
    color: var(--theme-input-border-color, #F0F0F0);
    margin-bottom: 24px;
    margin-top: 16px;
    position: relative;
    height: 15px;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
}

.separator::before {
    border-bottom: 1px solid var(--theme-input-border-color, #F0F0F0);
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: 2px
}

.separator span {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    color: var(--theme-mono-l50, #808080);
    background: var(--theme-bright-light, #FFF);
    transform: translate3d(0, -40%, 0);
    padding: 0 8px;
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
    .card {
        padding: 30px 24px;
    }
}

@media screen and (max-width: 992px) {
    .content-container {
        flex-basis: 100%;
        justify-content: center;
    }
    .site-header:after {
        display: none;
    }
    .right-banner-layout {
        display: none;
    }
    .site-footer {
        width: 100%;
    }
}

@media screen and (max-width: 1300px) {
    .onboarding-layout-container:has(.content-box-wrapper.wide-card) .right-banner-layout{
        display: none;
    }
    .onboarding-layout-container:has(.content-box-wrapper.wide-card) .left-layout-panel  {
        flex-basis: 100%;
    }
    .onboarding-layout-container:has(.content-box-wrapper.wide-card) .site-header:after  {
        display: none;
    }
}

@media screen and (max-width: 680px) {
    .wide-card .card {
        max-width: 530px;
        min-width: 400px;
        width: 100%;
    }
    .wide-card .header-button-wrapper {
        width: 100%;
        max-width: none !important;
        min-width: 0 !important;
    }
    .field-group {
        flex-direction: column;
    }

    .content-box-wrapper {
        padding: 32px 40px;
    }
    
}

@media screen and (max-width: 599px) {
    .site-header {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .site-header {
        padding: 0 20px;;
    }
    .logo {
        margin: 0 20px !important;
    }
    .language-selector-dropdown-wrapper .choices .choices__list--dropdown {
        right: 0;
        left: auto;
    }

}

@media screen and (max-width: 480px) {
    .left-layout-panel {
        flex-basis: 100%;
        align-items: stretch;
    }
    .left-layout-panel:not(:has(+ .right-banner-layout)) .card,
    .left-layout-panel:not(:has(+ .right-banner-layout)) .header-button-wrapper,
    .wide-card .card,
    .wide-card .header-button-wrapper,
    .card, .header-button-wrapper {
        min-width: 280px;
        padding: 30px 24px;
        width: 100%;
    }
    .site-header {
        padding: 0;
    }
    .site-header {
        padding: 0;
    }
    .site-header {
        padding: 0;
    }
    .content-box-wrapper {
        padding: 32px 20px;
    }
    .header-button-wrapper {
        width: 100%;
        min-width: 0 !important;
        max-width: none !important;
        padding: 0 !important;
    }
}

/* PASSWORD VALIDATION LIST */
#passwordCheckList {
    margin-top: 12px;
    padding-left: 16px;
}
.password-validation-line {
    gap: 8px;
    font-size: 12px;
    line-height: 20px;
    color: var(--theme-form-field-label-text-color);
    flex-wrap: nowrap;
    margin-bottom: 4px;
}

.password-validation-line:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
}

.password-validation-line.is-valid:before {
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_8_1442)"><path d="M6.00016 8.00004L7.3335 9.33337L10.0002 6.66671M14.6668 8.00004C14.6668 11.6819 11.6821 14.6667 8.00016 14.6667C4.31826 14.6667 1.3335 11.6819 1.3335 8.00004C1.3335 4.31814 4.31826 1.33337 8.00016 1.33337C11.6821 1.33337 14.6668 4.31814 14.6668 8.00004Z" stroke="%236E30FD" stroke-width="1.33333" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_8_1442"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
    background-size: 12px 12px;
    transform: translate3d(0, 0, 0) scale(1.33);
}

.checkbox-text {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 0;
    margin-bottom: 8px;
    color: var(--theme-input-text-color, #323232);
    display: flex;
    align-items: flex-start;
}

.checkbox-text input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    opacity: 0.35;
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-text input[type="checkbox"]:checked {
    opacity: 1;
}

.success-icon {
    margin-bottom: 24px;
}

/* OTP INPUTS */
.otp-input {
    width: 48px;
    height: 48px;
    background: transparent;
    font-size: 1.4rem;
    border: 1px solid #979797;
    border-radius: 10px
}

.otp-input:last-child {
    margin-right: 0
}

.otp-input::-webkit-inner-spin-button, .otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

.otp-input:focus, .otp-input.focus {
    border: 1px solid #7fd3ff;
    box-shadow: 0 0 3px #7fd3ff;
    outline: none
}

.otp-submit-button {
    display: none;
}

.otp-inputs {
    justify-content: center;
}

.c-otp > div {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 9px;
}

.text-dark {
    color: var(--theme-text-dark, #616161);
    font-weight: 500;
}

.text-label {
    color: var(--theme-mono-l50, #808080);
}

.text-l20 {
    color: var(--theme-input-text-color, #323232);
}

.countdown-timer-text {
    margin-top: 16px;
    margin-bottom: 24px;
}

@media(max-width: 420px) {
    .c-otp > div {
        gap: 8px;
    }
    .otp-input {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media(max-width: 360px) {
    .c-otp > div {
        gap: 5px;
    }
    .otp-input {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}
/* END: OTP INPUTS */

/* SLIDE TOGGLE */
.mat-slide-toggle {
    display: inline-block;
    height: 24px;
    padding-left: 10px;
    padding-bottom: 5px;
    padding-top: 2px;
    margin-bottom: 5px;
    max-width: 100%;
    line-height: 24px;
    white-space: nowrap;
    outline: none;
    -webkit-tap-highlight-color: transparent
}

.active-toggle {
    cursor: auto !important
}

.active-toggle .mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container {
    transform: translate3d(18px, 2px, 0)
}

.active-toggle .mat-slide-toggle-thumb {
    background: #fff !important
}

.active-toggle .mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
    background-color: var(--theme-success);
}

.mat-slide-toggle-label {
    height: inherit
}

.mat-slide-toggle.mat-checked .mat-slide-toggle-bar, .mat-slide-toggle .mat-slide-toggle-bar {
    background-color: var(--theme-thumb-track-background);
    transition: all 80ms linear;
    transition-property: background-color;
    position: relative;
    width: 37px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 28px;
    transition-delay: 50ms;
}

.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb-container {
    transform: translate3d(3px, 2px, 0);
    top: 0 !important;
    height: 16px;
    width: 16px;
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    left: 0;
    transition: all 80ms linear;
    transition-property: transform
}

.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
    background-color: var(--theme-bright-light);
    height: 16px;
    transition: all 80ms linear;
    transition-property: background-color;
    transition-delay: 50ms;
    border-radius: 50%;
    width: 16px
}

.auth-option {
    gap: 14px;
    margin-bottom: 24px;
}

.auth-option .item-text {
    flex: 1;
}
.expansion-panel--headline {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-input-text-color);
}
.expansion-panel--tagline {
    color: var(--theme-mono-l50);
}

@media(max-width: 480px) {
    .auth-option-icon {
        display: none;
    }
}
/* TOGGLE PASSWORD BUTTON */
.toggle-password-button .icon-password-hidden {
    display: block;
}
.toggle-password-button .icon-password-visible {
    display: none;
}
.toggle-password-button.is-password-visible .icon-password-hidden{
    display: none;
}

.toggle-password-button.is-password-visible .icon-password-visible {
    display: block;
}

.auth-type-source {
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.auth-type-source img {
    width: 20px;
}

.two-factor-authentication-dropdown:not(.is-disabled) .choices__inner{
    background-color: var(--theme-bright-light, #FFFFFF);
    border-radius: 16px;
}
.two-factor-authentication-dropdown .choices__inner {
    border: 0;
    border-radius: 14px;
}
.two-factor-authentication-dropdown .choices__list--single { 
    padding: 18px 16px 0px 8px;

}

.fill {
    width: 100%;
}
