:root {
    --fci-bg-color-scoll-track: #d7d7d7;
    --fci-font-family: Roboto;
    --fci-main-color: #0052CC;
    --fci-doc-version: #636079;
    --fci-doc-title-color: #000000;
    --fci-suggestion-color: #616161;
    --fci-bg-front-color: #ff9800;
    --fci-doc-front-color: #FFFFFF;
    --fci-nfc-title-color: #636079;
    --fci-nfc-message-color: #393552;
    --fci-nfc-cancel-color: #76767c;
    --fci-nfc-bg-cancel-color: #F3F1FE;
    --fci-live-guide-color: #ffffff;
    --fci-live-bg-guide-color: #FF9800;
    --fci-live-err-title-color: #000000;
    --fci-live-err-message-color: #d84647;
    --fci-live-err-content-color: #d84647;
    --fci-live-err-bg-content-color: #ffebee;
    --fci-gray-4: #E0E0E0;
    --fci-gray-7: #555555;
    --fci-gray-10: #161616;
    --fci-blue-1: #ECF5FF;
    --fci-action-step-bg: #00ba00;
    --fci-action-step-line-color: #BCBCBE;
    --fci-capture-box-item-pad-x: 15%;
    --fci-capture-box-item-pad-y: 20%;
    --fci-capture-box-valid-color: #00ff00;
    --fci-capture-box-invalid-color: #ff0000;
    --fci-capture-box-border-radius: 1.5rem;
    --fci-capture-box-border-width: 3px;
    --fci-curve-box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px 5000px #21212180;
    --fci-bg-color-scroll: #aab2bf;
    --fci-bg-color-scroll-2: #d9d9d9;
    --fci-bg-color-scroll-track: #d7d7d7;
    --fci-border-radius-scroll: 4px;
    --fci-width-scroll: 6px;
    --fci-height-scroll: 6px
}

.fci-scroll-custom::-webkit-scrollbar {
    width: var(--fci-width-scroll);
    height: var(--fci-height-scroll)
}

.fci-scroll-custom::-webkit-scrollbar-thumb {
    background: var(--fci-bg-color-scroll);
    border-radius: var(--fci-border-radius-scroll)
}

.fci-scroll-custom::-webkit-scrollbar-track {
    box-shadow: inset 0 0 var(--fci-border-radius-scroll) var(--fci-bg-color-scroll-2);
    border-radius: var(--fci-border-radius-scroll);
    background: var(--fci-bg-color-scroll-track)
}

.fci-layout-container * {
    color-scheme: only light
}

#warning-orientation {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #f5f5f5;
    display: none;
    align-items: center;
    justify-content: center
}

.fci-layout-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1400;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover
}

.fci-layout-container .fci-layout-content {
    border-radius: 10px;
    box-shadow: 0 10px 30px #00000014;
    background-color: #fff;
    max-height: 95%;
    max-width: 95%;
    height: 95%;
    aspect-ratio: 9/16;
    position: relative;
    overflow-y: auto
}

.fci-layout-container .fci-layout-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9
}

.fci-layout-wrapper:has(#fci-result-container) {
    overflow: auto !important
}

.fci-layout-outlet-container {
    flex-grow: 1;
    height: 100%;
    position: relative
}

@media screen and (max-width: 640px) {
    .fci-layout-content {
        width: 100%;
        height: unset;
        aspect-ratio: 1 / 2
    }
}

#fci-layout-loading {
    position: absolute;
    z-index: 10
}

#fci-layout-outlet {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9fafb
}

#fci-layout-outlet:has(#fci-liveness-container) {
    padding: 0
}

.fci-layout-container .button.fci-btn {
    border-radius: 10px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 400;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.fci-layout-container button.fci-btn:hover {
    filter: brightness(110%)
}

.fci-layout-container button.fci-btn-primary {
    outline: none;
    background-color: var(--fci-main-color);
    color: #fff;
    box-sizing: border-box;
    border: 1px solid transparent;
    padding: 6px 14px;
    font-size: 14px
}

.fci-layout-container button.fci-btn-sm {
    border-radius: 4px;
    padding: 4px 8px !important;
    font-size: 14px !important
}

.fci-layout-container button.fci-btn-lg {
    border-radius: 10px;
    padding: 8px 18px !important;
    font-size: 16px !important
}

.fci-layout-container button.fci-btn-outlined {
    background-color: #fff;
    color: var(--fci-main-color);
    box-sizing: border-box;
    border: 1px solid var(--fci-main-color);
    padding: 6px 14px;
    font-size: 14px
}

.fci-layout-container button.fci-btn-rounded {
    border-radius: 9999px !important
}

#text-warning-ipadpro {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #fff;
    height: 50px;
    font-size: 13px
}

