/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.1.6
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Form Style */
.employee-search-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 30px 20px;
}
.employee-search-form * {
    font-family: "Poppins", Sans-serif;
}
.employee-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-fields-row, .radio-fields-submit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.single-field label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.single-field label span, .single-radio-field span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #111111;
}
.single-field {
    flex: 1;
}
.single-field input, .single-field select {
    border: 1px solid #00000036;
    border-radius: 8px;
    color: #111111;
    line-height: 1.5;
    font-size: 14px;
    padding: 8px 14px;
    outline: none;
}

.single-field select {
    padding-left: 10px;
    padding-right: 10px;
}

.radio-fields-submit {
    align-items: center;
    gap: 80px;
}
.single-radio-field, .filed-group {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}
.single-radio-field.qualifications-field {
    flex: 1;
}
.single-radio-field.form-submit {
    flex: 0 0 auto;
    justify-content: flex-end;
}


.single-radio-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
}

.single-radio-field label input[type="checkbox"],
.single-radio-field label input[type="radio"] {
    width: 16px;
    height: 16px;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #000000;
    border-radius: 50%;
    transition: all 150ms;
}

.single-radio-field label input[type="radio"]:checked {
    border-width: 5px;
}


.single-radio-field label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-image: url(/wp-content/uploads/2026/07/check-solid.svg);
    background-size: 12px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
}

.single-radio-field label input[type="checkbox"]:checked {
  background-color: #000;
}

.qualification-selector .qualification-add-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    padding: 8px 45px 8px 20px;
    background: var(--e-global-color-secondary);
    border: none;
    border-radius: 40px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 200ms;
    position: relative;
}
.qualification-selector .qualification-add-btn::before, .qualification-selector .qualification-add-btn::after {
    content: '';
    display: block;
    width: 13px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    right: 22px;
    top: calc(50% - 1px);
}
.qualification-selector .qualification-add-btn::after {
    transform: rotate(90deg);
}
.qualification-selector .qualification-add-btn:hover {
    background: #111;
}
.qualifications, #selected_qualifications {
    display: flex;
    align-items: center;
    gap: 8px;
}
#selected_qualifications {
    flex-wrap: wrap;
}
#selected_qualifications button {
    background-color: #71890008;
    border: 1px solid #718900;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
    padding: 7px 45px 7px 17px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 200ms;
    position: relative;
}
#selected_qualifications button:hover {
    background-color: #70890040;
}
#selected_qualifications button::before, #selected_qualifications button::after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    position: absolute;
    right: 20px;
    top: calc(50% - 1px);
}
#selected_qualifications button::before {
    transform: rotate(-45deg);
}
#selected_qualifications button::after {
    transform: rotate(45deg);
}
.qualification-selector {
    position: relative;
}
.qualification-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 0.5px solid #ccc;
    border-radius: 8px;
    min-width: 220px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 4px 0;
    margin: 0;
}
.qualification-dropdown li {
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    color: #333;
}
.qualification-dropdown li:hover {
    background: #f5f5f5;
}
.qualification-dropdown .empty {
    padding: 8px 14px;
    font-size: 13px;
    color: #999;
    font-style: italic;
    cursor: default;
}
.form-submit .form-submit-btn {
    outline: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 18px;
    padding: 18px 40px;
    background-color: var(--e-global-color-primary);
    color: #111;
    transition: all 200ms;
}
.form-submit .form-submit-btn:hover {
    background-color: var( --e-global-color-secondary );
    color: #fff;
}
/* Form Style */

.form-submit-btn.loading, #load_more_candidates.loading {
	pointer-events: none;
	opacity: .8;
	position: relative;
	color: transparent;
}
.form-submit-btn.loading::after, #load_more_candidates.loading::after {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: spin .8s linear infinite;
}
@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
#filter-results-content.loading {
	pointer-events: none;
	opacity: .8;
}

/* Form Results Style */
.filter-results-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.filter-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    align-items: stretch;
}
.single-employee-card {
    box-shadow: 0px 4px 40px 0px #00000014;
    border: 1px solid #00000021;
    border-radius: 12px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}
.employee-card-header {
    padding: 15px 23px 19px;
    background: linear-gradient(254.46deg, rgba(231, 193, 100, 0.24) 0%, rgba(76, 138, 123, 0.24) 120.26%);
    border-radius: 12px 12px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.employee-bio {
    display: flex;
    align-items: center;
    gap: 16px;
}
.employee-img, .employee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.employee-bio .employee-badge,
.employee-bio button.employee-badge {
    margin-left: auto;
    align-self: flex-start;
}
.employee-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 1px solid #ffffff50;
}
.employee-title h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    color: #000000;
}
.employee-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.employee-title h6 {
    margin: 0;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: #0000009C;
}
.employee-badge {
    width: 42px;
    height: 42px;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 50%;
    background: #FFFFFF;
    text-align: center;
    flex-shrink: 0;
}

button.employee-badge {
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    line-height: 0;
}

button.employee-badge.si_save_candidate_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var( --e-global-color-secondary );
  background: #FFFFFF;
  color: var( --e-global-color-secondary );
  font-size: 0;
  box-shadow: none;
  text-decoration: none;
}

button.employee-badge:hover,
button.employee-badge.si_save_candidate_btn:hover {
    background: #FFF9EC;
    color: var( --e-global-color-secondary );
}

button.employee-badge.is-saved,
button.employee-badge.si_save_candidate_btn.is-saved {
    background: var(--e-global-color-secondary);
    border-color: var(--e-global-color-secondary);
    color: #fff;
}
button.employee-badge:disabled {
    opacity: 0.65;
    cursor: wait;
}
.employee-badge svg {
    width: 12px;
    height: 14px;
    display: block;
    flex-shrink: 0;
    color: var(--e-global-color-primary);
}
button.employee-badge svg,
button.employee-badge.is-saved svg {
    color: inherit;
}
.employee-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.employee-availability span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #ffffff;
    padding: 8px 10px 8px 8px;
    border-radius: 100px;
    font-size: 12px;
    line-height: 1.15;
    color: #000000;
}
.employee-availability span svg {
    width: 12px;
    height: 12px;
}
.employee-card-footer {
    padding: 16px 23px 23px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: space-between;
}
.experience-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.experience-details .single-info {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}
.experience-details .single-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    color: #111111;
}
.experience-details .single-info p.industry {
    text-align: end;
    line-height: 1.5;
}

