@import url("https://fonts.googleapis.com/css?family=Titillium+Web:200,200i,300,300i,400,400i,600,600i,700,700i,900&display=swap");

:root {
  --cOrangeA: #fc801b;
  --cOrangeB: #fc9744;
  --cOrangeC: #fdb982;
  --cOrangeD: #fedcc0;
  --cOrangeE: #fef3ea;

  --cDarkA: #222e50;
  --cDarkB: #4a546f;
  --cDarkC: #868d9f;
  --cDarkD: #c2c6cf;
  --cDarkE: #eaecef;
  --cDarkF: #d6d9df;

  --cBlueA: #2d61af;
  --cBlueB: #537dbd;
  --cBlueC: #8ca8d3;
  --cBlueD: #c5d3e9;
  --cBlueE: #ebf0f7;
  --cBlueF: #d3e1ed;
  --cBlueG: #f5f9ff;
  --cNavyBlue : #1975D2;
  --cWedgeWood : #506983;

  --cBlueDark : #1D5183;

  --cWhiteSmoke:#F1F1F1;

  --cNavyBlue : #1975D2;
  --cWedgeWood : #506983;


  --cBackgroundDark: var(--cDarkA);
  --cBackgroundLight: #006dd2;

  --cTableBackground: var(--cBackgroundLight);
  --cTableOddRow: rgba(163, 166, 166, 0.1);;
  --cTableEvenRow: white;

  --cActive: #fc801b;
  --cDisabled: #868d9f;

  --cCompleted: #4a546f;

  --cError: #e56060;
  --cProcessing: #2d61af;
  --cSuccess: #17a188;
  --cPending: #f1ba4e;

  --cFontXXL: 18pt; /*24px*/
  --cFontXL: 15pt; /*20px*/
  --cFontL: 14pt; /*18px*/
  --cFontM: 12pt; /*16px*/
  --cFontS: 10pt; /*14px*/
  --cFontXS: 8pt; /*12px*/

  --cFont-dark: #222e50;
  --cFont-medium: #506983;
  --cFont-light: #9e9e9e;
  --cFont-ultralight: #c3cbd3;

  --cNavyBlue: #1975D2;

  --cFontBold: 700; /*Bold*/
  --cFontSB: 600; /*Semi-Bold*/
  --cFontReg: 400; /*Regular*/

  --cFontFamily: "Titillium Web", "sans-serif" !important;
  
  --cRatingMinusOne: #FDEDED;
  --cRatingZero: #EDF5FD;
  --cRatingOne:#C8E0F9; 
  --cRatingTwo :#A3CBF5;
  --cRatingThree:#7EB6F1;
  --cRatingFour:#5AA1ED;
  --cRatingFive:#358CE9;

  --cNavyBlue : #1975D2;
  --cWedgeWood : #506983;

  --cLightYellow : #FEC02D;
  --cGreen : #2BA72B;
  --cLightPurple : #9662EB;

  --aggrid-header-bgcolor:rgba(24, 160, 251, 0.08);
  --aggrid-alternative-row-color:#FFFFFF ;
  --aggrid-header-font-color:#18A0FB;
  --aggrid-font-size:12px;
  --aggrid-even-row-color:rgba(211, 211, 211, 0.15);
  --agrrid-header-bottom-color:#18A0FB;
}
body {
  font-family: var(--cFontFamily) !important;
  color: var(--cFont-dark);
  font-weight: var(--cFontSB);
}

.c-flex {
  display: flex;
}
.c-flex-row {
  display: flex;
  flex-direction: row;
}
.c-flex-column {
  display: flex;
  flex-direction: column;
}

.c-heading {
  font-size: var(--cFontXXL) !important;
  font-weight: var(--cFontBold) !important;
  color: var(--cDarkA);
}

.c-sub-heading {
  font-size: var(--cFontXL) !important;
  font-weight: var(--cFontBold) !important;
  color: var(--cBlueA);
}

.c-title {
  font-size: var(--cFontL) !important;
  font-weight: var(--cFontSB) !important;
  color: var(--cBlueA);
}

.c-textB {
  font-size: var(--cFontS) !important;
  font-weight: var(--cFontBold) !important;
  color: var(--cBlueA);
}
.c-textR {
  font-size: var(--cFontS) !important;
  font-weight: var(--cFontReg) !important;
  color: var(--cBlueB);
}

.c-btn {
  width: 150pt;
  height: 30pt;
  font-size: 11pt;
  border-radius: 5px;
}

.c-btn-sm {
  width: 70pt;
  height: 23pt;
  font-size: 11pt;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
}

