:root {
	overflow-x: hidden;
}
.myuplinemanager small span {
	background: #e22a4d;
	color: #fff;
	border-radius: 100px;
	padding: 4px 15px;
	font-size: 12px;
	font-weight: 700;
}
.editprofilepage .form-control-plaintext {
	font-weight: 700;
}
.cs-ul-wrapper .sub-menu {
	position: absolute;
	display: none;
}
#cs-navigation .cs-ul {
	flex-flow: wrap;
}
.topnav-wrap a {
	color: #f3f3f3;
}

.cs-user-menu {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    position: relative;
}
		
.cs-user-menu .dropdown-toggle {
    background: none;
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    cursor: pointer;
}
#userDropdown img {
	object-fit: cover;
}
.cs-user-menu .dropdown-menu {
    right: 0;
    left: auto;
}
#cs-navigation .cs-button-solid {
	line-height: inherit;
	padding: 10px 24px;
	min-width: auto;
	border-radius: 0;
}
@media (max-width: 1199px) {
		.cs-user-menu > a span {
			display: none;
		}
}
@media (max-width: 991px) {
  #cs-navigation .cs-button-solid {
    display: block;
  }
}
@media (max-width: 768px) {
  .hero-wrap .hero-buttons {
	flex-direction: column;
  }
	.hero-section {
		height: auto;
	}
}
/** Registration **/
#password-strength-bar {
    transition: width 0.3s;
}
.tfpcustomregistrationform input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}
.step-tracker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 1;
}
.step .circle {
    width: 40px;
    height: 40px;
    background: #dee2e6;
    color: #000;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    transition: all 0.3s;
}
.step.active .circle {
    background: #0d6efd;
    color: #fff;
}
.step.completed .circle {
    background: #198754;
    color: #fff;
}
.step .label {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}
.step-tracker .line {
    height: 3px;
    background: #dee2e6;
    position: absolute;
    top: 20px;
    left: 15%;
    width: 70%;
    z-index: 0;
}
.step.completed .label {
    color: #198754;
}
.is-invalid {
    border-color: #dc3545 !important;
}
.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}
.btn {
	white-space: nowrap;
}

.manager-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #ccc;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