/* .experience-details .single-info--quals {
    align-items: flex-start;
} */
 
.experience-details .single-info--quals > p:first-child {
    flex: 0 0 96px;
    line-height: 1.5;
}
.experience-details .single-info--quals .qualification-list {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
}
.qualification-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}
.qualification-list span {
    display: inline-block;
    border: 1px solid #718900;
    padding: 3px 10px;
    background-color: #7189000F;
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #718900;
}

.experience-details .single-info--quals .qualification-list .not-set {
  border: 0;
  background: transparent;
  color: #111;
  padding: 0;
  font-weight: 500;
}

.employee-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.employee-buttons .view-profile-btn {
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  display: inline-block;
  flex: 1;
  text-decoration: none;
  color: #111;
  background-color: var(--e-global-color-primary);
  border-radius: 12px;
  font-weight: 500;
  padding: 12px 30px;
  border: none;
  transition: all 200ms;
}

.employee-buttons .view-profile-btn:hover {
    background-color: var( --e-global-color-secondary );
    color: #fff;
}
.employee-buttons .message-btn {
    font-size: 14px;
    line-height: 17px;
    text-decoration: none;
    color: #FFFFFF;
    border: 1px solid #00000021;
    background-color: #718900;
    padding: 12px 36px;
    border-radius: 8px;
    flex: 0 0 auto;
}
.employee-buttons .message-btn:hover {
    background-color: #506101;
}
.filter-results-content .load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.filter-results-content .load-more .load-more-btn {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    background-color: var(--e-global-color-primary);
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    transition: all 200ms;
}

.filter-results-content .load-more .load-more-btn:hover {
    background-color: var( --e-global-color-secondary );
    color: #fff;
}

.empty-candidate-container {
  /* grid-column: span 3; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
  background: #c2505045;
}

.empty-candidate-container p {
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 500;
}

/* Form Results Style */

/* Candidates Dashboard Style */
.cdash_layout {
    width: 100%;
    display: flex;
    align-items: stretch;
    background: #fefff1;
}
.cdash_sidebar {
    width: 380px;
    flex: 0 0 auto;
    background: #FFFFFF;
    padding: 48px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.cdash_sidebar .logo a {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.cdash_sidebar .logo img,
.cdash_sidebar .logo .si_dashboard_sidebar_logo {
    display: block;
    max-width: 100px;
    height: auto;
}
.cdash_menu {
    padding: 0;
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cdash_menu li {
    flex: 1;
    width: 100%;
}
.cdash_menu li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border: none !important;
    border-radius: 100px;
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Poppins';
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    background: transparent;
	transition: all 200ms;
}
.cdash_menu li a svg {
    width: 24px;
    height: 24px;
}
.cdash_menu li a:hover {
	background: var(--e-global-color-primary);
	color: #111;
}
.cdash_sidebar li a.active {
	font-weight: 600;
	background: linear-gradient(254.46deg, var(--e-global-color-primary) 0%, #4C8A7B 120.26%);
	color: #FFFFFF;
}
.cdash_menu li a.active svg {
	width: 32px;
	height: 32px;
}

.cdash_main {
    flex: 1;
    padding: 40px 50px 50px;
}

.cdash_header {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}
.cdash_header .title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cdash_header .title h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    color: #000000;
}
.cdash_header .title p {
    font-size: 18px;
    line-height: 1.5;
    color: #394149;
    margin: 0;
}
.cdash_header .profiles {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cdash_header .profiles .company-profile {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    background-color: var(--e-global-color-primary);
    border: none;
    padding: 18px 24px;
    border-radius: 16px;
    transition: all 200ms;
}

.cdash_header .profiles .company-profile:hover {
    color: #fff;
    background-color: var(--e-global-color-secondary);
}

.cdash_header .profiles .profiles-content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cdash_header .profiles .notification-btn {
    border: 1px solid #C4C4C4;
    background-color: #ffffff;
    color: #000000;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
.cdash_header .profiles .notification-btn svg {
    width: 32px;
    height: 32px;
}
.cdash_header .profiles .notification-btn:hover,
.cdash_header .profiles .notification-btn[aria-expanded="true"] {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    border-color: var(--e-global-color-primary);
}
.cdash_notifications {
    position: relative;
}
.cdash_notifications_badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 100px;
    background: #4C8A7B;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
}
.cdash_notifications_panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    background: #ffffff;
    border: 1px solid #00000021;
    border-radius: 16px;
    box-shadow: 0 8px 40px 0 #0000001f;
    z-index: 100;
    overflow: hidden;
}
.cdash_notifications_panel_header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #00000014;
    background: linear-gradient(254.46deg, rgba(231, 193, 100, 0.18) 0%, rgba(76, 138, 123, 0.12) 120.26%);
}
.cdash_notifications_panel_header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}
.cdash_notifications_list {
    max-height: 320px;
    overflow-y: auto;
}
.cdash_notifications_empty {
    padding: 24px 18px;
    text-align: center;
}
.cdash_notifications_empty p {
    margin: 0;
    color: #394149;
    font-size: 14px;
}
.cdash_notifications_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #0000000f;
    transition: background-color 0.2s ease;
}
.cdash_notifications_item:hover {
    background: #fff9ec;
}
.cdash_notifications_item.is-new {
    background: #fffdf8;
}
.cdash_notifications_item.is-new strong::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-radius: 50%;
    background: #4C8A7B;
    vertical-align: middle;
}
.cdash_notifications_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}
.cdash_notifications_avatar--placeholder {
    display: block;
    background: #e7c16447;
}
.cdash_notifications_body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.cdash_notifications_body strong {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}
.cdash_notifications_body span {
    font-size: 13px;
    color: #394149;
    line-height: 1.4;
}
.cdash_notifications_body time {
    font-size: 12px;
    color: #6b7280;
}
.cdash_notifications_footer {
    padding: 12px 18px;
    border-top: 1px solid #00000014;
    text-align: center;
    background: #fffdf8;
}
.cdash_notifications_footer a {
    font-size: 14px;
    font-weight: 500;
    color: #4C8A7B;
    text-decoration: none;
}
.cdash_notifications_footer a:hover {
    color: var(--e-global-color-primary);
}
.cdash_header .profiles .profile-photo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cdash_header .profiles .profile-photo a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
}
.cdash_header .profiles .profile-photo a:hover img {
    opacity: 0.85;
}
.cdash_header .profiles .profile-photo img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
hr.cdash-divider {
    margin: 30px 0;
    border-color: #0000001F;
    border-width: 1px 0 0 0;
}
.cdash_main .banner {
    box-shadow: 0px 4px 40px 0px #E7C1641A;
    background: linear-gradient(254.46deg, #abb700 0%, #4C8A7B 120.26%);
    border-radius: 8px;
    padding: 30px 40px;
    margin-bottom: 30px;
}
.cdash_main .banner h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}
.cdash_main .banner p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

