.info-card-wrapper {
    background-color: #ffff;
    border-radius: 8px;
}

.info-card-header {
    padding: 16px 24px;
    border-radius: 8px 8px 0 0;
    background-color: rgba(34, 190, 13, 0.2);
}

.info-card-body {
    padding: 16px 24px;
}

.info-card-title {
    font-size: 18px;
    font-weight: 600;
}

.info-card-subtitle {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid #edebe7;
}

.info-card-list {
    padding: 14px 0;
}

.info-card-list li {
    margin-bottom: 10px;
}

.info-card-list-item p {
    color: #5b5b5b;
    font-size: 16px;
    line-height: 26px;
}

.info-card-list-item .payment-success {
    color: #38b0a9;
}

.service-item {
    color: #06131c;
    font-size: 16px;
}

.info-text {
    color: #06131c;
}

.seller-avatar {
    width: 78px;
    height: 78px;
    border-radius: 10px;
}

.card-seller-name {
    font-size: 20px;
    font-weight: 700;
}

.card-seller-name span {
    color: #5b5b5b;
    font-size: 16px;
    font-weight: normal;
}

.seller-location {
    font-size: 16px;
    color: #06131c;
}

.seller-info-list-item {
    color: #5b5b5b;
    padding: 16px 0;
    border-top: 1px solid #edebe7;
}

.seller-info-list-item p {
    color: #5b5b5b;
    font-size: 16px;
}

.package-header {
    padding: 16px 30px;
    background: #edebe7;
    border-radius: 10px 10px 0 0;
}

.package-header p {
    font-size: 18px;
    color: #06131c;
}

.payment-options-wrapper {
    padding: 30px;
    border-radius: 10px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 575.98px) {
    .payment-options {
        grid-template-columns: repeat(1, 1fr);
    }
}

.single-payment-option {
    padding: 16px;
    border: 1px solid #edebe7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-icon {
    margin-right: 15px;
}

.single-payment-option .selected-icon {
    display: none;
}

.payment-pending {
    color: red !important;
}

.rejected_btn {
    background: #cb2323 !important;
}

/* Show the selected-icon when the option is selected */

.single-payment-option.selected .selected-icon {
    display: block;
}

.single-payment-option {
    cursor: pointer;
    /* Change cursor to pointer to indicate it's clickable */
}

/* common-modal start  */

.common-modal {
    width: 350px;
    padding: 30px;
    background-color: white;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 11;
    border: 1px solid #e4e4e4;
    box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.common-modal h5 {
    font-size: 22px;
    font-weight: 500;
}

.common-modal p {
    font-size: 16px;
    line-height: 27px;
    margin-top: 10px;
}

.common-modal a {
    font-size: 16px;
    line-height: 27px;
    font-weight: 600;
    margin-top: 5px;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
}

.common-modal-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.common-modal-btn .thm-btn {
    color: var(--white-color);
}

.common-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
}

.common-modal .btn-close:focus {
    box-shadow: 0 0 0 0.25rem transparent;
}

.tab-content .job-listing {
    background-color: transparent !important;
    padding: 0 !important;
}

/* common-modal end  */

.order-file-box .form-container .form-control {
    border: 1px solid #edebe7;
    border-radius: 30px;
    padding: 18px 30px !important;
    min-height: 52px;
}

/* seller/company card */

