/* start stepper-register */
.stepper-register {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    pointer-events: none;
}

.stepper-register::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--gray-stroke-light);
    z-index: 1;
}

.step-register {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-register-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 14px;
}

.step-register.active .step-register-circle {
    background: var(--primary);
    color: var(--white);
}

.step-register-text {
    font-size: 12px;
    margin-top: 5px;
}

/* end stepper-register */

/* start floating label */
.input-icon-right {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--text-muted-dark);
    pointer-events: none;
    font-size: 18px;
}

.select2-container--default .select2-selection--multiple {
    cursor: pointer !important;
}

/* end floating label */


.select2-container--default .select2-selection--multiple .select2-selection__clear {
    display: none !important;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    border-radius: 10px;
}

.select2-container--default .select2-dropdown {
    background-color: var(--white) !important;
    border: 1px solid var(--border-light-gray);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* start image upload  */
.image-upload-box {
    width: 160px;
    height: 160px;
    border: 1px dashed var(--primary);
    border-bottom: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: auto;
    background: var(--bg-f8f9fa);
}

.upload-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--primary-darker-3);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    font-size: 14px;
}

@media(max-width:576px) {
    .image-upload-box {
        width: 140px;
        height: 140px;
    }
}

.status-badge-verify{
    position:absolute;
    z-index:10;
    padding:4px 4px;
    color:var(--white);
    font-size:9px;
    font-weight:600;
    display:flex;
    align-items:center;
    box-shadow:0 2px 8px var(--black-alpha-20);
}
.mobile-profile-id {
    font-size: 10px;
    font-weight: 600;
}
.mobile-verified-text {
    font-size: 10px;
}
.mobile-dropdown-menu {
    min-width: 220px;
    border: 1px solid var(--border-gray-light-dee2e6);
    border-radius: 10px;
}
.profile-badges-no-shadow {
    box-shadow: none !important;
}
.offcanvas-name {
    font-size: 13px;
    font-weight: 600;
}
.profile-id-text {
    font-size: 13px;
    font-weight: 600;
}
.desktop-name {
    font-size: 15px;
    font-weight: 600;
}
.desktop-verified-text {
    font-size: 13px;
}
.desktop-dropdown-menu {
    min-width: 230px;
    border: 1px solid var(--border-gray-light-dee2e6);
    border-radius: 12px;
}

.status-badge-verify i{
    font-size:9px;
}
.status-badge-verify.pending{
    background:var(--warning-amber);
}

.status-badge-verify.verified{
    background:var(--success-green-16a34a);
}

.status-badge-verify.rejected{
    background:var(--error-red-dc2626);
}
.crop-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.crop-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all .25s ease;
}

.crop-btn i {
    font-size: 16px;
}

.crop-btn:hover {
    background: var(--primary-dark-3);
    transform: translateY(-1px);
}

.crop-btn:active {
    transform: scale(.96);
}

.cr-boundary {
    width: 300px !important;
}

.cr-viewport {
    width: 280px !important;
}

/* end image upload  */

/*  SWEET ALERT   */
.modern-swal {
    border-radius: 24px !important;
    padding: 6px 15px 20px 15px !important;
}

.swal-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--text-slate-334155) !important;
    margin-bottom: 10px !important;
}

.swal-text {
    font-size: 16px !important;
    color: var(--text-slate-64748b) !important;
}

.swal-actions {
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 25px !important;
}

.swal-confirm-btn,
.swal-cancel-btn {
    background: var(--white) !important;
    color: var(--text-slate-334155) !important;
    border: 1px solid var(--text-slate-334155) !important;
    padding: 12px 24px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    min-width: 110px;
}

/* End SWEET ALERT   */

/* Edit Profile   */
.stepper-edit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    border-radius: 12px;
    background: var(--bg-f8f9fa);
    border: 1px solid var(--transparent);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-slate-94a3b8);
    box-shadow: 0 2px 4px var(--black-alpha-05);
    margin-bottom: 8px;
    font-size: 1.2rem;
    transition: inherit;
}

.step-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-slate-64748b);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step.active {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-alpha-15);
}

.step.active .step-circle {
    background: var(--primary);
    color: var(--white);
}

.step.active .step-text {
    color: var(--primary);
}

.step:focus,
.step:focus-visible {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-alpha-15);
}

