/*Raleway font*/
@font-face {
  font-family: Raleway;
  src: url("../../images/Raleway/Raleway-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Raleway;
  src: url("../../images/Raleway/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Raleway;
  src: url("../../images/Raleway/Raleway-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Raleway;
  src: url("../../images/Raleway/Raleway-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: Raleway;
  src: url("../../images/Raleway/Raleway-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/*KumbhSans font*/
@font-face {
  font-family: KumbhSans;
  src: url("../../fonts/Kumbh_Sans/KumbhSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: KumbhSans;
  src: url("../../fonts/Kumbh_Sans/KumbhSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: KumbhSans;
  src: url("../../fonts/Kumbh_Sans/KumbhSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: KumbhSans-Bold;
  src: url("../../fonts/Kumbh_Sans/KumbhSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/*baskervville font*/
@font-face {
  font-family: Baskervville;
  src: url("../../fonts/Baskervville/Baskervville-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: Baskervville;
  src: url("../../fonts/Baskervville/Baskervville-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/* defining variables */
:root {
  --tooltip-text-color: white;
  --tooltip-background-color: #3a7ddd;
  --tooltip-margin: 5px;

  --link-company-multiSelect-width: 25vw;

  --drilldown-primary-color: #185ee0;
  --drilldown-secondary-color: #e6eef9;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.9rem;
}

html,
body {
  width: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   #RESET
   ========================================================================== */

/**
 * A very simple reset that sits on top of Normalize.css.
 */
body {
  font-size: 1rem;
}

body,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
  font-family: "KumbhSans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Baskervville" !important;
}

.headingFont {
  font-family: "Baskervville" !important;
}

.bodyFont {
  font-family: "KumbhSans", sans-serif !important;
}

.modal-xl {
  max-width: 1140px !important;
}

.app-root .container-fluid {
  display: flex;
  flex-direction: column;
  flex: 1;

  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 30px;
}

.user-box {
  font-size: 20px;
  color: #ffffff;
  background: #344666;
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
  cursor: pointer;

  &:hover,
  &:active,
  &:focus {
    background-color: #51587c;
  }
}

.usericonbox {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.usericonboxgrouping {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.client-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 5px 0px 0px 5px;
  object-fit: cover;
}

.viewClientModal {
  border-radius: 10px;
  overflow: hidden !important;
  width: 540px;
}

.loginlogo {
  width: 40px;
  height: 40px;
}

.content-area {
  background: #fff;
  border-radius: 10px !important;
}

.slate-content-area {
  background: #fff;
  border-radius: 10px;
  height: calc(100vh - 225px);
}

/******************************* Switch Button CSS *******************************/
.switch {
  position: relative;
  display: flex;
  width: 60px;
  height: 25px;
  margin: 0 auto;

  & input {
    opacity: 0;
    width: 0;
    height: 0;
  }
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #92a8c2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #00d455;
}

input:focus+.slider {
  box-shadow: 0 0 1px #00d455;
}

input:checked+.slider:before {
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(32px);
}

#client-search-access input:checked+.slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

input:checked+.sliderpdf:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

.zrglogo {
  background: url("../../images/Zi_Rebrand_Files/PNGs/Zi_Color.png") left center no-repeat;
  background-size: contain;
  height: 50px;
  width: 50px;
  margin-top: 4px;
  margin-bottom: 4px;
  align-self: center;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
}

.zrglogo a {
  height: inherit;
  width: inherit;
  position: absolute;
}

/******************************* Rounded sliders *******************************/
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/******************************* Switch Button CSS *******************************/
.search-wrapper .btn-secondary,
.search-wrapper-videoTitle .btn-secondary,
.search-wrapper .btn-secondary:active {
  color: #686868 !important;
  background-color: #f4f7fc !important;
  border-color: #ced4da !important;
  border-left: none !important;
  box-shadow: none;
  border-radius: 0.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.search-wrapper .form-control {
  border-radius: 0.5rem;
  height: 40px;
  background: #f4f7fc;
}

.search-wrapper .form-control:focus {
  box-shadow: none;
  border-right: none;
}

.search-wrapper-videoTitle .form-control {
  border-radius: 0.5rem;
  height: 32px;
  background: #f4f7fc;
}

.search-wrapper-videoTitle .form-control:focus {
  box-shadow: none;
  border-right: none;
}

.search-wrapper-slate .form-control {
  border-radius: 0.5rem;
  height: 40px;
  background: #f4f7fc;
  max-width: 300px;
}

.search-wrapper-slate .form-control:focus {
  box-shadow: none;
}

.notification {
  position: absolute;
  bottom: 22px;
  left: 14px;
  background: #f13c20;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
  color: #fff;
}

.notification-row {
  position: absolute;
  bottom: 12px;
  background: #0673d3;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.user-box i {
  position: relative;
}

.table.table-striped thead th {
  vertical-align: bottom;
  border-bottom: none;
  border-top: none;
}

.table.table-striped tbody th,
.table.table-striped tbody td {
  vertical-align: bottom;
  border-bottom: none;
}

.table.table-striped td,
.table.table-striped th {
  border-top: none;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8eef9;
  border-radius: 10px;
}

.table-striped tbody th:first-child,
.table-striped tbody td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.table-striped tbody th:last-child,
.table-striped tbody td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.search-wrapper .fa {
  font-size: 16px;
  color: #c4c4c4;
}

.search-wrapper-videoTitle .fa {
  font-size: 19px;
  color: #c4c4c4;
}

.detailsbox {
  background: #fff;
  border-radius: 10px;
  max-height: 320px !important;
  box-shadow: 2px 2px 4px 1px lightgray;
}

.scoringdetailsbox {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 4px 1px lightgray;
}

.ndetailsbox {
  background: #fff;
  border-radius: 10px;
  height: 260px !important;
  box-shadow: 2px 2px 4px 1px lightgray;
}

.documentdetailsbox {
  background: #fff;
  border-radius: 10px;
  max-height: 320px !important;
  box-shadow: 0px 2px 8px lightgray;
}

.pointer {
  cursor: pointer;
}

.move {
  cursor: move;
}

.nopointer {
  cursor: default;
}

.companylogo {
  padding: 5px;
  position: relative;
  height: 125px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.fa-pencil {
  position: absolute;
  top: 0;
  right: 4px;
}

.teamsrowbg {
  background: #ffffff;
  border-radius: 0;
  cursor: default;
}

.teamsalternaterowbg {
  background: #cbd7e8;
  border-radius: 0;
  cursor: default;
}

.teamsrowbgalternate:nth-child(even) {
  background: #cbd7e8;
}

.teamsrowbgalternate:nth-child(odd) {
  background: #ffffff;
}

.tablink .main {
  background: #fff;
  padding: 1rem;
  width: 230px;
  border-radius: 10px;
  color: #002254;
  font-weight: bold;
}

.tablink .slate {
  background: #12314c;
  border: 1px solid #e1e1e1;
  padding: 1rem;
  width: 230px;
  border-radius: 10px;

  &:hover {
    background-color: #005b77 !important;
  }
}

.tablink .main a {
  color: #002254;
  text-decoration: none;
  background-color: transparent;
  font-weight: bold;
}

.tablink .slate a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
  font-weight: bold;
}

.tablink .main a:hover {
  color: #002254;
  text-decoration: none;
}

.slateOptions {
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin: 7px 5px;
  color: #ffffff;
  height: 43px;
  width: 43px;
}

.print-report {
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  color: #ffffff;
}

#allcandidate {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  width: 1000px;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  display: none;
}

.posrelative {
  position: relative;
}

.status {
  background: #e5e5e5;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #444444;
}

/*Timeline CSS Start */

.timeline {
  width: 95%;
  height: 20px;
  list-style: none;
  text-align: justify;
  margin: 10px 10px;
  background: -webkit-gradient(left top,
      left bottom,
      color-stop(0%, rgba(255, 255, 255, 0)),
      color-stop(45%, rgba(255, 255, 255, 0)),
      color-stop(51%, rgba(191, 128, 11, 1)),
      color-stop(57%, rgba(255, 255, 255, 0)),
      color-stop(100%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 45%, #afc1d7 51%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0) 100%);
}

.timeline:after {
  display: inline-block;
  content: "";
  width: 100%;
}

.timeline li {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ffa800;
  text-align: center;
  line-height: 1.1;
  position: relative;
  border-radius: 50%;
}

.timeline li:before {
  display: inline-block;
  content: attr(data-year);
  font-size: 26px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline li:nth-child(odd):before {
  top: -40px;
}

.timeline li:nth-child(even):before {
  bottom: -40px;
}

.timeline li:after {
  display: inline-block;
  content: attr(data-text);
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.timeline li:nth-child(odd):after {
  bottom: 0;
  margin-bottom: -10px;
  transform: translate(-50%, 100%);
}

.timeline li:nth-child(even):after {
  top: 0;
  margin-top: -10px;
  transform: translate(-50%, -100%);
}

.timelineuppertext {
  position: absolute;
  bottom: 13px;
  left: -50px;
  text-align: center;
  width: 130px;
  font-size: 0.8rem;
}

.timelinelowertext {
  position: absolute;
  top: 14px;
  left: -59px;
  text-align: center;
  width: 130px;
  font-size: 0.8rem;
}

/*Timeline CSS End */

.tabs .nav-tabs {
  border-bottom: none;
}

.tabs .nav-link {
  display: block;
  padding: 0.3rem 3rem;
}

.tabs .nav-tabs .nav-link {
  border-radius: 0.85rem;
  border: 1px solid #909090;
  color: #707070;
}

.tabs .nav-tabs .nav-item.show .nav-link,
.tabs .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #757575;
  border-color: #dee2e6 #dee2e6 #fff;
}

.tabsbottom {
  border-bottom: none;
}

.slatecontentbox {
  background: #fff;
  box-shadow: 0 0 5px RGB(0 0 0 / 26%);
  margin-bottom: 10px;
  min-height: 180px;
  border-radius: 8px;
}

.stickyHeader {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: #fff;
  margin-bottom: 5px;
}

.slateChartText {
  font-size: 1rem;
  font-weight: bold;
}

.gerybx {
  background: #c9ac74;
  color: #fff;
  border-bottom-right-radius: 10px;
  text-align: center;
  height: 23px;
}

.status-label-bg-left {
  background: #c9ac74;
  color: #fff;
  border-bottom-right-radius: 10px;
  text-align: center;
  height: 23px;
  width: max-content;
  padding: 0 10px;
}

.disabledopacity {
  opacity: 0.5;
}

.disabledopacity * {
  pointer-events: none;
}

.starting {
  font-size: 16px;
  color: #afc1d7;
}

.tabscandidatedetail .nav-tabs {
  border-bottom: none;
}

.tabscandidatedetail .nav-link {
  display: block;
  padding: 0.3rem 1rem;
}

.tabscandidatedetail .nav-tabs .nav-link {
  border-radius: 0.85rem;
  border: 1px solid #12314c;
  color: #12314c;
  font-weight: 600;
}

.tabscandidatedetail .nav-tabs .nav-item.show .nav-link,
.tabscandidatedetail .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #12314c;
  border-color: #dee2e6 #dee2e6 #fff;
}

.userboxcandidatedet {
  background: #ddd;
  padding: 15px 21px;
  border-radius: 50%;
  font-size: 40px;
  color: #787878;
}

.candidatedetedituser {
  position: absolute;
  bottom: -5px;
  right: -5px;
}

.candidatedeteditlogo {
  position: absolute;
  bottom: 0;
  right: -20px;
}

.horizontal-divider {
  border-top: 1px solid #b2c3d9;
}

.table.table-borderless thead th,
.table.table-borderless tbody th {
  border: none;
}

.table.table-borderless tbody td {
  border: none;
}

.attachmentTable th {
  padding: 0;
  padding-bottom: 8px;
}

.attachmentTable td {
  padding: 0;
  padding-bottom: 3px;
}

.deleteSpacing {
  width: 4%;
}

.attachmentLoader {
  z-index: 1000;
  position: absolute;
  top: 20%;
  left: 40%;
  height: 280px;
}

.attachmentSaveLoader {
  z-index: 1000;
  position: absolute;
  top: 45%;
  left: 42%;
}

.compensationcard {
  float: left;
  width: 100%;
  height: 100px;
}

.compensationnotescorebox {
  background: #e8eef9;
  border-radius: 10px;
}

.compensationpopover {
  background-color: lemonchiffon;
  font-size: 10px;
  width: 200px;
  border-radius: 10px;
  border: 1px solid #12314c;
  z-index: 2;
  height: auto;
  overflow-y: auto;
}

.compensationpopoverslate {
  color: #fff;
  background-color: #555;
  font-size: 12px;
  max-width: 350px;
  border-radius: 10px;
  z-index: 2;
  height: auto;
  overflow-y: auto;
}

.compensationblock-ellipsis {
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 12px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.candidateCompensationGap {
  padding-right: 15px;
}

.iterviewscorebox {
  background: #e8eef9;
  border-radius: 10px;
}

.iterviewscoreboxgreyscale {
  background: #f2f2f2;
  border-radius: 10px;
  color: #c4c4c4;
}

/* bar chart css */
.bar-1 {
  background: #00d455;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height: 20px;
  position: relative;
  left: 5px;
  z-index: 1;
}

.bar-2 {
  background: #00ff47;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 20px;
  position: relative;
  left: 2px;
}

.bar-3 {
  background: #00d455;
  border-radius: 10px;
  height: 20px;
  position: relative;
  left: 5px;
  z-index: 1;
}

.bar-4 {
  background: #00ff47;
  border-radius: 10px;
  height: 20px;
  position: relative;
  left: 2px;
}

.legend1 {
  background: #00d455;
  height: 12px;
  width: 15px;
  border-radius: 10px;
}

.legend2 {
  background: #00ff47;
  height: 12px;
  width: 15px;
  border-radius: 10px;
}

/* bar chart css end */

.transitionindicator .status {
  background: #e5e5e5;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #444444;
}

.transitionindicator .small {
  font-size: 70%;
}

.candetail-interview-active {
  background: #000000;
  border-radius: 5px;
  height: 38px;
}

#interviewersModal .table.table-striped tbody th,
#interviewersModal .table.table-striped tbody td {
  vertical-align: middle;
  border-bottom: none;
}

.candetail-interview-active .fa {
  color: #fff;
  font-size: 20px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/*Login Page */
.loginHeader {
  width: 100%;
  padding: 10px;
  color: #fff;
  font-weight: bold;
}

.ziLogoimg {
  height: 90px;
}

.Aligner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 40em;
  -webkit-box-pack: center;
}

.login-punchline {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
}

.Aligner-item {
  width: 28%;
  padding: 2rem;
}

.Aligner-item--top {
  align-self: flex-start;
}

.Aligner-item--bottom {
  align-self: flex-end;
}

.rememberme-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
}

.loginleftpanelbg {
  background: url("../../images/undraw_Working_re_ddwy.png") center 150px no-repeat;
  height: 702px;
  background-size: contain;
  width: 65%;
}

.alphabet-active {
  background: #757575;
  padding: 4px;
  color: #fff;
  border-radius: 50%;
  margin-right: 5px;
  height: 30px;
  width: 30px;
  text-align: center;
}

.alphabet {
  border: 1px solid #757575;
  padding: 4px;
  color: #767676;
  border-radius: 50%;
  margin-right: 10px;
  height: 30px;
  width: 30px;
  text-align: center;
}

.table .customcheckbox {
  font-size: 14px;
}

.colorwhite {
  color: #fff;
}

.colorgrey {
  color: #808080;
}

.contentbg {
  background: #e8eef9;
  border-radius: 10px;
}

.contentbgbasicdetails {
  background: #f8f9f9;
  border-radius: 10px;
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.drp-basicdetails {
  border: none;
  outline: none;
  background-color: transparent;
  color: #495057;
  cursor: pointer;

  &:option {
    border: 1px solid #ced4da;
    padding: 2px;
    margin: 2px 0;
  }
}

.datpicker-width {
  max-width: 90px;
  height: 20px;
  border: 1px solid #dce0e2;
  outline: none;
  background-color: transparent;
  border-radius: 4px;
  padding: 2px;
  margin-left: 3px;
  margin-top: 4px;
  text-align: center;
}

.datpicker-width-border {
  width: 90px;
  height: 20px;
  border: #2f4f4f;
  outline: #12314c;
  background-color: transparent;
  padding: 2px;
  margin-left: 3px;
}

/* Center content */

/* Container for the date picker and icon */
.date-picker-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 300px;
  border: 2px solid #606761;
  border-radius: 5px;
  padding: 5px;
}

/* Icon style */
.calendar-icon {
  font-size: 12px;
  color: #a4bec4;
  margin-right: 3px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.calendar-icon:hover {
  color: #8e988e
}

/* Custom input field style */
.custom-date-picker {
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  padding: 5px;
}

/* Calendar styles */
.react-datepicker {
  border: 2px solid #7c807c;
  border-radius: 8px;
}

.react-datepicker__day--selected {
  background-color: #626662;
  color: white;
}

.react-datepicker__day:hover {
  background-color: #f0f0f6;
  color: #6072cf;
}

.icon-container {
  display: inline-block;
  cursor: pointer;
}

.popupcontentbg {
  min-height: calc(90vh - 136px);
  background: #e8eef9;
  border-radius: 10px;
}


.popupcontenttalentbg {
  min-height: calc(103vh - 136px);
  background: #e8eef9;
  border-radius: 10px;
}

.popupcontentbgculture {
  min-height: calc(90vh - 108px);
  background: #e8eef9;
  border-radius: 10px;
}

.contentbgpdf {
  width: 256px;
}

.pdfoptionscontentbg {
  background: #e8eef9;
  border-radius: 10px;
  width: 210px;
}

.headerpanel {
  background: #fff;
  box-shadow: 0 2px 5px RGB(0 0 0 / 20%);
}

.header-bg {
  background: #fff;
}

.notificationdropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  float: left;
  min-width: 30rem;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid RGB(222 228 239);
  border-radius: 0.25rem;
  padding: 10px;
  font-size: 0.9rem;
  margin-top: 8px;
  box-shadow: 0 2px 5px RGB(0 0 0 / 20%);
}

.notificationdropdown-menu-arrow {
  top: -24px;
  right: 15px;
  width: 100%;
  height: 0;
  position: relative;
}

.notificationdropdown-menu-arrow:before,
.notificationdropdown-menu-arrow:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-width: 7px 8px;
  border-style: solid;
  border-color: transparent;
  z-index: 1001;
}

.notificationdropdown-menu-arrow:after {
  bottom: -13px;
  right: 0px;
  border-bottom-color: #b6c0d2;
}

.dropdown-menu-arrow:before {
  bottom: -17px;
  right: -8px;
  border-bottom-color: RGB(0, 0, 0, 0.15);
}

.notificationsrowbg {
  background: #e8eef9 !important;
  border-radius: 5px;
}

.notification-close {
  color: #b4bccb;
  padding: 10px 0 0 11px;
  font-size: 17px;
}

.notification-dropdown-wrapper {
  overflow: auto;
  max-height: 400px;
  min-height: 100px;
}

/* width */
.notification-dropdown-wrapper::-webkit-scrollbar,
.mini-slider::-webkit-scrollbar,
.ag-body-viewport.ag-layout-normal::-webkit-scrollbar {
  width: 7px;
  padding: 0 1px;
}

/* Track */
.notification-dropdown-wrapper::-webkit-scrollbar-track,
.mini-slider::-webkit-scrollbar-track,
.ag-body-viewport.ag-layout-normal::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.notification-dropdown-wrapper::-webkit-scrollbar-thumb,
.mini-slider::-webkit-scrollbar-thumb,
.ag-body-viewport.ag-layout-normal::-webkit-scrollbar-thumb {
  background: #12314c;
  border-radius: 5px;
}

/* Handle on hover */
.notification-dropdown-wrapper::-webkit-scrollbar-thumb:hover,
.mini-slider::-webkit-scrollbar-thumb:hover,
.ag-body-viewport.ag-layout-normal::-webkit-scrollbar-thumb:hover {
  background: #165c7d;
}

.userlistdropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  float: left;
  min-width: 11rem;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid RGB(222 228 239);
  border-radius: 0.25rem;
  font-size: 0.9rem;
  margin-top: 8px;
  box-shadow: 0 2px 5px RGB(0 0 0 / 20%);
}

.userlistdropdown-menu-arrow {
  top: -14px;
  right: 0;
  width: 100%;
  height: 0;
  position: relative;
  display: block;
}

.userlistdropdown-menu-arrow:before,
.userlistdropdown-menu-arrow:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-width: 7px 8px;
  border-style: solid;
  border-color: transparent;
  z-index: 1001;
}

.userlistdropdown-menu-arrow:after {
  bottom: -13px;
  right: 10px;
  border-bottom-color: #b6c0d2;
}

.userlistdropdown ul {
  list-style-type: none;
}

.userlistdropdown li {
  border-bottom: 1px solid #ddd;
  padding: 4px 9px;

  &:hover {
    background-color: #e9f5f8;
  }
}

.nav-menus a {
  color: #000;
}

.nav-menus a:hover {
  color: #12314c;
}

.fa-pencil {
  color: #afc1d7;
}

.add-icon {
  color: #00d455;
  font-size: 22px;
}

.minus-icon {
  color: #f13c20;
  font-size: 22px;
}

.button-red {
  color: #f13c20 !important;
  font-size: 22px;
}

.add-icon-attachment {
  color: #00d455;
  font-size: 18px !important;
}

.search-wrapper-popup .btn-secondary,
.search-wrapper .btn-secondary:active {
  color: #686868 !important;
  background-color: #ffffff !important;
  border-color: #ced4da !important;
  border-left: none !important;
  box-shadow: none;
  border-radius: 0.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.search-wrapper-popup.form-control {
  border-radius: 0.5rem;
  height: 40px;
  background: #ffffff;
}

.search-wrapper-popup .form-control:focus {
  box-shadow: none;
  border-right: none;
}

#externalaccessModal .switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 20px;
  margin-bottom: 0;
  margin-top: 2px;
}

#externalaccessModal .slider.round {
  border-radius: 20px;
}

#externalaccessModal .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#client-search-access .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-bottom: 0;
  margin-top: 2px;
}

#client-search-access .slider.round {
  border-radius: 20px;
}

#client-search-access .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modal-open {
  padding-right: 0 !important;
}

#allcandidate .table.table-striped tbody th,
#allcandidate .table.table-striped tbody td {
  vertical-align: middle;
  border-bottom: none;
}

.tabs .nav-tabs .nav-item.show .nav-link,
.tabs .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #12314c;
  border-color: #6b7e8f #6b7e8f #fff;
}

.tabs .nav-tabs .nav-link {
  border-radius: 0.85rem;
  border: 1px solid #12314c;
  color: #12314c;
  font-weight: 600;
}

.mainmenu {
  border-radius: 1rem;
  border: 1px solid white !important;
  padding: 1rem 1.25rem !important;
}

.mainmenu .active {
  background-color: #fff;
  color: #12314c;
  border-color: #6b7e8f #6b7e8f #fff;
}

.slateuserimg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 1px;
  cursor: default;
  object-fit: cover;
}

.slatecontentbox .fa-smile-o {
  font-size: 1.5rem;
  color: #ffa800;
}

.slatecontentbox .fa-frown-o {
  font-size: 1.5rem;
  color: #92a8c2;
}

.zscorecolor {
  color: #3a7ddd;
}

.graycolor {
  color: #787878 !important;
}

.greencolor {
  color: #00d455 !important;
}

.yellowcolor {
  color: #ffa800 !important;
}

.bluecolor {
  color: #3a7ddd !important;
}

.redcolor {
  color: #f13c20 !important;
}

.tabscandidatedetail .form-check-input {
  transform: scale(1.5);
}

.btn-primary {
  color: #fff !important;
  background-color: #12314c;
  border-color: #12314c;
}

.btn-primary:hover {
  color: #fff !important;
  background-color: #165c7d;
  border-color: #3d7087;
}

.btn-primary:disabled {
  color: #fff !important;
  background-color: #165c7d;
  border-color: #3d7087;
}

a {
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

.material-icons.md-14,
.material-icons-outlined.md-14,
.material-icons-round.md-14 {
  font-size: 14px;
}

.material-icons.md-18,
.material-icons-outlined.md-18,
.material-icons-round.md-18 {
  font-size: 18px;
}

.material-icons.md-19,
.material-icons-outlined.md-19 {
  font-size: 19px;
}

.material-icons.md-20,
.material-icons-outlined.md-20,
.material-icons-round.md-20 {
  font-size: 20px;
}

.material-icons.md-24,
.material-icons-outlined.md-24 {
  font-size: 24px;
}

.material-icons.md-27,
.material-icons-outlined.md-27 {
  font-size: 27px;
}

.material-icons.md-36,
.material-icons-outlined.md-36 {
  font-size: 36px;
}

.material-icons.md-48,
.material-icons-outlined.md-48 {
  font-size: 48px;
}

.material-icons-36 {
  font-size: 36px !important;
}

.material-icons.valigncenter {
  display: inline-block;
  vertical-align: sub;
}

.notificationsrowbg .material-icons {
  position: relative;
  top: 2px;
}

.valignmid {
  vertical-align: middle;
}

.assignment-table a {
  color: #3a7ddd;
  font-weight: normal;
}

.iconcolor {
  color: #92a8c2;
  font-size: 16px;
  size: 20px;
}

.iconcultureFit {
  color: #92a8c2;
  margin-top: 2px;
}

.editiocnpos {
  position: absolute;
  top: 5px;
  right: 5px;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem !important;
  font-weight: bold;
}

.font-size-middle {
  font-size: 13px;
}

.btn-modal-primary {
  color: #fff;
  background-color: #12314c;
  border-color: #12314c;
}

.btn-modal-primary:hover {
  color: #fff;
  background-color: #165c7d;
  border-color: #3d7087;
}

.modal-dialog .btn-primary {
  color: #fff;
  background-color: #3a7ddd;
  border-color: #3a7ddd;
}

.modal-dialog .input-group-text {
  background: #3a7ddd;
  color: #fff;
}

.search-wrapper-popup .form-control {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.search-wrapper-popup .btn {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.modal-dialog .table td,
.modal-dialog .table th {
  font-size: 1rem;
  padding: 0.55rem;
}

.modal-dialog .teamsalternaterowbg {
  background: #d7e0eb;
}

.modal-dialog .teamsalternaterowbg,
.modal-dialog .teamsrowbg {
  /* box-shadow: 0 0 4px lightgray; */
  border-radius: 8px;
  /* margin: 4px 0; */

  & h6 {
    font-size: 0.9em;
  }
}

.line-height-2rem {
  line-height: 2rem;
}

.slatecontentbox .line-height-2rem {
  line-height: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progressbarcolor {
  background: RGB(58, 125, 221);
  background: linear-gradient(90deg, rgba(58, 125, 221, 1) 30%, rgba(0, 212, 85, 1) 100%);
}

.starting.progress {
  border-radius: 10px;
  height: 12px;
}

/*Progress Bar Animation */
.progress .color {
  position: absolute;
  background-color: #ffffff;
  width: 0px;
  height: 10px;
  border-radius: 15px;
  animation: progres 4s infinite linear;
}

@keyframes progres {
  0% {
    width: 0%;
  }

  25% {
    width: 50%;
  }

  50% {
    width: 75%;
  }

  75% {
    width: 85%;
  }

  100% {
    width: 100%;
  }
}

/*Progress Bar Animation */
.greyscalegraph {
  filter: grayscale(100%);
  opacity: 0.5;
}

.positionabsolute {
  position: absolute;
}

.culturefit-div-rating {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
  text-align: center;
  margin: 0 1rem;
}

#printreport input[type="checkbox"] {
  position: relative;
  width: 1.2em;
  height: 1.2em;
  color: #363839;
  border: 2px solid #002254;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

#printreport input[type="checkbox"]::before {
  position: absolute;
  content: "";
  display: block;
  top: -2px;
  left: 4px;
  width: 6px;
  height: 14px;
  border-style: solid;
  border-color: #002254;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
}

#printreport input[type="checkbox"]:checked {
  color: #fff;
  border-color: none;
  background: none;
}

#printreport input[type="checkbox"]:checked::before {
  opacity: 1;
}

#printreport input[type="checkbox"]:checked~label::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#printreport .form-check-label {
  margin-bottom: 0;
  font-weight: 500;
  position: relative;
  bottom: 3px;
}

.customchkbox input[type="checkbox"][disabled] {
  color: darkgray;
  border: 2px solid darkgray;
}

.customchkbox input[type="checkbox"] {
  position: relative;
  width: 1.2em;
  height: 1.2em;
  color: #363839;
  border: 2px solid #002254;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

.customchkbox input[type="checkbox"][disabled] {
  cursor: default;
}

.cursor-default {
  cursor: default;
}

.customchkbox input[type="checkbox"]::before {
  position: absolute;
  content: "";
  display: block;
  top: -2px;
  left: 4px;
  width: 6px;
  height: 14px;
  border-style: solid;
  border-color: #002254;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.customchkbox input[type="checkbox"]:checked {
  color: #fff;
  border-color: none;
  background: none;
}

.customchkbox input[type="checkbox"]:checked::before {
  opacity: 1;
}

.customchkbox input[type="checkbox"]:checked~label::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.customchkbox .form-check-label {
  margin-bottom: 0;
  font-weight: 500;
  position: relative;
  bottom: 3px;
}

.modal-title {
  color: #3a7ddd;
}

#importtoslate input[type="checkbox"] {
  position: relative;
  width: 1.2em;
  height: 1.2em;
  color: #363839;
  border: 2px solid #002254;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

#importtoslate input[type="checkbox"]::before {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 4px;
  width: 6px;
  height: 12px;
  border-style: solid;
  border-color: #002254;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
}

#importtoslate input[type="checkbox"]:checked {
  color: #fff;
  border-color: none;
  background: none;
}

#importtoslate input[type="checkbox"]:checked::before {
  opacity: 1;
}

#importtoslate input[type="checkbox"]:checked~label::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#importtoslate .modal-dialog .table td,
#importtoslate .modal-dialog .table th {
  font-size: 0.9rem;
  padding: 1.2rem 0.55rem;
}

#importtoslate .table {
  color: #002254;
}

.slaterowheight {
  height: 110px;
}

.skillscore1 {
  background: #12314c;
  padding: 22px 0;
  color: #fff;
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 0 0 5.5%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.1rem;
}

.skillscore2 {
  background: #1f5280;
  padding: 22px 0;
  color: #fff;
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 0 0 5.5%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.1rem;
}

.skillscore3 {
  background: #286ba6;
  padding: 22px 0;
  color: #fff;
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 0 0 5.5%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.1rem;
}

.skillscore4 {
  background: #3da4ff;
  padding: 22px 0;
  color: #fff;
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 0 0 5.5%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.1rem;
}

.skillscore5 {
  background: #3184cc;
  padding: 22px 0;
  color: #fff;
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 0 0 5.5%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.1rem;
}

.avgscore {
  background: #244562;
  padding: 22px 0;
  color: #fff;
  -ms-flex: 0 0 5.5%;
  flex: 0 0 5.5%;
  max-width: 0 0 5.5%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.1rem;
}

#interviewscorecompensation .modal-lg {
  max-width: 1400px;
}

#candidatedetails .slateuserimg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/*Slider CSS */
.rangeslider input,
.rangeslider output {
  display: inline-block;
  vertical-align: middle;
  font-size: 1em;
  font-family: Arial, sans-serif;
}

.rangeslider output {
  background: #92a8c2;
  padding: 2px 10px;
  border-radius: 3px;
  color: #fff;
}

.feedback-range {
  width: 65% !important;
}

.rangeslider input[type="range"] {
  background-color: rgba(236, 228, 228, 0.6) !important;
}

.rangeslider input[type="range"][disabled] {
  background-image: linear-gradient(darkgray, darkgray) !important;
  background-color: lightgray !important;
}

.rangeslider input[type="range"] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  background-image: linear-gradient(90deg, rgba(58, 125, 221, 1) 30%, rgba(0, 212, 85, 1) 100%);
  background-size: 80% 100%;
  background-repeat: no-repeat;
}

