.create-acount-page,
.forget-acount-page {
  background-color: var(--white-color);
  font-family: var(--font-inter);
  overflow: hidden;
}

.create-account-wrap {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(460px, 52%);
}

.create-account-content {
  width: min(536px, 100% - 48px);
  justify-self: end;
  align-self: center;
  margin-right: clamp(40px, 5vw, 86px);
  padding: 0 0 60px 0;
}

.create-account-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.create-account-heading h1 {
  color: #18191C;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin: 0 0 8px;
}

.create-account-heading p {
  color: #5E6670;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.create-account-heading a {
  color: var(--primary-color1);
  font-weight: 500;
}

.create-account-role {
  position: relative;
  width: 150px;
  flex: 0 0 150px;
}

.create-account-role select {
  width: 100%;
  height: 48px;
  appearance: none;
  border: 1px solid #E4E5E8;
  border-radius: 6px;
  background-color: var(--white-color);
  color: #464D61;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 42px 0 17px;
  outline: none;
}

.create-account-role .nice-select {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  border: 1px solid #E4E5E8;
  border-radius: 6px;
  background-color: var(--white-color);
  padding: 0 42px 0 17px;
  line-height: 20px;
}

.create-account-role .nice-select::after {
  display: none;
}

.create-account-role .nice-select span {
  color: #464D61;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

.create-account-role .nice-select .list {
  min-width: 100%;
  left: 0;
}

.create-account-role i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #767F8C;
  font-size: 20px;
  pointer-events: none;
}

.create-account-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.create-account-form.d-none {
  display: none;
}

.create-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.create-account-form input:not([type=checkbox]) {
  width: 100%;
  height: 48px;
  border: 1px solid #E4E5E8;
  border-radius: 5px;
  color: #18191C;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 11px 17px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.create-account-form input:not([type=checkbox]):focus {
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(var(--primary-color1-opc), 0.14);
}

.create-account-form input:not([type=checkbox])::placeholder {
  color: #767F8C;
  opacity: 1;
}

.create-account-password {
  position: relative;
}

.create-account-password input {
  padding-right: 52px;
}

.create-account-password button {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: transparent;
  color: #18191C;
  font-size: 20px;
  padding: 0;
}

.create-account-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #767F8C;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.create-account-terms input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  appearance: none;
  border: 1px solid #9DC1EB;
  border-radius: 3px;
  background-color: var(--white-color);
  display: grid;
  place-content: center;
}

.create-account-terms input::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform 0.12s ease;
  background-color: var(--primary-color1);
  border-radius: 2px;
}

.create-account-terms input:checked::before {
  transform: scale(1);
}

.create-account-terms a {
  color: var(--primary-color1);
  font-weight: 500;
}

.create-account-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.create-account-options > a {
  color: var(--primary-color1);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.primary-btn1.create-account-submit {
  width: 100%;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 4px;
  background-color: var(--primary-color1);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
  overflow: hidden;
}

.create-account-submit i {
  font-size: 24px;
  line-height: 1;
}

.create-account-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.create-account-social > span {
  color: #767F8C;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.create-account-social__buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.create-account-social__button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #E4E5E8;
  border-radius: 4px;
  background-color: var(--white-color);
  color: #474C54;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.create-account-social__button:hover {
  color: #474C54;
}

.create-account-social__button i {
  color: #dc8514;
  font-size: 20px;
}

.create-account-social__button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.create-account-showcase {
  position: relative;
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  padding: 64px clamp(40px, 5vw, 98px);
  color: var(--white-color);
  overflow: hidden;
  background-image: url("../img/home/banner-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}

.create-account-showcase__inner {
  width: min(560px, 100%);
  margin-top: 130px;
}

.create-account-showcase__inner h2 {
  color: var(--white-color);
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  margin: 0 0 50px;
}

.create-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.create-account-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.create-account-stat span {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: 32px;
  margin-bottom: 16px;
}

.create-account-stat strong {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.create-account-stat small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 1399px) {
  .create-account-content {
    margin-right: 10px;
  }

  .create-account-showcase__inner {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .create-account-showcase__inner h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 991px) {
  .create-acount-page,
  .forget-acount-page {
    overflow: visible;
  }

  .create-account-wrap {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .create-account-content {
    justify-self: center;
    margin-right: 0;
  }

  .create-account-showcase {
    display: none;
  }
}

@media (max-width: 767px) {
  .create-account-content {
    width: calc(100% - 32px);
  }

  .create-account-heading {
    flex-direction: column;
  }

  .create-account-options {
    align-items: flex-start;
    flex-direction: column;
  }

  .create-account-role {
    width: 100%;
    flex-basis: auto;
  }

  .create-account-grid,
  .create-account-social__buttons,
  .create-account-stats {
    grid-template-columns: 1fr;
  }
}

.header-topbar-wrap header.style-1 .nav-right .home-two-auth-area {
  gap: 12px;
  margin-left: 4px;
}

.header-topbar-wrap header.style-1 .home-two-icon-btn,
.header-topbar-wrap header.style-1 .home-two-profile-btn {
  /* border: 1px solid #E4E5E8; */
  background-color: transparent;
  /* color: #464D61; */
}

.header-topbar-wrap header.style-1 .home-two-icon-btn {
  position: relative;
  margin-right: 12px;
}

.header-topbar-wrap header.style-1 .home-two-icon-btn svg {
  fill: none;
  stroke: #18191C;
}
.home-two-notify-dot {
    position: absolute;
    top: 3px;
    right: 1px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #E05151;
    border: 2px solid #fff;
}
/* .header-topbar-wrap header.style-1 .home-two-icon-btn::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E05151;
} */

/* .header-topbar-wrap header.style-1 .home-two-icon-btn:hover,
.header-topbar-wrap header.style-1 .home-two-profile-btn:hover {
  border-color: var(--primary-color1);
  color: var(--primary-color1);
} */

.header-topbar-wrap header.style-1 .home-two-icon-btn.dropdown-toggle::after {
  display: none;
}

.header-topbar-wrap header.style-1 .home-two-count {
  position: absolute;
  top: -5px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white-color);
  border-radius: 50%;
  background-color: var(--primary-color1);
  color: var(--white-color);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 0 4px;
}

.header-topbar-wrap header.style-1 .home-two-profile-btn {
  width: 48px;
  height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 50%;
  padding: 0;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.header-topbar-wrap header.style-1 .home-two-profile-btn::after {
  display: none;
}

.header-topbar-wrap header.style-1 .home-two-profile-btn img {
  border-radius: 50%;
  object-fit: cover;
  min-width: 48px;
  max-width: 48px;
  height: 48px;
}


.header-topbar-wrap header.style-1 .home-two-profile-btn span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-topbar-wrap header.style-1 .home-two-profile-btn strong {
  color: #18191C;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.header-topbar-wrap header.style-1 .home-two-profile-btn small {
  color: #767F8C;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.header-topbar-wrap header.style-1 .home-two-profile-btn i {
  color: #767F8C;
  font-size: 14px;
}

.header-topbar-wrap header.style-1 .home-two-dropdown-menu {
  min-width: 300px;
  border: 1px solid #E4E5E8;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin-top: 16px;
  overflow: hidden;
}

.header-topbar-wrap header.style-1 .home-two-dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #F1F2F4;
  padding: 14px 16px;
}

.header-topbar-wrap header.style-1 .home-two-dropdown-head strong {
  color: #18191C;
  font-size: 15px;
  font-weight: 600;
}

.header-topbar-wrap header.style-1 .home-two-dropdown-head span {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--primary-color1-opc), 0.12);
  color: var(--primary-color1);
  font-size: 12px;
  font-weight: 600;
}

.header-topbar-wrap header.style-1 .home-two-notification-list {
  max-height: 308px;
  overflow-y: auto;
}

.header-topbar-wrap header.style-1 .home-two-notification-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #F1F2F4;
  padding: 13px 16px;
  text-decoration: none;
}

.header-topbar-wrap header.style-1 .home-two-notification-item:hover {
  background-color: #F8FAFC;
}

.header-topbar-wrap header.style-1 .home-two-notification-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--primary-color1-opc), 0.1);
  color: var(--primary-color1);
}

.header-topbar-wrap header.style-1 .home-two-notification-item strong {
  display: block;
  color: #18191C;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.header-topbar-wrap header.style-1 .home-two-notification-item small {
  display: block;
  color: #767F8C;
  font-size: 12px;
  line-height: 18px;
  margin-top: 2px;
}

.header-topbar-wrap header.style-1 .home-two-empty-state {
  color: #767F8C;
  font-size: 14px;
  line-height: 22px;
  padding: 24px 16px;
  text-align: center;
}

.header-topbar-wrap header.style-1 .home-two-dropdown-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: #F8FAFC;
  padding: 12px 16px;
}