.fci-liveness-container {
    height: 100%;
    display: flex;
    flex-direction: column
}

.fci-liveness-video {
    width: 100%;
    aspect-ratio: 3 / 4;
    position: relative
}

.fci-liveness-video-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-mask-image: radial-gradient(ellipse, black 60%, rgba(0, 0, 0, .6) 60%);
    mask-image: radial-gradient(ellipse, #000 60%, #0009 60%);
    -webkit-mask-size: 90% 90%;
    mask-size: 90% 90%;
    -webkit-mask-position: 60% 50%;
    mask-position: 60% 50%
}

.fci-liveness-video-oval {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.fci-liveness-footer {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--fci-main-color)
}

#liveness-video {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg)
}

#canvas {
    transform: scaleX(-1)
}

#fci-liveness-notice {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 12px
}

#fci-liveness-notice-text {
    background-color: var(--fci-bg-front-color);
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 700;
    color: #fff;
    display: none
}

#animation-arrows-left-container,
#animation-arrows-right-container {
    position: absolute;
    width: 150px;
    height: 150px
}

#fci-liveness-error-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: auto
}

#fci-liveness-error-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center
}

#fci-liveness-error-wrapper>*+* {
    margin-top: 8px;
    margin-bottom: 8px
}

img.fci-liveness-error-image {
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 3 / 4;
    height: 100%;
    border-radius: 6px;
    width: 100%;
    background-color: var(--fci-blue-1)
}

#fci-liveness-error-title-container {
    display: flex;
    flex-direction: column;
    align-items: center
}

#fci-liveness-error-title {
    font-size: 28px;
    letter-spacing: .025em;
    color: var(--fci-live-err-title-color)
}

#fci-liveness-error-detail {
    font-size: 18px;
    font-weight: 700;
    color: var(--fci-live-err-message-color)
}

.fci-liveness-error-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.fci-liveness-error-image-wrapper>*+* {
    margin-top: 8px;
    margin-bottom: 8px
}

#fci-liveness-error-image-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 32px auto 20px;
    width: 100%
}

.fci-liveness-error-image-label {
    font-size: 16px;
    color: #000
}

#fci-liveness-error-message {
    color: var(--fci-live-err-content-color);
    background-color: var(--fci-live-err-bg-content-color);
    width: 100%;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px
}

#fci-liveness-error-action {
    display: flex;
    justify-content: center;
    align-items: center
}

#fci-liveness-error-action-btn {
    width: 100%
}

#fci-result-container {
    height: 100%;
    width: 100%;
    overflow-y: auto
}

#fci-result-files {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 40vh;
    position: relative;
    justify-content: center;
    overflow: hidden
}

.fci-result-file-wrapper {
    position: absolute;
    background-color: #edeeed;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 100%;
    display: flex;
    justify-content: center;
    visibility: hidden;
    z-index: 0;
    overflow: hidden
}

.fci-result-file-wrapper-active {
    z-index: 1 !important;
    visibility: visible
}

.fci-result-file-item {
    -o-object-fit: contain;
    object-fit: contain;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute
}

#fci-result-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.fci-layout-container button.fci-result-tab-btn {
    cursor: pointer;
    font-weight: 700;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    outline: none;
    color: var(--fci-gray-7);
    background-color: transparent;
    box-sizing: border-box;
    border: 1px solid transparent;
    padding: 16px;
    font-size: 16px;
    letter-spacing: .025em;
    flex-grow: 1
}

.fci-layout-container button.fci-result-tab-btn:hover {
    color: var(--fci-main-color) !important
}

.fci-result-tab-btn-active {
    color: var(--fci-main-color) !important;
    background-color: #fff !important
}

#fci-result-table-container {
    background-color: #fff;
    padding: 8px 6px;
    display: flex;
    flex-direction: column
}