.seller-card {
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;

    & .seller-card-wrapper {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: start;
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        & .seller-card-img {
            width: 110px;
            height: 110px;
            border-radius: 99999px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f7f5f0;
            padding: 20px;
            & .img-wrap {
                width: 100%;
                height: 100%;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }
        & .seller-card-content {
            flex: 1 1 0%;
            & .title {
                margin-bottom: 12px;
                font-size: 18px;
                font-weight: 600;
                line-height: 26px;
                color: #06131c;
                max-width: 417px;
                display: inline-flex;
                align-items: center;
                & .varified-badge2 {
                    color: var(--lime-300);
                }
            }
            & .rating-wrap {
                display: flex;
                gap: 10px;
                align-items: center;
                margin-bottom: 24px;
                & .rating-star {
                    width: 16px;
                    height: 16px;
                    color: #ffa500;
                }
                & .rating-text {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 16px;
                    color: #06131c;
                }
            }
            & .detail-list {
                width: 100%;
                margin-bottom: 24px;
                & ul {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    gap: 14px;
                    & li {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        & .item-key {
                            display: flex;
                            gap: 8px;
                            align-items: center;
                            & .text {
                                color: #06131c;
                                font-size: 16px;
                            }
                        }
                        & .item-value {
                            color: #5b5b5b;
                            font-size: 16px;
                        }
                    }
                }
            }
            & .contact-btn {
                display: inline-flex;
                gap: 9px;
                align-items: center;
                text-decoration: none;
                color: #06131c;
                padding: 16px 20px;
                border: 1px solid #38b0a9;
                border-radius: 999px;
                & .text {
                    font-size: 18px;
                    line-height: 18px;
                    color: inherit;
                }
                & .icon {
                    color: inherit;
                }
                &:hover {
                    background-color: #38b0a9;
                    color: #fff;
                }
            }
        }
        & .seller-card-tag {
            transition: all 0.3s ease-in-out;
            width: 200px;
            position: absolute;
            top: 10px;
            right: -60px;
            background-color: #1a5e72;
            color: #fff;
            padding: 12px;
            transform: rotate(45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;

            & .text {
                font-size: 14px;
                line-height: 18px;
                color: inherit;
                text-align: center;
            }
        }
    }

    &:hover {
        & .seller-card-tag {
            opacity: 100%;
        }
    }

    @media (max-width: 630px) {
        & .seller-card-wrapper {
            padding: 10px;
            gap: 10px;
            flex-direction: column;

            & .seller-card-img {
                width: 54px;
                height: 54px;
                padding: 0;

                & .img-wrap {
                    width: 100%;
                    height: 100%;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }
            & .seller-card-content {
                flex: 1 1 0%;
                & .title {
                    margin-bottom: 12px;
                    font-size: 12px;
                    font-weight: 600;
                    line-height: 26px;
                    color: #06131c;
                    max-width: 417px;
                    display: inline-flex;
                    align-items: center;
                    & .varified-badge2 {
                        color: var(--lime-300);
                    }
                }
                & .rating-wrap {
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    margin-bottom: 24px;
                    & .rating-star {
                        width: 16px;
                        height: 16px;
                        color: #ffa500;
                    }
                    & .rating-text {
                        font-size: 14px;
                        font-weight: 400;
                        line-height: 16px;
                        color: #06131c;
                    }
                }
                & .detail-list {
                    width: 100%;
                    margin-bottom: 24px;
                    & ul {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        gap: 14px;
                        & li {
                            flex-direction: column;
                            align-items: flex-start;
                            gap: 10px;
                            & .item-key {
                                align-items: center;
                                & .icon {
                                    display: none;
                                }
                                & .text {
                                    font-size: 12px;
                                }
                            }
                            & .item-value {
                                font-size: 12px;
                            }
                        }
                    }
                }
                & .contact-btn {
                    padding: 10px 8px;

                    & .text {
                        font-size: 10px;
                    }
                    & .icon {
                        line-height: 0;
                    }

                    & .icon svg {
                        width: 10px;
                        height: 12px;
                    }
                }
            }
            & .seller-card-tag {
                padding: 4px;

                & .text {
                    font-size: 10px;
                }
            }
        }
    }
}

.seller-card .jb-seller-card-wrapper {
    padding: 20px;
    gap: 20px;
    flex-direction: column;
    & .seller-card-content {
        width: 100%;

        & .jb-detail-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
    }
}

.section-btn_apply {
    margin-top: 50px;
}
.bread-crumb-counter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: end;
    & .counter-item {
        background-color: #f7f5f0;
        border-radius: 6px;
        width: 302px;
        height: 108px;
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 20px;
        padding: 0 20px;

        & .content {
            display: flex;
            flex-direction: column;
            gap: 10px;

            & .counter-title {
                text-align: start;
                font-size: 30px;
                font-weight: 700;
                line-height: 30px;
                color: #000;
            }
            & .counter-desc {
                font-size: 16px;
                color: #000;
            }
        }
    }
}
@media (max-width: 575.98px) {
    .bread-crumb-counter-wrapper {
        align-items: start;
        margin-top: 20px;
    }
}
.company-filter-sidebar {
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    & .filter-group {
        & .title {
            font-size: 18px;
            font-weight: 600;
            line-height: 26px;
            margin-bottom: 20px;
        }
    }
    & .filter-group-content {
        display: flex;
        flex-direction: column;
        gap: 18px;
        & .filter-group-content-item {
            & label {
                font-size: 14px;
                color: #06131c;
                line-height: 18px;
                margin-bottom: 10px;
            }
            & .finput_wrapper {
                display: flex;
                flex-direction: column;
                position: relative;
                & .icon {
                    position: absolute;
                    left: 20px;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
        }
        & .dropdown-checkbox-filter {
            display: flex;
            flex-direction: column;
            gap: 20px;
            & .checkbox-item {
                & .checkbox-item-wrapper {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    cursor: pointer;
                    & input[type="checkbox"] {
                        width: 20px;
                        height: 20px;
                        border: 1px solid #bfd3ff;
                        border-radius: 2px;
                        padding: 0;
                        background: transparent;
                        cursor: pointer;
                        accent-color: #4b83fc;
                    }
                    & .icon {
                        transform: rotate(270deg);
                    }
                    & .title {
                        flex: 1 1 0%;
                        font-size: 16px;
                        color: #06131c;
                        font-weight: 400;
                        line-height: 18px;
                        margin-bottom: 0;
                    }
                }
            }
            & .sub-list {
                margin: 10px 0 0 0;
                margin-left: 17px;
                & .child-list {
                    margin: 10px 0 0 0;
                    margin-left: 42px;
                }
            }
        }
        & .radio-filter {
            display: flex;
            flex-direction: column;
            gap: 20px;
            & .radio-item {
                & .radio-item-wrapper {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    cursor: pointer;
                    & input[type="radio"] {
                        width: 20px;
                        height: 20px;
                        border: 1px solid #bfd3ff;
                        border-radius: 2px;
                        padding: 0;
                        background: transparent;
                        cursor: pointer;
                        accent-color: #4b83fc;
                    }
                    & .title {
                        flex: 1 1 0%;
                        font-size: 16px;
                        color: #06131c;
                        font-weight: 400;
                        line-height: 18px;
                        margin-bottom: 0;
                    }
                    & .rating-stars {
                        display: flex;
                        gap: 4px;
                        align-items: center;
                        & svg.active path {
                            fill: currentColor;
                            color: #ffa500;
                        }
                    }
                }
            }
        }
    }
    & .filter-action-buttons {
        display: flex;
        gap: 16px;

        & .filter-clear-btn {
            background-color: #ffdfdf;
            color: #ff3838;
            padding: 16px 35px;
            border-radius: 9999px;
        }
        & .filter-search-btn {
            background-color: #38b0a9;
            color: #fff;
            padding: 16px 35px;
            border-radius: 9999px;
        }
    }
    & .close-button {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 10px;
        background-color: #ffdfdf;
        color: #ff3838;
        border-radius: 4px;
        display: none;
        & svg {
            width: 24px;
            height: 24px;
            color: inherit;
        }
    }
    @media (max-width: 768px) {
        & .close-button {
            display: flex;
        }
    }
}
@media (max-width: 768px) {
    & .company-filter-sidebar {
        height: 100vh;
        overflow-y: auto;
    }
}
.company-filter-content {
    & .content-actions {
        display: flex;
        justify-content: end;
        align-items: center;
        margin-bottom: 28px;
        flex-wrap: wrap;
        gap: 10px;

        & .items-show-action {
            display: flex;
            gap: 26px;
            align-items: center;
            & .txt {
                font-size: 18px;
                line-height: 26px;
                color: #06131c;
            }
        }
        & .filter-content-btn {
            padding: 10px 20px;
            background-color: #13544e;
            border-radius: 4px;
            display: none;
            & svg {
                width: 24px;
                height: 24px;
                color: #fff;
            }
        }
        @media (max-width: 768px) {
            & .filter-content-btn {
                display: flex;
            }
        }
        & .map-button {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 20px;
            border-radius: 4px;
            background-color: #13544e;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            & .txt {
                font-size: 18px;
                color: inherit;
                line-height: 18px;
            }
            &:hover {
                background-color: #0a3e39;
                color: #fff;
            }
        }
    }
}
@media (max-width: 768px) {
    .company-filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        z-index: 1000;
        padding: 20px;
        transform: translateX(-100%);
        transition: all 0.3s ease-in-out;
    }
    .company-filter-sidebar.show {
        transform: translateX(0);
    }
}
@media (max-width: 380px) {
    .company-filter-content {
        & .content-actions {
            flex-direction: column-reverse;
        }
    }
}
.company-map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    padding: 0 20px;
    display: none;
    & .map-modal-content {
        margin-top: 60px;
        background-color: #fff;
        padding: 30px;
        border-radius: 12px;
        min-width: 1440px;
        height: fit-content;
        & .map-modal-content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
            & .txt {
                font-size: 22px;
                font-weight: 600;
                line-height: 26px;
                color: #06131c;
            }
        }
        & .map-modal-content-body {
            & .map-frame {
                width: 100%;
                aspect-ratio: 1380/500;
            }
        }
    }
    &.show {
        display: flex;
    }
}