.cdash_main .banner .si_profile_views_counter {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px 16px;
}
.cdash_main .banner .si_profile_views_count {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.cdash_main .banner .si_profile_views_label {
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
}

.cdash_main .banner .si_profile_views_label a {
  color: var(--e-global-color-primary);
  transition: 0.3s;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.cdash_main .banner .si_profile_views_label a:hover {
    text-decoration: none;
}

.cdash_main .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.cdash_main .section-header h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin: 0;
}

.cdash_main .section-header .btn-view {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    background-color: var(--e-global-color-primary);
    border: none;
    padding: 18px 32px;
    border-radius: 16px;
    transition: all 200ms;
}

.cdash_main .section-header .btn-view:hover {
    background-color: var( --e-global-color-secondary );
    color: #fff;
}

.cdash_main table {
    width: 100%;
    border-collapse: separate;
    background: #FFFFFF99;
    border-radius: 16px;
    border: 1px solid var(--e-global-color-primary);
    overflow: hidden;
}
.cdash_main table thead {
    background: #e7f42836;
}
.cdash_main table thead th {
    border: none !important;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    font-weight: 500;
    text-align: start;
    padding: 18px;
}
.cdash_main table thead th:first-child {
    padding-left: 64px;
}
.cdash_main table tbody tr:not(tr:last-child) td {
    border-bottom: 1px solid #0000000F !important;
}
.cdash_main table tbody tr td {
    border: none !important;
    background: transparent !important;
    padding: 18px;
    align-content: space-around;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
}
.cdash_main table tbody tr td:first-child {
    padding-left: 32px;
}
.cdash_main table tbody tr td .row-name, .cdash_main table tbody tr td .date-cell {
    display: flex;
    align-items: center;
    gap: 16px;
	font-weight: 500;
}
.cdash_main table tbody tr td .date-cell  {
	gap: 10px;
}
.cdash_main table tbody tr td .date-cell svg {
	width: 20px;
	height: 20px;
}
.cdash_main table tbody tr td .row-name img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    flex: 0 0 auto;
}
.cdash_main table tbody tr td .action-btn {
    border: none;
    padding: 12px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: transparent;
}
.cdash_main table tbody tr td .action-btn svg {
    width: 24px;
    height: 24px;
}

.cdash_main table tbody tr td .action-btn.is-saved,
.cdash_main table tbody tr td .action-btn:hover {
    background: var(--e-global-color-primary);
    color: #111;
}

.cdash_main table tbody tr td .location-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cdash_main table tbody tr td .location-cell svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.si_candidate_row_link {
    text-decoration: none;
    color: inherit;
}
/* .si_candidate_row_link:hover strong {
    color: #4C8A7B;
} */
.si_candidate_row_text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.si_candidate_row_text strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.si_candidate_row_text small {
    font-size: 14px;
    font-weight: 400;
    color: #394149;
}

.si_employer_quick_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.si_employer_quick_card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 28px 24px;
  background: #FFFFFF;
  border: 1px solid var(--e-global-color-primary);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms, border-color 200ms;
  flex-direction: column;
}

.si_employer_quick_card.email-reply {
  grid-column: 1 / -1;
  align-items: stretch;
}

.si_employer_quick_card .acc-card__heading {
  font-weight: bold;
  color: #111;
  font-size: 24px;
}

.si_employer_quick_card .acc-btn {
  width: 250px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: var(--e-global-color-primary);
  color: #111;
  font-size: 18px;
  line-height: 1.4;
  padding: 15px 20px;
  border-radius: 14px;
  transition: 0.3s;
  font-weight: 600;
  border: 2px solid var(--e-global-color-primary);
  text-transform: capitalize;
}

.si_employer_quick_card .acc-btn svg {
  width: 18px;
}

.si_employer_quick_card .acc-btn:hover {
  background: #fff;
}

.si_employer_quick_card .acc-email-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}

.si_employer_quick_card #acc-copy-btn {
  width: auto;
}

.si_employer_quick_card #acc-email-body {
  font-size: 16px;
  line-height: 1.8;
  color: #111;
  white-space: pre-wrap;
}

.si_employer_quick_card img {
  display: block;
  width: auto;
  height: 400px;
  margin: 0 auto;
}

.si_employer_quick_card:hover {
    box-shadow: 0 8px 32px rgba(231, 193, 100, 0.18);
    border-color: var(--e-global-color-primary);
}

.si_employer_quick_card_icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(254.46deg, var(--e-global-color-primary) 0%, #4C8A7B 120.26%);
    color: #FFFFFF;
}

.si_employer_quick_card_icon svg {
    width: 28px;
    height: 28px;
}

.si_employer_quick_card_text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.si_employer_quick_card_text strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
}

.si_employer_quick_card_text span {
    font-size: 16px;
    line-height: 1.5;
    color: #394149;
}

.si_employer_candidates_table table thead th:last-child,
.si_employer_candidates_table table tbody td:last-child {
    text-align: center;
    width: 100px;
}