.c-tab {
  width: 150pt;
  height: 30pt;
  border-radius: 50px;
  font-size: 11pt;
}

.c-zebra-blue {
  background-color: var(--aggrid-alternative-row-color) !important;;
}

button:hover,
a:hover {
  cursor: pointer;
}

.c-btn-orange {
  background: var(--cOrangeA) !important;
  box-shadow: 0px 4px 10px rgba(252, 128, 27, 0.3) !important;
  color: white !important;
  border: none !important;
}

.c-btn-orange:hover {
  background: radial-gradient(
    50% 392% at 50% 47.5%,
    #fc801b 0%,
    rgba(252, 128, 27, 0.7) 100%
  ) !important;
  box-shadow: 0px 12px 15px -10px rgba(252, 128, 27, 0.2) !important;
}

.c-btn-red {
  background: var(--cError) !important;
  box-shadow: 0px 4px 10px rgba(229, 96, 96, 0.3) !important;
  color: white !important;
  border: none !important;
}

.c-btn-red:hover {
  background: radial-gradient(
    50% 392% at 50% 50%,
    #e56060 0%,
    rgba(229, 96, 96, 0.7) 100%
  ) !important;
  box-shadow: 0px 12px 15px -10px rgba(229, 96, 96, 0.5) !important;
}

.c-btn-blue {
  background: var(--cBlueA) !important;
  box-shadow: 0px 4px 10px rgba(45, 97, 175, 0.3) !important;
  color: white !important;
  border: none !important;
}

.c-btn-blue:hover {
  background: radial-gradient(
    50% 392% at 50% 50%,
    #2d61af 0%,
    rgba(45, 97, 175, 0.7) 100%
  ) !important;
  box-shadow: 0px 12px 15px -10px rgba(45, 97, 175, 0.5) !important;
}


.c-btn-green {
  background: var(--cSuccess) !important;
  box-shadow: 0px 4px 10px rgba(45, 175, 88, 0.3) !important;
  color: white !important;
  border: none !important;
}

.c-btn-green:hover {
  background: radial-gradient(
    50% 392% at 50% 50%,
    #2daf2d 0%,
    rgba(45, 175, 67, 0.7) 100%
  ) !important;
  box-shadow: 0px 12px 15px -10px rgba(45, 175, 67, 0.5) !important;
}

.c-btn-dark {
  background: var(--cDarkA) !important;
  color: white !important;
  border: none;
}

.c-btn-orange-outline {
  border: 1px solid var(--cOrangeA) !important;
  color: var(--cOrangeA) !important;
  background: white !important;
  transition: 0.5s;
}

.c-btn-orange-outline:hover {
  background: var(--cOrangeA) !important;
  color: white !important;
}

.c-btn-red-outline {
  border: 1px solid var(--cError) !important;
  color: var(--cError) !important;
  background: white !important;
  transition: 0.5s;
}

.c-btn-red-outline:hover {
  background: var(--cError) !important;
  color: white !important;
}

.c-btn-blue-outline {
  border: 1px solid var(--cBlueA) !important;
  color: var(--cBlueA) !important;
  background: white !important;
  transition: 0.5s;
}

.c-btn-blue-outline:hover {
  background: var(--cBlueA) !important;
  color: white !important;
}

.c-btn-dark-outline {
  border: 1px solid var(--cDarkA) !important;
  color: var(--cDarkA) !important;
  background: white !important;
  transition: 0.5s;
}

.c-btn-dark-outline:hover {
  background: var(--cDarkA) !important;
  color: white !important;
}

.c-btn-disabled {
  background: var(--cDarkC) !important;
  border: 1px solid #ffffff !important;
  color: white !important;
  border-radius: 5px !important;
  pointer-events: none;
}
.c-btn-disabled-outline {
  background: white !important;
  border: 1px solid var(--cDarkC) !important;
  color: var(--cDarkC) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  pointer-events: none !important;
  cursor: not-allowed;
}

.c-process-active {
  background: var(--cOrangeA) !important;
  border: 1px solid #ffffff !important;
  color: white !important;
  border-radius: 5px !important;
}

.c-process-disabled {
  background: var(--cDarkC) !important;
  border: 1px solid #ffffff !important;
  color: white !important;
  border-radius: 5px !important;
  pointer-events: none;
}

.c-process-completed {
  background: var(--cDarkB) !important;
  border: 1px solid #ffffff !important;
  color: white !important;
  border-radius: 5px !important;
}

.c-tab-active {
  background: var(--cDarkB) !important;
  border: 1px solid #ffffff !important;
  color: white !important;
  pointer-events: none;
}

