@keyframes rotatekey {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

.mrb-20 {
    margin-bottom: 20px;
}

.hiddensearch {
    opacity: 0.5;
    pointer-events: none;
}

.item-list-mobile {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 20px;
    width: 250px;
    transition: 0.3s all;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

    ul {
        padding: 0;
        list-style-type: none;

        li {
            margin-bottom: 10px;
        }
    }

    &.show-tabs {
        pointer-events: all;
        opacity: 1;
        transform: translateX(0);
    }
}

.wpte-dashboard {
    display: flex;

    #toggle-tabs {
        padding: 5px 10px;
        display: none;
    }


    #subnav {
        display: block;
    }

    >.wpte-sidebar {
        width: 300px;
        padding: 20px 0;
        border-right: 1px solid #e5e5e5;
        min-height: 100vh;
        overflow-y: auto;

        ul {
            list-style-type: none;
            padding: 0;

            li {
                margin-bottom: 5px;

                a {
                    display: flex;
                    gap: 10px;
                    padding: 10px 25px;
                    border-radius: 5px;
                    align-items: center;

                    &:hover {
                        background-color: #e5e7eb;
                        color: #111827;
                    }
                }

                &.active {
                    a {
                        background-color: #374151;
                        color: #ffffff;
                    }
                }
            }
        }

        .wpte-submenu {
            display: none;
            padding: 10px 10px;
        }

        .open {
            .wpte-submenu {
                display: block;
                animation: fadeInLeft 0.5s both;
            }
        }
    }

    >.wpte-content {
        width: 100%;
    }

    .wpte-content-inner {}

    .wpte-form-jobs {
        background-color: #ffffff;
        padding: 30px;
        max-width: 1000px;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        position: relative;

        &.loading .form-row {
            opacity: 0.2;
        }

        .loader {
            position: fixed;
        }

        .mce-btn button {
            background-color: transparent;
        }
    }

    button,
    .button {
        background-color: #272727;
        color: #ffffff;
        border-radius: 5px;
        padding: 10px 35px;

        svg {
            width: 1.1em;
            height: 1.1em;
            display: inline-block;
            vertical-align: middle;
            margin-right: 0.4em;
        }
    }

    .btn-cancel {
        background-color: #e3e3e3;
        color: #000000;
        vertical-align: top;
    }

    .btn-draft {
        background-color: #cecece;
        color: #000000;
    }

    .btn-submit {
        float: right;
    }

    .noUi-horizontal .noUi-handle {
        width: 24px;
        height: 24px;
        background: #000000;
        box-shadow: none;
        border-radius: 100%;
        right: -12px;
        top: -8px;
        cursor: pointer;

        &:before,
        &::after {
            display: none;
        }
    }

    .noUi-connect {
        background: #424242;
    }

    .noUi-horizontal {
        height: 10px;
        padding: 0 10px;
    }



}


textarea {
    min-height: 140px;
}

/*
.select2-container--default .select2-selection--multiple {
    border: solid #d8d8d8 1px;
    min-height: 45px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin: 9px 5px 0 0;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
    margin: 9px 5px 0 5px;
    background-color: #494949;
    border: 0;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 12px;

    .select2-selection__choice__remove {
        color: #ffffff;
        margin-right: 5px;
    }
}



.select2-container--default .select2-search--inline .select2-search__field {
    height: auto;
    padding: 0 15px;
}
*/


input[type="datetime-local"] {
    width: 100%;
    height: 45px;
    border-radius: 3px;
    border: 1px solid #e5e5e5;
    padding: 0 15px;
}

