button,
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}


fieldset {
    border: none;
    padding: 0;
}

[type=checkbox], [type=radio]{
	accent-color:#f7c845;
}

.therapist-step-form-container {
    width: 100%;
    max-width: 1216px;
    margin: 0px auto;
}

.therapist-new-form-content {
    display: flex;
    margin: 50px auto;
    justify-content: space-between;
}

/* Sidebar */
.sidebar {
    width: 23.1%;
    /* background: #f9f9f9;
            padding: 30px 20px; */
    position: sticky;
    top: 40px;
    height: 100%;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 16px;
    position: relative;
    height: 52px;
}

/* .sidebar ul li::before {
    content: "";
    position: absolute;
    background-image: url(../images/right-arrow.svg);
    width: 100%;
    max-width: 36px;
    height: 36px;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
} */

.sidebar ul li.active {
    border-radius: 8px;
    border: 1px solid #EDEDED;
    background: #FFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
    color: var(--Brand-Primary, #282828);
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
    text-transform: capitalize;
}

.sidebar ul li.active::before {
    content: "";
    position: absolute;
    background-image: url(../images/right-arrow.svg);
    width: 100%;
    max-width: 12px;
    height: 12px;
    right: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}
.sidebar ul .left-bar.complete.active {
    border-radius: 8px;
    border: 1px solid #EDEDED;
    background: #FFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
    color: var(--Brand-Primary, #282828);
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    position:relative;
}
.sidebar ul .left-bar.complete.active img:first-child {
    display: none;
}
.sidebar ul .left-bar.complete.acitve::before{
    content: "";
    position: absolute;
    background-image: url("/wp-content/uploads/2025/09/right-arrow.svg");
    width: 100%;
    max-width: 12px;
    height: 12px;
    right: 20px;
    top:0px;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    margin: auto;
}
/* Form Content */
.form-content {
    width: 100%;
    /* padding: 40px; */
    display: none;
    animation: fadeIn 0.5s;
    border-radius: 16px;
    border: 1px solid #EDEDED;
    background: #FFF;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
}

.form-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-group {
    /* margin-bottom: 20px; */
}

.form-group label {
    display: block;
}

.form-group select,
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=number],
.form-group textarea {
    width: 100%;
    padding: 12px;
    color: #000;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
}

.form-group textarea {
    resize: none;
    height: 80px;
}

.form-check {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

#consultation-fee-range {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.price-block {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}
.currency-block {
    font-size: 16px;
    height: calc(100% - 3px);
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    background: #ffff;
    margin: 1px;
    border-radius: 8px 0 0 8px;
    border-right: 1px solid #E0E0E0;
}

.consultation-price-input {
    padding-left: 40px !important;
    line-height: 1;
}

.btns {
    display: flex;
    margin-top: 30px;
    gap: 16px;
    margin-left: auto;
}

.btn {
    /* background: #fcd34d; */
    border: none;
    padding: 10px 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    color: var(--Brand-Primary, #282828);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.btn:hover {
    background: #fbbf24;
}

.btn:disabled {
    background: #ddd;
    cursor: not-allowed;
}

.sidebar ul.sidebar-navigate li p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* margin-left: 30px; */
}
.error-field {
    border: 2px solid red !important;
    outline: none;
}
.custom-radio.error-field {
    display: none !important;
}

#step-6 .day-row.shift-row .day-name {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

form#therapist-step-form-data {
    width: 100%;
    max-width: 66%;
}

ul.sidebar-navigate li {
    color: #808080;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
    text-transform: capitalize;
    /* 142.857% */
}

.sidebar ul.sidebar-navigate li.active p {
    color: var(--Brand-Primary, #282828);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    text-transform: capitalize;
}

ul.sidebar-navigate li img.active-link {
    display: none;
}

ul.sidebar-navigate li.active img.active-link {
    display: block;
}

ul.sidebar-navigate li.active img.not-active-link {
    display: none;
}

.form-content h2 {
    color: #212529 !important;
    font-family: Poppins !important;
    font-size: 20px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 140% !important;
    /* 28px */
    letter-spacing: 0.2px;
    text-transform: capitalize;
    border-bottom: 1px solid #F2F2F2;
    background: #FAFAFA;
    padding: 20px 40px;
	 border-radius: 16px 16px 0 0;
}

.form-content-data {
    padding: 24px 40px 32px 40px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.form-content-data .form-group label {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
}

.form-content-data .form-group label span {
    color: #F80718;
    font-size: 15px;
    font-weight: 500;
    line-height: 27.86px;
    /* 185.733% */
}

.form-group textarea {
    height: 160px;
    overflow: auto;
}

.form-check.checkbox-group {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.form-check.checkbox-group .work-box label {
    /* width: 100%;
    max-width: 48%; */
    color: #282828;
    font-size: 14px;
    line-height: 19.6px;
    margin-bottom: 0;
}

.work-box {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 48%;
    gap: 12px;
}

.form-check-btn {
    display: flex;
    width: 100%;
    max-width: 48%;
    align-items: center;
    gap: 12px;
}

.form-check-btn label,
.form-check-btn input {
    margin: 0 !important;

}

/* Hide default radio */
.custom-radio {
    display: none !important;
}

/* Label styling for custom radio */
.custom-radio+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

/* Default (unchecked) look */
.custom-radio+label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #cbd5e1;
    /* Light gray border */
    background: transparent;
    box-sizing: border-box;
}

/* Checked (yellow inner with black border) */
.custom-radio:checked+label::before {
    border: 6px solid #222;
    /* Black border */
    background: #FACC15;
    /* Yellow center */
}

button.btn.next {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: var(--Brand-Secondary, #F7C845);
}

button.btn.prev {
    border-radius: 8px;
    border: 1px solid var(--Brand-Primary, #282828);
    background: transparent;
}

button.btn.next img {
    width: 100%;
    max-width: 20px;
    height: 20px;
}

.complete-step {
    display: none;
}

li.left-bar.complete .complete-step {
    display: block;
}

li.left-bar.complete img.not-active-link {
    display: none;
}

li.left-bar.complete {
    color: #F7C845;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
    text-transform: capitalize;
}

.step-2 {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.step-2 label {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}

.step-2 p {
    color: #282828;
    font-size: 12px;
    line-height: 20px;
    /* 166.667% */
}

.step-2 textarea {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    padding: 14px 20px;
    height: 160px;
    overflow: auto;
    resize: none;
}

.step-2 input {
    border-radius: 8px !important;
    border: 1px solid #E0E0E0 !important;
    background: #FAFAFA !important;
    padding: 14px 20px !important;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
}

.step-2 input#train::placeholder {
    color: #868EAE;
    /* 14/Reg */
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
}

.step-2 select {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    padding: 14px 20px;
    color: #868EAE;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.red {
    color: #F80718;
    font-size: 15px;
    font-weight: 500;
}

.back-step a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-step {
    margin-bottom: 32px;
}

.back-step p {
    color: #303030;
    font-size: var(--sds-typography-body-size-medium);
    line-height: 140%;
    /* 22.4px */
    letter-spacing: 0.16px;
}

.back-step a img {
    width: 100%;
    max-width: 16px;
    height: 16px;
}

section.therapist-step-form-new {
    margin-top: 40px;
}

.other-area.step-2::after, .professional-title-wrap::after {
    content: "";
    position: absolute;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20px;
    height: 20px;
    right: 20px;
    top: 40px;
    pointer-events: none;
    cursor: pointer;
}

.other-area.step-2, .professional-title-wrap {
    position: relative;
}


.contact-info {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.contact-info label {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    text-transform: capitalize;
}

.contact-info input {
    border-radius: 8px !important;
    border: 1px solid #E0E0E0 !important;
    background: #FAFAFA !important;
    font-size: 14px;
    padding: 14px 20px !important;
    /* 142.857% */
}

.contact-info input::placeholder {
    color: #868EAE;
}

.add-links h3 {
    color: #282828 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    margin-bottom: 8px;
}

/* Add social Links  */

.social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    justify-content: space-between;
}

#step-3 select,
#step-3 input, #step-5 input {
    padding: 14px 20px !important;
    border-radius: 8px !important;
    border: 1px solid #E0E0E0 !important;
    background: #FAFAFA !important;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
}


.delete-btn {
    border: none;
    border-radius: 45px !important;
    background: rgba(228, 75, 75, 0.10) !important;
    width: 100%;
    height: 36px;
    max-width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
	padding:0 !important;
}


.delete-btn img {
    width: 100%;
    max-width: 24px;
    height: 24px;
}

.social-row select,
.social-row input {
    width: 100%;
    max-width: 326px;
}

div#add-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    cursor: pointer;
}

div#add-more p {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

div#add-more img {
    width: 100%;
    max-width: 20px;
    height: 20px;
}


.location-dropdown {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.location-dropdown select {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
}

div#map-container {
    width: 100%;
    max-width: 100%;
    max-height: 400px;
    height: 400px;
}

div#map-container iframe {
    height: 100%;
    width: 100%;
}

.map-info label {
    color: #282828;
    font-size: 14px;
    line-height: 19.6px;
    /* 140% */
}

.map-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.locate-box {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.address-group {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

div#add-address {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

div#add-address p {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

div#add-address img {
    width: 100%;
    max-width: 20px;
    height: 20px;
}

div#address-container {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}




/* Step 6  */

.schedule-type input#open24:checked~.days-container {
    display: none;
}

.schedule-type input#openselect:checked~.days-container {
    display: block;
}