/* Candidates Dashboard Style */

/* Dashboard sub-views + UM embed */
body.si-account-no-header #site-header,
body.si-account-no-header .site-header,
body.si-account-no-header .elementor-location-header,
body.um-page-account #site-header,
body.um-page-account .site-header,
body.um-page-account .elementor-location-header {
	display: none !important;
}
body.si-account-no-header .site-header.dynamic-header,
body.um-page-account .site-header.dynamic-header {
	display: none !important;
}
.si-um-account-dashboard-wrap .um-account-side {
    display: none !important;
}
.si-um-account-dashboard-wrap .um-account-meta.uimob340-show,
.si-um-account-dashboard-wrap .um-account-meta.uimob500-show {
    display: none !important;
}
.si-um-account-main .um-account-tab {
    display: block;
}


/* UM account settings — match signup / employee-search form vibe */
.si-um-account-dashboard-wrap.um {
    margin-bottom: 0 !important;
    opacity: 1;
}
.si-um-account-dashboard-wrap .um-account-main.si-um-account-main {
    float: none;
    width: 100%;
    padding: 0;
    margin-top: 32px;
    max-width: 100%;
}
.si-um-account-dashboard-wrap .um-account-nav {
    display: none !important;
}
.si-um-account-main * {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.si-um-account-main .um-account-tab {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 30px 24px;
    margin-bottom: 24px;
    border: 1px solid #ddd;
}

.si-um-account-main .um-account-tab:last-child {
    margin-bottom: 0;
}
.si-um-account-main .um-account-heading {
    display: block !important;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #111111;
    margin: 0 0 24px !important;
    padding: 0;
    border: none;
}
.si-um-account-main .um-account-heading i {
    display: none;
}
.si-um-account-main .um-account-tab-general {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 20px;
}
.si-um-account-main .um-account-tab-general > .um-account-heading,
.si-um-account-main .um-account-tab-general > .um-field-user_login,
.si-um-account-main .um-account-tab-general > .um-field-user_email,
.si-um-account-main .um-account-tab-general > .um-col-alt,
.si-um-account-main .um-account-tab-general > p.um-notice {
    grid-column: 1 / -1;
}
.si-um-account-main .um-account-tab-password {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 20px;
}
.si-um-account-main .um-account-tab-password > .um-account-heading,
.si-um-account-main .um-account-tab-password > .um-col-alt,
.si-um-account-main .um-account-tab-password > p.um-notice {
    grid-column: 1 / -1;
}
.si-um-account-main .um-field {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}
.si-um-account-main .um-field .um-field-label {
    display: block;
    margin: 0 0 8px;
}
.si-um-account-main .um-field .um-field-label label {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #111111;
    margin: 0;
}
.si-um-account-main .um-field-area {
    width: 100%;
}
body.wp-singular .si-um-account-main .um-form-field,
body.wp-singular .si-um-account-main input[type="text"],
body.wp-singular .si-um-account-main input[type="email"],
body.wp-singular .si-um-account-main input[type="password"] {
    width: 100% !important;
    max-width: 100%;
    background: #ffffff;
    border: 1px solid #00000036 !important;
    border-radius: 8px !important;
    color: #111111;
    font-size: 15px;
    line-height: 1.5;
    padding: 21px 20px !important;
    height: auto;
    min-height: 48px;
    box-shadow: none !important;
    outline: none;
}
.si-um-account-main .um-form-field:focus,
.si-um-account-main input[type="text"]:focus,
.si-um-account-main input[type="email"]:focus,
.si-um-account-main input[type="password"]:focus {
    border-color: #4C8A7B !important;
    box-shadow: 0 0 0 1px rgba(76, 138, 123, 0.25) !important;
}
.si-um-account-main .um-form-field[disabled],
.si-um-account-main input[disabled] {
    background: #f8f8f8 !important;
    color: #666666;
    cursor: not-allowed;
}
.si-um-account-main .um-col-alt {
    margin: 4px 0 0 !important;
    padding: 0 !important;
}
.si-um-account-main .um-col-alt-b {
    padding-top: 4px !important;
}
.si-um-account-main .um-left {
    float: none;
    width: auto;
}
body.wp-singular .si-um-account-main .um-button,
body.wp-singular .si-um-account-main input[type="submit"].um-button {
    display: inline-block;
    width: auto !important;
    min-width: 0;
    border: none !important;
    border-radius: 18px !important;
    padding: 19px 40px !important;
    background: var(--e-global-color-primary) !important;
    color: #111 !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 200ms ease;
    box-shadow: none !important;
}

.si-um-account-main .um-button:hover,
.si-um-account-main input[type="submit"].um-button:hover,
body.wp-singular .si-um-account-main .um-button:hover,
body.wp-singular .si-um-account-main input[type="submit"].um-button:hover {
    background: var( --e-global-color-secondary ) !important;
    color: #ffffff !important;
}
.si-um-account-main p.um-notice {
    margin: 0 !important;
    padding: 12px 16px !important;
    border-radius: 8px;
    border: 1px solid #4C8A7B;
    background: #4C8A7B14;
    color: #111111;
    font-size: 15px;
    line-height: 1.5;
}
.si-um-account-main p.um-notice.err {
    border-color: #c0392b;
    background: #c0392b14;
}
.cdash_main > .si-account-update-notice,
.si-account-update-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 24px;
    padding: 16px 18px;
    border: 1px solid rgba(76, 138, 123, 0.28);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(76, 138, 123, 0.12) 0%, rgba(231, 193, 100, 0.14) 100%);
    box-shadow: 0 8px 24px rgba(76, 138, 123, 0.08);
    color: #1a1a1a;
}
.si-account-update-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: #4C8A7B;
    color: #ffffff;
}
.si-account-update-notice__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}
.si-account-update-notice__text {
    margin: 0;
    flex: 1 1 auto;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: #1a1a1a;
}
.si-account-update-notice__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #6a737c;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}
.si-account-update-notice__close:hover,
.si-account-update-notice__close:focus {
    background: rgba(0, 0, 0, 0.06);
    color: #111111;
    outline: none;
}
.si-um-account-main .um-field-password .um-toggle-password {
    color: #666666;
}


