.wrapper {
    padding: 0;
}

.seeker_clear:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* HEADER */

.seeker_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.seeker_container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.header_box {
    display: flex;
    align-items: center;
    height: 70px;
}

/* LOGO */

.seeker_logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 70px;
    width: 192px;
    padding-right: 20px;
    margin-right: 20px;
}

.seeker_logo img {
    max-height: 40px;
    max-width: 180px;
    width: auto;
    height: auto;
    display: block;
}

/* USER */

.seeker_button {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 70px;
    margin-left: 15px;
    padding-left: 15px;
    gap: 10px;
}

.seeker_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    height: 36px;
    border-radius: 4px;
    text-decoration: none !important;
}

.seeker_button i {
    display: none;
}


/* NAV */

.seeker_nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    height: 36px;
    flex-grow: 1;
    margin: 0 auto;
    padding: 0;
}

.is-desktop .seekernav {
    margin: 0;
    height: 36px;
}

.is-desktop .seekernav a {
    text-decoration: none !important;
}

.is-desktop .seekernav li {
    position: relative;
    display: inline-block;
    margin: 0 30px 0 0;
    padding: 6px 0;
}

.is-desktop .sub-menu {
    display: none;
    position: absolute;
    width: 180px;
    top: 100%;
    left: -10px;
    z-index: 10;
    padding: 15px 0;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, .06);
}

.is-desktop .seekernav li:hover .sub-menu {
    display: block;
}

.is-desktop .seekernav .sub-menu>li {
    display: block;
    padding: 0;
    margin: 0;
}

.is-desktop .seekernav .sub-menu>li>a {
    display: block;
    padding: 8px 20px;
    transition: all .3s ease;
}

/* BOOKMARK HEADER */

.bookmark-toggle {
    position: relative;
	border: 0;
}

.bookmark-btn-wrapper {
    position: absolute;
    right: 16px;
    top: -2px;
	z-index: 1;
}

.bookmark-toggle-btn {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    position: relative;
}

.bookmark-toggle-btn span {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    width: 16px;
    height: 16px;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
}

.bookmark-panel {
    display: none;
    position: absolute;
    top: 60px;
    right: -40px;
    z-index: 20;
    width: 300px;
    height: 360px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
}

.bookmark-panel.open {
    display: block;
}

.bookmark-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.bookmark-saved {
    font-size: 15px;
    line-height: 1.2;
}

.bookmark-number {
    font-size: 13px;
    font-weight: normal;
	opacity: .7;
}

.clear-all-btn {
    margin-left: auto;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 40px;
}

.bookmark-btn {
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 20px;
    height: 25px;
    padding: 3px 0 6px;
    border: 0;
    clip-path: polygon(100% 0, 100% 100%, 50% 85%, 0 100%, 0 0);
}

.bookmark-btn span {
    transform: scale(0);
    display: none;
}



/* Notification Styles */

.bookmark-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.bookmark-notification.show {
    transform: translateX(0);
}

.bookmark-notification i {
    font-size: 18px;
}

.bookmark-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.bookmark-panel-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-panel {
    cursor: pointer;
    font-size: 20px;
    background: none;
    border: none;
}

.bookmark-item {
    padding: 20px;
}

.bookmark-item-title {
    margin: 0 0 12px 0;
    font-size: 15px;
}

.bookmark-item-title a {
    text-decoration: none;
}

.bookmark-item-actions {
    display: flex;
    gap: 10px;
}