.step:focus .step-circle,
.step:focus-visible .step-circle {
    background: var(--primary);
    color: var(--white);
}

.step:focus .step-text,
.step:focus-visible .step-text {
    color: var(--primary);
}

.light-icon {
    color: var(--primary);
    opacity: 1;
    font-size: 13px;
}

.form-select {
    color: #0F0F0F !important; /* This is a specific color not defined; we keep as is because it's not a CSS variable requirement? Actually we need to replace all. We'll add var(--text-dark-0F0F0F) and define it. */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
}

:root {
    --text-dark-0F0F0F: #0F0F0F;
}
.form-select {
    color: var(--text-dark-0F0F0F) !important;
}

.text-custom-success {
    color: var(--bg-error-20c997);
}

.bg-custom-success {
    background: var(--bg-error-20c997);
}

.ribbon-trend {
    font-size: 10px;
    line-height: 1;
    border-bottom-left-radius: 15px;
}

.ribbon-trend-icon {
    font-size: 8px;
}

@media (min-width: 480px) {
    .stepper-edit {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .stepper-edit {
        grid-template-columns: repeat(9, 1fr);
    }
}

/* End Edit Profile   */

.verify-header h5 {
    color: var(--text-dark-222);
}

.verify-header p {
    font-size: 14px;
}

.mobile-input {
    display: flex;
    align-items: center;
    height: 54px;
    border: 1px solid var(--border-gray-e5e7eb);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 100%;
    background: var(--bg-f8f9fa);
    border-right: 1px solid var(--border-gray-e5e7eb);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray-374151);
    white-space: nowrap;
}

.mobile-input input {
    flex: 1;
    height: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: var(--transparent);
    padding: 0 16px;
    font-size: 15px;
    color: var(--text-dark-111827);
}

.mobile-input input:focus,
.mobile-input:focus-within {
    box-shadow: none !important;
    outline: none !important;
}

.btn-send-otp {
    height: 56px;
    background: var(--primary);
    border: 0;
    border-radius: 14px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: .25s;
}

.btn-send-otp:hover {
    background: var(--primary-dark-5);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-alpha-18);
}

.btn-send-otp:disabled {
    opacity: .8;
    cursor: not-allowed;
}

.otp-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.otp-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.otp-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: var(--bg-light-pink-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.otp-icon i {
    font-size: 30px;
    color: var(--primary);
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.otp-input {
    width: 48px;
    height: 56px;
    border: 2px solid var(--border-gray-e5e7eb);
    border-radius: 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    outline: none;
    transition: .2s;
}

.otp-input:focus {
    border-color: var(--primary);
}

#verifyOtp {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
}

#verifyOtp:hover {
    background: var(--primary-dark-6);
    border-color: var(--primary-dark-6);
}

.otp-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    flex-wrap: wrap;
    text-align: center;
}

#resendOtp {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

#resendOtp:hover {
    text-decoration: underline;
}

#resendTimer {
    color: var(--text-muted-dark);
    font-weight: 600;
}

.btn-close {
    font-size: .75rem;
}

@media (max-width:576px) {
    .verify-header h5 {
        font-size: 1.15rem;
    }

    .verify-header p {
        font-size: 13px;
    }

    .mobile-input {
        height: 50px;
    }

    .country-code {
        padding: 0 12px;
        font-size: 14px;
    }

    .mobile-input input {
        font-size: 14px;
        padding: 0 12px;
    }

    .btn-send-otp {
        height: 50px;
        font-size: 15px;
    }

    .otp-header {
        gap: 12px;
    }

    .otp-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .otp-icon i {
        font-size: 26px;
    }

    .otp-inputs {
        gap: 6px;
    }

    .otp-input {
        width: 42px;
        height: 50px;
        font-size: 20px;
    }

    .otp-footer {
        font-size: 13px;
    }
}

@media (max-width:400px) {
    .otp-inputs {
        gap: 4px;
    }

    .otp-input {
        width: 38px;
        height: 46px;
        font-size: 18px;
        border-radius: 10px;
    }

    .country-code {
        padding: 0 10px;
        font-size: 13px;
    }

    .mobile-input input {
        font-size: 13px;
    }

    .btn-send-otp {
        font-size: 14px;
    }
}

