:root {
  --primary-color : #274699;
	--secondary-color : #f25c05;
  --light-primary-color: #e3f0fc;
	--button-primary-color : #274699;
  --light-secondary-color:#fff2dc;
}

.p-clr {
  color: var(--primary-color);
}

.br-p-clr {
  border-color: var(--primary-color);
}

.bg-s-clr {
  background: var(--secondary-color);
}

.s-clr {
  color: var(--secondary-color);
}

.question-box {
  padding: 10px 20px;
}

.rating input[type="radio"] {
  display: none;
}

.section p ,h3 {
  color: black;
}

.rating label {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 5px 20px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border: 1px solid black;

}
.custom-ml-3{
  margin-left: 1rem !important;
}
.rating input[type="radio"]:checked+label {
  background-color: #20c1bf;
  color: #fff;
  border: none;
}

.rating {
  display: flex;
  gap: 30px;
}

.score-label {
  font-size: 18px;
}

.question-label {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.log-button {
  float: right;
}

.error-creds {
  color: red;
  padding-bottom: 15px;
  display: none;
}

.email-error {
  color: red;
  display: none;
}

.pass-check {
  color: red;
  display: none;
}

.brand-text {
  display: flex;
  align-items: center;
}

.prev-btn{
  color: #fff !important;
  background: #59bec6;
  margin-right: 10px;
  cursor: pointer;
}

.next-btn{
  background-color: var(--secondary-color);
  color: #fff !important;
  cursor: pointer;
}

.next-btn:hover {
  background-color: #ec7e48 !important;
  color: #fff !important;
}

.prev-btn:hover {
  background-color: #70cfd5 !important;
  color: #fff !important;
}

.q-img {
  float: left;
  height: 100vh;
}

.card-title-table {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  /* background-color:var(--light-primary-color); */
  background-color: #f1f1f4;;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
}

.header-btn {
  margin-right: 30px;
}

.table-cls {
  padding: 30px;
}

.btn-light {
  color: var(--light-primary-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4);
}

.card-header {
  color: var(--primary-color);
}

/* Data Tables */

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #697a8d !important;
}

.table.dataTable.no-footer {
  border-bottom: none;
}

table.dataTable thead th, table.dataTable thead td {
  padding: 10px 10px !important;
}

.dataTables_length {
  margin-bottom: 2rem !important;
}

/* End Datatables Css */

.card-badge {
  padding-bottom: 10px;
  text-align: end;
}

.num-txt {
  font-size: 40px;
}

.pointer {
  cursor: pointer;
}

.container-center {
  display: flex;
  justify-content: center;
}

.interview-header {
  background-color: var(--primary-color);
  border-radius: 5px;
}

.screeing-bar {
  background-color: var(--primary-color);
  padding: 0.5rem 0.5rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

/* Search & Select CSS */
.select2-selection {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 38px;
}

.select2-selection__rendered {
  line-height: 36px;
  color: #495057;
}

.select2-selection__placeholder {
  color: #6c757d;
}

.select2-selection__arrow {
  display: none;
}

.select2-results__option {
  padding: 8px 12px;
  color: #212529;
}

.select2-results__option--highlighted {
  background-color: #007bff;
  color: #ffffff;
}

.select2-selection {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 50px;
}

.select2-selection__rendered {
  line-height: 37px !important;
}

.select2-selection--single {
  height: 40px !important;
  border: 1px solid #ced4da !important;
}

.select2-dropdown {
  border: 1px solid #ced4da !important;
}

.float-right{
  float: right !important;
}

.float-left{
  float: left !important;
}


/* ========================================================================
    Component: notify from uikit
 ========================================================================== */
.uk-notify {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 1040;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 350px;
}


.uk-notify-top-right,
.uk-notify-bottom-right {
  left: auto;
  right: 50px;
}

.uk-notify-top-center,
.uk-notify-bottom-center {
  left: 50%;
  margin-left: -175px;
}

.uk-notify-bottom-left,
.uk-notify-bottom-right,
.uk-notify-bottom-center {
  top: auto;
  bottom: 50px;
}

.uk-notify-center-right {
  top: 50%;
  left: 75%;
}

@media (max-width: 575.98px) {
  .uk-notify {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}

.uk-notify-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 16px;
  line-height: 22px;
  border-radius: 0.2rem;
  padding-right: 35px;
  cursor: pointer;
}

.uk-notify-message.alert.alert-normal {
  background: #73d973;
  color: #fff;
}

.uk-notify-message>.close {
  visibility: visible;
}

.uk-notify-message:hover>.close {
  visibility: visible;
}

.uk-notify-message .close {
  position: absolute;
  left: 80%;
}

.uk-notify-message:hover .close {
  position: absolute;
  left: 80%;
}


.credits-container{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.credits-display-div{
  /* position: absolute;  */
  /* right: 1.75vw; */
  background: #fff;
  border: .3px solid #dedede; 
  /* border: unset !important; */
  border-radius: 5px;
  z-index: 1001;
  cursor: default !important;
  /* float:right; */
}


.blinking-text {
  animation: blink-scale 2s infinite;
  transition: opacity 0.3s ease;
}

@keyframes blink-scale {
  0%, 100% {
    opacity: 1;
}
20% {
    opacity: 0;
}
}



/* Company Logos */

.drop-zone {
  border: 1px solid #dde6e9;
  padding: 24px;
  margin: 16px;
  width: 220px;
  height: 200px;
  text-align: center;
  position: relative;
  border-radius: 8px;
}

.drop-zone img {
  max-width: 85%;
  max-height: calc(100% - 30px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}


.swal2-container{
  z-index: 1100;
}

.aside-footer {
  /* background-color: var(--light-primary-color); */
  background-color: #f1f1f4;
  border-radius: 0.375rem;
  margin: 0rem 1rem;
  margin-bottom: 1rem;
}

.footer-container {
  padding: 10px;
}

.user-name {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
}

.filter-sec {
  /* background-color: var(--light-secondary-color); */
  border-bottom: 1px dashed var(--primary-color);
  padding: 1rem 1.5rem;
}


.candidates-loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

.candidates-loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.candidates-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid rgb(39 70 153 / 31%);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: candidate-loader-spin 1s linear infinite;
}

.candidates-loader svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--primary-color);
}

@keyframes candidate-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}


.jd_create_question_div {
  display: flex;
  justify-content: right;
}


#createQuestionModal .modal-dialog {
  max-width: 40%; 
}

.form-header {
  background: var(--light-primary-color);
  color: var(--primary-color);
}


.breadcrumb-item + .breadcrumb-item::before {
  content: none !important;
}

.br-0 {
  border-radius: 0;
}


/* For Chrome, Edge, Brave */
::-webkit-scrollbar {
  width: 6px;
  /* scrollbar width */
  height: 6px;
  /* horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}


.index-menu-settings {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 21px;
  margin-right: 10px;
  cursor: pointer;
}