.job-list {


    .job-item {

        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.04);
        transition: 0.3s all;
        position: relative;
        height: auto;
        margin-bottom: 30px;

        &:hover {
            box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }



        &.booster-job-item {

            height: 100%;

            .item-top {
                padding-right: 0;
            }

            .boost-icon {
                color: #ffc517;
                margin-left: 5px;
            }

            .item-bottom {
                .fs-small {
                    font-size: 12px;
                }
            }
        }
    }

    .item-job-author {
        margin-bottom: 7px;

        i {
            color: green;
        }

        a {
            display: flex;
            align-items: center;
            gap: 10px;

            img {
                max-width: 30px;
                border-radius: 100%;
                border: 2px solid #d3d3d3;
                transition: 0.4s all;
            }

            &:hover {
                img {
                    border-color: #2275d7;
                }
            }
        }
    }

    .item-action {
        position: absolute;
        right: 25px;
        display: flex;
        gap: 8px;
        font-size: 16px;
    }

    .item-top {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-right: 50px;

        h5 {
            margin-bottom: 0;
            font-size: 20px;
        }

        .opportunity_type {
            background-color: #ebebeb;
            padding: 5px 8px;
            font-size: 12px;
            border-radius: 20px;
            font-weight: bold;
            color: #000;
            line-height: 12px;
        }
    }

    .item-company,
    .item-date {
        font-size: 13px;
    }

    .item-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
        border-top: #dddddd 1px solid;
        padding-top: 15px;

        >div i {
            margin-right: 10px;
        }

        .view-job-btn {
            color: #4338ca;
            background: transparent;
            padding: 0;
            font-size: 16px;
            text-transform: none;
            border: 0;

            i {
                margin-left: 10px;
            }
        }

    }

    .pending-countdown {
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;

        span {
            font-weight: bold;
            color: #ff9000;
        }
    }

    .item-meta {
        margin: 20px 0;

        i {
            margin-right: 10px;
            color: #5c5c5c;
        }

        >div {
            margin-bottom: 5px;

            >div {
                margin-bottom: 5px;
            }
        }

        .job-skill-tag {
            background-color: #e0e7ff;
            color: #4338ca;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }
    }

    .rejection-reason-text {
        font-size: 0.875rem;
        color: #718096;
        background-color: #f7fafc;
        border-left: 3px solid #f56565;
        padding: 0.5rem 0.75rem;
        margin-top: 0.5rem;
        border-radius: 0.25rem;
    }

    .item-description {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin: 20px 0;
    }
}

.apply-list {

    .job-item {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.04);
        transition: 0.3s all;
        position: relative;
        margin-bottom: 30px;
    }

    .item-description {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        margin: 20px 0;
    }

    .item-bottom {
        display: flex;
        gap: 10px;
        justify-content: space-between;
    }

    .item-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;

        h5 {
            margin-bottom: 0;
        }

        .bg-green {
            color: green;
            background-color: #e7ffe7;
            font-size: 12px;
            border-radius: 30px;
            padding: 3px 10px;
            text-align: center;
        }
    }

    .item-date {
        font-size: 14px;
    }

    .view-job-btn {
        color: #4338ca !important;
        background: transparent !important;
        padding: 0;
        font-size: 16px;
        text-transform: none;

        border: 0;
    }

    .layout2 {
        .user-image {
            position: relative;
            padding-bottom: 66%;
            margin-bottom: 20px;

            img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }

        .user-content {
            >h4 {
                margin-bottom: 10px;
            }
        }

        .item-bottom {
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .view-profile-btn {
            color: #4338ca;
        }
    }
}



.wpte-form-jobs {

    .form-row {
        margin-bottom: 20px;

        label {
            font-weight: 500;
        }

        button {}
    }

}

#job-detail-popup {
    background-color: #ffffff;
    max-width: 1000px;
    padding: 30px;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;

    .mfp-close {
        font-size: 0;
        position: absolute;
        right: 0;
        top: 0;
        background: transparent;

        &::before {
            content: "\f00d";
            font-weight: 900;
            font-family: "Font Awesome 6 Free";
            font-size: 25px;
        }
    }

    .job-detail-content {


        >.loading {
            text-align: center;
            font-size: 20px;
        }
    }
}

.job-detail-content {
    h4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .item-top {
        h3 {
            margin-bottom: 0;

            .status {
                background-color: #f44242;
                color: #ffffff;
                font-size: 41%;
                padding: 5px 20px;
                border-radius: 30px;
                display: inline-block;
                line-height: 20px;
                vertical-align: middle;
                margin: 0 10px;
                margin-top: -8px;

                &.published {
                    background-color: #47a547;
                }
            }
        }
    }

    .item-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 30px 0;

        >div {
            width: calc(50% - 10px);

            i {
                margin-right: 10px;
                color: #5c5c5c;
            }
        }

        .item-end-date {
            width: 100%;
        }
    }

    .item-description {
        margin-bottom: 30px;
    }

    .item-requirements {
        margin-bottom: 30px;
    }




    .jws-tag {
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 500;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    .item-apply {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 20px;
    }

    .btn-main {
        background-color: #1e1e1e;
        color: #ffffff;
        border-radius: 5px;
        font-size: 14px;
        padding: 14px 45px;
    }

    .wpte-apply {}

    #modalApplicationMessageContainer {
        display: none;
        margin-top: 20px;

        #modalApplicationMessage {
            margin: 10px 0 20px;
        }
    }

    .application-message {
        background-color: #fff8e8;
        padding: 15px;
        border-radius: 5px;
        color: #b25317;
        margin-bottom: 20px;
        margin-top: 20px;

        p {
            margin-bottom: 0;
        }
    }

    .item-application-method {
        a {
            text-decoration: underline;
            color: #007aff;
        }
    }
}