.rangeslider input[type="range"][disabled]::-webkit-slider-thumb {
  background: #555 !important;
  cursor: default !important;
}

.rangeslider input[type="range"][disabled]::-moz-range-thumb {
  background: #555 !important;
  cursor: default !important;
}

.rangeslider input[type="range"][disabled]::-ms-thumb {
  background: #555 !important;
  cursor: default !important;
}

/* Input Thumb */
.rangeslider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #00d455;
  cursor: pointer;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

.rangeslider input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #00d455;
  cursor: pointer;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

.rangeslider input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #00d455;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background 0.3s ease-in-out;
}

.rangeslider input[type="range"]::-webkit-slider-thumb:hover {
  background: #00d455;
}

.rangeslider input[type="range"]::-moz-range-thumb:hover {
  background: #00d455;
}

.rangeslider input[type="range"]::-ms-thumb:hover {
  background: #00d455;
}

/* Input Track */
.rangeslider input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.rangeslider input[type="range"]::-moz-range-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

.rangeslider input[type="range"]::-ms-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

/*Slider CSS */

.popup-notification-box {
  border: 1px solid #afc1d7;
  border-radius: 5px;
  padding: 0.9rem;
}

.popup-notification-box th {
  border-bottom: 0.5px solid #afc1d7 !important;
}

.popup-notification-box th {
  padding: 0.55rem 0.55rem 0.35rem 0.55rem !important;
}

.popup-notification-box td {
  padding: 0.55rem 0.55rem 0 0.55rem !important;
}

.transitiontable th,
.transitiontable td {
  font-size: 0.9rem !important;
}

/*Custom Checkbox */
.customchkbx input[type="checkbox"] {
  position: relative;
  width: 1em;
  height: 1em;
  color: #363839;
  border: 2px solid #002254;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  cursor: pointer;
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}

.customchkbx input[type="checkbox"]::before {
  position: absolute;
  content: "";
  display: block;
  top: 0px;
  left: 2px;
  width: 5px;
  height: 7px;
  border-style: solid;
  border-color: #002254;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.customchkbx input[type="checkbox"]:checked {
  color: #fff;
  border-color: none;
  background: none;
}

.customchkbx input[type="checkbox"]:checked::before {
  opacity: 1;
}

.customchkbx input[type="checkbox"]:checked~label::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

#candidatedetails .content-area {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #afc1d7;
}

/* Client Rating Emojis */
.exceptionalRating {
  background: url("../../images/Material-Font-Icons/outline_diamond_black_24dp.png") left center no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: block;
}

.goodRating {
  background: url("../../images/Material-Font-Icons/outline_thumb_up_black_24dp.png") left center no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: block;
}

.cautionRating {
  background: url("../../images/Material-Font-Icons/outline_error_outline_black_24dp.png") left center no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: block;
}

.maybeRating {
  background: url("../../images/Material-Font-Icons/outline_help_outline_black_24dp.png") left center no-repeat;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: block;
}

/*Additional CSS */
.font-medium {
  font-size: 1.5rem !important;
}

.editable {
  font-family: inherit;
  font-size: inherit;
  height: 200px !important;
  overflow-y: auto;
  white-space: break-spaces;
  padding: 7px;
  border-radius: 5px;
}

.compensationNotesTextArea {
  resize: "none";
  height: "122px";
  width: "295px";
  outline: "none";
  border: "none";
  font-family: inherit;
  font-size: inherit;
  overflow-y: auto;
  white-space: break-spaces;
  padding: 7px;
  border-radius: 5px;
}

.admin-left {
  background: #12314c;
  border-radius: 0px 30px 30px 0px;
  position: fixed;
  width: 252px;
}

.admin-right {
  margin-left: 252px;
}

.heightfull {
  height: 100%;
}

.logotext {
  color: #fff;
  opacity: 0.8;
}

.admin-menu {
  color: #fff;
  opacity: 0.8;
}

.admin-menu ul {
  list-style-type: none;
}

.menu-seperator {
  border-bottom: 1px solid RGB(255 255 255 / 50%);
}

.text-underline {
  text-decoration: underline;
}

.admingridbox {
  background: white;
  border-radius: 4px;
}

.adduserbtn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.usertext {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.adminformheader {
  background: #12314c;
  border-radius: 0px 0px 20px 20px;
  height: 90px;
  position: relative;
}

.userphoto {
  background: #666f8e;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #fff;
  object-fit: cover;
}

.addpictxt {
  font-size: 0.9rem;
}

.admincontent .nav-link {
  display: block;
  padding: 0.1rem 2rem;
}

.admincontent .nav-link.active {
  border: 1px solid #12314c;
  background: #12314c;
}

.admincontent .nav-link {
  border: 1px solid #12314c;
  color: #12314c;
}

.admincontent .nav-wrapper {
  position: relative;
  left: 5px;
}

.termscondition {
  position: absolute;
  bottom: 20px;
  left: 45px;
  color: #ccd3d8;
  font-size: 1.1rem;
}

.admin-menu a {
  color: #fff;
  text-decoration: none;
}

.admin-menu a:hover {
  color: #fff;
  text-decoration: none;
}

.closicon {
  color: #fff;
  position: absolute;
  right: 7px;
  top: 0;
  font-size: 16px;
  cursor: pointer;
}

/* Admin CSS End */
.img-flex {
  border: 0;
  height: 60px;
}

/*Common Color For Button */

#root {
  height: 100%;
  width: 100%;
}

/*Common Color For Button */
.rowediticon {
  position: absolute;
  right: 5px;
  top: 0;
  padding-top: 4px;
  display: none;
  z-index: 1;
}

.rowdeleteicon {
  position: absolute;
  right: 26px;
  top: 0;
  padding-top: 4px;
  display: none;
  color: #afc1d7;
  z-index: 1;
}

.editrow:hover .rowediticon,
.editrow:hover .rowdeleteicon {
  display: block;
}

.editrowpopup {
  z-index: 2;
  position: absolute;
  top: 0;
  background: #fff;
  height: 100px;
  width: 100%;
  left: 0;
  padding: 5px;
  display: none;
  border-radius: 0.5rem;
}

.editrowgrouppopup {
  z-index: 2;
  position: absolute;
  top: 0;
  background: #fff;
  height: 50px;
  width: 60%;
  left: 0;
  padding: 5px;
  display: none;
  border-radius: 0.5rem;
}

.deleterowpopup {
  z-index: 2;
  position: absolute;
  top: 0;
  /* bottom: 100%; */
  background: #fff;
  /* height: 100px; */
  width: 100%;
  padding: 5px;
  display: none;
  border-radius: 0.5rem;
}

.gen-zlayer {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: none;
  opacity: 0.6;
}

.has-error {
  border-color: red;
  color: red;
}

/*GRID CSS Start */
.sc-crrszt {
  font-size: 1rem;
  font-weight: bold;
  color: #212529;
}

.fqQvzO {
  background-color: #e8eef9 !important;
  border: none !important;
}

.sc-hKgJUU,
.iIuArS {
  font-size: 1rem !important;
  color: #212529 !important;
}

.rdt_TableHeader {
  display: none !important;
}

.sc-crHmcD {
  font-weight: bold !important;
  color: #212529 !important;
}

.dashboardtable .rdt_TableRow,
.admin-right .rdt_TableRow {
  /* font-size: 1rem !important; */
  border: 1px 0 solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin: 1px 0;
}

.dashboardtable .rdt_Pagination,
.admin-right .rdt_Pagination,
.dashboardtable .rdt_TableHeadRow,
.admin-right .rdt_TableHeadRow {
  border: none !important;
}

.dashboardtable .rdt_TableCol {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.dashboardtable .rdt_TableCell {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.cNXftD,
.dKvXPZ {
  border: none !important;
}

.dashboardtable .rdt_TableRow:nth-of-type(odd),
.admin-right .rdt_TableRow:nth-of-type(odd) {
  background-color: #e8eef9 !important;
  border-radius: 8px !important;
}

.dashboardtable .rdt_TableRow:nth-of-type(even),
.admin-right .rdt_TableRow:nth-of-type(even) {
  border-radius: 8px !important;
}

.iMAPEP {
  background-color: #fff !important;
  border: none !important;
}

/*GRID CSS End */
.position-overview {
  width: 100%;
}

.alignRight {
  text-align: right;
}

/*Modal styling*/
.modalfooter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.height {
  height: 10px;
}

/*End Modal styling*/
/*Slate page work*/
.slatenameinactive {
  opacity: 0.2;
  pointer-events: none;
  cursor: default;
}

/*Slate page work
/* for loader */
.cm-spinner-page {
  height: 120px;
  width: 120px;
  border: 3px solid transparent;
  border-radius: 100%;
  border-top: 4px solid #1c4aaf;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
}

.cm-spinner-page::before,
.cm-spinner-page::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  right: 6px;
  border-radius: 50%;
  border: 4px solid transparent;
}

.cm-spinner-page::before {
  border-top-color: #aa9cdd;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}

.cm-spinner-page::after {
  border-top-color: #4de688;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Component level loader */
.cm-spinner {
  height: 60px;
  width: 60px;
  border: 3px solid transparent;
  border-radius: 100%;
  border-top: 3px solid #1c4aaf;
  border-left: 3px solid #1c4aaf;
  border-right: 3px solid #1c4aaf;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  position: absolute;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Component level loader */
.opacity_loader {
  opacity: 0.5;
}

.opacity_loader * {
  pointer-events: none;
}

.CompareLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 48%;
  left: 46%;
}

.LoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 20%;
  left: 48%;
}

.CultureLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 55%;
  left: 49%;
}

.TalentLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 25%;
  left: 45%;
}

.SummaryReportMargin {
  z-index: 1000;
  position: absolute;
  top: 40%;
  left: 45%;
}

.skillLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: -5vh;
  left: 45%;
}

.import-candidate-loader {
  z-index: 1000;
  position: absolute;
  top: 42%;
  left: 48%;
}

.ActiveUsersLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 45%;
  left: 42%;
}

.HeaderAutoSearchLoader {
  z-index: 100;
  position: fixed;
  margin-left: 140px;
  margin-top: 70px;
}

.addSearchLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 20%;
  left: 45%;
}

.importSearchLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 45%;
}

.horizontal-list-box {
  display: flex;
  flex-direction: row;
  /* Wrap into new lines */
  flex-wrap: wrap;
  /* Fixed height */
  height: 172px;
  /* Scroll if content exceeds height */
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #ccc;
  padding: 2px;
  background-color: #ffffff;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 1px;
}

.list-item {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin: 5px;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  height: 30px;
  width: fit-content;
  background: #e8eef9;
}

.item-subtext {
  font-size: 14px;
  color: #12314c;
  -webkit-line-clamp: 1 !important;
  white-space: break-spaces;
  min-width: 0px !important;
  margin-top: 0px !important;
}

.overviewLoaderMargin {
  z-index: 1000;
  position: fixed;
  top: 50vh;
  left: 48%;
}

.slateLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 15vh;
  left: 48%;
}

.slateCardLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 7vh;
  left: 44vw;
}

.slateCardOverlay {
  opacity: 0.5;
}

.compensationLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 50%;
}

.marketIntelligenceLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 25%;
  left: 45%;
}

.positionDescLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 40%;
  left: 48%;
}

.searchHeaderLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 8vh;
  left: 48%;
}

.candidateGroupingLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 25%;
  left: 254px;
}

/* End for loader */
/* CSS for import */
.react-responsive-modal-modal {
  padding: 1.05rem !important;
  border-radius: 5px;
}

.importCandidateModal {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  position: fixed !important;
  right: 12px;
  z-index: 1;
  width: 80%;
  max-height: 95%;
}

.importSalesforceDataModal {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  z-index: 1;
  width: 65%;
  max-height: 95%;
}

.importBOCandidateModal {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  position: fixed !important;
  right: 500px;
  z-index: 1;
  width: 30%;
  max-height: 95%;
  top: 100px;
}

.import-close {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  width: 400px;
  position: fixed !important;
  top: 212px;
  right: 232px;
  z-index: 1;
  max-width: inherit !important;
}

.import-li {
  background-color: #ffffff !important;
  padding: 1rem;
  border-radius: 10px;
  width: 440px;
  position: fixed !important;
  top: 180px;
  right: 501px;
  z-index: 1;
  max-width: inherit !important;
}

.my-shaded-effect {
  background-color: #e8eef9;
}

.grey-out-effect {
  opacity: 0.5;
  pointer-events: none;
}

.row-class {
  padding: 10px 12px;
  font-size: 15px;
}

.candidategrid-pdf-row-class {
  padding: 6px;
  font-size: 13px;
}

.grid-checkbox {
  width: 20px;
  height: 22px;
  border-radius: 0.5rem;
  background: #f4f7fc;
}

.import-loader {
  margin-top: 30%;
  margin-left: 45%;
}

.modal-opacity {
  opacity: 0.3;
}

.modal-opacity * {
  pointer-events: none;
}

.import-queue {
  color: orange;
}