@media (max-width: 1440px) {
    .company-map-modal {
        & .map-modal-content {
            padding: 16px;
            min-width: 100%;
            & .map-modal-content-body {
                & .map-frame {
                    width: 100%;
                    height: 450px;
                    aspect-ratio: none;
                }
            }
        }
    }
}

.f-field {
    width: 100%;
    border: 1px solid #edebe7 !important;
    border-radius: 9999px;
    height: 46px;
    padding: 13px 20px;
    &.has-icon {
        padding-left: 50px;
    }
    &.nice-select {
        width: 100%;
        padding: 3px 28px;
    }
}

.company-details-sidebar {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    & .basic-info {
        display: flex;
        flex-direction: column;
        align-items: center;

        & .basic-info_img {
            width: 92px;
            height: 92px;
            padding: 20px;
            background: #f7f5f0;
            border-radius: 99999px;
            margin-bottom: 12px;
            & img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
        & .basic-info_title {
            font-size: 24px;
            font-weight: 600;
            line-height: 26px;
            color: #06131c;
            margin-bottom: 4px;
            text-align: center;
        }
        & .basic-info_verified {
            display: flex;
            justify-content: center;
            & .basic-info_verified_text {
                font-size: 16px;
                font-weight: 26px;
                padding: 1px 12px;
                border-radius: 9999px;
                background: #eef1ff;
                color: #4b83fc;
            }
        }
    }
    & .m-info_wrapper {
        display: flex;
        flex-direction: column;
        gap: 35px;
        & .m-info_item {
            & .m-info_item_title {
                font-size: 18px;
                line-height: 26px;
                font-weight: 600;
                padding-bottom: 6px;
                border-bottom: 1px solid #edebe7;
            }
            & .m-info_item_body {
                margin-top: 16px;
                & ul {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    gap: 14px;
                    & li {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        & .item-key {
                            display: flex;
                            gap: 8px;
                            align-items: center;
                            & .text {
                                color: #06131c;
                                font-size: 16px;
                            }
                        }
                        & .item-value {
                            color: #5b5b5b;
                            font-size: 16px;
                        }
                    }
                }
                & .m-info_item_socials {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 18px;
                    & .m-info_item_socials_text {
                        font-size: 16px;
                        color: #06131c;
                    }
                    & .m-info_item_socials_links {
                        display: flex;
                        gap: 10px;
                        align-items: center;
                    }
                    & .m-info_item_socials_link {
                    }
                }
                & .m-info_item_body_text {
                    color: #5b5b5b;
                }
                & .m-info_input-group {
                    & .m-info_input-group_title {
                    }
                    & .m-info_input-group_content {
                        margin-top: 14px;
                        display: flex;
                        flex-direction: column;
                        gap: 18px;
                        & .m-info_input-group_item {
                            & .label {
                                margin-bottom: 8px;
                            }
                            & .m-info_input-group_wrapper {
                            }
                        }
                    }
                }
            }
        }
    }
    & .m-info_action {
        & .m-info_action_btn {
            padding: 16px 30px;
            display: flex;
            gap: 10px;
            align-items: center;
            background: #38b0a9;
            border-radius: 999px;
            & .m-info_action_btn_text {
                color: white;
            }
            & .m-info_action_btn_icon {
            }
        }
    }
    & .seller-card-tag {
        transition: all 0.3s ease-in-out;
        width: 200px;
        position: absolute;
        top: 10px;
        right: -60px;
        background-color: #1a5e72;
        color: #fff;
        padding: 12px;
        transform: rotate(45deg);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        & .text {
            font-size: 14px;
            line-height: 18px;
            color: inherit;
            text-align: center;
        }
    }
}
.company-details-content {
    & .content-container {
        padding: 40px;
        background-color: #fff;
        border-radius: 16px;
        & .heading {
            font-size: 18px;
            font-weight: 600;
            line-height: 26px;
            color: #06131c;
            padding-bottom: 16px;
            border-bottom: 1px solid #edebe7;
            margin-bottom: 16px;
        }
        p {
            color: #5b5b5b;
        }
        & .tab-table {
            width: 100%;
            border-collapse: collapse;

            border-radius: 8px;
        }
        & .tab-table th {
            background-color: #f7f5f0;
            padding: 16px;

            &:last-child {
                text-align: end;
            }
        }
        & .tab-table td {
            padding: 16px;

            &:last-child {
                text-align: end;
            }
        }
        & .tab-table tbody tr {
            background-color: #fff;
        }
        & .tab-table tbody tr:nth-child(even) {
            background-color: #f8f8f8;
        }
        & .map-frame {
            width: 100% !important;
            height: 400px !important;
            & iframe {
                width: 100% !important;
                height: 100% !important;
            }
        }

        & .tech-chart {
            width: 100% !important;
            height: 250px !important;
            border-radius: 10px;
            overflow: hidden;
            & img {
                width: 100% !important;
                height: 100% !important;
                object-fit: contain !important;
            }
        }
        & .tech-chart-vedio {
            height: 400px !important;
        }
    }
}
@media (max-width: 768px) {
    .content-container {
        padding: 20px !important;
    }
}

.job-post-card {
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;

    & .job-post-card-wrapper {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: start;
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        & .job-post-card-img-group {
            width: 110px;
            & .job-post-card-img {
                width: 100%;
                height: 110px;
                border-radius: 10px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f7f5f0;
                padding: 20px;
                margin-bottom: 10px;
                & .img-wrap {
                    width: 100%;
                    height: 100%;
                    & img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                    & svg {
                        width: 100%;
                        height: 100%;
                    }
                }
                &:last-child {
                    padding: 13px;
                    background: #eef1ff;
                    margin-bottom: 0;
                }
            }
        }
        & .job-post-card-content {
            flex: 1 1 0%;
            & .title {
                margin-bottom: 20px;
                display: inline-block;
                font-size: 18px;
                font-weight: 600;
                line-height: 26px;
                color: #06131c;
                max-width: 417px;
                & a {
                    color: inherit;
                }
            }
            & .details-wrapper {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 5px;
                flex-wrap: wrap;

                & .detail-list {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    flex: 1 1 0%;
                    & ul {
                        display: flex;
                        flex-direction: column;
                        gap: 14px;
                        flex-basis: 50%;

                        & li {
                            display: flex;
                            justify-content: start;
                            align-items: start;
                            flex-direction: column;
                            & .item-key {
                                display: flex;
                                gap: 8px;
                                align-items: center;
                                & .text {
                                    color: #06131c;
                                    font-size: 16px;
                                }
                            }
                            & .item-value {
                                color: #5b5b5b;
                                font-size: 16px;
                                margin-left: 26px;
                            }
                        }
                    }
                }
                & .details-day-count {
                    width: 150px;
                    height: 150px;
                    background: #f1f1f1;
                    border-radius: 999px;
                    display: flex;
                    gap: 5px;
                    align-items: center;
                    flex-direction: column;
                    justify-content: center;
                    & .count {
                        font-size: 30px;
                        font-weight: 700;
                        line-height: 30px;
                        color: #38b0a9;
                    }
                    & .title {
                        font-size: 18px;
                        font-weight: 500;
                        color: #5b5b5b;
                        margin-bottom: 0px;
                    }
                }
            }

            & .contact-btn {
                display: inline-flex;
                gap: 9px;
                align-items: center;
                text-decoration: none;
                color: #06131c;
                padding: 16px 20px;
                border: 1px solid #38b0a9;
                border-radius: 999px;
                & .text {
                    font-size: 18px;
                    line-height: 18px;
                    color: inherit;
                }
                & .icon {
                    color: inherit;
                }
                &:hover {
                    background-color: #38b0a9;
                    color: #fff;
                }
            }
        }
        & .card-action-wrapper {
            display: flex;
            gap: 16px;
            align-items: center;
            position: absolute;
            top: 30px;
            right: 30px;
            & .wishlist.active {
                & svg {
                    & path {
                        fill: #ff1717;
                        stroke: #ff1717;
                    }
                }
            }
        }
    }
    @media (max-width: 630px) {
        & .job-post-card-wrapper {
            padding: 20px;
            gap: 20px;
            flex-direction: column;
            & .job-post-card-content {
                width: 100%;
            }
        }
    }
}

.jb-post-card-grid {
    & .job-post-card-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;

        & .job-post-card-img-group {
            width: 100%;
            display: flex;
            gap: 20px;
            & .job-post-card-img {
                max-width: 110px;
                width: 100%;
                height: 110px;
            }
        }
        & .job-post-card-content {
            flex: 1 1 0%;

            & .details-wrapper {
                display: flex;
                flex-direction: column-reverse;

                & .jb-job-details {
                    & .title {
                        margin-bottom: 20px;

                        display: inline-block;
                    }
                }
                & .detail-list {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    flex: 1 1 0%;
                    & ul {
                        display: flex;
                        flex-direction: column;
                        gap: 20px;
                        flex-basis: 50%;
                    }
                }
                & .details-day-count {
                    width: 100%;
                    height: 100px;
                    margin-bottom: 20px;
                    border-radius: 8px;
                }
            }
        }
    }
}