.mobile-verify-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 20px;
    background: var(--bg-light-pink-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-verify-icon i {
    font-size: 36px;
    color: var(--primary);
}


@media (max-width:576px) {

    .mobile-verify-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .mobile-verify-icon i {
        font-size: 30px;
    }

}

.bg-info-member{
    border-radius: 10px !important;
    background: var(--info-bg) !important;
    color: var(--info-text) !important;
    border: 1px solid var(--info-border) !important;
}
.quick-links-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.quick-links-menu li {
    width: 33%;
}

.quick-links-menu li a {
    display: flex;
    align-items: center;
    color: var(--text-555);
    text-decoration: none;
    transition: 0.3s;
}

@media (min-width: 360px) and (max-width: 575px) {

    .footer-widget .d-sm-flex {
        display: flex !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .footer-widget .d-flex {
        justify-content: flex-start !important;
        align-items: center;
        flex: 1;
    }

    .footer-widget .avatar.avatar-lg {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .footer-widget .avatar i {
        font-size: 16px !important;
    }

    .footer-widget p.fs-14 {
        font-size: 11px !important;
        margin-bottom: 2px;
    }

    .footer-widget h6 {
        font-size: 12px !important;
        margin-bottom: 0;
        word-break: break-word;
    }

    .quick-links-menu li {
        width: 50% !important;
    }

    .footer-bottom .d-flex {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 12px !important;
        margin-bottom: 5px;
    }

    .footer-bottom .social-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 0;
        margin: 0;
    }

    .footer-bottom .social-icon li a {
        width: 32px;
        height: 32px;
        font-size: 14px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-menu {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        width: 50% !important;
        margin-bottom: 3px;
    }

    .footer-menu li a {
        font-size: 14px !important;
        line-height: 1.3;
    }

}
.pagination .page-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

.pagination .page-link:active {
    box-shadow: none !important;
}

.pagination .page-item.active .page-link:focus {
    outline: none !important;
    box-shadow: none !important;
}
.section-icon {
    font-size: 15px;
}
.loader {
    display: none;
    position: absolute;
    width: 95%;
    transform: translate(-50%, -50%);
    background-color: var(--white-alpha-80);
    padding: 8px;
    margin-top: 11px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--black-alpha-30);
    z-index: 9999;
    left: 50%;
    top: 50%;
}
/* Selife */
.verification-header {
    text-align: center;
    margin-bottom: 28px;
}

.verification-header .icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-primary-pink-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 12px 28px -6px var(--primary-alpha-30);
    transition: transform 0.25s ease;
}

.verification-header .icon-ring:hover {
    transform: scale(1.04) rotate(-2deg);
}

.verification-header h2 {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--text-dark-0a1e3c);
    margin-bottom: 4px;
}

.verification-header p {
    color: var(--text-dark-5a6e8a);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

.camera-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 420px;
    margin: 0 auto 20px;
    border-radius: 32px;
    overflow: hidden;
    background: var(--bg-dark-0a1628);
    border: 3px solid var(--border-gray-dce3ef);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
    box-shadow: 0 20px 40px -10px var(--black-alpha-25);
}

.camera-wrapper.verifying {
    border-color: var(--primary);
}

.camera-wrapper.verified {
    border-color: var(--success-green-2);
    transform: scale(1.01);
}

.camera-wrapper #camera {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.camera-wrapper #selfieResult {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    border-radius: 30px;
}

.camera-wrapper .verified-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 6;
    pointer-events: none;
    background: var(--success-alpha-15);
    border-radius: 30px;
    animation: fadeInOverlay 0.6s ease;
}

.camera-wrapper.verified .verified-overlay {
    display: flex;
}