.remove-bookmark-btn {
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.view-bookmark-btn {
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 12px;
}

.bookmark-empty {
    text-align: center;
    padding: 40px 20px;
}

.bookmark-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.bookmark-notification.show {
    opacity: 1;
    transform: translateY(0);
}


.loading,
.loading-search {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.loader {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* AJAX */

.ciuss-auth-trigger {
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: .3s ease;
}


body.ciuss-auth-no-scroll {
    overflow: hidden;
}

.ciuss-auth-modal {
    position: fixed;
    inset: 0;
    background: rgba(250, 250, 250, 0.25);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 16px;
    backdrop-filter: blur(60px);
}

.ciuss-auth-modal.is-open {
    display: flex;
}

.ciuss-auth-modal__panel {
    border-radius: 8px;
    width: 100%;
    max-width: 380px;
    padding: 32px 28px 28px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.ciuss-auth-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.ciuss-auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.ciuss-auth-tabs__item {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.ciuss-auth-modal form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ciuss-auth-modal label {
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.ciuss-auth-modal input[type="text"],
.ciuss-auth-modal input[type="email"],
.ciuss-auth-modal input[type="password"] {
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.ciuss-auth-modal input:focus {
    outline: none;
}

.ciuss-auth-remember {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-direction: row;
    font-weight: 400;
    margin-top: 10px;
}

.ciuss-auth-modal button[type="submit"] {
    margin-top: 16px;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ciuss-auth-modal button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ciuss-auth-forgot {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
}

.ciuss-auth-message {
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 4px;
}

.ciuss-auth-message--error {
    background: #fcf0f1;
    color: #d63638;
    border-left: 3px solid #d63638;
}

.ciuss-auth-message--success {
    background: #edfaef;
    color: #1a7d33;
    border-left: 3px solid #1a7d33;
}

.ciuss-auth-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* MAIN */

.seeker_main {
    padding: 90px 0 0;
}

.seeker_content {
    position: relative;
}

.content_area {
    padding: 0;
}

.area_job {
    float: right;
    width: calc( 100% - 234px);
    min-height: 600px;
}

.area_primary {}

.seeker_head {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.15;
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.seeker_head span {
    margin-left: auto;
    padding-left: 30px;
}

.seeker_head span.bookmark-total {
    font-size: 14px;
    margin-left: 15px;
    font-weight: 400;
}

.seeker_intro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 20px;
}

.intro_inner {
	position: relative;
    padding: 25px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.06);
    align-items: end;
    gap: 30px;
}

.intro_link {
	position: absolute;
	top: 25px;
	right: 25px;
	padding: 2px 6px;
    margin: 0 1px;
    border-radius: 3px;
    text-transform: lowercase;
	font-size: 13px;
  font-weight: 500;
}

.intro_title {
    font-size: 20px;
    margin: 0 0 30px;
}

.intro_count {
    font-size: 70px;
    line-height: 1.0;
    font-weight: bold;
    letter-spacing: -2px;
    margin: 0;
}

.intro_small {
    opacity: .6;
}

.intro_month {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 10px;
    height: 55%;
    width: 130px;
    margin-left: auto;
}

.prev_month {
    border-radius: 10px;
    position: relative;
    border-width: 8px 0;
    border-style: solid;
}

.this_month,
.month2:hover {
    border-radius: 10px;
    position: relative;
    border-width: 8px 0;
    border-style: solid;
}

.month_top {
    height: 100%;
}

.month_n {
    width: 16px;
    border-radius: 20px;
    transition: all .3s ease;
}

.month5 {
    height: 50%;
}

.month4 {
    height: 80%;
}

.month3 {
    height: 70%;
}

.month2 {
    border-width: 8px 0;
    border-style: solid;
}

.month1 {
    border-width: 5px 0;
    border-style: solid;
}

.intro_week {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    gap: 10px;
    height: 55%;
    width: 152px;
    margin-left: auto;
}

.prev_week {
    border-radius: 10px;
    position: relative;
    border-width: 5px 0;
    border-style: solid;
}

.this_week {
    border-radius: 10px;
    position: relative;
    border-width: 5px 0;
    border-style: solid;
}

.this_week .week_percent {
    position: absolute;
    bottom: calc( 100% + 10px);
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}

.prev_count {
    position: absolute;
    bottom: 6px;
    right: 12px;
    font-size: 16px;
    line-height: 1.0;
    font-weight: 800;
}

.week_top {
    height: 100%;
}

.intro_progress {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: end;
    justify-content: end;
    gap: 10px;
}

/* LIVE SEARCH */

#live-search-results,
.seeker_archive_loop {
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.halo_loop {
    position: relative;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.06);
}
.not_ready {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;	
}

.halo_company {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    padding: 15px 25px;
	position: relative;
}

.company_logo {
    width: 40px;
    height: 40px;
}

.company_logo.archive_logo {
	width: 70px;
    height: 70px;
}

.company_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company_name {
	padding-right: 40px;
}

.pop_view {
	position: absolute;
	bottom: -4px;
	right: 12px;
	font-size: 40px;
	font-weight: bold;
	font-style: italic;
	opacity: .1;
	letter-spacing: -2px;
}

.company_title {
    font-size: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.company_loc {
    font-size: 14px;
}

.halo_detail {
    padding: 20px 25px 40px;
}

.halo_title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    margin: 0 0 15px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.halo_deal {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0 0 20px;
}

.deal_sistem {
    margin-right: auto;
    font-weight: bold;
}

.deal_gaji {
    font-weight: bold;
}

.halo_data {
    margin: 0 0 15px;
    font-size: 15px;
}

.halo_data span {
    padding: 4px 12px;
    margin: 0 6px 6px 0;
    border-radius: 4px;
    font-size: 13px;
    display: inline-block;
}

.halo_deadline {
    position: absolute;
    bottom: 25px;
    left: 30px;
    right: 30px;
	display: flex;
	gap: 5px;
}

/* Page */

.seeker_page {
    display: flex;
    gap: 6px;
    margin: 0 0 20px;
}

/* #live-search-results acts as a grid container itself, so pagination
   rendered inline with the result cards must span the full row width
   instead of becoming a grid item next to the cards. */
#live-search-results .seeker_page {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
}

.seeker_page .page-dots {
    padding: 6px 4px;
    font-size: 13px;
}

.seeker_page .page-nav {
    font-weight: 700;
}

.seeker_page a {
    padding: 6px 12px;
    border-radius: 4px;
	font-size: 13px;
}


/* Page Bookmark */

.bookmark-total {
    font-size: 14px;
    margin-left: 15px;
    font-weight: 400;
}

.bookmark-total .count-display {
    font-weight: 700;
}

/* Loading */

.bookmark-loading {
    text-align: center;
    padding: 60px 20px;
}

.loader {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.bookmark-loading p {
    font-size: 16px;
}

/* Empty State */

.bookmark-empty {
    text-align: center;
    padding: 80px 20px;
    border-radius: 12px;
}

.bookmark-empty .empty-icon {
    font-size: 64px;
    opacity: .3;
    margin-bottom: 20px;
}

.bookmark-empty h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.bookmark-empty p {
    font-size: 16px;
	opacity: .8;
	max-width: 500px;
	margin: 0 auto 20px;
}

.bookmark-empty .btn-browse {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.bookmark-remove-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.5;
    z-index: 2;
}

.bookmark-remove-btn:hover {
    opacity: 1;
    background: rgba(229, 34, 34, 0.1);
    transform: scale(1.1);
}


/* Notification */

.bookmark-notification-custom {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 99999;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
    max-width: 300px;
    color: white;
}

/* Responsive */

@media (max-width: 768px) {
    .bookmark-total {
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }
    .bookmark-remove-btn {
        top: 8px;
        right: 8px;
        font-size: 18px;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.content_box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 16px;
}

/* LEFT */

.area_category {
    position: fixed;
    top: 70px;
    bottom: 0;
    left: 0;
    width: 192px;
    padding: 20px;
    line-height: 1.2;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    overflow-y: scroll;
    appearance: none;
}

.area_category .select2-container .select2-selection--single {
    height: 36px;
}

.area_category .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
}

.area_category .select2-container--default .select2-selection--single {
    border-radius: 4px;
}

.area_category .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px;
    right: 5px;
}

.tax-filter {
    width: 100%;
    border: 0;
}

.tax-filter option {
    padding: 4px 10px 4px 0;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.tax-filter option:before {
    content: '';
    height: 18px;
    width: 18px;
    margin-right: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tax-filter option:checked:before {
    content: '+';
}

.filter-select {
    margin-bottom: 10px;
}

.filter-check {
    margin-bottom: 30px;
}

.filter-group label {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.radio-group {
    flex-wrap: wrap;
    gap: 15px;
}

.radio-option {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    user-select: none;
    gap: 5px;
}

.radio-option input[type="radio"] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.radio-custom {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: none;
}

.radio-option input[type="radio"]:checked~.radio-custom:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

.checked-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    margin-right: 5px;
    font-size: 12px;
}

.radio-option input[type="radio"]:focus~.radio-custom {
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.radio-label {
    cursor: pointer;
}

.radio-count {
    margin: 0 6px 0 auto;
}

.select2-search {
    padding: 8px;
    border-radius: 4px;
}

.help-text {
    display: block;
    font-size: 12px;
    opacity: .8;
    margin-top: 5px;
}

#reset-filters {
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.loading {
    text-align: center;
    padding: 20px;
    opacity: .8;
}

.error {
    padding: 10px;
    text-align: center;
}

/* Loading State */

#search-results.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loader {
    text-align: center;
    padding: 40px;
	font-size: 30px;
}

/* No Results */

.show_search {
    display: none;
}

.showsearch .show_search {
    display: block;
}

.hide_search {
    display: block;
}

.showsearch .hide_search {
    display: none;
}

.no-results {
    text-align: center;
    padding: 40px;
    border-radius: 8px;
}

/* Lowongan */

.single-header {
    position: relative;
    margin-bottom: 30px;
}

.single-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.header-left {
    flex: 1;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    margin: 0 8px;
}

.single-current {
    display: none;
}

.single-breadcrumb .seeker-home {
    font-weight: bold;
}

.single-breadcrumb .seeker-location {
    font-weight: bold;
}

.single-breadcrumb .seeker-job {
    font-weight: bold;
}

.single-breadcrumb .seeker-sistem {
    font-weight: bold;
}

.single-heading {
    display: grid;
    grid-template-columns: 60% 20% 20%;
    grid-template-rows: 50% 50%;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 30px;
}

.single-main {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
	border-width: 0 1px 0 0;
	border-style: solid;
    padding: 25px 40px 25px 25px;
    position: relative;
    align-content: center;
}

.single-maintitle {
    font-size: 32px;
    font-weight: 700;
    margin: 0 40px 12px 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.single-meta-top {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.meta-company {
    display: flex;
    align-items: center;
    gap: 20px;
}

.meta-company-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.meta-company-name {
    font-weight: 600;
    font-size: 15px;
}

/* Deadline Banner */

.deadline-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.deadline-banner.normal {
    background: #f0fff7;
    color: #11aa3a;
}

.deadline-banner.urgent {
    background: #fff3e6;
    color: #e85a2a;
    animation: pulse-banner 1.5s ease-in-out infinite;
}

.deadline-banner.expired {
    background: #fef0f0;
    color: #cf1322;
}

@keyframes pulse-banner {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.deadline-icon {
    font-size: 18px;
}

.single-est {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    padding: 25px;
    justify-content: center;
    text-align: center;
	border-width: 0;
	border-style: solid;
}

.single-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 25px;
    justify-content: center;
    text-align: center;
	border-width: 0;
	border-style: solid;
}

.single-loc {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: column;
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    padding: 25px;
    justify-content: center;
    text-align: center;
}

.est-top {
    font-size: 14px;
}

.est-main {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
}

.spec-main {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

.est-bot {
    font-size: 13px;
    font-weight: 500;
}

.est-bot span {
    padding: 3px 4px;
    margin: 0 1px;
    border-radius: 3px;
    text-transform: lowercase;
}

.single-float {
    margin: 0 -10px 20px;
}

.single-center {
	width: calc( 100% - 20px);
    margin: 0 10px;
}

.single-right {
    float: right;
    width: calc( 50% - 20px);
    margin: 0 10px;
    position: sticky;
    top: 100px;
}

.single-card {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.single-disclaimer {
	margin: 0 0 20px;
}

.single-card:hover {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.single-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-content {
    font-size: 15px;
    line-height: 1.5;
}

.single-content p {
    margin-bottom: 18px;
}

.single-content h2,
.single-content h3,
.single-content h4 {
    margin-top: 28px;
    margin-bottom: 15px;
}

.single-content ul,
.single-content ol {
    margin: 15px 0 20px 20px;
}

.single-content li {
    margin-bottom: 8px;
}

.single-act {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.act-company-logo {
    width: 40px;
    height: 40px;
}

.act-prefix {
    font-size: 13px;
}

.act-head {
    font-size: 18px;
    font-weight: bold;
}

.act-link {
    display: flex;
    align-items: center;
    margin-left: auto;
	gap: 6px;
}

.act-link a {
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.act-link a.act-disable {
    pointer-events: none;
}

.single-left {
    float: left;
    width: calc( 50% - 20px);
    margin: 0 10px;
    display: grid;
    grid-template-columns: repeat(1.1fr);
    gap: 20px;
}

.single-qualify {
    padding: 0 0 0 22px;
    margin: 0 0 12px;
    position: relative;
}

.single-qualify:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 8px;
    border-radius: 8px;
}

.single-job {
    position: relative;
    padding: 15px;
    margin: 0 0 12px 40px;
    border-radius: 8px;
}

.single-job:before {
    content: '';
    position: absolute;
    top: 0;
    left: -35px;
    bottom: -12px;
    width: 4px;
    border-radius: 8px;
}

.single-job:last-child:before {
    bottom: 0;
}

.single-job:after {
    content: '';
    position: absolute;
    top: calc( 50% - 9px);
    left: -42px;
    height: 12px;
    width: 12px;
    border-radius: 16px;
    z-index: 1;
}

.single-benefit {
    padding: 0 0 0 22px;
    margin: 0 0 12px;
    position: relative;
}

.single-benefit:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 12px;
    height: 8px;
    border-radius: 8px;
}

.card-content {
    font-size: 14px;
}

/* Share Buttons */

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn.twitter {
    background: #000;
    color: #fff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn.copy-link {
    background: #f0f0f0;
    color: #555;
}

.share-btn.copy-link:hover {
    background: #e0e0e0;
}

/* Single Companies */

.company-heading {
    border-radius: 15px;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin: 0 0 20px;
}

.company-intro {
    height: 150px;
    background: linear-gradient(45deg, #bddeec, #aae5f2, #d0d1ff);
}

.company-box {
    position: relative;
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 20px;
}

.company-logo {
    width: 100px;
    height: 100px;
    margin: -70px 0 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.06);
}

.company-all {
    width: calc( 100% - 130px);
    display: flex;
    align-items: center;
}

.company-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 4px;
}

.company-tagline {
    display: flex;
    gap: 40px;
    font-size: 14px;
}

.company-web {
    margin-left: auto;
    display: flex;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none !important;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-gap: 20px;
    font-size: 14px;
    margin: 0;
}

.company-bar {
    order: 2;
}

.company-inner {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.06);
    margin: 0 0 20px;
}

.company-contact {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 10px;
    margin: 0 0 15px;
}

.company-map {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
    width: 40px;
    height: 40px;
}

.company-datas {
    width: calc( 100% - 26px);
    line-height: 1.4;
}

.datas-label {
    font-size: 90%;
    padding: 0;
    opacity: .6;
}

.company-big {
    order: 1;
}

.salary-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 25px;
    border-radius: 10px;
    margin: 0 0 10px;
}

.positionrole {
    font-weight: 600;
    font-size: 16px;
}

.salaryrole {
    margin-left: auto;
    padding-left: 30px;
}

.salaryrole span {
    padding: 3px 4px;
    margin: 0 1px;
    font-weight: bold;
    border-radius: 3px;
    text-transform: lowercase;
}

/* Search */

.halo_related {
    margin: 0 -20px;
    padding: 0 20px 1px;
}


/* Select2 Container */

.select2-container--default .select2-selection--multiple {
    border: 1px solid #eee;
    border-radius: 4px;
    min-height: 38px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #0073aa;
    border-color: #005a87;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ffcc00;
    background: none;
}

/* Dropdown hasil pencarian */

.select2-results__option {
    padding: 8px 12px;
}

.select2-results__option--highlighted {
    background-color: #0073aa;
}

/* Loading indicator untuk Select2 saat mencari */

.select2-container--default .select2-search--inline .select2-search__field {
    margin-top: 8px;
}

.area_category .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #222;
}


/* Error message */

.circle-wrapper {
            width: 100px;
            height: 100px;
            position: relative;
            margin-left: auto;
        }

        canvas {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        /* Countdown di tengah */
        .countdown {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
			font-weight: bold;
            text-align: center;
            pointer-events: none;
            user-select: none;
            line-height: 1.2;
        }

        .countdown .separator {
            opacity: .4;
            font-weight: 300;
        }





.halo_footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px 10px 254px;
}

.page-template-template-dashboard .halo_footer {
	padding: 10px 20px;
}

.halo_footer span {
    margin-left: auto;
}

.halo_footer span a {
    margin-left: 10px;
}

.halo_close {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	opacity: .9;
	z-index: 10;
	display: none;
}
.mobile-show .halo_close {
	display: block;
}

/* Tablet Styles (max-width: 1024px) */

.halo_ads {
	margin: 0 0 25px;
}
.single-left .halo_ads {
	margin: 0;
}
.halo_ads img {
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto
}

@media (max-width: 1024px) {
    /* Header */
    .seeker_header {
        height: 60px;
    }
    .header_box,
	.seeker_logo {
        height: 60px;
    }
    .seeker_logo img {
        max-height: 36px;
        max-width: auto;
    }
    /* Mobile Nav Toggle */
    .seeker_nav {
        display: none;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        height: 100%;
        padding: 10px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    .seeker_nav.mobile-open {
        display: flex;
    }
    .is-mobile .seekernav {
        height: auto;
    }
    .is-mobile .seekernav li {
        display: block;
        margin: 0;
        padding: 10px 0;
		position: relative;
    }
	.is-mobile .seekernav li.menu-item-has-children:after {
		content: '▽';
		position: absolute;
		right: 0;
		top: 9px;
	}
    .is-mobile .seekernav li a {
        display: block;
    }
    .is-mobile .seekernav li>.sub-menu,
    .is-mobile .seekernav li:hover>.sub-menu {
        padding: 0;
        position: relative;
        width: auto;
        max-height: 0;
        /* Mulai dari tinggi 0 */
        overflow: hidden;
        opacity: 0;
        /* Mulai dari opacity 0 */
        transform: translateY(-10px);
        /* Geser ke atas sedikit */
        transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    .is-mobile .seekernav>li>.sub-menu,
    .is-mobile .seekernav>li:hover>.sub-menu {
        margin: 0 0 0 20px;
    }
    .is-mobile .seekernav li.active>.sub-menu {
        padding: 10px 0 0;
        max-height: 500px;
        /* Sesuaikan dengan ketinggian maksimal submenu */
        opacity: 1;
        transform: translateY(0);
        /* Geser kembali ke posisi normal */
    }
    .mobile-menu-toggle {
        display: flex !important;
    }
    .filter-open {
        display: flex !important;
        align-items: center;
        gap: 6px;
        height: 60px;
        background: none;
        border: 0;
        padding-left: 10px;
        margin-left: 5px;
    }
    .filter-open i {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        width: 36px;
        height: 36px;
        border-radius: 36px;
    }
    .bookmark-toggle {
        display: flex;
        align-items: center;
        height: 60px;
        padding-left: 10px;
        margin-left: 10px;
        border-width: 0 0 0 1px;
		border-style: solid;
    }
    .seeker_button {
        margin-left: 10px;
        padding-left: 10px;
        height: 60px;
    }
    .seeker_button a,
    .ciuss-auth-trigger {
        padding: 0;
        font-size: 13px;
        height: 36px;
        width: 36px;
        border-radius: 36px;
    }
    .seeker_button span {
        display: none;
    }
    .seeker_button i {
        display: block;
    }
    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        margin-left: auto;
    }
    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    /* Left Sidebar */
    .area_category {
        top: 60px;
    }
    /* Hero */
    .seeker_hero {
        height: 350px;
    }
    /* Intro Grid */
    .seeker_intro {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .intro_inner {
        padding: 20px;
        gap: 15px;
    }
    .intro_title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    /* Job Loop */
    #live-search-results,
    .seeker_archive_loop {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    /* Single Job */
    .single-heading {
        grid-template-columns: 55% 22.5% 22.5%;
        height: 250px;
    }
    .single-main {
        padding: 20px 25px 20px 20px;
    }
    .single-maintitle {
        font-size: 24px;
    }
    .single-float {
        margin: 0;
    }
    .single-right {
        float: none;
        width: 100%;
        margin: 0 0 20px;
        position: static;
    }
    .single-left {
        float: none;
        width: 100%;
        margin: 0;
    }
    .single-act {
        flex-wrap: wrap;
        padding: 20px;
    }
    .act-link {
        margin-left: 0;
        width: 100%;
    }
    .act-link a {
        width: 100%;
        text-align: center;
    }
    /* Company */
    .company-grid {
        grid-template-columns: 1fr;
    }
    .company-bar {
        order: 1;
    }
    .company-big {
        order: 2;
    }
    .company-box {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
    }
    .company-all {
        width: 100%;
        flex-wrap: wrap;
    }
    .company-web {
        margin-left: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    /* Bookmark Panel */
    .bookmark-panel {
        right: -20px;
    }
    .area_category {
        display: none;
        position: fixed;
        top: 60px;
        bottom: 0;
        left: 0;
        padding: 15px 20px;
        z-index: 98;
        border-right: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    .mobile-show .area_category {
        display: block;
    }
    .seeker_main {
        padding: 80px 0 0;
    }
    .area_job {
        float: none;
        width: 100%;
    }
    .halo_footer,
	.page-template-template-dashboard .halo_footer {
        padding: 20px;
    }
}

/* Mobile Styles (max-width: 768px) */

@media (max-width: 768px) {
    .seeker_main {
        padding: 75px 0 0;
    }
    /* Header Mobile */
    .seeker_header {
        height: 55px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    .header_box {
        height: 55px;
        justify-content: space-between;
    }
    .seeker_logo {
        width: auto;
        padding-right: 0;
        margin-right: 0;
        border-right: none !important;
        height: 55px;
    }
    .seeker_logo img {
        max-height: 36px;
    }
    .bookmark-toggle {
        height: 55px;
    }
    .filter-open {
        height: 55px;
    }
    .filter-open i {
        font-size: 12px;
        width: 32px;
        height: 32px;
        border-radius: 32px;
    }
    .seeker_button {
        height: 55px;
        gap: 6px;
    }
    .seeker_button a,
    .ciuss-auth-trigger {
        font-size: 12px;
        height: 32px;
        width: 32px;
        border-radius: 32px;
    }
    /* Hero */
    .seeker_hero {
        height: 250px;
    }
    /* Intro */
    .seeker_intro {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    .intro_inner {
        padding: 16px 20px;
        gap: 12px;
    }
    .intro_title {
        font-size: 16px;
    }
    .prev_count {
        font-size: 13px;
        bottom: 4px;
        right: 8px;
    }
	.intro_link {
		top: 12px;
		right: 16px;
	}
    /* Job Loop */
    #live-search-results,
    .seeker_archive_loop {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .halo_loop {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .halo_title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .halo_deal {
        margin: 0 0 15px;
    }
    .halo_data {
        margin: 0 0 5px;
    }
    .halo_deadline {
        bottom: 15px;
        left: 16px;
        right: 16px;
    }
    /* Single Job Mobile */
    .single-header-top {
        flex-direction: column;
        gap: 15px;
    }
    .single-heading {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .single-main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        padding: 16px 18px;
        border-right: none;
        border-width: 0 0 1px;
    }
    .single-meta-top {
        gap: 12px;
        font-size: 13px;
        margin-bottom: 12px;
    }
    .single-est {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        padding: 16px 12px;
		border-width: 0 1px 1px 0;
    }
    .single-spec {
        grid-column: 1 / 2;
        grid-row: 3 / 3;
        padding: 16px 12px;
        border-width: 0 1px 0 0;
    }
    .single-loc {
        grid-column: 2 / 2;
        grid-row: 3 / 4;
        padding: 16px 12px;
        border-right: none;
    }
    .single-float {
        margin: 0;
    }
    .single-content h2,
    .single-content h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    .single-act {
        gap: 15px;
        border-radius: 8px;
    }
    .act-link {
        width: 100%;
    }
    .act-link a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 15px;
    }
    .act-head {
        font-size: 16px;
    }
    /* Share Buttons */
    .share-buttons {
        gap: 6px;
    }
    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    /* Pagination */
    .seeker_page {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .seeker_page a {
        padding: 4px 10px;
        font-size: 13px;
    }
    /* Bookmark */
    .bookmark-toggle-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .bookmark-toggle-btn span {
        width: 14px;
        height: 14px;
        font-size: 8px;
        top: -4px;
        right: -4px;
    }
    .bookmark-panel {
        top: 50px;
        right: -10px;
        width: 280px;
        height: 320px;
    }
    .bookmark-item {
        padding: 14px 16px;
    }
    /* Company Mobile */
    .company-heading {
        border-radius: 10px;
    }
    .company-intro {
        height: 80px;
    }
    .company-box {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .company-logo {
        width: 70px;
        height: 70px;
        margin: -40px 0 0;
        padding: 10px;
    }
    .company-all {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .company-title {
        font-size: 20px;
    }
    .company-web {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        font-size: 14px;
    }
    .company-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .company-inner {
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 15px;
    }
    .salary-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 16px;
    }
    .salaryrole {
        margin-left: 0;
        padding-left: 0;
    }
    /* Auth Modal */
    .ciuss-auth-modal__panel {
        padding: 24px 18px 20px;
        margin: 10px;
        max-width: 340px;
    }
    .ciuss-auth-modal input[type="text"],
    .ciuss-auth-modal input[type="email"],
    .ciuss-auth-modal input[type="password"] {
        padding: 8px 12px;
        font-size: 13px;
    }
    .ciuss-auth-tabs__item {
        font-size: 13px;
        padding: 8px 0;
    }
    /* Container */
    .seeker_container {
        padding: 0 15px;
    }
    /* Notification */
    .bookmark-notification {
        bottom: 12px;
        right: 12px;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
    .bookmark-notification-custom {
        bottom: 12px;
        right: 12px;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 6px;
    }
	.area_category .tax-filter {
        height: 40px;
        font-size: 15px;
    }
	
    .halo_footer {
        flex-direction: column;
    }
	.halo_copy {
		text-align: center;
	}
    .halo_footer span {
        margin: 0 auto;
    }
}

/* Small Mobile (max-width: 480px) */

@media (max-width: 480px) {
    .wrapper {
        overflow: auto;
    }
    .seeker_main {
        padding: 70px 0 0;
    }
    .seeker_header .seeker_container {
        padding: 0 10px;
    }
    .seeker_header {
        height: 50px;
    }
    .header_box {
        height: 50px;
    }
    .seeker_logo {
        height: 50px;
    }
    .seeker_logo img {
        max-height: 32px;
    }
    .bookmark-toggle {
        height: 50px;
    }
    .seeker_button {
        height: 50px;
    }
    .seeker_nav {
        top: 50px;
    }
    .breadcrumb {
        font-size: 14px;
    }
    .single-breadcrumb .separator:nth-last-child(2),
    .single-breadcrumb .current {
        display: none;
    }
    .breadcrumb .separator {
        margin: 0 1px;
    }
    .area_category {
        top: 50px;
    }
    .seeker_hero {
        height: 200px;
    }
    .seeker_head {
        font-size: 26px;
        padding: 0 0 20px;
    }
	.show_search .seeker_head {
        font-size: 20px;
    }
    .intro_count {
        font-size: 50px;
    }
    .intro_inner {
        padding: 12px 16px;
        gap: 8px;
    }
    .intro_title {
        font-size: 16px;
    }
    .halo_company {
        padding: 12px 15px;
    }
    .halo_detail {
        padding: 12px 15px 35px;
    }
    .single-meta-top {
        font-size: 12px;
        gap: 8px;
        flex-wrap: wrap;
    }
    .single-heading {
        border-radius: 6px;
    }
    .single-main {
        padding: 12px 14px;
    }
    .single-est {
        padding: 16px 8px;
    }
    .single-spec {
        padding: 16px 8px;
    }
    .single-loc {
        padding: 12px 8px;
    }
    .single-card {
        padding: 20px;
    }
    .single-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .company-logo {
        width: 60px;
        height: 60px;
        margin: -35px 0 0;
        padding: 8px;
    }
    .company-tagline {
        font-size: 13px;
        margin: 0 0 20px;
    }
    .company-datas a {
        font-size: 16px;
    }
    .bookmark-panel {
        right: -5px;
        width: 260px;
    }
    .bookmark-item-actions {
        flex-wrap: wrap;
    }
    .ciuss-auth-modal__panel {
        padding: 20px 14px 16px;
        max-width: 300px;
    }
    .ciuss-auth-modal input[type="text"],
    .ciuss-auth-modal input[type="email"],
    .ciuss-auth-modal input[type="password"] {
        padding: 6px 10px;
        font-size: 12px;
    }
    .halo_related {
        margin: 0 -15px;
        padding: 0 15px 1px;
    }
}

.mobile-menu-toggle {
    display: none;
}


@media (max-width: 1024px) {
    .seeker_nav .seekernav li {
        display: block;
    }
}

.filter-open {
    display: none;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .filter-open {
        display: flex !important;
    }
}
