@import url('https://rsms.me/inter/inter.css');

:root {
  --theme-primary-color: #A064D9;
  --theme-blue-color: #4C6FFF;
  --theme-indigo-color: #3860E2;
  --theme-success-color: #86DE42;
  --theme-success-dark-color: #29A832;
  --theme-error-dark-color: #DB686A;
  --theme-error-color: #EE5D6B;
  --theme-warning-color: #F9C914;
  --theme-accent-color: #62CBD4;
  --theme-info-color: #AFE2FF;

  --theme-primary-light-color: #A064D91A;
  --theme-blue-light-color: #4C6FFF33;
  --theme-indigo-light-color: #3860E233;
  --theme-success-light-color: #86DE4233;
  --theme-error-light-color: #EE5D6B33;
  --theme-warning-light-color: #F9C9141A;
  --theme-accent-light-color: #62CBD41A;
  --theme-info-light-color: #AFE2FF33;

  --theme-bg-color-1: #FAFAFF;
  --theme-bg-color-2: #F1F0FF;
  --theme-bg-color-3: #E3E0FF;

  --theme-link-color: #7D75EA;
  --theme-light-color: #ffffff;
  --theme-border-color: #E5E8EC;

  --theme-text-dark: #27272E;
  --theme-text-black: #091228;
  --theme-text-dark-gray: #68738D;
  --theme-text-gray: #858D9D;
  --theme-text-light-gray: #6D6D6D;
  --theme-text-darkest-blue: #6D80A6;
  --theme-text-blue-gray: #607D9A;
  --theme-text-gray-neutral: #434343;
  --theme-text-darkest-gray: #7A7A7A;
  --theme-gray-color: #515151;

  --theme-fs-xs: 0.625rem;
  --theme-fs-small: 0.75rem;
  --theme-fs-normal: 0.875rem;
  --theme-fs-medium: 1rem;
  --theme-fs-large: 1.125rem;
  --theme-fs-xl: 1.5rem;
  --theme-fs-xxl: 1.8rem;

  --theme-fw-light: 300;
  --theme-fw-normal: 400;
  --theme-fw-medium: 500;
  --theme-fw-semibold: 600;
  --theme-fw-bold: 700;
  --theme-line-height-25: 25px
}

.do {
  color: #fffde0, #f6effd, #ebf3fd, #f4fcef, #e8fbfd, #ececff, #ffecec,
}

/*----------------custom scrollbar css----------*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #e4e4e4;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

::-webkit-scrollbar-thumb:hover {
  background: #d5b14c;
  transition: 0.5s;
}

/* .style: {
  border: '1px solid #713200',
  padding: '16px',
  color: '#713200',
}, */

.line-height-25 {
  line-height: var(--theme-line-height-25) !important;
}

.text-danger {
  color: var(--theme-error-color);
  font-size: 0.8rem;
}

.text-error {
  color: var(--theme-error-color) !important;
}

.text-success {
  color: var(--theme-success-color) !important;
}

.bg-success {
  background-color: var(--theme-success-color) !important;
}

.bg-error {
  background-color: var(--theme-error-color) !important;
}

.bg-dark-success {
  background-color: var(--theme-success-dark-color) !important;
}

.bg-dark-error {
  background-color: var(--theme-error-dark-color) !important;
}

.bg-primary {
  background-color: var(--theme-link-color) !important;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  border-radius: 12px;
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-normal);
  gap: 10px;
  max-height: 40px;
}

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}

.btn-sm {
  padding: 5px 15px;
  font-size: var(--theme-fs-small);
  gap: 6px;
  max-height: 34px
}

.button-icon {
  transition: filter 0.3s ease;
}

.button-dark:hover .button-icon,
.button-light:hover .button-icon {
  filter: brightness(0);
}

.button-primary:hover .button-icon {
  color: var(--theme-link-color);
}

/* .button-dark.outlined .button-icon {
  filter: brightness(0);
}

.button-dark.outlined:hover .button-icon {
  filter: brightness(0) invert(1);
} */
.button-dark,
.button-dark:visited,
.button-dark:focus {
  background-color: #1B2124;
  border-color: #1B2124;
  color: var(--theme-light-color);
}

.button-dark.outlined,
.button-dark.outlined:visited,
.button-dark.outlined:focus {
  background-color: var(--theme-light-color) !important;
  border-color: #1B2124;
  color: #1B2124;
}

.button-dark:hover,
.button-dark:active {
  color: var(--theme-text-black) !important;
  background-color: var(--theme-light-color) !important;
  border-color: #1B2124 !important;
}

.button-dark:disabled,
.button-dark[disabled] {
  background-color: #EFEFF0 !important;
  color: #7A7A7A !important;
  cursor: not-allowed !important;
  border: none !important;
}

/* Prevent hover when disabled */
.button-dark:disabled:hover,
.button-dark[disabled]:hover {
  background-color: #EFEFF0 !important;
  color: #7A7A7A !important;
  border: none !important;
  cursor: not-allowed !important;
}

.resume-list img.icon-gray {
  transition: filter 150ms ease, opacity 150ms ease;
  filter: none;
}

.resume-list img.icon-gray:hover {
  filter: grayscale(1) brightness(0.46);
}


.button-dark.outlined:hover,
.button-dark.outlined:active {
  background-color: #1B2124 !important;
  border-color: #1B2124;
  color: var(--theme-light-color) !important;
}

.button-light,
.button-light:visited,
.button-light:focus {
  background-color: transparent;
  border-color: var(--theme-light-color);
  color: var(--theme-light-color);
}

.button-light:hover,
.button-light:active {
  border-color: #1B2124 !important;
  color: var(--theme-light-color) !important;
}

.button-primary,
.button-primary:visited,
.button-primary:focus {
  background-color: var(--theme-link-color);
  border-color: var(--theme-link-color);
  color: var(--theme-light-color);
}

.button-primary.outlined,
.button-primary.outlined:visited,
.button-primary.outlined:focus {
  background-color: transparent;
  border-color: var(--theme-link-color) !important;
  color: var(--theme-link-color) !important;
}

.button-primary.outlined:hover,
.button-primary.outlined:active {
  background-color: var(--theme-link-color) !important;
  border-color: var(--theme-link-color) !important;
  color: var(--theme-light-color) !important;
}

.button-primary:hover,
.button-primary:active {
  border-color: var(--theme-link-color) !important;
  color: var(--theme-link-color) !important;
  background-color: var(--theme-light-color);
}

.button-success,
.button-success:visited,
.button-success:focus {
  background-color: var(--theme-success-color);
  border-color: var(--theme-success-color);
  color: var(--theme-light-color);
}


.button-dark-success,
.button-dark-success:visited,
.button-dark-success:focus {
  background-color: var(--theme-success-dark-color);
  border-color: var(--theme-success-dark-color);
  color: var(--theme-light-color);
}

.button-dark-success:hover,
.button-dark-success:active {
  color: var(--theme-text-black) !important;
  background-color: var(--theme-success-light-color) !important;
}

.button-success:hover,
.button-success:active {
  color: var(--theme-text-black) !important;
  background-color: var(--theme-success-light-color) !important;
}

.button-error,
.button-error:visited,
.button-error:focus {
  background-color: var(--theme-error-color);
  border-color: var(--theme-error-color);
  color: var(--theme-light-color);
}

.button-error:hover,
.button-error:active {
  color: var(--theme-text-black) !important;
  background-color: var(--theme-error-light-color) !important;
}

.outlined.loading-btn:after {
  border-color: #000 transparent transparent;
}

.font-xs {
  font-size: var(--theme-fs-xs) !important;
}

.font-small {
  font-size: var(--theme-fs-small) !important;
}

.font-normal {
  font-size: var(--theme-fs-normal) !important;
}

.font-medium {
  font-size: var(--theme-fs-medium) !important;
}

.font-large {
  font-size: var(--theme-fs-large) !important;
}

.font-xl {
  font-size: var(--theme-fs-xl) !important;
}

.font-xxl {
  font-size: var(--theme-fs-xxl) !important;
}

.fw-light {
  font-weight: var(--theme-fw-light) !important;
}

.fw-normal {
  font-weight: var(--theme-fw-normal) !important;
}

.fw-medium {
  font-weight: var(--theme-fw-medium) !important;
}

.fw-semibold {
  font-weight: var(--theme-fw-semibold) !important;
}

.fw-bold {
  font-weight: var(--theme-fw-bold) !important;
}

.color-text-white {
  color: var(--theme-light-color) !important;
}

.color-text-dark {
  color: var(--theme-text-dark) !important;
}

.bg-black {
  background-color: var(--theme-text-black) !important;
}

.color-text-black {
  color: var(--theme-text-black) !important;
}

.color-text-mutted {
  color: var(--theme-text-light-gray) !important;
}

.color-text-darkest-blue {
  color: var(--theme-text-darkest-blue) !important;
}

.color-text-darkest-gray {
  color: var(--theme-text-darkest-gray) !important;
}

.color-gray {
  color: var(--theme-gray-color) !important;
}

.color-text-blue-gray {
  color: var(--theme-text-blue-gray) !important;
}