.single-blog {
    .job-detail-content {
        max-width: 900px;
    }
}

.item-buddypress-field {
    margin-bottom: 30px;

    .job-tag {
        background-color: #e0e7ff;
        color: #4338ca;
        display: inline-block;
        border-radius: 30px;
        padding: 3px 10px;
        font-size: 14px;
    }
}


.jconfirm-holder .jc-bs3-container {
    max-width: 500px;

    .jconfirm-title {
        color: #000;
    }

    .btn-primary {
        background-color: #2c2c2c;
        color: #ffffff;
    }

    .btn-default {
        background-color: #ebebeb;
    }

    .jconfirm-box-container {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.job-tab-nav {
    display: flex;
    gap: 0;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px !important;
}

.job-tab-nav li {
    cursor: pointer;
    padding: 10px 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;

    &:after {
        width: 100%;
        height: 2px;
        background-color: #000;
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        opacity: 0;
    }
}

.job-tab-nav li.active {
    &:after {
        opacity: 1;
    }
}

.job-tab-content {
    display: none;
}

.job-tab-content.active {
    display: block;
}

#my-applications {
    >h4 {
        margin-bottom: 20px;
    }
}

.filter-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 222 !important;
    display: none;

    .select2-container--default .select2-search--inline .select2-search__field {
        width: auto !important;
    }

    .form-popup {
        max-height: 80vh;
        overflow-y: auto;
        background-color: white;
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        width: 90%;
        max-width: 500px;
        margin: 60px auto;
        position: relative;
    }

    #closeMoreFiltersModal {
        position: absolute;
        right: 0;
        top: 14px;
        background: transparent;
        font-size: 27px;
        border: 0;
    }
}

.wpte-jobs-pages {
    background-color: #F8FAFF;
    padding-bottom: 50px;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 120vh;

    .container {
        max-width: 1400px;
    }

    #pageTitle {
        margin-bottom: 10px;
    }

    #pageSubtitle {
        margin-bottom: 30px;
    }
}

.jobs-widget-wap {
    position: relative;
    min-height: 200px;

    &.loading {
        pointer-events: none;

        .job-list {
            opacity: 0.5;
        }
    }

    >.loader {
        width: 60px;
        height: 60px;
        top: 100px;
    }

    #loadMoreJobsBtn {
        margin: 30px auto 0;
        display: block;
        position: relative;
    }
}

.wpte-job-filter-form {

    .form-row {
        margin-bottom: 10px;

        >label {
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 7px;
        }
    }

    button {
        border-radius: 5px;
    }

    .form-bottom {
        margin-top: 20px;
        display: flex;
        gap: 10px;
        justify-content: flex-end;


    }

    button[type="submit"] {
        background-color: #1e1e1e;
        color: #ffffff;
    }

    .form-top {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;

        .form-left {
            width: 60%;
        }

        #moreFiltersBtn {
            width: 40%;
            margin-top: 32px;
        }
    }

    .form-display {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;

        button[type="submit"] {
            margin-right: 10px;
        }
    }
}

.boost-system {
    margin: 0 auto;
    max-width: 1000px;

    .shadow-md {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.04);
        transition: 0.3s all;
        position: relative;
        margin-bottom: 50px;
    }
}

#boostPackagesSection {
    .grid {
        display: flex;
        gap: 6px;
    }

    .package-card {}
}

.boosted-jobs {
    margin-bottom: 50px;

    >h4 {
        margin-bottom: 20px;
    }

    .job-list {
        flex-wrap: unset;
        gap: 0px;
    }

    .job-item {
        border: 2px solid #d2a521;
    }

    .swiper-slide {
        height: auto;
    }

}