.days-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.4s ease-in-out;
}

.days-container.show-days {
    max-height: 100%;
    /* big enough to fit all content */
    opacity: 1;
    margin-top: 12px;
}


.open-hour {
    /* padding: 20px; */
    /* border-bottom: 1px solid #e9ecef; */
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 12px;
}

.schedule-type-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.schedule-type input[type="radio"] {
    margin: 0;
	accent-color:#f7c845;
}

.schedule-type label {
    font-size: 14px;
    color: #6c757d;
}

.day-row {
    display: flex;
    /* padding: 15px 0; */
    /* border-bottom: 1px solid #f1f3f4; */
    flex-direction: column;
    padding-bottom: 20px;
}

#step-6 .day-row:last-child {
    border-bottom: none;
}

#step-6 .day-name {
    /* flex: 1; */
    color: #51526E;
    font-size: 14px;
    line-height: 24.5px;
    /* 175% */
}

.time-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-input-group label {
    font-size: 12px;
    color: #6c757d;
    min-width: 30px;
}

.time-input {
    padding: 6px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    width: 70px;
}

.time-picker-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
}

.time-picker-btn:hover {
    background-color: #f5f5f5;
}

.clock-icon {
    width: 16px;
    height: 16px;
    stroke: #666;
    stroke-width: 2;
    fill: none;
}

