
@keyframes scale-down {
    0% {
        transform: scale(1);
        /* Original size */
    }

    50% {
        transform: scale(0.9);
        /* Scaled up */
    }

    100% {
        transform: scale(1);
        /* Back to original size */
    }
}

@keyframes scale-up {
    0% {
        transform: scale(1);
        /* Original size */
    }

    50% {
        transform: scale(1.2);
        /* Scaled up */
    }

    100% {
        transform: scale(1);
        /* Back to original size */
    }
}

/* Animation for ripple expansion */
@keyframes ripple-number-pad-animation {
    to {
        transform: scale(4); /* Increase scale to make it appear bigger */
        opacity: 0; /* Fade out */
    }
}


@-webkit-keyframes shine {
    to {
        background-position-x: -200%;
    }
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

* {
    scroll-behavior: smooth;
}

.card {
    border-radius:10px;
    overflow: hidden;
}

.card-header, .card-body {
    padding: 18px 20px;
}

.ripple {
    transition: transform 0.2s ease;
    /* Smooth transition */
}

    .ripple:active {
        animation: scale-down 0.2s forwards;
        /* Scale up when clicked */
    }
.ripple1 {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: transparent;
    color: black;
}

    .ripple1:active {
        background-color: #cacacb;
    }


.ripple-number-pad {
    position: relative;
    cursor: pointer;
    background-color: #f0f0f0; /* Default background color */
    transition: background-color 2.7s ease-in; /* Smooth background color change */
}

    /* Change the background color on hover or focus */
    .ripple-number-pad:hover {
        background-color: #e0e0e0;
    }

    /* Create the ripple effect */
    .ripple-number-pad:active {
        background-color: rgba(0, 0, 0, 0.3); /* Ripple color */
        animation: ripple-number-pad-animation 2.7s ease-out;
        transform: scale(0);
    }

.ripple-selector {
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ripple-row {
    position: relative;
    overflow: hidden;
}

    .ripple-row:has(.ripple-selector:active)::before {
        content: '';
        position: absolute;
        border-radius: 50%;
        background: rgba(128, 128, 128, 0.3); /* Grey color */
        width: 100%;
        height: 50px;
        transform: scale(0);
        animation: ripple-animation 0.6s linear;
    }

@keyframes ripple-animation {
    to {
        transform: scale(10);
        opacity: 0;
    }
}

@keyframes scale-up {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

#loop-text {
    height: 30px;
    overflow: hidden;
}

    #loop-text ul {
        padding: 0;
        height: 100%;
        width: 100%;
        -webkit-animation: scroll 5s infinite;
        list-style-type: none;
    }

    #loop-text li {
        line-height: 30px;
        height: 30px;
    }


.flex-1 {
    flex: 1
}

.epoq-connect-logo {
    width: 160px;
}

.epoq-connect-mini-logo {
    height: 34px;
}

.navbar-toggle-button {
}

.mark-default-status {
    font-size: 12px !important;
}

.default-status {
}

.lead-config-footer {
    position: sticky;
    bottom: 0; /* Adjust the offset as needed */
    z-index: 999; /* Ensures it stays above the content */
    background-color: white; /* Keeps the background consistent */
    border-top: 1px solid var(--border-normal-color);
}

.lead-config-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 8px;
    width: 100%;
}

