:root {
    --primary-color: #4ecdc4;
    --primary-hover: #4fada8;
    --danger-color: #df6a6a;
    --text-color: #333;
    --text-black: #000000;
    --text-muted: #242429;
    --border-color: #e9ecef;
    --background-light: #f8f9fa;
    --background-white: white;
    --border-radius: 6px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-xxl: 24px;
    --spacing-xxxl: 26px;
}

.ff-inter {
    font-family: "Inter", sans-serif;
}

/* Converting nested SCSS syntax to regular CSS selectors */
/* Profile Block - Main Content */
.profile {
    flex: 1;
    /* padding: var(--spacing-xl); */
    background: var(--background-white);
}

/* Profile Header Element */
.profile__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.profile__title-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    height: auto !important;
    border: none !important;
}

.profile__icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-white);
}

.profile__title {
    font-size: 20px;
    line-height: 24px;
    color: var(--text-muted);
    margin: 0px;
    font-weight: 600;
}

.profile__view-link {
    color: var(--primary-hover);
    text-decoration: none;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    letter-spacing: -0.24px;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.profile__view-link:hover {
    opacity: 0.7;
}

.profile__view-link::before {
    content: "👁";
    color: var(--primary-hover);
}

/* Profile Notice Element */
.profile__notice {
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-xxl);
}

.profile__notice-text {
    font-size: 14px;
    color: var(--text-black);
    line-height: 20px;
}

/* Profile Tabs Element */
.profile__tabs {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-xxxl);
    border-bottom: 1px solid var(--border-color);
}

.profile__tab {
    background: none;
    border: none;
    padding: 10px var(--spacing-lg);
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    color: var(--text-black);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Tab Modifiers */
.profile__tab--active {
    border-bottom-color: var(--primary-color);
    text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
}

.profile__tab:hover {
    text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.5);
}

.profile__tab--incomplete {
    color: var(--text-black);
}

.profile__tab--incomplete::after {
    content: "●";
    color: var(--danger-color);
    font-size: 14px;
}

.profile__tab--complete::after {
    content: "✓";
    color: var(--primary-hover);
    font-size: 12px;
    border-right: 1.3px solid #4FADA8;
    border-bottom: 1.3px solid #4FADA8;
    height: 12px;
    width: 6px;
    transform: rotate(45deg);
    font-size: 0px;
}

/* Profile Content Element */
.profile__content {
    display: none;
}

.profile__content--active {
    display: block;
}

/* scrollbar */
.profile__tabs {
    overflow-x: auto;
}

.profile__tabs::-webkit-scrollbar {
    height: 3px;
    display: none;
}

.profile__tabs::-webkit-scrollbar-track {
    background-color: gray;
    border-radius: 10px;
}

.profile__tabs::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #45b7aa;
}

.uploader__a {
    text-decoration: none;
}

.dark-gray {
    color: #222222;
}

.light-gray {
    color: #999999;
}

.moxie-shim.moxie-shim-html5 {
    display: none !important;
}