.header-topbar-wrap header.style-1 .home-two-dropdown-actions a {
  color: var(--primary-color1);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.header-topbar-wrap header.style-1 .home-two-profile-menu {
  min-width: 230px;
  padding: 8px;
}

.header-topbar-wrap header.style-1 .home-two-profile-menu a,
.header-topbar-wrap header.style-1 .home-two-profile-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background-color: transparent;
  color: #464D61;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 10px 12px;
  text-align: left;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-topbar-wrap header.style-1 .home-two-profile-menu a:hover,
.header-topbar-wrap header.style-1 .home-two-profile-menu button:hover {
  background-color: rgba(var(--primary-color1-opc), 0.1);
  color: var(--primary-color1);
}

.header-topbar-wrap header.style-1 .home-two-profile-menu i {
  width: 18px;
  flex: 0 0 18px;
  color: inherit;
  font-size: 17px;
  line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.header-topbar-wrap header.style-1,
.header-topbar-wrap header.style-1 .container-fluid,
.header-topbar-wrap header.style-1 .language-area {
  overflow: visible;
}

.about-img-section .container-fluid.one {
    max-width: 1544px;
}

.header-topbar-wrap header.style-1 .language-area {
  z-index: 1001;
}

.header-topbar-wrap header.style-1 .language-area .language-list.active {
  display: block;
  transform: scaleY(1) translateX(0);
  opacity: 1;
  visibility: visible;
}

.header-topbar-wrap header.style-1 .language-area .language-list {
  top: calc(100% + 12px);
  left: 0;
}

.header-topbar-wrap header.style-1 .language-area .language-list a {
  text-decoration: none;
}

.header-topbar-wrap header.style-1 .language-area .language-list a.active {
  color: var(--primary-color1);
}

.header-topbar-wrap header.style-1 .home-two-mobile-actions {
  gap: 10px;
  margin-right: 12px;
  position: relative;
  z-index: 1002;
}

.header-topbar-wrap header.style-1 .home-two-mobile-header-language .language-btn {
  padding: 0 10px;
}


.header-topbar-wrap header.style-1 .home-two-mobile-header-language .language-btn span {
  font-size: 12px;
  font-weight: 600;
}

.header-topbar-wrap header.style-1 .home-two-mobile-header-language .language-list {
  top: calc(100% + 8px);
  left: auto;
  right: 0;
  min-width: 170px;
}
@media (min-width: 576px) {
  .header-topbar-wrap header.style-1 .home-two-mobile-header-language .language-list {
    min-width: 110px;
    width: 110px;
  }
}

.header-topbar-wrap header.style-1 .home-two-mobile-notification .home-two-dropdown-menu {
  right: -48px !important;
}

@media (min-width: 992px) {
  .header-topbar-wrap header.style-1 .home-two-mobile-actions {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .header-topbar-wrap header.style-1 .home-two-mobile-actions {
    gap: 7px;
    margin-right: 8px;
  }

  .header-topbar-wrap header.style-1 .home-two-mobile-header-language .language-btn {
    padding: 0 8px;
  }

  .header-topbar-wrap header.style-1 .home-two-mobile-notification .home-two-icon-btn {
    width: 34px;
    height: 34px;
  }
}

.header-topbar-wrap header.style-1 .main-menu .home-two-mobile-language {
  display: none;
}

@media (max-width: 991px) {
  .header-topbar-wrap header.style-1 .main-menu .home-two-mobile-language {
    display: flex;
    width: 100%;
    margin: 12px 0 20px;
    padding: 0 5px;
    position: relative;
    z-index: 5;
  }

  .header-topbar-wrap header.style-1 .main-menu .home-two-mobile-language .language-btn {
    min-width: 0;
    width: auto;
    justify-content: flex-start;
    padding: 10px 14px;
    border: 1px solid #e4e5e8;
    border-radius: 6px;
    background-color: #fff;
  }

  .header-topbar-wrap header.style-1 .main-menu .home-two-mobile-language .language-list {
    left: 5px;
    right: auto;
    top: calc(100% + 8px);
    min-width: 180px;
    transform: scaleY(0) translateX(0);
  }

  .header-topbar-wrap header.style-1 .main-menu .home-two-mobile-language .language-list.active {
    transform: scaleY(1) translateX(0);
  }
}

.mobile-bottom-wrapper {
  display: none;
}

@media (max-width: 1199px) {
  .mobile-bottom-wrapper {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: #fff;
    border-top: 1px solid #e4e5e8;
    box-shadow: 0 -8px 24px rgba(24, 25, 28, .08);
  }

  .mobile-bottom-wrapper ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 10px 8px 12px;
  }

  .mobile-bottom-wrapper ul li a {
    min-height: 48px;
    color: #18191c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
  }

  .mobile-bottom-wrapper ul li a i {
    color: #767f8c;
    font-size: 22px;
    line-height: 1;
  }

  .mobile-bottom-wrapper ul li a:hover,
  .mobile-bottom-wrapper ul li a:hover i {
    color: #dc8514;
  }

  .employee-dashboard-page,
  .candited-dashboard-page,
  .favorite-jobs-page,
  .applied-jobs-page {
    padding-bottom: 84px;
  }
}

.employee-dashboard-page {
  font-family: var(--font-inter);
}

.employee-dashboard-page a {
  text-decoration: none;
}

.employee-dashboard-page .employee-dashboard-sidebar {
  min-height: 944px;
  border-right: 1px solid #e4e5e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 288px;
}

.employee-dashboard-page .employee-dashboard-menu-btn {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  background: var(--primary-color1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.employee-dashboard-page .employee-dashboard-sidebar .sidebar-menu-wrap > span {
  color: #9199a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  display: block;
  margin-bottom: 12px;
  padding: 0 20px;
}

.employee-dashboard-page .employee-dashboard-sidebar .employee-dashboard-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.employee-dashboard-page .employee-dashboard-sidebar .employee-dashboard-list li a,
.employee-dashboard-page .employee-dashboard-sidebar .logout-btn {
  min-height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #767f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  transition: 0.3s ease;
}

.employee-dashboard-page .employee-dashboard-sidebar .employee-dashboard-list li a i,
.employee-dashboard-page .employee-dashboard-sidebar .logout-btn i {
  font-size: 18px;
  line-height: 1;
}

.employee-dashboard-page .employee-dashboard-sidebar .employee-dashboard-list li a:hover,
.employee-dashboard-page .employee-dashboard-sidebar .logout-btn:hover {
  color: var(--primary-color1);
}

.employee-dashboard-page .employee-dashboard-sidebar .employee-dashboard-list li.active a {
  background: #e7f0fa;
  color: var(--primary-color1);
}

.employee-dashboard-page .employee-dashboard-sidebar .employee-dashboard-list li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0a65cc;
}

.employee-dashboard-page .employee-dashboard-content {
  padding-top: 35px;
}

.employee-dashboard-page .employee-dashboard-heading {
  margin-bottom: 26px;
}

.employee-dashboard-page .employee-dashboard-heading h4 {
  color: #18191c;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 8px;
}

.employee-dashboard-page .employee-dashboard-heading p {
  color: #767f8c;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.employee-dashboard-page .employee-counter-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 288px));
  gap: 24px;
  margin-bottom: 34px;
}

.employee-dashboard-page .employee-counter-card {
  min-height: 96px;
  border-radius: 8px;
  padding: 20px 20px 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.employee-dashboard-page .employee-counter-card.open-jobs {
  background: #e7f0fa;
}

.employee-dashboard-page .employee-counter-card.saved-candidates {
  background: #fff6e6;
}

.employee-dashboard-page .employee-counter-card h5 {
  color: #18191c;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 4px;
}

.employee-dashboard-page .employee-counter-card span {
  color: rgba(24, 25, 28, 0.8);
  font-size: 14px;
  line-height: 20px;
}

.employee-dashboard-page .employee-counter-card .icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 5px;
  background: #fff;
  color: var(--primary-color1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.employee-dashboard-page .employee-counter-card .icon i {
  font-size: 26px;
  line-height: 1;
}

.employee-dashboard-page .employee-recent-jobs .recent-jobs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.employee-dashboard-page .employee-recent-jobs .recent-jobs-top h5 {
  color: #18191c;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
}

.employee-dashboard-page .employee-recent-jobs .recent-jobs-top a {
  color: #767f8c;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.employee-dashboard-page .employee-recent-jobs .recent-jobs-top a:hover {
  color: var(--primary-color1);
}

.employee-dashboard-page .employee-jobs-table {
  overflow: visible;
}

.employee-dashboard-page .employee-jobs-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.employee-dashboard-page .employee-jobs-table thead tr {
  background: #f1f2f4;
}

.employee-dashboard-page .employee-jobs-table thead th {
  color: #474c54;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  text-transform: uppercase;
  padding: 10px 20px;
}

.employee-dashboard-page .employee-jobs-table thead th:first-child {
  border-radius: 4px 0 0 4px;
  width: 40%;
}

.employee-dashboard-page .employee-jobs-table thead th:nth-child(2) {
  width: 14%;
}

.employee-dashboard-page .employee-jobs-table thead th:nth-child(3) {
  width: 20%;
}

.employee-dashboard-page .employee-jobs-table thead th:last-child {
  border-radius: 0 4px 4px 0;
  width: 26%;
}

.employee-dashboard-page .employee-jobs-table tbody tr {
  position: relative;
  transition: 0.3s ease;
}

.employee-dashboard-page .employee-jobs-table tbody tr td {
  padding: 20px;
  border-bottom: 1px solid #e4e5e8;
  color: #5e6670;
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
}

.employee-dashboard-page .employee-jobs-table tbody tr.active {
  z-index: 2;
  box-shadow: 0 12px 24px rgba(0, 44, 109, 0.08);
}

.employee-dashboard-page .employee-jobs-table tbody tr.active td {
  border-top: 1px solid var(--primary-color1);
  border-bottom: 1px solid var(--primary-color1);
}

.employee-dashboard-page .employee-jobs-table tbody tr.active td:first-child {
  border-left: 1px solid var(--primary-color1);
  border-radius: 8px 0 0 8px;
}

.employee-dashboard-page .employee-jobs-table tbody tr.active td:last-child {
  border-right: 1px solid var(--primary-color1);
  border-radius: 0 8px 8px 0;
}

.employee-dashboard-page .employee-jobs-table .employee-job-title h6 {
  color: #18191c;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 6px;
}

.employee-dashboard-page .employee-jobs-table .employee-job-title p {
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.employee-dashboard-page .employee-jobs-table .employee-job-title p span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9199a3;
  display: inline-block;
  margin: 0 10px 3px;
}

.employee-dashboard-page .employee-jobs-table .job-status,
.employee-dashboard-page .employee-jobs-table .application-count {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.employee-dashboard-page .employee-jobs-table .job-status.active {
  color: #0ba02c;
}

.employee-dashboard-page .employee-jobs-table .job-status.expire {
  color: #e05151;
}

.employee-dashboard-page .employee-jobs-table .job-status.pending {
  color: #dc8514;
}

.employee-dashboard-page .employee-jobs-table .job-status.inactive {
  color: #767f8c;
}

.employee-dashboard-page .employee-jobs-table .application-count {
  color: #5e6670;
  gap: 8px;
}

.employee-dashboard-page .employee-jobs-table .application-count i {
  color: #474c54;
  font-size: 20px;
}

.employee-dashboard-page .employee-jobs-table .job-action-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  justify-content: flex-end;
}

.employee-dashboard-page .employee-jobs-table .view-applications-btn {
  min-height: 48px;
  border-radius: 3px;
  background: #f1f2f4;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.employee-dashboard-page .employee-jobs-table .view-applications-btn:hover,
.employee-dashboard-page .employee-jobs-table .view-applications-btn.primary-btn1 {
  background: var(--primary-color1);
  color: #fff;
}

.employee-dashboard-page .employee-jobs-table .view-applications-btn.primary-btn1 {
  margin: 0;
}

.employee-dashboard-page .employee-jobs-table .job-action-toggle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 0;
  border-radius: 3px;
  background: #f1f2f4;
  color: #18191c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.employee-dashboard-page .employee-jobs-table .job-action-toggle:hover {
  background: #e7f0fa;
  color: var(--primary-color1);
}

.employee-dashboard-page .employee-jobs-table .job-action-menu {
  width: 220px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 44, 109, 0.16);
  padding: 0;
  overflow: hidden;
  position: absolute;
  top: 58px;
  right: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s ease;
}

.employee-dashboard-page .employee-jobs-table .job-action-menu a {
  color: #5e6670;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.employee-dashboard-page .employee-jobs-table .job-action-menu a:hover,
.employee-dashboard-page .employee-jobs-table .job-action-menu a:first-child {
  background: #e7f0fa;
  color: var(--primary-color1);
}

.employee-dashboard-page .employee-jobs-table .job-action-wrap.menu-open {
  z-index: 6;
}

.employee-dashboard-page .employee-jobs-table .job-action-wrap.menu-open .job-action-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.employee-dashboard-page .employee-dashboard-empty {
  color: #767f8c;
  padding: 24px 0;
  text-align: center;
}

.employee-dashboard-page .employee-dashboard-copyright {
  margin-top: 116px;
  padding: 24px 0;
  border-top: 1px solid #e4e5e8;
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

@media (max-width: 1199px) {
  .employee-dashboard-page .employee-dashboard-menu-btn {
    display: none;
  }

  .employee-dashboard-page .employee-dashboard-sidebar {
    width: 280px;
    height: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-radius: 0;
    padding: 50px 15px 70px;
    transition: all 0.5s ease;
    background-color: var(--white-color);
  }

  .employee-dashboard-page .employee-dashboard-sidebar.slide {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .employee-dashboard-page .employee-dashboard-content {
    padding-top: 0;
  }

  .employee-dashboard-page .employee-jobs-table thead {
    display: none;
  }

  .employee-dashboard-page .employee-jobs-table tbody,
  .employee-dashboard-page .employee-jobs-table tr,
  .employee-dashboard-page .employee-jobs-table td {
    display: block;
    width: 100%;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr {
    border: 1px solid #e4e5e8;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 16px;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 14px;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:not(:first-child) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:not(:first-child)::before {
    content: attr(data-title);
    color: #474c54;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:last-child {
    margin-bottom: 0;
    display: block;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:last-child::before {
    display: none;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr.active {
    border-color: var(--primary-color1);
  }

  .employee-dashboard-page .employee-jobs-table tbody tr.active td {
    border: 0;
  }

  .employee-dashboard-page .employee-jobs-table .job-action-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .employee-dashboard-page .employee-counter-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .employee-dashboard-page .employee-dashboard-sidebar {
    width: 240px;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:not(:first-child) {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .employee-dashboard-page .employee-jobs-table .job-action-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .employee-dashboard-page .employee-jobs-table .view-applications-btn,
  .employee-dashboard-page .employee-jobs-table .job-action-toggle {
    width: 100%;
  }

  .employee-dashboard-page .employee-jobs-table .job-action-menu {
    position: static;
    width: 100%;
  }

  .employee-dashboard-page .employee-dashboard-copyright {
    font-size: 14px;
    margin-top: 56px;
  }
}

@media (max-width: 767px) {
  .employee-dashboard-page .employee-recent-jobs .recent-jobs-top {
    align-items: center;
    margin-bottom: 14px;
  }

  .employee-dashboard-page .employee-recent-jobs .recent-jobs-top h5,
  .employee-dashboard-page .employee-recent-jobs .recent-jobs-top a {
    font-size: 16px;
    line-height: 24px;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr {
    border: 1px solid #e4e5e8;
    border-radius: 8px;
    background: #fff;
    padding: 14px 16px;
    margin-bottom: 14px;
    overflow: visible;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr:hover {
    box-shadow: 0 10px 22px rgba(0, 44, 109, .08);
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 12px;
    border: 0;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:first-child {
    border-bottom: 1px solid #e4e5e8;
    padding-bottom: 10px;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:last-child {
    margin-bottom: 0;
  }

  .employee-dashboard-page .employee-jobs-table tbody tr td:not(:first-child)::before {
    color: #5e6670;
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .03em;
    line-height: 16px;
    margin-bottom: 7px;
  }

  .employee-dashboard-page .employee-jobs-table .employee-job-title h6 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }

  .employee-dashboard-page .employee-jobs-table .employee-job-title p {
    font-size: 13px;
    line-height: 20px;
  }

  .employee-dashboard-page .employee-jobs-table .job-status,
  .employee-dashboard-page .employee-jobs-table .application-count {
    font-size: 14px;
    line-height: 20px;
  }

  .employee-dashboard-page .employee-jobs-table .job-action-wrap {
    width: 100%;
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .employee-dashboard-page .employee-jobs-table .view-applications-btn {
    flex: 1;
    width: auto;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 15px;
  }

  .employee-dashboard-page .employee-jobs-table .job-action-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .employee-dashboard-page .employee-jobs-table .job-action-menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 190px;
    min-width: 190px;
  }
}

@media (max-width: 576px) {
  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    min-height: 0;
    padding: 16px;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table tbody tr td {
    margin-bottom: 0;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table tbody tr td:first-child,
  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table tbody tr td:last-child {
    grid-column: 1 / -1;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table tbody tr td:not(:first-child) {
    display: block;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table tbody tr td:not(:first-child)::before {
    margin-bottom: 5px;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .job-status,
  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .application-count {
    white-space: normal;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .application-count i {
    font-size: 17px;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .job-action-wrap {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .view-applications-btn {
    flex: 1;
    width: auto;
    min-height: 44px;
    border-radius: 4px;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .job-action-toggle {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border-radius: 4px;
  }

  .employee-dashboard-page .employee-recent-jobs .employee-jobs-table .job-action-menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 190px;
    min-width: 190px;
  }
}

@media (max-width: 1399px) {
  .header-topbar-wrap header.style-1 .home-two-profile-btn span {
    display: none;
  }

  .header-topbar-wrap header.style-1 .home-two-profile-btn {
    width: 48px;
    justify-content: center;
    padding: 4px;
  }

  .header-topbar-wrap header.style-1 .home-two-profile-btn i {
    display: none;
  }
}

/* Employer post-job dashboard */
.post-job-dashboard-page {
  padding-bottom: 24px;
}

.post-job-dashboard-page .post-job-content {
  min-height: 100%;
}

.post-job-dashboard-page .post-job-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.post-job-dashboard-page .post-job-hero-copy {
  max-width: 560px;
}

.post-job-dashboard-page .post-job-hero-copy h1 {
    color: #18191c;
    font-family: var(--font-inter);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
}

.post-job-dashboard-page .post-job-hero-copy p {
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

.post-job-dashboard-page .post-job-hero-img {
  flex: 0 0 260px;
}

.post-job-dashboard-page .post-job-hero-img img {
  display: block;
  width: 100%;
}

.post-job-dashboard-page .post-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-job-dashboard-page .post-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background-color: var(--white-color);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.post-job-dashboard-page .post-plan-card:hover,
.post-job-dashboard-page .post-plan-card.featured,
.post-job-dashboard-page .post-plan-card.recommended {
  border-color: var(--primary-color1);
  box-shadow: 0 12px 32px rgba(24, 25, 28, .08);
  transform: translateY(-2px);
}

.post-job-dashboard-page .post-plan-badge {
  position: absolute;
  top: -30px;
  right: 50%;
  transform: translateX(50%);
  padding: 6px 13px;
  border-radius: 4px 4px 0 0;
  background-color: var(--primary-color1);
  color: var(--white-color);
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.post-job-dashboard-page .post-plan-head {
  padding: 28px 28px 24px;
}

.post-job-dashboard-page .post-plan-head h2 {
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 8px;
}

.post-job-dashboard-page .post-plan-head p {
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}

.post-job-dashboard-page .post-plan-price {
  color: #9199a3;
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 24px;
}

.post-job-dashboard-page .post-plan-price span {
  color: var(--primary-color1);
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}

.post-job-dashboard-page .post-plan-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px 28px;
  margin: 0;
  border-top: 1px solid #e4e5e8;
  list-style: none;
}

.post-job-dashboard-page .post-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
}

.post-job-dashboard-page .post-plan-features i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  border-radius: 50%;
  background-color: #fff7ed;
  color: var(--primary-color1);
  font-size: 15px;
}

.post-job-dashboard-page .post-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  margin: auto 28px 28px;
  padding: 13px 22px;
  border-radius: 4px;
  background-color: #e7f0fa;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  transition: all .2s ease;
}

.post-job-dashboard-page .post-plan-btn:hover,
.post-job-dashboard-page .post-plan-card.featured .post-plan-btn,
.post-job-dashboard-page .post-plan-card.recommended .post-plan-btn {
  background-color: var(--primary-color1);
  color: var(--white-color);
}

.post-job-dashboard-page .post-job-no-plan {
  padding: 28px;
  border: 1px dashed #d0d5dd;
  border-radius: 8px;
  color: #667085;
  text-align: center;
}

.post-job-dashboard-page .post-job-form-card {
  padding: 28px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background-color: var(--white-color);
}

.post-job-dashboard-page .post-job-form-card .card,
.post-job-dashboard-page .post-job-form-card .eg-card {
  border: 0;
  box-shadow: none;
}

.post-job-dashboard-page .post-job-copyright {
  padding: 24px 15px 0;
  margin-top: 80px;
  border-top: 1px solid #e4e5e8;
  color: var(--black-color);
  font-family: var(--font-raleway);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 991px) {
  .post-job-dashboard-page .post-job-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .post-job-dashboard-page .post-job-hero-img {
    flex: none;
    max-width: 260px;
  }
}

@media (max-width: 767px) {
  .post-job-dashboard-page .post-job-hero {
    padding: 32px 24px;
    margin-bottom: 40px;
  }

  .post-job-dashboard-page .post-job-hero-copy h1 {
    font-size: 26px;
    line-height: 34px;
  }

  .post-job-dashboard-page .post-plan-grid {
    grid-template-columns: 1fr;
  }

  .post-job-dashboard-page .post-job-form-card {
    padding: 20px;
  }
}

/* Employer view applications */
.post-job-main-page {
  padding-bottom: 40px;
}

.post-job-main-page .post-job-sidebar {
  min-height: 944px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 1199px) {
  .post-job-main-page .post-job-sidebar {
    min-height: auto;
  }
}

.post-job-main-page .post-job-sidebar .sidebar-menu-wrap > span {
  display: block;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li a,
.post-job-main-page .post-job-sidebar .logout-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  color: #5f6675;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s ease;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li a i,
.post-job-main-page .post-job-sidebar .logout-btn i {
  font-size: 18px;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li a:hover,
.post-job-main-page .post-job-sidebar .post-job-sidebar-list li.active a,
.post-job-main-page .post-job-sidebar .logout-btn:hover {
  color: var(--primary-color1);
  background: rgba(0, 167, 172, .08);
}

.post-job-main-page .post-job-form-content {
  padding-top: 35px;
}

.post-job-main-page .post-job-form {
  padding: 0;
}

.post-job-main-page .post-job-form h1 {
  margin-bottom: 36px;
  color: #191f33;
  font-family: var(--font-inter);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.post-job-main-page .post-job-grid {
  display: grid;
  gap: 24px;
}

.post-job-main-page .post-job-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-job-main-page .post-job-grid.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-job-main-page .post-job-section h2,
.post-job-main-page .apply-job-box h2 {
  margin-bottom: 18px;
  color: #191f33;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.post-job-main-page .post-job-field label {
  display: block;
  margin-bottom: 8px;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
}

.post-job-main-page .post-job-field input,
.post-job-main-page .post-job-field select,
.post-job-main-page .post-job-field textarea,
.post-job-main-page .select2-container--default .select2-selection--single,
.post-job-main-page .select2-container--default .select2-selection--multiple {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e4e5e8;
  border-radius: 6px;
  background: #fff;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 15px;
  outline: none;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.post-job-main-page .post-job-field input,
.post-job-main-page .post-job-field select,
.post-job-main-page .post-job-field textarea {
  padding: 0 16px;
}

.post-job-main-page .post-job-field textarea {
  min-height: 170px;
  padding: 16px;
  resize: vertical;
}

.post-job-main-page .post-job-field input::placeholder,
.post-job-main-page .post-job-field textarea::placeholder {
  color: #9199a3;
}

.post-job-main-page .post-job-field input:focus,
.post-job-main-page .post-job-field select:focus,
.post-job-main-page .post-job-field textarea:focus,
.post-job-main-page .select2-container--focus .select2-selection--single,
.post-job-main-page .select2-container--focus .select2-selection--multiple {
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(0, 167, 172, .12);
}

.post-job-main-page .select2-container {
  width: 100% !important;
}

.post-job-main-page .select2-container--default .select2-selection--single {
  padding: 11px 14px;
}

.post-job-main-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 28px;
}

.post-job-main-page .select2-container--default .select2-selection--multiple {
  padding: 7px 10px;
}

.post-job-main-page .salary-input {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid #e4e5e8;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.post-job-main-page .salary-input:focus-within {
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(0, 167, 172, .12);
}

.post-job-main-page .salary-input input {
  min-height: 50px;
  border: 0;
  box-shadow: none;
}

.post-job-main-page .salary-input span {
  align-self: stretch;
  min-width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e4e5e8;
  color: #5f6675;
  font-size: 14px;
  font-weight: 600;
}

.post-job-main-page .post-job-radio-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.post-job-main-page .post-job-radio-row label,
.post-job-main-page .post-job-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #4f5665;
  font-size: 14px;
  font-weight: 500;
}

.post-job-main-page .apply-job-box {
  padding: 24px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background: #fff;
}

.post-job-main-page .apply-job-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.post-job-main-page .apply-job-option {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
}

.post-job-main-page .apply-job-option:has(input:checked) {
  border-color: var(--primary-color1);
  background: rgba(0, 167, 172, .07);
}

.post-job-main-page .apply-job-option input {
  margin-top: 4px;
}

.post-job-main-page .option-title {
  display: block;
  margin-bottom: 6px;
  color: #18191c;
  font-size: 15px;
  font-weight: 600;
}

.post-job-main-page .option-text {
  display: block;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.post-job-main-page .editor-field {
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.post-job-main-page .editor-field:focus-within {
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(0, 167, 172, .12);
}

.post-job-main-page .editor-field textarea {
  border: 0;
  min-height: 190px;
  box-shadow: none;
}

.post-job-main-page .post-job-file-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.post-job-main-page .post-job-file-field label {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed #b8c0cc;
  border-radius: 8px;
  background: #fafbfc;
  color: #4f5665;
  cursor: pointer;
  transition: all .2s ease;
}

.post-job-main-page .post-job-file-field label:hover {
  border-color: var(--primary-color1);
  background: rgba(0, 167, 172, .06);
}

.post-job-main-page .post-job-file-field i {
  color: #9aa3af;
  font-size: 34px;
}

.post-job-main-page .post-job-file-field small {
  color: #7a8494;
  font-size: 13px;
}

.post-job-main-page .post-job-form .primary-btn1 {
  border: 0;
}

.post-job-main-page .post-job-form .primary-btn1:disabled {
  cursor: wait;
  opacity: .75;
}

.post-job-main-page .promote-job-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.post-job-main-page .promote-job-modal.show,
.promote-job-modal.show {
  display: flex;
}

.post-job-main-page .promote-job-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
}

.post-job-main-page .promote-job-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  padding: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .22);
  scrollbar-width: none;
}

.post-job-main-page .promote-job-close {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: var(--primary-color1);
  background: #f1f2f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.post-job-main-page .promote-job-success {
  text-align: left;
  padding: 42px 40px 30px;
}

.post-job-main-page .promote-job-success h2 {
  margin-bottom: 10px;
  color: #18191c;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.post-job-main-page .promote-job-success p {
  margin-bottom: 22px;
  color: #5e6670;
  font-size: 16px;
  line-height: 24px;
}

.post-job-main-page .promote-job-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 164px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--primary-color1);
  border-radius: 4px;
  color: var(--primary-color1);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.post-job-main-page .promote-job-body {
  border-top: 1px solid #e4e5e8;
  margin-top: 0;
  padding: 32px 40px 38px;
}

.post-job-main-page .my-job-promote-body {
  border-top: 0;
  padding-top: 40px;
}

.post-job-main-page .promote-job-body h3 {
  color: #18191c;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 12px;
}

.post-job-main-page .promote-job-body > p {
  color: #5e6670;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 28px;
  max-width: 720px;
}

.post-job-main-page .promote-job-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.post-job-main-page .promote-job-card {
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background: #f7f8fa;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 24px 22px 22px;
  position: relative;
  transition: .25s ease;
}

.post-job-main-page .promote-job-card:only-child {
  max-width: 390px;
}

.post-job-main-page .promote-job-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.post-job-main-page .promote-job-card-img {
  min-height: 174px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.post-job-main-page .promote-job-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.post-job-main-page .promote-job-card-content {
  display: block;
  min-width: 0;
  padding-left: 32px;
  position: relative;
}

.post-job-main-page .promote-job-card-content::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
}

.post-job-main-page .promote-job-card-content::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color1);
  opacity: 0;
}

.post-job-main-page .promote-job-card-title {
  color: #18191c;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
}

.post-job-main-page .promote-job-card-text {
  color: #767f8c;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.post-job-main-page .promote-job-card:has(input:checked),
.post-job-main-page .promote-job-card:hover {
  border-color: var(--primary-color1);
  background: #eaf4ff;
  box-shadow: none;
}

.post-job-main-page .promote-job-card:has(input:checked) .promote-job-card-content::before {
  border-color: var(--primary-color1);
}

.post-job-main-page .promote-job-card:has(input:checked) .promote-job-card-content::after {
  opacity: 1;
}

.post-job-main-page .promote-job-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
}

.post-job-main-page .promote-job-skip,
.post-job-main-page .promote-job-submit {
  min-height: 50px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
}

.post-job-main-page .promote-job-skip {
  border: 0;
  background: transparent;
  color: #5e6670;
  padding-left: 0;
  padding-right: 0;
}

.post-job-main-page .promote-job-submit {
  border: 0;
  min-width: 212px;
  background: var(--primary-color1);
  color: #fff;
  text-transform: uppercase;
  width: 175px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .post-job-main-page .post-job-grid.two-column,
  .post-job-main-page .post-job-grid.three-column,
  .post-job-main-page .apply-job-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .post-job-main-page .post-job-form h1 {
    font-size: 30px;
  }

  .post-job-main-page .apply-job-box,
  .post-job-main-page .promote-job-dialog {
    padding: 24px;
  }

  .post-job-main-page .promote-job-dialog {
    padding: 0;
  }

  .post-job-main-page .promote-job-success,
  .post-job-main-page .promote-job-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .post-job-main-page .promote-job-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .post-job-main-page .promote-job-success h2,
  .post-job-main-page .promote-job-body h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .post-job-main-page .promote-job-options {
    grid-template-columns: 1fr;
  }

  .post-job-main-page .promote-job-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .post-job-main-page .promote-job-card-img {
    min-height: auto;
  }

  .post-job-main-page .promote-job-actions {
    flex-direction: column;
  }

  .post-job-main-page .promote-job-skip,
  .post-job-main-page .promote-job-submit {
    width: 100%;
  }
}

/* Matchwork post-job main page exact design alignment */
.post-job-main-page {
  font-family: var(--font-inter);
  padding-bottom: 0;
}

.post-job-main-page .post-job-sidebar {
  min-height: 944px;
  max-width: 288px;
  width: 100%;
  border: 0;
  border-right: 1px solid #e4e5e8;
  border-radius: 0;
  background: transparent;
}

/* Employer saved candidates */
.saved-candidate-page {
  font-family: var(--font-inter);
}

.saved-candidate-page .saved-candidate-sidebar {
  min-height: 944px;
  border-right: 1px solid #e4e5e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 288px;
  width: 100%;
}

.saved-candidate-page .saved-candidate-sidebar .sidebar-menu-wrap > span {
  color: #9199a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  display: block;
  margin-bottom: 12px;
  padding: 0 20px;
}

.saved-candidate-page .saved-candidate-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.saved-candidate-page .saved-candidate-sidebar-list li a {
  min-height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #767f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  transition: .3s ease;
}

.saved-candidate-page .saved-candidate-sidebar-list li a i,
.saved-candidate-page .saved-candidate-sidebar .logout-btn i {
  font-size: 18px;
  line-height: 1;
}

.saved-candidate-page .saved-candidate-sidebar-list li a:hover,
.saved-candidate-page .saved-candidate-sidebar .logout-btn:hover {
  color: #dc8514;
}

.saved-candidate-page .saved-candidate-sidebar-list li.active a {
  background: #e7f0fa;
  color: #dc8514;
}

.saved-candidate-page .saved-candidate-sidebar-list li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0a65cc;
}

.saved-candidate-page .saved-candidate-sidebar .logout-btn {
  min-height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #767f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: .3s ease;
}

.saved-candidate-page .saved-candidate-content {
  padding-top: 35px;
}

.saved-candidate-page .saved-candidate-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.saved-candidate-page .saved-candidate-header h4 {
  color: #18191c;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
}

.saved-candidate-page .saved-candidate-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #767f8c;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.saved-candidate-page .saved-candidate-note i {
  color: #9199a3;
  font-size: 16px;
}

.saved-candidate-page .saved-candidate-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.saved-candidate-page .saved-candidate-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid #e4e5e8;
  position: relative;
  transition: .3s ease;
}

.saved-candidate-page .saved-candidate-item:hover {
  z-index: 2;
  border: 1px solid #dc8514;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 44, 109, .08);
}

.saved-candidate-page .saved-candidate-item .candidate-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 6px;
  background: #767f8c center/cover no-repeat;
}

/* Home two cookie consent */
.js-cookie-consent.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 24px;
  z-index: 99999;
  pointer-events: none;
}

.js-cookie-consent .js-cookie-consent-area {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(24, 25, 28, .16);
  pointer-events: auto;
}

.js-cookie-consent .cookie-content {
  max-width: 760px;
}

.js-cookie-consent .cookie-content h4 {
  margin-bottom: 6px;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.js-cookie-consent .cookie-content p {
  margin-bottom: 0;
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.js-cookie-consent .cookie-content b,
.js-cookie-consent .cookie-content strong {
  color: #18191c;
  font-weight: 600;
}

.js-cookie-consent .cookie-btn-grp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.js-cookie-consent .cookie-btn-grp .js-cookie-consent-agree,
.js-cookie-consent .cookie-btn-grp .js-cookie-consent-reject {
  min-width: 124px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 5px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: .2s ease;
}

.js-cookie-consent .cookie-btn-grp .js-cookie-consent-agree {
  margin-bottom: 0 !important;
}

.js-cookie-consent .cookie-btn-grp .js-cookie-consent-agree {
  border: 1px solid var(--primary-color1);
  background: var(--primary-color1);
  color: #fff;
}

.js-cookie-consent .cookie-btn-grp .js-cookie-consent-agree:hover {
  background: #c8750f;
  border-color: #c8750f;
}

.js-cookie-consent .cookie-btn-grp .js-cookie-consent-reject {
  border: 1px solid #d7dce3;
  background: #fff;
  color: #5e6670;
}

.js-cookie-consent .cookie-btn-grp .js-cookie-consent-reject:hover {
  border-color: #18191c;
  color: #18191c;
}

@media (max-width: 767px) {
  .js-cookie-consent.cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 14px;
  }

  .js-cookie-consent .js-cookie-consent-area {
    align-items: flex-start !important;
    padding: 18px;
  }

  .js-cookie-consent .cookie-content h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .js-cookie-consent .cookie-btn-grp {
    width: 100%;
  }

  .js-cookie-consent .cookie-btn-grp .js-cookie-consent-agree,
  .js-cookie-consent .cookie-btn-grp .js-cookie-consent-reject {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .js-cookie-consent .cookie-btn-grp {
    flex-direction: column;
  }

  .js-cookie-consent .cookie-btn-grp .js-cookie-consent-agree,
  .js-cookie-consent .cookie-btn-grp .js-cookie-consent-reject {
    width: 100%;
  }
}

.saved-candidate-page .saved-candidate-item .candidate-info {
  flex: 1;
}

.saved-candidate-page .saved-candidate-item .candidate-info h6 {
  color: #18191c;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px;
}

.saved-candidate-page .saved-candidate-item .candidate-info p {
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}

.saved-candidate-page .candidate-action-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}

.saved-candidate-page .candidate-bookmark-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #dc8514;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.saved-candidate-page .candidate-bookmark-btn i {
  font-size: 18px;
  line-height: 1;
}

.saved-candidate-page .candidate-bookmark-btn:hover,
.saved-candidate-page .candidate-bookmark-btn.active {
  background: #f1f2f4;
}

.saved-candidate-page .view-profile-btn {
  min-height: 44px;
  border: 0;
  background: #f1f2f4;
  color: #0a65cc;
  border-radius: 3px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding: 13px 22px;
}

.saved-candidate-page .view-profile-btn::after {
  background: #dc8514;
}

.saved-candidate-page .view-profile-btn:hover {
  color: #fff;
}

.saved-candidate-page .candidate-action-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 0;
  border-radius: 3px;
  background: #f1f2f4;
  color: #18191c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.saved-candidate-page .candidate-action-toggle i {
  font-size: 20px;
  line-height: 1;
}

.saved-candidate-page .candidate-action-toggle:hover {
  background: #e7f0fa;
  color: #dc8514;
}

.saved-candidate-page .candidate-action-menu {
  width: 160px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 44, 109, .16);
  overflow: hidden;
  position: absolute;
  top: 52px;
  right: 0;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: .2s ease;
}

.saved-candidate-page .candidate-action-menu a {
  color: #5e6670;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.saved-candidate-page .candidate-action-menu a i {
  color: #5e6670;
  font-size: 15px;
}

.saved-candidate-page .candidate-action-menu a:hover,
.saved-candidate-page .candidate-action-menu a:first-child {
  background: #e7f0fa;
  color: #dc8514;
}

.saved-candidate-page .candidate-action-menu a:hover i,
.saved-candidate-page .candidate-action-menu a:first-child i {
  color: #dc8514;
}

.saved-candidate-page .candidate-action-wrap.menu-open {
  z-index: 7;
}

.saved-candidate-page .candidate-action-wrap.menu-open .candidate-action-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.saved-candidate-page .saved-candidate-item:hover .view-profile-btn {
  background: #dc8514;
  color: #fff;
}

.saved-candidate-page .saved-candidate-item:hover .candidate-bookmark-btn,
.saved-candidate-page .saved-candidate-item:hover .candidate-action-toggle {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 44, 109, .08);
}

.saved-candidate-page .saved-candidate-empty {
  border: 1px dashed #d6dbe1;
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
}

.saved-candidate-page .saved-candidate-empty h5 {
  color: #18191c;
  font-size: 18px;
  margin-bottom: 8px;
}

.saved-candidate-page .saved-candidate-empty p {
  color: #767f8c;
  margin-bottom: 0;
}

.saved-candidate-page .saved-candidate-copyright {
  margin-top: 72px;
  padding: 24px 0;
  border-top: 1px solid #e4e5e8;
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

@media (max-width: 1199px) {
  .saved-candidate-page .saved-candidate-sidebar {
    width: 280px;
    height: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-radius: 0;
    padding: 50px 15px 70px;
    transition: all .5s ease;
    background-color: var(--white-color);
  }

  .saved-candidate-page .saved-candidate-sidebar.slide {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .saved-candidate-page .saved-candidate-content {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .saved-candidate-page .saved-candidate-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .saved-candidate-page .saved-candidate-item {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .saved-candidate-page .saved-candidate-item {
    flex-wrap: wrap;
  }

  .saved-candidate-page .candidate-info {
    width: calc(100% - 60px);
  }

  .saved-candidate-page .candidate-action-wrap {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .saved-candidate-page .view-profile-btn,
  .saved-candidate-page .candidate-bookmark-btn,
  .saved-candidate-page .candidate-action-toggle {
    width: 100%;
  }

  .saved-candidate-page .saved-candidate-copyright {
    font-size: 14px;
    margin-top: 48px;
  }
}

@media (max-width: 1199px) {
  .post-job-main-page .post-job-sidebar {
    width: 280px;
    height: 100%;
    overflow-y: scroll;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 50px 15px 70px;
    transition: all 0.5s ease;
    background-color: var(--white-color);
  }

  .post-job-main-page .post-job-sidebar.slide {
    transform: translateX(0);
  }
}

.post-job-main-page .post-job-sidebar .sidebar-menu-wrap > span {
  color: #9199a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 12px;
  padding: 0 20px;
  letter-spacing: 0;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li a,
.post-job-main-page .post-job-sidebar .logout-btn {
  min-height: 44px;
  padding: 0 20px;
  gap: 16px;
  color: #767f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 0;
  background: transparent;
  transition: 0.3s ease;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li a:hover,
.post-job-main-page .post-job-sidebar .logout-btn:hover {
  color: #dc8514;
  background: transparent;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li.active a {
  background: #e7f0fa;
  color: #dc8514;
}

.post-job-main-page .post-job-sidebar .post-job-sidebar-list li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0a65cc;
}

.post-job-main-page .post-job-form h1 {
  color: #18191c;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 28px;
}

.post-job-main-page .post-job-form .primary-btn1 {
  width: 168px;
  padding: 16px 29px;
  border-radius: 4px;
  margin-bottom: 0;
}

.post-job-main-page .post-job-grid {
  gap: 20px;
}

.post-job-main-page .post-job-grid.two-column {
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
}

.post-job-main-page .post-job-grid.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .post-job-main-page .post-job-grid.three-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .post-job-main-page .post-job-grid.two-column,
  .post-job-main-page .post-job-grid.three-column {
    grid-template-columns: 1fr;
  }
}

.post-job-main-page .post-job-section h2,
.post-job-main-page .apply-job-box h2 {
  color: #18191c;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 18px;
}

.post-job-main-page .apply-job-box h2 {
  line-height: 20px;
  margin-bottom: 16px;
}

.post-job-main-page .post-job-field label {
  color: #18191c;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 8px;
}

.post-job-main-page .post-job-field input,
.post-job-main-page .post-job-field select,
.post-job-main-page .post-job-field textarea,
.post-job-main-page .select2-container--default .select2-selection--single,
.post-job-main-page .select2-container--default .select2-selection--multiple {
  min-height: auto;
  border-radius: 5px;
  color: #18191c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  box-shadow: none;
  transition: 0.3s ease;
}

.post-job-main-page .post-job-field input,
.post-job-main-page .post-job-field select {
  height: 44px;
  padding: 0 16px;
}

.post-job-main-page .post-job-field textarea {
  min-height: 134px;
  padding: 16px;
  resize: none;
}

.post-job-main-page .post-job-field input::placeholder,
.post-job-main-page .post-job-field select::placeholder,
.post-job-main-page .post-job-field textarea::placeholder {
  color: #b7bdc7;
}

.post-job-main-page .post-job-field input:focus,
.post-job-main-page .post-job-field select:focus,
.post-job-main-page .post-job-field textarea:focus,
.post-job-main-page .select2-container--focus .select2-selection--single,
.post-job-main-page .select2-container--focus .select2-selection--multiple {
  border-color: #dc8514;
  box-shadow: none;
}

.post-job-main-page .select2-container--default .select2-selection--single {
  height: 44px;
  padding: 7px 16px;
}

.post-job-main-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 28px;
}

.post-job-main-page .select2-container--default .select2-selection--multiple {
  min-height: 44px;
  padding: 5px 10px;
}

.post-job-main-page .salary-input {
  min-height: 0;
  border-radius: 5px;
  transition: 0.3s ease;
}

.post-job-main-page .salary-input:focus-within {
  border-color: #dc8514;
  box-shadow: none;
}

.post-job-main-page .salary-input input {
  height: 42px;
  min-height: 0;
  border: 0;
  border-radius: 0;
}

.post-job-main-page .salary-input input:focus {
  border-color: transparent;
}

.post-job-main-page .salary-input span {
  min-width: 54px;
  background: #f5f7fa;
  color: #5e6670;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.post-job-main-page .apply-job-box {
  background: #f1f2f4;
  border: 0;
  border-radius: 6px;
  padding: 24px 28px;
}

@media (max-width: 1399px) {
  .post-job-main-page .apply-job-box {
    padding: 24px 14px;
  }
}

.post-job-main-page .apply-job-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 991px) {
  .post-job-main-page .apply-job-options {
    grid-template-columns: 1fr;
  }
}

.post-job-main-page .apply-job-option {
  min-height: 68px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 11px;
}

.post-job-main-page .apply-job-option:has(input:checked) {
  background: #fff;
  border-color: #e4e5e8;
  box-shadow: 0 8px 18px rgba(24, 25, 28, 0.06);
}

.post-job-main-page .apply-job-option input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
}

.post-job-main-page .option-title {
  color: #18191c;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 4px;
}

.post-job-main-page .option-text {
  color: #767f8c;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.post-job-main-page .description-section h2 {
  margin-bottom: 20px;
}

.post-job-main-page .description-section .post-job-field {
  margin-bottom: 22px;
}

.post-job-main-page .description-section .post-job-field:last-child {
  margin-bottom: 0;
}

.post-job-main-page .editor-field {
  border-radius: 5px;
  transition: 0.3s ease;
}

.post-job-main-page .editor-field:focus-within {
  border-color: #dc8514;
  box-shadow: none;
}

.post-job-main-page .editor-field textarea {
  min-height: 134px;
  border-radius: 0;
}

.post-job-main-page .editor-toolbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px 10px;
}

.post-job-main-page .editor-toolbar button {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #9199a3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  transition: 0.3s ease;
}

.post-job-main-page .editor-toolbar button:hover {
  color: #dc8514;
  background: #fff6e6;
}

/* Final source-design guard for the post-job apply cards */
.post-job-main-page .apply-job-box {
  overflow: visible;
}

.post-job-main-page .apply-job-options {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
  gap: 14px !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  grid-auto-flow: row !important;
  align-items: flex-start !important;
  column-gap: 10px !important;
  box-sizing: border-box;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card input[type="radio"] {
  grid-column: 1 !important;
  grid-row: 1 !important;
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin: 2px 0 0 !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card input[type="hidden"] {
  display: none !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card .option-content {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: none !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card .option-title,
.post-job-main-page .apply-job-box .post-job-apply-card .option-text {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-align: left !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card .option-title {
  line-height: 18px !important;
}

.post-job-main-page .apply-job-box .post-job-apply-card .option-text {
  line-height: 18px !important;
}

@media (max-width: 991px) {
  .post-job-main-page .apply-job-options {
    grid-template-columns: 1fr !important;
  }
}

.post-job-main-page .post-job-copyright {
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid #e4e5e8;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 576px) {
  .post-job-main-page .post-job-form h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 22px;
  }

  .post-job-main-page .apply-job-box {
    padding: 20px 16px;
  }

  .post-job-main-page .post-job-copyright {
    font-size: 14px;
    margin-top: 48px;
  }
}

.view-application-page,
.view-application-page a {
  font-family: var(--font-inter);
}

.view-application-page a {
  text-decoration: none;
}

.view-application-page .view-application-content {
  padding-top: 54px;
}

.view-application-page .view-application-sidebar {
  min-height: 944px;
  padding: 24px 0;
  border-right: 1px solid #e4e5e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 288px;
  width: 100%;
}

.view-application-page .view-application-sidebar .sidebar-menu-wrap > span {
  color: #9199a3;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  display: block;
  margin-bottom: 12px;
  padding: 0 20px;
}

.view-application-page .view-application-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.view-application-page .view-application-sidebar-list li a {
  min-height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #767f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  transition: .3s ease;
}

.view-application-page .view-application-sidebar-list li a i,
.view-application-page .view-application-sidebar .logout-btn i {
  font-size: 18px;
  line-height: 1;
}

.view-application-page .view-application-sidebar-list li a:hover,
.view-application-page .view-application-sidebar .logout-btn:hover {
  color: #dc8514;
}

.view-application-page .view-application-sidebar-list li.active a {
  background: #e7f0fa;
  color: #dc8514;
}

.view-application-page .view-application-sidebar-list li.active a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0a65cc;
}

.view-application-page .view-application-sidebar .logout-btn {
  min-height: 44px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #767f8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: .3s ease;
}

.view-application-page .view-application-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.view-application-page .view-application-header h4 {
  color: #18191c;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
}

.view-application-page .application-breadcrumb {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.view-application-page .application-breadcrumb li {
  color: #dc8514;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  display: inline-flex;
  align-items: center;
}

.view-application-page .application-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #9199a3;
  margin: 0 8px;
}

.view-application-page .application-breadcrumb li a {
  color: #5e6670;
}

.view-application-page .application-breadcrumb li a:hover {
  color: #dc8514;
}

.view-application-page .application-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.view-application-page .application-filter-btn {
  background: transparent;
  color: #5e6670;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 0;
}

.view-application-page .application-sort-btn {
  min-width: 48px;
  height: 32px;
  border-radius: 4px;
  background: #dc8514;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 6px 12px;
}

.view-application-page .application-sort-menu {
  width: 160px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 44, 109, .16);
  padding: 16px;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: .2s ease;
}

.view-application-page .application-sort-menu > span {
  color: #9199a3;
  display: block;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.view-application-page .application-sort-menu label {
  color: #18191c;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

.view-application-page .application-sort-menu label:last-child {
  color: #767f8c;
  margin-bottom: 0;
}

.view-application-page .application-sort-menu label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.view-application-page .application-sort-menu label strong {
  width: 16px;
  height: 16px;
  border: 1px solid #c8ccd1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-application-page .application-sort-menu label strong::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc8514;
  opacity: 0;
}

.view-application-page .application-sort-menu label input:checked + strong {
  border-color: #dc8514;
}

.view-application-page .application-sort-menu label input:checked + strong::after,
.view-application-page .application-header-actions.sort-open .application-sort-menu {
  opacity: 1;
}

.view-application-page .application-header-actions.sort-open .application-sort-menu {
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.view-application-page .application-board-wrap {
  display: grid;
  grid-template-columns: repeat(5, 312px);
  align-items: start;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 18px;
}

.view-application-page .application-column {
  min-height: 640px;
  border: 1px solid #e4e5e8;
  border-radius: 6px;
  background: #f5f6f8;
  padding: 16px;
  position: relative;
}

.view-application-page .application-column-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.view-application-page .application-column-top h5 {
  color: #18191c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 0;
}

.view-application-page .application-column-toggle {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: transparent;
  color: #18191c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-application-page .application-column-toggle:hover {
  background: #e7f0fa;
  color: #dc8514;
}

.view-application-page .application-column-menu {
  width: 150px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 44, 109, .16);
  overflow: hidden;
  position: absolute;
  top: 28px;
  right: 0;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: .2s ease;
}

.view-application-page .application-column-menu a {
  color: #5e6670;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-application-page .application-column-menu a:hover {
  background: #e7f0fa;
  color: #dc8514;
}

.view-application-page .application-column.menu-open {
  z-index: 4;
}

.view-application-page .application-column.menu-open .application-column-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.view-application-page .application-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.view-application-page .application-card,
.view-application-page .application-empty-card {
  border: 1px solid #e4e5e8;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(24, 25, 28, .04);
  padding: 16px;
}

.view-application-page .application-empty-card {
  color: #767f8c;
  font-size: 14px;
  line-height: 22px;
}

.view-application-page .application-card ul {
  border-top: 1px solid #e4e5e8;
  list-style: disc;
  margin: 14px 0 17px 18px;
  padding: 12px 0 0;
}

.view-application-page .application-card ul li {
  color: #767f8c;
  font-size: 14px;
  line-height: 22px;
}

.view-application-page .application-candidate {
  display: flex;
  align-items: center;
  gap: 12px;
}

.view-application-page .application-candidate .candidate-avatar,
.view-application-page .candidate-details-avatar {
  border-radius: 50%;
  background: #767f8c center/cover no-repeat;
  display: block;
}

.view-application-page .application-candidate .candidate-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
}

.view-application-page .application-candidate h6 {
  color: #18191c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 2px;
}

.view-application-page .application-candidate p {
  color: #767f8c;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.view-application-page .download-and-view-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-application-page .download-and-view-details > a,
.view-application-page .download-and-view-details > button {
  border: 0;
  background: transparent;
  color: #dc8514;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-application-page .download-and-view-details .view-details {
  border: 0;
  background: transparent;
  color: var(--primary-color1);
  padding: 0;
}

.view-application-page .view-application-copyright {
  margin-top: 0;
  padding: 24px 0;
  border-top: 1px solid #e4e5e8;
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

.view-application-page .candidate-details-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
}

.view-application-page .candidate-details-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.view-application-page .candidate-details-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.view-application-page .candidate-details-modal-dialog {
  width: min(1120px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(24, 25, 28, .22);
  padding: 52px 56px;
  position: relative;
  transform: translateY(12px);
  transition: .25s ease;
  scrollbar-width: none;
}

.view-application-page .candidate-details-modal.show .candidate-details-modal-dialog {
  transform: translateY(0);
}

.view-application-page .candidate-details-modal-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #18191c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(24, 25, 28, .18);
}

.view-application-page .candidate-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 379px;
  gap: 72px;
}

.view-application-page .candidate-details-profile {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
}

.view-application-page .candidate-details-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
}

.view-application-page .candidate-details-profile h4 {
  color: #18191c;
  font-size: 26px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 7px;
}

.view-application-page .candidate-details-profile p,
.view-application-page .candidate-details-section p {
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0;
}

.view-application-page .candidate-details-section h6 {
  color: #18191c;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.view-application-page .candidate-details-section.cover-letter,
.view-application-page .candidate-social {
  border-top: 1px solid #e4e5e8;
  margin-top: 32px;
  padding-top: 32px;
}

.view-application-page .candidate-social span {
  color: #18191c;
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 14px;
}

.view-application-page .candidate-social ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.view-application-page .candidate-social ul a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #e7f0fa;
  color: #dc8514;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-application-page .candidate-action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.view-application-page .candidate-action-row > a,
.view-application-page .candidate-action-row > button,
.view-application-page .candidate-action-row > span {
  min-height: 48px;
  border-radius: 3px;
  border: 1px solid #dc8514;
  background: #fff;
  color: #dc8514;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 12px 20px;
}

.view-application-page .candidate-action-row .star-btn {
  min-width: 48px;
  max-width: 48px;
  padding: 0;
}

.view-application-page .candidate-action-row .star-btn.active {
  background: #dc8514;
  color: #fff;
}

.view-application-page .candidate-action-row .hire {
  background: #dc8514;
  color: #fff;
}

.view-application-page .candidate-action-row .candidate-current-status {
  border-color: #0ba02c;
  background: #e7f7ec;
  color: #0ba02c;
}

.view-application-page .candidate-action-row .candidate-current-status-warning {
  border-color: #d98a00;
  background: #fff7e6;
  color: #9a6400;
}

.view-application-page .candidate-action-row .candidate-current-status-info {
  border-color: #2477d4;
  background: #eaf3ff;
  color: #155da8;
}

.view-application-page .candidate-action-row .candidate-current-status-success {
  border-color: #0ba02c;
  background: #e7f7ec;
  color: #0ba02c;
}

.view-application-page .candidate-action-row .candidate-current-status-neutral {
  border-color: #8b95a1;
  background: #f4f6f8;
  color: #4b5563;
}

.view-application-page .candidate-action-row .candidate-current-status-danger,
.view-application-page .candidate-action-row .candidate-reject-action {
  border-color: #dc3545;
  background: #fff1f2;
  color: #b4232f;
}

.view-application-page .candidate-action-row .candidate-reject-action:hover {
  background: #dc3545;
  color: #fff;
}

.view-application-page .candidate-info-card {
  border: 1px solid #d9e3f0;
  border-radius: 6px;
  background: #fff;
  padding: 24px;
  margin-bottom: 24px;
}

.view-application-page .candidate-info-card h6 {
  color: #18191c;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 18px;
}

.view-application-page .stats-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 25px;
}

.view-application-page .stats-card div > i {
  color: var(--primary-color1);
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 12px;
}

.view-application-page .stats-card div span {
  color: #767f8c;
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.view-application-page .stats-card div strong {
  color: #18191c;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.view-application-page .resume-download-row {
  display: grid;
  grid-template-columns: 40px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.view-application-page .resume-download-row > span {
  color: #c8ced6;
  font-size: 34px;
  line-height: 1;
}

.view-application-page .resume-download-row small,
.view-application-page .resume-download-row strong {
  display: block;
}

.view-application-page .resume-download-row small {
  color: #767f8c;
  font-size: 12px;
  line-height: 18px;
}

.view-application-page .resume-download-row strong {
  color: #18191c;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.view-application-page .resume-download-row a {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: #e7f0fa;
  color: #dc8514;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-application-page .resume-download-row button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: #e7f0fa;
  color: #dc8514;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view-application-page .contact-card {
  margin-bottom: 0;
}

.view-application-page .contact-card .contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  border-bottom: 1px solid #e4e5e8;
  padding: 18px 0;
}

.view-application-page .contact-card .contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.view-application-page .contact-card .contact-item > i {
  color: #dc8514;
  font-size: 28px;
  line-height: 1;
}

.view-application-page .contact-card .contact-item span {
  color: #767f8c;
  display: block;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.view-application-page .contact-card .contact-item a {
  color: #18191c;
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .view-application-page .view-application-sidebar {
    width: 280px;
    height: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 50px 15px 70px;
    transition: all .5s ease;
    background-color: var(--white-color);
  }

  .view-application-page .view-application-sidebar.slide {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .view-application-page .view-application-content {
    padding-top: 0;
  }

  .view-application-page .application-board-wrap {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .view-application-page .candidate-details-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .view-application-page .candidate-details-modal-dialog {
    padding: 38px 30px;
  }
}

@media (max-width: 767px) {
  .view-application-page .view-application-header {
    flex-direction: column;
  }

  .view-application-page .application-header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .view-application-page .application-board-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .view-application-page .view-application-sidebar {
    width: 240px;
  }

  .view-application-page .application-header-actions {
    display: none;
  }

  .view-application-page .application-column {
    min-height: auto;
    padding: 16px;
  }

  .view-application-page .application-card {
    padding: 16px;
  }

  .view-application-page .application-card ul {
    margin-bottom: 16px;
  }

  .view-application-page .candidate-details-modal {
    padding: 14px;
  }

  .view-application-page .candidate-details-modal-dialog {
    padding: 30px 18px;
  }

  .view-application-page .candidate-details-profile {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }

  .view-application-page .candidate-details-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }

  .view-application-page .download-and-view-details {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .view-application-page .download-and-view-details > a,
  .view-application-page .download-and-view-details > button {
    justify-content: center;
  }

  .view-application-page .download-and-view-details .view-details {
    flex: 0 0 42px;
    width: 42px;
    padding: 0;
  }

  .view-application-page .candidate-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .view-application-page .candidate-action-row > a,
  .view-application-page .candidate-action-row > button,
  .view-application-page .candidate-action-row > span {
    width: 100%;
  }

  .view-application-page .candidate-action-row .star-btn {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Employer my jobs */
.my-job-page a {
  text-decoration: none;
}

.my-job-page .my-job-content {
  width: 100%;
}

.my-job-page .my-job-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 32px;
}

.my-job-page .my-job-header h4 {
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
}

.my-job-page .my-job-header h4 span {
  color: #a7aebb;
  font-weight: 400;
}

.my-job-page .my-job-filter-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.my-job-page .my-job-filter {
  position: relative;
}

.my-job-page .my-job-filter select {
  height: 48px;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  background-color: var(--white-color);
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  outline: none;
}

.my-job-page .my-job-filter label {
  position: absolute;
  top: -18px;
  left: 0;
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 18px;
}

.my-job-page .my-job-filter select {
  min-width: 150px;
  appearance: none;
  padding: 0 38px 0 16px;
}

.my-job-page .my-job-filter > i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #98a2b3;
  font-size: 14px;
  pointer-events: none;
}

.my-job-page .my-job-table {
  overflow: visible;
}

.my-job-page .my-job-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.my-job-page .my-job-table thead tr {
  background-color: #f1f2f4;
}

.my-job-page .my-job-table thead th {
  padding: 14px 24px;
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.my-job-page .my-job-table thead th:first-child {
  border-radius: 6px 0 0 6px;
  width: 38%;
}

.my-job-page .my-job-table thead th:last-child {
  border-radius: 0 6px 6px 0;
  text-align: right;
}

.my-job-page .my-job-table tbody tr {
  transition: background-color .2s ease, box-shadow .2s ease;
}

.my-job-page .my-job-table tbody tr td {
  padding: 22px 24px;
  border-bottom: 1px solid #e4e5e8;
  background-color: var(--white-color);
  vertical-align: middle;
}

.my-job-page .my-job-table tbody tr.active td,
.my-job-page .my-job-table tbody tr:hover td {
  background-color: #fff7ed;
}

.my-job-page .my-job-title h6 {
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 6px;
}

.my-job-page .my-job-title p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.my-job-page .my-job-title p span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #9199a3;
}

.my-job-page .my-job-table .job-status,
.my-job-page .my-job-table .application-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.my-job-page .my-job-table .job-status.active {
  color: #0ba02c;
}

.my-job-page .my-job-table .job-status.expire {
  color: #e05151;
}

.my-job-page .my-job-table .job-status.pending {
  color: #dc8514;
}

.my-job-page .my-job-table .job-status.inactive {
  color: #767f8c;
}

.my-job-page .my-job-table .application-count {
  color: #5e6670;
}

.my-job-page .my-job-action-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.my-job-page .my-job-action-wrap .view-applications-btn {
  min-height: 45px;
  padding: 12px 18px;
  border-radius: 4px;
  background-color: #e7f0fa;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
}

.my-job-page .my-job-action-wrap .view-applications-btn:hover {
  background-color: var(--primary-color1);
  color: var(--white-color);
}

.my-job-page .my-job-action-toggle {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e5e8;
  border-radius: 4px;
  background-color: var(--white-color);
  color: #5e6670;
  font-size: 18px;
}

.my-job-page .my-job-action-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  min-width: 210px;
  border: 1px solid #e4e5e8;
  border-radius: 6px;
  background-color: var(--white-color);
  box-shadow: 0 18px 40px rgba(24, 25, 28, .12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s ease;
}

.my-job-page .my-job-action-menu a,
.my-job-page .my-job-action-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 4px;
  background-color: transparent;
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  padding: 10px;
  text-align: left;
}

.my-job-page .my-job-action-menu a:hover,
.my-job-page .my-job-action-menu button:hover,
.my-job-page .my-job-action-menu a:first-child,
.my-job-page .my-job-action-menu button:first-child {
  background-color: #fff7ed;
  color: var(--primary-color1);
}

.my-job-page .my-job-action-wrap.menu-open {
  z-index: 30;
}

.my-job-page .my-job-action-wrap.menu-open .my-job-action-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.my-job-page .my-job-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1199px) {
  .my-job-page .my-job-header {
    flex-direction: column;
  }

  .my-job-page .my-job-filter-form {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .my-job-page .my-job-table thead {
    display: none;
  }

  .my-job-page .my-job-table tbody,
  .my-job-page .my-job-table tr,
  .my-job-page .my-job-table td {
    display: block;
    width: 100%;
  }

  .my-job-page .my-job-table tbody tr {
    border: 1px solid #e4e5e8;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
  }

  .my-job-page .my-job-table tbody tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
  }

  .my-job-page .my-job-table tbody tr td:not(:first-child)::before {
    content: attr(data-title);
    color: #474c54;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
  }

  .my-job-page .my-job-action-wrap {
    justify-content: flex-start;
  }

  .my-job-page .my-job-pagination {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .my-job-page .my-job-filter-form,
  .my-job-page .my-job-filter,
  .my-job-page .my-job-filter select {
    width: 100%;
  }

  .my-job-page .my-job-table tbody tr td {
    align-items: flex-start;
    flex-direction: column;
  }

  .my-job-page .my-job-action-wrap {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .my-job-page .my-job-action-wrap .view-applications-btn,
  .my-job-page .my-job-action-toggle {
    width: 100%;
  }

  .my-job-page .my-job-action-menu {
    position: static;
    width: 100%;
  }
}

/* Employer my jobs: match employee-dashboard-my-job.html */
.my-job-page .my-job-content {
  padding-top: 25px;
}

.my-job-page .my-job-header {
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.my-job-page .my-job-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  min-width: 260px;
}

.my-job-page .my-job-filter label {
  position: static;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  white-space: nowrap;
}

.my-job-page .my-job-filter select {
  width: 170px;
  min-width: 170px;
  height: 48px;
  border: 1px solid #e4e5e8;
  border-radius: 4px;
  background: #fff;
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  padding: 7px 34px 7px 14px;
  appearance: none;
  outline: none;
}

.my-job-page .my-job-filter select:focus {
  border-color: #dc8514;
}

.my-job-page .my-job-filter > i {
  color: #767f8c;
  font-size: 12px;
  right: 14px;
}

.my-job-page .my-job-table thead th {
  padding: 10px 20px;
  font-weight: 400;
}

.my-job-page .my-job-table thead th:first-child {
  border-radius: 4px 0 0 4px;
  width: 40%;
}

.my-job-page .my-job-table thead th:nth-child(2) {
  width: 14%;
}

.my-job-page .my-job-table thead th:nth-child(3) {
  width: 20%;
}

.my-job-page .my-job-table thead th:last-child {
  border-radius: 0 4px 4px 0;
  width: 26%;
  text-align: left;
}

.my-job-page .my-job-table tbody tr {
  position: relative;
  transition: .3s ease;
}

.my-job-page .my-job-table tbody tr td {
  padding: 18px 20px;
  border-bottom: 1px solid #e4e5e8;
  background: transparent;
  color: #5e6670;
  font-size: 14px;
  line-height: 20px;
}

.my-job-page .my-job-table tbody tr:hover td {
  background: transparent;
}

.my-job-page .my-job-table tbody tr.active,
.my-job-page .my-job-table tbody tr:hover {
  z-index: 2;
  box-shadow: 0 12px 24px rgba(0, 44, 109, .08);
}

.my-job-page .my-job-table tbody tr.active td,
.my-job-page .my-job-table tbody tr:hover td {
  border-top: 1px solid #dc8514;
  border-bottom: 1px solid #dc8514;
  background: transparent;
}

.my-job-page .my-job-table tbody tr.active td:first-child,
.my-job-page .my-job-table tbody tr:hover td:first-child {
  border-left: 1px solid #dc8514;
  border-radius: 8px 0 0 8px;
}

.my-job-page .my-job-table tbody tr.active td:last-child,
.my-job-page .my-job-table tbody tr:hover td:last-child {
  border-right: 1px solid #dc8514;
  border-radius: 0 8px 8px 0;
}

.my-job-page .my-job-title h6 {
  margin-bottom: 4px;
}

.my-job-page .my-job-title p {
  display: block;
  color: #767f8c;
  font-size: 13px;
}

.my-job-page .my-job-title p span {
  display: inline-block;
  margin: 0 10px 3px;
}

.my-job-page .my-job-table .job-status,
.my-job-page .my-job-table .application-count {
  border-radius: 0;
  font-size: 13px;
}

.my-job-page .my-job-table .job-status {
  font-weight: 500;
}

.my-job-page .my-job-table .job-status i {
  font-size: 15px;
}

.my-job-page .my-job-table .application-count {
  gap: 8px;
}

.my-job-page .my-job-table .application-count i {
  color: #474c54;
  font-size: 19px;
}

.my-job-page .my-job-action-wrap {
  gap: 8px;
}

.my-job-page .my-job-action-wrap .view-applications-btn {
  min-height: 44px;
  border-radius: 3px;
  font-size: 14px;
  padding: 13px 22px;
}

.my-job-page .my-job-table tbody tr:not(.active) .view-applications-btn {
  background: #f1f2f4;
  color: #dc8514;
}

.my-job-page .my-job-table tbody tr:not(.active) .view-applications-btn::after {
  background: #dc8514;
}

.my-job-page .my-job-table tbody tr:not(.active) .view-applications-btn:hover {
  color: #fff;
}

.my-job-page .my-job-table tbody tr.active .view-applications-btn,
.my-job-page .my-job-table tbody tr:hover .view-applications-btn {
  background: #dc8514;
  color: #fff;
}

.my-job-page .my-job-action-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 0;
  border-radius: 3px;
  background: #f1f2f4;
  color: #18191c;
}

.my-job-page .my-job-action-toggle i {
  font-size: 20px;
  line-height: 1;
}

.my-job-page .my-job-action-toggle:hover {
  background: #e7f0fa;
  color: #dc8514;
}

.my-job-page .my-job-action-menu {
  width: 160px;
  min-width: 160px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0, 44, 109, .16);
  overflow: hidden;
  padding: 0;
  top: 52px;
  right: 14px;
}

.my-job-page .my-job-action-menu a,
.my-job-page .my-job-action-menu button {
  border-radius: 0;
  color: #5e6670;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 14px;
}

.my-job-page .my-job-action-menu a i,
.my-job-page .my-job-action-menu button i {
  color: #5e6670;
  font-size: 15px;
}

.my-job-page .my-job-action-menu a:hover,
.my-job-page .my-job-action-menu button:hover,
.my-job-page .my-job-action-menu a:first-child,
.my-job-page .my-job-action-menu button:first-child {
  background: #e7f0fa;
  color: #dc8514;
}

.my-job-page .my-job-action-menu a:hover i,
.my-job-page .my-job-action-menu button:hover i,
.my-job-page .my-job-action-menu a:first-child i,
.my-job-page .my-job-action-menu button:first-child i {
  color: #dc8514;
}

.my-job-page .my-job-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1;
}

.my-job-page .my-job-pagination a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #5e6670;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.my-job-page .my-job-pagination a:hover,
.my-job-page .my-job-pagination a.active {
  background: #dc8514;
  color: #fff;
}

.my-job-page .my-job-pagination a.muted {
  background: #f1f2f4;
  color: #18191c;
  pointer-events: none;
}

.my-job-page .my-job-pagination .pagination-arrow {
  color: #0a65cc;
}

.my-job-page .my-job-pagination .pagination-arrow.next {
  color: #dc8514;
}

@media (max-width: 991px) {
  .my-job-page .my-job-content {
    padding-top: 0;
  }

  .my-job-page .my-job-table tbody tr {
    padding: 18px;
  }

  .my-job-page .my-job-table tbody tr td {
    padding: 0;
    margin-bottom: 14px;
  }

  .my-job-page .my-job-table tbody tr.active td,
  .my-job-page .my-job-table tbody tr:hover td {
    border: 0;
  }
}

@media (max-width: 576px) {
  .my-job-page .my-job-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .my-job-page .my-job-filter {
    justify-content: space-between;
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  .my-job-page {
    margin-top: 56px;
  }

  .my-job-page .my-job-content {
    padding-top: 0;
  }

  .my-job-page .my-job-header {
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
  }

  .my-job-page .my-job-header h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .my-job-page .my-job-filter {
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 12px;
  }

  .my-job-page .my-job-filter label {
    min-width: 70px;
    font-size: 13px;
  }

  .my-job-page .my-job-filter select {
    flex: 1;
    width: auto;
    min-width: 0;
    height: 44px;
  }

  .my-job-page .my-job-table tbody tr {
    border: 1px solid #e4e5e8;
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    margin-bottom: 14px;
    overflow: visible;
  }

  .my-job-page .my-job-table tbody tr:hover {
    box-shadow: 0 10px 22px rgba(0, 44, 109, .08);
  }

  .my-job-page .my-job-table tbody tr td {
    display: block;
    padding: 0;
    margin-bottom: 12px;
    border: 0;
  }

  .my-job-page .my-job-table tbody tr td:first-child {
    border-bottom: 1px solid #e4e5e8;
    padding-bottom: 10px;
  }

  .my-job-page .my-job-table tbody tr td:last-child {
    margin-bottom: 0;
  }

  .my-job-page .my-job-table tbody tr td:not(:first-child)::before {
    color: #5e6670;
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .03em;
    line-height: 16px;
    margin-bottom: 7px;
  }

  .my-job-page .my-job-title h6 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
  }

  .my-job-page .my-job-title p {
    font-size: 12px;
    line-height: 18px;
  }

  .my-job-page .my-job-table .job-status,
  .my-job-page .my-job-table .application-count {
    font-size: 13px;
    line-height: 20px;
  }

  .my-job-page .my-job-action-wrap {
    width: 100%;
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }

  .my-job-page .my-job-action-wrap .view-applications-btn {
    flex: 1;
    width: auto;
    min-height: 42px;
    padding: 11px 14px;
    justify-content: center;
  }

  .my-job-page .my-job-action-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .my-job-page .my-job-action-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 190px;
    min-width: 190px;
  }

  .my-job-page .my-job-pagination {
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 8px;
  }
}

/* Checkout */
.home-two-checkout-page {
  min-height: 100vh;
  padding: 50px 0 80px;
}

.home-two-checkout-page .checkout-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-two-checkout-page .checkout-heading {
  margin-bottom: 28px;
}

.home-two-checkout-page .checkout-heading span {
  display: block;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.home-two-checkout-page .checkout-heading h1 {
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin: 0;
}

.home-two-checkout-page .checkout-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.home-two-checkout-page .checkout-payment,
.home-two-checkout-page .checkout-summary-card {
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background-color: var(--white-color);
  box-shadow: 0 18px 50px rgba(24, 25, 28, .06);
}

.home-two-checkout-page .checkout-payment {
  padding: 32px;
}

.home-two-checkout-page .checkout-section-title {
  margin-bottom: 24px;
}

.home-two-checkout-page .checkout-billing-accordion {
  margin-bottom: 30px;
}

.home-two-checkout-page .checkout-billing-toggle {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background-color: #fff;
  color: #18191c;
  padding: 16px 18px;
  text-align: left;
}

.home-two-checkout-page .checkout-billing-toggle > span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-two-checkout-page .checkout-billing-toggle > span > i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border-radius: 50%;
  background-color: #fff7ed;
  color: var(--primary-color1);
  font-size: 20px;
}

.home-two-checkout-page .checkout-billing-toggle strong {
  display: block;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.home-two-checkout-page .checkout-billing-toggle small {
  display: block;
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 18px;
  margin-top: 2px;
}

.home-two-checkout-page .checkout-billing-toggle > i {
  color: #98a2b3;
  transition: transform .2s ease;
}

.home-two-checkout-page .checkout-billing-toggle[aria-expanded="true"] > i {
  transform: rotate(180deg);
}

.home-two-checkout-page .checkout-section-title h2,
.home-two-checkout-page .checkout-summary h2 {
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 6px;
}

.home-two-checkout-page .checkout-section-title p {
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.home-two-checkout-page .checkout-billing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 22px;
  margin-bottom: 0;
}

.home-two-checkout-page .checkout-field-full {
  grid-column: 1 / -1;
}

.home-two-checkout-page .checkout-field label {
  display: block;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}

.home-two-checkout-page .checkout-field label span {
  color: #ef4444;
}

.home-two-checkout-page .checkout-field input {
  width: 100%;
  height: 48px;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  background-color: var(--white-color);
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 22px;
  padding: 0 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.home-two-checkout-page .checkout-field input:focus {
  border-color: var(--primary-color1);
  box-shadow: 0 0 0 3px rgba(var(--primary-color1-opc), .12);
}

.home-two-checkout-page .checkout-field input[readonly] {
  background-color: #f8fafc;
  color: #667085;
}

.home-two-checkout-page .checkout-payment-title {
  margin-bottom: 16px;
}

.home-two-checkout-page .payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.home-two-checkout-page .payment-tabs li {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e4e5e8;
  border-radius: 8px;
  background-color: #fff;
  color: #474c54;
  cursor: pointer;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 16px 42px 16px 16px;
  transition: border-color .2s ease, background-color .2s ease;
}

.home-two-checkout-page .payment-tabs li.active,
.home-two-checkout-page .payment-tabs li:hover {
  border-color: var(--primary-color1);
  background-color: #fff7ed;
}

.home-two-checkout-page .payment-tabs li > i {
  color: var(--primary-color1);
  font-size: 24px;
}

.home-two-checkout-page .payment-tabs img {
  max-width: 76px;
  max-height: 26px;
}

.home-two-checkout-page .payment-tabs .checked {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color1);
  color: var(--white-color);
  font-size: 13px;
}

.home-two-checkout-page .payment-tabs li.active .checked {
  display: inline-flex;
}

.home-two-checkout-page .checkout-card-fields {
  display: grid;
  gap: 20px;
}

.home-two-checkout-page .checkout-input-icon {
  position: relative;
}

.home-two-checkout-page .checkout-input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #98a2b3;
  font-size: 18px;
}

.home-two-checkout-page .checkout-input-icon input {
  padding-left: 42px;
}

.home-two-checkout-page .checkout-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-two-checkout-page .checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
}

.home-two-checkout-page .checkout-terms input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary-color1);
}

.home-two-checkout-page .checkout-terms a {
  color: var(--primary-color1);
  font-weight: 600;
}

.home-two-checkout-page .checkout-summary {
  position: sticky;
  top: 110px;
}

.home-two-checkout-page .checkout-summary h2 {
  margin-bottom: 16px;
}

.home-two-checkout-page .checkout-summary-card {
  padding: 26px;
  border-color: #dfe3e8;
}

.home-two-checkout-page .summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}

.home-two-checkout-page .summary-row .summary-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.home-two-checkout-page .summary-row small {
  color: #9199a3;
  font-size: 12px;
  line-height: 17px;
}

.home-two-checkout-page .summary-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-width: 92px;
  color: #18191c;
  font-weight: 600;
  line-height: 20px;
  text-align: right;
  white-space: nowrap;
}

.home-two-checkout-page .summary-divider {
  height: 1px;
  background-color: #e4e5e8;
  margin: 16px 0;
}

.home-two-checkout-page .summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  padding: 18px 0 2px;
  margin: 4px 0 18px;
  border-top: 1px solid #e4e5e8;
}

.home-two-checkout-page .summary-total strong {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--primary-color1);
  font-size: 28px;
  line-height: 32px;
  white-space: nowrap;
}

.home-two-checkout-page .checkout-submit {
  width: 100%;
  justify-content: center;
  border: 0;
  min-height: 54px;
}

.home-two-checkout-page .checkout-summary-card > p {
  color: #767f8c;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 20px;
  max-width: 300px;
  margin: 18px auto 0;
  text-align: center;
}

.home-two-checkout-page .summary-empty {
  padding: 18px;
  border: 1px dashed #d0d5dd;
  border-radius: 6px;
  color: #667085;
  font-family: var(--font-inter);
  text-align: center;
}

@media (max-width: 991px) {
  .home-two-checkout-page .checkout-main {
    grid-template-columns: 1fr;
  }

  .home-two-checkout-page .checkout-summary {
    position: static;
  }
}

@media (max-width: 767px) {
  .home-two-checkout-page {
    padding-top: 100px;
  }

  .home-two-checkout-page .checkout-payment,
  .home-two-checkout-page .checkout-summary-card {
    padding: 22px;
  }

  .home-two-checkout-page .checkout-billing-grid,
  .home-two-checkout-page .checkout-field-row,
  .home-two-checkout-page .payment-tabs {
    grid-template-columns: 1fr;
  }
}

body.profile-apply-modal-open,
body.modal-open {
  overflow: hidden;
}

.profile-apply-modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.profile-apply-modal .modal-dialog {
  width: min(648px, 100%);
  max-width: min(648px, 100%);
  margin: 0;
  pointer-events: auto;
}

.profile-apply-modal__dialog {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 96px);
  background: var(--white-color, #fff);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(24, 25, 28, 0.18);
}

.profile-apply-modal__dialog h3 {
  color: #18191c;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 16px;
}

.profile-apply-modal__close {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  background: #e7f0fa;
  border: 2px solid var(--white-color, #fff);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}

.profile-apply-modal .profile-apply-field {
  margin-bottom: 16px;
}

.profile-apply-modal .profile-apply-field label {
  display: block;
  color: #18191c;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}

.profile-apply-modal .profile-apply-field label span {
  color: #e05151;
}

.profile-apply-modal .profile-apply-select {
  position: relative;
  display: flex;
}

.profile-apply-modal .profile-apply-select select,
.profile-apply-modal .profile-apply-input {
  width: 100%;
  height: 48px;
  color: #767f8c;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #e4e5e8;
  border-radius: 5px;
  padding: 0 46px 0 17px;
  appearance: none;
  background: var(--white-color, #fff);
  outline: none;
}

.profile-apply-modal .profile-apply-input {
  padding-right: 17px;
}

.profile-apply-modal .profile-apply-select i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #767f8c;
  font-size: 16px;
  pointer-events: none;
}

.profile-apply-modal .profile-cover-editor {
  position: relative;
  height: 170px;
  border: 1px solid #e4e5e8;
  border-radius: 6px;
  overflow: hidden;
}

.profile-apply-modal .profile-cover-editor textarea {
  width: 100%;
  height: 100%;
  resize: none;
  border: none;
  padding: 12px 17px 54px;
  color: #18191c;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: var(--white-color, #fff);
  outline: none;
}

.profile-apply-modal .profile-cover-editor textarea::placeholder {
  color: #9199a3;
}

.profile-apply-modal .profile-cover-toolbar {
  position: absolute;
  left: 9px;
  bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-apply-modal .profile-cover-toolbar button {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #767f8c;
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-size: 18px;
  transition: 0.2s ease;
}

.profile-apply-modal .profile-cover-toolbar button:hover {
  color: var(--primary-color1);
  background: #e7f0fa;
}

.profile-apply-modal .profile-cover-toolbar span {
  width: 1px;
  height: 24px;
  background: #e4e5e8;
}

.profile-apply-extra-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.profile-apply-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5e6670;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}

.profile-apply-terms input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--primary-color1);
}

.profile-apply-modal .profile-apply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px;
}

.profile-apply-modal .profile-apply-cancel,
.profile-apply-modal .profile-apply-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 3px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
}

.profile-apply-modal .profile-apply-cancel {
  color: var(--primary-color1);
  background: #e7f0fa;
}

.profile-apply-modal .profile-apply-submit {
  gap: 12px;
  color: var(--white-color, #fff);
  background: var(--primary-color1);
}

.profile-apply-modal .profile-apply-submit i {
  font-size: 24px;
  line-height: 1;
}

.profile-apply-email-option {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e4e5e8;
}

.profile-apply-email-option > span,
.profile-apply-email-text {
  display: block;
  color: #5e6670;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}

.profile-apply-email-option div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-apply-email-option input {
  flex: 1 1 260px;
  height: 44px;
  border: 1px solid #e4e5e8;
  border-radius: 5px;
  padding: 0 14px;
  color: #5e6670;
}

.profile-apply-email-option button,
.profile-apply-email-option a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  padding: 10px 16px;
  color: var(--white-color, #fff);
  background: var(--primary-color1);
  font-weight: 600;
}

.profile-apply-email-option.standalone {
  border-top: 0;
  padding-top: 0;
}

@media (max-width: 576px) {
  .profile-apply-modal.show {
    padding: 24px 14px;
  }

  .profile-apply-modal__dialog {
    max-height: calc(100vh - 48px);
    padding: 26px 18px 20px;
  }

  .profile-apply-modal__close {
    top: -18px;
    right: -6px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .profile-apply-extra-fields {
    grid-template-columns: 1fr;
  }

  .profile-apply-modal .profile-apply-actions {
    flex-wrap: wrap;
  }

  .profile-apply-modal .profile-apply-cancel,
  .profile-apply-modal .profile-apply-submit,
  .profile-apply-email-option button,
  .profile-apply-email-option a {
    width: 100%;
  }
}

.blog-details-new-section {
  padding-top: 40px;
}

.blog-details-new-content .blog-details-header {
  margin-bottom: 36px;
}

.blog-details-new-content .blog-details-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-details-new-content .blog-details-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(220, 133, 20, 0.1);
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 500;
}

.blog-details-new-content .blog-details-header h1 {
  color: #18191c;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.blog-details-new-content .blog-details-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details-new-content .blog-details-meta li,
.blog-details-new-content .blog-details-meta li a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5e6670;
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 24px;
}

.blog-details-new-content .blog-details-meta li a:hover {
  color: var(--primary-color1);
}

.blog-details-new-content .blog-details-meta li img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details-new-content .blog-details-meta li i {
  color: var(--primary-color1);
  font-size: 20px;
}

.blog-details-new-content .blog-details-feature-img {
  margin-bottom: 44px;
}

.blog-details-new-content .blog-details-feature-img img {
  width: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-details-new-content .blog-details-body {
  color: #474c54;
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.75;
}

.blog-details-new-content .blog-details-body h1,
.blog-details-new-content .blog-details-body h2,
.blog-details-new-content .blog-details-body h3,
.blog-details-new-content .blog-details-body h4 {
  color: #191f33;
  font-family: var(--font-inter);
  font-weight: 600;
  line-height: 1.35;
  margin: 30px 0 14px;
}

.blog-details-new-content .blog-details-body h2 {
  font-size: 26px;
}

.blog-details-new-content .blog-details-body h3 {
  font-size: 22px;
}

.blog-details-new-content .blog-details-body p {
  margin-bottom: 22px;
}

.blog-details-new-content .blog-details-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0 26px;
}

.blog-details-new-content .blog-details-body blockquote {
  position: relative;
  margin: 40px 0;
  padding: 34px 36px 34px 84px;
  border-radius: 12px;
  background: rgba(231, 240, 250, 0.65);
  color: #18191c;
}

.blog-details-new-content .blog-details-body blockquote::before {
  content: "\F6B0";
  position: absolute;
  left: 32px;
  top: 34px;
  color: var(--primary-color1);
  font-family: bootstrap-icons;
  font-size: 34px;
  line-height: 1;
}

.blog-details-new-content .blog-details-body blockquote p {
  color: #18191c;
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 0;
}

.blog-details-tags,
.blog-details-new-content .blog-details-share {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.blog-details-tags span,
.blog-details-new-content .blog-details-share span {
  color: #191f33;
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
}

.blog-details-tags ul,
.blog-details-new-content .blog-details-share ul {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details-tags a {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff7eb;
  color: var(--primary-color1);
  font-size: 13px;
  font-weight: 500;
}

.blog-details-new-content .blog-details-share {
  padding-top: 28px;
  margin-bottom: 42px;
  border-top: 1px solid #edeff5;
}

.blog-details-new-content .blog-details-share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #edeff5;
  border-radius: 5px;
  font-family: var(--font-inter);
  font-size: 14px;
  transition: 0.2s ease;
}

.blog-details-new-content .blog-details-share ul li a.facebook {
  color: #0066ff;
}

.blog-details-new-content .blog-details-share ul li a.twitter {
  color: #1da1f2;
}

.blog-details-new-content .blog-details-share ul li a.linkedin {
  color: #0a66c2;
}

.blog-details-new-content .blog-details-share ul li a:hover {
  border-color: var(--primary-color1);
  background: #fffaf2;
}

.blog-details-post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  margin-bottom: 46px;
  border-top: 1px solid #edeff5;
  border-bottom: 1px solid #edeff5;
}

.blog-details-post-nav a,
.blog-details-post-nav .disabled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 5px;
  background: #f3f8ff;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-weight: 600;
}

.blog-details-post-nav .disabled {
  opacity: 0.45;
}

.blog-details-new-content .blog-details-comment-form,
.blog-details-new-content .blog-details-comments {
  margin-top: 44px;
}

.blog-details-new-content .blog-details-comment-form h3,
.blog-details-new-content .blog-details-comments h3 {
  color: #191f33;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 22px;
}

.blog-details-new-content .blog-details-comment-form input,
.blog-details-new-content .blog-details-comment-form textarea {
  width: 100%;
  border: 1px solid #edeff5;
  border-radius: 6px;
  color: #464d61;
  font-family: var(--font-inter);
  font-size: 15px;
  outline: none;
}

.blog-details-new-content .blog-details-comment-form input {
  height: 48px;
  padding: 0 16px;
}

.blog-details-new-content .blog-details-comment-form textarea {
  height: 130px;
  resize: none;
  padding: 13px 16px;
}

.blog-details-new-content .blog-details-comment-form input:focus,
.blog-details-new-content .blog-details-comment-form textarea:focus {
  border-color: var(--primary-color1);
}

.blog-details-new-content .blog-details-comment-form .primary-btn1 {
  margin-top: 18px;
  border: 0;
}

.blog-details-new-content .blog-comment-item {
  border-bottom: 1px solid #edeff5;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.blog-details-new-content .blog-comment-item p {
  color: #464d61;
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}

.blog-details-new-content .blog-comment-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.blog-details-new-content .blog-comment-head img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details-new-content .blog-comment-head h4 {
  color: #191f33;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
}

.blog-details-new-content .blog-comment-head span {
  color: #767e94;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
}

.blog-details-new-content .reply-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 14px;
}

.blog-details-new-content .reply-link i {
  font-size: 20px;
}

.blog-details-new-content .blog-comment-replies {
  position: relative;
  margin-top: 24px;
  padding-left: 24px;
}

.blog-details-new-content .blog-comment-replies::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 20px;
  width: 1px;
  background: #edeff5;
}

.blog-details-new-content .blog-comment-replies .blog-comment-item {
  padding-left: 24px;
}

.blog-details-new-content .blog-comment-hidden {
  display: none;
}

.blog-details-new-content .blog-comments-load-more {
  border: 0;
}

.blog-details-empty-comments {
  padding: 24px;
  border: 1px dashed #d0d5dd;
  border-radius: 8px;
  color: #667085;
  font-family: var(--font-inter);
}

.blog-details-sidebar {
  position: sticky;
  top: 110px;
}

.blog-details-sidebar .single-widget {
  padding: 24px;
  border: 1px solid #edeff5;
  border-radius: 8px;
  background: #fff;
}

.blog-details-sidebar .single-widget:not(:last-child) {
  margin-bottom: 20px;
}

.blog-details-sidebar .widget-title {
  color: #191f33;
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.blog-details-sidebar .search-box {
  position: relative;
}

.blog-details-sidebar .search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

.blog-details-sidebar .search-box input {
  width: 100%;
  height: 52px;
  border: 1px solid #edeff5;
  border-radius: 6px;
  padding: 0 16px 0 50px;
  color: #464d61;
  font-family: var(--font-inter);
  font-size: 15px;
  outline: none;
}

.blog-details-sidebar .search-box input:focus {
  border-color: var(--primary-color1);
}

.blog-details-sidebar .categories .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding-left: 0;
  margin-bottom: 13px;
}

.blog-details-sidebar .categories .form-check:last-child {
  margin-bottom: 0;
}

.blog-details-sidebar .categories .form-check-input {
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #cfd5df;
  box-shadow: none;
  cursor: pointer;
}

.blog-details-sidebar .categories .form-check-input:checked {
  background-color: var(--primary-color1);
  border-color: var(--primary-color1);
}

.blog-details-sidebar .categories .form-check-label {
  cursor: pointer;
}

.blog-details-sidebar .categories .form-check-label span {
  color: #464d61;
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 22px;
}

.blog-details-sidebar .recent-post-widget {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #edeff5;
}

.blog-details-sidebar .recent-post-widget:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.blog-details-sidebar .recent-post-img {
  flex: 0 0 96px;
}

.blog-details-sidebar .recent-post-img img {
  width: 96px;
  height: 78px;
  border-radius: 6px;
  object-fit: cover;
}

.blog-details-sidebar .recent-post-content > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #767e94;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 6px;
}

.blog-details-sidebar .recent-post-content > a span {
  color: var(--primary-color1);
}

.blog-details-sidebar .recent-post-content h4 {
  margin-bottom: 0;
  line-height: 21px;
}

.blog-details-sidebar .recent-post-content h4 a {
  color: #18191c;
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
}

.blog-details-sidebar .recent-post-content h4 a:hover {
  color: var(--primary-color1);
}

.blog-details-sidebar .gallery-area ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-details-sidebar .gallery-area a,
.blog-details-sidebar .gallery-area img {
  display: block;
  width: 100%;
}

.blog-details-sidebar .gallery-area img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.blog-details-sidebar .popular-tag-area ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-details-sidebar .popular-tag-area a {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #edeff5;
  border-radius: 4px;
  background: #fff;
  color: #5e6670;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease;
}

.blog-details-sidebar .popular-tag-area a:hover {
  color: var(--primary-color1);
  border-color: var(--primary-color1);
  background: #fff7eb;
}

.blog-details-sidebar .sidebar-banner {
  border-radius: 8px;
  overflow: hidden;
}

.blog-card-section .blog-card-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 50px;
}

.blog-card-section .blog-card-section-header h2 {
  color: #191f33;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 0;
}

.blog-card-section .blog-card-slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-card-section .blog-card-slider-nav button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color1);
  background: #e8f1ff;
  border: 0;
  border-radius: 5px;
  font-size: 24px;
  transition: 0.2s ease;
}

.blog-card-section .blog-card-slider-nav button:hover {
  color: var(--white-color, #fff);
  background: var(--primary-color1);
}

.blog-card-section .related-blog-card {
  height: 100%;
  padding: 24px;
  background: var(--white-color, #fff);
  border: 1px solid #e4e5e8;
  border-radius: 12px;
  transition: 0.25s ease;
}

.blog-card-section .related-blog-card:hover,
.blog-card-section .related-blog-card.active {
  border-color: rgba(220, 133, 20, 0.35);
  box-shadow: 0 20px 45px rgba(24, 25, 28, 0.08);
}

.blog-card-section .related-blog-card-img {
  margin-bottom: 24px;
}

.blog-card-section .related-blog-card-img a {
  display: block;
}

.blog-card-section .related-blog-card-img img {
  width: 100%;
  height: 276px;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card-section .related-blog-card-content h3 {
  margin-bottom: 8px;
  line-height: 32px;
}

.blog-card-section .related-blog-card-content h3 a {
  color: #191f33;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  transition: 0.2s ease;
}

.blog-card-section .related-blog-card-content h3 a:hover {
  color: var(--primary-color1);
}

.blog-card-section .related-blog-card-content p {
  color: #767e94;
  font-family: var(--font-inter);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}

.blog-card-section .related-blog-card-content .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color1);
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.blog-card-section .related-blog-card-content .read-more-btn i {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 991px) {
  .blog-details-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .blog-details-new-content .blog-details-header h1 {
    font-size: 32px;
  }

  .blog-details-new-content .blog-details-feature-img img {
    min-height: 240px;
  }

  .blog-card-section .blog-card-section-header h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .blog-details-post-nav {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .blog-details-new-content .blog-details-header h1 {
    font-size: 28px;
  }

  .blog-details-new-content .blog-details-body blockquote {
    padding: 28px;
  }

  .blog-details-new-content .blog-details-body blockquote::before {
    position: static;
    display: block;
    margin-bottom: 14px;
  }

  .blog-card-section .blog-card-section-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .blog-card-section .related-blog-card-img img {
    height: 220px;
  }

  .blog-card-section .related-blog-card-content h3,
  .blog-card-section .related-blog-card-content h3 a {
    font-size: 18px;
    line-height: 28px;
  }
}
.set-interview-modal .modal-header {
    padding-left: 0;
}
.who-we-are-section {
    background-color: var(--white-color);
}

.who-we-are-section .container,
.mission-section .container {
    max-width: 1344px;
}

.who-we-are-wrap {
    display: grid;
    grid-template-columns: minmax(0, 646px) minmax(280px, 382px);
    align-items: center;
    justify-content: space-between;
    gap: 72px;
}

.who-we-are-content span,
.mission-content span {
    display: inline-block;
    color: var(--primary-color1);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
}

.who-we-are-content h2,
.mission-content h2 {
    color: #18191C;
    font-family: var(--font-inter);
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 32px;
    max-width: 646px;
}

.who-we-are-content p,
.mission-content p {
    color: #474C54;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
    max-width: 646px;
}

.who-we-are-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.who-we-are-stat {
    display: flex;
    align-items: center;
    gap: 24px;
}

.who-we-are-stat-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 76px;
    border-radius: 8px;
    background-color: #E7F0FA;
    color: var(--primary-color1);
}

.who-we-are-stat-icon i {
    font-size: 36px;
    line-height: 1;
}

.who-we-are-stat-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.who-we-are-stat-text strong {
    color: #18191C;
    font-family: var(--font-inter);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.who-we-are-stat-text span {
    color: #5E6670;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.partner-wrap .marquee {
    display: flex;
    gap: 80px;
    overflow: hidden;
    user-select: none;
}

.partner-wrap .marquee .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
    min-width: 100%;
    animation: scroll-x 30s linear infinite;
}

.partner-wrap .marquee .marquee__group a img {
    width: 124px;
}

@keyframes scroll-x {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.about-img-section .about-img-wrap img {
    width: 100%;
}

.mission-section {
    background-color: var(--white-color);
}

.mission-wrap {
    display: grid;
    grid-template-columns: minmax(0, 646px) minmax(320px, 580px);
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.mission-content p {
    color: #767F8C;
}

.mission-img {
    display: flex;
    justify-content: flex-end;
}

.mission-img img {
    width: 100%;
    max-width: 580px;
    height: auto;
}

.about-testimonial-wrap {
    display: grid;
    grid-template-columns: minmax(320px, 560px) minmax(0, 1fr);
    align-items: start;
    gap: 60px;
}

.home-new-about-testimonials-widget {
    background: none;
    overflow: hidden;
}

.about-testimonial-content {
    min-width: 0;
}

.about-testimonial-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}

.about-testimonial-heading {
    margin-bottom: 40px;
}

.about-testimonial-heading span {
    display: inline-block;
    color: #06F;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 16px;
}

.about-testimonial-heading h2 {
    color: #191F33;
    font-family: var(--font-inter);
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 0;
}

.about-testimonial-slider {
    overflow: hidden;
}

.about-testimonial-review {
    position: relative;
    padding: 50px 92px 50px 0;
    background-color: #F1F2F4;
}

.about-testimonial-review::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 72px;
    background-color: #F1F2F4;
}

.about-testimonial-review > p {
    color: #18191C;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 24px;
    max-width: 648px;
    padding-left: 15px;
}

.about-testimonial-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0 0 24px;
    padding: 0 0 0 12px;
}

.about-testimonial-rating li {
    color: #FFA500;
    font-size: 28px;
    line-height: 32px;
}

.about-testimonial-author {
    position: relative;
    padding-left: 16px;
}

.about-testimonial-author::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0A65CC;
}

.about-testimonial-author h3 {
    color: #18191C;
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 6px;
}

.about-testimonial-author span {
    color: #767F8C;
    display: block;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.about-testimonial-quote {
    position: absolute;
    right: 92px;
    bottom: 44px;
    width: 72px;
    height: 72px;
    pointer-events: none;
}

.about-testimonial-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 64px;
}

.about-testimonial-nav button {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #E7F0FA;
    color: var(--primary-color1);
    transition: 0.2s ease;
}

.about-testimonial-nav button:hover {
    background-color: var(--primary-color1);
    color: var(--white-color);
}

.register-now-card {
    min-height: 296px;
    display: flex;
    align-items: center;
    padding: 50px;
    border-radius: 12px;
    background-color: #E4E5E8;
}

.register-now-card.register-now-card--employer {
    background-color: #0851A3;
}

.register-now-card.register-now-card--employer .register-now-content h2 {
    color: var(--white-color);
}

.register-now-card.register-now-card--employer .register-now-content p {
    color: rgba(255, 255, 255, 0.8);
}

.register-now-content {
    max-width: 320px;
}

.register-now-content h2 {
    color: #191F33;
    font-family: var(--font-inter);
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 16px;
}

.register-now-content p {
    color: #636A80;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 26px;
}

.register-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 3px;
    background-color: var(--white-color);
    color: var(--primary-color1);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    transition: 0.2s ease;
}

