/* Reset and Base Styles */
.xcx-iframe-wrapper {
    display: none !important;
}
main#main {    padding: 0 0 !important;}
.xcx-trial-container{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #2F2F2F;
    color: #fff !important;
    line-height: 1.6;
    overflow-x: hidden;
}
.xcx-trial-container h2 {
    color: #fff;
}
.xcx-trial-container p, .xcx-trial-container li {
    font-size: 15px !important;
}
#xcx_slider_start_trial {
    display: none;
}
.fusion-tb-footer h3, .fusion-tb-footer h5 {
    color:#fff;
}
/* CSS Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleDown {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

#smb-card, .xcx-card-header .xcx-badge {
    display: none;
}
.xcx-benefits ul {
    margin-top: 0 !important;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
.xcx-benefits > span {
    color: #555555;
    font-weight: bold;
    margin-top: 20px !important;
    display: block;
    margin-bottom: 10px;
}
.xcx-card-feature-cont {
    color: #9A9A9A;
    display: none;
}
.xcx-feat-pricing-box {
    text-align: center;
    font-size: 16px;
    margin-top: 16px;
}
.xcx-tr-fbb {
    color: #0596D4 !important;
    font-weight: bold !important;
}
#xcx-otp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 24px;
    text-align: center;
    letter-spacing: 12px;
    caret-color: transparent;
    z-index: 10;
    background: transparent;
    outline: none;
    cursor: text;
}
.loader-overlay {
    position: fixed; /* Cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent white background */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999; /* Ensure it's on top of everything */
}

.loader-overlay.active {
    display: flex; /* Show the loader when it has the 'active' class */
}

.loader-spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

.loader-overlay p {
    margin-top: 20px;
    font-size: 1.2em;
    color: #333;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* App Container */
.xcx-app-container {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    transition: all .35s linear;
    opacity: 0;
}

/* Step Management */
.xcx-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* min-height: 100vh; */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Smooth transition for opacity and transform */
    overflow: hidden; /* Hide content that scales down */
    z-index: 0;
}

.xcx-step.active {
    opacity: 1;
    pointer-events: auto;
    position: relative; /* Active step should be relative to maintain flow */
    z-index: 1;
}

.xcx-step.scaling-down {
    animation: scaleDown 0.3s ease-in forwards;
    z-index: 2; /* Ensure scaling down step is on top during animation */
}

.xcx-step.scaling-up {
    animation: scaleUp 0.5s ease-out;
    z-index: 1; /* Ensure scaling up step is on top during animation */
}

.xcx-container {
    /* max-width: 1300px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* min-height: 100vh; */
}

/* Header */
.xcx-header {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    display: none !important;
}

.xcx-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, #fff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0px;
}

.xcx-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
}

.xcx-subtitle p {
    margin-bottom: 0.5rem;
}
.xcx-cards-container {
    width: 100%;
    position: relative;
}
/* Cards Container */
.xcx-cards-container > .xcx-cards-container-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 1300px;
    padding: 10px 0;
}

#selection-step .xcx-cards-container > .xcx-cards-container-inner {
    grid-template-columns: repeat(3, 1fr);
}

/* Card Styles */
.xcx-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* min-height: 500px; */
}

.xcx-card:not(.xcx-card-used):hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #0596d4;
    background-color: #DFDFDF;
}

/* .xcx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0596d4, #0596d4);
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.xcx-card:hover::before {
    opacity: 1;
}

.xcx-card-header {
    padding-bottom: 0;
    text-align: center;
}

.xcx-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.xcx-badge .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.xcx-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-top: 0;
}

.xcx-underline {
    text-decoration: underline;
    text-decoration-color: #0596d4;
    text-underline-offset: 4px;
}

.xcx-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.xcx-highlight {
    color: #6B6B6B;
    font-size: 15px;
    margin-bottom: 1.5rem;
    text-align: center !important;
    margin-top: 0 !important;
}

.xcx-points-card {
    margin-bottom: 0px;
    /* flex: 1; */
}

.xcx-features, .xcx-subtitle{
    display: none;
}

