@font-face {
  font-family: "Foco Trial";
  font-style: normal;
  font-weight: 400;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_Rg.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: italic;
  font-weight: 400;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_It.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: normal;
  font-weight: 300;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_Lt.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: italic;
  font-weight: 300;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_LtIt.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: normal;
  font-weight: 700;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_Bd.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: italic;
  font-weight: 700;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_BdIt.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: normal;
  font-weight: 900;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_Blk.woff") format("woff");
}
@font-face {
  font-family: "Foco Trial";
  font-style: italic;
  font-weight: 900;
  src: local("Foco Trial"), url("../fonts/Foco_Trial/Foco_Trial_BlkIt.woff") format("woff");
}

* {
  font-family: "Foco Trial", sans-serif !important;
}
select,
.multiselect,
.country-select {
  padding: 8px;
  cursor: pointer;
  background-color: white;
  font-size: 1.6rem !important;
}
.country-select {
  outline: none;
  border: none;
  border-right: 1px solid rgba(208, 213, 221, 1);
  font-size: 1.6rem !important;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.country-select-dropdown {
  position: fixed;
  left: 0;
  bottom: -20px;
  width: 100%;
  z-index: 99;
  background-color: white;
  border: 1px solid rgba(208, 213, 221, 1);
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: fit-content;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.country-select-dropdown > div {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  padding-top: 0;
}
.country-select-dropdown > div:not(:last-of-type) {
  border-bottom: 1px solid rgba(208, 213, 221, 1);
}
.country-select-dropdown > div:last-of-type {
  padding-bottom: 0;
}
.country-select-dropdown img {
  border-radius: 2px;
  width: 20px;
}
.country-select img {
  border-radius: 2px;
  width: 20px;
}
input[type="tel"] {
  padding-left: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}

.checkboxDiv {
  display: flex;
  flex-direction: row !important;
  align-items: baseline;
  gap: 8px;
  font-size: 1.5rem;
  margin-top: 8px;
  margin-left: 4px;
}

.checkboxDiv input {
  transform: translateY(2px) scale(1);
  cursor: pointer;
}
input[readonly] {
  background-color: transparent;
  color: rgba(102, 112, 133, 1);
}
.phone-input {
  width: 100%;
  border: 1px solid rgba(208, 213, 221, 1);
  border-radius: var(--border-radius);
  font-size: 1.4rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 75px calc(100% - 65px);
}

.filePick {
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  align-items: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.4rem;
  color: rgba(105, 65, 198, 1);
  border: 1px solid rgba(234, 236, 240, 1);
  background-color: white;
}
.policy {
  color: #2b71ff;
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}
dialog[open] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
  border: none;
  border-radius: 5px;
}
.policyDialog {
  max-width: 320px;
  /* height: fit-content !important; */
  height: calc(100% - 50px) !important;
  border-radius: 12px;
  border: 1px solid rgba(234, 236, 240, 1);
}
.policyDialogContent {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
}
.policyHeader button {
  border: none;
  outline: none;
}
.policyHeader {
  display: flex;
  align-items: center;
  padding: 2rem;
  justify-content: space-between;
  position: relative;
}
.policyHeader::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(234, 236, 240, 1);
}
.policyContent {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.policyContent::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(234, 236, 240, 1);
}
.policyContent p {
  font-size: 1.4rem;
  color: rgba(52, 64, 84, 1);
}
.policyContent ul,
.policyContent ol {
  padding: 0 16px;
}
.policyContent li {
  font-size: 1.4rem;
  color: rgba(52, 64, 84, 1);
}
.policyBtns {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 8px;
}
.cancelBtn {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(52, 64, 84, 1);
  border: 1px solid rgba(208, 213, 221, 1);
}

.loader-circle,
.loader-circle-sm {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid rgba(225, 94, 46, 0.2);
  border-right-color: #2b71ff;
  animation: l2 1s infinite linear;
}

.loader-circle-sm {
  width: 18px !important;
  border-width: 3.5px !important;
}

@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}

.loaderModal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: white;
}
.calendly-modal[open] {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  border: none;
  outline: none;
  background-color: white;
  position: relative;
}
.aTag {
  cursor: pointer;
}
.close-btn {
  position: absolute;
  right: 15px;
  top: 20px;
}
.profile-img-div img {
  border-radius: 50px;
}