#fci-result-table-container>*+* {
    margin-top: 4px;
    margin-bottom: 4px
}

#fci-result-table-liveness table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed
}

#fci-result-table-liveness table tr {
    border: 1px solid var(--fci-gray-4);
    box-sizing: border-box
}

#fci-result-table-liveness table td,
#fci-result-table-liveness table th {
    border: none;
    padding: 8px;
    word-break: break-word;
    text-transform: capitalize;
    font-size: 14px
}

#fci-result-table-liveness table td:nth-child(2n) {
    color: var(--fci-gray-10);
    font-weight: 700;
    text-align: end;
    text-transform: uppercase;
    font-size: 16px
}

#fci-result-table-ocr-header {
    background-color: var(--fci-main-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px;
    letter-spacing: .025em;
    display: flex;
    justify-content: center;
    border-radius: 2px;
    font-size: 16px
}

#fci-result-table-ocr table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed
}

#fci-result-table-ocr table td,
#fci-result-table-ocr table th {
    border: 1px solid var(--fci-gray-4);
    padding: 8px;
    word-break: break-word;
    text-transform: capitalize;
    font-size: 14px;
    display: flex;
    flex-direction: column
}

#fci-result-table-ocr table span:nth-child(2n) {
    color: var(--fci-gray-10);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    margin-top: 2px
}

#fci-result-action-btn-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

#fci-action-step-container {
    padding-top: 16px;
    background-color: #f9fafb;
    z-index: 2
}

.fci-action-step {
    counter-reset: step;
    max-width: 90%;
    min-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    display: flex;
    justify-content: center
}

.fci-action-step li {
    list-style: none;
    display: inline-block;
    width: 120px;
    position: relative;
    text-align: center;
    cursor: pointer;
    font-size: 14px
}

.fci-action-step li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid var(--fci-action-step-line-color);
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 5px;
    background-color: #fff;
    position: relative;
    z-index: 2
}

.fci-action-step li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--fci-action-step-line-color);
    top: 15px;
    left: -50%;
    z-index: 1
}

.fci-action-step li:first-child:after {
    content: none
}

.fci-action-step li.fci-action-step-active {
    color: var(--fci-main-color)
}

.fci-action-step li.fci-action-step-active:before {
    background-color: var(--fci-action-step-bg);
    color: #fff
}

.fci-action-step li.fci-action-step-active-line+li:after {
    background-color: var(--fci-action-step-bg)
}

.fci-action-step li.fci-action-step-active-line:before {
    content: "✓"
}

.fci-loading-ring-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fffffff2;
    flex-direction: column;
    overflow: hidden
}

.fci-layout-container img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: inline;
    vertical-align: middle
}

.fci-loading-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.fci-loading-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid var(--fci-main-color);
    border-radius: 50%;
    animation: fci-loading-ring 1.2s cubic-bezier(.5, 0, .5, 1) infinite;
    border-color: var(--fci-main-color) transparent transparent transparent
}

.fci-loading-ring div:nth-child(1) {
    animation-delay: -.45s
}

.fci-loading-ring div:nth-child(2) {
    animation-delay: -.3s
}

.fci-loading-ring div:nth-child(3) {
    animation-delay: -.15s
}

@keyframes fci-loading-ring {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

#fci-loading-text {
    margin-top: 8px
}

#fci-liveness-animation-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1400;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden
}

#fci-liveness-animation-guide {
    flex-grow: 1;
    background-color: #fff;
    width: 100%;
    height: 100%
}

#fci-liveness-animation-bottom-container {
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: #fff
}

#fci-liveness-animation-bottom-container>*+* {
    margin-top: 2px;
    margin-bottom: 2px
}

#fci-liveness-animation-bottom-title {
    position: relative;
    color: #000;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
    padding-bottom: 4px
}

#fci-liveness-animation-bottom-details {
    position: relative;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
    padding-bottom: 4px;
    text-align: center
}

#fci-liveness-animation-next-btn {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    outline: none;
    border: none;
    background-color: var(--fci-main-color);
    color: #fff
}

*,
:before,
:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before,
:after {
    --tw-content: ""
}

html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

.fci-layout-container hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

.fci-layout-container h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