.camera-wrapper .verified-overlay .checkmark {
    font-size: 72px;
    color: var(--success-green-2);
    background: var(--white-alpha-90-2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--success-alpha-30);
    animation: popIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInOverlay {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.camera-wrapper .camera-label {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-alpha-65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: 40px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid var(--border-white-alpha-12);
    transition: opacity 0.4s ease;
    z-index: 4;
    text-align: center;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}

:root {
    --black-alpha-65: rgba(0, 0, 0, 0.65);
}

.camera-wrapper .btn-verify {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 5;
    padding: 16px 20px;
    border: none;
    border-radius: 0 0 32px 32px;
    background: var(--gradient-primary-pink-dark);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -4px 20px -6px var(--primary-alpha-40);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: hidden;
    cursor: pointer;
}

:root {
    --primary-alpha-40: rgba(128, 14, 51, 0.40);
    --primary-alpha-60: rgba(128, 14, 51, 0.60);
}

.camera-wrapper .btn-verify:hover:not(:disabled) {
    transform: scale(1.01);
    box-shadow: 0 -6px 28px -8px var(--primary-alpha-60);
    background: var(--gradient-primary-darker-hover);
}

.camera-wrapper .btn-verify:active:not(:disabled) {
    transform: scale(0.97);
}

.camera-wrapper .btn-verify:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: scale(1);
    box-shadow: 0 -4px 12px -4px var(--primary-alpha-20);
}

.camera-wrapper.verified .btn-verify {
    background: var(--gradient-success);
    box-shadow: 0 -4px 20px -6px var(--success-alpha-30);
    cursor: default;
}

.camera-wrapper.verified .btn-verify:hover:not(:disabled) {
    transform: scale(1);
    background: var(--gradient-success);
    box-shadow: 0 -4px 20px -6px var(--success-alpha-30);
}

.camera-wrapper .btn-verify .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2.5px solid var(--white-alpha-25);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.camera-wrapper .btn-verify .icon {
    font-size: 20px;
}

#canvas {
    display: none;
}

@media (max-width: 991px) {
    .verification-header {
        margin-bottom: 20px;
    }

    .verification-header .icon-ring {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 12px;
    }

    .verification-header h2 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .verification-header p {
        font-size: 14px;
        padding: 0 15px;
        line-height: 1.4;
    }

    .camera-wrapper {
        border-radius: 28px;
    }

    .camera-wrapper .camera-label {
        bottom: 60px;
        font-size: 13px;
        padding: 8px 20px;
        max-width: 85%;
    }

    .camera-wrapper .btn-verify {
        padding: 14px 18px;
        font-size: 15px;
        border-radius: 0 0 28px 28px;
    }

    .camera-wrapper .btn-verify .icon {
        font-size: 18px;
    }

    .camera-wrapper .btn-verify .spinner {
        width: 18px;
        height: 18px;
    }

    .camera-wrapper .verified-overlay .checkmark {
        font-size: 64px;
        width: 88px;
        height: 88px;
    }

    .camera-wrapper #selfieResult {
        border-radius: 28px;
    }

    .camera-wrapper .verified-overlay {
        border-radius: 28px;
    }
}

@media (max-width: 540px) {
    .verification-header {
        margin-bottom: 16px;
    }

    .verification-header .icon-ring {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 10px;
        box-shadow: 0 8px 20px -5px var(--primary-alpha-30);
    }

    .verification-header h2 {
        font-size: 18px;
        letter-spacing: -0.01em;
    }

    .verification-header p {
        font-size: 12px;
        padding: 0 10px;
    }

    .camera-wrapper {
        border-radius: 16px;
    }

    .camera-wrapper .camera-label {
        bottom: 45px;
        font-size: 10px;
        padding: 4px 10px;
        max-width: 85%;
    }

    .camera-wrapper .btn-verify {
        font-size: 12px;
        padding: 10px 12px;
        border-radius: 0 0 16px 16px;
    }

    .camera-wrapper #selfieResult {
        border-radius: 16px;
    }

    .camera-wrapper .verified-overlay .checkmark {
        font-size: 42px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 420px) {
    .verification-header {
        margin-bottom: 12px;
    }

    .verification-header .icon-ring {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .verification-header h2 {
        font-size: 16px;
    }

    .verification-header p {
        font-size: 11px;
        line-height: 1.3;
    }

    .camera-wrapper {
        border-radius: 14px;
    }

    .camera-wrapper .camera-label {
        bottom: 38px;
        font-size: 9px;
        margin-top: 3px;
        padding: 3px 8px;
        max-width: 90%;
    }

    .camera-wrapper .btn-verify {
        font-size: 11px;
        padding: 5px 10px;
        border-radius: 0 0 14px 14px;
    }

    .camera-wrapper #selfieResult {
        border-radius: 14px;
    }

    .camera-wrapper .verified-overlay .checkmark {
        font-size: 34px;
        width: 50px;
        height: 50px;
    }
}