.gua-faq .questions h5 {
  padding-left: 10px;
}
.questions ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 10px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 13px;
  color: #333;
}
.questions ul li {
  margin-bottom: 10px;
}
#pre-screening-content button {
  user-select: none;
}
#pre-screening-content,
#pre-screening-content > *,
#pre-screening-content .place-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20%;
}
#pre-screening-content .place-center {
  height: auto !important;
  justify-content: center !important;
  gap: 0 !important;
}
.screening-heading {
  font-size: 2rem;
  max-width: 500px;
  text-align: center;
  color: #344054;
}
.screening-para {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  max-width: 550px;
  text-align: center;
  line-height: 24px;
  color: #344054;
}
.screening-btn {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #2b71ff;
  padding: 1.3rem 2.5rem;
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
.screening-questions {
  width: 100%;
  max-width: 300px;
}
.third-questions {
  width: 100%;
  max-width: 400px;
}
.third-questions textarea {
  border-radius: 5px !important;
  width: 100%;
  height: 250px;
  resize: none;
}
.screening-parent textarea {
  font-size: 1.6rem !important;
}
.screening-question-btn {
  outline: 1px solid #dee2e6;
  color: #344054;
  border-radius: 19.31px;
  padding: 1.2rem 2rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.active-btn {
  outline: 1px solid #2b71ff !important;
  background-color: #2b71ff !important;
  color: white !important;
}
.second-screening,
.third-screening,
.forth-screening,
.fifth-screening,
.sixth-screening,
.seventh-screening,
.eight-screening,
.ninth-screening,
.tenth-screening,
.eleventh-screening,
.twelveth-screening,
.thirteenth-screening,
.fourteenth-screening {
  gap: 8% !important;
  justify-content: center !important;
}
.back-next-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  max-width: 300px;
}
.back-next-btn button {
  font-size: 1.5rem !important;
}
.back-btn {
  background-color: #e7f0fa !important;
  color: #2b71ff !important;
  border: 2px solid #e7f0fa;
}
.none {
  display: none !important;
}

.typingSpeed-container {
  margin-top: 65px;
  padding: 20px 35px;
}
.typingSpeed-sample-text {
  background: white;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
  color: #98a2b3;
}
.typingSpeed-typing-area {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
  padding: 10px;
}
.typingSpeed-stats {
  margin-top: 10px;
}
.typingSpeed-highlight {
  color: #306cfe;
}
.typingSpeed-error {
  color: red;
}
.typingSpeed-stats *,
.time-div * {
  font-size: 14px;
  color: #344054;
}
.time-div {
  position: absolute;
  top: 20px;
  left: 35px;
}
.time-div * {
  font-size: 16px;
  font-weight: 500;
}
.time-div .time-p * {
  color: #0e54ff;
  font-weight: 600;
}
.time-p {
  margin-left: 2px;
  display: flex;
  align-items: center;
}

.typingSpeed-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 35px;
}
.typingSpeed-stats textarea {
  background-color: #F4F7FF;
  color: #344054;
  height: 150px;
}
.time-p span {
  transform: translateY(0.5px);
}
.time-p svg {
  margin-right: 2px;
}
/* Exit Feedback Modal Styles */
.interview-exit-modal {
  max-width: 480px;
  width: 90%;
  padding: 0;
}

.exit-feedback-container {
  padding: 3rem;
  background: #ffffff;
  position: relative;
}

.exit-feedback-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(234, 236, 240, 1);
}

.exit-feedback-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(16, 24, 40, 1);
  margin: 0 0 0.8rem 0;
}

.exit-feedback-header p {
  font-size: 1.5rem;
  color: rgba(102, 112, 133, 1);
  margin: 0;
  line-height: 1.5;
}

.exit-feedback-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
  height: 57vh;
  overflow-y: auto;
}

.feedback-option {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feedback-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.feedback-option-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem;
  border: 2px solid rgba(234, 236, 240, 1);
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feedback-option-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 113, 255, 0.05) 0%, rgba(43, 113, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feedback-option-content svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: rgba(102, 112, 133, 1);
  transition: color 0.2s ease;
  z-index: 1;
  position: relative;
}

.feedback-option-content span {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(52, 64, 84, 1);
  z-index: 1;
  position: relative;
}

.feedback-option:hover .feedback-option-content {
  border-color: rgba(43, 113, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feedback-option input[type="radio"]:checked + .feedback-option-content {
  border-color: #2b71ff;
  background: #ffffff;
}

.feedback-option input[type="radio"]:checked + .feedback-option-content::before {
  opacity: 1;
}

.feedback-option input[type="radio"]:checked + .feedback-option-content svg {
  color: #2b71ff;
}

.feedback-option input[type="radio"]:checked + .feedback-option-content span {
  color: #2b71ff;
  font-weight: 600;
}

.custom-feedback-container {
  margin-bottom: 2rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-feedback-input {
  width: 100%;
  padding: 1.4rem;
  border: 2px solid rgba(234, 236, 240, 1);
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  resize: vertical;
  min-height: 100px;
  max-height: 200px;
  transition: border-color 0.2s ease;
  background: rgba(249, 250, 251, 1);
}

.custom-feedback-input:focus {
  outline: none;
  border-color: #2b71ff;
  background: #ffffff;
}

.custom-feedback-input::placeholder {
  color: rgba(156, 163, 175, 1);
}

.exit-feedback-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
  padding-top: 2rem;
  border-top: 1px solid rgba(234, 236, 240, 1);
}

.exit-feedback-actions .btns {
  min-width: 120px;
  padding: 1.2rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.exit-feedback-actions .secondary {
  background: #ffffff;
  color: rgba(52, 64, 84, 1);
  border: 1px solid rgba(208, 213, 221, 1);
}

.exit-feedback-actions .secondary:hover {
  background: rgba(249, 250, 251, 1);
  border-color: rgba(156, 163, 175, 1);
}

.exit-feedback-actions .big {
  background: #2b71ff;
  color: #ffffff;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.exit-feedback-actions .big:hover {
  /* background: rgba(205, 74, 26, 1); */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(225, 94, 46, 0.25);
}

/* Mobile responsiveness for exit modal */
@media (max-width: 768px) {
  .interview-exit-modal {
    max-width: 95%;
  }
  
  .exit-feedback-container {
    padding: 2rem;
  }
  
  .exit-feedback-header h2 {
    font-size: 2rem;
  }
  
  .exit-feedback-header p {
    font-size: 1.4rem;
  }
  
  .feedback-option-content {
    padding: 1.4rem;
  }
  
  .feedback-option-content span {
    font-size: 1.4rem;
  }
  
  .exit-feedback-actions {
    flex-direction: column-reverse;
  }
  
  .exit-feedback-actions .btns {
    width: 100%;
  }
}

/* Interview Modal Close Button */
.interview-modal {
  position: relative;
}

.interview-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.interview-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.interview-close-btn svg {
  width: 2rem;
  height: 2rem;
}

