/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 16 2026 | 13:46:03 */
/* Asbestos Remediation Services — Certified Testing, Removal & Clearance Nationwide, $1,200–$30,000+ Page */

/* MAIN WRAPPER */
.ctm-steps-bar {
    position: relative;
    overflow: hidden;
}

/* LEFT PROGRESS LINE */
.ctm-steps-bar::before {
    content: "";
    position: absolute;
    left: 38px; /* adjust based on your number position */
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
}

/* FILLING LINE */
.ctm-steps-bar::after {
    content: "";
    position: absolute;
    left: 38px;
    top: 0;
    width: 4px;
    height: var(--progress-height, 0%);
    background: #E8B237;
    border-radius: 20px;
    transition: height 0.15s linear;
}

/* NUMBER CIRCLE */
.ctm-steps-bar h4 {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* ACTIVE NUMBER */
.ctm-steps-bar .active-step h4 {
    color: #E8B237;
    transform: scale(1.08);
}



/* Mobile Responsive Table */
@media (max-width: 767px) {

  .ctm-table-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ctm-table-mobile table {
    min-width: 700px;
    width: 100% !important;
  }

  .ctm-table-mobile th,
  .ctm-table-mobile td {
    padding: 12px !important;
    font-size: 14px !important;
    line-height: 1.5;
    white-space: normal;
  }

  .ctm-table-mobile table::-webkit-scrollbar {
    height: 6px;
  }

  .ctm-table-mobile table::-webkit-scrollbar-thumb {
    background: #003c2a;
    border-radius: 10px;
  }
	
	.ctm-steps-bar::after,
	.ctm-steps-bar::before{
		display: none !important;
	}
}