.xcx-points-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.xcx-points-card ul,  .xcx-points-card p
 {
    color: #555555;
}
.xcx-points-card p {
    margin-bottom: 5px;
}
.xcx-points-card li {
    margin-bottom: 4px;
}
.xcx-points-card li i{
    margin-right: 5px;
}
/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #0596d4, #0596d4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Styles */
.form-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* min-height: 100vh; */
    padding: 2rem;
}

.form-container.wide {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: linear-gradient(145deg, #2E2E30, #373737);    
    border: 1px solid #6b7280;
    border-radius: 5px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-container.wide .form-card {
    max-width: 700px;
}

.form-header {
    margin-bottom: 2rem;
}

.back-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-back {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.selected-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:hover {
    background-color: #0596d4 !important; 
}

.iti__dropdown-content {
    background-color: #000 !important;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #d1d5db;
    font-size: 1rem;
}

.form-content {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label:not(.xcx-rm-gap) {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 8px; /* 5px margin as requested */
    color: #f3f4f6;
}

.form-group input,
.form-group select,
.form-group textarea,
.iti--fullscreen-popup input {
    width: 100%;
    padding: 0 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group select {
    background-color: #3C3C3D;
}
.form-group input:focus,
.iti--fullscreen-popup input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0596d4;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
#xcx-hosted-info-step .form-group input, #xcx-hosted-info-step .form-group textarea {
    padding: 9px;
}
input.iti__tel-input{
    padding-top: 11px !important;
    padding-bottom: 7px;
}
div.iti__selected-dial-code{
    font-size: 15px;
}
.form-group input:disabled,
.iti--fullscreen-popup input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #111827;
}

/* OTP Input */
.xcx-otp-container {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 1rem 0;
}

.xcx-otp-box {
    width: 3rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 2px solid #374151;
    border-radius: 5px;
    background-color: #1f2937;
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.xcx-otp-box:focus {
    outline: none;
    border-color: #0596d4;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
}
.xcx-otp-box.filled {
    border-color: #0596d4;
}

/* Active state (next to be filled) */
.xcx-otp-box.active {
    border-color: #0596d4 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    }
    100% {
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }
}

.xcx-otp-box:not(:placeholder-shown) {
    border-color: #ffffff;
    /* background-color: #1f2937; */
}

.xcx-otp-box.xcx-error {
    border-color: #ef4444;
    background-color: #7f1d1d;
}

/* Legacy OTP styles for compatibility */
.otp-input-container {
    position: relative;
}

.otp-input {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 0.5rem;
    font-family: 'Courier New', monospace;
}

/* Google Section */
.google-section {
    margin: 1.5rem 0;
}

.divider {
    text-align: center;
    position: relative;
    margin: 1rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #374151;
}

.divider span {
    background: #4b5563;
    padding: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
    z-index: 1;
    position: relative;
}

.btn-google {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-google img {
    height: 18px;
    transform: scale(1.5);
    left: -5px;
    position: relative;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #6b7280;
}

/* Spinner */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #374151;
    border-top: 2px solid #0596d4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 12px;
    top: calc(50% + 7px);
    transform: translateY(-50%);
}

.form-group {
    position: relative;
}

.spinner.active {
    display: block;
}

/* Button with Spinner */
.btn-primary .btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
    bottom: 16px;
    right: 16px;
    position: absolute;
}

.btn-primary.loading .btn-text {
    opacity: 0.7;
}

.btn-primary.loading .btn-spinner {
    display: inline-block;
}

/* Resend Timer */
.resend-text {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1rem;
}

.btn-link {
    background: none;
    border: none;
    color: #0596d4;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
}

.btn-link:hover {
    color: #0596d4;
}

.btn-link:disabled {
    color: #6b7280;
    cursor: not-allowed;
    text-decoration: none;
}

.timer {
    color: #ef4444;
    font-weight: 600;
}

/* Success Card */
.success-card {
    text-align: center;
    padding: 3rem 2rem;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #0596d4, #0596d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.success-icon .icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.success-content h2 {
    font-size: 2rem;
    font-weight: 700;
}

.success-content p {
    color: #d1d5db;
    font-size: 1.125rem;
    max-width: 400px;
}

/* Chat Styles */
.chat-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
}

.chat-bubble {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #0596d4, #0596d4);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.chat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.chat-bubble .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.chat-window {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 320px;
    height: 400px;
    background: linear-gradient(145deg, #2E2E30, #373737);
    border: 1px solid #6b7280;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: scaleUp 0.3s ease-out;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    padding: 1rem;
    border-bottom: 1px solid #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.chat-title .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.chat-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.chat-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.chat-close .icon {
    width: 1rem;
    height: 1rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    animation: fadeInUp 0.3s ease-out;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    line-height: 1.4;
}

.ai-message {
    align-self: flex-start;
}

.ai-message .message-content {
    background: #1f2937;
    color: #f3f4f6;
}

.user-message {
    align-self: flex-end;
}

.user-message .message-content {
    background: linear-gradient(135deg, #0596d4, #0596d4);
    color: white;
}

.typing-indicator {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: #1f2937;
    border-radius: 1rem;
    animation: fadeInUp 0.3s ease-out;
}

.typing-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #9ca3af;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

.chat-input-container {
    padding: 1rem;
    border-top: 1px solid #374151;
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-container input {
    flex: 1;
    padding: 0.75rem;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 5px;
    color: #fff;
    font-size: 0.875rem;
}

.chat-input-container input:focus {
    outline: none;
    border-color: #0596d4;
}

.chat-send {
    background: linear-gradient(135deg, #0596d4, #0596d4);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: translateY(-1px);
}

.chat-send .icon {
    width: 1rem;
    height: 1rem;
}

/* Icons */
.icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

/* Responsive Design */
/* Medium screens - show 2 cards per row, then 1 */
@media (max-width: 1024px) {
    .xcx-cards-container > .xcx-cards-container-inner {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px;
    }
}

@media (max-width: 768px) {    
    .xcx-subtitle {
        font-size: 1.125rem;
    }
    
    .xcx-cards-container > .xcx-cards-container-inner{
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .xcx-card {
        min-height: auto;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .chat-window {
        width: 280px;
        height: 350px;
        right: -1rem;
    }
    
    .chat-container {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .xcx-cards-container > .xcx-cards-container-inner{
        grid-template-columns: 1fr;
        margin: 0;
    }
    
    .chat-window {
        width: calc(100vw - 2rem);
        right: -0.5rem;
        left: 1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .xcx-card {
        border-width: 2px;
    }
    
    .btn-primary {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .chat-bubble {
        animation: none;
    }
}

/* Popup Error Message */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: #dc2626;
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active .popup-box {
    transform: translateY(0);
    opacity: 1;
}

.popup-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color:#fff;
}

.popup-box p {
    margin-bottom: 1.5rem;
}

.popup-box button {
    background: #0597D4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-box button:hover {
    transform: translateY(-5px);
}

/* Field Error Styles */
.xcx-field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.xcx-field-error-input {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

#xcx-hosted-info {
    opacity: 0;
    transition: opacity 0.3s ease;
}
#xcx-hosted-info.show {
    display: block;
    opacity: 1;
}

.ss-content, .ss-main > div:first-child, .iti__dropdown-content{
    padding: 0.875rem;
    /* background: #1f2937; */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.ss-main .ss-single-selected
{
    height: fit-content;
}

.ss-content.ss-open {
    background-color: #000;
}

.ss-search input {
    background: #000 !important;
    border: 1px solid #fff !important;
    border-radius: 5px !important;
}

.phone-input-group > div {
    width: 100%;
}
#xcx_phone, #reg-phone {
    padding-top: calc(0.875rem + 3px);

}

.xcx_flash_message_static {
    margin-top: -5px;
}

.xcx_flash_message_static > span {
    color: #ff7575;
    font-weight: bold;
    font-size: 13px;
}

.xcx-app-con .xcx-subtitle {
    display: none;
}
div.xcx-card-overlay {
    display: none;
}

.xcx-card-used > div.xcx-card-overlay {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 2;
    left: 0;
    top: 0;
}

.xcx-card-overlay-depl {
    width: fit-content;
    height: fit-content;
    top: 38px;
    left: 0px;
    position: absolute;
    padding: 5px 20px 5px 20px;
    background-color: #DC2626;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

button#complete-btn {
    position: relative;
}



/*Header*/
.xcx-install-header {
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px 140px;
}
.xcx-install-header::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -140px;
    width: calc(100% + 280px);
    height: 5px;
    background: linear-gradient(to top, #0597D4, transparent);
    opacity: 1;
}
.xcx-header-left{
    margin-right: auto;
}

a#btn-portal, a#btn-login {
    padding: 10px 20px !important;
    font-size: 15px !important;
    text-decoration: none;
    text-align: center;
}

.xcx_search_bar_icon {
  background-image: url('/wp-content/uploads/2025/05/search-icon-ai3.png');
  background-repeat: no-repeat;
  height: 22px;
  width: 25px;
  display: inline-block;
  top: 1px;
  position: relative;
  background-size: contain;
  flex-shrink: 0;
  margin-right: -3px;
}
.xcx-header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}
/* .topTcxUserBar {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
} */
.xcx-header-right > div {
    max-width: 25px;
    max-height: 25px;
    cursor: pointer;
    flex-shrink: 0;
}

.xcx-language-switcher {
    position: relative;
}

.xcx-language-switcher > div:first-child {
    width: 25px;
    height: 25px;
}

.xcx-trial-dropdown {
    position: absolute;
    padding: 10px 20px;
    display: flex; 
    flex-direction: column;
    gap: 10px;
    top: 40px;
    left: -20px;
    background: linear-gradient(145deg, #374151, #4b5563);
    border: 1px solid #6b7280;
    border-radius: 5px;
    z-index: 2;
    opacity: 0;
    display: none; 
    pointer-events: none; 
    transition: opacity 0.3s ease-in-out; 
    list-style: none;
}

.xcx-trial-dropdown.xcx-loggedin-submenu {
    left: -78px;
}

.xcx-trial-dropdown[style*="opacity: 1"] {
    pointer-events: auto; 
}

.xcx-language-switcher .xl_s_active {
    cursor: pointer;
}
.xcx-loggedin-submenu li {
    display: flex;
}
.xcx-loggedin-submenu > div > li:first-child {
    display: flex;
}
.xcx-loggedin-submenu > div > li:first-child * {
    margin-bottom: 0 !important;
    color: #fff !important;
}

.topTcxUserBar:not(.loggedin) .sub-menu {
    display: none !important;
}

.topTcxUserBar.loggedin:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: green;
    border-radius: 50%;
    position: absolute;
    bottom: 18px;
    right: 0;
}

.xcx-loggedin-submenu li a {
    text-decoration: none;
    color: #fff !important;
    padding: 5px 5px !important;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.xcx-loggedin-submenu li a:hover {
    transform: translateX(2px);
    background-color: #000;
}

.xl_s_{
    height: 23px !important;
    width: 23px !important;
    border-radius: 50%;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}

.xl_s_en {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAQpSURBVHgB7VhbSFRRFN2j1+xt0cuRLIKizN5aUFRkFFqEUFFBUh+BERX0DqKIkn4kU780UvwzUKLCj1IijAqFUDGfiQqmopYJo1aaCnbWcfb13Dujd2o+nI9ZcJm5a84+Z7/PVpt946lRmgKcneGg3UEDlusC54RuvBcetpBOxO+iP0PD1N3TK3+YiLt27rB8Z27unJl08cwh6uv/rXNAYkKsQRaArE18tnX8oKigQVoeOGKpYAA5BXZEr5GHMMDFxUS5cOtWL5eKMvA73lUO2C72M3N4Xxq2iP4FNjXE8EaIeJaKjUrLvrgcaOZgVImJg1GFxeVuOezPBqfcPElHYjaTFTT1BcJJNxKoV3yqytwXXLhJaYQQStc0tOqH4h1hLCmrn5STB8+eRdPtS8gKugcjVy+jWnEYrGRlveHWCa7GDdcq0gTf05MS6bjIcY8UxCafXqXS/hN3ZJ4B4N7kPaAzV9Ll4Sp3+e4T3ZvgnmXfouzcIsov+KhzOWmXqUiENUvw7rjzi0Zo7/wAzxVE7qnKcfIj3Pwdv6sce07lWFbdk2XB4TtkPG0zAex+Vg75gpyb69wcv7njjsfvdOFQDDlpl3QluROkiXAyx9HwFHqR8Ab5BR8MXsAnKhCPmuQIcV//gGEdCqG3/5cL19bRbeCAZceO0uaYTZYKykaNUCE/KqqbqKmlUzZXlYPV4BCe9KSz9L3HITms5dxi77Q7Q4kiCA4OEvLNUhYcIhG1YaU0Lv7oPores41m2EMnfaSC2ACHtjtDxZbiaRZKsNX4HBwaMnC4LQCWZ9ng4Gm6YePcuMIIfaRo+lawme9i9Dd47+7DXF0JtAM0ZTMXF7NFVHSWgUPfS338Qs9pln2kcMDV9QtEFQdaKqiZCVTj6+IK0xXXLXJp1IUz52Vtw1e9ctlrpSIHuYpV/GxqJsf/DAvvSqplCHHA6WN7JYewcPWhIhFKlUNucQ6CB1gWeco9k9chxJ4OC9qYN8aGBfUOxUZjd229QSDE2d9UIJdKTetwn5vXAeFiWIAh9gOxFLF1JVnBJQdxHWHiUJV1x8Hr26MjZFsycjB0PEXAoSDyxDo1HTy96lzumlixGQ5RAUXM3FrhNRysAl5LTIgzKALOE0UmgsuwAHCCQ9ki55gEmAcDVoTHLpWDUQi7yqnDwu39kXRwrd1SQb1I3r9MlhsiH5Hc4J5mXKfGli6qEwoxl5txQ66pcxoDDoWzeOE8WWBsYGbyeVq1IkyGm5GRfEFwdioW6yI6GymkqpwclVWTPvqwwB5S4Y53x6nDggp37YUj4OmwYEvJfD4lfzRFaWgzw5brbKMC5MOwnhinGFpnYRH5Mmxvd+3zh9gbaPM2bSBfhr+KvYXmqPxMvgx/FXsLbXqo9T9wphL+KvYW2mDXN/Jl+KvYW/i8gn8BW0wpZog6SXYAAAAASUVORK5CYII=');
  }
.xl_s_br {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAH7SURBVHgB5ZRLaBNRFIa/6JSYyKSkDSkmNGKCZtSmKtUuW6QW3EgFFyJS6M6FghsFwY2baBd16aIKChb3Wl352GhRMSgKgm1aIzVtisUEppmkrQ2Oc2+Z9GGMFLuyPwyHy5zzzT/nHK4jfLvTZB21iXXWfwLs3p4h3pQk4Jr7a65S7aUAXG0apbVOl2cRb4yFuJ9pWDtQuDob+UoyFaHv8VGMootdoTTnDrznkAB/DpGZ3fJbnWP12mhqgUtaSrrpHzzGTetZ4dqXpf9iH6bbqOh2s7crcsU+CEfX940QdM1jzG3jk9HL7pafNGs+fphF5gsKWd1JMt3I6fYXdDTk0DwFPugq+ZKy9MutXp14bNQCLTV9cGgPAw8nyBcWULfOosWcdPfUcu9JgrcjUfJFN6q7SIc/W+7t3fHAItB0UFGLsBoZJ78oJF5P0XWkDSMytSLPXNY0uTaJXC2dzw/KRtuKNqYJ+l0SJuFGScYHT1Po4znpTuiNVXvi1X7prgy0JWwL8KQ1vZZokvbmR9Kh7VYLewj43Zw6fIeZBYXe4TA9iZjMrzgUWWg1d0B8zWrD+baX1HumyWR9OGtK1KljXDh5CyUwwZl3exn67mW1HNVuGzGk+LLFFq4uf9zJs+n6P5VUB9o6HvxmbcIM14Z3lNfjn4Br0Qa8D38B5FjCb2cdWs8AAAAASUVORK5CYII=');
}
.xl_s_de {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAA6SURBVHgB7dJBEQAgDAPBC4NCHGEQB5jAQBHRvDpdAfdJBARGA7MO5s2Fl27fpn5Qb3tXVpy+TfngB4n4CJJjS5X3AAAAAElFTkSuQmCC');
}
.xl_s_es {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAD9SURBVHgB7ZTPSkJBFMZ/14wWpd6gMiksaFvQC7TuHWrfsp7Al2hfu1q0LUHaKHpdufHP1oU7EQTvdbyIIOo4A7q6yOBdCPrBYeYcZn58c2YY6+f0YkqIihCythBoeXlCvZToqgX1JmQdsG2b22uXh/s1gH8S9JyBxNE8cxn7Ef4/4wocpMAefuXAqWmYN9ARPZzwW3D5zmEObMijOlWkK2tRm0OzZd0GY2CrDT0B/l5cWkuo2uVJkm4filXMgd4whvDlZOypSJ3B60uHfbnjOIY58O4G0ufLPPMGqasDVUsnMQcKIdT49Kjz9w+olEbavU+gQn/Y1u772jzgDOSMSYMVHilTAAAAAElFTkSuQmCC');
}
.xl_s_fr {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABESURBVHgB7cwxDQAgFAPRghh0YIEEAezfABJwwciIJgxgAQx0ZCHprZc8h5APSCVF9GZsYVnFHpM+j8cJFChQoMBfwAsShAgs4WYryAAAAABJRU5ErkJggg==');
}
.xl_s_it {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABDSURBVHgB7cxBEQAQAETRpY0eyCGEm6MGCsjgIJACKlBgjy5m9l//zDNo8YCUXED3mS2sUrHHpM/icQIFChQo8BfwAiMICFfL8b6AAAAAAElFTkSuQmCC');
}
.xl_s_nl {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABHSURBVHgB7dGxEQAQEETRZa4MI1aORCnKUAqxUYd+0IMNLrhXwE++GyEdEHmQWfCfxJLB5M4DIrusMCi1TTBJXxtMdllh8AKWOwrSN2WAHQAAAABJRU5ErkJggg==');
}
.xl_s_pl {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAIAAAAC64paAAAAI0lEQVR4nGP8//8/A7mAiWydo5pHjGbGGzwKA2PzqOaRoRkABKMEKARJn/QAAAAASUVORK5CYII='); 
}
.xl_s_ru {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABESURBVHgB7dIxEQAgDATBDxMdGEABAvFBRUOPE1psUAIe+CqTFXDVyXlAFEDmwX9axwKTIDffxnpQy+5gkpmib2M9eAHe1Ax80Wng2AAAAABJRU5ErkJggg==');
}
.xl_s_tr {
    background-image: url('data:image/webp;base64,UklGRkIBAABXRUJQVlA4IDYBAAAwCACdASoVABUAPlUmjkWjoiEUBVQ4BUS2AE6ZQjgb0D5QOfP1hYYumS8rN8MXkgEzHpFYdmpirmBmi+U9rIOQb2KWm0fTILvJAAD+T5d85sdeb7CW4BQii5aKXv06M5BnCb3y7I3Dhv+4EF/xCEmMVgOt+q8/7YMU0Ix1FZY6cFVWvzJnhz6mduCiwJeJap28EfbifOv5CFKRn+OVsp0JH8HDDTpdOO/+9hH/63Fz7BblxfqTP/NP5j8YOt/PkDa+HHPn2XP49xNIHv/4mpfRyXAHuOkB/YSaZfdnQmc51aqtyet9NXLm02f+ljL3VYNCXUh+2bJu84oE9matSP+tOsqACaBC19DvFl4vni4yTVUv9pP9DP9Moffft+gdn/GIDq1bqYjmE80TcuKjRyjRqPBvkAAA');
}

.xcx_avatar_loader.center {
    top: 4px !important;
    left: -1px !important;
    height: 15px;
    width: 15px;
    position: absolute;
}

.xcx_avatar_loader span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 15px;
    width: 15px;
  }

  .xcx_avatar_loader span::after, .xcx_avatar_loader span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 15px;
    width: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: xcx_avatar_loader-1 1s cubic-bezier(.075, .82, .165, 1) infinite;
    animation: xcx_avatar_loader-1 1s cubic-bezier(.075, .82, .165, 1) infinite;
  }
  .xcx_avatar_loader span::after {
    -webkit-animation: xcx_avatar_loader-2 1s cubic-bezier(.075, .82, .165, 1) .25s infinite;
    animation: xcx_avatar_loader-2 1s cubic-bezier(.075, .82, .165, 1) .25s infinite;
  }

  .xcx_user_password > img {
    filter: invert(1);
  }

  .ss-main .placeholder {
    overflow: visible !important;
}

  @keyframes xcx_avatar_loader-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
      }
      100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1.5);    
    }
}
@keyframes xcx_avatar_loader-2 {
    0% {
        transform: translate3d(0, 0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0;
    }
}

.xcx-app-container.xcx-app-con {
    height: fit-content;
}
/* Ensure proper card content alignment */
.xcx-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.xcx-card-content .btn-primary {
    margin-top: 0px;
}

/* Improve card height consistency - only on desktop/tablet */
@media (min-width: 769px) {
    .xcx-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .xcx-card-header {
        flex-shrink: 0;
    }

    .xcx-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .xcx-description,
    .xcx-benefits,
    .xcx-features {
        flex-shrink: 0;
    }
}

/* Mobile: Let cards use natural height */
@media (max-width: 768px) {
    .xcx-card {
        height: auto;
        margin: 0 15px;
    }
    
    .xcx-card-content {
        height: auto;
    }
    .xcx-install-header {
        margin: 10px 10px;
    }
    a.xcx-menu-logo-link img{
        height: 60px;
        width: auto;
    }
}

/* Password Input Container with Toggle */
.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    padding-right: 45px; /* Make room for the eye icon */
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    font-size: 16px;
    transition: color 0.2s ease;
    z-index: 2;
}
/* Password Info Switcher (following your dropdown pattern) */
.password-info-switcher {
    position: relative;
    display: inline-block;
    margin-left: 2px;
}
.password-info-switcher i, .password-input-container i {
    color:#fff;
}

.password-info-icon {
    font-size: 16px;
    cursor: help;
    color: #6b7280;
    transition: color 0.2s ease;
}

.password-info-icon:hover {
    color: #374151;
}

/* Password Requirements Dropdown (following your dropdown pattern) */
.password-requirements-dropdown {
    position: absolute;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: 25px;
    left: -20px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 8px;
    z-index: 1000;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* Requirement items */
.password-requirements-dropdown .requirement-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.password-requirements-dropdown .requirement-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.password-requirements-dropdown .requirement-item span {
    color: #d1d5db;
    transition: color 0.3s ease;
}

/* Valid requirement styling */
.password-requirements-dropdown .requirement-item.valid .requirement-icon {
    color: #10b981;
    transform: scale(1.1);
}

.password-requirements-dropdown .requirement-item.valid span {
    color: #10b981;
    font-weight: 500;
}

.password-requirements-dropdown .requirement-item.valid .fa-times:before {
    content: "\f00c"; /* Changes × to ✓ */
}

/* Invalid requirement styling */
.password-requirements-dropdown .requirement-item.invalid .requirement-icon {
    color: #ef4444;
}

.password-requirements-dropdown .requirement-item.invalid span {
    color: #f87171;
}

/* Animation for requirement validation */
@keyframes requirementCheck {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

.password-requirements-dropdown .requirement-item.valid .requirement-icon {
    animation: requirementCheck 0.4s ease;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .password-toggle {
        right: 12px;
        font-size: 14px;
    }
}


/* License Agreement Checkbox */
.xcx_checkbox_element {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
}

.xcx_checkbox_element input[type="checkbox"] {
    margin-top: 5px;
    width: fit-content;
}

.xcx_checkbox_element label {
    font-size: 14px;
    line-height: 1.5;
}

.xcx_modal_btn {
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.xcx_modal_btn:hover {
    color: #1d4ed8;
    text-decoration: none;
}

/* Modal Styles */
.xcx-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.xcx-modal.show {
    opacity: 1;
    visibility: visible;
}

.xcx-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.xcx-modal-content {
    position: relative;
    background: white;
    border-radius: 5px;
    max-width: 600px;
    max-height: 80vh;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.xcx-modal.show .xcx-modal-content {
    transform: scale(1);
}

.xcx-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#000;
}

.xcx-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.xcx-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.xcx-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.xcx-modal-body {
    padding: 16px 24px;
    overflow-y: auto;
    flex: 1;
}

.license-text {
    line-height: 1.6;
    color: #374151;
}

.license-text h3 {
    color: #111827;
    margin-top: 0;
    margin-bottom: 16px;
}

.license-text h4 {
    color: #111827;
    margin-top: 24px;
    margin-bottom: 12px;
}

.license-text p {
    margin-bottom: 12px;
}

.license-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.license-text li {
    margin-bottom: 6px;
}

.xcx-modal-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 14px;
}


.btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .xcx-modal-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .xcx-modal-header,
    .xcx-modal-body,
    .xcx-modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* SMB Floating Button */
.smb-floating-button {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1000;
    cursor: pointer;
    display: none;
}

.smb-button-text {
    background: linear-gradient(135deg, #0596d4, #0596d4);
    color: white;
    padding: 12px 20px;
    border-radius: 0px 5px 5px 0px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.smb-floating-button:hover .smb-button-text {
    background: linear-gradient(135deg, #0596d4, #0596d4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* SMB Modal */
.smb-modal {
    position: absolute;
    bottom: 60px;
    right: -260px;
    width: 320px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}
.smb-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide button animation */
.smb-floating-button.hidden {
    transform: translateX(100%);
    opacity: 0;
}

.smb-floating-button {
    /* Add transition for hide/show animation */
    transition: all 0.3s ease;
}
.smb-modal-content {
    padding: 0;
}

.smb-modal-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smb-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.smb-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smb-modal-body {
    padding: 16px 20px;
}

.smb-modal-body p {
    margin: 0 0 12px 0;
    color: #374151;
    line-height: 1.5;
    font-size: 14px;
}

.smb-modal-body p:last-of-type {
    margin-bottom: 16px;
}

.smb-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.smb-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.smb-feature i {
    color: #555555;
    font-size: 14px;
    flex-shrink: 0;
}

.smb-feature span {
    color: #374151;
    font-size: 13px;
}

.smb-modal-footer {
    padding: 16px 20px 20px;
}

.smb-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #0596d4, #0596d4);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.smb-cta-button:hover {
    background: linear-gradient(135deg, #0596d4, #0596d4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    color: white;
}

.smb-cta-button i {
    font-size: 12px;
}

/* Modal Arrow */
.smb-modal-arrow {
    position: absolute;
    bottom: -8px;
    left: 10px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .smb-floating-button {
        bottom: 20px;
        right: 20px;
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .smb-modal {
        width: 280px;
        right: 85px;
    }
    
    .smb-button-text {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 5px 5px 5px 5px;
    }
    
    .smb-modal-arrow {
        right: 40px;
    }
}

button#popup-close-btn-x {
    top: 0;
    position: absolute;
    right: 0;
    padding: 10px;
    background-color: transparent;
}

#form-step .first-form-group, #form-step input#sp-check-22 {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    left: -99999px;
    top: -99999px;
} 


.xcx-card-header{
    text-align: left !important ;
    margin-bottom: 0px;
 }
 .xcx-description p,  .xcx-description-two p{
     text-align: left !important;
     color: black;
     font-weight: 380;
     font-size: 18px !important;
     line-height: 22px;
 }
 .xcx-points-card li i{
 color: #0596D4 !important;
 }
 .xcx-card-header h2{
     font-size: 2rem !important;
     line-height: 2rem !important;
 }
 .xcx-benefits.xcx-points-card >span{
     display: none;
 }
 .xcx-points-card ul {
     color: #364153;
 }
 .xcx-card {
    border-radius: 10px;
     padding: 25px;
 }
 .popup-box {
     background: #323233;
     border: 2px solid #646465;
     max-width: 430px;
     padding: 2.5rem;
 }
.popup-overlay .fa-circle-info, .popup-overlay .fa-info-circle {
     font-size: 40px;
 }
 .popup-box h3 {
     font-size: 1.1rem !important;
     margin-bottom: 1rem;
 }
 
 .popup-4sc-or span {
     position: relative;
     background: #323233;
     padding: 0px 11px;
 }
 .popup-4sc-or::before {
     content: "";
     display: block;
     width: 100%;
     height: 1px;
     background-color: #fff;
     position: absolute;
     left: 0;
     top: 9px;
 }
 .popup-4sc-or {
     position: relative;
     margin-bottom: 15px;   
 }
 div#popup-4sc-fallback {
     margin-top: 20px;
 }
 #popup-4sc-button {
     margin-top: 30px;
     background-color: transparent;
     border: 1px solid #fff;
 }
 .xcx-highlight, .xcx-card-header,  .xcx-points-card {
    margin-bottom: 15px !important;
 }

 li.topTcxUserBar.loggedin:after {
    display: none  !important;
 }

 #email-step .form-description {
    display: none;
}

.reg-phone-group {display: none !important;}