﻿.ibox {
    margin-top: -15px;
}

.rounded-div {
    border-radius: 8px;
}
.select2 {
    width: 100% !important;
}

.bar {
    margin-top: -20px;
}

.roww {
    position: relative;
    z-index: 2;
}

.stepper-vertical {
    display: flex;
    position: relative;
}

.circle {
    font-family: system-ui;
    font-size: 14px;
    font-weight: 600;
    color: #262a3e;
    line-height: 32px;
    background: #fff;
    border: solid 1px #d5d8e3;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .08);
    width: 32px;
    height: 32px;
    border-radius: 16px;
    margin-right: 16px;
    position: relative;
    text-align: center;
    float: left;
}

.green {
    color: #fff;
    background: #00b9af;
    border: solid 1px #00b9af;
}

.green-border {
    color: #00b9af;
    background: #fff;
    border: solid 1px #00b9af;
}

.grey {
    color: #d5d8e3;
}

.bar {
    position: relative;
    z-index: 1;
    width: 2px;
    height: 72px;
    background: #eee;
    top: 0;
    left: 16px;
}

    .bar:last-child {
        display: none;
    }

.progress:after {
    content: '';
    position: absolute;
    top: 0;
    height: 0;
    background: #00b9af;
    width: 100%;
    height: 100%;
    z-index: 2;
}


/* Full-screen overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none; /* Hide overlay initially */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

/* Spinner styles */
.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loading text styles */
.loading-text {
    color: #fff;
    font-size: 18px;
    font-family: Arial, sans-serif;
}


.sectionTitle {
    font-size: 30px;
    font-weight: bold;
    border-bottom: solid 2px #c0c0c0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.bg-grey {
    background-color: #e0e0e0; /* Neutral medium grey */
    color: #343a40; /* Dark text color for readability */
}