*{
    font-family: "Albert Sans";
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    overflow: hidden;
    background-image: url('bg.png');
}


.step {
    display: none; /* Hide all steps by default */
  }
  .step.active {
    display: block; /* Show only the active step */
  }


.welcome-text{
    font-size: 16px !important;
}

.bg-primary{
    background-color: #13a4d6 !important;
}

.left-side-container{
    border-radius: 0.75rem;
    border-left: 5px solid #13A4D6;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    height: 96vh;
    margin-block: 12px;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.right-side-container{
    border-radius: 0.75rem;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
    height: 96vh;
    margin-block: 12px;
    margin-right: 8px;
    overflow-x: auto;
}

/*.row{*/
/*    gap: 8px;*/
/*}*/

.main-container{
    max-width: unset !important;
}

/*.field-main-container{*/
/*    margin-top: 40px !important;*/
/*}*/

.field-head{
    font-size: 16px;
}

.field-sub-head{
    font-size: 12px;
}

.flow-left{
    padding: 0px !important;
    padding-inline: 12px !important;
    margin-top: 10px !important;
}

.welcome-text-container{
    padding: 0px !important;
    padding-inline: 12px !important;
    margin-top: 10px !important;
    border-bottom: 1px solid #adadad;
    padding-bottom: 4px !important;
}

    /* Make the input field in Select2 more prominent */
    .select2-container .select2-selection--multiple {
        min-height: 38px;  /* Increase the height */
        border-radius: 0.375rem; /* Match with Bootstrap */
        font-size: 12px;
        font-family: "Albert Sans";
      }
      .select2-container .select2-selection__choice {
        background-color: #13a4d6;
        color: black;
        font-size: 12px;
        border-radius: 0.25rem;
        padding: 0.2rem 0.6rem;
      }


p{
    margin-bottom: 4px !important;
}
  



/* Ensure the container doesn't overflow the body */
.container {
    width: 100%;
    max-width: 1200px; /* You can adjust this width based on your needs */
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden; /* Prevent body overflow */
  }
  
  /* Make form elements responsive and overflow if needed */
  form {
    display: flex;
    flex-direction: column;
    gap: 0px; /* Space between form elements */
    max-height: 100vh; /* Prevent the form from exceeding viewport height */
    overflow-y: auto; /* Allow vertical scrolling if the form is too long */
    padding-right: 15px; /* Space for scrollbar if needed */
    box-sizing: border-box;
  }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #fff !important;
    border: 1.5px solid #13a4d6 !important;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 5px;
    /* padding: 0; */
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #aaa;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: red !important;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400 !important;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0;
}
  /* For smaller devices (768px and above) */
  @media (min-width: 768px) {

  
    form {
      max-height: 80vh; /* Adjust the height as per your preference */
      overflow-y: auto; /* Allow vertical scrolling within the form */
    }
    
  }
  
  /* For larger screens */
  @media (min-width: 1024px) {

  }
  
  /* Optional: You can make individual form fields responsive */
  input, textarea, select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px; /* Space between input fields */
  }
  

  .flow-left .row {
    position: relative;
}

.progress-line {
    width: 3px;
    background: #ddd;
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 20px;
    z-index: 0;
}

.step-icon {
    position: relative;
    z-index: 1;
    transition: background 0.3s, color 0.3s;
}

.step-icon.active {
    background: #13a4d6;
    color: #fff;
}

.step-icon.active i {
    color: #fff;
}

.col-12 {
    position: relative;
}









.btn-primary {
    color: #fff;
    background-color: #13a4d6 !important;
    border: none !important;
    width:20% !important;
}
 .step-indicator {
  position: relative; /* Ensure that the pseudo-element is positioned relative to this */
}

/* .step-indicator::after {
  content: "";
  position: absolute;
  top: 40px;  
  left: 10%;
  transform: translateX(-50%);
  width: 2.5px;
  height: 70px;
  background-color: #e0e0e0; 
} */
.step-icon {
    transition: background-color 0.3s ease;
}

.active-step .step-icon {
    background-color: #13a4d6; /* Active step background color */
}
.active-step {
    font-weight: bold;
    color: #fff !important;
}
.step-line {
    width: 50px;
    height: 2px;
    background-color: #ddd;
    transition: background-color 0.3s ease;
    transform: rotate(90deg);
    position: relative;
    top: 40px; 
}


.step-line.active-line {
    background-color: #13a4d6; /* Active line color */
}

/* .active-step div:first-child {
    background-color: #13a4d6 !important;
    color: #fff !important;
} */

/* .active-step img {
    filter: brightness(0) invert(1);
} */

.text-primary {
    color: #13a4d6 !important;
    font-size: 24px;
    font-weight: 400;
    user-select: none;
}
.rounded-3 {
    border-radius: .4rem !important;
}
.file-upload-container {
    position: relative;
}
.file-upload-input {
    opacity: 0; /* Hide the actual file input */
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100px; /* Width of the file input */
    cursor: pointer;
}
.upload-label {
    position: absolute;
    right: 10px; /* Adjust position for the upload label */
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #007bff; /* Bootstrap primary color */
    cursor: pointer;
}
.clear-button {
    position: absolute;
    right: 80px; /* Position for the clear button */
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: red; /* Color for the clear button */
    cursor: pointer;
    display: none; /* Initially hidden */
}
.form-control:disabled, .form-control[readonly] {
    background-color: #fff !important;
    opacity: 1;
}

.mobile-logo {
    display: none;
}
.active-step div:first-child {
    /* background-color: #13a4d6 !important; */
    color: #333;
}
.text-dark {
    color: #13a4d6 !important;
}
.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 0rem !important;
}
.g-4, .gy-4 {
    --bs-gutter-y: 0.5rem;
}
@Media(max-width:767px){
    .left-side-container {
        border-radius: 0; 
        border-left: none; 
        background: none; 
        box-shadow: none; 
        height: auto; 
        margin-block: 0; 
        margin-right: 0;
        display: none;
        flex-direction: unset; 
        justify-content: unset; 
    }
    form {
        max-height: 80vh; /* Adjust the height as per your preference */
        overflow-y: auto; /* Allow vertical scrolling within the form */
      }
      .right-side-container{
        margin-left:10px;
      }
      .rounded-3 {
        font-size: 10px !important; /* Smaller font size for mobile screens */
    }
    .btn-secondary {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d;
        font-size: 12px;
    }
    .btn-primary{
        font-size: 12px;
        width:30% !important;
    }
    .mobile-logo {
        display: block; /* Show on mobile and tablet */
    }
    
}


