@charset "UTF-8";
:root {
  --primary-lightest: #095d9b;
  --primary-light: #0c5080;
  --primary: #0e3b5e;
  --primary-dark: #041c33;
  --primary-darkest: #010e1a;
  --success-light: #43e555;
  --success: #1acd2f;
  --success-dark: #0fa921;
}

/* General styles */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  height: 100vh;
}

.flexContainer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.justifyCenter {
  justify-content: center;
}

.spaceBetween {
  justify-content: space-between;
}

.col6 {
  width: 48.9%;
}

.col12 {
  width: 100% !important;
}

.ml1 {
  margin-left: 1rem;
}

/* Mobile version */
.formContainer {
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
}
.formContainer .formContainerSteps {
  width: 100%;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
}
.formContainer .formContainerSteps .globalLynxLogo {
  width: 200px;
  margin-bottom: 1rem;
}
.formContainer .formContainerSteps .timelineStep {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: start;
}
.formContainer .formContainerSteps .timelineStep .circleStep {
  display: none;
  min-width: 30px;
  width: 30px;
  height: 30px;
  background-color: #dfdfdf;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #b4b4b4;
  margin: 0.35rem 0;
}
.formContainer .formContainerSteps .timelineStep strong {
  display: none;
  margin-left: 0.5rem;
  color: #b4b4b4;
}
.formContainer .formContainerSteps .timelineStep.completedStep .circleStep {
  background-color: #243d5d;
  color: white;
}
.formContainer .formContainerSteps .timelineStep.completedStep strong {
  color: #000;
}
.formContainer .formContainerSteps .timelineStep.activeStepMark:not(.completedStep) .circleStep {
  display: flex;
  position: relative;
  display: inline-flex;
  color: #fff;
  background-color: #00b3f0;
  z-index: 1;
  justify-content: center;
  align-items: center;
}
.formContainer .formContainerSteps .timelineStep.activeStepMark:not(.completedStep) .circleStep::after {
  content: "";
  z-index: -1;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  border-radius: 50%;
  border: 1px solid #00b3f0;
  animation: pulse 1.2s infinite;
}
.formContainer .formContainerSteps .timelineStep.activeStepMark:not(.completedStep) strong {
  display: flex;
  color: var(--primary);
  padding-left: 0.5rem;
}
.formContainer .formContainerSteps .lineStep {
  display: none;
  border-left: 1px solid;
  color: #b4b4b4;
  margin-left: 14px;
  min-height: 15px;
}
.formContainer .formContainerSteps .privacyPolicyContainer {
  display: none;
  padding: 1rem 0;
}
.formContainer .formContainerSteps .privacyPolicyContainer .privacyPolicy {
  color: #b4b4b4;
}
.formContainer .formContainerContent {
  position: relative;
  padding: 0rem 2rem 2rem 2rem;
  width: 100%;
}

/* Website version */
@media (min-width: 768px) {
  .formContainer {
    min-width: 700px;
    width: 60%;
    max-width: 800px;
    flex-direction: row;
    /* Styles for sidebar with steps */
    /* Styles for form and inputs */
  }
  .formContainer .formContainerSteps {
    width: 35%;
    background-color: #fbfbfb;
  }
  .formContainer .formContainerSteps .timelineStep {
    display: flex;
  }
  .formContainer .formContainerSteps .timelineStep .circleStep {
    display: flex;
  }
  .formContainer .formContainerSteps .timelineStep strong {
    display: flex;
  }
  .formContainer .formContainerSteps .lineStep {
    display: block;
  }
  .formContainer .formContainerSteps .privacyPolicyContainer {
    display: flex;
  }
  .formContainer .formContainerContent {
    width: 65%;
    padding: 2rem;
  }
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 7410 0 0 rgba(0, 0, 0, 0);
  }
}
.step {
  display: none;
}
.step.activeStep {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Inputs styles */
label {
  font-size: 14px;
}

input,
select,
textarea {
  outline: none;
  border: 1px solid #b4b4b4;
  padding: 0.6rem 0.4rem;
  border-radius: 5px;
  width: 100%;
  margin: 0.25rem 0 0.5rem;
  background-color: #fcfcfc;
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  border: 1px solid #00b3f0;
}

.ratingGroup,
.ratingCpuGroup {
  width: 9.8%;
}

.ratingGroup label,
.ratingCpuGroup label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border: 1px solid #b4b4b4;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  margin: 0.5rem 0;
}

.ratingGroup label:hover,
.ratingGroup label.active,
.ratingCpuGroup label:hover,
.ratingCpuGroup label.active {
  background-color: #00b3f0;
  color: #fff;
}