.color-text-body-light {
  color: #425466;
}

.color-text-paragraph-1 {
  color: var(--theme-text-dark-gray);
}

.color-text-paragraph-2 {
  color: var(--theme-text-gray);
}

.color-text-paragraph-3 {
  color: var(--theme-text-gray-neutral) !important;
}

.color-text-link {
  color: var(--theme-link-color);
}

.color-primary {
  color: var(--theme-link-color) !important;
}

.page-item.active .pagination-link {
  background-color: var(--theme-primary-color) !important;
  border-color: var(--theme-primary-color) !important;
}

.action-menu-button {
  color: inherit;
  background-color: transparent;
  padding: 4px 12px;
  border: 1px solid;
  border-radius: 50%;
}

.nav-underline {
  gap: 1.5rem;
}

.nav-underline .nav-link {
  padding: 16px 12px 14px 12px;
  color: #44444C;
  font-weight: var(--theme-fw-semibold);
  font-size: var(--theme-fs-small);
}

.nav-underline .nav-link.active {
  color: #7637DE;
}

.nav-underline .nav-link:hover,
.nav-underline .nav-link.active {
  border-bottom: 2px solid;
  border-bottom-color: currentColor;
}

.nav-sideline .nav-link {
  padding: 8px 12px 8px 12px;
  color: var(--theme-text-dark-gray);
  font-weight: var(--theme-fw-semibold);
  font-size: var(--theme-fs-small);
  border-left: 2px solid;
}

.nav-sideline .nav-link.active {
  color: var(--theme-link-color);
  margin: 3px 0px;
}

.nav-sideline .nav-link:hover,
.nav-sideline .nav-link.active {
  color: var(--theme-link-color);
  border-left: 2px solid;
  border-left-color: currentColor;
}

input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

label {
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-medium);
  margin-bottom: 10px;
  color: var(--theme-text-black);
}

.register-form-label {
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-normal);
  line-height: 19px;
}

.assesment-setting-form-label {
  font-size: var(--theme-fs-small) !important;
  font-weight: var(--theme-fw-medium) !important;
  /* line-height: 19px; */
}

.form-check-input {
  height: 17px;
  width: 17px;
  border-radius: 4px !important;
  cursor: pointer;
  background-color: transparent;
}

.form-check-input:focus {
  border-color: var(--theme-link-color);
}

.form-check-input:checked {
  background-color: var(--theme-link-color);
  border-color: var(--theme-link-color);
}

.form-check-input[type=radio] {
  border-radius: 50% !important;
}

.form-switch .form-check-input {
  border-radius: 2em !important;
}

.table {
  --bs-table-border-color: var(--theme-border-color);
  background-color: transparent;
}

.table th {
  color: var(--theme-text-darkest-gray) !important;
  font-weight: var(--theme-fw-medium);
  font-size: var(--theme-fs-normal) !important;
  border-bottom-color: transparent !important;
}

/* .table>:not(caption)>*>* {
  color: #3B3F42;
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-light);
} */

.table td {
  border-bottom-color: var(--theme-border-color) !important;
  border-bottom-width: 1px;
}

.table td,
.table th {
  height: 50px;
  vertical-align: middle;
  background-color: transparent;
}

.table-borderless td {
  border: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}