.cdash_empty_state,
.cdash_notice {
    background: #FFFFFF;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 12px;
    padding: 24px;
}

.cdash_notice-success {
    border-color: #4C8A7B;
    background: #4C8A7B14;
}

body .cdash_notice {
  margin-bottom: 25px;
}

.cdash_section-header h3 {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px;
    color: #000000;
    line-height: 1.2;
}

/* Employer Access Plans */
.si_plans_section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.si_plans_active_notice {
    display: flex;
    align-items: center;
    gap: 12px;
}
.si_plans_active_notice svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: #4C8A7B;
}
.si_plans_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: end;
}
.si_plan_card {
    position: relative;
    background: #ffffff;
    border: 1px solid #00000012;
    border-radius: 24px;
    padding: 32px 28px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.si_plan_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}
.si_plan_card.is-featured {
    min-height: 340px;
    padding-top: 40px;
    border: none;
    background: linear-gradient(180deg, var(--e-global-color-primary) 0%, #4C8A7B 100%);
    box-shadow: 0 20px 50px rgba(76, 138, 123, 0.28);
    color: #ffffff;
}
.si_plan_card.is-featured:hover {
    box-shadow: 0 24px 56px rgba(76, 138, 123, 0.34);
}
.si_plan_card.is-active {
    border-color: #4C8A7B;
    box-shadow: 0 12px 40px rgba(76, 138, 123, 0.18);
}
.si_plan_ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 100px;
    line-height: 1;
}
.si_plan_card_body {
    flex: 1;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #00000014;
}
.si_plan_card.is-featured .si_plan_card_body {
    border-bottom-color: rgba(255, 255, 255, 0.35);
}
.si_plan_name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 16px;
}
.si_plan_card.is-featured .si_plan_name {
    color: #ffffff;
    padding-right: 100px;
}
.si_plan_price {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0 0 14px;
}
.si_plan_card.is-featured .si_plan_price {
    color: #ffffff;
}
.si_plan_tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #394149;
    margin: 0;
    max-width: 240px;
}
.si_plan_card.is-featured .si_plan_tagline {
    color: rgba(255, 255, 255, 0.92);
}
.si_plan_card_footer {
    margin-top: auto;
}
.si_plan_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 14px;
    background: #FDF3D6;
    border: 1px solid var(--e-global-color-primary);
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: background 200ms ease, border-color 200ms ease;
}
.si_plan_cta:hover {
    background: #f5e5b8;
    border-color: var( --e-global-color-secondary );
    color: #000000;
}
.si_plan_cta--upgrade {
    background: #4C8A7B;
    border-color: #4C8A7B;
    color: #ffffff;
}
.si_plan_cta--upgrade:hover {
    background: #3d7366;
    border-color: #3d7366;
    color: #ffffff;
}
.si_plan_cta--downgrade {
    background: transparent;
    border-color: #00000029;
    color: #394149;
}
.si_plan_cta--downgrade:hover {
    background: #00000008;
    border-color: #00000040;
    color: #111111;
}
.si_plan_card.is-featured .si_plan_cta {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}
.si_plan_card.is-featured .si_plan_cta:hover {
    background: #f5f5f5;
    border-color: #f5f5f5;
    color: #000000;
}
.si_plan_card.is-featured .si_plan_cta--upgrade {
    background: #ffffff;
    border-color: #ffffff;
    color: #4C8A7B;
}
.si_plan_card.is-featured .si_plan_cta--upgrade:hover {
    background: #f2f2f2;
    border-color: #f2f2f2;
    color: #3d7366;
}
.si_plan_card.is-featured .si_plan_cta--downgrade {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
}
.si_plan_card.is-featured .si_plan_cta--downgrade:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
}
.si_plan_card.is-featured .si_plan_cta--subscribe {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}
.si_plans_manage_note {
    font-size: 14px;
    line-height: 1.6;
    color: #394149;
    margin: 0;
    text-align: center;
}
.si_plans_manage_note a {
    color: #4C8A7B;
    font-weight: 600;
    text-decoration: none;
}
.si_plans_manage_note a:hover {
    text-decoration: underline;
}
.si_plans_billing_wrap {
    margin-top: 18px;
    display: grid;
    gap: 18px;
}
.si_billing_card {
    background: #ffffff;
    border: 1px solid #eaedf2;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.si_plans_billing_section .section-header {
    margin-bottom: 10px;
}
.si_plans_billing_section .cdash_table {
    margin-top: 0;
}
.si_plans_billing_section .cdash_table table {
    border-collapse: separate;
    border-spacing: 0;
}
.si_plans_billing_section .cdash_table th {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #6a737c;
}
.si_plans_billing_section .cdash_table td {
    vertical-align: middle;
}
.si_other_subscriptions_title {
    margin: 28px 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2933;
}
.si_other_subscriptions_table table {
    min-width: 560px;
}
.si_other_subscriptions_table table thead th,
.si_other_subscriptions_table table thead th:first-child {
    padding: 14px 16px;
    white-space: nowrap;
}
.si_other_subscriptions_table table tbody td,
.si_other_subscriptions_table table tbody td:first-child {
    padding: 14px 16px;
    font-size: 14px;
}
.si_other_subscriptions_table table tbody td:first-child {
    min-width: 210px;
    font-weight: 500;
}
.si_subscription_details_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border: 1px solid #4C8A7B;
    border-radius: 9px;
    background: #ffffff;
    color: #4C8A7B;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}