.ratingGroup input,
.ratingCpuGroup input {
  display: none;
}

.courseSelection {
  display: none;
}

.courseSelection label,
.commitments label {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

.courseSelection label input,
.commitments label input {
  width: 15px;
  margin: 0 0.25rem 0 0;
}

.pdfResumeLabel {
  width: 100%;
  background-color: #00b3f0;
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  transition: 0.5s;
}

.pdfResumeLabel:hover {
  background-color: #243d5d;
}

/* Buttons styles */
.buttonContainer {
  margin-top: 10px;
  width: 100%;
  text-align: right;
}

.prevBtn,
.nextBtn {
  padding: 10px 20px;
  background-color: #00b3f0;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.5s;
}

.nextBtn:hover {
  background-color: #243d5d;
}

.prevBtn {
  background-color: #b4b4b4;
}

.prevBtn:hover {
  background-color: rgb(121, 121, 121);
}

/* Special styles */
.ohioCounties {
  display: none;
}

.workingQuestions {
  display: none;
}

.areaOfStudy {
  display: none;
}

.pdfResumeInput {
  display: none;
}

/* input error styles */
.inputError {
  max-height: 0;
  transition: 0.3s;
  overflow: hidden;
  color: transparent;
  line-height: 0;
}

form.touched {
  /* To manage checkbox and radio button */
}
form.touched input:invalid + .inputError,
form.touched textarea:invalid + .inputError,
form.touched select:invalid + .inputError {
  max-height: 100px;
  font-size: 12px;
  color: tomato;
  line-height: 1;
}
form.touched input:valid + .inputError,
form.touched textarea:valid + .inputError,
form.touched select:valid + .inputError {
  max-height: 0;
  font-size: 12px;
  color: transparent;
  line-height: 0;
}
form.touched input:invalid,
form.touched textarea:invalid,
form.touched select:invalid {
  border: 1px solid tomato;
}
form.touched input:valid,
form.touched textarea:valid,
form.touched select:valid {
  border: 1px solid var(--success-dark);
}
form.touched label.invalid {
  color: tomato;
}
form.touched label.invalid::before {
  content: "⚠  ";
  position: absolute;
  margin-left: -20px;
}
form.touched label.invalid + .inputError {
  max-height: 100px;
  font-size: 12px;
  color: tomato;
  line-height: 1;
}
form.touched label.valid + .inputError {
  max-height: 0;
  font-size: 12px;
  color: transparent;
  line-height: 0;
}

.summary {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.summary .fieldTemplate {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.summary .fieldTemplate label {
  font-size: 14px;
  font-weight: 600;
}
.summary .fieldTemplate span {
  font-weight: 400;
}

.scrollbar-primary::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.scrollbar-primary::-webkit-scrollbar-track {
  border-radius: 100px;
  background: var(--gray-lightest);
}
.scrollbar-primary::-webkit-scrollbar-thumb {
  border-radius: 100px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: var(--primary-dark);
  border: 1px solid var(--blue-lightest);
}

.max-h-\[550px\] {
  max-height: 550px;
}

.overflow-y-auto {
  overflow-y: auto;
}

.loader:not(.show) {
  display: none;
}

.loader.show {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader.show .loader__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  gap: 0.25rem;
}
.loader.show .loader__container .loader__container__item {
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 20px;
  max-height: 20px;
  min-height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: loader 1.2s infinite ease-in-out;
}
.loader.show .loader__container .loader__container__item:nth-child(1) {
  animation-delay: 0s;
}
.loader.show .loader__container .loader__container__item:nth-child(2) {
  animation-delay: 0.1s;
}
.loader.show .loader__container .loader__container__item:nth-child(3) {
  animation-delay: 0.2s;
}
.loader.show .loader__container .loader__container__item:nth-child(4) {
  animation-delay: 0.3s;
}
.loader.show .loader__container .loader__container__item:nth-child(5) {
  animation-delay: 0.4s;
}
.loader.show .loader__container .loader__container__item:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes loader {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.card {
  width: 700px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem;
}
.card .head {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card .head .globalLynxLogo {
  width: 320px;
  margin-bottom: 1rem;
}
.card .body {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: #707070;
  padding: 0 2rem;
}
.card .body p {
  text-align: center;
  font-weight: 400;
  line-height: 1.25;
  margin: 0.75rem;
}
.card .body p span {
  font-weight: 600;
  color: var(--primary);
}/*# sourceMappingURL=main.css.map */