.import-in-progress {
  color: blue;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.import-completed {
  color: green;
}

.import-error {
  color: red;
}

.word-break {
  word-break: break-word;
}

/* Skill styles */
.skillsIDModal {
  max-width: 1400px !important;
  border-radius: 10px 10px;
}

.skillsIDModalAttribute {
  max-width: 92vw !important;
  max-height: 96vh !important;
  border-radius: 10px 10px;
}

.environmentFitSlateModal {
  min-width: 78vw !important;
  max-width: 92vw !important;
  min-height: 35vh !important;
  max-height: 96vh !important;
  border-radius: 10px 10px;
}

.compensationvsInterviewID {
  max-width: 1100px !important;
  border-radius: 10px 10px;
}

.div-skill:first-child {
  margin-left: 82px;
}

.div-skill {
  background-color: #e8eef9;
  text-align: center;
  padding-bottom: 0px !important;
  width: 94px;
}

.div-skill-white {
  text-align: center;
  padding-bottom: 0px !important;
  width: 94px;
  border: none !important;
}

.skill-img {
  width: 35px;
  border-radius: 50px;
  background-color: #ccc;
}

.fontsize10 {
  font-size: 10px;
}

.company-user-logo {
  width: 35px;
  border-radius: 50px;
  background-color: #ccc;
}

.inline-block {
  display: flex;
}

.max-width-none {
  max-width: none;
}

.pdf-skills-chart {
  margin: 0;
  padding: 0;
}

.scoreClass {
  float: left;
  display: flex;
  flex-direction: "row";
  margin-left: 8px;
}

.zscore-label {
  vertical-align: top;
  text-align: center;
}

.chart {
  overflow: auto;
}

/* Skill chart color */

.firstcolor {
  background-color: #23324D;
  color: #fff !important;
}

.secondcolor {
  background-color: #6782AD;
  color: #fff !important;
}

.thirdcolor {
  background-color: #9DAAc7;
  color: #fff !important;
}

.fourthcolor {
  background-color: #ACB3C3;
  color: black !important;
}

.fifthcolor {
  background-color: #DADEEA;
  color: black !important;
}

.nocolor {
  background-color: #DADEEA;
  color: black;
}

/* Skill chart slate avg classes*/

.firstcolorslateavg {
  background-color: #23324D;
}

.secondcolorslateavg {
  background-color: #6782AD;
}

.thirdcolorslateavg {
  background-color: #9DAAc7;
}

.fourthcolorslateavg {
  background-color: #ACB3C3;
  color: black !important;
}

.fifthcolorslateavg {
  background-color: #DADEEA;
  color: black !important;
}

.nocolorslateavg {
  background-color: #DADEEA;
  color: black;
}

.skillsNumbersslateavg {
  font-family: "KumbhSans";
  font-size: 0.8em !important;
  font-weight: bold;
}

/*..............................................................*/

.skillsColorBox {
  width: 54px;
  height: 30px;
  padding-top: 7px;
  border-color: white;
  border-style: solid;
  border-width: thin;
}

.skillsNumbers {
  font-family: "KumbhSans";
  font-size: 0.8em !important;
  font-weight: bold;
}

.profileBackColor {
  background-color: #e8eef9;
}

.blackColor {
  color: black;
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 10px;
}

.greyColor {
  color: grey;
}

.spec-table th,
.spec-table td {
  font-size: 0.9em;
  padding: 8px;
  height: 72px;
  text-align: center;
  color: white;
  border: 2px solid white;
  min-width: 5.7vw;
}

.spec-table td:first-child {
  color: #002254;
  border: none;
  text-align: left;
  max-width: 380px !important;
  width: auto !important;
}

.truncateText {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 221px;
  margin-top: -8px;
  word-break: break-all;
}

.skillTruncateText {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 220px;
  word-break: break-all;
}

.view-more {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #f4f7fc !important;
  cursor: pointer;
}

.view-more:hover {
  text-decoration: underline;
  color: blue;
}

.zScore {
  margin-left: 16px;
  margin-right: -15px;
}

.chart-z-score {
  margin-left: -15px;
  margin-right: -15px;
}

.custom-modal-title-size {
  margin-top: 15px !important;
  color: #3a7ddd;
}

.averageClass {
  background-color: #094f8b;
  width: 16%;
}

.model-content-style {
  border: none;
  padding: 0;
  border-radius: 0px !important;
  padding-bottom: 5px;
  max-height: 75vh;
  max-width: 100%;
}

.blackColorWithBorderNone {
  color: black !important;
  border: none !important;
  vertical-align: bottom;
  padding-bottom: 20px !important;
  font-weight: 600;
  width: 94px;
}

.blocksStyle {
  text-align: center;
  width: 54px;
  height: 30px;
  font-size: 8.5px;
  color: white;
  padding-top: 2px;
}

.imgBorder {
  border-radius: 40px 40px;
}

.skillCompanyLogo {
  margin-top: 5px;
  margin-bottom: 5px;
}

#norecord {
  width: 100% !important;
  text-align: center;
  position: absolute;
  top: 35%;
}

.fadeINOut {
  animation: fadeINOut 1s ease-out;
  animation-iteration-count: 1;
}

.fadeINOut:hover {
  background-color: #3a7ddd;
}