.si_subscription_details_btn:hover,
.si_subscription_details_btn:focus {
    background: #4C8A7B;
    color: #ffffff;
    outline: none;
}
body.si-subscription-modal-open {
    overflow: hidden;
}
.si_subscription_modal[hidden] {
    display: none;
}
.si_subscription_modal {
    position: fixed;
    z-index: 100000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.si_subscription_modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(3px);
}
.si_subscription_modal__dialog {
    position: relative;
    width: min(680px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 28px;
    border: 1px solid rgba(76, 138, 123, 0.2);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}
.si_subscription_modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaedf2;
}
.si_subscription_modal__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #4C8A7B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.si_subscription_modal__header h3 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.35;
}
.si_subscription_modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex: 0 0 40px;
    padding: 0 !important;
    border: 1px solid #e1e7e5 !important;
    border-radius: 12px !important;
    background: #f4f8f7 !important;
    color: #4C8A7B !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.si_subscription_modal__close svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.si_subscription_modal__close:hover,
.si_subscription_modal__close:focus {
    border-color: #4C8A7B !important;
    background: #4C8A7B !important;
    color: #ffffff !important;
    outline: none !important;
    transform: rotate(90deg);
}
.si_subscription_modal__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 22px 0 0;
    border: 1px solid #eaedf2;
    border-radius: 12px;
    overflow: hidden;
}
.si_subscription_modal__details > div {
    padding: 15px 17px;
    border-bottom: 1px solid #eaedf2;
}
.si_subscription_modal__details > div:nth-child(odd) {
    border-right: 1px solid #eaedf2;
}
.si_subscription_modal__details > div:nth-last-child(-n+2) {
    border-bottom: none;
}
.si_subscription_modal__details dt {
    margin-bottom: 5px;
    color: #6a737c;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.si_subscription_modal__details dd {
    margin: 0;
    color: #1f2933;
    font-size: 14px;
    font-weight: 500;
}
.si_subscription_modal__actions {
    margin-top: 22px;
}
.si_subscription_modal__actions > span {
    display: block;
    margin-bottom: 10px;
    color: #1f2933;
    font-size: 14px;
    font-weight: 600;
}
.si_subscription_modal__actions .woocommerce-button,
.si_subscription_modal__actions .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px 6px 0;
    padding: 8px 11px;
    border: 1px solid #d7dde5;
    border-radius: 9px;
    background: #ffffff;
    color: #1f2933;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}
.si_subscription_modal__actions .cancel {
    color: #8f1d2f;
    background: #fff5f7;
    border-color: #f7d6de;
}
.si_subscription_modal__actions .change_plan {
    color: #ffffff;
    background: #4C8A7B;
    border-color: #4C8A7B;
}
.si_subscription_modal__actions .change_plan:hover,
.si_subscription_modal__actions .change_plan:focus {
    color: #ffffff;
    background: #3f7468;
    border-color: #3f7468;
}
@media (max-width: 640px) {
    .si_subscription_modal {
        padding: 14px;
    }
    .si_subscription_modal__dialog {
        max-height: calc(100vh - 28px);
        padding: 20px;
        border-radius: 14px;
    }
    .si_subscription_modal__details {
        grid-template-columns: 1fr;
    }
    .si_subscription_modal__details > div,
    .si_subscription_modal__details > div:nth-child(odd),
    .si_subscription_modal__details > div:nth-last-child(-n+2) {
        border-right: none;
        border-bottom: 1px solid #eaedf2;
    }
    .si_subscription_modal__details > div:last-child {
        border-bottom: none;
    }
}
.si_plans_empty_state {
    margin: 0;
    color: #6a737c;
    font-size: 14px;
}
.si_subscriptions_list {
    display: grid;
    gap: 24px;
}
.si_subscription_block .shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0 0 20px;
    border: 1px solid #eaedf2;
    border-radius: 12px;
    overflow: hidden;
}
.si_subscription_block .shop_table:last-child {
    margin-bottom: 0;
}
.si_subscription_block .shop_table th,
.si_subscription_block .shop_table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eaedf2;
    font-size: 14px;
    color: #1f2933;
    vertical-align: top;
}
.si_subscription_block .shop_table tr:last-child th,
.si_subscription_block .shop_table tr:last-child td {
    border-bottom: none;
}
.si_subscription_block .shop_table.subscription_details td:first-child {
    width: 38%;
    font-weight: 600;
    color: #6a737c;
    background: #f8fafb;
}
.si_subscription_block .shop_table.order_details thead th {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #6a737c;
    background: #f8fafb;
}
.si_subscription_block h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2933;
}
.si_subscription_block .woocommerce-button,
.si_subscription_block .button,
.si_subscription_block .wcs-switch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 8px 0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #d7dde5;
    background: #ffffff;
    color: #1f2933;
}
.si_subscription_block .woocommerce-button.cancel,
.si_subscription_block .button.cancel {
    color: #8f1d2f;
    background: #fff5f7;
    border-color: #f7d6de;
}
.si_subscription_block .woocommerce-button.change_plan,
.si_subscription_block .button.change_plan {
    color: #ffffff;
    background: #4C8A7B;
    border-color: #4C8A7B;
}
.si_subscription_block .woocommerce-button.change_plan:hover,
.si_subscription_block .woocommerce-button.change_plan:focus,
.si_subscription_block .button.change_plan:hover,
.si_subscription_block .button.change_plan:focus {
    color: #ffffff;
    background: #3f7468;
    border-color: #3f7468;
}
.si_status_badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}
.si_status_badge--active,
.si_status_badge--complete,
.si_status_badge--confirmed {
    color: #13643e;
    background: #e8f7ef;
}
.si_status_badge--pending,
.si_status_badge--pending-cancel,
.si_status_badge--on-hold {
    color: #945d00;
    background: #fff4dc;
}

.si_status_badge--failed,
.si_status_badge--cancelled,
.si_status_badge--expired {
    color: #8f1d2f;
    background: #fdecef;
}
.si_table_action_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .2s ease;
}
.si_table_action_btn--cancel {
    color: #8f1d2f;
    background: #fff5f7;
    border-color: #f7d6de;
}
.si_table_action_btn--cancel:hover {
    color: #7a0d21;
    background: #ffecef;
}
.si_table_action_btn--renew {
    color: #ffffff;
    background: #4C8A7B;
    border-color: #4C8A7B;
}
.si_table_action_btn--renew:hover {
    background: #3d7366;
    border-color: #3d7366;
}
.si_table_action_text {
    font-size: 13px;
    font-weight: 600;
    color: #7a8087;
}
.si_plans_account_links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.si_plans_account_links_label {
    width: 100%;
    margin: 0 0 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6a737c;
}
.si_plans_account_links .si_plan_cta {
    min-width: 160px;
}
.si_plan_status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 14px;
    background: #4C8A7B14;
    border: 1px solid #4C8A7B;
    color: #4C8A7B;
    font-size: 16px;
    font-weight: 600;
}
.si_plan_card.is-featured .si_plan_status {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.si_plan_btn,
.si_save_candidate_btn:not(.employee-badge),
.si_download_resume_btn,
.employee-buttons .si_save_btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    background: var(--e-global-color-primary);
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    text-decoration: none;
    cursor: pointer;
}