.register-now-btn:hover {
    color: var(--primary-color1);
    box-shadow: 0 10px 22px rgba(25, 31, 51, 0.12);
}

@media (max-width: 1199px) {
    .who-we-are-wrap,
    .mission-wrap,
    .about-testimonial-wrap {
        gap: 48px;
    }

    .who-we-are-content h2,
    .mission-content h2,
    .about-testimonial-heading h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .about-testimonial-review {
        padding-right: 40px;
    }
    .blog-details-sidebar .recent-post-widget {
      flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .who-we-are-wrap,
    .mission-wrap,
    .about-testimonial-wrap {
        grid-template-columns: 1fr;
    }

    .who-we-are-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .who-we-are-stat {
        align-items: flex-start;
        flex-direction: column;
    }

    .mission-img {
        justify-content: center;
    }

    .about-testimonial-img img {
        height: 460px;
    }

    .about-testimonial-review {
        padding: 42px;
    }

    .about-testimonial-review::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .who-we-are-content h2,
    .mission-content h2,
    .about-testimonial-heading h2 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 24px;
    }

    .who-we-are-stats {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .who-we-are-stat {
        align-items: center;
        flex-direction: row;
    }

    .about-img-section .about-img-wrap img {
        object-fit: cover;
        height: 210px;
    }

    .about-testimonial-review {
        padding: 34px 28px;
    }

    .about-testimonial-quote {
        position: static;
        margin-top: 16px;
        width: 56px;
        height: 56px;
    }

    .register-now-card {
        min-height: 260px;
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .who-we-are-content h2,
    .mission-content h2,
    .about-testimonial-heading h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .partner-wrap .marquee,
    .partner-wrap .marquee .marquee__group {
        gap: 24px;
    }

    .partner-wrap .marquee .marquee__group a img {
        width: 110px;
    }

    .about-testimonial-img img {
        height: 340px;
    }

    .register-now-card {
        min-height: 240px;
        padding: 32px 24px;
    }

    .about-testimonial-rating {
      padding: 0;
    }
    .about-testimonial-rating {
      padding: 0;
    }
    .register-now-content h2 {
      font-size: 30px;
    }
}