.day-toggle {
    /* margin-left: auto; */
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-toggle input[type="checkbox"] {
    margin: 0;
	cursor:pointer;
}

.day-toggle label {
    font-size: 12px;
    color: #6c757d;
    cursor: pointer;
}

.day-enabled-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#step-6 .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 20px;
}

#step-6 .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

#step-6 input:checked+.slider {
    background-color: #F7C845;
}

#step-6 input:checked+.slider:before {
    transform: translateX(20px);
}

.day-row.disabled {
    opacity: 0.5;
}

.day-row.disabled .time-controls,
.day-row.disabled .day-toggle,
.day-row.disabled .add-shift-btn {
    pointer-events: none;
}

.time-controls {
    display: flex;
    gap: 32px;
    align-items: center;
	
}

.add-shift-btn {
background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #282828 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 20px !important;
    padding: 0 !important;
    border-radius: 0 !important;
	text-align: left !important;
}

.add-shift-btn:hover {
    text-decoration: underline;
}


.timezone-label {
    margin-bottom: 8px;
    color: var(--Brand-Primary, #282828);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    text-transform: capitalize;
}

.timezone-select {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    appearance: none;
    background-position: right 8px center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
}

.shift-row {
   
    width:100%;
    margin: 5px 0;
	display: flex;
    gap: 39px;
	justify-content:flex-end;
}
.disableDay .time-controls, .disableDay .time-controls input,.time-controls label {
    opacity: 0.5; /* optional */
    pointer-events:none;
}

.disableDay .day-toggle, .disableDay .day-toggle label,.disableDay .day-toggle input {
     opacity: 0.5; /* optional */
     pointer-events:none;
}
.remove-shift-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 12px;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
}

.remove-shift-btn:hover {
    text-decoration: underline;
}

.day-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
	flex-wrap: wrap;
}

.schedule-container {
    width: 100%;
    max-width: 720px;
    margin: auto;
}

.schedule-type label {
    color: #666D92;
    font-size: 14px;
    line-height: 19.6px;
    /* 140% */
}