.fci-layout-container a {
    color: inherit;
    text-decoration: inherit
}

.fci-layout-container b,
strong {
    font-weight: bolder
}

.fci-layout-container code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

.fci-layout-container small {
    font-size: 80%
}

.fci-layout-container sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

.fci-layout-container sub {
    bottom: -.25em
}

.fci-layout-containe sup {
    top: -.5em
}

.fci-layout-container table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

.fci-layout-container button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

.fci-layout-container button,
select {
    text-transform: none
}

.fci-layout-container button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

.fci-layout-container summary {
    display: list-item
}

.fci-layout-container blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0
}

.fci-layout-container fieldset {
    margin: 0;
    padding: 0
}

.fci-layout-container legend {
    padding: 0
}

.fci-layout-container ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0
}

.fci-layout-container dialog {
    padding: 0
}

.fci-layout-container textarea {
    resize: vertical
}

.fci-layout-container input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

.fci-layout-container input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

.fci-layout-container button,
[role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

.fci-layout-container img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle
}

.fci-layout-container img,
video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.container {
    width: 100%
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.pointer-events-none {
    pointer-events: none
}

.visible {
    visibility: visible
}

.static {
    position: static
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.inset-x-2 {
    left: .5rem;
    right: .5rem
}

.inset-x-auto {
    left: auto;
    right: auto
}

.inset-y-0 {
    top: 0;
    bottom: 0
}

.bottom-0 {
    bottom: 0
}

.bottom-3 {
    bottom: .75rem
}

.bottom-\[17\%\] {
    bottom: 17%
}

.bottom-\[7\%\] {
    bottom: 7%
}

.left-0 {
    left: 0
}

.left-\[25\%\] {
    left: 25%
}

.left-\[6\%\] {
    left: 6%
}

.left-\[7\%\] {
    left: 7%
}

.right-0 {
    right: 0
}

.right-\[10\%\] {
    right: 10%
}

.right-\[25\%\] {
    right: 25%
}

.right-\[7\%\] {
    right: 7%
}

.top-0 {
    top: 0
}

.top-10 {
    top: 2.5rem
}

.top-3 {
    top: .75rem
}

.top-\[17\%\] {
    top: 17%
}

.top-\[7\%\] {
    top: 7%
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-30 {
    z-index: 30
}

.z-50 {
    z-index: 50
}

.col-span-4 {
    grid-column: span 4 / span 4
}

.m-auto {
    margin: auto
}

.\!mx-0\.5 {
    margin-left: .125rem !important;
    margin-right: .125rem !important
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.\!mt-5 {
    margin-top: 1.25rem !important
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.block {
    display: block
}

.flex {
    display: flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.aspect-\[1\/2\] {
    aspect-ratio: 1/2
}

.aspect-square {
    aspect-ratio: 1 / 1
}

.h-1\.5 {
    height: .375rem
}

.h-4 {
    height: 1rem
}

.h-7 {
    height: 1.75rem
}

.h-\[500px\] {
    height: 500px
}

.h-full {
    height: 100%
}

.max-h-0 {
    max-height: 0px
}

.\!min-h-0 {
    min-height: 0px !important
}

.\!w-3\/5 {
    width: 60% !important
}

.w-1\.5 {
    width: .375rem
}

.w-1\/2 {
    width: 50%
}

.w-1\/3 {
    width: 33.333333%
}

.w-10 {
    width: 2.5rem
}

.w-2\/5 {
    width: 40%
}

.w-4 {
    width: 1rem
}

.w-7 {
    width: 1.75rem
}

.w-\[12\%\] {
    width: 12%
}

.w-full {
    width: 100%
}

.\!min-w-0 {
    min-width: 0px !important
}

.min-w-\[250px\] {
    min-width: 250px
}

.grow {
    flex-grow: 1
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-pointer {
    cursor: pointer
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
}

.grid-cols-\[repeat\(auto-fill_\,_minmax\(250px_\,_1fr\)\)\] {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr))
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.items-center {
    align-items: center
}

.\!justify-start {
    justify-content: flex-start !important
}

.justify-end {
    justify-content: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-evenly {
    justify-content: space-evenly
}

.gap-0 {
    gap: 0px
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-5 {
    gap: 1.25rem
}

.space-x-1>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.25rem * var(--tw-space-x-reverse));
    margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-2>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.5rem * var(--tw-space-x-reverse));
    margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-4>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-1>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.25rem * var(--tw-space-y-reverse))
}

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
}

.space-y-20>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse))
}