.fieldset-job_logo .profile-upload-wrapper {
    width: 240px;
    text-align: center;

    .profile-label {
        display: block;
        margin-bottom: 10px;
        text-align: left;
        color: #3f3f3f !important;
        font-weight: 400;
        font-size: 16px !important;
        line-height: 20px;
    }

    /* Uploader container */
    .uploader__box {
        width: 100% !important;
        border: 1px dashed #dfdfdf;
        border-radius: 12px;
        background-color: transparent;
        transition: all 0.25s ease;
        cursor: pointer;

        &:hover {
            border-color: #01b1a4;
        }

        /* Drop zone */
        .uploader__drop-zone {
            padding: 38px 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;

            p {
                color: #222222;
                font-size: 12px;
                line-height: 19px;
            }

            .upload-icon {
                font-size: 28px;
                color: #888;
            }

            .file-size-text {
                font-size: 12px;
                color: #888;
            }
        }

        /* Drag over effect */
        &.dragover {
            border-color: #4a90e2;
            background-color: #eaf5ff;
        }
    }

    /* File list */
    .uploader__filelist {
        margin-top: 12px;
        text-align: left;

        .upload__files {
            background: #f5f5f5;
            border-radius: 6px;
            padding: 8px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 6px;
            font-size: 13px;
            transition: background 0.2s;

            &:hover {
                background: #f0f0f0;
            }

            .uploader__delete-btn {
                color: #ff4d4f;
                cursor: pointer;
                transition: color 0.2s;

                &:hover {
                    color: #e60000;
                }
            }
        }
    }

    /* Console */
    .uploader__console {
        height: 180px;
        margin-top: 15px;
        padding: 8px;
        background: #fdfdfd;
        border: 1px solid #eee;
        border-radius: 6px;
        font-size: 12px;
        color: #666;
        overflow-y: auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile {
        padding: 0;
    }

    .profile__header {
        padding: 14px 14px 0 14px;
    }

    .profile__notice {
        padding: 0 14px;
    }

    .profile__tabs {
        box-shadow: 0px -2px 10.1px 0px #0000000d;
    }

    .profile__content {
        h2 {
            padding: 0 14px;
        }
    }
}

/* general info */
.profile,
.profile__content .description,
.profile__content .input-text,
.profile__content .select2-selection__rendered,
.profile__content label {
    font-weight: 400;
    font-family: "roboto", sans-serif;
}

.profile__content .select2-selection__rendered {
    padding-bottom: 0;
}

.profile__content .profile-label {
    margin-bottom: 10px !important;
    opacity: 1 !important;
}

.profile__content label {
    font-size: 12px;
    line-height: 14px;
    color: #888888;
    margin: 0;
}

.profile__content .input-text {
    font-size: 16px;
    line-height: 21px;
    padding: 3px 0 3px;
    color: #3f3f3f;
    border-color: #cccccc;
}

.profile__content .description {
    font-size: 10px;
    line-height: 14px;
    display: block;
    padding-top: 8px;
    color: #888888;
}

.profile__content .job-manager-uploaded-file-preview img {
    object-fit: contain;
    object-position: left center;
    width: fit-content !important;
}

.profile__content[data-tab="general"].profile__content--active {
    display: flex;
    gap: 22px;
}

.profile__content[data-tab="general"]>h2 {
    display: none;
}

.form__wrapper--inner {
    display: flex;
    gap: 20px;
}

.form__wrapper--inner .form-group {
    flex: 1;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field textarea:focus {
    padding: 3px 0px 10px 0px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
}

.profile-box__wrapper .job-manager-uploaded-files {
    padding-top: 5px;
    padding-bottom: 0px;
}

.profile__content[data-tab="general"] .next-prev__btn--box {
    justify-content: end !important;
}

/* location */
.profile__content .location-picker__wrapper {
    display: flex;
    gap: 17px;
}

.profile__content .location-item {
    width: 50%;
}

.profile__content .location-item:last-child {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.profile__content .location-picker__wrapper .enter-coordinates-toggle,
.profile__content .location-picker__wrapper .lock-pin label {
    font-size: 14px !important;
    color: #000000 !important;
    font-weight: 500 !important;
    padding: 0;
}

/* pricing */
.fieldset-flexible-pricing .md-checkbox {
    display: flex;
    gap: 12px;
}

.fieldset-flexible-pricing .md-checkbox .md-checkbox__label label {
    color: #3F3F3F !important;
    font-size: 16px !important;
}

.fieldset-flexible-pricing .md-checkbox .md-checkbox__label label small {
    color: #BBBBBB !important;
    font-size: 12px !important;
}

.fieldset-flexible-pricing .md-checkbox .md-checkbox__label small.description {
    padding-top: 4px;
}

.md-checkbox__label {
    display: flex;
    flex-direction: column;
}

.md-checkbox__label label {
    padding: 0;
}

.md-checkbox__inner .input-checkbox {
    position: relative !important;
}

.md-checkbox__label label:before {
    top: 0px;
}

.md-checkbox:has(.md-checkbox__inner .input-checkbox:checked) .md-checkbox__label label:before {
    background-color: #4FADA8;
    border: 0px;
}

.profile-box__wrapper .md-checkbox:has(.md-checkbox__inner .input-checkbox:checked) .md-checkbox__label label:after {
    border-color: #fff;
    border-style: none none solid solid;
    border-width: 2px;
    height: 4.3px;
    left: 3px;
    top: 3px;
    transform: rotate(313deg);
    width: 8px;
}

/* Description */
.profile__content .fieldset-job_description {
    margin-bottom: 25px;
}

.profile__content .fieldset-job_description label {
    margin-bottom: 0;
}

.profile__content textarea.input-text {
    height: 67px;
}

.profile__content textarea.input-text {
    padding: 0;
    border-color: #cccccc;
}

.profile__content textarea.input-text:focus {
    border-width: 0 0 1px 0;
}

/* services */
.profile__content[data-tab="services"] label {
    color: #bbbbbb;
    font-size: 16px;
}

.job-manager-form .fieldset-support-offered label {
    color: #888888;
    font-size: 12px;
}

/* select 2 design */
.added_certifications_list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.added_certifications_list .certification-item {
    margin: 0;
}

.added_certifications_list .delete-btn {
    position: absolute;
    height: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-item,
.profile__content .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f6f6f6cc;
    color: #3f3f3f;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    line-height: 24px;
    padding: 4px 30px 4px 10px;
    margin-right: 10px;
    margin-top: 3px;
    position: relative;
}

.delete-btn,
.profile__content .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    line-height: 1;
    top: 50%;
    right: 5px;
    left: inherit;
    transform: translateY(-50%);
    color: #fff;
    background-color: #888888;
    border-radius: 50%;
    padding: 2px;
    aspect-ratio: 1;
    border: none;
}

/* experience */
.profile__input-item {
    display: flex;
    gap: 20px;
}

.profile__input-item .form-group {
    flex: 1;
}

.duola_multi_input_box .input-text {
    width: 100%;
}

.fieldset-education .duola_multi_input,
.fieldset-certifications .duola_multi_input {
    padding-top: 0;
}

/* Pricing packages */
.pricing-info__group {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.added_birth-fee {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 8.5px 0px #0000001a;
}

.profile__content .form__wrapper .fieldset-primary-service {
    padding-top: 5px;
}

.profile__content .form__wrapper .fieldset-primary-service .select2-selection__rendered,
.profile__content .form__wrapper .fieldset-price_range .select2-selection__rendered,
.profile__content .fieldset-insurance-accepted .select2-selection--multiple input.select2-search__field {
    min-height: 100%;
    color: #3f3f3f;
    font-family: "Roboto";
    font-weight: 400;
    margin-bottom: 0;
    padding-left: 0px !important;
    padding-bottom: 4px;
}

.profile__content .form__wrapper .select2-selection__arrow {
    background: none;
    height: 8px !important;
    width: 8px !important;
    border-right: 2px solid #888888;
    border-bottom: 2px solid #888888;
    transform: rotate(45deg);
}

.profile__content .fieldset-pricing-structure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile__content .field .input-text:focus {
    padding: 3px 0px 3px 0px !important;
    border-bottom: 1px solid #21bcb4 !important;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
}

.profile__content .fieldset-pricing-structure .field {
    position: relative;
}

.profile__content .fieldset-pricing-structure .field .input-text {
    padding-left: 20px !important;
}

.profile__content .fieldset-pricing-structure .field:after {
    position: absolute;
    content: "$";
    left: 5px;
    color: #888888;
    font-size: 15px;
    top: 0px;
}

.profile__content .select2-container--default .select2-selection--multiple .select2-selection__choice {
    height: auto;
    line-height: normal;
    background-color: #f6f6f6cc !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.profile-box__wrapper .profile__content .new_pricing_field .selectOptions label {
    color: #3f3f3f !important;
    font-size: 16px !important;
    line-height: 20px;
    font-weight: 400;
    text-wrap: auto;
}

.profile__content .add_new_birth_fee {

    padding: 6px !important;
    font-size: 12px !important;
    line-height: 16px !important;
}

.profile-box__wrapper {
    border-top: 0px !important;
    border-right: 0px !important;
    border-bottom: 0px;
}

.profile-box__wrapper .pf-body {
    padding-top: 0px;
}

.profile-box__wrapper:hover {
    box-shadow: none;
    background-color: transparent;
}

.profile__content .form__wrapper .fieldset-primary-service .select2-selection__rendered {
    padding-top: 5px !important;
}

.profile__content .form__wrapper .fieldset-price_range .select2-selection__rendered {
    padding-top: 4px !important;
}

.profile-box__wrapper .select2-container--open .select2-selection__arrow {
    transform: rotate(224deg) !important;
}

.location-picker__wrapper .added_education {
    display: flex;
    flex-direction: column;
}

.location-picker__wrapper .duola_multi_input_box {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.location-picker__wrapper .add_new_field_input_val {
    width: 100%;
}

.location-picker__wrapper .add_new_field {
    position: absolute !important;
    right: 0px !important;
    bottom: 5px;
    background-color: #4FADA8;
}

.profile-box__wrapper .added_birth-fee .button-2,
.profile-box__wrapper .fieldset-education .buttons,
.profile-box__wrapper .multi_value_fields_birth-fee .add_new_birth_fee,
.profile-box__wrapper .multi_value_fields_certifications .buttons,
.profile-box__wrapper .social-networks-repeater .addsocial {
    font-size: 24px !important;
    line-height: 7px !important;
    padding: 5px 3px 8px !important;
    box-shadow: none;
}

.profile-box__wrapper .profile__tab--active {
    font-weight: 600;
    text-shadow: none !important;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .row {
    margin: 0px;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .row .row {
    display: flex;
    flex-direction: column;
    margin: 0px;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .row .row .col-sm-6,
.profile-box__wrapper .pricing-info__group .new_pricing_field .row .col-sm-5 {
    padding: 0px !important;
    width: 100% !important;
}

.profile-box__wrapper .woocommerce-page .md-checkbox input[type="checkbox"]:checked+label:before {
    background-color: #4fada8 !important;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field input {
    padding: 3px 0px !important;
    color: #3F3F3F !important;
    font-family: "Roboto" !important;
    font-weight: 400 !important;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field input:focus {
    padding: 3px 0px !important;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .button-2 {
    font-size: 0px !important;
    background: transparent;
    box-shadow: none;
    height: 15px;
    width: 15px;
    border-radius: 50% !important;
    border: 1px solid #df6a6a !important;
    margin: 0px;
    padding: 0px !important;
    position: relative;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .button-2::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    background-color: #df6a6a;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field {
    position: relative;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .remove-btn-box {
    position: absolute;
    right: 0;
    top: 17px;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field textarea {
    color: #3f3f3f;
    font-family: "Roboto";
    font-weight: 400;
}

.profile-box__wrapper .added_birth-fee .col-sm-12 {
    padding: 0;
}

.profile-box__wrapper .select2-selection--multiple .select2-selection__rendered {
    position: relative;
}

.profile-box__wrapper .select2-selection--multiple .select2-selection__rendered::before {
    content: "";
    height: 8px !important;
    width: 8px !important;
    border-right: 2px solid #888888;
    border-bottom: 2px solid #888888;
    transform: translateY(50%) rotate(45deg) !important;
    right: 8px;
    position: absolute;
    top: 9px;
}

.profile-box__wrapper .select2-container--open .select2-selection--multiple .select2-selection__rendered::before {
    transform: translateY(50%) rotate(224deg) !important;
}

.profile-box__wrapper .profile__content .job-manager-form {
    margin: 0;
}



/* profile border */
.profile-box__wrapper .featured-search .select2-selection__rendered {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
}

.profile-box__wrapper .select2-container--below .select2-selection__rendered:after {
    content: unset;
}

.profile-box__wrapper .select2-container--open .select2-selection--single .select2-selection__rendered {
    border-bottom: 1px solid #4ecdc4 !important;
}

.profile-box__wrapper .general-profile_box {
    display: flex;
    gap: 20px;
}

.next-prev__btn--box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    padding-top: 22px;
}

.open-popup--btn,
.successfull__verify-cta,
.next-prev__btn--box .button-2 {
    border-radius: 8px;
    margin: 0 !important;
    padding: 11px 15px !important;
    width: auto !important;
    min-width: 150px;
    font-size: 14px !important;
    letter-spacing: -0.24px;
    font-weight: 500;
    background-color: #4FADA8;
    text-align: center;
    line-height: 1 !important;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.open-popup--btn,
.successfull__verify-cta,
.next-prev__btn--box .button-2:hover {
    background-color: #484848;
}

.profile-box__wrapper .location-item-field input:focus,
.profile-box__wrapper .pricing-info__group .new_pricing_field textarea:focus {
    padding: 3px 0px 3px 0px !important;
    border-top: 0px !important;
    border-right: 0px !important;
    border-left: 0px !important;

}

.profile__content .fieldset-pricing-structure .field .input-text:focus {
    padding-left: 20px !important;
}

.profile-box__wrapper .profile__tab {
    gap: 10px !important;
}

.profile-box__wrapper .profile__content label {
    color: #888888 !important;
    font-size: 12px !important;
}

.profile-box__wrapper .profile__content .fieldset-job_description textarea:focus,
.profile-box__wrapper .profile__content .fieldset-birth-philosophy textarea:focus {
    padding-top: 0px !important;
}

.profile-box__wrapper .profile__content input::placeholder,
.profile-box__wrapper .profile__content textarea::placeholder {
    color: #bbbbbb !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: "roboto", sans-serif !important;
}

.profile-box__wrapper .charCountWrap {
    font-family: "Inter" !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 150%;
    color: #888888;
}

.profile-box__wrapper .pricing_package_count {
    font-family: "Muli";
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #CCCCCC;
    padding-bottom: 20px;
}

/* popup */
.profile-box__wrapper .package__info {
    position: relative;
}

.profile-box__wrapper .add_new_birth_fee {
    position: absolute;
    right: 0;
    box-shadow: none;
    background-color: #4FADA8;
    cursor: pointer;
}

.profile-box__wrapper .profile__content .fieldset-birth-fee label {
    font-size: 14px !important;
}

.profile-box__wrapper .profile__content .fieldset-birth-fee .description {
    width: 86% !important;
    padding-top: 4px;
}

/* .profile-box__wrapper .profile__content .package__info .description {
    padding-top: 14px;
} */

.profile-box__wrapper .pricing_package_count {
    font-weight: 600;
    font-size: 16px;
    color: #cccccc;
    line-height: 24px;
    margin-bottom: 5px;
    font-family: 'Muli', sans-serif !important;
}

@media screen and (max-width: 991px) {
    .profile-box__wrapper {
        border: none !important;
    }
}

@media screen and (max-width: 767px) {
    .profile-box__wrapper .general-profile_box {
        flex-direction: column;
        gap: 0px;
    }

    .element.profile-box__wrapper {
        padding: 0px;
    }

    .col-md-10.col-sm-12:has(.profile-box__wrapper) {
        padding: 0px;
    }

    .profile-box__wrapper .profile .job-manager-form {
        padding: 0px 20px;
    }

    .profile-box__wrapper .profile .profile__content {
        flex-direction: column;
    }

    .profile-box__wrapper .profile .profile__content .fieldset-job_logo.form-group {
        margin-bottom: 0px !important;
    }

    .profile-box__wrapper .profile .profile-upload-wrapper {
        width: 100%;
        max-width: 90%;
        margin: auto;
    }

    .profile-box__wrapper .profile .profile-upload-wrapper .profile-label {
        text-align: center;
    }

    .profile-box__wrapper .fieldset-job_logo .job-manager-uploaded-file {
        width: 100%;
    }

    .profile-box__wrapper .profile .form__wrapper--inner {
        flex-direction: column;
        gap: 0px;
    }

    .profile-box__wrapper .profile__tabs {
        margin-bottom: 16px;
        background-color: #fff;
        position: sticky;
        top: 42px;
        z-index: 9999;
    }

    .profile__content .fieldset-pricing-structure {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .location-picker__wrapper {
        flex-direction: column;
    }

    .location-picker__wrapper .location-item {
        width: 100%;
    }

    .location-picker__wrapper .fieldset-job_location {
        margin-bottom: 0 !important;
    }

    .next-prev__btn--box {
        position: sticky;
        background-color: #fff;
        left: 0;
        bottom: 0;
        padding-bottom: 8px;
        z-index: 999;
    }

    .fieldset-insurance-accepted {
        padding-top: 20px;
    }

    .profile-box__wrapper .profile__input-item {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .profile-box__wrapper .profile__content .pricing-info__group {
        gap: 25px;
    }

    .profile-box__wrapper .accordion__header {
        margin-bottom: 0 !important;
        position: relative;
        padding: 0 !important;
        transition: all 0.3s;
    }

    .profile-box__wrapper .accordion__header {
        position: relative;
    }

    .profile-box__wrapper .accordion__header::after {
        content: "";
        height: 9px !important;
        width: 9px !important;
        border-right: 2px solid #888888;
        border-top: 2px solid #888888;
        top: 50%;
        transform: translateY(-50%) rotate(45deg) !important;
        transition: all 0.3s;
        right: 0px;
        position: absolute;
    }

    .profile-box__wrapper .pricing-info__group .new_pricing_field .remove-btn-box {
        position: absolute;
        right: 24px;
        top: 27px;
    }

    .profile-box__wrapper .content__collapsed .accordion__header::after {
        transform: translateY(-50%) rotate(136deg) !important;
    }

    .profile-box__wrapper .content__collapsed .pricing_package_count {
        margin-bottom: 15px !important;
    }

    .profile-box__wrapper .profile__content .fieldset-birth-fee .description {
        width: 100% !important;
    }

    .profile-box__wrapper .profile__content .added_birth-fee.new_pricing_field:hover {
        cursor: pointer;
    }

    .profile-box__wrapper .profile__content .content__collapsed.added_birth-fee.new_pricing_field:hover {
        cursor: auto;
    }

    .profile-box__wrapper .profile__content .content__collapsed .pricing_package_count.accordion__header {
        cursor: pointer;
    }
}

@media (max-width: 440px) {
    .location-picker__wrapper .location-actions {
        display: none;
    }
}

.fieldset-job_logo .profile-upload-wrapper .uploader__drop-zone .fa-cloud-upload-alt:before {
    content: "" !important;
    background-image: url("../images/Combined-Shape.svg") !important;
    height: 27px;
    width: 23px;
    display: block;
    margin: auto;
    background-repeat: no-repeat;
}

.profile-box__wrapper .profile__view-link::before {
    content: "" !important;
    background-image: url("../images/profile-Icon.svg") !important;
    height: 12px;
    width: 17px;
    display: block;
    margin: auto;
    background-repeat: no-repeat;
}

.profile-box__wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    padding: 0px !important;
    background-color: transparent !important;
}

.profile-box__wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:before {
    content: "" !important;
    background-image: url("../images/close-gray-icon.svg") !important;
    height: 15px;
    width: 14px;
    display: block !important;
    margin: auto;
    background-repeat: no-repeat;

}

.profile-box__wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #BBBBBB !important;
}

.profile-box__wrapper .fieldset-support-offered .select2-container--default .select2-selection--multiple,
.profile-box__wrapper .fieldset-job_category .select2-container--default .select2-selection--multiple,
.profile-box__wrapper .fieldset-birth-settings .select2-container--default .select2-selection--multiple,
.profile-box__wrapper .fieldset-languages-spoken .select2-container--default .select2-selection--multiple,
.profile-box__wrapper .fieldset-specialty .select2-container--default .select2-selection--multiple,
.profile-box__wrapper .fieldset-insurance-accepted .select2-container--default .select2-selection--multiple {
    line-height: 16px;

}

.profile-box__wrapper .fieldset-job_category label,
.profile-box__wrapper .fieldset-birth-settings label {
    top: 5px;
    position: relative;
}

.profile-box__wrapper .md-checkbox:has(.md-checkbox__inner .input-checkbox:checked) .md-checkbox__label label:before,
.md-checkbox label:before {
    height: 14px;
    width: 14px;
}

.profile-box__wrapper .md-checkbox__label label:before {
    top: 0 !important;
}

.profile-box__wrapper .md-checkbox input[type="checkbox"]:checked+label:after {
    border-width: 2px !important;
    height: 4.3px;
    left: 3px;
    transform: rotate(313deg);
    width: 8px;
    top: 11px !important;
}

.profile-box__wrapper .md-checkbox__inner .input-checkbox {
    margin-right: 0;
}

.profile-box__wrapper .md-checkbox label:before {
    top: 7px;
}

.profile-box__wrapper .md-checkbox__label label {
    padding-left: 0 !important;

}

.profile-box__wrapper .md-checkbox label {
    padding-left: 26px;
}

.profile__tab:hover::after {
    text-shadow: none;
}

/* .profile-box__wrapper .fieldset-education:has(.added_certifications_list li)>label,
.profile-box__wrapper .fieldset-certifications:has(.added_certifications_list li)>label {
    opacity: 0 !important;
    transition: opacity 0.3s !important;
} */

/* modal css  */
/* Overlay + modal */
.successfull__modal-overlay {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
}

.successfull__verify-cta {
    justify-self: center;
}

.successfull__modal-overlay.is-open {
    display: grid;
    z-index: 6;
    place-content: center;
}

body:has(.successfull__modal-overlay.is-open)::after {
    content: "";
    background-color: black;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: none;
}

.successfull__modal {
    width: min(90vw, 571px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Header */
.successfull__modal-head {
    background: #4fada8;
    color: #fff;
    padding: 20px;
    border-radius: 14px 14px 0 0;
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}

.successfull__head-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
}

.successfull__head-icon i {
    color: #00b1a9;
    font-size: 20px;
    width: fit-content;
}

.successfull__head-content {
    max-width: 320px;
    flex: 1;
}

.successfull__head-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.2px;
    color: #fff;
    font-family: Muli, sans-serif !important;
}

.successfull__head-desc {
    margin: 4px 0 0 0;
    color: #fff;
    font-size: 14px;
    line-height: 127%;
    opacity: 0.95;
    font-weight: 400;
}

/* Body */
.successfull__modal-body {
    padding: 18px 22px 22px 22px;
}

.successfull__body-title {
    margin: 0 0 15px 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #3f3f3f;
    font-family: Muli, sans-serif !important;
}

.successfull__body-text {
    color: #3f3f3f;
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: Muli, sans-serif !important;
}

/* Bulleted list with green checks */
.successfull__checklist {
    margin: 0 0 23px 20px;
    padding: 0;
    display: grid;
    font-size: 16px;
    line-height: 31px;
    color: #555555;
    font-weight: 600;
    list-style-type: none;
    font-family: Muli, sans-serif !important;
}

.successfull__checklist li {
    position: relative;
}

.successfull__checklist li::after {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #d9d9d9;
    position: absolute;
    left: -20px;
    top: 13px;
}

.successfull__verify-btn-box {
    text-align: center;
}

@media (max-width: 767px) {
    .successfull__modal-head {
        padding: 20px 17px !important;
    }

    .successfull__head-title {
        font-size: 20px !important;
        line-height: 28px !important;
    }

    .successfull__head-icon {
        width: 35px;
        height: 35px;
    }

    .successfull__modal-head {
        gap: 9px !important;
    }

    .successfull__head-icon i {
        font-size: 18px;
    }
}

.profile-box__wrapper input,
.profile-box__wrapper textarea {
    margin-bottom: 0px !important;
}

.pro_user_profile_uploaded_div .job-manager-uploaded-file {
    width: 100%;
    height: auto;
}

.pro_user_profile_uploaded_div .job-manager-uploaded-file img {
    height: auto !important;
}

@media screen and (max-width: 767px) {
    .pro_user_profile_uploaded_div .job-manager-uploaded-file img {
        width: 97% !Important;

    }

}

.select2-results__option.select2-results__option--highlighted,
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #4FADA8 !important;
    color: #fff !important;
}

#select2-specialty-results,
#select2-languages-spoken-results,
#select2-birth-settings-results,
#select2-job_category-results,
#select2-support-offered-results,
#select2-insurance-accepted-results,
#select2-price_range-results,
#select2-primary-service-results {
    font-family: "roboto", sans-serif;
    color: #3F3F3F !important;
    font-size: 16px !important;
    line-height: 20.2px !important;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#select2-specialty-results .select2-results__option,
#select2-languages-spoken-results .select2-results__option,
#select2-birth-settings-results .select2-results__option,
#select2-job_category-results .select2-results__option,
#select2-support-offered-results .select2-results__option,
#select2-insurance-accepted-results .select2-results__option,
#select2-price_range-results .select2-results__option,
#select2-primary-service-results .select2-results__option {
    padding: 8px 15px !important;
}

.save-add__package--btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.save-add__package--btn .add_new_birth_fee {
    position: relative;
}

.profile-box__wrapper .pricing-info__group .new_pricing_field .button-2:hover {
    border: 1px solid #4fada8 !important;
    background-color: #4fada838 !important;

    &::after {
        background-color: #4fada8 !important;
    }
}