.lead-status-config-grid {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.application-process-config-grid {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.lead-status-config-col {
    height: 100%;
}

.lead-substatus-box {
    overflow-x: hidden;
    overflow-y: auto;
    height: 300px;
    padding-bottom: 0.1rem;
}

.application-process-box {
    overflow-x: hidden;
    overflow-y: auto;
    /*height: 150px;*/
    padding-bottom: 0.1rem;
}

.lead-status-add-new {
    aspect-ratio: 1;
    width: 100%;
    background: white;
    transition: 0.3s all;
    cursor: pointer;
    border: 3px dashed var(--bg-primary-color-transparent_01);
}

    .lead-status-add-new:hover {
        background: var(--border-normal-color);
        transition: 0.3s all;
        border: 3px solid var(--border-normal-color);
    }

.icon-size-lg {
    font-size: 7rem !important;
}


.course-compare-col-1 {
    background: var(--bg-peach-color-dim);
}

.course-compare-col-2 {
    background: var(--bg-peach-color-dimmer);
}

.course-compare-col-3 {
    background: var(--bg-peach-color-dim);
}

.btn-height {
    height: var(--btn-height);
}

.floating-btn {
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    padding: 15px 10px;
    z-index: 999;
    transition: opacity 0.3s ease;
    background: #ffffff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

    .floating-btn.hidden {
        opacity: 0;
    }

.lead-label-content {
    border-radius:4px;
    padding: 1px 4px;
    border: 1px solid transparent;
    font-size:10px;
    margin-right:5px;
}

#draggableButton {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    bottom: 24px;
    right: 24px;
}


    #draggableButton:active {
        cursor: grabbing;
    }

#draggableButtonController {
    position: fixed;
    right: 24px;
    bottom: 0px;
    background: var(--bg-primary-color);
    width: 70px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.call-btn {
    display: flex;
    height: 70px;
    width: 70px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 100px;
    box-shadow: 0px 2px 10px 1px #00000022;
    background: var(--bg-primary-color);
}



.site-collapse-custom-panel {
    background: white;
}

.truncate-very-small-width {
    width: 120px;
}

.truncate-small-width {
    width: 300px;
}

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

.border-radius-8 {
    border-radius: 8px;
}

.status-item {
    border-radius: 100px;
    height: 12px;
    width: 12px;
}

.status-item-lg {
    border-radius: 100px;
    height: 16px;
    width: 16px;
}

.status-item-active {
    background: var(--active-color);
}

.status-item-hot {
    background: var(--danger-color);
}

.status-item-cold {
    background: var(--bg-secondary-color);
}

.status-item-new {
    background: var(--bg-primary-color);
}

.border-focus-color {
    border: 1px solid var(--border-focus-color);
    box-shadow: 0px 1px 1px 0px rgba(24, 36, 51, 0.06)
}

.title {
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid var(--border-light-color);
}

.title-application-process {
    border-bottom: 1px solid var(--border-light-color);
}

.status-pill {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 1px;
    padding-bottom: 2px;
    border: 1px solid var(--border-dark-color);
    border-bottom: none;
}

.group-list {
    border-radius: 10px;
    border: 1px solid var(--border-dark-color);
    overflow: hidden;
}

    .group-list .title {
        border-color: var(--border-dark-color);
    }

        .group-list .title:last-child {
            border: none;
        }


.left-right-border {
    padding: 0px 0px 10px 0px;
}


.sticky-save-wrapper, .sticky-nav-wrapper {
    position: sticky;
    top: 0; /* Adjust the offset as needed */
    z-index: 2; /* Ensures it stays above the content */
}

.sticky-save-wrapper {
    background-color: white; /* Keeps the background consistent */
}

.sticky-nav-wrapper {
    background: var(--sidebar-bg-color);
}



.save-button-div {
    z-index: 2;
    position: sticky;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 6px 1rem 10px 1rem;
}

.diagram-container {
    height: 100%;
}

.diagram-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    outline: none;
    cursor: -webkit-grab;
    cursor: grab;
    touch-action: none;
}


@media (min-width: 641px) {
    #draggableButton {
        display: none;
    }

    #draggableButtonController {
        display: none;
    }

    .save-button-div {
        padding: 2px 1rem 10px 1rem;
    }

    .truncate-very-small-width {
        width: 120px;
    }
}

@media (min-width:768px) {

    .left-right-border {
        border-left: 1px solid var(--border-light-color);
        border-right: 1px solid var(--border-light-color);
    }
}

.text-sidebar-color {
    color: var(--sidebar-bg-color);
}

.bg-sidebar-color {
    background: var( --sidebar-bg-color);
}


.bg-active-color {
    background: var( --bg-active-color);
}

.border-light-color {
    border: 1px solid var(--border-light-color);
}

.border-bottom-light-color {
    border-bottom: 1px solid var(--border-light-color);
}

.border-top-light-color {
    border-top: 1px solid var(--border-light-color);
}

.border-top-lighter-color {
    border-top: 1px solid var(--border-lighter-color);
}

* {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
}

.text-close-color {
    color: var(--text-close-color)
}

    .text-close-color:hover {
        color: var(--text-close-hover-color)
    }

.text-placeholder-color {
    color: var(--text-placeholder-color);
}

.text-success-color {
    color: var(--text-green-color);
}