.time-input-group label {
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.time-input-group input {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    width: 114px;
    max-width: 114px;
    height: 48px;
}

.day-toggle label {
    color: #282828;
    font-size: 14px;
    line-height: 19.6px;
    /* 140% */
}

.day-togle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 138px;
}


/* Step-7  */

.verify-yes-text,
.verify-no-text {
    transition: 0.6s;
}

.verify-slect p {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    margin-bottom: 16px;
}

.verification-data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 16px;
}

.verify-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 50%;
}

.verify-box label {
    color: #404040;
    font-size: 14px;
    line-height: 20px;
    /* 142.857% */
}

.verify-detail-btn p {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
}

.verify-custom-radio {
    display: flex;
    margin: 12px 0;
    justify-content: space-between;
    align-items: center;
}

p.verify-yes-text {
    color: #282828;
    font-size: 12px;
    line-height: 20px;
    /* 166.667% */
}

.verify-no-text {
    border-radius: 12px;
    border: 1px solid #F7C845;
    background: #FFF;

    /* Layer Blur */
    backdrop-filter: blur(14px);
    padding: 12px 20px;
}

.verify-no-text p {
    color: #616161;
    font-size: 12px;
    line-height: 20px;
    /* 166.667% */
}

.verify-no-text p strong {
    color: #282828;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    /* 200% */
    text-transform: capitalize;
}

.verify-no-text p a {
    color: #F7C845;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}



/* Step-8  */

#step-8 .upload-container {
    width: 100%;
    max-width: 100%;
}

#step-8 .upload-box {
    padding: 32px 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 2px dashed rgba(141, 141, 141, 0.30);
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: center;
    align-items: center;
}

#step-8 .upload-box.dragover {
    background: #fffbe6;
    border-color: #f0c040;
}

#step-8 .upload-icon {
    color: white;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    border: 1px solid #F7C845;
    background: rgba(247, 200, 69, 0.08);
}

#step-8 .upload-btn {
    border: none;
    padding: 16px;
    cursor: pointer;
    border-radius: 8px;
    background: #000;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 14px;
    /* 107.692% */
    display: flex;
    align-items: center;
    gap: 8px;
}

#step-8 .upload-btn:hover {
    background: #333;
}

#step-8 .terms {
    margin-top: 16px;
}

#step-8 .terms a {
    color: black;
    text-decoration: underline;
}

#step-8 .form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    gap: 10px;
}

#step-8 .back-btn {
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

#step-8 .submit-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: #F7C845;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #282828;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
    gap: 8px;
}

#step-8 .submit-btn:hover {
    background: #d9a600;
}

/* Popup Styles */
#step-8 .popup-overlay, .profile-wrapper .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#step-8 .popup, .profile-wrapper .popup {
    padding: 32px 48px;
    text-align: center;
    width: 770px;
    border-radius: 24px;
    background: #FFF;

/* Shadow/Light */
    box-shadow: 0 4px 26px 0 rgba(93, 113, 252, 0.07);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 32px;
}

#step-8 .popup-icon, .profile-wrapper .popup-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 70px;
    border: 1px solid #F7C845;
    background: rgba(247, 200, 69, 0.10);
}

#step-8 .popup h2, .profile-wrapper .popup h2 {
	color: #282828;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	/* 120% */
	padding: 0;
	background: transparent;
	border: none;
	text-transform: math-auto;
}

#step-8 .popup p, .profile-wrapper .popup p {
    color: #282828;
    text-align: center;
    font-size: 14px;
    line-height: 20px; /* 142.857% */
}

#step-8 .popup-actions, .profile-wrapper .popup-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

#step-8 .cancel-btn, .profile-wrapper .cancel-btn {
    padding: 12px 20px;
    border: 1px solid black;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #5F5B5B;
    color: #5F5B5B;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    width: 100%;
    max-width: 100%;
}

#step-8 .publish-btn, .profile-wrapper .primary-submit-btn {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background: #F7C845;
    color: #282828;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    width: 100%;
    max-width: 100%;
}

#step-8 .publish-btn:hover, .profile-wrapper .primary-submit-btn:hover {
    background: #d9a600;
}
#payment-form {
    width: 100%;;
}
#step-8 .upload-btn img {
    width: 100%;
    max-width: 14px;
    height: 14px;
}

div#drop-area p {
    color: #212529;
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    /* 166.667% */
}

.terms label {
    color: #282828;
    font-size: 14px;
    line-height: 19.6px;
    /* 140% */
}