.space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.break-all {
    word-break: break-all
}

.\!rounded-full {
    border-radius: 9999px !important
}

.rounded {
    border-radius: .25rem
}

.rounded-\[47px\] {
    border-radius: 47px
}

.rounded-\[50px\] {
    border-radius: 50px
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.rounded-t-2xl {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem
}

.rounded-bl-xl {
    border-bottom-left-radius: .75rem
}

.rounded-br-xl {
    border-bottom-right-radius: .75rem
}

.rounded-tl-xl {
    border-top-left-radius: .75rem
}

.rounded-tr-xl {
    border-top-right-radius: .75rem
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-8 {
    border-width: 8px
}

.border-b-0 {
    border-bottom-width: 0px
}

.border-b-2 {
    border-bottom-width: 2px
}

.border-l-2 {
    border-left-width: 2px
}

.border-r-2 {
    border-right-width: 2px
}

.border-t-2 {
    border-top-width: 2px
}

.border-solid {
    border-style: solid
}

.border-black {
    --tw-border-opacity: 1;
    border-color: rgb(0 0 0 / var(--tw-border-opacity, 1))
}

.border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1))
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1))
}

.\!bg-white {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important
}

.bg-black\/40 {
    background-color: #0006
}

.bg-black\/90 {
    background-color: #000000e6
}

.bg-blue-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1))
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.bg-yellow-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1))
}

.bg-zinc-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(228 228 231 / var(--tw-bg-opacity, 1))
}

.bg-zinc-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1))
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.p-0\.5 {
    padding: .125rem
}

.p-1 {
    padding: .25rem
}

.p-2 {
    padding: .5rem
}

.p-4 {
    padding: 1rem
}

.\!px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
}

.\!px-2\.5 {
    padding-left: .625rem !important;
    padding-right: .625rem !important
}

.\!px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
}

.\!py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.\!py-1\.5 {
    padding-top: .375rem !important;
    padding-bottom: .375rem !important
}

.\!py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem
}

.pb-1 {
    padding-bottom: .25rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pb-5 {
    padding-bottom: 1.25rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-5 {
    padding-top: 1.25rem
}

.text-center {
    text-align: center
}

.\!text-\[10px\] {
    font-size: 10px !important
}

.\!text-sm {
    font-size: .875rem !important;
    line-height: 1.25rem !important
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-\[10px\] {
    font-size: 10px
}

.text-\[11px\] {
    font-size: 11px
}

.text-\[9px\] {
    font-size: 9px
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.\!font-normal {
    font-weight: 400 !important
}

.font-bold {
    font-weight: 700
}

.font-light {
    font-weight: 300
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

.tracking-wide {
    letter-spacing: .025em
}

.tracking-wider {
    letter-spacing: .05em
}

.\!text-white {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important
}

.text-black {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1))
}

.text-slate-400 {
    --tw-text-opacity: 1;
    color: rgb(148 163 184 / var(--tw-text-opacity, 1))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.text-yellow-800 {
    --tw-text-opacity: 1;
    color: rgb(133 77 14 / var(--tw-text-opacity, 1))
}

.\!shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1) !important;
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important
}

.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

:root {
    --bg-color-scroll: #aab2bf;
    --bg-color-scroll-2: #d9d9d9;
    --bg-color-scoll-track: #d7d7d7;
    --border-radius-scroll: 4px;
    --width-scroll: 6px;
    --height-scroll: 6px;
    --background: #F1F5F9
}

.last\:border-b:last-child {
    border-bottom-width: 1px
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

@media (prefers-color-scheme: dark) {
    .dark\:bg-gray-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1))
    }

    .dark\:text-yellow-300 {
        --tw-text-opacity: 1;
        color: rgb(253 224 71 / var(--tw-text-opacity, 1))
    }
}

#ekyc-close-btn {
    position: absolute;
    font-size: 20px;
    z-index: 1034;
    color: #183e65;
    right: 15px;
    top: 4px;
    font-weight: bold;
    cursor: pointer;
}


/* Retrigger */