.text-primary-color-transparent_01 {
    color: var(--bg-primary-color-transparent_05);
}

.text-primary-color {
    color: var(--text-primary-color);
}

.text-danger-color {
    color: var(--text-danger-color);
}

.text-warning-color {
    color: var(--text-orange-color);
}

.text-light-color {
    color: var(--text-light-color);
}



.text-blue-color {
    color: var(--text-blue-color);
}

.text-active-color {
    color: var(--text-active-color);
}

.text-primary-selected-color {
    border-color: var(--text-primary-selected-color);
}

.bg-warning-color {
    background: var(--bg-warning-color);
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-grabbing {
    cursor: grabbing;
}

.avatar-full {
    height: 100%;
    width: 100%;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
}


.current-user-div {
    gap: 5px;
}

.upload-avatar {
    height: 120px;
    width: 120px;
    border-radius: 20px;
    background: #CCCCCC66;
    border: 1px solid var(--border-primary-color);
    transition: 0.5s all;
    overflow: hidden;
}

    .upload-avatar p {
        color: var(--text-active-color);
        transition: 0.5s all;
    }

    .upload-avatar:hover {
        border: 1px solid var(--border-secondary-color);
        transition: 0.5s all;
    }

        .upload-avatar:hover p {
            transition: 0.5s all;
            color: var(--text-primary-color);
        }

.avatar {
    height: 70px;
    width: 70px;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
}

.logo-course {
    height: 40px;
    width: 70px;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
}

.avatar-call {
    height: 50px;
    width: 50px;
    border-radius: 100px;
    background: #D3E3FD;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.avatar-call-mini {
    height: 45px;
    width: 45px;
    border-radius: 100px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.avatar-small {
    height: 40px;
    width: 40px;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
}

.avatar-mini {
    height: 60%;
    aspect-ratio: 1;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
}

.avatar-micro {
    height: 30px;
    aspect-ratio: 1;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
}

.avatar-nano-bg {
    height: 24px;
    aspect-ratio: 1;
    border-radius: 100px;
    background: #CCCCCC;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.avatar-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.shine-success {
    background: linear-gradient(110deg, var(--success-color-dimmer) 8%, var(--success-color-dim) 18%, var(--success-color-dimmer) 33%);
    -webkit-animation: 1.5s shine linear infinite;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.shine-danger {
    background: linear-gradient(110deg, var(--danger-color-dimmer) 1%, var(--danger-color-dim) 18%, var(--danger-color-dimmer) 33%);
    -webkit-animation: 1.5s shine linear infinite;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.shine-primary {
    background: linear-gradient(110deg, var(--primary-color-dimmer) 8%, var(--primary-color-dim) 18%, var(--primary-color-dimmer) 33%);
    -webkit-animation: 1.5s shine linear infinite;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.selected {
    background: var(--selected-secondary-color);
}

.font-italic {
    font-style: italic
}









h1:focus {
    outline: none;
}

a,
.btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0px;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 40px 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.lead-status-column {
}

.current-user-div .avatar-micro {
    height: 22px;
}

.single-lead-details-email-text-div {
    width: 150px;
}


@media (min-width:400px) {
    .current-user-div .avatar-micro {
        height: 30px;
    }
}


@media (min-width:768px) {

    .current-user-div .avatar-micro {
        height: 22px;
    }
}


@media (min-width:992px) {
    .truncate-very-small-width {
        width: 120px;
    }

    .lead-status-column {
        height: 100%;
    }

    .current-user-div .avatar-micro {
        height: 30px;
    }
}



.call-type-tab {
    padding: 10px;
}

    .call-type-tab:hover {
        background: var(--success-color-dimmer);
    }


.call-type-text {
    font-size: 11px;
}
.call-sub-type-text {
    font-size: 9px;
}

.call-type-count-text {
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 18px;
}

.hidden-form-input-box {
    height: 0px;
    width:0px;
    overflow: hidden;
}


.box-image-select {
    position: relative;
    background: white;
    transition: 0.3s all;
    cursor: pointer;
    border: 3px dashed var(--text-light-color);
    border-radius: 8px;
    padding: 20px;
}

    .box-image-select span {
        line-height: 1rem;
    }

    .box-image-select:hover {
        background: var(--bg-light-color);
        transition: 0.3s all;
        border: 3px dashed var(--bg-primary-color);
    }

    .box-image-select .text-placeholder-color {
        transition: 0.3s all;
        color: var(--text-light-color);
    }

    .box-image-select:hover .text-placeholder-color {
        transition: 0.3s all;
        color: var(--bg-primary-color);
    }

    .box-image-select .box-selected-value {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        text-align: center;
        height: 80px;
        width: 80px;
    }

.box-image-selected {
    height: 120px;
    width: 120px;
}

.delete-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.delete-icon {
    font-size: 1.25rem;
    cursor: pointer;
}


.branch-btn-ctn {
    cursor: pointer;
    display: flex;
    border: 1px solid var(--border-light-color);
    border-radius: 100px;
    padding: 6px 10px;
    align-items: center;
    background: #ffffff;
}

    .branch-btn-ctn:hover {
        background: #F0F0F0;
    }

.branch-btn {
    font-size: 10px;
    padding: 4px;
    justify-content: center;
    display: flex;
    border-radius: 100px;
    align-items: center;
    background: var(--bg-primary-color);
}

.branch-btn-text {
    font-size: 14px;
    font-weight: 500
}

.product-btn-ctn {
    cursor: pointer;
    display: flex;
    border: 1px solid var(--border-light-color);
    border-radius: 100px;
    padding: 6px 10px;
    align-items: center;
    background: #ffffff;
}

    .product-btn-ctn:hover {
        background: #F0F0F0;
    }

.product-btn {
    font-size: 10px;
    padding: 4px;
    justify-content: center;
    display: flex;
    border-radius: 100px;
    align-items: center;
    background: var(--bg-primary-color);
}

.product-btn-text {
    font-size: 14px;
    font-weight: 500
}

.green-button {
    border: 1.5px solid green !important;
    color: green !important;
    background-color: transparent !important;
}

    .green-button:hover {
        background-color: rgba(0, 128, 0, 0.1) !important;
    }

    .green-button svg {
        fill: green !important;
    }

.lead-label-item, .lead-label-item-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

    .lead-label-item:hover {
        background-color: var(--selected-color);
    }

        .lead-label-item:hover .lead-label-item-text-web {
            color: black;
            transition: color 0.3s ease;
        }


.lead-label-item-selected {
    background-color: var(--selected-color);
}

    .lead-label-item-selected .lead-label-item-text-web {
        color: black
    }

.lead-label-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.lead-label-item-text-mobile {
    color: var(--text-primary-color);
}


.lead-label-item-text-web {
    color: white;
}


.steps {
    position: sticky;
    top: 0; /* Adjust the offset as needed */
    z-index: 999; /* Ensures it stays above the content */
    background-color: white; /* Keeps the background consistent */
}

.steps {
    display: flex;
    align-items: center;
    background: white;
    width: 100%;
    border-bottom: 1px solid var(--border-normal-color);
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 10px 20px;
}

    .step:not(:last-child) {
        position: relative;
        margin-right: 2rem; /* Space between steps */
    }

        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -1.4rem; /* Adjust based on arrow size */
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #dcdcdc; /* Arrow color */
            z-index: 1;
        }

    .step.active .step-icon {
        background-color: var(--bg-primary-color);
        border: 2px solid var(--bg-primary-color);
        color: #fff;
    }

    .step.completed .step-icon {
        background-color: var(--text-green-color);
        border: 2px solid var(--text-green-color);
        color: #fff;
    }

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light-color);
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 20px
}

.step-title {
    font-size: 0.875rem;
    text-align: center;
    color: #333;
}


@media(min-width:600px) {
    .truncate-small-width {
        width: 200px;
    }
}


@media(min-width:1000px) {

    .lead-status-config-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width:1400px) {

    .lead-status-config-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(min-width:1000px) {

    .application-process-config-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media(min-width:1400px) {

    .application-process-config-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
}


@media(min-width:1600px) {
    .truncate-small-width {
        width: 300px;
    }
}

.status-bar-safe-area {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .status-bar-safe-area {
        display: flex;
        position: sticky;
        top: 0;
        height: env(safe-area-inset-top);
        background-color: #f7f7f7;
        width: 100%;
        z-index: 1;
    }

    .flex-column,
    .navbar-brand {
        padding-left: env(safe-area-inset-left);
    }
}
