/*----------------------------------------------------
@File: Dashboard Frontend Styles

This file contains the main SCSS imports and documentation for the Jobus frontend dashboard.
Edit this file to change the look and feel of the dashboard UI.
----------------------------------------------------*/
/*====================================================
@Template Name: Jobus
@Dashboard Frontend Styles
Table of Contents:
01/ Variables
02/ Mixins
03/ Dashboard Layout & Components
=====================================================*/
:root {
  --jbs-heading_color: var(--jbs_heading_color_opt, #254035);
  --jbs-box_bg_color: var(--jbs_box_bg_color_opt, #EFF6F3);
  --jbs-brand_color_1: var(--jbs_brand_color_1_opt, #31795A);
  --jbs-brand_color_2: var(--jbs_brand_color_2_opt, #244034);
  --jbs-brand_color_3: var(--jbs_brand_color_3_opt, #D2F34C);
  --jbs-brand_color_4: var(--jbs_brand_color_4_opt, #00BF58);
  --jbs-brand_color_5: var(--jbs_brand_color_5_opt, #005025);
}

.jbs-dashboard-pro-notice {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  isolation: isolate;
}
.jbs-dashboard-pro-notice .pro-image-wrap {
  position: relative;
}
.jbs-dashboard-pro-notice .pro-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.jbs-dashboard-pro-notice .pro-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.jbs-dashboard-pro-notice .pro-image-wrap .pro-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  background: linear-gradient(135deg, #ffde4d, #ff9f00);
  border-radius: 999px;
  pointer-events: auto;
}
.jbs-dashboard-pro-notice:focus-visible {
  outline: 2px solid #ffb100;
  outline-offset: 4px;
}

.dashboard-navbar .main-nav .active img {
  filter: brightness(0) saturate(100%) invert(1);
}

.admin-bar .dashboard-navbar {
  margin-top: 32px;
}

.dashboard-navbar {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 100vh;
  overflow-y: auto;
  width: 260px;
  background: #fff;
  padding: 30px 20px 30px;
}
.dashboard-navbar a {
  text-decoration: none !important;
}
.dashboard-navbar::-webkit-scrollbar {
  width: 5px;
}
.dashboard-navbar::-webkit-scrollbar-track {
  background: #fff;
}
.dashboard-navbar::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 0;
}
.dashboard-navbar .user-data .user-avatar {
  width: 75px;
  height: 75px;
  margin: 40px auto 0;
}
.dashboard-navbar .user-data .user-avatar img {
  border-radius: 50%;
}
.dashboard-navbar .user-data .user-avatar.online:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #29d259;
  border: 3px solid #fff;
  right: -3px;
  bottom: 10px;
  z-index: 1;
}
.dashboard-navbar .user-data .user-name-data .jbs-dropdown-menu {
  width: 100%;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
.dashboard-navbar .user-data .user-name-data .jbs-dropdown-menu .jbs-dropdown-item {
  text-transform: capitalize;
  line-height: 45px;
  padding: 0 5px 0 20px;
  color: var(--jbs-heading_color);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  background: transparent;
  position: relative;
  letter-spacing: -0.1px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.dashboard-navbar .user-data .user-name-data .jbs-dropdown-menu .jbs-dropdown-item i {
  font-weight: 700;
  font-size: 1.1em;
}
.dashboard-navbar .user-data .user-name-data .jbs-dropdown-menu .jbs-dropdown-item:hover {
  color: var(--jbs-brand_color_5);
  background: rgba(0, 0, 0, 0.01);
}
.dashboard-navbar .user-data .user-name-data .jbs-dropdown-menu .jbs-dropdown-item img {
  width: 20px;
}
.dashboard-navbar .user-data .user-name {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: var(--jbs-brand_color_2);
  margin: 15px 0 45px;
  border: none;
}
.dashboard-navbar .user-data .user-name:after {
  vertical-align: 3px;
}
.dashboard-navbar .user-data .user_name-btn {
  box-shadow: none;
}
.dashboard-navbar .user-data .user_name-btn:hover, .dashboard-navbar .user-data .user_name-btn:focus {
  background-color: transparent;
}
.dashboard-navbar .main-nav li a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  color: var(--jbs-brand_color_2);
  padding: 20px 5px 20px 20px;
  border-radius: 15px;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.dashboard-navbar .main-nav li a span {
  padding-left: 10px;
}
.dashboard-navbar .main-nav li a:hover {
  color: #3c8968;
}
.dashboard-navbar .main-nav li a.active {
  background: #3f634d;
  color: #fff;
}
.dashboard-navbar .main-nav li a img {
  max-width: 20px;
}
.dashboard-navbar .profile-complete-status {
  margin: 60px 0 75px 20px;
}
.dashboard-navbar .profile-complete-status .progress-value {
  color: var(--jbs-brand_color_1);
}
.dashboard-navbar .profile-complete-status .progress-line {
  height: 5px;
  border-radius: 10px;
  background: #3f634d;
  overflow: hidden;
  margin: 9px 0 3px;
}
.dashboard-navbar .profile-complete-status .progress-line .inner-line {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #d3fa38;
}
.dashboard-navbar .profile-complete-status p {
  font-size: 11px;
  font-weight: 500;
  margin: 0;
  color: rgba(36, 64, 52, 0.5);
}
.dashboard-navbar .logout-btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  color: var(--jbs-brand_color_1);
  margin-left: 20px;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.dashboard-navbar .logout-btn span {
  padding-left: 10px;
}
.dashboard-navbar .logout-btn:hover {
  color: #ff5656;
}
.dashboard-navbar .close-btn {
  font-size: 22px;
  font-weight: bold;
  color: var(--jbs-brand_color_1);
}

.dashboard-body {
  min-height: 100vh;
  background: #f0f5f3;
  margin-left: 260px;
  border-radius: 50px 0 0 50px;
  padding: 150px 55px 50px;
}
.dashboard-body a {
  text-decoration: none;
  color: #000;
}
.dashboard-body a:hover {
  color: #000;
}
.dashboard-body .border-15 {
  border-radius: 15px;
}
.dashboard-body .border-20 {
  border-radius: 20px;
}
.dashboard-body .border-30 {
  border-radius: 30px;
}
.dashboard-body .card-box {
  padding: 45px 60px 50px;
}
.dashboard-body .main-title {
  font-size: 36px;
  color: var(--jbs-brand_color_2);
  margin-bottom: 40px;
}
.dashboard-body .dash-title-two {
  font-size: 20px;
  color: var(--jbs-brand_color_2);
  border-bottom: 1px solid #e3f0eb;
  padding: 25px 0 25px 30px;
  margin: 0;
}
.dashboard-body .dash-title-three {
  font-size: 24px;
  color: var(--jbs-brand_color_5);
  margin: 0 0 30px;
}
.dashboard-body .dash-btn-one {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--jbs-brand_color_5);
  border-radius: 7px;
  line-height: 40px;
  padding: 0px 15px;
  min-width: 135px;
  text-align: center;
  background: rgba(63, 99, 77, 0.2);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  border: none;
}
.dashboard-body .dash-btn-one i {
  font-size: 1.5em;
  font-weight: bold;
  vertical-align: -5px;
  margin-right: 2px;
}
.dashboard-body .dash-btn-one:hover {
  background: var(--jbs-brand_color_5);
  color: #fff;
  text-decoration: none !important;
}
.dashboard-body .dash-btn-one input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dashboard-body .dash-btn-two {
  font-weight: 500;
  color: #fff;
  min-width: 125px;
  text-align: center;
  padding: 0 15px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--jbs-brand_color_1);
  border: none;
  cursor: pointer;
}
.dashboard-body .dash-btn-two:hover {
  background: var(--jbs-brand_color_3) !important;
  color: #000;
  text-decoration: none !important;
}
.dashboard-body button#clear-portfolio-images {
  font-weight: 500;
  color: #fff;
  min-width: 125px;
  text-align: center;
  padding: 0 15px;
  line-height: 45px;
  border-radius: 50px;
  background: #fb0a0a;
  border: none;
  cursor: pointer;
}
.dashboard-body .dash-cancel-btn {
  font-weight: 500;
  color: var(--jbs-brand_color_5);
}
.dashboard-body .dash-cancel-btn:hover {
  color: var(--jbs-brand_color_1);
}
.dashboard-body .dashboard-header {
  position: fixed;
  top: 0;
  right: 55px;
  left: 315px;
  background: #f0f5f3;
  padding: 30px 0;
  z-index: 999;
}
.dashboard-body .dashboard-header .search-form {
  position: relative;
  height: 45px;
  width: 318px;
}
.dashboard-body .dashboard-header .search-form input {
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 25px;
  padding: 0 15px 0 45px;
  background: rgba(0, 0, 0, 0.05);
}
.dashboard-body .dashboard-header .search-form button {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50px;
  border-radius: 25px 0 0 25px;
}
.dashboard-body .dashboard-header .profile-notification .noti-btn {
  height: 45px;
  position: relative;
}
.dashboard-body .dashboard-header .profile-notification .noti-btn:after {
  display: none;
}
.dashboard-body .dashboard-header .profile-notification .noti-btn .badge-pill {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff2730;
  top: 4px;
  right: -7px;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu {
  max-width: 325px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 50px 100px rgba(0, 0, 0, 0.12);
  padding: 25px 18px 30px 22px;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu .notify-list li {
  position: relative;
  padding-right: 10px;
  cursor: pointer;
  margin-top: 17px;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu .notify-list li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #d8d8d8;
  border-radius: 50%;
  right: 0;
  top: 5px;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu .notify-list li.unread:before {
  background: #ff2730;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu .notify-list li h6 {
  font-size: 15px;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
  color: rgba(0, 0, 0, 0.6);
  width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu .notify-list li.unread h6 {
  color: #000;
}
.dashboard-body .dashboard-header .profile-notification .jbs-dropdown-menu .notify-list li .time {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.dashboard-body .dashboard-header .job-post-btn {
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 135px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--jbs-brand_color_1);
}
.dashboard-body .dashboard-header .job-post-btn:hover {
  background: var(--jbs-brand_color_2);
  color: var(--jbs-brand_color_1);
}
.dashboard-body .dashboard-header .dash-mobile-nav-toggler {
  width: 44px;
  height: 38px;
  padding: 0;
  box-shadow: none;
  position: relative;
  z-index: 99;
  border: none;
  border-radius: 5px;
}
.dashboard-body .dashboard-header .dash-mobile-nav-toggler:focus {
  box-shadow: none;
}
.dashboard-body .dashboard-header .dash-mobile-nav-toggler::before,
.dashboard-body .dashboard-header .dash-mobile-nav-toggler::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 2px;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background: var(--jbs-brand_color_1);
}
.dashboard-body .dashboard-header .dash-mobile-nav-toggler span {
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 26px;
  height: 2px;
  margin-top: -1px;
  text-indent: 200%;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  background: var(--jbs-brand_color_1);
}
.dashboard-body .dashboard-header .dash-mobile-nav-toggler::before {
  -webkit-transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
  transform: translate3d(0, -9px, 0) scale3d(1, 1, 1);
}
.dashboard-body .dashboard-header .dash-mobile-nav-toggler::after {
  -webkit-transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 8px, 0) scale3d(1, 1, 1);
}
.dashboard-body .dash-card-one {
  padding: 22px 35px 34px;
  z-index: 1;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.02);
}
.dashboard-body .dash-card-one:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: -10px;
  border-radius: 30px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
}
.dashboard-body .dash-card-one .icon {
  width: 65px;
  height: 65px;
  background: var(--jbs-brand_color_3);
}
.dashboard-body .dash-card-one .value {
  font-size: 36px;
  letter-spacing: -0.36px;
  color: var(--jbs-brand_color_2);
}
.dashboard-body .dash-card-one span {
  color: rgba(0, 0, 0, 0.5);
}
.dashboard-body .user-activity-chart .job-list {
  padding: 25px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.dashboard-body .user-activity-chart .nice-select {
  height: 50px;
  line-height: 46px;
  border: 2px solid #3f634d;
  border-radius: 7px;
  font-size: 15px;
}
.dashboard-body .user-activity-chart .nice-select:after {
  right: 12px;
}
.dashboard-body .user-activity-chart .nice-select .option {
  line-height: 40px;
}
.dashboard-body .user-activity-chart .nice-select .current {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 80%;
}
.dashboard-body .recent-job-tab .wrapper {
  padding: 0 25px 8px 30px;
}
.dashboard-body .recent-job-tab .wrapper .no-jobs-message {
  padding: 16px 0 8px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list {
  position: relative;
  padding-right: 25px;
  margin: 40px 0;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list:first-child {
  margin-top: 30px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .logo {
  width: 40px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title {
  width: calc(100% - 40px);
  padding-left: 22px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title .job_title-mb {
  margin-bottom: 5px;
  margin-top: 0;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title h6 a {
  font-size: 16px;
  color: var(--jbs-brand_color_2);
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title h6 a:hover {
  text-decoration: underline;
  color: var(--jbs-brand_color_5);
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title .meta {
  font-size: 14px;
  color: rgba(36, 64, 52, 0.5);
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-title .meta a {
  color: rgba(36, 64, 52, 0.5);
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action {
  position: absolute;
  top: 0;
  right: 0px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .jbs-dropdown-menu {
  min-width: 120px;
  border: none;
  border-radius: 10px;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .jbs-dropdown-menu .jbs-dropdown-item {
  font-weight: 500;
  font-size: 13px;
  padding: 5px 15px;
  margin: 4px 0;
  color: rgba(var(--jbs-brand_color_2), 0.55);
  background: #fff;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .jbs-dropdown-menu li:last-child .jbs-dropdown-item {
  color: #ff5b5b;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn {
  padding: 8px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span {
  display: block;
  position: relative;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.35);
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span:before, .dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span:after {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  margin: 0;
  padding: 0;
  width: 4px;
  height: 4px;
  border: none;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.35);
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn span:after {
  left: auto;
  right: -7px;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:after {
  display: none;
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:hover span {
  background: var(--jbs-brand_color_3);
}
.dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:hover span:before, .dashboard-body .recent-job-tab .wrapper .job-item-list .job-action .action-btn:hover span:after {
  background: var(--jbs-brand_color_3);
}
.dashboard-body .user-avatar-setting .user-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
}
.dashboard-body .user-avatar-setting .upload-btn {
  font-size: 15px;
  letter-spacing: -0.15px;
  font-weight: 500;
  height: 40px;
  text-align: center;
  border-radius: 7px;
  color: var(--jbs-brand_color_2);
  background: var(--jbs-brand_color_3);
  cursor: pointer;
}
.dashboard-body .user-avatar-setting .upload-btn:hover {
  background: var(--jbs-brand_color_1);
  color: #fff;
}
.dashboard-body .user-avatar-setting .upload-btn input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dashboard-body .user-avatar-setting .upload_btn-width {
  width: 175px;
  line-height: 40px;
}
.dashboard-body .user-avatar-setting .delete-btn {
  font-size: 15px;
  letter-spacing: -0.15px;
  font-weight: 500;
  color: var(--jbs-brand_color_1);
  border: none;
  background: transparent;
  box-shadow: none;
}
.dashboard-body .user-avatar-setting .delete-btn:hover {
  color: #ff5b5b;
}
.dashboard-body .dash-input-wrapper label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--jbs-brand_color_2);
  margin-bottom: 10px;
}
.dashboard-body .dash-input-wrapper .alert-text {
  font-size: 14px;
  letter-spacing: -0.14px;
  color: rgba(0, 0, 0, 0.5);
}
.dashboard-body .dash-input-wrapper input {
  width: 100%;
  height: 55px;
  letter-spacing: -0.16px;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  padding: 0 20px;
  outline: none;
}
.dashboard-body .dash-input-wrapper input:focus {
  border-color: #e5e5e5;
}
.dashboard-body .dash-input-wrapper textarea {
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  padding: 15px 20px;
  max-width: 100%;
  width: 100%;
  resize: none;
}
.dashboard-body .dash-input-wrapper textarea.size-lg {
  height: 230px;
  max-height: 200px;
}
.dashboard-body .dash-input-wrapper .nice-select {
  height: 55px;
  line-height: 55px;
  letter-spacing: -0.16px;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  padding: 0 25px 0 20px;
}
.dashboard-body .dash-input-wrapper .nice-select .option {
  line-height: 38px;
}
.dashboard-body .dash-input-wrapper .nice-select .list {
  border-radius: 7px;
}
.dashboard-body .dash-input-wrapper .map-frame {
  height: 290px;
  border-radius: 8px;
  overflow: hidden;
}
.dashboard-body .dash-input-wrapper .location-pin {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  opacity: 0.18;
}
.dashboard-body .dash-input-wrapper .location-pin:hover {
  opacity: 1;
}
.dashboard-body .dash-input-wrapper .attached-file {
  height: 60px;
  width: 100%;
  border-radius: 10px;
  background: #edf2f7;
  padding: 0 20px;
}
.dashboard-body .dash-input-wrapper .attached-file span {
  font-size: 14px;
}
.dashboard-body .dash-input-wrapper .attached-file .remove-btn {
  font-size: 22px;
  font-weight: 700;
  color: var(--jbs-brand_color_5);
}
.dashboard-body .dash-input-wrapper .attached-file .remove-btn:hover {
  color: #ff5b5b;
}
.dashboard-body .dash-input-wrapper .skills-wrapper {
  padding: 15px 20px 10px;
  background: #f7f7f7;
  border-radius: 15px;
}
.dashboard-body .dash-input-wrapper .skills-wrapper ul {
  margin: 0 -5px;
}
.dashboard-body .dash-input-wrapper .skills-wrapper ul li {
  padding: 0 5px;
  background: none;
}
.dashboard-body .dash-input-wrapper .skills-wrapper ul li.is_tag button {
  font-size: 15px;
  color: var(--jbs-brand_color_5);
  line-height: 42px;
  padding: 0 40px 0 22px;
  background: #ffffff;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.0363735);
  border-radius: 30px;
  position: relative;
}
.dashboard-body .dash-input-wrapper .skills-wrapper ul li.is_tag button i {
  position: absolute;
  font-size: 20px;
  right: 10px;
  top: 0;
}
.dashboard-body .dash-input-wrapper .skills-wrapper ul li.is_tag button i:hover {
  color: #ff5b5b;
}
.dashboard-body .dash-input-wrapper .skills-wrapper ul li.more_tag button {
  font-size: 21px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--jbs-brand_color_3);
  color: #000;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  padding-bottom: 3px;
}
.dashboard-body .dash-input-wrapper .info-text {
  font-size: 14px;
}
.dashboard-body .dash-input-wrapper .info-text p {
  color: rgba(0, 0, 0, 0.5);
}
.dashboard-body .dash-input-wrapper .info-text p a {
  color: var(--jbs-brand_color_5);
}
.dashboard-body .dash-input-wrapper .info-text p a:hover {
  text-decoration: underline;
}
.dashboard-body .dash-input-wrapper .info-text .chng-pass {
  color: var(--jbs-brand_color_5);
  text-decoration: underline;
}
.dashboard-body .dash-input-wrapper .skill-input-data {
  margin: 0 -3px;
}
.dashboard-body .dash-input-wrapper .skill-input-data button {
  font-size: 12px;
  font-weight: 500;
  margin: 10px 3px 0;
  padding: 0 14px;
  height: 25px;
  background: rgba(49, 121, 90, 0.1);
  border-radius: 30px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.dashboard-body .dash-input-wrapper .skill-input-data button:hover {
  background: var(--jbs-brand_color_1);
  color: #fff;
}
.dashboard-body .intro-video-post {
  height: 350px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.dashboard-body .intro-video-post .video-icon {
  width: 65px;
  height: 65px;
  background: var(--jbs-brand_color_2);
  color: #000;
  font-size: 45px;
  line-height: 65px;
  padding-left: 7px;
}
.dashboard-body .intro-video-post .video-icon:hover {
  background: var(--jbs-brand_color_3);
  color: #fff;
}
.dashboard-body .intro-video-post .close {
  color: #fff;
  font-size: 35px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.dashboard-body .intro-video-post.empty {
  border: 1px solid #e3e3e3;
}
.dashboard-body .intro-video-post input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.dashboard-body .dash-accordion-one .jbs-collapse.jbs-show {
  padding-bottom: 20px;
}
.dashboard-body .dash-accordion-one .jbs-accordion-item {
  border: 1px solid #eaeaea;
  border-radius: 15px;
  margin-bottom: 20px;
}
.dashboard-body .dash-accordion-one .jbs-accordion-item .jbs-accordion-button {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  background: transparent;
  border-radius: 0;
  padding: 17px 25px;
  box-shadow: none;
}
.dashboard-body .dash-accordion-one .jbs-accordion-item .jbs-accordion-button:after {
  content: url(../images/dashboard/icons/arrow-icon.svg);
  background-image: none;
}
.dashboard-body .dash-accordion-one .jbs-accordion-item .jbs-accordion-body {
  padding: 8px 25px 0;
}
.dashboard-body .remove-portfolio-item {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 22px;
  color: #000;
}
.dashboard-body .remove-portfolio-item:hover {
  background: #fff;
}
.dashboard-body .tab-filter-btn {
  border: none;
}
.dashboard-body .tab-filter-btn .nav-link {
  line-height: 28px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.08);
  padding: 0 12px;
  margin: 0 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--jbs-brand_color_2);
}
.dashboard-body .tab-filter-btn .nav-link.active {
  background: var(--jbs-brand_color_2);
}
.dashboard-body .short-filter {
  font-size: 15px;
}
.dashboard-body .short-filter .nice-select {
  min-width: 154px;
  height: 32px;
  line-height: 30px;
  font-size: 13px;
  font-weight: 500;
  padding: 0 15px 0 15px;
  background: transparent;
  border: 1px solid #000;
  border-radius: 30px;
}
.dashboard-body .short-filter .nice-select:after {
  right: 14px;
}
.dashboard-body .short-filter .nice-select .list {
  padding: 0;
}
.dashboard-body .short-filter .nice-select .option {
  font-size: 1em;
}
.dashboard-body .job-alert-table th {
  border: 0;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 500;
  color: #244034;
  background: #f0f5f3;
  text-align: left;
}
.dashboard-body .job-alert-table th:first-child {
  border-radius: 7px 0 0 7px;
}
.dashboard-body .job-alert-table th:last-child {
  border-radius: 0 7px 7px 0;
  text-align: right;
}
.dashboard-body .job-alert-table td {
  font-size: 15px;
  vertical-align: middle;
  box-shadow: none;
  padding: 25px 15px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dashboard-body .job-alert-table td:nth-child(1) {
  font-weight: 500;
  color: #244034;
}
.dashboard-body .job-alert-table td:nth-child(2) .job-type {
  color: #00cb74;
}
.dashboard-body .job-alert-table td:nth-child(2) .job-type.part-time {
  color: #ff5757;
}
.dashboard-body .job-alert-table td .info1 {
  font-size: 14px;
  font-weight: normal;
  color: rgba(var(--jbs-brand_color_1), 0.7);
  margin-top: 2px;
}
.dashboard-body .job-alert-table td .job-status {
  position: relative;
  padding-left: 18px;
  color: rgba(var(--jbs-brand_color_1), 0.9);
}
.dashboard-body .job-alert-table td .job-status:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 7px;
}
.dashboard-body .job-alert-table tbody tr:last-child td {
  border: none;
}
.dashboard-body .job-alert-table .active .job-status:before {
  background: #28cc8b;
}
.dashboard-body .job-alert-table .pending .job-status:before {
  background: #fac715;
}
.dashboard-body .job-alert-table .expired .job-status:before {
  background: #ff5050;
}
.dashboard-body .action-dots .jbs-dropdown-menu {
  min-width: 140px;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.dashboard-body .action-dots .jbs-dropdown-menu .jbs-dropdown-item {
  padding: 0 15px;
  line-height: 34px;
  font-size: 14px;
  color: #6a6a6a;
  background: #fff;
}
.dashboard-body .action-dots .jbs-dropdown-menu .jbs-dropdown-item img {
  display: inline-block;
  vertical-align: -1px;
  margin-right: 5px;
}
.dashboard-body .action-dots .jbs-dropdown-menu li:last-child .jbs-dropdown-item:hover {
  color: #ff5b5b;
}
.dashboard-body .action-dots .action-btn {
  padding: 8px;
}
.dashboard-body .action-dots .action-btn span {
  display: block;
  position: relative;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.35);
}
.dashboard-body .action-dots .action-btn span:before, .dashboard-body .action-dots .action-btn span:after {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  margin: 0;
  padding: 0;
  width: 4px;
  height: 4px;
  border: none;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.35);
}
.dashboard-body .action-dots .action-btn span:after {
  top: auto;
  bottom: -7px;
}
.dashboard-body .action-dots .action-btn:after {
  display: none;
}
.dashboard-body .action-dots .action-btn:hover span {
  background: var(--jbs-brand_color_3);
}
.dashboard-body .action-dots .action-btn:hover span:before, .dashboard-body .action-dots .action-btn:hover span:after {
  background: var(--jbs-brand_color_3);
}
.dashboard-body .dash-pagination li {
  font-size: 16px;
  color: #000;
  height: 38px;
}
.dashboard-body .dash-pagination li a {
  width: 40px;
  height: 40px;
  color: #000;
  text-align: center;
  line-height: 38px;
  border: 1px solid #626262;
  border-right: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.dashboard-body .dash-pagination li a:hover, .dashboard-body .dash-pagination li a.active {
  background: var(--jbs-brand_color_5);
  color: #fff;
}
.dashboard-body .dash-pagination li:nth-child(1) a, .dashboard-body .dash-pagination li:nth-child(5) a {
  border-radius: 5px 0 0 5px;
}
.dashboard-body .dash-pagination li:nth-child(3) a, .dashboard-body .dash-pagination li:nth-child(6) a {
  border-radius: 0 5px 5px 0;
  border-right: 1px solid #626262;
}
.dashboard-body .dash-pagination li:nth-child(4) {
  margin: 0 10px;
}
.dashboard-body .new-message-compose {
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 28px;
  color: #3f634d;
  background: #d3fa38;
}
.dashboard-body .message-pagination a {
  color: #000;
}
.dashboard-body .message-pagination span {
  color: #000;
  font-size: 14px;
  margin: 0 8px;
}
.dashboard-body .message-wrapper .message-sidebar {
  border-right: 1px solid #e3e1e1;
  height: 100%;
}
.dashboard-body .message-wrapper .message-sidebar .page-title {
  font-size: 18px;
  color: #000;
}
.dashboard-body .message-wrapper .message-sidebar .action-btn span:before, .dashboard-body .message-wrapper .message-sidebar .action-btn span:after {
  top: 0;
  left: -7px;
}
.dashboard-body .message-wrapper .message-sidebar .action-btn span:after {
  left: auto;
  right: -7px;
}
.dashboard-body .message-wrapper .message-sidebar .search-form {
  height: 50px;
  border-radius: 30px;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid #efefef;
}
.dashboard-body .message-wrapper .message-sidebar .search-form input {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: transparent;
  border: none;
  padding: 0 50px 0 15px;
  font-size: 15px;
}
.dashboard-body .message-wrapper .message-sidebar .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  border-radius: 30px 0 0 30px;
}
.dashboard-body .message-wrapper .message-sidebar .message_filter button {
  font-size: 15px;
  font-weight: 500;
  color: var(--jbs-brand_color_2);
  line-height: 28px;
  border-radius: 30px;
  padding: 0 12px;
  margin: 0 2px;
  position: relative;
}
.dashboard-body .message-wrapper .message-sidebar .message_filter button span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: 10px;
}
.dashboard-body .message-wrapper .message-sidebar .message_filter button.active {
  background: var(--jbs-brand_color_5);
  color: #fff;
}
.dashboard-body .message-wrapper .message-sidebar .message_filter button.active span {
  opacity: 0;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item {
  border-top: 1px solid #f3f3f3;
  padding-top: 28px;
  padding-bottom: 28px;
  cursor: pointer;
  position: relative;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item.selected {
  background: #f0f5f3;
  border-left: 4px solid #779e86;
  border-right: 4px solid #779e86;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item.selected .email-short-preview .file {
  background: #fff;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item.read .email-short-preview:before {
  background: #ff4545;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item.primary .email-short-preview:before {
  background: #52c1ff;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview {
  padding-left: 24px;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  background: #3bda84;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .sender-name {
  font-size: 15px;
  font-weight: 500;
  color: rgba(63, 99, 77, 0.8);
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .date {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .mail-sub {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin: 7px 0 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .mail-text {
  font-size: 15px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dashboard-body .message-wrapper .message-sidebar .email-list-item .email-short-preview .file {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: -0.3px;
  color: rgba(0, 0, 0, 0.5);
  background: #f0f5f3;
}
.dashboard-body .message-wrapper .open-email-container .divider {
  border-bottom: 1px solid #eeeeee;
}
.dashboard-body .message-wrapper .open-email-container .email-header {
  padding-top: 30px;
  padding-bottom: 30px;
}
.dashboard-body .message-wrapper .open-email-container .email-header .logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.dashboard-body .message-wrapper .open-email-container .email-header .sender-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--jbs-brand_color_2);
  margin-bottom: -4px;
}
.dashboard-body .message-wrapper .open-email-container .email-header .sender-email {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.4);
}
.dashboard-body .message-wrapper .open-email-container .email-header .time {
  font-size: 13px;
  color: rgba(36, 64, 52, 0.6);
  margin-bottom: 15px;
}
.dashboard-body .message-wrapper .open-email-container .email-body {
  padding-top: 35px;
  padding-bottom: 15px;
  font-size: 15px;
}
.dashboard-body .message-wrapper .open-email-container .email-body h2 {
  font-size: 24px;
  margin-bottom: 25px;
}
.dashboard-body .message-wrapper .open-email-container .email-body p a {
  color: var(--jbs-brand_color_5);
}
.dashboard-body .message-wrapper .open-email-container .email-footer {
  padding-top: 20px;
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments h6 {
  font-size: 15px;
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .all-download {
  font-size: 14px;
  font-weight: 500;
  color: var(--jbs-brand_color_5);
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file {
  padding: 9px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-right: 15px;
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file:hover {
  background: rgba(var(--jbs-brand_color_5), 0.03);
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file .icon {
  width: 37px;
  height: 37px;
  background: #f0f5f3;
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file .file-name {
  font-size: 15px;
  letter-spacing: -0.3px;
  color: var(--jbs-brand_color_2);
}
.dashboard-body .message-wrapper .open-email-container .email-footer .attachments .file .file-size {
  font-size: 13px;
  letter-spacing: -0.3px;
  color: rgba(var(--jbs-brand_color_1), 0.5);
}
.dashboard-body .candidate-profile-card {
  overflow: visible;
}
.dashboard-body .membership-plan-wrapper {
  border-radius: 10px;
  border: 1px solid var(--jbs-brand_color_2);
}
.dashboard-body .membership-plan-wrapper .column {
  padding: 38px 40px;
}
.dashboard-body .membership-plan-wrapper .column.border-left {
  border-left: 1px solid var(--jbs-brand_color_2);
}
.dashboard-body .membership-plan-wrapper h4 {
  font-size: 20px;
  color: var(--jbs-brand_color_2);
}
.dashboard-body .membership-plan-wrapper p {
  letter-spacing: -0.17px;
  line-height: 30px;
  margin: 0;
}
.dashboard-body .membership-plan-wrapper h3 {
  font-size: 60px;
  color: var(--jbs-brand_color_5);
}
.dashboard-body .membership-plan-wrapper h6 {
  font-size: 18px;
  color: var(--jbs-brand_color_5);
}
.dashboard-body .membership-plan-wrapper .text1 {
  font-size: 14px;
  letter-spacing: -0.14px;
  margin: -4px 0 22px;
}
.dashboard-body .membership-plan-wrapper .text1 span {
  color: #000;
}
.dashboard-body .membership-plan-wrapper .cancel-plan {
  font-size: 15px;
  font-weight: 500;
  color: var(--jbs-brand_color_5);
  text-decoration: underline;
}
.dashboard-body .membership-plan-wrapper .cancel-plan:hover {
  color: #ff2730;
}

.compose-new-email-container {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
}
.compose-new-email-container .new-email-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.compose-new-email-container .new-email-header .btn-group {
  position: absolute;
  top: 6px;
  right: 10px;
  z-index: 1;
}
.compose-new-email-container .new-email-header .btn-group a {
  font-size: 15px;
  padding: 2px;
  color: var(--jbs-brand_color_2);
  margin-left: 8px;
}
.compose-new-email-container .new-email-header .btn-group a[aria-expanded=true] {
  text-decoration: underline;
}
.compose-new-email-container .new-email-header .input-group {
  padding: 10px 0;
  font-size: 14px;
  color: var(--jbs-brand_color_2);
}
.compose-new-email-container .new-email-header .input-group input {
  border: none;
  padding: 0 15px 0 0;
}
.compose-new-email-container .compose-body textarea {
  width: 100%;
  max-width: 100%;
  height: 125px;
  max-height: 125px;
  border: none;
  font-size: 15px;
  padding: 15px 22px;
}
.compose-new-email-container .compose-email-footer {
  padding: 15px 22px;
}
.compose-new-email-container .compose-email-footer .insert-file {
  position: relative;
  cursor: pointer;
}
.compose-new-email-container .compose-email-footer .insert-file input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.compose-new-email-container .reply-btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  min-width: 90px;
  text-align: center;
  padding: 0 15px;
  line-height: 35px;
  border-radius: 50px;
  background: var(--jbs-brand_color_1);
}
.compose-new-email-container .reply-btn:hover {
  background: var(--jbs-brand_color_2);
  color: var(--jbs-brand_color_1);
}

.compose-mail-offcanvas {
  right: 55px;
  bottom: 0;
  max-width: 700px;
  background: #fff;
  padding: 50px 15px 15px;
  border-radius: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: none;
}
.compose-mail-offcanvas.show {
  display: block;
}
.compose-mail-offcanvas .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: none;
}

.remove-account-popup {
  background: #fff;
  margin: 0 auto;
  max-width: 630px;
  border-radius: 10px !important;
  padding: 50px 20px;
}
.remove-account-popup h2 {
  font-size: 36px;
  color: var(--jbs-brand_color_2);
  margin: 20px 0;
}
.remove-account-popup .confirm-btn {
  width: 80px;
  line-height: 40px;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: var(--jbs-brand_color_5);
}
.remove-account-popup .confirm-btn:hover {
  background: #ff5b5b;
}
.remove-account-popup .btn-close {
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0;
  font-size: 16px;
  color: #000;
  opacity: 1;
  box-shadow: none;
}

/*========== Editor Markup Styling ===========*/
#candidate-profile-form .wp-editor-container .quicktags-toolbar .ed_button {
  width: auto;
  height: auto;
}

.media-frame-toolbar .media-toolbar-primary .media-button {
  position: unset;
  transform: none;
}

/*========== Portfolio Styling ===========*/
.portfolio-preview-wrapper .portfolio-image-list {
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.portfolio-preview-wrapper .portfolio-image-list li {
  list-style: none;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  overflow: hidden;
}
.portfolio-preview-wrapper .portfolio-image-list li img {
  width: 100px;
  height: 100px;
}

body.page-template-dashboard .site-header {
  display: none;
}

.dashboard-body .preview {
  display: flex;
  margin-bottom: 1rem;
}
.dashboard-body .preview.hidden {
  display: none;
}
.dashboard-body .preview .attached-file {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.dashboard-body .preview .attached-file span {
  font-size: 0.95rem;
  color: #343a40;
  font-weight: 500;
  word-break: break-word;
}
.dashboard-body .preview .attached-file .remove-btn {
  color: #dc3545;
  transition: all 0.3s ease;
}
.dashboard-body .preview .attached-file .remove-btn:hover {
  color: #bd2130;
  transform: scale(1.1);
}
.dashboard-body #cv-upload-btn-wrapper {
  margin-bottom: 0.5rem;
}
.dashboard-body #cv-upload-btn-wrapper.hidden {
  display: none;
}
.dashboard-body #cv-upload-btn-wrapper input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dashboard-body .file-info {
  display: block;
  margin-top: 0.5rem;
}
.dashboard-body .file-info.hidden {
  display: none;
}
.dashboard-body .file-info small {
  color: #6c757d;
  font-style: italic;
}
.dashboard-body .bg-img-preview {
  display: flex;
  margin-bottom: 1rem;
}
.dashboard-body .bg-img-preview.hidden {
  display: none;
}
.dashboard-body .bg-img-preview .attached-file {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}
.dashboard-body .bg-img-preview .attached-file span {
  font-size: 0.95rem;
  color: #343a40;
  font-weight: 500;
  word-break: break-word;
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-body .bg-img-preview .attached-file .remove-btn {
  color: #dc3545;
  transition: all 0.3s ease;
}
.dashboard-body .bg-img-preview .attached-file .remove-btn:hover {
  color: #bd2130;
  transform: scale(1.1);
}
.dashboard-body #bg-img-upload-btn-wrapper {
  margin-bottom: 0.5rem;
}
.dashboard-body #bg-img-upload-btn-wrapper.hidden {
  display: none !important;
}
.dashboard-body #bg-img-upload-btn-wrapper #video_bg_img_upload_btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}
.dashboard-body .taxonomy-input-wrapper {
  position: relative;
  margin: 0 5px 5px 0;
  display: inline-block;
}
.dashboard-body .taxonomy-input {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  min-width: 150px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}
.dashboard-body input.taxonomy-input:focus {
  border-color: #7B67FF;
  box-shadow: 0 0 0 0.2rem rgba(123, 103, 255, 0.08);
}
.dashboard-body .is_tag {
  background: #F6F4FF;
  border-radius: 4px;
  padding: 5px 12px;
  margin: 0 5px 5px 0;
  display: inline-block;
  font-size: 14px;
  color: #7B67FF;
  font-weight: 500;
}
.dashboard-body .is_tag button {
  background: none;
  border: none;
  color: #7B67FF;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  cursor: pointer;
}
.dashboard-body .is_tag button i {
  font-size: 12px;
  opacity: 0.7;
}
.dashboard-body .is_tag button:hover i {
  opacity: 1;
}
.dashboard-body .more_tag {
  margin-left: 5px;
  display: inline-block;
}
.dashboard-body .more_tag button {
  background: #F6F4FF;
  border: none;
  color: #7B67FF;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.dashboard-body .more_tag button:hover {
  background: #7B67FF;
  color: #fff;
}

/*==== Saved Job ======*/
.dashboard-body .action-button {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}
.dashboard-body .saved-job-tab .saved-jobs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
}
.dashboard-body .saved-job-tab .saved-jobs-header .title, .dashboard-body .saved-job-tab .saved-jobs-header .view-more-btn {
  font-size: 20px;
  color: #244034;
  font-weight: 500;
  margin: 0;
}
.dashboard-body .saved-job-tab .saved-jobs-header .view-more-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.dashboard-body .saved-job-tab .saved-jobs-header .view-more-btn:hover {
  color: #3F634D;
}
.dashboard-body .saved-job-tab .job-list-one {
  border-top: 1px solid #E3F0EB;
  border-radius: 0;
  margin-bottom: 0;
}
.dashboard-body .saved-job-tab .job-list-one:last-child {
  border-radius: 10px;
}

/*============= Candidate Job Applied ================*/
.dashboard-body .company-name .company-placeholder {
  width: 48px;
  height: 48px;
  background: #CBCBCB;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-body .job-actions .action-button .save-btn {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 1px solid #D6D6D6;
  color: #CBCBCB;
}
.dashboard-body .job-actions .action-button .save-btn:hover {
  background: #E7F6EF;
  border-color: #E7F6EF;
  color: #005025;
}

.candidate-delete-account-wrap .title {
  font-size: 24px;
  color: #31795A;
}

.dashboard-body .placeholder_icon {
  position: absolute;
  height: 60px;
  top: 30px;
  right: 0;
  bottom: 0;
  width: 50px;
  text-align: center;
  z-index: 1;
  color: rgba(0, 0, 0, 0.45);
  font-size: 17px;
}
.dashboard-body .placeholder_icon span {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: block;
  position: relative;
}
.dashboard-body .placeholder_icon span::before {
  content: "";
  width: 2px;
  height: 26px;
  background: #000;
  position: absolute;
  top: 16px;
  left: 24px;
  transform: rotate(45deg);
  z-index: 5;
  transition: all 0.2s ease-in-out;
}
.dashboard-body .placeholder_icon span.eye-slash::before {
  opacity: 0;
}
.dashboard-body .placeholder_icon span img {
  position: relative;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
}

.no-jobs-found {
  padding: 24px 35px;
  border-top: 1px solid #E3F0EB;
}

/*# sourceMappingURL=dashboard.css.map */
