

/*--------------------------------------------------------------
# Register Modal
--------------------------------------------------------------*/

.step-indicator {
    flex: 1;
}

.step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 5px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    line-height: 40px;
    font-weight: bold;
}

    .step-icon.active {
        background-color: #0d6efd;
    }

.step-line {
    height: 2px;
    background-color: #ccc;
}

.step {
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(50px);
    position: absolute;
    width: 100%;
}

.active-step {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}


/*--------------------------------------------------------------
# Loading 
--------------------------------------------------------------*/
/* Overlay full screen */
#globalLoading {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 9999; /* on top of everything */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* white with transparency */
    justify-content: center;
    align-items: center;
}

/* Centered content */
#globalLoading .loading-content {
    text-align: center;
}

/* Loading text */
#globalLoading p {
    font-size: 16px;
    color: #333;
}


.company-card {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border-radius: 1rem;
    border: 2px solid transparent; /* default */
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.company-card.selected {
    border: 2px solid #0d6efd !important; /* strong blue border */
    background-color: #e9f3ff !important; /* light blue background */
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.2) !important;
}


/*--------------------------------------------------------------
# Country Select Billing Company Modal
--------------------------------------------------------------*/


.country-input {
    border-color: #c7cdd4;
}

.country-input:disabled {
    /* Styles for when input is disabled */
    color: #999; /* Example disabled color */
    background-color: #eee; /* Example disabled background color */
    border-color: #ddd; /* Example disabled border color */
}

.country-input:focus {
    /* Optional: Styles for when input is focused */
    outline: none; /* Remove focus outline */
    border-color: #66afe9; /* Example focus border color */
}

.country-select {
    position: relative; /* Needed for proper positioning of the list */
    cursor: pointer; /* Indicate interactivity on hover */
    display: inline-block; /* Allow for inline positioning */
    padding: 5px 10px; /* Add some padding for aesthetics */
    border: 1px solid #ccc; /* Basic border */
    border-radius: 4px; /* Rounded corners for a cleaner look */
}

.country-select .country-input {
    width: 100%; /* Ensure input fills the entire container width */
    border: none; /* Remove default border from input */
    outline: none; /* Remove default outline on focus */
}

.country-list {
    position: absolute; /* Position list absolutely within the container */
    top: 100%; /* Place the list below the input */
    left: 0; /* Align the list to the left edge of the container */
    width: 100%; /* Make the list as wide as the container */
    background-color: #fff; /* White background for list items */
    border: 1px solid #ccc; /* Basic border for the list */
    border-top: none; /* Remove top border as it overlaps the container */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    list-style: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    max-height: 200px; /* Set a maximum height to avoid overflow */
    overflow-y: auto; /* Enable scrolling if list exceeds max-height */
    display: none; /* Initially hide the list */
}

.country-list li {
padding: 5px 10px; /* Add padding for list items */
cursor: pointer; /* Indicate interactivity for list items */
white-space: nowrap; /* Prevent wrapping of long country names */
text-overflow: ellipsis; /* Truncate long country names if they overflow */
/* Optional: Add hover effect for list items */
}

.country-list li:hover {
    background-color: #eee; /* Change background color on hover */
}

.country-select.open .country-list {
    display: block; /* Show the list when the country-select is open */
}

.country-list.disabled {
    pointer-events: none;
    color: #999;
    background-color: #eee;
    border-color: #ddd;
}

    .country-list.disabled li {
        color: #999;
    }