.si_plan_btn:hover,
.si_save_candidate_btn:not(.employee-badge):hover,
.si_download_resume_btn:hover,
.employee-buttons .si_save_btn:hover {
    background-color: var( --e-global-color-secondary );
    color: #fff;
}

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

.si_favorite_card {
  position: relative;
  background: #fff;
  border: 1px solid #00000021;
  border-radius: 12px;
  padding: 20px 70px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.si_favorite_card .card-left {
  flex: 0 0 72px;
  width: 72px;
}

.si_favorite_card a {
  display: block;
}

.si_favorite_card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    display: block;
}

.si_favorite_card .card-right {
  text-align: right;
  padding-left: 20px;
}

.si_remove_shortlist_btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000021;
    border-radius: 50%;
    background: #fff;
    color: #6a737c;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
	padding:0 !important;
}

.si_remove_shortlist_btn svg {
    width: 14px;
    height: 14px;
    display: block;
    flex-shrink: 0;
}

.si_remove_shortlist_btn svg path {
    fill: currentColor;
}

.si_remove_shortlist_btn:hover,
.si_remove_shortlist_btn:focus {
    color: #c0392b;
    border-color: #c0392b;
    background: #fff5f5;
    outline: none;
}

.si_remove_shortlist_btn:disabled {
    opacity: 0.55;
    cursor: wait;
}

.si_messages_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.si_message_item {
    background: #fff;
    border: 1px solid #00000021;
    border-radius: 12px;
    padding: 16px 20px;
}

.si_message_item.is-sent {
    border-color: var(--e-global-color-primary);
}

.si_message_meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.si_compose_message textarea,
#si_modal_message_body {
    width: 100%;
    border: 1px solid #00000036;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
}
.si_message_modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.si_message_modal_inner {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 520px;
    position: relative;
}
.si_message_modal_close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}
.si_bm_messages_wrap {
    min-height: 520px;
}
.si_profile_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.si_upgrade_notice {
    margin: 0;
}
.employee-buttons .si_save_btn {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 12px 20px;
}
.si_saved_preview {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}
.si_saved_preview li {
    margin-bottom: 8px;
}
.si_site_name {
    font-size: 24px;
    font-weight: 600;
}
/* Candidates Dashboard Style */

.list-view .filter-results-grid {
  grid-template-columns: repeat(1, 1fr);
}

.list-view .filter-results-grid .single-employee-card {
  flex-direction: row;
}

.list-view .filter-results-grid .employee-card-header {
  border-radius: 12px 0px 0px 12px;
  justify-content: center;
  flex: 0 0 30%;
}

.list-view .filter-results-grid .employee-buttons {
  border-top: 1px solid #dedede;
  padding-top: 20px;
  justify-content: flex-end;
}

.list-view .filter-results-grid .employee-card-footer {
  flex: 1 1 auto;
}

.list-view .filter-results-grid .employee-buttons .view-profile-btn {
  flex: 0 0 auto;
}