body {
  background-color: var(--theme-light-color);
  font-size: 16px;
  font-family: 'Inter';
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

i {
  display: inline-flex;
}

a {
  color: var(--theme-text-black);
  text-decoration: none;
}

a:hover {
  color: var(--theme-link-color);
}

/* .header {
  padding: 15px 20px;
  float: left;
  width: 100%;
  background-color: var(--theme-light-color);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 12;
} */

.sticky-bar.stick {
  -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #E0E6F6;
}

.topbar {
  padding: 0px 30px;
  height: 65px;
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1050;
  background-color: var(--theme-light-color);
}

.topbar .user-dropdown .sub-dropdown-item {
  padding-left: 20px;
  padding-right: 20px;
}

.topbar .header-right {
  width: 100%;
}

.search-bar {
  position: relative;
  width: 100%;
  margin-right: 80px;
}

.search-bar input {
  height: 44px !important;
  text-indent: 25px;
  border: 1px solid #F0F0F0 !important;
  border-radius: 20px !important;
  background: var(--theme-bg-color-1);
}

.search-bar input::placeholder {
  color: #9A9FA5;
}

.search-bar input:focus {
  box-shadow: none;
}

.search-bar .search-icon {
  position: absolute;
  top: 13px;
  left: 13px;
  color: #DBDBDB;
}

.notification-icon {
  font-size: 22px;
  color: #66789C;
}

.notification-alert-icon {
  /* position-absolute bottom-0 end-0 translate-middle p-1 bg-success border border-light rounded-circle */
  position: absolute;
  bottom: 10px;
  right: -2px;
  font-size: var(--theme-fs-xs);
  color: var(--theme-light-color);
  background: #EE5D6B;
  border-radius: 100%;
  height: 15px;
  width: 15px;
  text-align: center;
}

.content-header {
  background-image: url('/assets/imgs/new_template/content_header_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 175px;
  /* padding: 16px 10px 16px 25px; */
  padding: 0 10px 0 25px;
  color: var(--theme-light-color);
  margin-top: 65px;
}

.content-header-assessment {
  height: 150px;
}

.custom-breadcrumb {
  --bs-breadcrumb-divider: '>';
  border-bottom: 1px solid var(--theme-light-color);
  display: flex;
}

.custom-breadcrumb .breadcrumb {
  margin: 0.8rem 0;
}

.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item::before,
.custom-breadcrumb .breadcrumb-item a {
  color: var(--theme-light-color) !important;
  text-decoration: none;
  font-size: var(--theme-fs-small);
}


.sidebar-body-sections-wrapper {
  display: flex;
  padding: 0 20px;
  margin-top: -65px;
  padding-bottom: 30px;
  min-height: 700px;
  /* overflow-x: auto; */
}

.main-sidebar {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  /* Adjust the blur radius as needed */
  border-radius: 12px;
  box-shadow: 4px 6px 10px 0px rgba(186, 186, 186, 0.25);
  z-index: 1038;
  width: 280px;
  /* padding: 16px 28px 16px 16px; */
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar {
  padding: 6px 28px 6px 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-sidebar:not(.collapsed) .sidebar {
  overflow-x: hidden;
}

.toggle-sidebar-btn {
  color: var(--theme-light-color);
  background-color: var(--theme-text-black);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: -15px;
  top: 26px;
  z-index: 9999;
}

.toggle-sidebar-btn:hover {
  color: var(--theme-text-black);
  background-color: var(--theme-light-color);
}

.main-sidebar.collapsed .sidebar {
  padding: 6px 22px 6px 22px;
  /* opacity: 0; */
}

.main-sidebar.collapsed .toggle-sidebar-btn {
  color: #98B5CD;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.8) 180deg, transparent 180deg);
}

.main-sidebar.collapsed .toggle-sidebar-btn .collapse-icon,
.toggle-sidebar-btn .expand-icon {
  display: none;
}

.toggle-sidebar-btn .collapse-icon {
  display: block;
}

.main-sidebar.collapsed .toggle-sidebar-btn .expand-icon {
  display: block;
}

.main-sidebar.collapsed {
  width: 84px;
  padding: 0;
}

.main-sidebar.collapsed .nav-group {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin: 10px 0;
}

.main-sidebar.collapsed .section-title {
  height: 40px;
  width: 40px;
  text-align: center;
  cursor: pointer;
}

.main-sidebar.collapsed .section-title .title {
  text-align: start;
}

.main-sidebar.collapsed .child-items,
.main-sidebar.collapsed .section-title .title {
  display: none;
}

.main-sidebar .collapsed .nav-item .section-title .title {
  color: inherit !important;
  transition: opacity 0.3s ease;
}

.main-sidebar.collapsed .custom-nav-item {
  box-shadow: none;
  margin: 0 !important;
}

/* .main-sidebar.collapsed .section-title .custom-nav-item {
  padding: 10px;
} */

.main-sidebar.collapsed :not(.nav-item).section-title {
  padding: 10px;
  margin: 0px;
}

.main-sidebar.collapsed .section-title.active,
.main-sidebar.collapsed .section-title .custom-nav-item.active {
  color: #fff !important;
  background-color: linear-gradient(135deg, #7D75EA, #A73394) !important;
  border-radius: 6px !important;
}

.main-sidebar.collapsed .nav-group:hover .section-title {
  color: var(--theme-link-color);
  border-radius: 6px;
}

.main-sidebar.collapsed .nav-group:hover :not(.nav-item).section-title .title {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 99999;
  padding: 10px;
  margin-left: 16px !important;
  width: 260px;
  /* Adjust as needed */
  color: black;
}

.main-sidebar.collapsed .nav-group:hover .child-items {
  display: block !important;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--theme-light-color);
  box-shadow: 0px 2px 10px 0px #AFAFAF40;
  border-radius: 12px;
  width: 260px;
  padding: 10px;
  padding-top: 35px;
  z-index: 9999;
  margin-left: 0px;
}

.main-sidebar.collapsed .nav-group:hover .child-items.tooltip-only {
  padding: 0;
}

.nav-header {
  font-size: var(--theme-fs-medium);
  font-weight: var(--theme-fw-semibold);
  /* padding: 15px 16px; */
  /* margin: 30px 0px 15px 0px; */
  margin: 15px 0px;
  color: var(--theme-text-black);
  position: relative;
}

/* .nav-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -16px;
  width: 3px;
  height: 100%;
  background-color: var(--theme-link-color);
  content: '';
} */

.main-sidebar.collapsed .nav-header {
  color: var(--theme-text-gray);
}

.nav-header svg {
  /* display: none; */
  color: var(--theme-text-gray);
}

.main-sidebar.collapsed .nav-header svg {
  display: block;
}

.custom-nav-item {
  color: #515151 !important;
  padding: 8px 16px 8px 40px;
  margin-bottom: 5px;
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-normal);
  border-radius: 20px !important;
}

/* 
.nav-group.first .custom-nav-item {
  margin-bottom: 20px;
} */

/* .custom-nav-item svg {
  width: 18px;
  height: 18px;
} */

.custom-nav-item span {
  vertical-align: middle;
}

.custom-nav-item:hover {
  color: #858D9D !important;
  background-color: #F4F4F4 !important;
}

/* .custom-nav-item:hover, */
.custom-nav-item.active {
  color: var(--theme-light-color) !important;
  font-weight: var(--theme-fw-normal);
  box-shadow: 0px 2px 10px 0px rgba(175, 175, 175, 0.25);
  /* background-color: var(--theme-link-color) !important; */
  background: linear-gradient(135deg, #7D75EA, #A73394);

}

/* .custom-nav-item span:hover,
.custom-nav-item svg:hover {
  color: var(--theme-light-color) !important;
} */

.custom-nav-footer {
  margin-top: 30px;
  margin-bottom: 150px;
  margin-left: -10px;
  margin-right: 10px;
  background-color: var(--theme-light-color);
  cursor: pointer;
}

.body-section-wrapper {
  flex-grow: 1;
  margin-left: 25px;
  width: calc(100% - 280px);
  position: relative;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assessment-layout .body-section-wrapper {
  margin-left: 0;
}


.section-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  border: 1px solid #E9E9E9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 4px 6px 10px 1px #BABABA40;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  cursor: default;
}

.section-card::-webkit-scrollbar {
  height: 12px;
  /* horizontal scrollbar height */
  width: 12px;
  /* vertical scrollbar width */
}

.section-card::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
}

.section-card.dragging {
  cursor: grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.section-card.no-backdrop {
  backdrop-filter: none;
}

.body-section-header {
  position: absolute;
  top: -53px;
  right: 0;
  width: 100%;
}

.assessment-layout .body-section-header {
  top: -60px;
}

.body-section-header .body-section-title {
  font-size: var(--theme-fs-xl) !important;
  font-weight: var(--theme-fw-semibold) !important;
  color: var(--theme-light-color) !important;
  margin-left: -290px;
  transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.body-section-wrapper.expanded .body-section-header .body-section-title {
  margin-left: -93px;
  transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assessment-layout .body-section-header .body-section-title {
  margin-left: 10px;
}

.body-section-filters {
  margin-bottom: 15px;
}

.body-section-filters .extra-filters {
  margin-top: 15px;
}

.body-section-filters .form-control,
.body-section-filters .searchable-moreserach__control,
.body-section-filters .box-border {
  border-radius: 8px;
  height: 40px;
}

.body-section-filters .searchable-moreserach__control {
  height: 100%;
}


/* ......................... old css (customize) ...................... */
i[class^="fi-rr-"],
i[class*=" fi-rr-"],
span[class^="fi-rr-"],
span[class*="fi-rr-"] {
  vertical-align: middle;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--theme-link-color);
}

input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.form-control {
  border: 1px solid var(--theme-border-color);
  border-radius: 15px;
  background-color: var(--theme-light-color);
  padding: 21px 25px;
  width: 100%;
  color: var(--theme-text-gray-neutral);
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-medium);
  height: 63px;
}


.form-control-title {
  border: 1px solid var(--theme-border-color);
  border-radius: 6px;
  background-color: var(--theme-light-color);
  padding: 0px 15px;
  width: auto;
  color: var(--theme-text-black);
  font-size: 16px;
  height: 29px;
  font-weight: var(--theme-fw-medium);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--theme-link-color);
}

.searchable-select .searchable__control {
  min-height: 60px;
  border-radius: 12px;
}

.searchable-select .searchable__control,
.searchable-moreserach__control {
  padding-left: 6px;
}

.searchable-moreserach__single-value,
.searchable__single-value {
  color: var(--theme-text-dark-gray) !important;
  font-size: var(--theme-fs-normal);
}

.form-control::placeholder,
.file-upload-item,
.searchable-moreserach__placeholder,
.searchable__placeholder {
  color: var(--theme-text-dark-gray) !important;
  font-weight: var(--theme-fw-light) !important;
  font-size: var(--theme-fs-normal) !important;
}

span.btn {
  cursor: unset;
}

.btn.btn-default {
  color: var(--theme-light-color);
  background-color: var(--theme-blue-color);
}

.btn.btn-default:hover {
  background-color: #05264E;
  transform: translateY(-2px);
  transition: 0.2s;
}

.hover-up {
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.hover-up:hover {
  transform: translateY(-3px);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.dropdown-sort.fix-width {
  min-width: 230px;
}

.dropdown-sort .btn.dropdown-toggle {
  border-color: transparent;
}

.dropdown-sort .dropdown-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.dropdown-sort .dropdown-toggle i {
  margin-right: 5px;
}

.dropdown-sort .dropdown-toggle::after {
  display: none;
  border: 0px;
  margin: 0;
}

.text-description {
  font-size: var(--theme-fs-normal);
  color: var(--theme-text-gray);
  /* line-height: 22px; */
}

.job-list-title {
  font-size: var(--theme-fs-normal);
  /* line-height: 22px; */
}

.badge {
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--theme-text-dark);
  font-size: 12px;
  line-height: 15px;
  text-transform: capitalize;
  font-weight: bold;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.badge-sm {
  font-size: 10px;
  padding: 2px 5px;
}

.badge.primary {
  background-color: var(--theme-primary-light-color);
  color: var(--theme-primary-color);
}

.badge.blue {
  background-color: var(--theme-primary-light-color);
  color: var(--theme-primary-color);
}

.badge.indigo {
  background-color: var(--theme-indigo-light-color);
  color: var(--theme-indigo-color);
}

.badge.success {
  background-color: var(--theme-success-light-color);
  color: var(--theme-success-color);
}

.badge.error {
  background-color: var(--theme-error-light-color);
  color: var(--theme-error-color);
}

.badge.warning {
  background-color: var(--theme-warning-light-color);
  color: var(--theme-warning-color);
}

.badge.accent {
  background-color: var(--theme-accent-light-color);
  color: var(--theme-accent-color);
}

.badge.info {
  background-color: var(--theme-info-light-color);
  color: var(--theme-info-color);
}

.badge.gray {
  background-color: var(--theme-border-color);
  color: var(--theme-text-dark-gray);
}

.badge.primary.reverse {
  background-color: var(--theme-primary-color);
  color: var(--theme-light-color);
}

.badge.blue.reverse {
  background-color: var(--theme-primary-color);
  color: var(--theme-light-color);
}

.badge.indigo.reverse {
  background-color: var(--theme-indigo-color);
  color: var(--theme-light-color);
}

.badge.success.reverse {
  background-color: var(--theme-success-color);
  color: var(--theme-light-color);
}

.badge.error.reverse {
  background-color: var(--theme-error-color);
  color: var(--theme-light-color);
}

.badge.warning.reverse {
  background-color: var(--theme-warning-color);
  color: var(--theme-light-color);
}

.badge.accent.reverse {
  background-color: var(--theme-accent-color);
  color: var(--theme-light-color);
}

.badge.info.reverse {
  background-color: var(--theme-info-color);
  color: var(--theme-light-color);
}

.badge.transparent {
  background-color: transparent;
  padding: 0;
}

.btn-tag {
  padding: 6px 10px;
  border-radius: 50px;
  /* min-width: 42px; */
}

.btn-tag.low {
  padding: 5px 15px;
  height: 25px;
  min-width: 56px;
  background: var(--theme-primary-light-color);
  color: var(--theme-primary-color) !important;
  font-size: var(--theme-fs-xs);
}


.btn-tag.dashboard-score {
  padding: 5px;
  height: 29px;
  min-width: 104px;
  background: #EAE2FF;
  color: #442A87 !important;
  font-size: var(--theme-fs-small);
  border-radius: 35px;
}

.btn-tag.complete {
  background-color: var(--theme-success-light-color);
  color: var(--theme-success-color) !important;
}

.btn.btn-tag.high {
  background-color: var(--theme-error-light-color);
  color: var(--theme-error-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.mid {
  background-color: var(--theme-primary-light-color);
  color: var(--theme-primary-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.in-progress {
  /* background-color: #fbe5df;
  color: #ef5a32; */
  background-color: var(--theme-error-light-color);
  color: var(--theme-error-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.planing {
  background-color: var(--theme-indigo-light-color);
  color: var(--theme-indigo-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.applied {
  background-color: var(--theme-indigo-light-color);
  color: var(--theme-indigo-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.interview-scheduled {
  background-color: var(--theme-primary-light-color);
  color: var(--theme-primary-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.job-offered {
  background-color: var(--theme-accent-light-color);
  color: var(--theme-accent-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.job-offer-accepted {
  background-color: var(--theme-success-light-color);
  color: var(--theme-success-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.job-offer-declined {
  background-color: var(--theme-warning-light-color);
  color: var(--theme-warning-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.withdrawn {
  background-color: var(--theme-info-light-color);
  color: var(--theme-info-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.rejected {
  background-color: var(--theme-error-light-color);
  color: var(--theme-error-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.pending {
  /* background-color: #e23c3c0f;
  color: #ef2f2f;*/
  background-color: #9b9b9b42;
  color: #626262;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.accepted {
  background-color: var(--theme-success-light-color);
  color: var(--theme-success-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.connected {
  background-color: var(--theme-success-light-color);
  color: var(--theme-success-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.full-time {
  background-color: var(--theme-warning-light-color);
  color: var(--theme-warning-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.part-time {
  background-color: var(--theme-indigo-light-color);
  color: var(--theme-indigo-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.casual {
  background-color: var(--theme-indigo-light-color);
  color: var(--theme-indigo-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.contract {
  background-color: var(--theme-error-light-color);
  color: var(--theme-error-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.remote {
  background-color: var(--theme-info-light-color);
  color: var(--theme-info-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn-tag.send_by {
  background-color: var(--theme-indigo-light-color);
  color: var(--theme-indigo-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}

.btn.btn-tag.declined {
  background-color: var(--theme-error-light-color);
  color: var(--theme-error-color);
  font-weight: bold;
  letter-spacing: 0.5px;
}


.card-location {
  font-size: var(--theme-fs-small);
  color: var(--theme-text-gray);
  display: inline-block;
  padding: 0px 0px 0px 16px;
  background: url(../imgs/new_template/icons/location.svg) no-repeat left center;
}

.card-location.large {
  background-size: 14px;
  font-size: var(--theme-fs-large);
  padding: 0px 0px 0px 25px;
  /* background-position: 0px 5px; */
}

.card-calendar {
  font-size: var(--theme-fs-large);
  color: var(--theme-text-g);
  display: inline-block;
  padding: 0px 0px 0px 25px;
  background: url(../imgs/new_template/icons/CalendarDots.svg) no-repeat left center;
}

.card-price-money {
  font-size: var(--theme-fs-small);
  color: var(--theme-text-gray-neutral);
  display: inline-block;
  padding-left: 25px;
  background: url(../imgs/new_template/icons/MoneyWavy.svg) no-repeat left center;
}

.good-morning-greet {
  display: inline-block;
  padding-left: 25px;
  background: url(../imgs/new_template/icons/greet.dashboard.svg) no-repeat left center;
}


.global-icon,
.linkedin-icon,
.youtube-icon {
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px 16px;
  padding-left: 36px;
  border-radius: 50px;
  background-color: #EFEFEF;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 10px;
  display: flex;
  align-items: center;
}

.global-icon {
  background-image: url(../imgs/new_template/icons/Globe.svg);
}

.linkedin-icon {
  background-image: url(../imgs/new_template/icons/LinkedinLogo.svg);
}

.youtube-icon {
  background-image: url(../imgs/new_template/icons/YoutubeLogo.svg);
}


.edit-icon {
  display: inline-block;
  padding-left: 25px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 10px;
  font-size: var(--theme-fs-small);
  background-image: url(../imgs/new_template/icons/edit-pencil.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
}

.profile-edit-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  background-image: url(../imgs/new_template/icons/edit-pencil.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.input-group-text {
  border: 1px solid var(--theme-border-color);
}


.card-people-icon {
  font-size: var(--theme-fs-small);
  color: var(--theme-text-gray);
  display: inline-block;
  padding-left: 25px;
  background: url(../imgs/new_template/icons/Peoples.svg) no-repeat left center;
  /* background-size: 18px 18px; */
  /* Optional: resize icon */
  /* line-height: 1.5; */
}

.card-time {
  font-size: var(--theme-fs-small);
  color: var(--theme-text-gray);
  display: inline-block;
  padding: 0px 0px 0px 16px;
  background: url(../imgs/new_template/icons/time.svg) no-repeat 0px 2px;
}

.application-id-icon {
  font-size: var(--theme-fs-small);
  color: var(--theme-text-gray);
  display: inline-block;
  padding: 0px 0px 0px 20px;
  background: url(../imgs/new_template/icons/application-id-icon.svg) no-repeat 0px 2px;
}

.card-briefcase {
  font-size: var(--theme-fs-small);
  display: inline-block;
  color: var(--theme-text-gray);
  padding: 0px 15px 0px 15px;
  background: url(../imgs/new_template/icons/briefcase.svg) no-repeat left center;
}

.card-institute {
  font-size: var(--theme-fs-small);
  display: inline-block;
  color: var(--theme-text-gray);
  padding: 0px 15px 0px 20px;
  background: url(../imgs/new_template/icons/institute.svg) no-repeat left center;
}

.card-style-1 {
  border-radius: 20px;
  background-color: var(--theme-bg-color-1);
  padding: 24px;
  box-shadow: 4px 6px 10px 1px #BABABA40;
  margin-bottom: 24px;
  display: flex;
  width: 100%;
}

.card-style-1 .card-image {
  border: 0.5px solid;
  border-radius: 8px;
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dummy-content-image {
  width: 53px;
  height: 53px;
  background: #F0F0F0;
  border-radius: 31px;
}

.dummy-content-title {
  width: 230px;
  height: 12px;
  background: #F0F0F0;
  border-radius: 31px;
}

.dummy-content-desc {
  width: 130px;
  height: 12px;
  background: #F0F0F0;
  border-radius: 31px;
  margin-top: 10px;
}

.dummy-candidate-dashboard-title {
  width: 70%;
  height: 12px;
  background: #F0F0F0;
  border-radius: 31px;
}

.dummy-candidate-dashboard-desc {
  width: 40%;
  height: 12px;
  background: #F0F0F0;
  border-radius: 31px;
  margin-top: 10px;
}

.card-style-1 .card-image.skyblue {
  background: #D3ECFE;
  border-color: #7EB6DE;
}

.card-style-1 .card-image.green {
  background: #AAEFC8;
  border-color: #4CBD7D;
}

.card-style-1 .card-image.orange {
  background: #FFE2B8;
  border-color: #E4A64D;
}

.card-style-1 .card-image.orange {
  background: #FFE2B8;
  border-color: #E4A64D;
}

.card-style-1 .card-image.pink {
  background: #FFE4E7;
  border-color: #F1B2BD;
}

.card-style-1 .card-image.blue {
  background: #E1E8FF;
  border-color: #556CB9;
}

.card-style-1 .card-image.purple {
  background: #FBE3FF;
  border-color: #DA90E7;
}

.card-style-1 .card-info {
  flex-grow: 1;
}

.card-style-1 .card-info .card-info-text {
  font-size: var(--theme-fs-small);
  font-weight: var(--theme-fw-medium);
  margin-bottom: 2px;
  margin-top: 4px;
}

.card-style-1 .card-info .card-title {
  display: flex;
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-medium);
  margin-bottom: 0;
  margin-top: -5px;
}


.box-padding {
  padding: 20px;
}

.box-header {
  font-weight: var(--theme-fw-semibold);
  font-size: var(--theme-fs-medium);
}

.box-sub-header {
  font-weight: var(--theme-fw-normal);
  font-size: var(--theme-fs-small);
  color: var(--theme-text-dark-gray);
}

.box-profile-image {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* margin-top: 40px;
  margin-bottom: 30px; */
}

.box-profile-image .img-profile {
  width: 105px;
  /* padding-right: 20px; */
}

.box-profile-image .img-profile img {
  display: block;
}

.box-profile-image .info-profile {
  position: absolute;
  bottom: 0;
  right: 10px;
  display: flex;
}

.box-profile-image .info-profile a {
  border-radius: 50%;
  background-color: var(--theme-primary-color);
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.box-profile-image .info-profile a.next-icon {
  margin-right: -30px;
  margin-left: 5px;
}

.box-profile-image .info-profile i {
  color: var(--theme-light-color);
}

.box-border {
  border: 1px solid var(--theme-border-color);
  border-radius: 8px;
  display: inline-block;
  padding: 1px 0px 3px 15px;
  vertical-align: sub;
}

.text-sortby {
  color: var(--theme-text-dark-gray);
  font-weight: var(--theme-fw-light);
  font-size: var(--theme-fs-normal);
  display: inline-block;
  vertical-align: middle;
}

.panel-secondary {
  background-color: var(--theme-bg-color-1);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 4px 6px 10px 1px #BABABA40;
  padding-bottom: 25px;
}

.panel-white {
  background-color: var(--theme-light-color);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 4px 6px 10px 1px #BABABA40;
}

.panel-head {
  padding: 15px 30px;
  margin-bottom: 0px;
  position: relative;
  font-size: var(--theme-fs-large);
  font-weight: var(--theme-fw-semibold);
}

.panel-open-jobs-modal {
  background-color: var(--theme-light-color);
  border-radius: 26px;
  margin-bottom: 24px;
  border: 1px solid #E9E9E9;
}

.panel-body {
  padding-bottom: 1px;
}


.card-style-3 {
  /* background-color: var(--theme-bg-color-2); */
  padding: 10px 30px;
  /* margin-bottom: 10px; */
  /* border-bottom: 1px solid #EFF2FB; */
  display: flex;
  width: 100%;
  align-items: center;
  align-content: center;
}

.card-style-3 .card-image {
  padding-right: 20px;
  position: relative;
}

.card-style-3 .card-image img,
.card-style-3 .card-image div {
  height: 50px !important;
  width: 50px !important;
}

.card-style-3 .title-container {
  padding-top: 5px;
}

.card-style-3 .card-image.online::before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: var(--theme-success-color);
  position: absolute;
  bottom: 1px;
  right: 12px;
}

.card-style-3 .card-image img {
  display: block;
  border-radius: 50% !important;
}

.card-style-3 a {
  text-decoration: none;
}

.card-style-3 .card-title {
  /* width: 40%; */
  margin-bottom: 0px !important;
}

.image-profile {
  height: 56px !important;
  width: 56px !important;
}

.card-style-3 .card-title h6 {
  line-height: 20px;
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-medium);
  margin-bottom: 2px;
  /* margin-top: 4px; */
}

.card-style-3 .card-title .job-position {
  font-size: var(--theme-fs-small);
  line-height: 18px;
  color: var(--theme-text-light-gray);
  display: inline-block;
}

.card-style-3 .card-location {
  /* width: 45%; */
}

.card-style-3 .card-location .location {
  font-size: var(--theme-fs-xs);
  /* line-height: 22px; */
  color: var(--theme-text-gray);
  background: url(../imgs/new_page/dashboard/marker.svg) no-repeat 0px 3px;
  background-size: auto 19px;
  display: inline-block;
  padding: 4px 0px 0px 25px;
  margin-right: 12px;
}

.card-style-3 .card-rating {
  width: 15%;
  min-width: 100px;
  text-align: right;
}



.paginations {
  margin: 20px 0px 50px 0px;
}

.paginations .pager {
  padding: 0px;
  margin: 0;
}

.paginations .pager li {
  display: inline-block;
  vertical-align: middle;
}

.paginations .pager li a {
  display: block;
  padding: 10px 8px;
  font-weight: var(--theme-fw-semibold);
  color: var(--theme-text-dark-gray);
  line-height: 26px;
  text-decoration: none;
  position: relative;
  font-size: var(--theme-fs-normal);
  font-weight: bold;
}

.paginations .pager li a:hover {
  color: var(--theme-link-color);
}

.paginations .pager li a.active {
  color: var(--theme-link-color);
}

.paginations .pager li a.pager-number.active::before,
.paginations .pager li a.pager-number:hover::before {
  content: "";
  height: 28px;
  width: 28px;
  background: var(--theme-bg-color-2);
  opacity: 0.3;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 10px;
  left: -3px;
}

.paginations .pager li .pager-prev {
  background: url(../imgs/new_template/icons/page-prev.svg) no-repeat center;
  height: 48px;
  width: 48px;
  margin-right: 15px;
}

.paginations .pager li .pager-prev:hover {
  background: url(../imgs/new_template/icons/page-prev-hover.svg) no-repeat center;
}

.paginations .pager li .pager-next {
  background: url(../imgs/new_template/icons/page-next.svg) no-repeat center;
  height: 48px;
  width: 48px;
  margin-left: 15px;
}

.paginations .pager li .pager-next:hover {
  background: url(../imgs/new_template/icons/page-next-hover.svg) no-repeat center;
}


.card-grid-2 {
  border-radius: 16px;
  border: 1px solid var(--theme-border-color);
  padding: 20px 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  background: var(--theme-light-color);
}

/* .card-grid-2 i {
  font-size: 20px;
  color: var(--theme-text-light-gray);
  margin-left: 5px;
} */
/* .card-grid-2 i.fi-rr-marker {
  margin-left: 0;
} */
/* .card-grid-2 .btn-apply-now {
  color: var(--theme-blue-color);
} */
.card-grid-2:hover {
  border-color: #B4C0E0;
}

/* .card-grid-2:hover .btn-apply-now {
  color: #ffffff;
  background-color: var(--theme-blue-color);
} */
.card-grid-2 a {
  text-decoration: none;
  /* color: #05264E; */
}

.card-grid-2 a:hover {
  /* color: var(--theme-blue-color); */
}

.card-grid-2 .card-grid-2-image-rd {
  padding: 0px 15px 0px 0px;
  display: inline-block;
  /* width: 30%; */
  /* min-width: 115px; */
  /* max-width: 115px; */
}

.card-grid-2 .card-grid-2-image-rd figure {
  position: relative;
  display: inline-block;
}

.card-grid-2 .card-grid-2-image-rd img {
  border-radius: 14px;
  height: 64px;
  width: 64px;
}

.card-grid-2 .card-grid-2-image-rd.online figure::before {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  content: "";
  position: absolute;
  bottom: 0;
  right: -7px;
  background: #00c070;
}

.card-grid-2 .card-main-header .title {
  font-size: var(--theme-fs-medium);
  display: block;
  font-weight: var(--theme-fw-bold);
}

/* .card-grid-2.grid-bd-16 {
  background-color: #ffffff;
  border-radius: 16px;
}
.card-grid-2.grid-bd-16 .lbl-hot {
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  height: 24px;
  background: var(--theme-blue-color);
  border-radius: 5px;
  color: #ffffff;
  min-width: 42px;
  font-size: 12px;
  line-height: 18px;
} */
.card-grid-2.grid-bd-16 .card-block-info .card-text-price {
  font-size: var(--theme-fs-medium);
  line-height: 26px;
}

.card-grid-2 .card-grid-2-image {
  position: relative;
  padding: 10px;
}

.card-grid-2 .card-grid-2-image .tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 12;
}

.card-grid-2 .card-grid-2-image figure {
  display: block;
}

.card-grid-2 .card-grid-2-image figure img {
  width: 100%;
  border-radius: 12px;
}

.card-grid-2 .card-block-info {
  display: inline-block;
  width: 100%;
  padding: 5px 10px 20px 10px;
}

.card-grid-2 .card-block-info .card-2-img-text {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 4px 0px 4px 40px;
  font-size: var(--theme-fs-normal);
  max-width: 90%;
  min-height: 44px;
}

.card-grid-2 .card-block-info .card-2-img-text .card-grid-2-img-small {
  background: #e4e4e4;
  border-radius: 50%;
  padding: 5px;
  height: 32px;
  width: 32px;
  float: left;
  margin-right: 8px;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  line-height: 30px;
}

.card-grid-2 .card-block-info .card-2-img-text span {
  display: inline-block;
  color: #05264E;
  font-size: var(--theme-fs-normal);
}

.card-grid-2 .card-block-info .card-2-img-text img {
  max-width: 100%;
}

.card-grid-2 .card-block-info .card-text-price {
  color: var(--theme-blue-color);
  font-family: "Nunito", "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.card-grid-2 .card-block-info .card-text-price span {
  font-size: var(--theme-fs-normal);
  color: #4F5E64;
  font-weight: var(--theme-fw-normal);
}

.card-grid-2 .card-block-info .card-2-bottom {
  position: relative;
}

.card-grid-2 .card-block-info .card-2-bottom .btn-grey-small {
  margin-right: 5px;
}

.card-grid-2 .card-block-info .card-2-bottom .btn-tags-sm {
  margin-bottom: 5px;
}

.card-grid-2 .card-block-info .card-2-bottom.card-2-bottom-candidate .btn-brand-hover {
  padding: 15px 33px;
  border: thin solid #B4C0E0;
  font-size: var(--theme-fs-normal);
}

.card-grid-2 .card-block-info .card-2-bottom.card-2-bottom-candidate .btn-brand-hover:hover {
  color: #ffffff;
}

.card-grid-2 .card-block-info .card-grid-2-img-medium {
  padding-left: 55px;
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-semibold);
  font-family: "Nunito", "Plus Jakarta Sans", sans-serif;
  color: #151515;
  line-height: 17px;
}

.card-grid-2 .card-block-info .card-grid-2-img-medium .card-grid-2-img-small {
  background-color: #5aa6ff;
  height: 44px;
  width: 44px;
  border-radius: 8px;
}

.card-grid-2 .card-block-info .card-profile .rate-reviews-small span {
  display: inline-block;
  vertical-align: middle;
}

.card-grid-2 .card-block-info .card-profile .rate-reviews-small span img {
  height: 13px;
  display: flex;
}

.card-grid-2 .employers-info {
  border-top: 1px solid #E0E6F7;
  padding-top: 20px;
}

.card-grid-2 .flash {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 25px;
  width: 25px;
  background: url(../imgs/new_template/icons/flash.svg) no-repeat 0px 0px;
}

.card-grid-2 .card-grid-2-image-left {
  /* padding: 30px 20px 15px 20px; */
  margin-bottom: 15px;
  display: flex;
  position: relative;
}

.card-grid-2 .card-grid-2-image-left .image-box {
  min-width: 52px;
  padding-right: 15px;
}

.card-grid-2 .card-grid-2-image-left .right-info .name-job {
  font-size: var(--theme-fs-large);
  line-height: 26px;
  color: #05264E;
  font-weight: bold;
  display: block;
}

.card-grid-2 .card-grid-2-image-left .right-info .name-job:hover {
  color: var(--theme-blue-color);
}

.card-grid-2 .card-grid-2-image-left .right-info .location-small {
  background: url(../imgs/new_template/icons/location.svg) no-repeat 0px 5px;
  display: inline-block;
  padding: 0px 0px 0px 20px;
  font-size: var(--theme-fs-small);
  color: var(--theme-text-light-gray);
}

.card-bg-white .card-grid-2 {
  background-color: #ffffff;
}

.box-nav-tabs {
  margin-bottom: 20px;
  padding: 0 15px;
  background-color: var(--theme-light-color);
  box-shadow: 0px 4px 16px 0px #2A0F570F;
  border-radius: 8px;
}

.custom-divider {
  color: #EDF2F7;
}

.extra-details-cards {
  padding: 16px 25px 16px 16px;
  background-color: #F7FAFC;
  border-radius: 8px;
  height: 100%;
  /* margin-bottom: 6px; */
}

.extra-details-cards.with-icon {
  background-image: url(../imgs/new_page/candidates/extra-cards-icon.svg);
  background-repeat: no-repeat;
  background-position: 10px 15px;
  padding-left: 45px;
}

.extra-details-cards .title {
  font-size: var(--theme-fs-small);
  font-weight: var(--theme-fw-normal);
  color: var(--theme-text-dark-gray);
}

.extra-details-cards .description {
  font-size: var(--theme-fs-normal);
  font-weight: var(--theme-fw-medium);
  color: var(--theme-text-dark);
}

.sidebar-border,
.sidebar-shadow {
  box-shadow: 0px 3px 8px -1px #3232470D, 0px 0px 1px 0px #0C1A4B3D;
  border-radius: 16px;
  background-color: var(--theme-light-color);
  padding: 22px;
  margin-bottom: 25px;
  border: 1px solid #E9E9E9;
}

.sidebar-no-shodow {
  padding: 22px;
  margin-bottom: 25px;
  border-radius: 16px;
}

.sidebar-list-job ul li {
  padding-bottom: 25px;
  display: flex;
}

.sidebar-list-job ul li .sidebar-icon-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--theme-border-color);
  padding: 10px;
  border-radius: 8px;
  margin-right: 10px;
}

.sidebar-list-job ul li .sidebar-icon-item i {
  font-size: var(--theme-fs-large);
  color: var(--theme-text-gray)
}

.sidebar-list-job ul li .sidebar-item-icon {
  /* padding: 10px; */
  margin-right: 10px;
}

.sidebar-list-job ul li .sidebar-item-icon i {
  font-size: 22px;
}

.sidebar-list-job ul li .sidebar-text-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-list-job ul li .sidebar-text-info .text-description {
  font-size: var(--theme-fs-small);
}

.sidebar-list-job ul li .sidebar-text-info strong {
  line-height: 24px;
  word-break: break-word;
  font-size: var(--theme-fs-medium);
  font-weight: var(--theme-fw-semibold);
  color: var(--theme-text-dark);
}



.card-style-2 {
  border-radius: 16px;
  background-color: var(--theme-light-color);
  padding: 20px 16px;
  margin-bottom: 15px;
  border: 1px solid var(--theme-border-color);
  display: flex;
  /* width: 100%; */
  align-items: center;
  align-content: center;
}

.card-style-2 .card-head {
  /* width: 55%; */
  display: flex;
}

.card-style-2 .card-head .card-image {
  /* max-width: 67px; */
  /* padding-right: 15px; */
  /* width: 100%; */
}

.card-style-2 .card-head .card-image img {
  display: block;
  border-radius: 16px;
}

.card-style-2 .card-head .card-title {
  /* width: 100%; */
  margin-bottom: 0px !important;
}

.card-style-2 .card-head .card-title .job-type {
  font-size: 12px;
  line-height: 18px;
  color: var(--theme-text-light-gray);
  background: url(../imgs/page/dashboard/job-type.svg) no-repeat 0px 3px;
  display: inline-block;
  padding: 0px 0px 0px 15px;
  margin-right: 12px;
}

.card-style-2 .card-head .card-title .time-post {
  font-size: 12px;
  line-height: 18px;
  color: var(--theme-text-light-gray);
  background: url(../imgs/page/dashboard/time.svg) no-repeat 0px 3px;
  display: inline-block;
  padding: 0px 0px 0px 15px;
  margin-right: 12px;
}

.card-style-2 .card-head .card-title .location {
  font-size: 12px;
  line-height: 18px;
  color: var(--theme-text-light-gray);
  background: url(../imgs/page/dashboard/marker.svg) no-repeat 0px 3px;
  display: inline-block;
  padding: 0px 0px 0px 15px;
  margin-right: 12px;
}

.card-style-2 .card-tags {
  /* width: 40%; */
}

.card-style-2 .card-price {
  /* width: 15%; */
  min-width: 100px;
  text-align: right;
}

.card-style-2 .card-price strong {
  color: var(--theme-link-color);
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
}

.card-style-2 .card-price span {
  color: var(--theme-text-light-gray);
  font-size: 12px;
  line-height: 12px;
}


.display-list .card-style-2 {
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.vertical-line:not(:last-child) {
  margin: 20px 30px;
  border: 1px solid #F0F0F0;
}

.job-vertical-line:not(:last-child) {
  border: 1px solid #F0F0F0;
}

.display-list .card-style-2:hover {
  box-shadow: 0px 10px 20px -5px rgba(6, 36, 92, 0.06);
  border-color: #B4C0E0;
}

.display-list .card-style-2 .card-head {
  /* width: 100%; */
}

.display-list .card-style-2 .card-head .card-image {
  margin-bottom: 30px;
}

.display-list .card-style-2 .card-head .card-title {
  margin-bottom: 30px !important;
}

.display-list .card-style-2 .card-tags {
  /* width: 50%; */
}

.display-list .card-style-2 .card-price {
  /* width: 50%; */
}

.display-list .card-style-2 .card-price strong {
  font-size: 24px;
  line-height: 40px;
}

.display-list .card-style-2 .card-price span {
  font-size: 18px;
  line-height: 19px;
}

.cb-container {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  line-height: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: var(--theme-light-color);
  border: 2px solid var(--theme-border-color);
  border-radius: 4px;
}


.cb-container input:checked~.checkmark {
  border: 3px solid var(--theme-primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.cb-container input:checked~.checkmark:after {
  display: block;
}

.cb-container .checkmark:after {
  left: 0px;
  top: -1px;
  width: 11px;
  height: 12px;
  background: var(--theme-primary-color) url(../imgs/new_template/icons/tick.svg) no-repeat center;
}

.cb-container span {
  font-size: var(--theme-fs-medium);
  font-weight: var(--theme-fw-normal);
}

.box-upload {
  border: 1px solid var(--theme-border-color);
  border-radius: 12px;
  background-color: var(--theme-light-color);
  position: relative;
  background: #ffffff url(../imgs/new_page/post-job/plus.svg) no-repeat right;
}

.box-upload .add-file-upload {
  /* width: 100% !important;
  position: relative;
  display: inline-block;
  vertical-align: middle; */
  width: 0 !important;
}

.box-upload .add-file-upload input {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.box-upload .file-upload-item {
  position: relative;
  margin-left: 10px;
  width: calc(100% - 70px);
  color: var(--theme-text-gray);
}

.box-upload .file-upload-item .file-name {
  margin-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* Button Spinner Loader */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: btn-spin 1s linear infinite;
}

@keyframes btn-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1399.98px) {
  .panel-body {
    /* padding: 0 25px 25px; */
    padding-bottom: 1px;
  }

  .dummy-content-title {
    width: 120px;
    height: 12px;
  }

  .dummy-content-desc {
    width: 70px;
    height: 12px;
  }
}



@media (max-width: 767.98px) {
  .card-style-2 {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .card-style-2 .card-title {
    width: 86%;
  }

  .card-style-2 .card-image {
    max-width: none;
    width: 14%;
  }

  .card-style-2 .card-tags {
    width: 60%;
    margin-top: 20px;
  }

  .card-style-2 .card-price {
    width: 40%;
    margin-top: 20px;
  }
}

@media (max-width: 484.98px) {
  .card-style-3 {
    flex-wrap: wrap;
  }

  /* .card-style-3 .card-image {
    width: 0%;
  } */
  .card-style-3 .card-title {
    width: 80%;
  }

  .card-style-3 .card-location,
  .card-style-3 .card-rating {
    margin-top: 15px;
    width: 50%;
  }

  .paginations .pager li .pager-prev {
    margin-right: 0px;
  }

  .paginations .pager li .pager-next {
    margin-left: 0px;
  }

  .paginations .pager li a {
    line-height: 24px;
    font-size: var(--theme-fs-small);
  }

  .card-style-2 .card-title {
    width: 75%;
  }

  .card-style-2 .card-image {
    width: 25%;
  }

  .card-style-2 .card-tags {
    width: 70%;
  }

  .card-style-2 .card-price {
    width: 30%;
    min-width: auto;
  }

  .box-padding {
    padding: 20px 15px;
  }

  .card-style-3 .dashBtn {
    justify-content: flex-start !important;
  }

  .card-style-3 .dashBtn .dashBtnIn {
    flex-direction: row !important;
  }
}

.sync-warning {
  color: var(--theme-error-color);
  background-color: var(--theme-error-light-color);
  padding: 10px;
  font-weight: 500;
  border-radius: 8px;
  margin: auto;
  text-align: center;
  max-width: 700px;
  margin-bottom: 20px;
}


.quickCard-Margin {
  margin-bottom: 1.875rem;
}



.quickCard {
  border: 0;
  box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
  -ms-box-shadow: 0px 0px 10px 0px rgba(82, 63, 105, 0.1);
}

.quickCard {
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #e6e4e9;
  border-radius: 8px;
}


.checkbox-wrapper-18 .round {
  position: relative;
}

.checkbox-wrapper-18 .round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  width: 28px;
  display: block;
}

.checkbox-wrapper-18 .round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 8px;
  opacity: 0;
  position: absolute;
  top: 9px;
  transform: rotate(-45deg);
  width: 12px;
}

.checkbox-wrapper-18 .round input[type="checkbox"] {
  visibility: hidden;
  display: none;
  opacity: 0;
}

.checkbox-wrapper-18 .round input[type="checkbox"]:checked+label {
  background-color: #86DE42;
  border-color: #86DE42;
}

.checkbox-wrapper-18 .round input[type="checkbox"]:checked+label:after {
  opacity: 1;
}


.checkbox-wrapper-18.pending .round input[type="checkbox"]+label {
  background-color: var(--theme-border-color);
  border-color: var(--theme-text-gray);
}

.checkbox-wrapper-18.pending .round input[type="checkbox"]+label:after {
  opacity: 0;
}

.tooltipBlack {
  color: black;
}


.blur-effect {
  filter: blur(5px);
  /* Adjust the value to control the level of blur */
  transition: filter 0.3s ease;
  /* Smooth transition when applying/removing blur */
}


.select-dropdown {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--theme-border-color);
  backdrop-filter: blur(3px);
  padding: 8px 10px;
  border-radius: 8px;
}


.select-badge {
  padding: 3px 8px;
  width: 32px;
  font-weight: 400;
  font-Size: var(--theme-fs-normal) !important;
  background-color: #7C74EA;
  color: #F3F0FD;
}

.select-dropdown-menu {
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--theme-border-color);
  min-width: 12rem;
}

.select-dropdown-text {
  /* font-weight: 400;  */
  font-size: var(--theme-fs-normal) !important;
}

.select-dropdown-text-icon {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--theme-text-light-gray) !important;
}

.select-dropdown-text-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--theme-text-light-gray);
}

.select-dropdown-icon {
  font-size: 18px;
}

.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.sidebar-icon-active {
  color: var(--theme-link-color);
}

.sidebar-icon-inactive {
  color: var(--theme-gray-color);
}

.truncated-html,
.truncated-html * {
  color: var(--theme-text-gray-neutral) !important;
  font-size: var(--theme-fs-small) !important;
  line-height: 1.5;
}

.truncated-html {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.buffering-loader {
  width: 30px;
  height: 30px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  /* Semi-transparent gray */
  border-top: 4px solid #3498db;
  /* Blue for active progress */
  border-radius: 50%;
  animation: spin 1.2s linear infinite, fadeInOut 1.5s ease-in-out infinite;
}

/* Spinning animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Fade in-out effect */
@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}


/* --- Registration Responsive Redesign --- */
.reg-main-layout {
  min-height: 100vh;
  background: #fff;
}

.reg-main-content {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.reg-flex {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.reg-panel-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  background: #EFEEFF;
  order: 0;

}

.reg-title-desc {
  /* width: calc(100% - 58px ); */
  margin: 52px;
  /* max-width: 576px; */
}

.reg-title {
  margin-bottom: 32px;
  line-height: 36px;
  background: linear-gradient(to bottom, #8271E5 0%, #AC54BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  max-width: 576px;
}

.reg-subtitle {
  font-weight: var(--theme-fw-semibold);
  margin-bottom: 17px;
  font-size: 20px;
}

.reg-panel-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  order: 1;
}

.reg-welcome {
  text-align: center;
  line-height: 38px;
  font-size: 30px;
  font-weight: 700;
}

.reg-getstarted {
  margin: 10px 0px 37px 0px;
  text-align: center;
  color: var(--theme-text-darkest-gray);
  font-weight: 300;
  font-size: 15px;
}

.reg-social-btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 22px;
  align-items: center;
}

.reg-social-btns-inner {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.reg-social-btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
  color: #000;
}

.reg-social-icon {
  width: 24px;
  height: 24px;
}

.reg-or-divider {
  width: 70%;
  display: flex;
  align-items: center;
}

.reg-or-divider hr {
  flex: 1;
  border: none;
  background: #EBEBEB;
  opacity: 1;
}

.reg-or-divider span {
  margin: 0 15px;
  font-size: 16px;
  font-weight: 300;
}

.reg-email-btn {
  width: 70%;
  padding: 0.75rem;
  border-radius: 6px;
  background: #000;
  color: #fff;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 22px 0px;
  transition: background 0.2s;
}

.reg-signin-link {
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.reg-signin-link a {
  color: var(--theme-link-color);
}

.reg-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100% !important;
  z-index: 0;
}

.reg-form-logo {
  width: 140px !important;
  z-index: 2 !important;
}

.reg-form-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 24px;
  /* overflow-y: auto;
  overflow-x: auto; */
  overflow: hidden;
  min-height: calc(100vh - 120px);
}

.reg-form-wrapper {
  padding: 58px 74px;
}

.reg-form-card::-webkit-scrollbar {
  display: none;
}

.reg-form-card-header {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 32px;
}

.reg-form-card-content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
}

.task-checklist-gif {
  width: auto;
  height: 330px;
}

.reg-form-title {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 56px;
}

.reg-form-boarding-title {
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.reg-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.reg-form-col {
  flex: 1 1 45%;
  min-width: 180px;
}

.reg-form-col-full {
  flex: 1 1 100%;
  min-width: 220px;
}

.reg-form-group {
  display: flex;
  flex-direction: column;
}

.reg-form-label {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 18px;
  color: #313131;
  line-height: 19px;
}

.reg-country-flag {
  font-size: 18px;
  margin-right: 4px;
  margin-left: 21px;
}

.reg-country-dial {
  font-size: 18px;
  font-weight: 600;
  margin-right: 2px;
}

.reg-country-arrow {
  font-size: 12px;
  color: var(--theme-text-darkest-gray);
}

.reg-country-option {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
  height: 44px;
  box-sizing: border-box;
}

.reg-country-option.selected,
.reg-country-option:hover {
  background: #f0f0f0;
}

.reg-country-name {
  margin-right: 8px;
  font-size: 18px;
  font-weight: 600;
}

.reg-otp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.reg-otp-title {
  font-size: 16px;
  font-weight: 300;
}

.reg-otp-desc {
  font-size: 15px;
  color: #7A7A7A;
  font-weight: 300;
}

.reg-otp-timer {
  font-size: 1rem;
  color: #7A7A7A;
  font-weight: 500;
}

.reg-otp-inputs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 30px;
}

.reg-otp-input {
  flex: 1 1 calc((100% - 36px) / 4);
  max-width: 160px;
  min-width: 44px;
  height: 65px;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 24px);
  border: 1px solid #7D75EA;
  border-radius: 15px;
  color: #7D75EA;
}

.reg-otp-divider {
  width: 16px;
  height: 2px !important;
  background-color: #7A7A7A;
  border: none;
}

.reg-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%
}

.reg-otp-links {
  display: flex;
  justify-content: end;
  margin: 20px 0px 30px 0px;
  gap: 2rem;
  flex-direction: row;
}

.reg-otp-link {
  font-size: 14px;
  color: var(--theme-text-darkest-gray);
  margin-bottom: 0;
}

.reg-otp-link a {
  color: var(--theme-link-color) !important;
  text-decoration: none;
}

.reg-otp-link a:hover {
  color: var(--theme-link-color) !important;
  text-decoration: underline;
}

.reg-form-card-center {
  text-align: center;
  padding: 2rem 1rem;
}

.reg-form-complete-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 38px;
  margin-top: 44px;
}

.onboarding-form-complete-title {
  font-size: 30px;
  font-weight: bold;
  line-height: 38px;
}

.onboarding-form-complete-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: #9C9C9C;
  margin-top: 10px;
}

.reg-form-complete-desc {
  font-size: 23px;
  margin: 25px 0px 30px 0px;
}

.button-nav-link {
  padding: 17px;
  font-size: 16px !important;
  border-radius: 15px;
  justify-content: space-between !important;
  display: flex !important;
}

.previous-step-button {
  padding: 17px;
  font-size: 18px !important;
  border-radius: 15px;
}

.margin-top-container {
  margin: 35px 0px 53px 0px;
  gap: 20px;
}

.btn-text-dashboard {
  font-size: 18px;
}

.reg-country-flag-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  height: 100%;
  justify-content: center;
  position: absolute;
}

.reg-unified-dropdown {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #E5E8EC;
  border-radius: 6px;
  height: 250px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.reg-country-search>div {
  padding: 10px;
  border-bottom: 1px solid #E5E8EC;
  min-height: 60px;
  max-height: 60px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.reg-country-list {
  flex: 1;
  overflow-y: auto;
  box-sizing: border-box;
  min-height: 190px;
  max-height: 190px;
}

.reg-country-no-results {
  padding: 20px;
  text-align: center;
  color: var(--theme-text-darkest-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
}

.social_media_icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.mb-container {
  margin-bottom: 15px;
}

.reg-password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.reg-password-input {
  padding-right: 50px !important;
}

.reg-password-toggle-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.reg-password-toggle-btn svg {
  transition: opacity 0.2s ease;
}

.reg-password-toggle-btn:hover svg {
  opacity: 0.8;
}

.reg-feature-badges {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px 16px;
  width: 100%;
  margin-top: 0;
}

.reg-feature-badge {
  background: #fff;
  border: 1px solid #BAB5FD;
  border-radius: 50px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  /* max-width: calc(50% - 8px); */
  transition: all 0.2s ease;
}

.reg-feature-badge span {
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  /* text-align: center; */
  line-height: 1.3;
}

.welcome-image-container {
  position: absolute;
  top: 31px;
  left: 44px;
  z-index: 10
}

.password-requirements {
  padding: 0px 16px;
  filter: blur(2px);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.password-requirements.active {
  filter: blur(0px);
  opacity: 1;
}

.requirement-item {
  display: flex;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.requirement-item:last-child {
  margin-bottom: 0;
}

.requirement-icon {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  margin-right: 8px;
  transition: all 0.2s ease;
  color: #6c757d;
}

.requirement-icon.valid {
  background-color: var(--theme-success-dark-color);
  color: #fff;
}

.requirement-icon.invalid {
  background-color: var(--theme-error-dark-color);
  color: #fff;
}

.requirement-text {
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
  color: #000000;
}

.requirement-text.valid {
  color: var(--theme-success-dark-color);
}

.requirement-text.invalid {
  color: var(--theme-error-dark-color);
}

.mob-hiree365-logo {
  display: none;
}

.login-social-btn {
  /* width: 50%; */
  padding: 12px;
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 14px;
  font-weight: 300;
  transition: background 0.2s;
  color: #000;
}

.login-social-icon {
  width: 18px;
  height: 18px;
}

.login-or-divider {
  /* width: 70%; */
  display: flex;
  align-items: center;
  margin: 30px 0px;
}

.login-or-divider hr {
  flex: 1;
  border: none;
  background: #EBEBEB;
  opacity: 1;
}

.login-or-divider span {
  margin: 0 15px;
  font-size: 16px;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .btn {
    padding: 8px 15px;
  }

  .card-style-3 {
    padding: 8px 15px;
  }

  .reg-title-desc {
    margin: 52px 0px;
    padding: 0 30px;
  }

  .reg-social-btns-inner {
    width: 100%;
  }

  .reg-social-btn,
  .reg-or-divider,
  .reg-email-btn {
    width: 90%;
  }

  .login-social-btn {
    font-size: 12px;
  }
}

/* Responsive styles */
@media (max-width: 991px) {

  .reg-social-btn,
  .reg-or-divider,
  .reg-email-btn {
    width: 100%;
  }

  .reg-form-complete-title {
    font-size: 30px;
  }

  .reg-form-complete-desc {
    font-size: 18px;
  }

  .reg-form-logo {
    width: 120px !important;
    margin-bottom: 30px;
  }

  .welcome-image-container {
    top: 20px;
    left: 20px;
    z-index: 10
  }

  /* .reg-feature-badges {
    flex-direction: column;
  } */

  /* .reg-feature-badge {
    min-width: 100%;
  } */
}

@media (max-width: 767px) {
  .reg-main-layout {
    padding: 0;
  }

  .reg-flex {
    flex-direction: column;
  }

  .reg-unified-dropdown {
    height: 180px;
  }

  .reg-country-search>div {
    min-height: 50px;
    max-height: 50px;
    padding: 8px;
  }

  .reg-country-option {
    height: 40px;
    padding: 8px 10px;
  }

  .reg-panel-left,
  .reg-panel-right {
    max-width: 100%;
    flex: 1 1 100%;
    height: auto;
    position: relative;
  }

  .reg-panel-left {
    order: 1;
  }

  .reg-panel-right {
    padding: 30px !important;
    order: 0;
  }

  .reg-form-boarding-title {
    font-size: 24px;
  }

  .reg-welcome {
    font-size: 26px;
  }

  .reg-getstarted {
    margin: 0px 0px 37px 0px;
  }

  .reg-form-card-header {
    justify-content: center;
    margin-bottom: 0px;
  }


  .mob-hiree365-logo {
    width: 100px;
    display: block;
  }

  .reg-form-card {
    min-height: calc(100vh - 60px);
  }

  .reg-form-wrapper {
    padding: 20px;
  }

  .reg-form-row {
    flex-direction: row;
    max-width: 100%;
    gap: 0.5rem;
  }

  .reg-form-col,
  .reg-form-col-full {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }

  .reg-title-desc {
    padding: 0px 20px;
  }

  .reg-title {
    font-size: 23px;
    line-height: 27px;
  }

  .reg-form-title {
    margin-bottom: 30px;
  }

  .reg-otp-links {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .margin-top-container {
    margin-top: 30px;
  }

  /* .button-nav-link,
  .previous-step-button {
    padding: 14px;
    font-size: 12px !important;
  } */

  .social_media_icon {
    width: 24px;
    height: 24px;
  }

  .reg-country-search>div {
    min-height: 50px;
    padding: 8px;
  }

  .reg-country-option {
    height: 40px;
    padding: 8px 10px;
  }

  .reg-country-no-results {
    min-height: 50px;
    padding: 15px;
  }

  /* .reg-feature-badges {
    flex-direction: column;
  } */

  .reg-feature-badge span {
    font-size: 12px;
  }
}

@media (max-width: 512px) {
  .reg-country-dial {
    font-size: 13px;
    font-weight: 500;
  }

  .reg-country-name {
    font-size: 14px;
    font-weight: 500;
  }

  .reg-otp-input {
    width: 48px;
    height: 45px;
  }

  .requirement-text {
    font-size: 12px;
  }

  .button-nav-link {
    padding: 14px;
    font-size: 12px !important;
  }
}

.assessment-start-icon {
  border-radius: 50px;
  padding: 15px;
  background-color: #EDECFF;
}

.assessment-result-block {
  display: flex;
  flex-direction: column;
  gap: 15px;

}

.assessment-attended-block {
  display: flex;
  flex-direction: row;
  gap: 25px;
  max-width: 521px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
}

.card-qualification {
  background: #F8F8FF;
  border-radius: 8px;
  padding: 7px 11px;
  transition: box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
}

.card-qualification .title {
  font-weight: 300;
  color: #000;
  margin-right: 17px;
  font-size: 14px;
}

.score-card-assessment {
  background: #9BF9A1;
  padding: 15px;
  display: flex;
  justify-content: center;
  border-radius: 13px;
}

.thumb-up-icon {
  position: relative;
  bottom: -20px;
  transform: translateX(-71%);
  width: 38px;
  height: 38px;
}

/* Permission Pills Custom Classes */
.permission-panel {
  padding: 32px;
  box-shadow: none;
  border: 1px solid #E0E6F6;
  border-radius: 16px;
  background: #FAFAFC;
}

.permission-pill {
  margin-bottom: 0;
  min-width: 170px;
  min-height: 50px;
  border-radius: 16px;
  border: 1.5px solid #E6E8EC;
  background: #fff;
  box-shadow: 0 1px 2px rgba(44, 62, 80, 0.03);
  font-weight: 600;
  font-size: 22px;
  color: #373A47;
  position: relative;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.permission-checkbox {
  accent-color: #6C63FF;
  width: 15px;
  height: 15px;
  margin-right: 12px;
  margin-left: 18px;
}

.minw-160 {
  min-width: 160px;
}

.gap-32 {
  gap: 32px;
}

.flex-1 {
  flex: 1;
}