.terms label a {
    color: #282828;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.6px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.upload-icon img {
    width: 100%;
    max-width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 80px;
}

/* New Css Therapist Form */

.form-group label {
    display: flex;
    align-items: center;
    gap: 2px;
}

.form-content h2 {
    margin: 0;
}
.other-area.step-2 .select2-container--default .select2-selection--multiple, div#step-4 .select2-container--default .select2-selection--multiple, .professional-title-wrap  .select2-container--default .select2-selection--multiple{
    border-radius: 8px !important;
    border: 2px solid #E0E0E0 !important;
    background: #FAFAFA !important;
    padding: 14px 20px !important;
    font-size: 14px;
    line-height: 20px;
	min-height: 40px;
}

button.select2-selection__clear {
    display: none;
}

ul#select2-professional-title-container li, ul#select2-other-work-container li, ul#select2-session_types-container li, div#step-4 ul#select2-location-container li {
    background: #f7c845;
    color: #000;
    border: none;
    padding: 8px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: fit-content;
    margin: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none;
    color: #000;
    font-size: 18px !important;
    position: static;
}

/* span.select2-search.select2-search--inline {
    display: none;
} */

ul#select2-professional-title-container, ul#select2-other-work-container, div#step-4 ul#select2-location-container, ul#select2-session_types-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background: transparent;
}

ul#select2-professional-title-results li.select2-results__option--selected, ul#select2-other-work-results li.select2-results__option--selected {
    background: #f7c845;
    color: #000;
    margin-bottom: 6px;
}

/* .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable, .select2-container--default .select2-results__option--selected {
    background: #f7c845;
    color: #000;
} */

form#therapist-step-form-data div#step-6 .time-input-group input {
    padding: 14px 10px !important;
}

form#therapist-step-form-data div#step-6 span.select2.select2-container.select2-container--default {
    width: 100% !important;
    max-width: 100%;
    display: flex;
    align-items: center;
    height: 40px;
}

form#therapist-step-form-data div#step-6 span.selection {
    width: 100%;
    max-width: 100%;
    display: flex;
    height: 100%;
}

form#therapist-step-form-data div#step-6 .select2-container--default .select2-selection--single {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    padding: 14px 20px;
    height: 100%;
    display: flex;
    align-items: center;
}


/* Therapist detail page  */

.expert-area span.elementor-post-info__terms-list {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    width: 100% !important;
	font-size:0;
	gap: 12px;
    align-items: center;
}

.expert-area span.elementor-post-info__terms-list span {
    width: 100% !important;
    max-width: calc(50% - 6px);
	position:relative;
	padding-left:16px;
	font-size:14px;
}

.expert-area span.elementor-post-info__terms-list span::after {
    content: "";
    position: absolute;
    left: 0px;
    width: 4px;
    height: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(/wp-content/uploads/2025/08/Ellipse.svg);
    top: 0px;
	bottom: 0px;
    margin: auto;
}

.expert-area span.elementor-icon-list-text.elementor-post-info__item.elementor-post-info__item--type-terms, .expert-area li.elementor-icon-list-item.elementor-repeater-item-b383730.elementor-inline-item {
    width: 100%;
    max-width: 100%;
}

.disableTime {
    pointer-events: none;
    opacity: 0.5;
}
.blog-category-list .blog-category-filter.activeFilter {
    font-weight: 700;
}
.sidebar-navigate:has(.currentlyStep) .left-bar.active {
    box-shadow: none !important;
    border: none;
}


.sidebar-navigate:has(.currentlyStep) .left-bar.active::before {
    content: none;
}
.errorMessage {
    display: none;
	color: red;
}
.verify-detail-btn:has(.error-field) .errorMessage {
   display:inline;    
}

.form-group:has(.error-field) .errorMessage {
    display: inline;
}
.verify-slect:has(.error-field) .errorMessage {
    display: inline;
}
#meeting-mode .meeting-mode-option.active:last-of-type {
    position: absolute !important;
    width:100%;
    background-color:#fff;
    z-index:999;
}

#meeting-mode {
    position: relative;
}

#meeting-mode .meeting-mode-option.active.selected:last-of-type {
    position: relative !important;
}
.selectedFilter {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px;
}

.filter-tag {
    background-color: #EDEDED;
    padding: 10px;
    border: 1px solid #D7E2E3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.filter-tag span {
    cursor: pointer;
}