.btn-secondary {
    background-color: #ebebeb;
    color: #101010;
}

.wpte-notifications-list {
    padding: 0;
    list-style-type: none;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.04);
    transition: 0.3s all;
    position: relative;

    .wpte-notification {
        padding: 15px 16px;
        border-bottom: 1px solid #eee;
        position: relative;

        .over {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        &:hover {
            background-color: #f9f9f9;
        }

        &.unread {
            background-color: #f0f8ff;
            border-left: 4px solid #6d8cff;
            border-bottom-color: #dce4ff;
        }

        strong {
            margin-bottom: 5px;
            display: block;
        }
    }
}

.jws-buddypress-archive .jws-profile-edit-dropdown .accordion-body li a {
    align-items: center;
    gap: 5px;
    display: flex;
}

.jobs-management,
.jobs-notifications {
    .item-list-tabs {
        display: none;
    }
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;

    h3 {
        margin: 0;
    }

}


#wpte-job-form-complete {
    text-align: center;
    max-width: 500px;

    .elementor-button {
        width: 100%;
    }

    p {
        margin-bottom: 30px;
    }

    i {
        color: #42c542;
        font-size: 51px;
        margin-bottom: 10px;
    }

    .wpte-job-popup-boost {
        background: #4f4fff;
        color: #ffffff;
    }
}


.wpte-no-jobs-found {
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.04);
    transition: 0.3s all;
    position: relative;
    height: auto;
    background: #fff;
    text-align: center;

    i {
        font-size: 30px;
        margin-bottom: 10px;
        color: #696969;
    }
}

.wpte-job-applications-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#applicationMethodWarning {
    background-color: #FEF3C7;
    border-left: 4px solid #FBBF24;
    color: #92400E;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-bottom: 20px;
    display: none;
    animation: fadeIn 0.5s both;
}

.wpte-notifications-header {
    position: relative;
    display: inline-block;
    cursor: pointer;
}


.wpte-notifications-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-radius: 6px;

    >p {
        padding: 20px;
        text-align: center;
    }
}

.wpte-view-all-notifications-link {
    text-align: center;
    display: block;
    padding: 10px;
    color: var(--swiper-theme-color);
}

.wpte-notifications-header:hover .wpte-notifications-content {
    display: block;
}


.wpte-notifications-header .wpte-notifications-list {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: none;
    border-radius: 0;

    .wpte-notification {
        padding: 7px 10px;

        strong {
            font-size: 14px;
            line-height: 20px;
        }

        div {
            display: inline-block;
            font-size: 12px;

            &.nt-first {
                &:after {
                    content: ".";
                    display: inline-block;
                    margin: 0 3px;
                }
            }
        }
    }
}

.wpte-notification {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.wpte-notification.unread {
    background-color: #f9f9ff;
}

.wpte-notification:hover {
    background-color: #f0f0f5;
}


.wpte-notifications-header .fa-bell {
    color: #333;
    font-size: 30px;
}

.notification-badge {
    background: red;
    color: white;
    font-size: 9px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -7px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}



@media (min-width: 768px) and (max-width: 1440px) {}

@media (max-width: 1440px) {
    .boots-section-active-booster {
        .elementor-button {
            padding: 10px 15px;
        }
    }
}

@media (max-width: 1024px) {
    .wpte-jobs-pages {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {

    .wpte-dashboard {
        #create-job {
            font-size: 14px;
            padding: 5px 10px;
        }

        .job-header {
            >h3 {
                font-size: 20px;
                line-height: 29px;
            }
        }

        .row-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;

            button,
            a {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
    }

    .wpte-dashboard #toggle-tabs {
        display: block;
    }

    .job-tab-nav li {
        padding: 10px 10px;
        font-size: 14px;
    }

    .wpte-job-filter-form {
        .form-display {
            >button {
                padding: 10px 15px;
                font-size: 14px;
            }
        }

        .form-top {
            display: block;

            .form-left {
                width: 100%;
            }

            #moreFiltersBtn {
                width: 100%;
                margin-top: 0;
            }
        }
    }
}

@media (min-width:992px) {

    .settings,
    .jobs-management,
    .privacy,
    .jobs-notifications,
    .profile,
    .payment {
        .profile-mainpage {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 75%;
            flex: 0 0 75%;
            max-width: 75%;
        }
    }

}