@keyframes fadeINOut {
  0% {
    transform: scale(0, 0);
  }

  50% {
    transform: scale(0.5, 0.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

.marginTop {
  margin-top: -38px;
}

.skill-chart-dynamic-width {
  width: 800px !important;
}

.iconStyle {
  padding-right: 15%;
}

.border-none {
  border: none;
}

.center_tooltip_image {
  border-radius: 20px 20px;
  text-align: center;
}

.compensationModelDynamicWidth {
  width: 500px !important;
  height: 300px !important;
}

.zrgCompensationStyleForLoader {
  margin: 12% 0% -13% 44%;
}

/* Charts */
.apexcharts-marker:hover {
  filter: none !important;
}

/*Additional CSS */

.dashboardID {
  max-width: 1300px !important;
  width: 1300px !important;
  border-radius: 10px 10px;
  background: #edf2f9 !important;
}

.model_content_bgcolor {
  background: #edf2f9 !important;
}

.card-body .apexcharts-canvas {
  margin-left: 0px;
}

.card_body_class {
  background-color: white;
  box-shadow: 0px 7px 14px 0px rgba(65, 69, 88, 0.1);
  border-radius: 5px;
}

.height_160 {
  height: 160px !important;
  vertical-align: middle;
  align-content: center;
  text-align: center;
}

.h3 {
  font-weight: 700;
  font-size: 2rem;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

.color_and_size {
  color: rgb(55, 61, 63);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
}

.same_font {
  height: 12px;
  width: 12px;
  display: inline-block;
  border-color: rgb(255, 255, 255);
  border-radius: 12px;
}

.color1AB2A8 {
  background: #1ab2a8 !important;
  color: #1ab2a8;
}

.color7E36AF {
  background: #7e36af !important;
  color: #7e36af;
}

.colorD9534F {
  background: #d9534f !important;
  color: #d9534f;
}

.customHeaderClass {
  padding: 5px;
  width: 100%;
  font-family: "KumbhSans", sans-serif !important;
  font-size: 1rem;
  background-color: #edf2f9;
}

.base_color {
  color: rgb(2, 143, 251) !important;
  background: rgb(2, 143, 251) !important;
}

.bonus_color {
  background: rgb(0, 227, 151) !important;
  color: rgb(0, 227, 151);
}

.lti_color {
  background: rgb(242, 213, 155) !important;
  color: rgb(242, 213, 155);
}

.search_color {
  background: rgb(106, 42, 191) !important;
  color: rgb(106, 42, 191);
  height: 4px !important;
  width: 16px !important;
  top: 8px !important;
}

.same_total_font {
  height: 12px;
  width: 12px;
  position: relative;
  top: 5px;
  display: inline-block;
  border-color: rgb(255, 255, 255);
  border-radius: 12px;
}

.internal_divs {
  padding: 5px;
  font-family: "KumbhSans", sans-serif !important;
}

.dashboar_loader {
  margin: 21% 0 0 40%;
}

.box_loader {
  margin: 12% 0 0 40%;
}

.clientdivpadding {
  margin-top: -24px;
}

.send_notificatoin_confim_box {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  width: 400px;
  position: fixed !important;
  top: 286px;
  right: 36%;
  z-index: 1;
  max-width: inherit !important;
}

.send_notificatoin_confim_delete_box {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  min-width: 400px;
  position: fixed !important;
  top: 126px;
  right: 40%;
  z-index: 1;
  max-width: min-content !important;
}

.break_page {
  word-break: BREAK-ALL;
}

.budgetGraphStyle {
  position: absolute;
  left: 10%;
  top: 35%;
  text-align: center;
  padding: 15px 60px 15px 15px;
}

.skillGraphStyle {
  position: absolute;
  left: 45%;
  top: 44%;
  text-align: center;
}

.clientAccesstext {
  font-size: 14px;
  font-style: italic;
  padding-left: 20px;
}

.internalusertext {
  font-size: 18px;
}

.main_compensation_select {
  width: 130px;
  height: 31px;
}

.main_slate_select {
  width: 110px;
  height: 31px;
}

.score_slate_select {
  width: 150px;
  height: 31px;
  display: inline-block !important;
  padding-left: 10px;
  text-align: left;

  &:hover {
    border-color: #6366f1;
  }

  &:disabled:hover {
    border-color: revert;
  }
}

.attachment-select {
  width: 100%;
  height: 31px;
  display: inline-block !important;
  padding-left: 10px;
  text-align: left;

  &:hover {
    border-color: #6366f1;
  }
}

.zrgscoingsavebtn {
  margin-left: 80%;
}

.slatepopups {
  height: calc(90vh - 242px);
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.culturepopups {
  overflow: auto;
  max-height: 54vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.slatepopupsCLientscoring {
  height: calc(90vh - 236px);
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.slatepopupstransition {
  height: calc(90vh - 380px);
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.slatepopupsSkillattribute {
  max-height: calc(90vh - 383px);
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.completeModaldeassignment {
  height: 350px;
  overflow-y: auto;
  border-bottom: 1px solid #d3d3d3;
  margin-right: 2px;
}

.note-col {
  font-size: 13px;
  float: left;
  margin: 5px 0px 5px 12px;
  color: #000;
}

.material-icon-edit>img {
  width: 18px;
  height: 18px;
  float: left;
  margin: 0.5rem 5px;
}

.weightage-icon-category {
  position: inherit;
  margin: 0px 5px;
  float: left;
}

.weightage-icon-category>img {
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.weightage-icon-ddl {
  margin: -4px 6px -4px 0px;
  color: #3a7ddd;
  font-size: 18px !important;
}

.weightage-icon-ddl>img {
  width: 18px;
  height: 18px;
}

.category-label {
  font-weight: normal;
  position: inherit;
  margin-bottom: 0px;
  width: calc(100% - 30px);
  word-wrap: break-word;
}

.category-control {
  float: left;
  width: calc(100% - 30px);
}

.note-min-width-60px {
  min-width: 60px;
}

/* width */
.culturepopups::-webkit-scrollbar,
.full-app-scrollbar::-webkit-scrollbar,
.cultureAttachmentpopup::-webkit-scrollbar,
.cultureFitpopup::-webkit-scrollbar,
.slatepopups::-webkit-scrollbar,
.ql-editor::-webkit-scrollbar,
.ext-candidate-rich-text::-webkit-scrollbar,
.slatepopupstransition::-webkit-scrollbar,
.slatepopupsSkillattribute::-webkit-scrollbar,
.slatepopupsCLientscoring::-webkit-scrollbar,
.completeModaldeassignment::-webkit-scrollbar,
.scrollbaractiveuser::-webkit-scrollbar,
.scrollbarfavouritesearch::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar,
.feedback-category-list-scroll::-webkit-scrollbar,
.scrollbaronpopup::-webkit-scrollbar,
.interviewer-overflow::-webkit-scrollbar,
.mapping-container::-webkit-scrollbar,
.lg-modal-scrollbar::-webkit-scrollbar,
.react-responsive-modal-modal::-webkit-scrollbar,
.industry-link-company-add-popup *::-webkit-scrollbar,
.industrylink-company-multiselect-panelTemplate * .p-multiselect-items-wrapper::-webkit-scrollbar,
.scrollbarGenerateReportModalBody::-webkit-scrollbar,
.compare-tool-scroll-section::-webkit-scrollbar,
.skill-scrollbar::-webkit-scrollbar,
.import-dashboard-skill-scrollbar::-webkit-scrollbar,
.existing-skill-scrollbar::-webkit-scrollbar,
.import-skill-scrollbar::-webkit-scrollbar,
.release-notes-scrollbar::-webkit-scrollbar,
.release-scrollbar::-webkit-scrollbar,
.videoTopic-scrollbar::-webkit-scrollbar,
.videoLibrary-scrollbar::-webkit-scrollbar,
.dashboard-table::-webkit-scrollbar,
.candidateGroupingModalScrollbar::-webkit-scrollbar,
.popularInsights-scrollbar::-webkit-scrollbar,
.modal-content-wrapper::-webkit-scrollbar {
  width: 7px;
  padding: 0 1px;
  height: 7px;
}

/* Track */
.culturepopups::-webkit-scrollbar-track,
.cultureAttachmentpopup::-webkit-scrollbar-track,
.cultureFitpopup::-webkit-scrollbar-track,
.slatepopups::-webkit-scrollbar-track,
.dashboard-table::-webkit-scrollbar-track,
.ext-candidate-rich-text::-webkit-scrollbar-track,
.slatepopupstransition::-webkit-scrollbar-track,
.completeModaldeassignment::-webkit-scrollbar-track,
.scrollbaractiveuser::-webkit-scrollbar-track,
.scrollbarfavouritesearch::-webkit-scrollbar-track,
.interviewer-overflow::-webkit-scrollbar-track,
.release-notes-scrollbar::-webkit-scrollbar-track,
.import-dashboard-skill-scrollbar::-webkit-scrollbar-track,
.existing-skill-scrollbar::-webkit-scrollbar-track,
.import-skill-scrollbar::-webkit-scrollbar-track,
.candidateGroupingModalScrollbar::-webkit-scrollbar-track,
.popularInsights-scrollbar::-webkit-scrollbar-track,
.modal-content-wrapper::-webkit-scrollbar-track {
  background: #fff;
}

.attachmentTable::-webkit-scrollbar-track,
.slatepopupsCLientscoring::-webkit-scrollbar-track,
.ql-editor::-webkit-scrollbar-track,
.slatepopupsSkillattribute::-webkit-scrollbar-track,
.mapping-container::-webkit-scrollbar-track,
.react-responsive-modal-modal::-webkit-scrollbar-track,
.compare-tool-scroll-section::-webkit-scrollbar-track,
.release-scrollbar::-webkit-scrollbar-track,
.videoTopic-scrollbar::-webkit-scrollbar-track,
.videoLibrary-scrollbar::-webkit-scrollbar-track,
.import-dashboard-skill-scrollbar::-webkit-scrollbar-track,
.existing-skill-scrollbar::-webkit-scrollbar-track,
.import-skill-scrollbar::-webkit-scrollbar-track,
.skill-scrollbar::-webkit-scrollbar-track,
.popularInsights-scrollbar::-webkit-scrollbar-track,
.modal-content-wrapper::-webkit-scrollbar-track {
  background: #e2eff6;
}

/* Handle */
.full-app-scrollbar::-webkit-scrollbar-thumb {
  background: #e2eff6;
  border-radius: 5px;
}

.culturepopups::-webkit-scrollbar-thumb,
.cultureAttachmentpopup::-webkit-scrollbar-thumb,
.cultureFitpopup::-webkit-scrollbar-thumb,
.slatepopups::-webkit-scrollbar-thumb,
.dashboard-table::-webkit-scrollbar-thumb,
.ql-editor::-webkit-scrollbar-thumb,
.ext-candidate-rich-text::-webkit-scrollbar-thumb,
.slatepopupstransition::-webkit-scrollbar-thumb,
.slatepopupsSkillattribute::-webkit-scrollbar-thumb,
.slatepopupsCLientscoring::-webkit-scrollbar-thumb,
.completeModaldeassignment::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb,
.scrollbaractiveuser::-webkit-scrollbar-thumb,
.scrollbarfavouritesearch::-webkit-scrollbar-thumb,
.feedback-category-list-scroll::-webkit-scrollbar-thumb,
.scrollbaronpopup::-webkit-scrollbar-thumb,
.interviewer-overflow::-webkit-scrollbar-thumb,
.mapping-container::-webkit-scrollbar-thumb,
.lg-modal-scrollbar::-webkit-scrollbar-thumb,
.react-responsive-modal-modal::-webkit-scrollbar-thumb,
.industry-link-company-add-popup *::-webkit-scrollbar-thumb,
.industrylink-company-multiselect-panelTemplate * .p-multiselect-items-wrapper::-webkit-scrollbar-thumb,
.scrollbarGenerateReportModalBody::-webkit-scrollbar-thumb,
.compare-tool-scroll-section::-webkit-scrollbar-thumb,
.skill-scrollbar::-webkit-scrollbar-thumb,
.release-scrollbar::-webkit-scrollbar-thumb,
.videoTopic-scrollbar::-webkit-scrollbar-thumb,
.videoLibrary-scrollbar::-webkit-scrollbar-thumb,
.release-notes-scrollbar::-webkit-scrollbar-thumb,
.import-dashboard-skill-scrollbar::-webkit-scrollbar-thumb,
.existing-skill-scrollbar::-webkit-scrollbar-thumb,
.import-skill-scrollbar::-webkit-scrollbar-thumb,
.candidateGroupingModalScrollbar::-webkit-scrollbar-thumb,
.popularInsights-scrollbar::-webkit-scrollbar-thumb,
.modal-content-wrapper::-webkit-scrollbar-thumb {
  background: #12314c;
  border-radius: 5px;
}

/* Handle on hover */
.full-app-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #e2eff6;
}

.culturepopups::-webkit-scrollbar-thumb:hover,
.cultureAttachmentpopup::-webkit-scrollbar-thumb:hover,
.cultureFitpopup::-webkit-scrollbar-thumb:hover,
.slatepopups::-webkit-scrollbar-thumb:hover,
.dashboard-table::-webkit-scrollbar-thumb:hover,
.ql-editor::-webkit-scrollbar-thumb:hover,
.ext-candidate-rich-text::-webkit-scrollbar-thumb:hover,
.slatepopupstransition::-webkit-scrollbar-thumb:hover,
.slatepopupsSkillattribute::-webkit-scrollbar-thumb:hover,
.slatepopupsCLientscoring::-webkit-scrollbar-thumb:hover,
.completeModaldeassignment::-webkit-scrollbar-thumb:hover,
.scrollbar::-webkit-scrollbar-thumb:hover,
.scrollbaractiveuser::-webkit-scrollbar-thumb:hover,
.scrollbarfavouritesearch::-webkit-scrollbar-thumb:hover,
.feedback-category-list-scroll::-webkit-scrollbar-thumb:hover,
.scrollbaronpopup::-webkit-scrollbar-thumb:hover,
.interviewer-overflow::-webkit-scrollbar-thumb:hover,
.mapping-container::-webkit-scrollbar-thumb:hover,
.lg-modal-scrollbar::-webkit-scrollbar-thumb:hover,
.react-responsive-modal-modal::-webkit-scrollbar-thumb:hover,
.industry-link-company-add-popup *::-webkit-scrollbar-thumb:hover,
.industrylink-company-multiselect-panelTemplate * .p-multiselect-items-wrapper::-webkit-scrollbar-thumb:hover,
.scrollbarGenerateReportModalBody::-webkit-scrollbar-thumb:hover,
.compare-tool-scroll-section::-webkit-scrollbar-thumb:hover,
.skill-scrollbar::-webkit-scrollbar-thumb:hover,
.release-notes-scrollbar::-webkit-scrollbar-thumb:hover,
.release-scrollbar::-webkit-scrollbar-thumb:hover,
.videoTopic-scrollbar::-webkit-scrollbar-thumb:hover,
.videoLibrary-scrollbar::-webkit-scrollbar-thumb:hover,
.import-dashboard-skill-scrollbar::-webkit-scrollbar-thumb:hover,
.existing-skill-scrollbar::-webkit-scrollbar-thumb:hover,
.import-skill-scrollbar::-webkit-scrollbar-thumb:hover,
.candidateGroupingModalScrollbar::-webkit-scrollbar-thumb:hover,
.popularInsights-scrollbar::-webkit-scrollbar-thumb:hover .modal-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: #12314c;
}

.mainDiv_changepassword {
  display: flex;
  height: 88%;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  width: 100%;
}

.cardStyle_changepassword {
  width: 660px;
  height: auto;
  border-color: white;
  background: #fff;
  padding: 20px 0 30px;
  border-radius: 4px;
  margin: 30px 0;
  box-shadow: 0px 0 2px 0 rgba(0, 0, 0, 0.25);
}

.formTitle_changepassword {
  font-weight: 600;
  margin-top: 20px;
  color: #2f2d3b;
  text-align: center;
}

.inputLabel_changepassword {
  font-size: 12px;
  color: #555;
  margin-bottom: 0px;
  margin-top: 17px;
}

.inputDiv_changepassword {
  width: 70%;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.input1_changepassword,
input1_changepassword:focus,
input1_changepassword:hover {
  height: 40px !important;
  font-size: 16px !important;
  border-radius: 4px !important;
  border: solid 1px #ccc !important;
  padding: 0 11px !important;
}

.input1_changepassword :disabled {
  cursor: not-allowed;
  border: solid 1px #eee;
}

.forgot-password-email {
  height: 40px !important;
  font-size: 16px !important;
  border-radius: 4px !important;
  border: solid 1px #ccc !important;
  padding: 0 11px !important;
}

.forgot-password-email:focus,
.forgot-password-email:hover {
  border: solid 1px #6dace2 !important;
}

.forgot-password-email :disabled {
  cursor: not-allowed;
  border: solid 1px #eee;
}

.buttonWrapper_changepassword {
  margin-top: 20px;
}

.submitButton_changepassword {
  width: 70%;
  height: 40px;
  margin: auto;
  display: block;
  color: #fff;
  background-color: #065492;
  border-color: #065492;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.submitButton_forgotpassword {
  width: 100px;
  height: 40px;
  margin: auto;
  display: block;
  color: #fff;
  background-color: #065492;
  border-color: #065492;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.035);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.submitButton_changepassword:disabled {
  border: 1px solid #cccccc;
  background-color: #cccccc;
  color: #666666;
}

.relative_blocks {
  position: relative;
  top: -30px;
  width: 95%;
}

/* Wrapping */
.Tooltip-Wrapper {
  display: inline-block;
  position: relative;
}

.Tooltip-Wrapper-flex {
  display: inline-flex;
  position: relative;
}

.budget_cls {
  position: relative;
}

.align_left {
  text-align: left;
}

.slate_average_cls {
  color: darkblue;
  font-size: 18px;
  font-weight: bold;
}

.compensationGraphStyle {
  font-family: Helvetica, Arial, sans-serif;
  text-anchor: start;
  font-size: 14px;
  font-weight: 900;
  fill: rgb(55, 61, 63);
}

.padding_bottom_30 {
  padding-bottom: 30px;
}

.change-password-invalid-color {
  color: red;
}

.change-password-valid-color {
  color: green;
}

.forgot-password-link-color a {
  color: RGB(18 49 76/80%);
}

.forgot-password-link-color li {
  list-style-type: none;
}

.elmah {
  word-break: break-all;
  height: 200px;
  overflow: auto;
}

.elmah-message {
  word-break: break-all;
  height: auto;
  overflow: auto;
}

/* width */
.elmah::-webkit-scrollbar {
  width: 7px;
  padding: 0 1px;
}

/* Track */
.elmah::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.elmah::-webkit-scrollbar-thumb {
  background: #12314c;
  border-radius: 5px;
}

/* Handle on hover */
.elmah::-webkit-scrollbar-thumb:hover {
  background: #12314c;
}

.skills-personimage {
  height: 56px;
  width: 56px;
}

.skills-personFont {
  font-size: 7.5px;
}

.pdfTooltipsPosition {
  margin-bottom: 16px;
  text-align: center;
}

.culturefiteditTooltipsPosition {
  text-align: center;
}

.attachmentTable {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.culture-fit-attachment>.attachmentTable {
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 2px;
}

.span-attachments {
  min-height: 213px;
}

.table-assignment tbody,
.table-view-candidate tbody {
  display: block;
  height: 200px;
  overflow: auto;
}

.table-assignment thead,
.table-assignment tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.table-assignment thead tr th,
.table-assignment tbody tr td {
  margin: 5px !important;
}

.table-assignment thead {
  width: 100%;
}

.compensation-header {
  height: 45px;
}

.compensation-card {
  min-height: 205px;
}

.attachmentAnchor {
  color: blue;
  cursor: pointer;

  &:hover {
    text-decoration: underline;
  }

  &:active {
    opacity: 0.25;
  }
}

#testing {
  fill: #00d455;
}

.deleteAttachmentModal {
  width: 445px;
  height: 170px;
  overflow: hidden;
}

.attachmentTableHead th {
  top: 0;
  position: sticky;
  background: #e8eef9;
  z-index: 20;
  min-height: 30px;
  height: 30px;
  text-align: left;
}

.candidateFileName {
  width: 30%;
}

.skillAverage {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.skillattributecircle {
  width: 43px;
  height: 42px;
  border-radius: 100%;
  text-align: center;
  padding-top: 12px;
  box-shadow: 0px 2px 5px #737373;
  border: none !important;
}

.skillattributecirclePDF {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  text-align: center;
  padding-top: 7px;
  font-size: 8.5px;
  margin-left: 6px;
  box-shadow: 0px 2px 5px #737373;
  color: white;
  margin-top: 2px;
}

.backgroundcolor {
  background-color: white;
}

.alignleft {
  margin-left: 50px;
}

.full-app-scrollbar {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
  color: #12314c;
}

.scrollbar {
  max-height: 240px;
  overflow-y: auto !important;
  overflow-x: hidden;
  padding-right: 2px;
}

.slate-content-scrollbar {
  max-height: calc(100vh - 345px);
  overflow-y: auto !important;
  overflow-x: hidden;
  padding-right: 2px;
}

.lg-modal-scrollbar {
  max-height: 75vh;
  overflow-y: auto !important;
  overflow-x: hidden;
  padding-right: 2px;
}

.scrollbaronpopup {
  height: 280px;
  overflow-y: auto !important;
  overflow-x: hidden;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

/* Track */
/* .full-app-scrollbar::-webkit-scrollbar-track {
  background: #e8eef9;
} */

.scrollbar::-webkit-scrollbar-track,
.industry-link-company-add-popup *::-webkit-scrollbar-track,
.industrylink-company-multiselect-panelTemplate * .p-multiselect-items-wrapper::-webkit-scrollbar-track,
.scrollbarGenerateReportModalBody::-webkit-scrollbar-track {
  background: #e8eef9;
}

.scrollbaractiveuser {
  height: 45vh;
  /* height: 555px; */
  overflow: auto !important;
  padding-right: 2px;
}

.scrollbarfavouritesearch {
  height: 30vh;
  /* height: 270px; */
  overflow: auto !important;
  padding-right: 2px;
}

.feedback-category-list-scroll {
  height: 310px;
  overflow-y: auto;
  overflow-x: hidden;
}

.feedback-category-list-scroll::-webkit-scrollbar-track {
  background: #c4c4c4;
}

.scrollbaronpopup::-webkit-scrollbar-track {
  background: #fff;
}

.notificationred {
  left: -5px;
  top: 5px;
  padding-left: 5px;
  position: absolute;
  background: #f13c20;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
  color: #fff;
}

.notificationgreen {
  left: -5px;
  top: 5px;
  position: absolute;
  background: green;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
  color: #fff;
}

.position-relative {
  position: relative;
}

.clientaccessicongreen {
  color: green;
  font-size: 16px !important;
}

.clientaccessiconred {
  color: red;
  font-size: 16px !important;
}

.multiselect-demo .p-multiselect {
  min-width: 21rem;
}

.multiselect-culturefit .p-multiselect {
  min-width: 26rem;
}

.multiselect-demo .multiselect-custom .p-multiselect-label:not(.p-placeholder):not(.p-multiselect-items-label) {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.multiselect-demo .multiselect-custom .country-item-value {
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  display: inline-flex;
  margin-right: 0.5rem;
  background-color: var(--primary-color);
  color: var(--primary-color-text);
}

.p-multiselect .p-multiselect-label {
  padding: 0.5rem 0.75rem !important;
}

.multiselect-demo .multiselect-custom .country-item-value img.flag {
  width: 20px;
}

.p-multiselect-filter-container .p-inputtext {
  padding: 0.2rem 0.2rem;
}

.p-multiselect-items-wrapper {
  max-height: 158px !important;
}

.country-item-value img.flag {
  width: 17px;
}

.country-item {
  display: flex;
  align-items: center;
  min-height: 29px;
}

.country-item img.flag {
  width: 18px;
  margin-right: 0.5rem;
}

.ct-item {
  font-size: 15px;
  font-weight: bold;
}

.usericonboximg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.editiconbox:hover .rowediticoniconbox,
.editiconbox:hover .zlayericonbox {
  display: block;
}

.editiconbox:hover .iconboxwarning {
  opacity: 0.3;
}

.zlayericonbox {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.7;
  top: 0;
  left: 0;
  background: #fff;
  display: none;
  cursor: pointer;
}

.rowediticoniconbox {
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding-top: 5px;
  display: none;
  z-index: 1;
}

.iconcoloriconiconbox {
  color: #12314c;
}

.warningiconiconbox {
  position: absolute;
  left: 24px;
  padding-top: 23px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 0;
  cursor: pointer;
}

.iconboxwarning {
  color: red;
}

.feedbacknoPading {
  padding: 0px;
  height: "100%";
  align-items: "top";
}

.feedbackTable {
  left: 0%;
  right: 0%;
  border-collapse: collapse;
  background-color: #ffffff;
  align-items: center;
  border: 0;
}

.feedbackColumn {
  border-collapse: collapse;
  font-size: 10px;
  line-height: 10px;
  height: 10px;
}

.feedbackCollpase {
  width: fit-content;
  border-collapse: collapse;
}

.feedbackfirstInnerColumn {
  border-collapse: collapse;
  width: 25px;
}

.borderCollapse {
  border-collapse: collapse;
  border: none;
}

.borderCollapse thead th,
.borderCollapse thead tr,
.borderCollapse th,
.borderCollapse td {
  border: none;
  padding: 0;
}

.feedack2Column {
  width: 7px;
}

.feedback3Column {
  border-collapse: collapse;
  font-size: 10px;
  line-height: 10px;
  height: 10px;
}

.zrgTeamModal {
  overflow-x: hidden !important;
}

.feedbackSecondInnerColumn {
  border-collapse: collapse;
  background-color: #12314c;
}

.feedbackThirdInnerColumn {
  border-collapse: collapse;
  width: 25px;
}

.feedbackFourthInnerColumn {
  border-collapse: collapse;
  font-family: "Calibri,'Trebuchet MS', Helvetica, Arial, sans-serif";
  color: #ffffff;
  font-size: 12px;
  line-height: 15px;
  font-weight: bold;
  height: 30px;
}

.feedbackFifthColumn {
  border-collapse: collapse;
  font-size: 20px;
  line-height: 20px;
  height: 20px;
}

.feedbackSixthColumn {
  border-collapse: collapse;
  width: 100%;
  height: 311px;
  border: "0";
}

.feedbackSeventhColumn {
  border-collapse: collapse;
  width: 100%;
  height: 307px;
}

.feedbackEightColumn {
  border-collapse: collapse;
  font-family: "Calibri, 'Trebuchet MS', Helvetica, Arial, sans-serif";
  color: #474747;
  font-size: 14px;
  line-height: 20px;
}

.fullwidth {
  width: 100%;
}

.fixLayout {
  table-layout: fixed;
}

.margin-culture {
  margin-left: 38px !important;
}

.margin-transition {
  margin-left: 10px !important;
}

.culturefiteditModal {
  border-radius: 10px;
  width: 560px;
  height: 395px;
}

.candidateDetailsExternalModal {
  border-radius: 10px;
  width: 750px;
}

.searchAttachmentsModal {
  max-width: 700px !important;
  border-radius: 10px 10px;
  max-height: 480px;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
}

.searchAttachmentIcon {
  font-size: 22px;
}

.externalattachmentTable {
  width: 550px;
  height: 300px;
  overflow-y: auto;
}

.downloadMargin {
  margin-left: 10px;
}

.externalAttachmentFile {
  margin-bottom: 5px;
}

.externalTable td:first-child {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.externalTable td:last-child {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.externalTable tr:nth-child(even) {
  background-color: #ffffff;
}

.externalTable tr:nth-child(odd) {
  background-color: #d7e0eb;
}

.externalTable td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.filedownload {
  width: 4%;
  vertical-align: text-top;
  padding: 15px;
}

.attachment-width {
  max-width: 300px;
  min-width: 100px;
}

.externalTable th {
  top: 0;
  position: sticky;
  background-color: white;
  z-index: 20;
  min-height: 30px;
  height: 30px;
  text-align: left;
}

.externalattachmentTable::-webkit-scrollbar {
  width: 7px;
  padding: 0 1px;
}

/* Handle */
.externalattachmentTable::-webkit-scrollbar-thumb {
  background: #12314c;
  border-radius: 5px;
}

/* Handle on hover */
.externalattachmentTable::-webkit-scrollbar-thumb:hover {
  background: #12314c;
}

.attachmentTable::-webkit-scrollbar {
  width: 7px;
  padding: 0 1px;
}

/* Handle */
.attachmentTable::-webkit-scrollbar-thumb {
  background: #12314c;
  border-radius: 5px;
}

/* Handle on hover */
.attachmentTable::-webkit-scrollbar-thumb:hover {
  background: #12314c;
}

.skillsGraphWidth {
  width: 300px !important;
}

.skillsGraphNoCandidateWidth {
  width: 500px !important;
}

.skillsdescstyle {
  font-size: "10px";
  font-style: italic;
}

.compFont {
  font-size: 13px;
}

.comptitleFont {
  font-size: 13px;
}

.behaviordropdown {
  display: none;
}

.cultureFitpopup {
  height: 280px;
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.overallfitwidth {
  width: 30px;
  height: 18px;
}

.overallfitpercentage {
  font-size: 15px;
  color: black !important;
  font-weight: bold;
}

.cultureAttachmentpopup {
  height: 150px;
  overflow-y: scroll !important;
  overflow-x: hidden;
}

.interview-results-btn {
  border: 1px solid #12314c;
  border-radius: 12px;
  padding: 4px 6px;
  cursor: pointer;
}

.interview-results-btn-disabled {
  border: 1px solid #12314c;
  background-color: lightgray;
  border-radius: 12px;
  padding: 4px 6px;
  cursor: default;
}

.piechart {
  position: absolute;
  top: 0;
}

#interviewresults .modal-lg {
  max-width: 1400px;
}

.blogboxbg {
  background: #fff;
  box-shadow: 0px 2px 8px #c3c3c3;
  border-radius: 5px;
  max-width: 20vw;
  margin: 0 auto;
}

.blogboxbg .entry-title {
  position: relative;
  min-height: 140px;
}

.blogboxbg .entry-title h3 {
  font-size: 17px;
  line-height: 1.6;
  position: absolute;
  bottom: 0;
  background: rgba(51, 51, 51, 0.5);
  padding: 5px 17px;
  width: 100%;
}

.blogboxbg .entry-title * a {
  color: #fff;
}

.blogboxbg .entry-content {
  margin-top: 10px;
  padding: 5px 15px;
}

.blogboxbg p {
  line-height: 1.8;
}

.blogboxbg .entry-title img {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.blogboxbg img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

.interviewscoreimg {
  height: 120px;
  border-radius: 50%;
  text-align: center;
}

.recommended {
  position: absolute;
  top: 286px;
  left: -60px;
  font-weight: bold;
}

.interviewscorepop {
  position: absolute;
  right: 33px;
  top: -33px;
  font-weight: bold;
}

.targeticon {
  position: absolute;
  left: 35%;
  opacity: 0.3;
  width: 80px;
  height: 80px;
  top: 25px;
}

.borderzero {
  border: 0;
}

.industriesheight {
  min-height: 85px;
}

.preferencemsgfont {
  font-size: 12px;
}

.additionaldocument {
  color: #12314c !important;
}

.reset-icon {
  color: red;
  font-size: 16px !important;
  cursor: pointer;
  margin-top: 4px;
}

.close-icon {
  color: #767676;
  font-size: 16px !important;
  cursor: pointer;
  margin-top: 2px;
}

.skill-block {
  white-space: break-spaces;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 40px;
}

.skill-description {
  font-size: 11px;
  color: gray;
  padding: 0px 0px 0px 15px;
}

.btn-small {
  height: 24px;
  padding: 0px 5px;
}

.lg-modal-height {
  height: 92vh;
}

.event-modal-height {
  height: 88vh;
}

.ext-candidate-content-bg {
  min-height: calc(100vh - 145px);
}

.candidate-zrgscoring-bg {
  height: calc(100vh - 233px);
}

.ext-candidate-attachments {
  & .clip-filename-text {
    max-width: 45vw;
  }
}

.ext-candidate-attachments .table-borderless {
  margin-bottom: 0rem;
}

.ext-candidate-attachments .table.table-borderless thead tr th,
.ext-candidate-attachments .table.table-borderless tbody tr td,
.view-candidate-attachments .table.table-borderless thead tr th,
.view-candidate-attachments .table.table-borderless tbody tr td {
  padding: 0.25rem !important;
}

.assessment-rich-text-editor {
  height: calc(100vh - 442px);
  margin-bottom: 40px;
}

.expanded-rich-text-editor {
  width: 90vw;
  height: 80vh;
}

.expanded-rich-text-editor .ql-toolbar {
  background: #e8eef9;
  border-radius: 4px 4px 0px 0px;
}

.expanded-rich-text-editor .ql-container {
  border-radius: 0px 0px 4px 4px;
}

.expanded-modal {
  min-width: 90vw !important;
  max-height: 95vh !important;
  border-radius: 10px;
}

.modal-btn-row {
  margin-top: -6px;
  margin-bottom: 5px;
  padding-right: 3.5rem !important;
}

.assessment-expand-icon {
  font-size: 16px !important;
  padding-top: 4px;
}

.rich-text-editor .ql-tooltip,
.expanded-rich-text-editor .ql-tooltip {
  position: absolute !important;
  z-index: 1;
  left: 0px !important;
}

.ql-tooltip>input::placeholder {
  color: transparent !important;
}

.assignment-action {
  color: black;
  font-weight: 600;
  font-size: 13px;
}

.assignment-action>div {
  margin-top: 2px;
}

.assignment-icon {
  vertical-align: middle;
}

.candidate-modal>.react-responsive-modal-closeButton {
  display: none;
}

.candidate-modal .p-multiselect {
  min-width: 100% !important;
}

.modal-xl-custom {
  max-width: 60vw !important;
  max-height: 95vh !important;
  margin: 1rem auto;
  overflow: auto;
}

.modal-body-content {
  padding: 1rem 0.5rem 0;
}

.modal-xl-custom>.modal-body {
  padding: 1rem 0.5rem 0;
}

.modal-xl-custom .p-multiselect {
  width: 100%;
}

.modal-xl-custom .p-dropdown {
  width: 100%;
}

.cancel-icon {
  color: #f13c20;
  cursor: pointer;
  font-size: 22px;
}

.save-edit-icon {
  cursor: pointer;
  font-size: 22px;
}

.loader-bg {
  width: 100vw;
  height: 100vh;
  background-color: white;
  opacity: 0.5;
  z-index: 1100;
  position: fixed;
  top: 0;
  left: 0;
}

.interviewer-overflow {
  position: relative;
  /* test: test edit release modal */
  max-height: 84vh;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 3px 0px;
}

.zrg-mini {
  width: 40px;
  height: 40px;
}

.email-template-header {
  background-color: #12314c;
  height: 30px;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.email-template-header>div {
  padding: 6px 10px;
}

.email-template-rich-text-editor .ql-toolbar {
  background: #e8eef9;
  border-radius: 4px 4px 0px 0px;
}

.email-template-rich-text-editor .ql-container {
  border-radius: 0px 0px 4px 4px;
}

.email-template-rich-text-editor .ql-container .ql-editor {
  max-height: 280px;
  overflow: auto;
}

.emoji-position {
  top: 8px;
  position: relative;
  left: 1px;
}

.email-template-anchor a {
  color: #007bff !important;
}

.interview-result-table {
  position: inherit;
  text-align: left;
  font-weight: bold;
  margin: 10px;
  height: 100%;
  align-content: center;
}

.external-interviewer-popup {
  max-width: 1300px !important;
  width: 1300px !important;
  border-radius: 4px;
  max-height: 96vh;
}

.feedback-container .row {
  margin: 0rem !important;
}

.feedback-container .row.contentbg {
  margin: 1.5rem !important;
  margin-bottom: 0rem !important;
  margin-top: 1rem !important;
}

.feedback-candidate-list {
  background-color: white;
  border-radius: 10px;
  width: 100%;
  overflow: auto;
}

.candidate-status-complete {
  color: #00d455;
}

.candidate-status-importing {
  height: 22px;
  width: 22px;
}

.candidate-status-error {
  color: #f13c20;
}

.candidate-status-pending {
  color: #ffa800;
}

.align-center {
  align-items: center;
}

.switch-label {
  margin-bottom: 0;
}

.btn-copy-link {
  border: 1px solid lightgray;
  border-radius: 50px;
  margin-left: 5px;
  padding-right: 15px;
  padding-top: 3px;
}

.btn-copy-link .material-icons {
  top: 4px;
  position: relative;
  left: 4px;
}

/******************************* start tooltip css*******************************/
.btn-tooltip {
  position: relative;
  display: inline-block;
}

.btn-tooltip .btn-tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 170%;
  left: 50%;
  margin-left: -83px;
  opacity: 0;
  font-family: "KumbhSans", sans-serif !important;
  font-size: 13px;
  font-weight: normal;
  transition: opacity 0.3s;
}

.btn-tooltip .btn-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.btn-tooltip:hover .btn-tooltiptext {
  visibility: visible;
  opacity: 1;
}

.btn-tooltip .btn-tooltip-pwd {
  visibility: hidden;
  width: 130px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-left: -65px;
  margin-top: -30px;
  opacity: 0;
  font-family: "KumbhSans", sans-serif !important;
  font-size: 13px;
  font-weight: normal;
  transition: opacity 0.3s;
}

.btn-tooltip .btn-tooltip-pwd::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.btn-tooltip:hover .btn-tooltip-pwd {
  visibility: visible;
  opacity: 1;
}

/******************************* end tooltip css *******************************/

.border-right {
  border-right: 2px solid #fff !important;
}

.external-interviewer-bar {
  width: 120px;
  height: 10px;
  background-color: #e9ecef;
  margin-left: 15px;
}

.custom-radio {
  position: absolute;
  height: 20px;
  width: 20px;
  margin-top: 1px;
}

.custom-radio-label {
  margin-left: 25px;
}

.margin-left-75-px {
  margin-left: 75px;
}

.margin-left-150-px {
  margin-left: 150px;
}

.custom-dropdown {
  width: 100%;
}

.control-dropdown {
  width: 100%;
  border-radius: 4px !important;
}

.search-status-control-dropdown {
  width: 130%;
  border-radius: 4px !important;
}

.search-status-cancel {
  position: relative;
  left: 10px;
  top: 3px;
}

.control-dropdown>span {
  padding: 0.2rem 0rem 0.2rem 0.75rem;
}

.search-status-control-dropdown>span {
  padding: 0.2rem 0rem 0.2rem 0.75rem;
  min-height: 27px;
}

.control-dropdown>.p-dropdown-trigger,
.search-status-control-dropdown>.p-dropdown-trigger {
  width: 2.5rem !important;
}

.control-dropdown-borderless,
.control-dropdown-borderless:hover {
  width: 100%;
  border-radius: 4px !important;
  border: 1px solid transparent !important;
  font-weight: bold;
}

.control-dropdown-borderless>span {
  padding: 0.2rem;
}

.control-dropdown-borderless>.p-dropdown-trigger {
  width: 1.5rem !important;
}

.client-ddl-item {
  display: flex;
  margin: -6px;
  align-items: center;
}

.client-ddl-value {
  display: flex;
  margin: -8px;
  align-items: center;
}

.client-ddl-placeholder {
  min-height: 40px;
  margin-left: 5px;
  font-weight: 600;
}

.margin-top-8px {
  margin-top: 8px;
}

.client-access-span {
  padding-left: 15px;
  color: gray;
}

.btn-feedback-link>.material-icons-outlined {
  position: absolute;
  font-size: 18px !important;
  padding-left: 2px;
  padding-top: 2px;
}

/******************************* Login form css start *******************************/
.login-form.loginbg {
  background: url(../../images/Zi_Rebrand_Files/Backdroops/Backdrops_II.jpg);
  background-size: auto;
}

.login-form .login-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
}

.colorwhite {
  color: #ffffff;
}

.login-form .login-wrapper.col-md-6 {
  flex: 0 0 40%;
  max-width: 40%;
}

.login-form.img {
  background-repeat: no-repeat;
  background-position: center center;
}

.login-form .ftco-section {
  padding: 8em 0;
}

.login-form .login-wrap {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.login-form .login-wrap h3 {
  font-weight: 300;
  color: #fff;
}

.login-form .login-wrap .social {
  width: 100%;
}

.login-form .login-wrap .social a {
  width: 100%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #000;
  background: #fff;
}

.login-form .login-wrap .social a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.login-form .w-100 {
  width: 100% !important;
}

.login-form .ftco-section .btn {
  cursor: pointer;
  border-radius: 40px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
  text-transform: uppercase;
}

.login-form .ftco-section .btn.btn-primary {
  background: #e8f0fe !important;
  border: 1px solid #e8f0fe !important;
  color: #000 !important;
}

.login-form .ftco-section .form-control {
  height: 50px;
  color: white !important;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  width: 100%;
}

.login-form .form-control:hover,
.login-form .form-control:focus {
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.login-form .form-control {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.login-form .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.login-form .form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.login-form .form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.login-form .form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.login-form .form-control::placeholder {
  color: #ffffff;
  opacity: 1;
}

/******************************* Login form css end *******************************/

.clip-filename-text {
  max-width: 25vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-right-col {
  width: fit-content;
  bottom: 20px;
  position: absolute;
  right: 0;
  width: fit-content;
}

.modal-xl-client-access {
  max-width: 1080px !important;
  width: 1080px !important;
  padding: 0rem !important;
}

.modal-xl-client-access>.modal-body>.modal-dialog {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0.5rem auto auto;
}

.switch .disabled {
  cursor: default;
}

.slider.round.disabled {
  background-color: #bdbdbd !important;
}

.slider.round.disabled:before {
  background-color: #e0e0e0 !important;
}

.feedback-note {
  font-size: 12px;
  font-style: italic;
}

.feedback-loader-margin {
  z-index: 1000;
  top: 47%;
  left: 48%;
  border: 3px solid #fff !important;
  border-bottom: 3px solid transparent !important;
}

.edit-action {
  float: right;
  clear: both;
  margin-bottom: 10px;
  font-size: 20px !important;
}

.action-div {
  right: 0px;
  top: 0;
  position: absolute;
}

.candidate-image {
  width: 99px;
  height: 99px;
  border-radius: 50%;
  margin: 3px 1px 1px;
  cursor: default;
  object-fit: cover;
}

.candidate-default-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: 2px;
  cursor: default;
  color: #12314c;
}

.slate-user-image {
  height: 120px;
  width: 120px;
  border-radius: 15%;
  cursor: default;
  object-fit: cover;
}

img.slate-user-image {
  box-shadow: 0 0 8px darkgray;
}

.slate-user-default-image {
  height: calc(120px - 2rem);
  width: calc(120px - 2rem);
}

.profile-user-image {
  aspect-ratio: 1/1;
  width: 140px;
  height: 140px;
  border-radius: 1rem;
  cursor: default;
  object-fit: cover;
  box-shadow: 0 0 8px darkgray;
}

.profile-user-default-image {
  aspect-ratio: 1/1;
  width: 140px;
  height: 140px;
  border-radius: 1rem;
  background-color: white;
  cursor: default;
  color: white;
}

.slate-user-name {
  font-weight: bold;
  cursor: default;
  margin-right: 3px;
  font-size: 16px;
}

.slate-user-name-link {
  font-weight: bold;
  cursor: pointer;
  margin-right: 3px;
  font-size: 16px;
  /* color: #0000ff; */
  color: #0077b5;

  &:hover {
    text-decoration: underline !important;
  }
}

.slate-user-details {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* font-style: italic; */
  width: auto;
  cursor: default;
}

.slate-user-position-title {
  font-style: italic;
  width: 100%;
  cursor: default;
}

.div-user-details {
  width: 100%;
  font-size: 13px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.history-details-pdf {
  width: 100%;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 1px;
  margin-left: 2px;
}

.slate-company-image {
  cursor: default;
  display: flex;
  background-color: unset;
  align-items: center;
  border-radius: 4px;
  max-height: 52px;
  max-width: 88px;
}

.slate-company-image>img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.progressbar {
  counter-reset: step;
  cursor: default;
}

.progressbar li {
  list-style: none;
  display: inline-block;
  /* width: 20%; */
  margin: 0 4px;
  position: relative;
  text-align: center;
  color: #c5c5c5;
  font-size: 10px;
}

.progressbar li:before {
  /* content: counter(step); */
  content: "";
  counter-increment: step;
  width: 15px;
  height: 15px;
  /* line-height: 15px; */
  /* border: 1px solid #d6d6d6; */
  border-radius: 100%;
  display: block;
  text-align: center;
  align-content: center;
  margin: 0 auto;
  background-color: #ddd;
  z-index: 2;
  position: relative;
}

.progressbar li.progress-tooltip:hover:before {
  /* border-color: #c4c4c4; */
  background: #c4c4c4;
  color: #fff;
  /* line-height: 15px; */
  font-family: "";
  /* content: counter(step); */
}

/* 
.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  top: 8px;
  left: -50%;
  z-index: 1;
} */

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: #708090;
  font-weight: 600;
}

.progressbar li.active:before {
  /* border-color: #00ab45; */
  background: #00ab45;
  color: #fff;
  /* line-height: 15px; */
}

.progressbar li.stepactive+li:after {
  background-color: #00ab45;
}

/* 
.progressbar li.active:before {
  font-family: "Material Icons Outlined";
  content: "\e5ca";
} */

.progressbar li.non-active {
  color: #a5a9ad;
  font-weight: 600;
}

.progressbar li.non-active:before {
  font-family: "Material Icons Outlined";
  /* content: "\2716"; */
  /* border-color: red; */
  background: red;
  /* color: #fff; */
  /* line-height: 15px; */
}

.progressbar .checkmark:before {
  /* line-height: 18px; */
}

.anchor-link {
  color: #0000ff;
  text-decoration: underline;
  cursor: pointer;
}

.mapping-header {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 5px;
}

.mapping-sub-header {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  border: 1px solid #d3d3d3;
}

.mapping-col-border {
  border: 1px solid #d3d3d3;
  border-top: none;
}

.mapping-container {
  overflow: auto;
  max-height: calc(100% - 45px);
}

.mapping-row-header {
  font-weight: bold;
  background-color: #808080;
  color: #fff;
}

.mapping-row {
  color: #000;
}

.mapping-alt-row {
  background-color: #dcdcdc;
  color: #000;
}

.p-dropdown-label>.general-ddl-item {
  margin: 0px -5px;
}

.p-dropdown-item>.general-ddl-item {
  margin: -2px -10px;
}

.list-category-heading {
  font-weight: 600;
  float: left;
}

.list-weightage-icon {
  float: left;
  clear: both;
  margin: -3px 5px 0px 0px;
}

.list-weightage-icon>img {
  width: 18px;
  height: 18px;
}

.list-category-description {
  clear: left;
}

.legend-weightage-icon>img {
  width: 18px;
  height: 18px;
}

.weightage-img-graph {
  width: 16px;
  height: 16px;
}

.skills-weightage-img-graph {
  width: 18px;
  height: 18px;
}

.client-details-without-img {
  width: calc(100% - 45px);
  cursor: default;
}

.reset-btn-label {
  font-weight: normal;
  margin-bottom: 0px;
}

.copy-btn-icon {
  cursor: pointer;
  font-size: 16px;
  margin: 4px;
  position: absolute;
}

.login-help-label {
  font-style: italic;
  color: #a9a9a9;
  margin-bottom: 0px;
  font-weight: normal;
  font-size: 13px;
}

.top-active-users {
  position: relative;
  z-index: 1;
  font-style: italic;
  font-size: small;
  font-weight: bold;
}

p.top-active-users-tooltip-item {
  font-size: 16;
  font-weight: bold;
}

ul.top-active-users-tooltip-item {
  font-size: 14;
}

.more-link {
  color: #808080;
  text-decoration: underline;
  cursor: pointer;
}

.pl-1-1rem {
  padding-left: 1.1rem !important;
}

.pl-1-2rem {
  padding-left: 1.2rem !important;
}

.mt-0-4rem {
  margin-top: 0.4rem !important;
}

.dashboard-add-icon {
  font-size: 28px !important;
  color: #00d455;
}

.show-searchbox-transition-btn {
  height: 32px;
  width: 32px;
  align-self: end;
}

button.show-searchbox-transition-btn {
  background-color: transparent;
  border-width: 0px;
}

.searchboxstyleshow {
  visibility: visible;
}

.searchboxstylehide {
  visibility: collapse;
}

.create-search-box {
  margin-left: -32px;
}

p.create-search-box {
  color: white;
  align-self: center;
  font-size: 12px;
  font-style: italic;
}

.transition-rating.selected {
  background-color: #002254;
}

.transition-disable>.transition-rating {
  cursor: pointer;
}

.transition-rating.selected>svg {
  width: 20px;
  height: 20px;
}

.transition-rating {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  padding-top: 3px;
  margin: auto;
  cursor: pointer;
}

.transition-rating>svg {
  width: 25px;
  height: 25px;
}

.font-12 {
  font-size: 12px;
}

.insights-warning-link {
  color: darkred !important;
  text-decoration: underline !important;
  cursor: pointer;

  &:hover {
    color: blue !important;
  }
}

.culture-fit-attachment {
  min-height: calc(90vh - 590px);
}

.culture-file-icon {
  height: 55px !important;
  margin-top: 27px !important;
}

.culture-file-text {
  color: #0000ff;
  font-size: 13px;
  font-weight: bold;
}

.culture-note-box {
  background: #e8eef9;
  border-radius: 10px;
  float: left;
  width: 100%;
  height: 120px;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
}

.btn-culture-note {
  position: absolute;
  padding: 2px 7px;
  font-size: 13px;
  text-decoration: underline;
  top: 100px;
  right: 10px;
  background-color: inherit;
}

.btn-culture-note:hover {
  font-weight: bold;
  text-decoration: underline;
}

.culture-notes-overflow {
  max-height: calc(100vh - 100px);
  overflow: auto;
}

.userphoto-editprofile {
  background: silver;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #fff;
  object-fit: cover;
}

img.userphoto-editprofile {
  background: #666f8e;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  position: absolute;
  left: unset;
  top: unset;
  color: #fff;
  object-fit: cover;
}

.edituserphoto {
  z-index: 1;
  color: #12314c;
  position: absolute;
  bottom: 2px;
  right: 0px;
}

.text-link {
  cursor: pointer;
  color: #0000ff !important;
  width: fit-content;

  &:hover {
    text-shadow: unset;
    text-decoration: underline !important;
  }
}

.div-shadow {
  box-shadow: 0px -1px 3px silver inset;
  border-radius: 0.5rem;
}

.div-shadow-hover {
  box-shadow: 0px 0px 3px silver;
  border-radius: 0.2rem;
  cursor: grab;

  &:hover {
    box-shadow: 2px 2px 4px silver;
  }
}

.box-div-shadow {
  box-shadow: -1px -1px 2px silver inset;
  border-radius: 0.3rem;
}

.div-hover-effect {
  padding-right: 1px;
  border-radius: 0.5rem;

  &:hover {
    box-shadow: 0 0 2px 2px #e9f5f8;
    background-color: #e9f5f8;
  }
}

.attachment-note-text {
  font-size: 12px;
  font-weight: 600;
  color: black;
}

.search-attachment-select {
  width: 100%;
  max-height: 30px;
  display: inline-block !important;
  padding: 5px;
  text-align: left;

  &:hover {
    border-color: #6366f1;
  }
}

.candidate-details-loader {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 90%;
}

.interviewer-weightage-icon {
  color: #3a7ddd;
}

.interviewer-weight-legend {
  font-size: 13px;
}

.table-top-border {
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: rgba(0, 0, 0, 0.2);
}

.slate-filter-multiselect .p-placeholder {
  margin-top: -1px !important;
  margin-left: 5px !important;
}

.slate-filter-multiselect {
  margin-bottom: 10px;
  height: 32px;
  border-radius: 4px !important;
  min-width: 150px;
}

.slate-filter-multiselect .p-multiselect-label {
  padding: 4px !important;
  color: #4338ca !important;
}

.slate-filter-multiselect .p-multiselect-token {
  padding: 1px 5px !important;
  margin-right: 0.5rem !important;
  background: #eef2ff !important;
  color: #4338ca !important;
  border-radius: 6px !important;
}

.slate-filter-label {
  margin: 3px 12px 0px 0px !important;
  min-width: 75px;
  color: rgb(0, 119, 181);
}

.slate-filter-label>label {
  position: absolute;
  margin-top: 1px;
}

.crm-pull-hover-effect {
  padding-right: 1px;
  border-radius: 0.5rem;

  &:hover {
    box-shadow: 0 0 2px 2px lightgray;
    background-color: lightgray;
  }
}

.slate-interview-schedule,
.slate-compare-candidates,
.slate-skills-chart,
.slate-compensation-chart,
.slate-add-score-button,
.slate-all-notes-button,
.crm-pull,
.locationPin {
  color: rgb(0, 119, 181) !important;
}

.map-tooltip {
  position: absolute;
  left: 0;
  z-index: 100;
  width: 400px;
  height: 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-tooltip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slate-add-score-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.crm-pull>svg {
  margin: 2px;
}

.slate-interview-schedule>div,
.slate-compare-candidates>div,
.slate-skills-chart>div,
.slate-compensation-chart>div,
.slate-add-score-button>div,
.crm-pull>div {
  padding: 1px 2px !important;
  font-weight: 600;
  float: left;
  cursor: pointer;
}

.skillsRow {
  color: black;
}

.slate-icon-border {
  border: 1px solid;
  border-radius: 4px;
  color: rgb(0, 119, 181);
  width: 26px;
  height: 25px;
}

.slate-icon-border>i {
  margin: 5px 6px;
}

.slate-preview {
  font-size: 22px;
  padding: 1px;
}

.slate-group-add {
  font-size: 18px;
  padding: 3px;
}

.stick-bottom {
  position: sticky;
  bottom: 0px;
}

.disabled-div {
  opacity: 0.6;
  background: #e0e0e0;
  color: darkgray;
}

.adv-comp.nav-tabs .nav-item.show .nav-link {
  color: var(--tooltip-background-color);
  background-color: transparent !important;
}

.adv-comp.nav-tabs .nav-link.active {
  color: var(--tooltip-background-color);
}

.filter-btn {
  height: 30px;
  font-size: 14px;
  padding: 2px 10px 5px;
}

.header-company-logo {
  align-items: center;
  display: flex;
  height: 55px;
}

.header-company-logo img {
  max-height: 45px;
  max-width: 120px;
}

img.company-logo {
  max-height: 100%;
  max-width: 100%;
}

img.company-logo-history {
  max-height: 60%;
  max-width: 100%;
}

.glow {
  text-shadow: 0px 0px 5px orange;
  box-shadow: 0px 0px 5px orange;
  background-color: transparent;
  background: none;
}

.drag-warning {
  color: red;
  float: left;
  margin: 5px 10px;
}

.interview-link {
  margin-top: -5px;
  margin-left: -7px;
}

.interviewer-name-margin {
  margin-bottom: 6px;
  margin-right: 15px;
}

.tooltip-right-margin {
  margin-right: 5px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-text {
  display: block;
  text-align: justify;
  color: #595959;
  font-size: 14px;
}

.compensation-review .k-expander-title {
  color: #000;
  text-transform: none;
  font-weight: bold;
  font-size: 15px;
}

/******************************* tooltip classes *******************************/
.USAGE-leaders-target,
.INTERVIEW_INSIGHT-leaders-target,
.adding-notes-toggle-tooltip-target,
.view-notes-toggle-tooltip-target,
.compensation-data-toggle-tooltip-target,
.compensation-tooltip-target,
.culture-fit-edit-tooltip-target,
.culture-impact-tooltip-target,
.edit-candidate-compensation-tooltip-target,
.edit-compensation-notes-tooltip-target,
.edit-education-tooltip-target,
.edit-experience-tooltip-target,
.edit-status-tooltip-target,
.email-client-tooltip-target,
.executive-brief-tooltip-target,
.publicsignal-start-tooltip-target,
.publicsignal-header-tooltip-target,
.interview-completion-email-toggle-tooltip-target,
.interview-feedback-toggle-tooltip-target,
.login-help-tooltip-target,
.top-active-users-target,
.transition-indicator-tooltip-target,
.talent-indicator-tooltip-target,
.clientRating-indicator-tooltip-target,
.culture-indicator-tooltip-target,
.compensation-indicator-tooltip-target,
.confidential-indicator-tooltip-target,
.lockicon-indicator-tooltip-target,
.pwd-tooltip-target,
.won-tooltip-target,
.client-view-popup-pitch-tooltip-target,
.client-view-popup-perspective-tooltip-target,
.preferred-language-dropdown-tooltip-target,
.revoke-access-tooltip-target,
.candidateGroup-indicator-tooltip-target,
.culture-enable-tooltip-target,
.search-envFit-tooltip-target,
.interview-events-tooltip-target,
.tooltip-cursor {
  cursor: pointer !important;
  outline: none;
}

.candidate-history-tooltip-target,
.compensation-data-tooltip-target,
.interview-feedback-tooltip-target,
.search-overview-tooltip-target,
.skills-grid-tooltip-target,
.zrg-team-tooltip-target {
  cursor: pointer;
  outline: none;
  vertical-align: baseline;
}

.feedback-link {
  bottom: 5px;
  right: 5px;
  position: absolute;
}

.img-feedback-link {
  height: 25px;
  width: 25px;
  border-radius: 1rem;
}

.bg-company-logo {
  background-size: 25% 25%;
  background-clip: border-box;
  background-repeat: repeat;
  background-color: rgba(white, 0.4);
}

.showPXTScore {
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: auto;
  max-width: fit-content;

  :hover {
    text-decoration: none;
  }
}

.inputScore-warning {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 0 0.2rem rgba(250, 0, 0, 0.25);

  &:focus {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 0 0.2rem rgba(250, 0, 0, 0.25);
  }
}

#pxtScore-tooltip.p-tooltip .p-tooltip-text {
  border-radius: 0.8rem;
  padding: 0.3rem 0.5rem;
}

.tooltip-blue-style.p-tooltip .p-tooltip-text {
  color: black;
  background-color: #cbd7e8;
  font-size: 14px;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 4px -2px gray;
}

.tooltip-gray-style.p-tooltip .p-tooltip-text {
  color: #fff;
  background-color: #555;
  font-size: 14px;
  border-radius: 0.5rem;
  box-shadow: 0px 0px;
}

.tooltip-width {
  max-width: 300px;
}

.tooltip-gray-btn-style.p-tooltip .p-tooltip-text {
  color: #fff;
  background-color: #555;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0px 0px;
  padding: 2px 7px;
  text-wrap: nowrap;
}

.tooltip-gray-interview-style.p-tooltip .p-tooltip-text {
  color: #fff;
  background-color: #555;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0px 0px;
  padding: 2px 7px;
  text-wrap: nowrap;
  max-width: 115px;
}

.saveAttachmentModal {
  min-width: 20vw;
}

.k-editor-content {
  padding: 6px 0 6px 6px;
}

.k-editor {
  border-color: darkgray;
  border-radius: 5px;
}

.rich-text-readonly>.k-editor {
  background-color: transparent !important;
  border: none !important;
  padding: 8px 0px 8px 8px;
}

.no-editor-padding .rich-text-readonly>.k-editor {
  padding: 1px 1px 1px 1px !important;
}

.ext-candidate-rich-text>.k-editor {
  background-color: transparent !important;
  border: 1px solid lightgray !important;
  padding: 8px 0px 8px 8px;
  border-radius: 5px;
}

.ext-candidate-rich-text>.k-editor>.k-editor-content {
  margin-bottom: 0px !important;
  margin-left: -8px !important;
}

.ext-candidate-rich-text>.k-editor>.k-editor-content>.k-iframe {
  max-height: calc(100vh - 490px);
  overflow-y: auto !important;
}

.k-editor>.k-editor-toolbar {
  border-radius: 5px !important;
}

.k-window-actions {
  margin: 0 0 5px 0 !important;
  padding-right: 16px !important;
}

.k-dialog-titlebar {
  border-color: inherit !important;
  color: #2f4f4f !important;
  background-color: #fafafa !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.k-dialog {
  border-radius: 10px !important;
}

.k-img-field {
  width: 100% !important;
}

.k-hide>.k-actions,
.k-hide>ul>li>div>.k-progressbar {
  display: none !important;
}

.k-checkbox:checked,
.k-checkbox.k-checked {
  color: white !important;
  border-color: #3d7087 !important;
  background-color: #165c7d !important;
}

.k-button-solid-primary,
.k-btn-action {
  border-color: #3d7087 !important;
  background-color: #165c7d !important;
}

.k-button-solid-primary:hover,
.k-button-solid-primary.k-hover,
.k-btn-action:hover {
  border-color: #0062cc !important;
  background-color: #0069d9 !important;
}

.k-window {
  border-radius: 10px !important;
}

.k-window-titlebar {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

/* checkbox container*/
.chk-container {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: gray;
  margin-top: 5px;
}

.chk-container:hover {
  color: #12314c;
}

/* Hide the browser's default checkbox */
.chk-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #c4c4c4;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.chk-container:hover input~.checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.chk-container input:checked~.checkmark {
  background-color: #2196f3;
  top: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chk-container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chk-container .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/******************************* css for checkbox container end *******************************/

.compensationslateblock-ellipsis {
  display: -webkit-box;
  max-width: 100%;
  margin: auto;
  font-weight: 400;
  font-size: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
  text-shadow: 0px 0px 1px lightgray;
}

/******************************* popup-modal css *******************************/
/* this section contains standard size for popup-modal, 
use below classes to make popup-modal consistent throughout the system */
.react-responsive-modal-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.modal-popup-xl {
  width: 90vw !important;
  max-width: 90vw !important;
  max-height: 95vh !important;
  margin-top: 1.25%;
}

.modal-popup-lg {
  width: 75vw !important;
  max-width: 75vw !important;
  max-height: 95vh !important;
  margin-top: 1.25%;
}

.modal-popup-md {
  width: 60vw !important;
  max-width: 60vw !important;
  max-height: 95vh !important;
  margin-top: 1.25%;
}

.modal-popup-sm {
  width: 40vw !important;
  max-width: 40vw !important;
  max-height: 95vh !important;
  margin-top: 1.25%;
}

.modal-popup-xs {
  width: 28vw !important;
  max-width: 28vw !important;
  max-height: 95vh !important;
  margin-top: 1.25%;
}

.react-responsive-modal-closeButton svg {
  width: 22px;
  height: 22px;

  &:focus {
    outline: none;
  }
}

/******************************* popup-modal css end *******************************/

.compare-card-add {
  padding: 10px;
}

.compare-card {
  padding: 10px 10px 0px;
  border-radius: 4px;
}

.compare-card-no-data {
  padding: 10px;
  height: 100%;
}

.compare-card-data {
  border-radius: 4px;
  height: 100%;
}

.compare-candidate-default-image {
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  border-radius: 50%;
  background-color: white;
  cursor: default;
  color: #12314c;
  object-fit: cover;
}

.btn-add-candidate {
  height: 30px;
  width: 30px;
  margin-left: 5px;
}

.compare-even-row {
  background-color: #f4f7fc;
}

.compare-odd-row {
  background-color: #ffffff;
}

.compare-expanded-row {
  background-color: #f5f5f5;
}

.sub-row {
  display: block;
  transition: 0.3s all ease;
}

.hide-sub-row {
  display: none;
  transition: 0.3s all ease;
}

.margin-add-candidate-col {
  margin-top: 9px;
  margin-bottom: 10px;
}

.btn-compare {
  font-size: 20px;
  width: 180px;
}

.compare-close {
  position: absolute;
  cursor: pointer;
  z-index: 1000;
  margin-left: 175px;
  margin-top: 15px;
}

.rich-text-readonly>.k-editor>.k-editor-content>div>p>img {
  width: 460px;
}

.pwd-tooltip-text {
  font-size: 14px;
  font-weight: bold;
}

ul.pwd-tooltip-list {
  list-style: none;
  font-size: 12px;
}

ul.pwd-tooltip-list li:before {
  content: "\2713";
  padding-right: 0.5em;
}

.compare-title-note {
  min-height: 75px;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 10px 15px;
  border-bottom: 1px solid lightgray;
  border-left: 1px solid lightgray;
}

.compare-data-note {
  min-height: 75px;
  font-size: 13px;
  padding: 10px 10px 15px;
  overflow: hidden;
  height: 43px;
  cursor: default;
  text-overflow: ellipsis;
  border-bottom: 1px solid lightgray;
}

.compare-data {
  font-size: 13px;
  min-height: 43px;
  padding: 13px 10px;
  overflow: hidden;
  height: 43px;
  cursor: default;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid lightgray;
}

.compare-data-rating {
  font-size: 15px;
  font-weight: bold;
  min-height: 43px;
  padding: 4px;
}

.ct-border-right {
  border-right: 1px solid lightgray !important;
}

.ct-border-top {
  border-top: 1px solid lightgray !important;
}

.compare-title {
  font-size: 13px;
  font-weight: bold;
  min-height: 43px;
  padding: 10px;
  border-bottom: 1px solid lightgray;
  border-left: 1px solid lightgray;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

.compare-title>div {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
}

.compare-tool-scroll-section {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: CALC(100vh - 272px);
}

.compare-company-icon {
  height: 25px;
  float: right;
  margin-top: -5px;
  margin-right: 5px;
}

.rate-block {
  width: 60px;
  height: 25px;
  display: block;
  text-align: center;
  border-radius: 5px;
  margin-top: -4px;
  padding-top: 2px;
  font-weight: bold;
  font-size: 12px;
}

.block-good {
  border: 1px solid #def1de;
  background-color: #def1de;
  color: #28a829;
}

.block-average {
  border: 1px solid #fff2d6;
  background-color: #fff2d6;
  color: #ba8300;
}

.block-bad {
  border: 1px solid #f2d6d4;
  background-color: #f2d6d4;
  color: #f13c20;
}

.compare-collapse-icon {
  color: #12314c;
  margin-top: -3px;
  margin-left: -3px;
  height: 20px;
  width: 20px;
}

.compare-expand>svg {
  cursor: pointer;
}

.rich-text-readonly>.k-editor>.k-editor-content>div>p>a,
.rich-text-readonly>.k-editor>.k-editor-content>div>ul>li>p>a,
.rich-text-readonly>.k-editor>.k-editor-content>div>ol>li>p>a {
  color: #007bff;
}

.rich-text-readonly>.k-editor>.k-editor-content>div>ul>li>p {
  margin-left: 0px !important;
}

.rich-text-readonly>.k-editor>.k-editor-content>div>table>tr>td>ul,
.rich-text-readonly>.k-editor>.k-editor-content>div>table>tr>td>ol {
  padding-left: 18px !important;
}

.rich-text-readonly>.k-editor>.k-editor-content>div>ul,
.rich-text-readonly>.k-editor>.k-editor-content>div>ol {
  padding-left: 20px !important;
}

img#companyLogo {
  object-fit: contain;
}

.clientview-popup-tooltip-width {
  max-width: 30vw !important;
}

.comp-note-hover:hover {
  color: #0077b5;
  text-decoration: underline;
}

.blue-btn-hover:hover {
  background-color: #e9f5f8;
}

.white-btn-hover {
  border: 1px solid lightgray !important;

  &:hover {
    background-color: #e9f5f8 !important;
    box-shadow: 0px 1px 2px 0px rgba(60, 64, 67, 0.3), 0px 2px 6px 2px rgba(60, 64, 67, 0.15) !important;
  }
}

.compare-modal-min-height {
  min-height: 40vh;
}

.ct-chk-margin {
  width: 200px;
  padding-top: 137px !important;
  padding-bottom: 0px !important;
}

.compare-modal-note {
  margin-top: 31vh;
}

.note-modal-padding {
  padding: 5px;
  background-color: #f4f7fc;
  border: 1px solid lightgray;
  border-radius: 0px;
}

.note-div {
  height: 115%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.note-div:hover {
  text-decoration: underline;
  color: #3a7ddd;
}

.note-popup {
  background-color: #e8eef9;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}

.text-overflow-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.position-bottom {
  bottom: 0px;
  position: absolute;
}

.cover-image {
  object-fit: cover;
}

.gray-hover:hover {
  background-color: #c4c7d7;
}

.add-new-search-modal {
  top: 10%;
  border-radius: 10px;
  width: max-content;
  height: max-content;
  padding: 0.5rem !important;
  font-size: 16px !important;
}

.culture-notes-overflow>.rich-text-readonly>.k-editor>.k-editor-content>.ProseMirror {
  padding-left: 4px !important;
}

.culture-note-box>.rich-text-readonly>.k-editor>.k-editor-content>.ProseMirror {
  padding-left: 4px !important;
  overflow-y: hidden;
  overflow-x: hidden;
}

.culture-note-viewmore-option {
  color: #0077b5;
  position: absolute;
  top: 10px;
  right: 15px;
}

.k-window {
  position: fixed !important;
}

.clientview-item-username-box {
  width: 68%;
  overflow-wrap: break-word;
  white-space: break-spaces !important;
}

.clientview-value-username-box {
  width: 60%;
  overflow-wrap: break-word;
  white-space: break-spaces !important;
}

.override-values-box {
  background: #ffffff;
  position: fixed !important;
  padding: 1rem;
  border-radius: 10px;
  min-width: 400px;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: min-content !important;
}

.override-events-values-box {
  background: #ffffff;
  position: fixed !important;
  padding: 1rem;
  border-radius: 10px;
  min-width: 500px;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: min-content !important;
}

.override-education-values-box {
  background: #ffffff;
  position: fixed !important;
  padding: 1rem;
  border-radius: 10px;
  min-width: 650px;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: min-content !important;
}

.override-search-values-box {
  background: #ffffff;
  position: fixed !important;
  padding: 1rem;
  border-radius: 10px;
  min-width: 530px;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: min-content !important;
}

.override-search-compensation-values-box {
  background: #ffffff;
  position: fixed !important;
  padding: 1rem;
  border-radius: 10px;
  min-width: 500px;
  height: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  max-width: min-content !important;
}

.candOverrideLoaderMargin {
  z-index: 1000;
  position: fixed;
  top: 40%;
  left: 0;
  right: 0;
  margin: auto;
}

.candCompensationLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
}

.candidateCardLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 20%;
  left: 20%;
}

.careerHistoryPopUpLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 30%;
  left: 40%;
}

.comptable-detailsbox {
  background: #fff;
  border-radius: 10px;
  max-height: 320px !important;
}

.action-span {
  float: right;
  clear: both;
  font-size: 20px !important;
  padding: 4px;
  color: #12314c;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;

  &:hover {
    color: #12314c;
    background-color: #e9f5f8;
    border: 1px solid transparent;
    border-radius: 50%;
  }
}

.dashboard-action-span {
  padding: 4px;
  color: #12314c;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;

  &:hover {
    color: #12314c;
    background-color: #e9f5f8;
    border: 1px solid transparent;
    border-radius: 50%;
  }
}

/******************************* education table *******************************/
.edupopup-detailsbox {
  display: block;
  width: 42em;
  background: #fff;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 200px !important;
  border: 1px solid lightgray;
}

.edupopup-detailsbox thead,
.edupopup-detailsbox tbody,
.edupopup-detailsbox * thead,
.edupopup-detailsbox * tbody,
.edupopup-detailsbox * tr {
  display: table;
  width: 100%;
}

.override-experience-table * td {
  min-width: 180px;
  max-width: 240px;
  overflow-wrap: break-word;
}

.crm-card {
  width: max-content;
  height: max-content;
  border: 1px solid transparent;
  padding: 16px;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: inset -1px -1px 4px darkgray;
}

.crm-card:hover {
  background-color: aliceblue;
  border: 1px solid lightgray;
}

.crm-card:active,
.crm-card.active,
.crm-card:focus {
  border-color: transparent;
  background-color: aliceblue;
  box-shadow: inset 1px 1px 4px darkgray;
  cursor: default;
}

.crm-card>img,
.crm-card *>img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.crm-card .crm-title {
  font-weight: bold;
  padding: 0 5px;
}

.react-responsive-modal-closeButton {
  outline: none;

  &:hover {
    opacity: 0.8;
    background-color: lightgray;
    border-radius: 50%;
    box-shadow: 0 0 4px 4px lightgray;
  }
}

.ellipse-two-line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.crm-card>svg,
.crm-card *>svg {
  color: white;
  background-color: deepskyblue;
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 0.5rem;
  padding: 4px;
}

.error-grid {
  min-height: 580px;
  width: 100%;
  padding: 0px 15px;
}

.all-candidate-grid {
  height: 340px;
  width: 100%;
}

.all-history-grid {
  height: 300px;
  width: 100%;
}

.import-candidate-grid {
  height: 390px;
  width: 100%;
}

.progress-div-border {
  border-left: 1px solid lightgray;
  margin-left: 1px;
}

.import-div-border {
  border-right: 1px solid lightgray;
}

.edit-pos-overview {
  height: 25px;
}

.custom-modal-dialog {
  max-width: inherit !important;
  margin: 0.5rem auto !important;
}

.industry-link-company-container {
  display: flex;
  align-items: stretch;
}

.industry-link-company-div {
  color: #0066ff;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
  line-height: 13px;
  cursor: pointer;
  padding-top: 8px;
  word-break: break-word;

  &:hover {
    color: #0066ff !important;
    text-shadow: unset;
    text-decoration: underline !important;
  }
}

.industry-link-company-add-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry-link-company-link-icon-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry-link-company-add-popup {
  z-index: 2;
  position: absolute;
  top: 0;
  height: 100%;
  width: 108%;
  left: 100%;
  display: none;
  border-radius: 0.5rem;
}

.industry-link-company-multiselect {
  margin-bottom: 10px;
  height: 100%;
  border-radius: 4px !important;
  width: var(--link-company-multiSelect-width);

  & * .p-multiselect-label,
  & *>.p-multiselect-label {
    height: 100px;
    overflow-y: auto !important;
    overflow-x: hidden;
    padding-right: 2px;
    white-space: normal;
  }

  & * .p-multiselect-token,
  & *.p-multiselect-token,
  & *>.p-multiselect-token {
    margin-right: unset !important;
    margin: 0.25rem;
    padding: 0.25rem 0.5rem !important;
  }
}

.industry-card-icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-item-bg {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 4px 1px lightgray;
  cursor: default;
  margin-bottom: 8px;
  border: 2px solid #ffffff;
  overflow-wrap: break-word;
  word-break: break-word;
}

.industry-item-bg:hover {
  border: 2px solid lightgray;
}

.target-company-card-bg {
  min-height: 36px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 4px 1px lightgray;
  cursor: hand;
  margin-bottom: 8px;
  border: 2px solid #ffffff;
  overflow-wrap: break-word;
  word-break: break-word;
  align-content: center;
}

.target-company-card-bg:hover {
  border: 2px solid lightgray;
}

.client-view-industry-link-company-div {
  color: #495057;
  font-size: 11px;
  text-align: left;
  font-weight: 600;
  vertical-align: middle;
  line-height: 13px;
  padding-top: 4px;
  padding-left: 8px;
  word-break: break-word;
}

.client-view-industry-item-bg {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 4px 1px lightgray;
  margin-bottom: 8px;
  border: 2px solid #ffffff;
  padding: 5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.client-view-company-link-icon-div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 5px;
}

.scrollbarGenerateReportModalBody {
  max-height: CALC(90vh - 120px);
  overflow-y: auto !important;
  overflow-x: hidden;
  padding-right: 2px;
}

.industrylink-company-multiselect-panelTemplate {
  width: var(--link-company-multiSelect-width);

  & * .p-multiselect-item {
    white-space: unset;

    overflow-wrap: anywhere;
    word-break: break-all;
  }

  &>.p-multiselect-items-wrapper {
    max-height: 200px !important;
  }

  & * .p-multiselect-items {
    padding: 0;
  }
}

.sendCandidate-multiselect {

  & * .p-multiselect-label,
  & *>.p-multiselect-label {
    display: flex;
    flex-wrap: wrap;
  }
}

.sendCandidate-multiselect-panel {
  &>.p-multiselect-items-wrapper {
    max-height: 400px !important;
  }
}

.generateReport-multiselect-panelTemplate {
  &>.p-multiselect-items-wrapper {
    max-height: 300px !important;
  }
}

.slate-culturefit-editor-style {
  &.k-editor *>li>p {
    margin: 0 !important;
  }

  &.k-editor *>ul,
  &.k-editor *>ol {
    padding: revert !important;
  }
}

.trelloListRow {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 4px 1px lightgray;
  cursor: default;
}

.font-size-h5 {
  font-size: 1.25rem !important;
}

.font-size-h3 {
  font-size: 1.75rem !important;
}

.select-stage {
  color: #00ab45;
  font-size: 20px !important;
  position: relative;
}

.reject-stage {
  color: red;
  font-size: 20px !important;
  position: relative;
}

#progress-tooltip.p-tooltip .p-tooltip-text {
  background: #e8eef9;
  border-radius: 16px;
  box-shadow: 0px 0px;
}

#progress-tooltip.p-tooltip.p-tooltip-top .p-tooltip-arrow {
  border-top-color: #e8eef9;
}

.status-modal {
  overflow: hidden !important;
  width: 324px;
}

.detail-status {
  color: black;
  max-width: 202px;
  position: relative;
}

.advance-in-tooltip {
  color: green;
  position: relative;
  font-size: 12px;
  padding-left: 4px;
  padding-bottom: 4px;
}

.eliminate-in-tooltip {
  color: #e34a4a;
  position: relative;
  font-size: 12px;
  padding-left: 4px;
  padding-bottom: 4px;
}

.advance-btn {
  padding-top: 1px;
  border-radius: 25px;
}

.advance-btn:hover {
  box-shadow: 0 0 2px 2px lightgray;
  background-color: lightgray;
  justify-content: center;
}

.elminate-btn {
  padding-top: 1px;
  border-radius: 25px;
}

.elminate-btn:hover {
  box-shadow: 0 0 2px 2px lightgray;
  background-color: lightgray;
}

.phase-tooltip {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  padding-top: 20px;
  margin-bottom: -4px;
}

.tooltip-gray-progress-btn-style.p-tooltip.p-tooltip-top .p-tooltip-arrow {
  border-top-color: transparent;
}

/******************************* Client Notes Feature *******************************/
.noteButtonContainer {
  cursor: pointer;
  color: gray;
  padding-top: 5px;
  height: 30px;
  width: 100%;
  overflow: hidden;
  flex-grow: 1;
}

.noteInput {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  height: 30px;
  width: 100%;
}

.eventNoteDisplay {
  white-space: nowrap;
  background: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

.eventNoteDisplay:hover {
  cursor: pointer;
}

.noteDisplay {
  white-space: nowrap;
  background: lightyellow;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
}

.noteDisplay:hover {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.clientFeedbackInternalButton {
  text-align: center;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  background-color: white;
  border: none;
  padding-right: 4px;
  padding-left: 4px;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0.5rem;
  color: #0077b5;

  &:hover {
    box-shadow: 0 0 2px 2px #e9f5f8;
    background-color: #e9f5f8;
  }
}

.noteInternalDisplayContainer {
  border: 1px solid lightgray;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.emailIcon {
  padding: 0;
  font-size: large !important;
  position: relative;
  bottom: -3px;
}

/******************************* End Client Notes Feature *******************************/

.search-input-div {
  margin-top: 5px;
}

.customTooltip .internal_divs {
  padding: 5px;
  font-family: "KumbhSans", sans-serif !important;
  font-size: 12px;
}

.compnote {
  max-width: 300px;
  white-space: normal;
  background-color: white;
  align-items: flex-start;
  display: flex;
  margin-top: 4px;
}

.edu-width-37 {
  width: 37%;
}

.edu-width-35 {
  width: 35%;
}

.edu-width-22 {
  width: 22%;
}

.edu-width-60 {
  width: 60%;
}

.cand-profile-section {
  background-color: white;
  box-shadow: 0 0 4px lightgray;
  border-radius: 5px;
}

.cand-status-detail {
  text-align: left;
}

.viewCandidateSectionLoader {
  z-index: 1000;
  position: absolute;
  top: 20%;
  left: 50%;
  height: 60px;
}

.view-candidate-attachments {
  & .clip-filename-text {
    max-width: 30vw;
  }

  & .scrollbar {
    max-height: 240px;
    padding: 0px 4px;
  }
}

.basic-width-105 {
  width: 105px;
  max-width: 105px;
}

.basic-width-120 {
  width: 120px;
  max-width: 120px;
}

.basic-width-130 {
  width: 130px;
  max-width: 130px;
}

/******************************* sliding *******************************/
.drillDownContainer {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drillDownTabs {
  display: flex;
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 1px 0 rgba(#185ee0, 0.15), 0 6px 12px 0 rgba(#185ee0, 0.15);
  border-radius: 2rem;

  border: 1px solid lightgray;

  * {
    z-index: 2;
  }

  &>input[type="radio"] {
    &:checked {
      &+label {
        color: var(--drilldown-primary-color);
      }
    }
  }

  &>input[type="radio"] {
    display: none;
  }
}

.drillDownTab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 110px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 !important;
  border-radius: 2rem;
  cursor: pointer;
  transition: color 0.15s ease-in;


  &+input[id="radio-1"] {
    &:checked {
      &~.drillDownGlider {
        transform: translateX(0);
      }
    }
  }

  &+input[id="radio-2"] {
    &:checked {
      &~.drillDownGlider {
        transform: translateX(100%);
      }
    }
  }

  &+input[id="radio-3"] {
    &:checked {
      &~.drillDownGlider {
        transform: translateX(200%);
      }
    }
  }

  &+input[id="radio-4"] {
    &:checked {
      &~.drillDownGlider {
        transform: translateX(300%);
      }
    }
  }
}

.drillDownGlider {
  position: absolute;
  display: flex;
  height: 25px;
  width: 110px;
  background-color: var(--drilldown-secondary-color);
  z-index: 1;
  border-radius: 2rem;
  transition: 0.25s ease-out;
}

@media (max-width: 700px) {
  .drillDownTabs {
    transform: scale(0.6);
  }
}

.drillDownSubSection {
  min-height: 120px;
  align-content: center;
  text-align: center;
  justify-content: center;
  cursor: default;
}

div[id="client-search-access"] {
  bottom: 0px;
  position: relative;
}

.return-search-hover {
  display: flex;
  cursor: pointer;
  padding: 4px;
  border-radius: 0.5rem;
  width: fit-content;

  color: #ffffff;
  background: #344666;

  &>span {
    font-size: 18px;
  }

  &:hover {
    background-color: #51587c;
  }
}

.view-candidate-culture-note-box {
  border-radius: 0.5rem;
  border: 1px solid lightgray;
  float: left;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;

  &>*>.rich-text-readonly>.k-editor {
    background-color: transparent !important;
    border: none !important;
  }
}

.view-cand-no-perm {
  border-radius: 1rem;
  background-color: aliceblue;
  color: dimgray;
}

.skillsGraph {
  max-height: 91vh;
}

.skill-stickyHeader {
  position: sticky;
  top: -1px;
  z-index: 6;
  background-color: #fff;
}

.skil-stickyGraph {
  position: sticky;
  left: 0;
  background-color: #fff;
  z-index: 2;
}

.skil-stickyWeight {
  position: sticky;
  left: 269px;
  background-color: #fff;
  z-index: 4;
  border: none !important;
}

.skill-stickyAvg {
  position: sticky;
  right: -1px;
  background-color: #fff;
  z-index: 2;
  border: none !important;
}

.skill-scrollbar {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 72vh;
}

.interview-client-avg {
  margin-left: 8px;
  color: rgb(0, 119, 181);
}

.interviewchart-z-score {
  display: inline-flex;
  position: absolute;
  margin-top: -7px;
}

.skill-chart-z-score-tooltip-target {
  block-size: 30px;
}

.tabs-help-screen .nav-tabs {
  border-bottom: none;
}

.tabs-help-screen .nav-link {
  display: block;
  padding: 0.3rem 1rem;
}

.tabs-help-screen .nav-tabs .nav-link {
  border-radius: 0.85rem;
  border: 1px solid #12314c;
  color: #12314c;
  font-weight: 600;
}

.tabs-help-screen .nav-tabs .nav-item.show .nav-link,
.tabs-help-screen .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #12314c;
  border-color: #dee2e6 #dee2e6 #fff;
}

.tabs-help-screen .form-check-input {
  transform: scale(1.5);
}

.help-screen-bg {
  background: #e8eef9;
  border-radius: 10px;
}

.help-screen-label {
  border-radius: 0.25em;
  padding: 0.2em;
  margin-right: 0.5em;
  height: fit-content;
  font-size: 10px;

  &.label-fix {
    color: deeppink;
    background-color: #ffb6c16e;
  }

  &.label-new-feature {
    color: royalblue;
    background-color: #b0c4de5e;
  }

  &.label-improvement {
    color: forestgreen;
    background-color: #90ee906e;
  }

  &.label-infrastructure {
    color: black;
    background-color: #d3d3d3a1;
  }

  &.label-removed-feature {
    color: red;
    background-color: #f080805e;
  }
}

.releaseScreenLoader {
  z-index: 1000;
  position: absolute;
  top: 30vh;
  left: 45%;
}

.release-box {
  border-radius: 0.5rem;
  box-shadow: 0 0 4px 1px lightgray;
  background: #fff;
}

.skill-tooltip {
  max-width: 270px;
}

#skill-tooltip.p-tooltip .p-tooltip-text {
  background: #e8eef9;
  border-radius: 16px;
  box-shadow: 0px 0px;
}

#skill-tooltip.p-tooltip-right .p-tooltip-arrow {
  border-right-color: #e8eef9;
}

.client-interview-feedback-tooltip {
  width: 9%;
}

.client-skill-score-tooltip {
  width: 12%;
}

#client-interview-feedback-tooltip.p-tooltip .p-tooltip-text,
#client-skill-score-tooltip.p-tooltip .p-tooltip-text {
  border-radius: 16px;
  box-shadow: 0px 0px;
  display: flex;
  justify-content: center;
}

.skill-detail-status {
  color: #000;
}

.weightage-line {
  margin-left: 6px;
  font-size: 12px;
  vertical-align: middle;
  font-weight: 500;
}

#skill-chart-tooltip.p-tooltip .p-tooltip-text {
  color: black;
  background-color: #e8eef9;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0px 0px;
  padding: 2px 7px;
  text-wrap: nowrap;
  font-size: smaller;
}

#skill-chart-tooltip.p-tooltip-right .p-tooltip-arrow {
  border-right-color: #e8eef9;
}

.skill-score-tooltip {
  display: none;
  position: relative;
}

.skills-chart-tooltip-personimage {
  height: 35px;
  width: 35px;
}

.legend {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  margin-left: 8px;
}

.legend-color {
  width: 44px;
  height: 22px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.legend-item:hover .legend-color {
  border: 2px solid #000;
}

.skillsNumbers {
  transition: opacity 0.3s ease-in-out;
}

.opacity-reduced {
  opacity: 0.1;
}

/******************************* drag and drop start *******************************/
.drag-drop-container {
  padding: 8px 16px;
  max-height: 82vh;
}

.candidateGroupingModalScrollbar {
  min-height: 60vh;
  max-height: calc(90vh - 15rem);
  overflow-x: hidden;
  overflow-y: auto;

  & .p-listbox-list-wrapper {
    max-height: calc(90vh - 15rem) !important;
  }
}

.child-items,
.parent-items {
  padding: 10px;
}

.child-item,
.parent-item {
  padding: 10px;
  margin-bottom: 10px;
  margin-bottom: 2px;
  background-color: #e8eef9;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.parent-item {
  border: 2px dashed #ccc;
}

.children {
  padding-left: 20px;
  margin-top: 10px;
}

.font-title {
  font-size: 16px;

}

.item {
  padding: 10px;
  margin: 5px 0;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: grab;
}

/******************************* drag and drop End *******************************/

/******************************* drag drop image section *******************************/
.dropzone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden-div {
  display: none;
  position: absolute;

  text-align: center;
  vertical-align: middle;
  align-content: center;

  &:hover {
    display: block !important;
  }
}

.dropzone:hover .hidden-div {
  display: block !important;
}

.button-hover-effect {
  border-radius: 0.5rem;
  cursor: pointer;
  background-color: lightgray;

  opacity: 0.8;

  &:hover {
    box-shadow: 0 0 2px 2px #e9f5f8;
    background-color: #e9f5f8;
    opacity: 1;
  }
}

svg.button-hover-effect {
  border-radius: 50% !important;
}

.remove-image {
  background-color: lightsalmon;

  &:hover {
    box-shadow: 0 0 2px 2px lightcoral;
    background-color: lightcoral;
  }
}

.favouritesearchname {
  -webkit-line-clamp: 1 !important;
  margin-top: 0 !important;
  white-space: break-spaces;
  min-width: 0px !important;
}

.favouritecompanyname {
  -webkit-line-clamp: 1 !important;
  margin-top: 0 !important;
  white-space: break-spaces;
  min-width: 0px !important;
}

.groupingModalLoader {
  top: 40%;
  left: 35%;
}

.slate-group-div {
  border-radius: 5px;
}

.slate-group-header-text {
  position: sticky;
  top: 0;
  z-index: 4;
  font-weight: bold;
  width: fit-content;
  color: #3F80F5;
  background-color: #E5EFFF;
  font-size: 14px;
  border-radius: 18px;
}

.candidate-grouping-modal {
  min-width: 60vw;
}

.import-strategy-modal {
  min-width: 60vw;
  min-height: 64vh;
}

.cursor-grab {
  cursor: grab;
}

.edit-release_note-modal {
  border-radius: 10px;
  max-width: 678px !important;
  width: 900px;
  padding: 0.5rem !important;
}

.edit-popular_insights-modal {
  border-radius: 10px;
  max-width: 500px !important;
  width: 900px;
  padding: 0.5rem !important;
}

.ext-client-light-bgcolor {
  background-color: #ECEFF1;

  & .content-area {
    box-shadow: 0 0 16px 2px lightgray;
  }
}

.app-root {
  background: url(../../images/Zi_Rebrand_Files/Backdroops/Backdrops_II.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-color: #12314c;
  min-height: 100vh;
}

.ext-search-droplist {

  &:hover {
    border-radius: 8px;
    box-shadow: 0 0 4px white inset;
  }

  & .p-dropdown {
    border: none;
    background-color: transparent;

    &:not(.p-disabled) {
      box-shadow: none;
    }

    &:not(.p-disabled):hover {
      box-shadow: none;
      border: none !important;
    }
  }

  & * .p-inputtext {
    color: white;
  }

  & .p-dropdown-panel {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2)
  }
}

.release-menu-box {
  border-radius: 0.5rem;
  box-shadow: 0 0 4px 1px lightgray;
  background: #fff;
}

.searchHighlight {
  background-color: yellow;
}

.action-div1 {
  left: 0px;
  bottom: 0;
  position: absolute;
}

.help-height {
  overflow: auto;
  height: 92vh;
}

.help-left {
  background: #12314c;
  border-radius: 0px 30px 30px 0px;
  position: fixed;
  width: 16vw;
}

.release-scrollbar {
  overflow: auto;
  max-height: 73vh;
}

.videoTopic-scrollbar {
  overflow: auto;
  max-height: 27vh;
}

.videoLibrary-scrollbar {
  overflow: auto;
  max-height: 27vh;
}

.release-label-box {
  border-radius: 0.5rem;
  box-shadow: 0 0 4px 1px lightgray;
  background: #fff;
}

.release-label-menu-box {
  border-radius: 0.25em;
  padding: 0.2em;
  min-height: 4vh;
  font-size: 12px;
  display: inline-block;
  align-content: center;
  margin-left: 10px;

  &.label-fix {
    color: deeppink;
  }

  &.label-new-feature {
    color: royalblue;
  }

  &.label-improvement {
    color: forestgreen;
  }

  &.label-infrastructure {
    color: black;
  }

  &.label-removed-feature {
    color: red;
  }

  &.label-all-post {
    color: #000;
  }
}

.release-label-option-box {
  border-radius: 0.5rem;
  box-shadow: 0 0 4px 1px lightgray;
  background: #fff;
  max-width: 89%;
  margin-left: 14px;
}

.release-checkbox {
  align-content: center;
  margin-left: 12px;
}

.custom-header-events {
  background-color: #92a8c2;
  color: black;
  font-weight: bold;
  text-align: center;
  font-size: '11px';
}

.custom-header {
  background-color: #92a8c2;
  color: black;
  font-weight: bold;
  text-align: center;
}

.custom-placeholder::placeholder {
  font-size: 13px;
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px 14px;
}

.iframeVideoClass {
  max-height: 61vh;
  max-width: 33vw;
}

.slate-career-history .p-overlaypanel-content {
  padding: 0.5rem;

  box-shadow: 0 0 16px darkgray;
  border-radius: 8px;
  max-width: 40vw;
}

.dashboard-table {
  overflow: auto;
  height: 78vh;
}

.dashboard-table-scroll {
  overflow: visible !important;
}

.dashboardtable .rdt_TableHead {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1;
}

.dashboard-crm-styles {
  direction: rtl;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 48px;
}

.dashboard-created-by {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0px;
}

.superAdminNavBtn {
  width: 126px !important;
  font-size: 15px;
}

.dashboard-video-font {
  color: #12314c !important;
  font-weight: bold;
  cursor: pointer;
}

.skills-shimmer-text {
  min-width: 100px;
  width: 100%;
  padding: 0px 24px;
}

.interview-score-result-shimmer {
  width: 100%;
  min-width: 150px;
  padding: 0 16px;
}

.culture-comment-section-shimmer {
  width: 100%;
  padding: 0 16px;
  align-self: center;
  text-align: center;
}

.transition-rating-shimmer {
  width: 100%;
  padding: 0 24px;

  & .shimmer-text {
    margin-bottom: 24px;
  }
}

.import-skill-div {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
  height: 40px;
  background-color: #e8eef9;
  box-shadow: 0 0 8px rgba(232, 238, 249, 1);
}

.existing-skill-scrollbar {
  overflow: auto !important;
  height: 21vh;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 2px;
}

.existing-skill-div {
  display: flex;
  align-items: center;
  margin: 0.2rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #ccc;
  height: 30px;
  width: fit-content;
  background-color: #f9f9f9;
}

.existing-skill-name {
  -webkit-line-clamp: 1 !important;
  margin-top: 2px !important;
  white-space: break-spaces;
  min-width: 40px !important;
  font-size: 14px;
}

.importSkillModal {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  z-index: 1;
  width: 80%;
  max-height: 95%;
}

.import-skill-scrollbar {
  overflow: auto !important;
  height: 34vh;
}

.import-dashboard-skill-scrollbar {
  overflow: auto !important;
  height: 56vh;
}

.import-skill-Details {
  -webkit-line-clamp: 1 !important;
  margin-top: 5px !important;
  white-space: break-spaces;
}

.import-skill-nav-button {
  width: 102px !important;
  font-size: 12px;
  height: 32px;
}

.interview-insight-candidate-secondary-details {
  display: -webkit-box;
  font-size: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autocomplete-container {
  position: relative;
  width: 586px;
}

.autocomplete-input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.autocomplete-container::placeholder {
  font-weight: normal !important;
  font-size: 14px !important;
}

.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 160px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: white;
  z-index: 1000;
  margin: 0;
  padding: 0;
  list-style: none;
}

.autocomplete-item {
  padding: 8px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: bold;
}

.item-meta {
  font-size: 0.85em;
  color: #666;
}

.interviewer-insight-ratings {
  width: fit-content;
  justify-self: center;
  border-radius: 8px;
  cursor: pointer;

  &:hover {
    box-shadow: 0 2px 4px gray;
  }
}

.interviewer-rating-card {
  width: "100%";
  border-radius: 4px;
  box-shadow: 0 0 2px gray;

}

.interviewer-rating-tooltip {
  min-width: 180px;
}

.interviewer-rating-tooltip-header {
  background-color: darkgray;
  border-radius: 4px;
  color: black;
}

.tooltip-feedback-checkbox-style.p-tooltip .p-tooltip-text {
  color: #fff;
  background-color: #555;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0px 0px;
  padding: 2px 7px;
  text-wrap: nowrap;
  max-width: 18vw;
  white-space: break-spaces;
}

.interviewRowInactive {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

/******************************* Header Auto Complete Textbox *******************************/
.search-container {
  position: relative;
  display: inline-block;
  transition: width 0.3s ease;
  margin-top: 1px;

  &.expanded .expandable-input {
    width: 350px;
    background: #ffff;

    &::placeholder {
      color: lightslategray;
    }
  }

  &.expanded .header-search-icon {
    color: lightslategray;
  }
}

.expandable-input {
  width: 150px;
  padding: 8px 12px;
  padding-left: 32px;
  font-size: 14px;
  border: 1px solid #344666;
  transition: width 0.3s ease;
  transform-origin: right;
  background: #344666;
  border-radius: 4px;

  &::placeholder {
    color: #ffff;
  }
}

.header-search-icon {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffff;
  pointer-events: none;
  z-Index: 2;
}

.suggestion-list {
  position: absolute;
  top: 38px;
  right: 0;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  color: darkslategray;
  background-color: #f8f9f9;
  font-size: 14px;
}

.suggestion-item {
  padding: 5px;
  padding-left: 8px;
  /* cursor: pointer; */
  border-bottom: 1px solid #eee;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}

/* Header Auto Complete Textbox End */

.culture-text {
  position: sticky;
  top: 0;
  z-index: 4;
  font-weight: bold;
  width: fit-content;
  color: royalblue;
  background-color: #d2e0f1;
  font-size: 14px;
  border-radius: 5px;
  margin-left: 7px;
}

.max-width-25 {
  flex: 0 0 100%;
  max-width: 25%;
}

.max-width-27 {
  flex: 0 0 100%;
  max-width: 27%;
}

.max-width-38 {
  flex: 0 0 100%;
  max-width: 38%;
}

.culture-note-overflow-ellipsis {
  display: -webkit-box;
  font-weight: 400;
  font-size: 12px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tooltip-interviewer-role.p-tooltip .p-tooltip-text {
  color: black;
  background-color: #fcfcfc;
  font-size: 14px;
  border-radius: 4px;
  box-shadow: 0 0 8px darkgray;
  padding: 4px 8px;
  max-width: 325px;
}

.external-interview-comparison-popup {
  max-width: 95vw !important;
  min-width: 40vw;
  width: max-content;
  border-radius: 4px;
  max-height: 96vh;
}

.compare-insights {
  justify-items: center;
  background-color: white;
  padding: 0rem 3rem;
  margin-top: 2rem;
  max-height: 88vh;

  & table {
    width: fit-content;
    margin-top: 1rem;
  }

  & th,
  td {
    padding: 1rem 1rem;
    min-width: 220px;
    max-width: 260px;
  }

  & th {
    text-align: center;
  }

  & td {
    text-align: end;
  }

  & tr:hover> :not(tr > th) {
    background-color: #eee;
    font-weight: bold;
  }

  & caption {
    width: max-content;
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }

  & .comp-candidate-caption {
    font-size: 16px;
    color: gray;
    font-style: italic;

    &:hover {
      font-weight: normal;
    }

    &:hover> :not(tr > th) {
      background-color: #fff;
      font-weight: normal;
    }

    & td:hover> :not(tr > th) {
      background-color: #fff;
    }

    & td:hover {
      background-color: transparent !important;
    }
  }
}

.culture-quetions-chkbox {
  width: 20px;
  height: 20px;
}

.role-radio-group {
  border: 1px solid rgb(204, 204, 204);
  border-radius: 8px;
  display: flex;
  gap: 20px;
  width: fit-content;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

.border-color-red {
  border-color: red !important;
}

.popularInsights-oval {
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 0 4px lightgray;
}

.popularInsights-scrollbar {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 2px;
  max-height: 18vh;
  overflow: auto;
  align-content: flex-start;
  justify-content: flex-start;
  background-color: white;
}

.popularInsights-box-style {
  display: flex;
  align-items: center;
  margin: 0.4rem;
  min-width: 162px;
}

.comparison-insight {
  background-color: rgb(18, 49, 76);
  color: white;
  border-radius: 0.5rem;

  &>div {
    font-weight: 600;
    float: left;
    cursor: pointer;
  }

  &:hover {
    background-color: rgb(34 102 160);
  }
}

.candidate-insight-compare-comment {
  font-size: 14px;
  border-radius: 50%;
  position: absolute;
  right: 0;

  &:hover {
    background-color: white;
    box-shadow: 0 0 2px gray;
    color: currentColor;

    &>svg {
      color: currentColor !important;
    }
  }
}


.modal-min-width {
  min-width: 600px;
}


.eventlist-container {
  margin-top: 4px;
}

.eventlist-header,
.eventlist-row {
  display: grid;
  grid-template-columns: 160px 125px auto 150px;
  /* fixed widths + flexible date */
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.eventlist-row {
  margin-left: 2px;
}

.eventlist-header {
  font-weight: 600;
  background: #f7f7f7;
  border-radius: 4px;
  /* padding: 8px; */
}

.eventlist-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eventlist-row:hover {
  background: #f9f9f9;
}

/*  Event modal */
/* Ellipsis for overflowing text */
.ellipsis-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.custom-modal-events {
  min-width: 50vw !important;
  max-width: 70vw !important;
  min-height: 50vh !important;
  max-height: 90vh !important;
  flex-direction: column;
}

.modal-content-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 0.7rem;
}

.interview-events-section {

  .p-datatable {
    .p-datatable-thead>tr>th {
      padding: 0.6rem 0.6rem;
    }

    .p-datatable-tbody>tr {
      font-size: 14px;

      &:hover {
        background-color: grey;
        cursor: pointer;
      }

      &:nth-child(odd) {
        background-color: #f9f9f9;
      }

      &:nth-child(even) {
        background-color: #ffffff;
      }

      >td {
        padding: 0.5rem;
      }
    }

    .p-datatable-thead th.p-filter-column {
      padding: 0.5rem 0.3rem;
    }
  }

  /* Inputs, Dropdowns, Calendar */
  .p-inputtext,
  .p-multiselect,
  .p-dropdown,
  .p-calendar,
  .p-column-filter {
    font-size: 13px !important;
  }

  .p-inputtext {
    padding: 0.5rem !important;
  }

  .p-button {
    padding: 0.5rem !important;
  }

  /* Calendar filter width */
  .p-column-filter .p-calendar {
    width: 92px !important;
  }

  /* 28px height for inputs */
  .p-column-filter input.p-inputtext,
  .p-dropdown,
  .p-calendar .p-inputtext {
    height: 28px !important;
  }

  /* MultiSelect */
  .p-multiselect {
    min-height: 26px !important;
  }

  .p-multiselect-label {
    padding: 4px 8px !important;
    font-size: 13px !important;
  }

  /* Dropdown Label */
  .p-dropdown-label {
    padding: 4px 8px !important;
    font-size: 13px !important;
  }

  /* Calendar popup */
  .p-datepicker {
    font-size: 13px !important;
  }

  .date-filter input {
    width: 100% !important;
  }

  .p-column-filter-element {
    width: 100% !important;

    .p-calendar {
      width: 100% !important;
    }
  }

  .p-column-filter-row .p-multiselect .p-multiselect-label {
    line-height: 28px !important;
    padding: 0 !important;
    margin-left: 4px !important;
    font-size: 12px !important;
  }

  .date-filter-column {
    width: 87px !important;
  }
}


.eventtable-header-div {
  font-weight: bold;
  background-color: #FAFAFA;
  padding: 4px 0;
  padding-left: 4px;
  border-bottom: 1px solid #ccc;
}

.eventtable-row-border-bottom {
  border-bottom: 1px solid #ccc;
}

.eventtable-row-border {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}



.searchEnvFitLoaderMargin {
  z-index: 1000;
  position: absolute;
  top: 75px;
  left: 45%;
}

.editEnvironmentFitModal {
  background: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  z-index: 1;
  max-width: 80vw;
  max-height: 85vh;
}

.event-details-modal {
  top: 25%;
  border-radius: 10px;
  width: max-content;
  height: max-content;
  padding: 15px !important;
  font-size: 13px;
}

.popup-table {
  width: 500px;
  border-collapse: collapse;
  margin-top: 22px;
}

.popup-table th,
.popup-table td {
  border: 1px solid #ddd;
  padding: 6px 8px;
  vertical-align: top;
  word-wrap: break-word;
}

.popup-table .col-event {
  width: 200px;
}

.popup-table .col-date {
  width: 80px;
  text-align: center;
}

.popup-table .col-note {
  width: 250px;
}

.popup-table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.popup-table td {
  white-space: normal;
  overflow: visible;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
}


.table-wrapper {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.scroll-container {
  max-height: 34vh;
  overflow-y: auto;
  overflow-x: auto;
  width: 100%;
}

.candidate-table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.candidate-table th,
.candidate-table td {
  border: 1px solid #bdbdbd;
  padding: 2px;
  text-align: center;
  white-space: nowrap;
  max-width: 180px;
}

.candidate-table thead th {
  position: sticky;
  top: 0;
  background: #f3f3f3;
  z-index: 5;
  font-weight: 600;
}

.sticky-col {
  position: sticky;
  left: 0;
  background: #fafafa;
  z-index: 6;
}

.candidate-table thead .sticky-col {
  z-index: 7;
  background: #e9e9e9;
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.1);
}

.candidate-table td.sticky-col {
  box-shadow: 2px 0 3px rgba(0, 0, 0, 0.05);
}

.candidate-col {
  min-width: 220px;
  text-align: left;
  max-width: 350px !important;
}

.candidate-cell {
  background-color: #f9f9f9;
}

.candidate-info {
  display: flex;
  align-items: center;
  padding-right: 8px;
}

.candidate-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.candidate-text {
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  /* max-width: 220px; */
}

.candidate-name {
  font-weight: 600;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.candidate-title {
  font-size: 12px;
  color: #8a94a6;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.interviewer-name-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.interviewer-first-name {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  overflow-x: hidden;
  max-width: 75px;
  text-overflow: ellipsis;
}

.interviewer-last-name {
  font-size: 11px;
  font-weight: 400;
  color: #d9d9d9;
  overflow-x: hidden;
  max-width: 75px;
  text-overflow: ellipsis;
}

.interviewer-col {
  text-wrap: auto;
  background-color: "#f0f0f0";
  padding: 8px;
  text-align: center;
  width: 70px;
  border: "1px solid #999";
}

.interview-cell {
  border: 1px solid #999;
  font-weight: 500;
  padding: 6px 4px;
  text-align: center;
  align-content: center;
  font-size: 13px;
  color: #3A7138;

  &:hover {
    font-weight: bold;
    cursor: pointer;
  }
}

.has-interview {
  background-color: #e3f8e0;
}

.skillAndEnvFitHeader {
  &>a:focus {
    box-shadow: none !important;
  }
}

.slate-group-btn {
  & .group-edit-hide {
    visibility: hidden;
  }

  &:hover .group-edit-hide {
    visibility: visible;
  }
}

.cand-avg-score {
  background-color: #00ab45;
  border-radius: 1rem;
  padding: 0px 4px;
  color: white;
  font-size: 12px;
}


.noteeditor-preview .k-editor-content {
  /* one-line height */
  max-height: 33px;
  max-width: 160px;
  /* remove vertical scrollbar */
  overflow-y: hidden !important;
  overflow-x: hidden;
  white-space: nowrap;
  text-align: left;
  color: #0077b5;
  padding: 0px !important;
  pointer-events: none;
  /* prevents typing */
  user-select: text;
}

/* Prevent paragraph spacing */
.noteeditor-preview .k-editor-content p {
  margin: 0;
  padding: 0;
  line-height: 32px;
}

/* Ellipsis if content is long */
.noteeditor-preview .k-editor-content * {
  text-overflow: ellipsis;
  overflow: hidden;
}

.noteeditor-preview .k-editor-content ol,
.noteeditor-preview .k-editor-content ul,
.noteeditor-preview .k-editor-content li {
  text-overflow: ellipsis;
  overflow: visible;
  padding-left: 12px;
  max-width: 120px;
}

.noteeditor-preview .ProseMirror {
  outline: none;
  caret-color: transparent;
}

.editor-tooltip-wrapper {
  pointer-events: auto;
}

.icon-button {
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.title-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right,
      #b8c2d8,
      #e6eaf2,
      transparent);
  margin: 8px 0 24px;
}

.legend {
  display: flex;
  gap: 24px;
  margin: 16px 0;
}

.legend label {
  display: flex;
  gap: 6px;
}

.box {
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
}

.box.completed {
  background: #54A84F;
}

.box.scheduled {
  background: #527BD9;
}

.skills-attributes-cards-grid {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.skills-attributes-card {
  min-height: 120px;
  max-width: 420px;
  margin: 2rem 3rem;
  padding: .75rem;
  border-radius: .5rem;
  box-shadow: 0 0 4px darkgray;
  cursor: default;

  & .truncate-desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }

  & .skillcard-desc {
    color: gray;
    font-size: 14px;
  }

  & .skillcard-header {
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0px 1px darkgray;
  }
}

.envFitDashboardLoader {
  z-index: 1000;
  position: absolute;
  top: 20%;
  left: 50%;
  height: 60px;
}

.page-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.interviewer-display-order .modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.interviewer-display-order .modal-container {
  background: #ffffff;
  width: 550px;
  max-width: 90%;
  margin: 10% auto;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.interviewer-display-order .modal-header {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.interviewer-display-order .modal-header h3 {
  margin: 0;
  font-size: 1rem;
}

.interviewer-display-order .modal-body {
  padding: 12px;
  max-height: 325px;
  overflow-y: auto;
  width: 280px;
  margin-top: 5px;
}

.interviewer-display-order .modal-footer {
  padding: 10px 12px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.interviewer-display-order .sortable-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.interviewer-display-order .sortable-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  margin-bottom: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fafafa;
  cursor: grab;
  user-select: none;
}

.interviewer-display-order .sortable-item:last-child {
  margin-bottom: 0;
}

.interviewer-display-order .sortable-item::before {
  content: "☰";
  margin-right: 8px;
  color: #888;
}

.interviewer-display-order .sortable-item:active {
  cursor: grabbing;
}

.grey-dot {
  display: inline-block;
  background: #e2e8f0;
  width: 5px;
  height: 5px;
  background: #ddd;
  border-radius: 50%;
  margin-top: 17px;
}

.interviewschedule-pdf {
  font-family: inherit !important;
}

.view-candidate-modal {
  overflow: hidden !important;
  width: 85vw;
  max-width: 1200px;
  min-height: 85vh;
  max-height: 95vh;
  background-color: #f6f6f6;
  border-radius: 1rem;

  & * {
    /* color: #000; */

    &.user-name {
      font-weight: bold;
      margin-right: 3px;
      font-size: 20px;
      cursor: default;
    }

    &.position-title {
      font-size: 20px;
      cursor: default;
      font-style: unset;
      max-width: 770px;
      width: 48vw;
    }

    &.company-name {
      color: gray;
      font-size: 16px;
      cursor: default;
      font-style: unset;
    }

    &.locationPin {
      font-size: 16px;
      color: gray;
      cursor: default;
    }

    &.view-card {
      border-radius: 1rem;
      background-color: white;
      padding: 1rem;
      margin: 1rem 0;
      /* box-shadow: 0 0 4px lightgray; */
      border: 1px solid lightgray;

      & .view-card-heading {
        /* color: black; */
        font-size: 18px;
        font-weight: bold;
      }
    }

    &.view-compensation-card {
      padding: 0.5rem 1rem;
      font-size: 16px;
      text-align: center;
      border-radius: 1rem;
      box-shadow: 0 0 4px lightgray;
      /* border: 1px solid lightgray; */
    }

    & .nav-tabs .nav-link {
      border: none;
      color: gray;
      min-width: 100px;
    }

    & .nav-tabs .nav-link.active {
      color: black;
      background-color: unset;
      border-color: unset;
      border-bottom: 1px solid;
      border-bottom-color: #0000ff;
    }
  }

  & * .k-editor {
    border: none
  }
}

.view-cand-document-card {
  box-shadow: 0 0 4px lightgray;
  /* border: 1px solid lightgray; */
  border-radius: 1rem;
  padding: .5rem;
  margin: 12px 0px;

  & .view-cand-document-title {
    color: #0077b5;
    font-size: 16px;
    font-weight: bold;
  }
}

.view-candidate-progressbar {
  counter-reset: step;
  cursor: default;

  & li {
    list-style: none;
    display: inline-block;
    width: 20%;
    position: relative;
    text-align: center;
    color: #c5c5c5;
    font-size: 12px;
  }

  & li:before {
    content: counter(step);
    counter-increment: step;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #d6d6d6;
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 0 auto;
    background-color: #fff;
    z-index: 2;
    position: relative;
  }

  & li.progress-tooltip:hover:before {
    border-color: #c4c4c4;
    background: #c4c4c4;
    color: #fff;
    line-height: 30px;
    font-family: "";
    content: counter(step);
  }

  & li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 33%;
    left: -50%;
    z-index: 1;
  }

  & li:first-child:after {
    content: none;
  }

  & li.active {
    color: #708090;
    font-weight: 600;
  }

  & li.active:before {
    border-color: #00ab45;
    background: #00ab45;
    color: #fff;
    line-height: 30px;
  }

  & li.stepactive+li:after {
    background-color: #00ab45;
  }

  & li.active:before {
    font-family: "Material Icons Outlined";
    content: "\e5ca";
  }

  & li.non-active {
    color: #a5a9ad;
    font-weight: 600;
  }

  & li.non-active:before {
    font-family: "Material Icons Outlined";
    content: "\2716";
    border-color: red;
    background: red;
    color: #fff;
    line-height: 28px;
  }

  & .checkmark:before {
    line-height: 30px;
  }
}

.culture-modal-body {
  display: flex;
  gap: 20px;
  height: calc(90vh - 300px);
  overflow-y: hidden;
}

/* Card */
.culture-card {
  /* max-height: 625px; */
  /* adjust as per modal */
  display: flex;
  flex-direction: column;
  background: #f5f7fb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  font-family: "KumbhSans", sans-serif !important;
}

.culture-card-left {
  flex: 0 0 100%;
  max-height: calc(90vh - 300px);
  overflow-y: auto;
}

.culture-card-right {
  flex: 1;
  /* remaining space */
  min-width: 0;
}

.culture-card-header {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 3px 12px;
  /* align-items: center; */
}

.culture-card-content {
  flex: 1;
  /* overflow-y: auto; */
  padding: 0px 10px;
}

.culture-ps-height {
  max-height: calc(90vh - 395px);
  overflow-y: auto;
}

.culture-circle-score {
  width: 50px;
  height: 50px;
  /* border-radius: 50%;
  background: #e6f4ea;
  color: #2e7d32;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.culture-score-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.culture-score-badge {
  background: #e8f5e9;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.culture-summary-left h5 {
  margin: 0;
}

.culture-summary-score {
  min-width: 36px;
  height: 24px;
  background: #1a933e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-summary-row {
  display: flex;
  align-items: flex-start;
  padding: 4px 0;
  /* border-bottom: 1px solid #eee; */
}

/* Text block (RIGHT) */
.culture-summary-content {
  display: flex;
  flex-direction: column;
}

/* Title */
.culture-summary-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* Sub text */
.culture-summary-subtext {
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

/* Link style */
.culture-link-btn {
  margin-top: 4px;
  background: none;
  border: none;
  padding: 0;
  color: #1976d2;
  font-size: 13px;
  cursor: pointer;
}

.culture-reset-slot {
  /* display: inline-flex; */
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

/* Hide icon WITHOUT removing space */
.culture-hidden {
  visibility: hidden;
}

.culture-fit-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.culture-fit-icons svg {
  cursor: pointer;
  font-size: 18px;
}

.culture-notes-card {
  background: #ffffff;
  border-radius: 10px;
  /* padding-bottom: 12px; */
  /* height: calc(90vh - 560px); */
}

.culture-notes-header {
  display: flex;
  justify-content: normal;
  align-items: center;
  margin-bottom: 0px;
}

.culture-notes-title {
  font-weight: 600;
  font-size: 14px;
  color: #2c2c2c;
  margin-bottom: 5px;
  margin-top: 5px;
}

.culture-notes-edit {
  font-size: 18px !important;
  cursor: pointer;
  color: #6c757d;
}

.culture-notes-edit:hover {
  color: #000;
}

.culture-notes-body {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  position: relative;
}

.culture-notes-body.read-mode {
  /* height: 85px;
  max-height: 85px; */
  /* max-height: calc(90vh - 665px);
  min-height: 200px; */
  overflow: auto;
}

.culture-notes-body.edit-mode {
  padding: 1px 1px 1px 1px !important;
}


.culture-notes-text {
  font-family: "Kumbh Sans", sans-serif;
  /* min-height: 100%; */
  white-space: pre-wrap;
  word-break: break-word;
}

.notes-error {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
}

.culture-notes-counter {
  position: absolute;
  bottom: 4px;
  right: 10px;
  font-size: 12px;
  color: #888;
}

.culture-notes-close {
  font-size: 18px;
  cursor: pointer;
  color: #dc3545;
}

.culture-notes-close:hover {
  color: #a71d2a;
}


.culture-signal-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 5px 0;
  border-bottom: 1px solid #e6e9f0;
}

.culture-signal-row:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.culture-signal-row:last-child {
  border-bottom: none;
}

.culture-signal-image {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
}

.culture-signal-content {
  flex: 1;
  min-width: 0;
  /* MOST IMPORTANT FIX */
  overflow: hidden;
  min-width: 0;
}

.culture-signal-url {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.culture-signal-url:hover {
  color: #0d6efd;
  /* blue on hover */
  text-decoration: underline;
  cursor: pointer;
}


.culture-edit-icon {
  font-size: 14px !important;
  color: #888;
}

.culture-signal-input,
.culture-signal-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.culture-signal-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.culture-signal-actions .material-icons {
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

.culture-header-title {
  font-size: 20px;
}

/* ===== Culture Attachment – Single Document View ===== */

.culture-attachment-row {
  display: flex;

  justify-content: space-between;
  /* padding: 7px 20px; */
  color: #0077b5;
  margin-left: 15px;
  /* background-color: #f8f9fb;
  border: 1px solid #e3e6ea;
  border-radius: 4px; */
}

/* Filename text */
.culture-attachment-name {
  max-width: 260px;
  font-size: 13px;
  font-weight: 500;
  color: #0d6efd;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right-side icons + toggles */
.culture-attachment-actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  padding-top: 4px
}

/* Download / Delete icons */
.culture-attachment-actions svg {
  font-size: 16px;
}

/* Upload (+) icon */
.culture-add-icon-attachment {
  font-size: 26px;
  color: #0077b5;
  margin-top: 4px;
}

.culture-add-icon-attachment:hover {
  color: #0077b5;
}

/* Force switches to align inline inside culture attachment */
.culture-attachment-actions .switch {
  display: inline-flex;
  align-items: center;
  margin: 0;
}


/* Optional: tighten vertical alignment */
.culture-attachment-actions .slider {
  margin-top: 0;
}

.toggle-column {
  display: flex;
  flex-direction: column;
  /* forces vertical stacking */
  align-items: center;
}

.toggle-label {
  font-size: 13px;
  color: #555;
  margin-top: 2px;
  white-space: nowrap;
}

.view-candidate-score-table {
  & * tr.p-highlight {
    background: #f7f7f7 !important;
    color: #495057 !important;
  }

  & .p-treetable-wrapper {
    border: 1px solid lightgray;
    border-radius: 1rem;
    /* padding: 8px; */
  }
}

.view-candidate-rich-text-readonly {
  /* height: 50px; */

  & .k-editor {
    background-color: transparent !important;
    border: none !important;
  }

  & * .k-editor-content {
    padding: 0;
  }

  & * .k-editor-content>.k-iframe {
    height: 24px !important;
  }
}

.culture-tab-rich-text {
  /* height: 50px; */

  & .k-editor {
    background-color: transparent !important;
    border: none !important;
    margin-top: 6px;
  }

  & * .k-editor-content {
    padding: 0;
  }
}

.review-link {
  color: #2f80ed;
  cursor: pointer;
  margin-left: 5px;
  font-weight: 600;
}

.signal-item {
  margin-bottom: 10px;
}

.signal-description {
  font-size: 12px;
  color: #777;
}

.error-text {
  color: red;
}

.ps-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ps-dialog {
  background: white;
  width: 520px;
  border-radius: 12px;
  padding: 25px;
}

.ps-dialog-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.ps-info div {
  margin-bottom: 10px;
  font-size: 16px;
}

.check {
  color: green;
  font-weight: bold;
  margin-left: 5px;
}

.ps-warning {
  margin-top: 20px;
  color: #555;
}

.ps-dialog-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}

.public-signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.public-signal-header-tooltip {
  font-size: 15px;
  vertical-align: text-bottom;
}

.public-signal-ai-section {
  margin-top: 8px;
}

.public-signal-status {
  display: flex;
  align-items: center;
  gap: 8px;
  /* space between text & icon */

  font-size: 13px;
  color: #6b7280;
  padding-left: 14px;
  padding-bottom: 4px;
}

.required-text {
  color: #d32f2f;
  font-weight: 500;
}

.required-chip {
  background: #d32f2f;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 6px;
  margin-right: 6px;
}

.required-note {
  font-size: 13px;
  color: #555;
}

.check {
  color: #2e7d32;
  font-weight: bold;
  margin-left: 6px;
}

.ai-mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #4f8cff, #8a6cff, #ff4d4d, #ffc107, #28a745) border-box;

  transition: all 0.2s ease;
}

.ai-mode-pill:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ai-mode-pill.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tooltip-row {
  display: flex;
  align-items: center;
  gap: 6px;
  /* control space between icon and text */
}

.tooltip-message {
  font-size: 15px;
  color: #20578f;
}


.ps-list-container {
  max-height: 60vh;
  overflow-y: auto;
  padding: 8px;
}

/* Header */
.ps-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Card */
.ps-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  transition: 0.2s;
}

.ps-card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Checkbox */
.ps-checkbox {
  padding-top: 4px;
}

/* Content */
.ps-content {
  flex: 1;
  overflow: hidden;
}

/* Title */
.ps-title a {
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.ps-title a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.ps-url {
  font-size: 12px;
  color: #2563eb;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ps-url:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

/* Summary */
.ps-summary {
  margin-top: 6px;
  font-size: 13px;
  color: #374151;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Snippet */
.ps-snippet {
  margin-top: 4px;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scores */
.ps-scores {
  margin-top: 8px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #4b5563;
}

/* Row layout for title & description */
.culture-signal-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.culture-signal-desc-row {
  display: flex;
  gap: 6px;
  /* justify-content: space-between; */
  align-items: center;
}

/* Text containers (important for ellipsis) */
.culture-signal-title-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.culture-signal-desc-text {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* Allow description wrapping */
.culture-signal-desc-text {
  white-space: normal;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.culture-signal-title-text {
  font-weight: 600;
}

.culture-signal-title-text,
.culture-signal-url,
.culture-signal-desc-text {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.culture-inline-actions {
  display: flex;
  gap: 6px;
}

.culture-inline-actions .material-icons {
  font-size: 18px;
  cursor: pointer;
}


/* Improve textarea UX */
.culture-signal-textarea {
  resize: vertical;
  min-height: 60px;
}

.culture-icon-success.disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
  /* prevents click */
}

.grid-description {
  &:hover {
    text-decoration: underline;
  }
}

.assign-candidate {
  &.p-multiselect-items-wrapper {
    max-height: 215px !important;
  }
}

.culture-publish-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* RIGHT SIDE (toggle fixed) */
.culture-publish-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ps-disclaimer {
  padding-top: 10px;
  /* background: #fafafa; */
  width: 100%;
  margin-left: 0px;
}

.ps-disclaimer-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.ps-disclaimer-label input {
  margin-top: 3px;
  cursor: pointer;
}

.ps-disclaimer-text {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

.ps-disclaimer.error {
  border: 1px solid red;
  background: #fff5f5;
  padding-left: 15px;
}

.culture-tab-public-signal-image {
  border-radius: 0.5rem;
}

.culture-tab-public-signal-desc {
  display: -webkit-box;
  max-width: 100%;
  margin: auto;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-strategy-target {
  & .scrollbar {
    height: stretch;
    max-height: 72vh !important;
  }
}

.ext-env-fit-table {
  width: 100%;

  & th,
  td {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  & .env-fit-score-pill,
  .env-fit-score-pill-color {
    display: flex;
    width: 58px;
    padding: 6px 12px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 0.75rem;
    color: white;

    &.ideal {
      background-color: #1C3073;
    }

    &.strong {
      background-color: #5286b5;
    }

    &.good {
      background-color: #89A4A6;
    }

    &.partial {
      background-color: #D8C3A4;
    }

    &.limited {
      background-color: #D1827C;
    }
  }

  & .strength-pill {
    display: flex;
    width: 100%;
    background-color: #EEF2FF;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 1rem;
    color: #2F5BFF;
  }

  & .watchout-pill {
    display: flex;
    width: 100%;
    background-color: #EEF2FF;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 1rem;
    color: #2F5BFF;
  }

  & .z-score-pill {
    display: flex;
    width: 100%;
    min-height: 40px;
    max-height: 60px;
    height: 55px;
    aspect-ratio: 1;
    border: 2px solid #2F5BFF;
    background-color: #EEF2FF;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 1rem;
    color: #2F5BFF;
  }

  & .line-truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

.section {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.section-title {
  font-weight: bold;
  margin-top: 10px;
}

.card {
  /* margin-top: 10px; */
  padding: 10px;
  border: 1px solid #eee;
}

.link-btn {
  margin-top: 10px;
  color: blue;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}


.import-search-confirm-modal {
  top: 10%;
  border-radius: 10px;
  min-width: 300px;
  height: max-content;
  padding: 0.5rem !important;
  font-size: 16px !important;
}

/* for 1 Start */
/* ================= ROOT ================= */
.talent-container {
  padding: 5px 8px;
  max-height: 56vh;
  overflow-y: auto;
  font-size: 14px;
}

/* ================= SECTION ================= */
.talent-section {
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  margin-bottom: 14px;
  background: #fff;
}

.talent-section-header {
  padding: 12px 14px;
  font-weight: 600;
  cursor: pointer;
  background: #f7f9fc;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 6px;
}

.talent-section-header:hover {
  background: #eef3ff;
}

.talent-section-body {
  padding: 14px;
}

.talent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 15px;
}

/* .talent-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
} */

.talent-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.talent-tabs {
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid #bfc4cd;
}

.talent-tab {
  position: relative;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 450;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.talent-tab:hover {
  color: #2563EB;
}

.talent-tab.active-tab {
  color: #2563EB;
}

.talent-tab.active-tab::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #2563EB;
  border-radius: 2px;
}

.talent-pdf-wrapper {
  display: flex;
  align-items: center;
}

/* ================= LIST ================= */
.talent-list {
  margin-top: 6px;
  margin-left: 18px;
  /* bullet indent */
}

/* ROW */
.talent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

/* TEXT */
.talent-text {
  flex: 1;
  padding-left: 4px;
  line-height: 1.5;
}

/* INPUT */
.talent-input {
  flex: 1;
  height: 32px;
  font-size: 13px;
}

/* ACTIONS */
.talent-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ICON BUTTONS */
.talent-actions button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  padding: 2px 4px;
  color: #555;
}

.talent-actions button:hover {
  color: #007bff;
}

/* DELETE BUTTON */
.talent-delete-btn {
  margin-left: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #dc3545;
}

.talent-delete-btn:hover {
  color: #a71d2a;
}

/* ADD BUTTON */
.talent-add-btn {
  margin-top: 6px;
  font-size: 13px;
  padding: 4px 8px;
  border: 1px dashed #007bff;
  background: #f8fbff;
  border-radius: 6px;
  cursor: pointer;
}

.talent-add-btn:hover {
  background: #e6f0ff;
}

/* ================= WORKSTREAM ================= */
.talent-work-card {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fafafa;
}

/* TEXTAREA */
.talent-container textarea.form-control {
  min-height: 60px;
  font-size: 13px;
  margin-top: 6px;
}

/* ================= BUTTON ================= */
.talent-container .btn {
  font-size: 13px;
  padding: 6px 12px;
}

/* ================= SCROLLBAR ================= */
.talent-container::-webkit-scrollbar {
  width: 6px;
}

.talent-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.talent-container::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .talent-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .talent-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.talent-subsection {
  margin-bottom: 16px;
}

.talent-subsection-title {
  font-weight: 600;
  font-size: 14px;
  color: #34495e;
  margin-bottom: 6px;
  margin-left: 4px;
}

.talent-sub-title {
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 6px;
  color: #2c3e50;
  padding-left: 8px;
}

.talent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.talent-text {
  flex: 1;
  padding-left: 10px;
}

.talent-input {
  flex: 1;
}

.talent-actions {
  display: flex;
  gap: 6px;
}

/* ================= WRAPPER ================= */
.talent-wrapper {
  display: flex;
  flex-direction: column;
  height: 78vh;
  /* adjust based on modal */
}

/* ================= HEADER ================= */


/* ================= SCROLL AREA FIX ================= */
/* .talent-container {
  flex: 1; 
  overflow-y: auto;
  padding: 12px 8px;
} */

/* ================= FOOTER ================= */
.talent-footer {
  padding: 10px 12px;
  border-top: 1px solid #e2e6ea;
  background: #e8eef9;
  text-align: right;
  z-index: 2;
}

.highlight-field {
  border: 1px solid #ff4d4f;
  background: #fff1f0;
  border-radius: 6px;
  padding: 4px;
  animation: blinkHighlight 0.6s ease-in-out 2;
}

@keyframes blinkHighlight {
  0% {
    background: #fff1f0;
  }

  50% {
    background: #ffe3e3;
  }

  100% {
    background: #fff1f0;
  }
}

/* for 1 End */


/*******************************
 TALENT DEVELOPMENT PDF
*******************************/
/* =========================================
   MAIN PDF CONTAINER
========================================= */
.talentPdfContainer {
  width: 100%;
  box-sizing: border-box;
  font-family: "KumbhSans" !important;
}

/* Start section on new page */
.new-page-section {
  page-break-inside: auto !important;
  break-inside: auto !important;
}

/* Allow workstreams to flow naturally */
.workstream-block {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
  display: block !important;
}

/* Tables */
.workstream-table {
  width: 100%;
  border-collapse: collapse;
  /* table-layout: fixed; */
}

/* Allow table content to split */
.workstream-table tbody,
.workstream-table tr,
.workstream-table td {
  page-break-inside: avoid !important;
  break-inside: avoid !important;

  /* overflow: visible !important; */
}

.workstream-cell {

  /* word-break: break-word; */
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

.keep-together {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/*********************************
 ONBOARDING PDF
**********************************/

.onboarding-keep-section {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}


.onboarding-keep-together {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
  display: block !important;
}

.onboarding-keep-item {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

/* Tables */
.onboarding-pdf table,
.onboarding-pdf tbody,
.onboarding-pdf tr,
.onboarding-pdf td {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
}

.onboarding-plan-card {
  break-inside: avoid !important;
  page-break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
}

.onboarding-no-split {
  break-inside: avoid !important;
  page-break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
}

.onboarding-plan-wrapper {
  page-break-inside: avoid !important;
  break-inside: avoid !important;

  display: block !important;

  margin-bottom: 18px !important;

  border: 1px solid #DCE4F2;
  border-radius: 12px;

  overflow: hidden;
  background: #FFFFFF;
}

.onboarding-plan-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.onboarding-plan-table tr,
.onboarding-plan-table td {
  page-break-inside: avoid !important;
  break-inside: avoid !important;
  vertical-align: top;
}

.onboarding-left-panel {
  width: 170px;
  background: #F7F9FC;
  border-right: 1px solid #E5E7EB;
}

.onboarding-right-panel {
  background: #FFFFFF;
}

.linked-company-chip {
  font-weight: bold;
  width: fit-content;
  height: fit-content;
  /* color: #3F80F5; */
  color: #495057;
  background-color: #E5EFFF;
  /* font-size: 14px; */
  border-radius: 18px;
  padding: 0px 6px;
}

.doc-count-notification-style {
  position: absolute;
  left: 12px;
  top: 0;
  background-color: #0077b5;
  aspect-ratio: 1;
  height: 14px;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  color: white;
}

.location-pin {
  font-size: 15px;
  color: #808080;

  & .hover-effect {
    padding-right: 1px;
    border-radius: 0.5rem;

    &:hover {
      color: rgb(0, 119, 181) !important;
      /* box-shadow: 0 0 2px 2px #e9f5f8; */
      background-color: #e9f5f8;
    }
  }
}

.ai-editable-note {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E3A8A;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  /* margin-bottom: 16px; */
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.public-signals-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  color: #12314c;
  font-size: 13px;
  line-height: 1.4;
}

.public-signals-disclaimer .disclaimer-icon {
  color: #5b7fff;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}