.html-article {
    & :is(h2, h3, h4, h5, h6) {
        font-size: 18px !important  ;
        font-weight: 600 !important;
        line-height: 26px !important;
        color: #06131c !important;
        margin-bottom: 16px !important;
    }
    & p {
        color: #5b5b5b !important;
        margin-bottom: 16px !important;
    }
    & ul {
        color: #5b5b5b !important;
        list-style: disc !important;
        padding-left: 50px !important;
        margin-bottom: 16px !important  ;
        & li {
            list-style: disc !important;
        }
    }
}

.job-posts-container {
    & .short-info {
        & .basic-info-wrapper {
            display: flex;
            gap: 20px;
            align-items: center;
            & .img-wrapper {
                width: 110px;
                height: 110px;
                border-radius: 10px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f7f5f0;
                padding: 20px;
                & .img-wrap {
                    width: 100%;
                    height: 100%;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
            }
            & .info-wrapper {
                flex: 1 1 0%;
                & .title {
                    font-size: 24px;
                    line-height: 26px;
                    font-weight: 700;
                    margin-bottom: 10px;
                }
                & .tag-share {
                    display: flex;
                    gap: 20px;
                    align-items: center;
                    & .tag {
                        padding: 10px 16px;
                        background: #edebe7;
                        border-radius: 9999px;
                        & .tag-text {
                            font-size: 14px;
                            line-height: 14px;
                            font-weight: 400;
                            color: #13544e;
                        }
                    }
                    & .card-action-wrapper {
                        display: flex;
                        gap: 16px;
                        align-items: center;
                        & .wishlist.active {
                            & svg {
                                & path {
                                    fill: #ff1717;
                                    stroke: #ff1717;
                                }
                            }
                        }
                    }
                }
            }
        }
        & .estimated-budget-wrapper {
            & .title {
                font-size: 18px;
                line-height: 18px;
                color: #5b5b5b;
                margin-bottom: 20px;
            }
            & .price {
                font-size: 24px;
                line-height: 26px;
                font-weight: 700;
            }
        }

        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 40px;
        gap: 20px;
        border-bottom: 1px solid #edebe7;
    }
    & .tab-nav-p-info {
        display: flex;
        gap: 40px;
        align-items: center;

        border-bottom: 1px solid #edebe7;
        & .tab-btn {
            font-size: 18px;
            line-height: 18px;
            color: #06131c;
            border-bottom: 2px solid transparent;
            padding: 20px 0;
            &.active {
                border-bottom: 2px solid #38b0a9;
            }
        }
    }
}
@media (max-width: 768px) {
    .job-posts-container {
        & .short-info {
            gap: 20px;
            flex-wrap: wrap;
            & .basic-info-wrapper {
                flex-wrap: wrap;
            }
        }
        & .tab-nav-p-info {
            gap: 10px;
            flex-wrap: wrap;
            & .tab-btn {
                padding: 6px;
            }
        }
    }
}

.file-item {
    padding: 23px 33px;
    background: #f1f1f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 24px;

    & .img-wrap {
        width: 86px;
        height: 86px;
        & img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    & .name {
        font-size: 18px;
        line-height: 26px;
        font-weight: 700;
        color: #000000;
    }
    & .size {
        font-size: 16px;
        line-height: 26px;
        color: #5b5b5b;
        margin-bottom: 10px;
    }
    & .download {
        display: flex;
        gap: 10px;
        align-items: center;
        & .text {
            font-size: 16px;
            line-height: 26px;
            color: #5b5b5b;
        }
    }
}

@media (max-width: 1024px) {
    .file-item {
        padding: 10px;
        gap: 10px;
        & .name {
            font-size: 16px;
            line-height: 20px;
        }
        & .img-wrap {
            width: 50px;
            height: 50px;
        }
        & .size {
            margin-bottom: 0px;
        }
    }
}
.form-wrapper-proposal {
    & .title {
        font-size: 24px;
        line-height: 26px;
        font-weight: 700;
        color: #06131c;
        margin-bottom: 20px;
    }
    & .form-container {
        margin-top: 12px;
    }
}
.file-upload-container {
    padding: 30px;
    background: #f7f5f0;
    border: 1px dashed #c9c9c9;
    border-radius: 20px;
    margin-top: 20px;
    & .file-upload-input {
        & .text {
            font-size: 18px;
            line-height: 18px;
            color: #6b6c6c;
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 1px solid #c9c9c9;
            margin-bottom: 30px;
            cursor: pointer;
            & span {
                font-weight: 600;
                color: #38b0a9;
            }
        }
    }
    & .file-list {
        & .file-item {
            position: relative;
            padding: 10px;
            background: #ffffff;
            gap: 14px;
            & .name {
                font-size: 11px;
                line-height: 16px;
                margin-bottom: 0;
            }
            & .img-wrap {
                width: 48px;
                height: 48px;
            }
            & .size {
                font-size: 9px;
                line-height: 16px;
                margin-bottom: 0px;
            }
            & .delete-file {
                position: absolute;
                top: 10px;
                right: 10px;
            }
        }
    }
}
.form-wrapper-proposal {
    & .submit-btn-wrapper {
        & .submit-btn {
            padding: 10px 20px;
            background: #38b0a9;
            color: #fff;
            border-radius: 9999px;
        }
    }
}
.proposal-submission-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.add-proposal-btn {
    padding: 10px 20px;
    background: #38b0a9;
    color: #fff;
    border-radius: 9999px;
}
.message-proposal-btn {
    padding: 10px 20px;
    background: #06131c;
    color: #fff;
    border-radius: 9999px;
}
.similarProjectsSwiper {
    width: calc(100% + 350px);
}
@media (max-width: 1024px) {
    .similarProjectsSwiper {
        width: 100%;
    }
}

.hero-category-select {
    max-width: 150px;
}
.line-clamp-1 {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--lime-300);
    border-color: var(--lime-300);
    &:hover {
        background-color: var(--lime-300);
        border-color: var(--lime-300);
    }
    &:focus {
        background-color: var(--lime-300);
        border-color: var(--lime-300);
    }
    &:active {
        background-color: var(--lime-300) !important;
        border-color: var(--lime-300) !important;
    }
}
.select-dropdown span {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
