
.steps-vertical {
    flex-direction: column;
}

.steps {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 50%;
}

.steps-vertical .step-item {
    display: flex;
    position: relative;
    text-align: left;
}

.step-item {
    position: relative;
    flex: 1 1 0;
    color: inherit;
    text-align: center;
    cursor: default;
}

.step-dot {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--tblr-steps-color, #007bff);
    /* Fallback to blue if variable is not set */
    border-radius: 50%;
    z-index: 1;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1.5rem;
    bottom: -1.5rem;
    width: 2px;
    background-color: var(--tblr-steps-inactive-color, #d1d1d1);
    /* Fallback to light grey if variable is not set */
    z-index: 0;
}

.step-item:last-child::before {
    bottom: auto;
    height: 0;
    /* Remove line for last item */
}

.step-item.active .step-dot {
    background-color: var(--tblr-steps-color, #007bff);
    /* Fallback to blue if variable is not set */
}

.step-content {
    margin-left: 2rem;
    /* Adjust this for space between dot and content */
    text-align: left;
}

.h4 {
    margin: 0;
}

.text-secondary {
    color: #6c757d;
    border-bottom: 0.1rem dashed gray;
}

.user-register-back {
    background-image: url('../images/user-register-back.png');
    background-size: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Image upload css */
/* CSS for object-center mixin */
.object-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Variables converted to fixed values */
.circleSize {
    width: 165px;
    height: 165px;
}

.radius {
    border-radius: 100px;
}

.shadow {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
}

.fontColor {
    color: rgb(250, 250, 250);
}

.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.profile-pic input {
    display: none;
}

.profile-pic img {
    position: absolute;
    object-fit: contain;
    width: 165px;
    height: 165px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    z-index: 0;
}

.profile-pic .-label {
    cursor: pointer;
    height: 165px;
    width: 165px;
}

.profile-pic:hover .-label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    color: rgb(250, 250, 250);
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
    margin-bottom: 0;
}

.profile-pic span {
    display: inline-flex;
    padding: 0.2em;
    height: 2em;
}
/* 
.alert-message-hide {
    display: none !important;
}

.alert-message-show {
    display: block !important;
} */

#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black */
    z-index: 999;
    /* Ensure the overlay is on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
}

#spinner {
    z-index: 1000;
    /* Ensure the spinner is above the overlay */
}


#success-message {
    position: fixed;
    top: 20px;
    /* Keep success message at the top */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    /* Ensure it's above other content */
}

#error-messages {
    position: fixed;
    bottom: 20px;
    /* Position 20px from the bottom */
    right: 20px;
    /* Position 20px from the right */
    z-index: 1000;
    /* Ensure it's above other content */
    width: auto;
    /* Adjust the width as necessary */
    max-width: 300px;
    /* Optional: set a max-width */
}

/* Nav Pills Styling */
.nav-pills .nav-link {
    margin: 0 5px;
}

/* Form Layout for Larger Screens (Desktop) */
@media (min-width: 1024px) {
    #form-rows .form-row > .col-lg-4,
    #form-rows .form-row > .col-lg-3,
    #form-rows .form-row > .col-lg-2,
    #form-rows .form-row > .col-lg-1 {
        display: block;
        float: left;
    }
}

/* Form Layout for Screens Below 1024px */
@media (max-width: 1024px) {
    #form-rows .form-row > .col-lg-4 {
        width: 33.33%;
        float: left;
    }

    #form-rows .form-row > .col-lg-3 {
        width: 33.33%;
        float: left;
    }

    #form-rows .form-row > .col-lg-2,
    #form-rows .form-row > .col-lg-1 {
        width: 33.33%;
        float: left;
    }
}

/* Form Layout for Mobile */
@media (max-width: 767.98px) {
    #form-rows .form-row > .col-lg-4,
    #form-rows .form-row > .col-lg-3,
    #form-rows .form-row > .col-lg-2,
    #form-rows .form-row > .col-lg-1 {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }
}

/* Add spacing between rows */
#form-rows .form-row {
    margin-bottom: 15px;
}

/* Add a separator (horizontal line) between rows */
#form-rows hr {
    border: 1px solid #ccc;
    margin-top: 0;
    margin-bottom: 20px;
}

.step-content-head{
    font-size: 19px;
}

.fs-10{
    font-size: 10px;
}

.text-capitalize{
    text-transform: capitalize;
}

#leadProgress .offcanvas-body{
    max-height: 100vh;
    overflow: auto;
}

.toast-container {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 20px;
    z-index: 1050; /* Ensure it's above other content */
}
.toast {
    min-width: 300px; /* Adjust as needed */
    max-width: 500px; /* Adjust as needed */
}
#notificationArea{
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.icon-notifications {
    color: white; /* Change the icon color to white */
}

.bg-transparent{
    border: 1px solid;
}

.notification-link-a{
    text-decoration: none;
}

.notification-row{
    display: flex; 
    justify-content:space-between
}

.dt-empty{
    text-align: center;
}

a.mini-stat{
    text-decoration: none;
}

.th-dnone,.td-dnone{
    display: none !important;
}

.leadprogress ul .step-content{
    margin: 0;
    border: 1px solid gray;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.leadprogress ul .step-content strong{
    font-size: 13px;
}

.leadprogress ul .step-content .text-secondary{
    border-bottom: none;
}

#offcanvasLeadDetails{
    overflow: scroll;
}