.c-tab-unactive {
  background: var(--cDarkE) !important;
  border: 1px solid #506983 !important;
  color: var(--cDarkB) !important;
  transition: 0.5s;
}

.c-tab-unactive:hover {
  background: var(--cDarkC) !important;
  color: white !important;
  border: 1px solid white !important;
}

.c-candidatePipelineTableDefaultGlobalStyle {
  width: 100%;
  border-collapse: collapse;
  border-radius: 5px;
  text-align: left !important;
  box-shadow: 0 0 5px 1.5px var(--cBlueD);
}

.c-candidatePipelineTableDefaultGlobalStyle th {
  margin: 0;
  width: 25%;
  padding: 8pt 10pt;
  border-right: 0.539861px solid rgba(215, 215, 215, 0.7);
  background: var(--cTableBackground);
  color: white;
  text-align: left !important;
}
.c-candidatePipelineTableDefaultGlobalStyle td {
  width: 25%;
  padding: 8pt 10pt;
  color: var(--cFont-dark) !important;
  border: none;
  border-right: 0.539861px solid rgba(215, 215, 215, 0.7);
  text-align: left !important;
}

.c-candidatePipelineTableDefaultGlobalStyle tr:nth-child(even) {
  background-color: var(--cTableEvenRow);
}

.c-candidatePipelineTableDefaultGlobalStyle tr:nth-child(odd) {
  background-color: var(--cTableOddRow);
}

.c-candidatePipelineTableDefaultGlobalStyle th:first-child {
  border-radius: 5px 0 0 0;
}

.c-candidatePipelineTableDefaultGlobalStyle th:last-child {
  border-radius: 0px 5px 0 0;
}
.c-candidatePipelineTableDefaultGlobalStyle tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.c-candidatePipelineTableDefaultGlobalStyle tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.c-candidatePipelineHeader .totalResumeCount {
  font-size: 11pt;
}
.c-candidatePipelineTableDefaultGlobalStyle tr td:last-child {
  border-right: none;
}
.c-candidatePipelineHeader .newResumeCount {
  width: fit-content;
  vertical-align: middle;
  padding: 5pt 10pt;
  width: 25%;
  height: auto;
  font-size: 11pt;
}

.c-input-error {
  background: rgba(229, 96, 96, 0.1) !important;
  border: 1px solid var(--cError) !important;
}

div#driver-popover-item > * {
  font-family: var(--cFontFamily);
}

div#driver-popover-item .driver-popover-title,
div#driver-popover-item .driver-popover-description,
div#driver-popover-item .driver-popover-footer button {
  font-family: var(--cFontFamily);
  font-weight: 600;
}

a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.pointer,
input.btn {
  cursor: pointer !important;
}
input[type=file], /* FF, IE7+, chrome (except button) */
input[type=file]::-webkit-file-upload-button {
/*    chromes and blink button  */
  cursor: pointer !important;
}

a[href]:disabled,
input[type="submit"]:disabled,
input[type="image"]:disabled,
input[type="file"]:disabled,
label[for]:disabled,
select:disabled,
button:disabled,
.pointer:disabled,
input.btn:disabled {
  cursor: not-allowed !important;
}
input[type=file]:disabled, /* FF, IE7+, chrome (except button) */
input[type=file]::-webkit-file-upload-button:disabled {
  /* chromes and blink button */
  cursor: not-allowed !important;
}
/* Template for Candidate Pipeline Skeleton*/

.c-CP-loader-header,
.c-CP-loader-text,.c-skeletal-loader {
  -webkit-animation: skeleton 1s ease-in-out forwards infinite;
  animation: skeleton 1s ease-in-out forwards infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@-webkit-keyframes skeleton {
  0% {
    opacity: 0.2;
    -webkit-transform: translateY(6px) scale(0.98);
    transform: translateY(6px) scale(0.98);
  }
  85%,
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
  }
}

@keyframes skeleton {
  0% {
    opacity: 0.2;
    -webkit-transform: translateY(6px) scale(0.98);
    transform: translateY(6px) scale(0.98);
  }
  85%,
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1);
    transform: translateY(0px) scale(1);
  }
}