.grid-switcher {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.grid-switcher svg {
  width: 20px;
  height: auto;
}

.grid-switcher svg path {fill: #fff;}

.grid-switcher > div {
  background: var(--e-global-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
}

.grid-switcher > div:hover, .grid-switcher .active {
  background: var(--e-global-color-secondary);
}

.employee-search-form .single-field .select2-selection__choice {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  background-color: rgb(113 137 0 / 5%) !important;
  border: 1px solid #718900 !important;
  border-radius: 50px !important;
  padding: 4px 8px !important;
  margin-top: 1px !important;
}

.employee-search-form .single-field .select2-selection__choice__remove {
  line-height: 1;
  position: relative;
  top: 1px;
}

.employee-search-form .single-field .select2-selection {
  border: 1px solid #00000036 !important;
  border-radius: 8px;
  padding: 4px 6px 0px;
}

.employee-search-form .single-field  .select2-search__field {
  font-size: 14px !important;
  max-width: 175px;
}

.employee-search-form .single-field  .select2-search__field::placeholder {
  color: #111;
}

.page-id-18 .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #718900;
}

.page-id-18 .select2-container--default .select2-results__option {
  font-size: 14px;
  line-height: 1.4;
}



/* 
 * Candidate row — modern spreadsheet style
 */

.employee-filter-table {
  border: 1px solid #D6D6C8;
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0px;
}

.employee-row {
  display: grid;
  /* grid-template-columns: 1.5fr 1.2fr 1.2fr 1.7fr 0.7fr 0.9fr 1.0fr 1.6fr 1fr 0.7fr 0.7fr 0.8fr 1fr; */
  /* grid-template-columns: 1.2fr 1.1fr 1.1fr 1.5fr 0.7fr 0.9fr 0.7fr 0.7fr 0.7fr 0.7fr 0.9fr; */
  grid-template-columns: 1.2fr 1.5fr 1.1fr 1.5fr 0.9fr 0.7fr 0.7fr 0.7fr 0.7fr 0.9fr;
  align-items: stretch;
  /* min-width: 1920px; */
}

.employee-row:not(:last-child) {
  border-bottom: 1px solid #E4E4DC;
}

.employee-row:not(.employee-row--header):nth-child(even) {
  background: #FAFAF7;
}

.employee-row:not(.employee-row--header) {
  background: #fff;
  transition: background 0.12s ease;
}

.employee-row:not(.employee-row--header):hover {
  background: #EEF3D8;
}

.employee-row--header {
  background: #efefef;
  font-weight: 600;
  color: #6B6B63;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.employee-row-cell {
  padding: 10px 10px;
  border-right: 1px solid #E4E4DC;
  display: flex;
  align-items: center;
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.4;
  text-transform: capitalize;
  text-align: center;
  justify-content: center;
  position: relative;
  word-break: break-word;
}

.employee-row-cell:last-child {
  border-right: none;
}

.employee-row--header .employee-row-cell {
  line-height: 1.2;
  font-size: 13px;
}

/* Candidate cell: avatar + name + job title + favorite */
.employee-row-cell--candidate {
  gap: 10px;
  text-align: left;
  justify-content: flex-start;
}

.employee-row-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.employee-row-avatar-fallback {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #A9BB4A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.employee-row-avatar img {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.employee-row-identity {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.employee-row-name {
  font-weight: 600;
}


/* Contact cell */
.employee-row-cell--contact {
  gap: 8px;
  flex-direction: column;
}

.employee-row-cell--contact a {
  text-transform: none;
  background: var( --e-global-color-secondary );
  color: #fff;
  padding: 10px 8px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px;
  width: 100%;
  font-weight: 600;
}

.employee-row-cell--contact a:hover {
    color: #fff;
    background: #1A1A1A;
}

.employee-row-view-btn {
  background: var( --e-global-color-primary );
  color: #1A1A1A;
  font-weight: 600;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.12s ease;
  line-height: 1.4;
  width: 100%;
}

.employee-row-view-btn:hover {
  filter: brightness(0.95);
  background: var( --e-global-color-secondary );
  color: #fff;
}

/* Favorite/bookmark button, if si_render_candidate_favorite_button() outputs
   an element inside .employee-row-cell--candidate, pin it to the right */
.employee-row-cell--candidate > :last-child:not(.employee-row-identity) {
  margin-left: auto;
}

.cdash_main .employee-row-cell .um-download-resume,
.employee-row-cell .um-download-resume {
  box-shadow: none !important;
  background: var( --e-global-color-secondary );
  width: auto;
  height: auto;
  margin: 0 auto;
  display: inline-block;
  border-radius: 50px !important;
  padding: 9px 9px !important;
  transition: 0.3s;
}

.employee-row-cell .um-download-resume img {
  display: inline-block;
  width: 18px;
}

.cdash_main .employee-row-cell .um-download-resume:hover,
.employee-row-cell .um-download-resume:hover {
  background: #111;
}

.employee-row-cell #btn-candidate-exclude {
  padding: 0;
  box-shadow: none;
  background: #8b00000f;
  border: 1px solid darkred;
  transition: 0.3s;
  position: relative;
  width: 36px;
  height: 36px;
}

.employee-row-cell #btn-candidate-exclude svg {
  width: 18px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.employee-row-cell #btn-candidate-exclude.excluded svg {
  width: 12px;
}

.employee-row-cell #btn-candidate-exclude.loading svg {
  display: none !important;
}

.employee-row-cell #btn-candidate-exclude svg path {
  fill: darkred;
}

.employee-row-cell #btn-candidate-exclude.excluded,
.employee-row-cell #btn-candidate-exclude:hover {
  background: darkred;
}

.employee-row-cell #btn-candidate-exclude.excluded svg path,
.employee-row-cell #btn-candidate-exclude:hover svg path {
  fill: #fff;
}

.employee-row-cell #btn-candidate-exclude.excluded .icon-times,
.employee-row-cell #btn-candidate-exclude .icon-checkmark {
  display: none;
}

.employee-row-cell #btn-candidate-exclude.excluded .icon-checkmark {
  display: block;
}

.employee-row-cell #btn-candidate-exclude.loading:before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 4px solid darkred;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.employee-row-cell #btn-candidate-exclude.loading {
  border: 0;
  pointer-events: none;
  background: transparent;
}

.cdash_main .employee-filter-table {
  overflow-x: auto;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 0px;
}

.cdash_main .employee-row {
    /* min-width: 1920px; */
    min-width: 1366px;
}

#um_field_686_mobile_number label {
  text-transform: capitalize;
}

.um .um-account-tab-general #um_field_0_first_name {
  display: none;
}

.um-account-tab.um-account-tab-acc-deactivate {
  margin-top: 50px;
  border-color: darkred;
  background-color: #8b000017;
}

.um-account-tab-acc-deactivate a,
.um-account-tab-acc-deactivate .um-button {
  display: inline-block;
  width: auto !important;
  min-width: 0;
  border: none !important;
  border-radius: 18px !important;
  padding: 19px 40px !important;
  background: darkred;
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 300ms ease;
  box-shadow: none !important;
}

.um-account-tab-acc-deactivate a:hover {
  background: #000;
}

.um-account-tab.um-account-tab-acc-deactivate div#um_field_0_single_user_password {
  margin: 20px 0px 20px !important;
}

body .um .si-um-account-main .um-account-tab-acc-deactivate .um-left .um-button {
  background: darkred !important;
  color: #fff !important;
}

.si-checkout-shell .wc-block-components-address-card__edit {
  border: 0 !important;
  border-radius: 50px !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: none !important;
  background: linear-gradient(254.46deg, var(--e-global-color-primary) 0%, #4C8A7B 120.26%);
  display: flex;
  align-items: center;
  line-height: 1;
  height: auto;
  padding: 12px 20px;
}

#candidates_search_form .single-field.location {
  position: relative;
}

#candidates_search_form .single-field.location svg {
  width: 31px;
  height: auto;
  background: #c9c9c9;
  padding: 8px 8px 9px 8px;
  position: absolute;
  bottom: 1px;
  left: 1px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  fill: var( --e-global-color-secondary );
  z-index: 99;
  display: none;
}


#candidates_search_form .single-field.location input {
  padding-left: 40px;
}

body .pac-container {
  border: 1px solid #d9d9d9;
}

.si_employer_quick_card #acc-email-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.si_employer_quick_card #acc-email-body a:hover {
  color: var( --e-global-color-secondary );
}