.c-CP-loader {
  background-color: white;
  padding: 0.8rem 0.75rem;
  margin: 0 auto;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.c-CP-loader-header {
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}
.c-CP-loader-text {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.c-CP-loader-footer {
  display: flex;
  margin-top: 1rem;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.skeleton {
  background-color: white;
}

.skeleton-line {
  height: 20pt;
  background-color: var(--cBlueD);
  border-radius: 3px;
  margin-bottom: 5pt;
}
.skeleton-line.heading {
  height: 20pt;
  margin-bottom: 10pt;
}
.skeleton-img {
  height: 250px;
  background-color: #213243;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
/* Template for Candidate Pipeline Skeleton Ends*/


  /* Screening Question Section Generator start */

  screening-question-section-generator {
    font-family:var(--cFontFamily) !important;
  }  
  
  screening-question-section-generator::part(mainContent) {
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(sectionInputName) {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    color: #FFFFFF;
    min-width: 83%;
    max-width: 83%;
    font-size: 18px;
    line-height: 27px;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(sectionInputName)::placeholder {
    background: transparent;
    border: none !important;
    color: #FFFFFF;
    min-width: 83%;
    max-width: 83%;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(sectionInputName):focus {
    border: none; 
    outline: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(doneButton) {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: none;
    color: #FFFFFF;    
    padding: 7px 13px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    vertical-align: middle;
    font-size: 16px;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(doneButton):hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 12px 15px -10px rgba(255, 255, 255, 0.1) !important;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(deleteButton) {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;   
    transition: 0.3s;
  }

  screening-questrion-section-generator::part(deleteButton):hover {
    background: rgba(193, 193, 193, 0.3) !important;
    border-radius: 50%;   
  }

  screening-questrion-section-generator::part(deleteButton):focus {
    background: rgba(193, 193, 193, 0.3) !important;
    border-radius: 50%;   
  }

  screening-question-section-generator::part(editButton) {
    background: transparent;
    border: none;
    cursor: pointer;
  }

  screening-question-section-generator::part(sectionReadOnly) {
    background: rgba(0, 168, 255, 0.5);
    border-radius: 4px;
    border-left: 5px solid #FFFFFF;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 3px 10px;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(sectionEditMode) {    
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 3px 3px;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(actionButton) {
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-section-generator::part(hide) {    
    display: none;    
  }

  screening-question-section-generator::part(sectionName) {
    word-break: break-all;
    font-family:var(--cFontFamily) !important;
    font-size: 18px;
    line-height: 27px;
  }

  /* Screening Question Section Generator End */

  /* Screening Question Generator Start */

  screening-question-generator {
    font-family:var(--cFontFamily) !important;
  }  

  screening-question-generator::part(contentContainer){
    display: flex;
    flex-direction: row;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(mainContent){
    background: #FFFFFF;
    border: 1px solid rgba(80, 105, 131, 0.3);
    box-sizing: border-box;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    font-family:var(--cFontFamily) !important;
    min-width: 91.4%;
    max-width: 91.4%;
    padding: 25px 20px;
  }

  screening-question-generator::part(title) {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(80, 105, 131, 0.3);
    color: #506983;    
    font-size: 18px;
    line-height: 27px;
    font-family:var(--cFontFamily) !important;
    width: 100%;
    min-width: 0;
    flex: 1;
    transition: 0.3s;
    resize: none;
    max-height: 5rem;
  }

  screening-question-generator::part(title)::placeholder {
    background: transparent;
    border: none !important;
    color: rgba(80, 105, 131, 0.5);
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(title):focus {
    border: none; 
    outline: none;
    border-bottom: 1px solid #1975D2;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(deleteButton) {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    height: 40px;
    width: 40px;
    padding-top: 4px;
    transition: 0.3s;
  }

  screening-questrion-generator::part(deleteButton):hover {
    background: rgba(193, 193, 193, 0.3) !important;
    border-radius: 50%;   
  }

  screening-questrion-generator::part(deleteButton):focus {
    background: rgba(193, 193, 193, 0.3) !important;
    border-radius: 50%;   
  }

  screening-question-generator::part(trash) {
    margin-left: 10px;
    padding: 25px 0px;
    outline: none;
  }

  screening-question-generator::part(displayOrder) {
    color: rgba(80, 105, 131, 0.5);
    font-family:var(--cFontFamily) !important;
    margin-right: 5px;
    font-size: 18px;
    line-height: 27px;
  }

  screening-question-generator::part(questionAndDisplayOrder) {
    display: flex;
    flex-direction: row;    
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(questionTypeAndValidation) {
    display: flex;
    flex-direction: row;
    padding: 10px 0px;
    font-family:var(--cFontFamily) !important;
    justify-content: space-between;
  }
 
  screening-question-generator::part(dropDown) {
    background: #FFFFFF;
    border: 1px solid rgba(80, 105, 131, 0.3);
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    padding: 8px 4px;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(dropDownValues) {
    background: #FFFFFF;    
    box-sizing: border-box;
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    padding: 8px 4px;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(questionChoices) {
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    font-family:var(--cFontFamily) !important;    
  }

  screening-question-generator::part(hide) {    
    display: none;    
  }

  screening-question-generator::part(choices) {
    display: flex;
    flex-direction: row;
    padding: 10px 0px;
    font-family:var(--cFontFamily) !important;    
  }

  screening-question-generator::part(choice) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family:var(--cFontFamily) !important;    
    align-content: center;
    margin-bottom: 4px;
  }

  screening-question-generator::part(alignCheckBox) {
    color: #506983;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-family:var(--cFontFamily) !important;    
  }  

  screening-question-generator::part(choiceTitle) {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(80, 105, 131, 0.3);
    color: #506983;    
    font-size: 18px;
    line-height: 27px;
    font-family:var(--cFontFamily) !important;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex: 1;
    transition: 0.3s;
    resize: none;
  }

  screening-question-generator::part(choiceTitle)::placeholder {
    background: transparent;
    border: none !important;
    color: rgba(80, 105, 131, 0.5);
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(choiceTitle):focus {
    border: none; 
    outline: none;
    border-bottom: 1px solid #1975D2;
    font-family:var(--cFontFamily) !important;
  }

  screening-question-generator::part(deleteChoice) {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;    
    height: 35px;
    width: 35px;
    transition: 0.3s;
  }

  screening-question-generator::part(deleteChoice):hover {
      background: rgba(193, 193, 193, 0.3) !important;
      border-radius: 50%;  
  }

  screening-question-generator::part(deleteChoice):focus {
    background: rgba(193, 193, 193, 0.3) !important;
    border-radius: 50%;  
  }

  screening-question-generator::part(actionButtons) {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-family:var(--cFontFamily) !important;   
    padding: 10px 0px; 
  }

  screening-question-generator::part(leftSideChoice) {
    display: flex;
    flex-direction: row;
    min-width: 0;
    justify-content: flex-start;
    flex: 1;
    max-width: 68%;
  }

  screening-question-generator::part(addOption) {
    background: rgba(0, 109, 210, 0.1);
    border-radius: 4px;
    color: #1975D2;
    display: flex;
    flex-direction: row;
    padding: 6px 10px;
    outline: none;
    border: 1px dotted #1975D2;
    font-family:var(--cFontFamily) !important;   
    font-weight: 600;
    align-content: center;
    font-size: 14px;
    line-height: 21px;
    cursor: pointer;
    transition: 0.3s;
  }

  screening-question-generator::part(addOption):hover {
    border: 1px solid #1975D2;
  }

  screening-question-generator::part(addOption):focus {
    border: 1px solid #1975D2;
  }

  screening-question-generator::part(maxLength) {
    margin-left: 20px;
  }

  screening-question-generator::part(maxLengthLabel) {
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    font-family:var(--cFontFamily) !important;
    margin-right: 5px;
  }

  screening-question-generator::part(maxLengthInput) {
    background: #FFFFFF;
    border: 1px solid rgba(80, 105, 131, 0.3);
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    padding: 8px 4px;
    font-family:var(--cFontFamily) !important;
    width: 50pt;
    transition: 0.3s;
  }

  screening-question-generator::part(leftSectionQuestionTypeAndValidation) {
    display: flex;
    flex-direction: row;
  }

  screening-question-generator::part(choiceDropDown) {
    background: #FFFFFF;
    border: 1px solid rgba(80, 105, 131, 0.3);
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    padding: 8px 4px;
    font-family:var(--cFontFamily) !important;
    margin-top: 2px;
  }
  
    screening-question-generator::part(choiceScore) {
    background: #FFFFFF;
    border: 1.13077px solid rgba(18, 18, 18, 0.2);
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    padding: 8px 8px;
    font-family:var(--cFontFamily) !important;
    margin-top: 2px;
    width:70px;
  }
  
  screening-question-generator::part(choiceScore)::placeholder {
	background: transparent;
    border: none !important;
    color: rgba(80, 105, 131, 0.5);
    font-family:var(--cFontFamily) !important;
    font-size:14px;
    font-style: italic;
    padding: 8px 4px;
}

  screening-question-generator::part(questionScoreLabel) {
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    font-family:var(--cFontFamily) !important;
    margin-right: 5px;
  }
  
   screening-question-generator::part(quesScoreWrappper) {
    margin-left: 1rem;
    display: flex;
    align-items: center;
  }


  /* Screening Question Section Generator End */

  /* Screening Question Section Viewer Start */

  screening-questions-viewer::part(question) {
    color: black;
    font-family:var(--cFontFamily) !important;
  }
  
  screening-questions-viewer::part(questionWrapper) {
    color: black;
    font-family:var(--cFontFamily) !important;
    display:flex;
    justify-content: space-between;
  }

  screening-questions-viewer::part(section) {
    color: #6D87A2;
    font-family: var(--cFontFamily) !important;
    border-left: 3px solid #6D87A2;
    padding-left: 10px;
    border-radius: 2px;
    font-weight: 700;
  }

  screening-questions-viewer::part(mandatory) {
    color: red;
    font-family:var(--cFontFamily) !important;
  }
  
  screening-questions-viewer::part(questionChoiceScore) {
  	display:flex;
  	justify-content: space-between;
  }
  
  screening-questions-viewer::part(choices) {
    color: black;
    font-weight: 500;
    font-family:var(--cFontFamily) !important;
    margin : 0;
    display:flex;
    flex-direction: column;
  }
	
  screening-questions-viewer::part(choiceValue) {
  	width:90%
  }
  /* Screening Question Section Viewer End */

  /* Drag and Drop */
  .c-DragAndDropIcon {
    width: 24px;
    height: 24px;
  }

  screening-answer-viewer::part(question) {
    color: black;
    font-weight: 600;
    font-family:var(--cFontFamily) !important;
  }

  screening-answer-viewer::part(answer) {
    color: black;
    font-weight: 500;
    font-family:var(--cFontFamily) !important;
  }
  screening-answer-viewer::part(highlightBG) {
  	padding: 0 3px;
    background-color: var(--cOrangeD) !important;
    display:flex;
  	justify-content: space-between;
  }

  screening-answer-viewer::part(section) {
    color: #506983;
    font-family: var(--cFontFamily) !important;
    border-left: 3px solid #506983;
    padding-left: 10px;
    border-radius: 2px;
    font-weight: 700;
  }
  
   screening-answer-viewer::part(answerChoiceScore) {
  	display:flex;
  	justify-content: space-between;
  }
  
  screening-answer-viewer::part(choiceValue) {
  	width:90%
  }

  screening-answer-viewer::part(screeningQuestionContainer){
    display: flex;
  }

  screening-answer-viewer::part(flagContainer) {
    margin-right: 1.5rem;
    margin-top: 1.3rem;
    cursor: pointer;
  }

  screening-answer-viewer::part(flagContainerDisabled) {
    margin-right: 1.5rem;
    margin-top: 1.3rem;   
  }

  screening-answer-viewer::part(flagActionButtons) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  screening-answer-viewer::part(confirmationMessage) {
    color: #ED4C5C;
  }

  screening-answer-viewer::part(flagSaveButton) {
    margin-right: 0.5rem;
    background: rgba(52, 143, 16, 0.15);
    border-radius: 2px;
    border: none;
    color: #348F10;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  screening-answer-viewer::part(flagCancelButton) {
    background: rgba(252, 128, 27, 0.1);
    border-radius: 2px;
    border: none;
    color: #FC801B;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
/* Screening Answer Generator start */
screening-answer-generator::part(contentContainer) {
  display: flex;
  flex-direction: row;
  font-family: var(--cFontFamily) !important;
}

screening-answer-generator::part(mainContainer) {
  display: flex;
  flex-direction: column;
  font-family: var(--cFontFamily) !important;
  padding-top: 15pt;
  width: 100%;
}

screening-answer-generator::part(questionAndDisplayOrder) {
  display: flex;
  flex-direction: row;
  width: 90%;
  font-family: var(--cFontFamily) !important;
}

screening-answer-generator::part(displayOrder) {
  margin-right: 5pt;
  font-size: 16px;
  color: #506983;
  font-family: var(--cFontFamily) !important;
}

screening-answer-generator::part(title) {
  background: transparent;
  color: #506983;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  font-family: var(--cFontFamily) !important;
  transition: 0.3s;
}

screening-answer-generator::part(answerChoices) {
    display: flex;
    flex-direction: column;
    padding: 2pt 0;
    font-family: var(--cFontFamily) !important;
    width: max-content;
    margin: 0 0 0 23pt;
}

screening-answer-generator::part(comp-comment) {
    width: max-content;
    margin: 2pt 0 0 23pt;
}

screening-answer-generator::part(comment) {
  color: #1975d2;
  cursor: pointer;
  font-family: var(--cFontFamily) !important;
  transition: 0.3s;
}

screening-answer-generator::part(sectionContainer) {
  background: rgba(25, 117, 210, 0.1);
  border-radius: 7px;
  border-left: 5px solid #1975d2;
  margin-top: 10pt;
  font-family: var(--cFontFamily) !important;
}

screening-answer-generator::part(sectionName) {
  font-size: 16px;
  line-height: 37px;
  color: #506983;
  padding-left: 20px;
  font-family: var(--cFontFamily) !important;
}

screening-answer-generator::part(drop-down) {
  padding: 0;
  padding-left: 3px;
  margin-top: 10px;
  border-radius: 4px 4px 0px 0px;
  border-color: rgba(25, 117, 210, 0.3);
  color: #006dd2;
  width: 150px;
  height: 30pt;
  font-family: var(--cFontFamily) !important;
  transition: 0.3s;
}

screening-answer-generator::part(dropDownValues) {
    background: #FFFFFF;    
    box-sizing: border-box;
    font-size: 14px;
    line-height: 21px;
    color: #506983;
    font-family:var(--cFontFamily) !important;
    transition: 0.3s;
}

screening-answer-generator::part(txtPara) {
  padding-right: 0;
  margin-top: 10px;
  width: 300pt;
  border-radius: 4px;
  /* box-sizing: border-box; */
  border: 1px solid rgba(25, 117, 210, 0.3);
  color: #006dd2;
  font-size: 16px;
  line-height: 27px;
  font-family: var(--cFontFamily) !important;
}

screening-answer-generator::part(txtPara)::placeholder {
	background: transparent;
    border: none !important;
    color: rgba(80, 105, 131, 0.5);
    font-family:var(--cFontFamily) !important;
    font-size:14px;
    font-style: italic;
}

screening-answer-generator::part(txtPara):focus {
 outline : none;
}


screening-answer-generator::part(txtDate) {
  padding: 2px;
  margin-top: 10px;
  width: 150px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid rgba(25, 117, 210, 0.3);
  color:#006dd2;
  height: 30pt;
}

screening-answer-generator::part(txtNum) {
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 16px;
    line-height:  25pt;
    color:#006dd2;
    padding: 2px;
    margin-top: 10px;
    font-family: var(--cFontFamily) !important;
    width: 300pt;
    transition: 0.3s;
    resize: none;
    border: 1px solid rgba(25, 117, 210, 0.3);
}

screening-answer-generator::part(txtNum)::placeholder {
	background: transparent;
    border: none !important;
    color: rgba(80, 105, 131, 0.5);
    font-family:var(--cFontFamily) !important;
    font-size:14px;
}

screening-answer-generator::part(txtNum):focus {
 outline : none;
}

screening-answer-generator::part(lblChkBox)  {
	display: flex;
	padding: 7px;
	color: #006dd2;
	width: auto;
	height: 30pt;
	border-radius: 4px;
	box-sizing: border-box;
	border: 1px solid rgba(25, 117, 210, 0.3);
	margin-top: 10px;
	min-width: 150px;
}

screening-answer-generator::part(mandatoryClass)  {
	color :#FF0000;
}

screening-answer-generator::part(comp-valid) {
	color: #a94442;
    padding: 2pt 0;
    font-family: var(--cFontFamily) !important;
    width: max-content;
    margin: 0 0 0 23pt;
}

screening-answer-generator::part(textFieldWrapper) {
	display:flex;
	flex-flow: column;
}

screening-answer-generator::part(textMaxLength) {
	margin-top: 5px;
	color: rgb(128,128,128);
    font-family:var(--cFontFamily) !important;
    font-size:1em;
    align-self: flex-end;
}
	
/* Screening Answer Generator end */

/* Pulse animation*/
@keyframes pulse {
  0%{
      transform: scale(1.1);
  }
  25% {
      transform: scale(1.2);
  }
  75% {
      transform: scale(1.1);
  }
  100%{
      transform: scale(0.9);
  }
  }
  .pulse {
  display: inline-block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  }
  .pulse i{
      color: var(--cBackgroundLight);
  }

  /* Pulse animation*/

  /* Pulse Shrink */
@keyframes pulse-shrink {
  to {
    transform: scale(0.8);
  }
}
.pulse-shrink {
  display: inline-block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.pulse-shrink:hover {
  animation-name: pulse-shrink;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
  /* Pulse Shrink */

  /*candidate status dropdown style start*/
.statusTxt {
  line-height: 11pt;
  margin-top: 5pt;
}

.ddStatusWrapper{
    display: flex;
    align-items: center;
    padding: 3px 5px;
    background: #FFFFFF;
    border: 1px solid rgba(29, 81, 131, 0.2);
    box-sizing: border-box;
    border-radius: 4px;
    justify-content: space-between;
    cursor: pointer;
}

.ddStatusTxt{
  line-height: 13pt;
}
.xx1x{
  display: flex;
  align-items: center;
}

.dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  border: 0.5px solid rgba(255,255,255,0.5);
}

.dropdown-menu{
  padding:0;
}

.dropdown-menu-custom {
  left: 0 !important;
  min-width: 19rem;
  padding: 0;
  margin: 0;
  border-radius: 5px;
}

.collapse-custom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cursor-not-allowed{
  cursor: not-allowed !important;
}

.fa-angle-down-custom{
  font-size: 14px;
}

.disabledCursorPointer{
  cursor: none;
  pointer-events: none;
}

.card-header-custom{
  font-weight: 600 !important;
  font-size: 14px;
  padding: 4px 10px !important;
}

.card-body-custom{
  padding:0;
}

.dropdown-menu-custom .dropdown-item:focus, 
.dropdown-menu-custom .dropdown-item:hover {
  background-color: var(--cNavyBlue);
  color:white;
}

.dropdown-item.active:focus, 
.dropdown-item.active:hover {
  background-color: #007bff;
}

.btn-pad {
  font-size: 14px;
  padding: 0rem 1rem;
}

.collapse-c {
  display: flex;
  flex-direction: column;
}

.card-header-custom .collapse-custom .accordianFilterArrow{
	color: #1975D2;
	font-weight: normal !important;
	border-radius: 50%;
  padding: 0pt;
  font-size: 8pt;
}

.fas.fa-chevron-down.accordianFilterArrow.fa-chevron-up{
  background-color: #1975D2;
  color:#FFFFFF;
  padding:2px;
}

.activated{
  background-color: var(--cNavyBlue) !important;
  color : #FFFFFF;
}
.hide {
  display: none !important;
}
.noVisibility{
  visibility: hidden;
}
/*candidate status dropdown style end*/

/* grid default style start*/
.gridStyleAlignCenter{
	display: flex !important;
  align-items: center;
}
/* grid default style end*/

/* CheckBox CSS Start*/
.checkBoxContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12pt !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}

/* Hide the browser's default checkbox */
.checkBoxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius:5px;
  border:1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.checkBoxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkBoxContainer input:checked ~ .checkmark {
  background-color: #FC801B;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkBoxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkBoxContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* CheckBox CSS End*/


/* Cbrex Status Color Code Start*/
:root {
	--Default : #DEE1E4;
	--New-Resume : #348F10;
	--Pre-Screening : #A3E1E4;
	--RS-Client-Recruiter : #006DD2;
	--RS-Channel-Recruiter : #C0D3EE;
	--No-Show : #F4C64F;
	--CNR : #FAEEB0;
	
	--Duplicate : #DFA81B;
	--RR-In-Pre-Screening: #DF791B;
	
	--RR-Client-Recruiter : #CB34AA;
	--RR-Channel-Recruiter : #EFC5CF;
	--R-In-Test : #E75A70;
	--R-In-Tech-Interview : #FAC8E3;
	--Offer-Accepted : #13CF75;
	--Offer-Rejected : #EB8888;
	--S-In-Final-Interview : #AA36E0;
	--S-Not-Offered : #E8CFF3;
	--Candidate-Not-Joining : #F49525;
	--Quit-After-Joining : #F2DCB1;
}
/* Cbrex Status Color Code End*/

/* Custom Validation CSS Start */
	
.srValidationAwaitingMessageB4Base, .srFlaggedMessageB4Base, .c-error-message-page {	
    border: 0px;
    position: relative;
    padding: .95rem 1.25rem;
    border-radius: 1px;
    color: inherit;
    background-color: #ffffff;
    -webkit-box-shadow: 1px 1px 14px 0px rgb(18 38 63 / 26%);
    -moz-box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26);
    box-shadow: 1px 1px 14px 0px rgb(18 38 63 / 26%);
    border-left: 4px solid #F25961 !important;
    margin-bottom: 2rem;
}

/* Custom Validation CSS End */

.btn-bulk-action{
	color: #fff;
    background-color: #006DD2;
    border-color: #006DD2;
    border-radius: 5px;
    margin-right: 3pt;
}

.btn-bulk-action:hover,
.btn-bulk-action:focus {
    color: #fff;
    background-color: #0260b8;
    border-color: #0260b8;
}

.fakeCandidateLabel{
	padding: 0 4px;
	background-color: #EF4343;
	color:#fff;
	border-radius: 3px;
	line-height: 15pt;
}