@charset "UTF-8";
.nurturelead-section {
  display: flex;
  justify-content: center;
  padding: 4rem 10%;
  background-color: #D6E4FF;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
.nurturelead-section .form-container {
  background-color: #FFF;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  padding: 3rem;
  max-width: 800px;
  width: 100%;
}
.nurturelead-section .form-container h2 {
  margin-top: 0;
  color: #0047AB;
  font-size: 2rem;
  text-align: center;
}
.nurturelead-section .form-container .callout-body-text {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.nurturelead-section .form-container .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 576px) {
  .nurturelead-section .form-container .form-grid {
    grid-template-columns: 1fr;
  }
}
.nurturelead-section .form-container .form-group {
  display: flex;
  flex-direction: column;
}
.nurturelead-section .form-container .form-group label {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.nurturelead-section .form-container .form-group input[type=text],
.nurturelead-section .form-container .form-group input[type=email],
.nurturelead-section .form-container .form-group input[type=tel],
.nurturelead-section .form-container .form-group select {
  padding: 0.8rem;
  border: 3px solid #000;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
  box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0);
}
.nurturelead-section .form-container .form-group input[type=text]:focus,
.nurturelead-section .form-container .form-group input[type=email]:focus,
.nurturelead-section .form-container .form-group input[type=tel]:focus,
.nurturelead-section .form-container .form-group select:focus {
  outline: none;
  box-shadow: 4px 4px 0px 0px #0047AB;
  border-color: #0047AB;
}
.nurturelead-section .form-container .full-width {
  grid-column: 1/-1;
}
.nurturelead-section .form-container .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background-color: #f0f5ff;
  padding: 1rem;
  border: 3px solid #000;
}
.nurturelead-section .form-container .checkbox-group input[type=checkbox] {
  width: 24px;
  height: 24px;
  appearance: none;
  border: 2px solid #000;
  background-color: #FFF;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nurturelead-section .form-container .checkbox-group input[type=checkbox]:checked {
  background-color: #0047AB;
  border-color: #0047AB;
}
.nurturelead-section .form-container .checkbox-group input[type=checkbox]:checked::after {
  content: "✓";
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
}
.nurturelead-section .form-container .checkbox-group label {
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}
.nurturelead-section .form-container .btn-primary {
  width: 100%;
  font-size: 1.2rem;
  padding: 1.2rem;
  background-color: #0047AB;
  color: #FFF;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.1s ease;
}
.nurturelead-section .form-container .btn-primary:hover {
  background-color: #005cde;
}
.nurturelead-section .form-container .btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px #000;
}
.nurturelead-section .form-container .recaptcha-terms {
  display: block;
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-weight: normal;
}
.nurturelead-section .form-container .recaptcha-terms a {
  color: #0047AB;
  text-decoration: underline;
}

main h1 {
  margin: 0;
}
main h2 {
  margin: 2rem 0;
}
main h3 {
  margin: 2rem 0;
}
main h4 {
  margin: 1rem 0;
}

button {
  margin: 0 0.5rem;
  padding: 0.5rem;
}

#osslt-main {
  grid-column: 2;
}
@media (max-width: 768px) {
  #osslt-main {
    padding: 1rem;
  }
}
@media (max-width: 992px) {
  #osslt-main {
    padding: 2rem;
  }
}
#osslt-main h2 {
  margin: 2rem 0 0;
}
#osslt-main img {
  max-width: 50%;
  margin: 0 auto;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}

#osslt-test-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  #osslt-test-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

#osslt-sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 2rem;
}
#osslt-sidebar .sidebar-section {
  margin-bottom: 2rem;
}
#osslt-sidebar .sidebar-section-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
#osslt-sidebar .sidebar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
#osslt-sidebar .sidebar-dot {
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  background-color: #FFF;
  transition: background-color 0.2s;
}
#osslt-sidebar .sidebar-dot.answered {
  background-color: #28a745;
}
#osslt-sidebar .sidebar-dot.active {
  background-color: #0047AB;
  color: #FFF;
  border-color: #000;
}

#osslt-question-area {
  flex: 1;
  min-width: 0;
}

#osslt-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #000;
}

.osslt-full-p {
  flex-basis: 100%;
}

#osslt-test-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  margin-bottom: 2rem;
}
#osslt-test-links p {
  margin: 0;
  padding: 1.3rem 0;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #osslt-test-links p {
    flex-basis: 50%;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  #osslt-test-links p {
    line-height: 1.2rem;
    flex-basis: 33%;
  }
}

.osslt-test-links-subtitle {
  font-size: 1rem;
}

#osslt-explanation-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #osslt-explanation-box {
    flex-direction: column;
  }
}
#osslt-explanation-box .question-type-30 {
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  #osslt-explanation-box .question-type-30 {
    flex-basis: 30%;
  }
}
#osslt-explanation-box .question-type-50 {
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  #osslt-explanation-box .question-type-50 {
    flex-basis: 47%;
  }
}

.osslt-strategy-video {
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 0;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}

.correct {
  border: 3px solid #28a745;
  background-color: #afecbd;
}

.incorrect {
  border: 3px solid #dc3545;
  background-color: #fae3e5;
}

#questions ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.question-number {
  margin-right: 0.5rem;
}

.question {
  margin: 1rem 0;
  padding: 3rem;
  border: 3px solid #000;
  background-color: #FFF;
  box-shadow: 4px 4px 0px 0px #000;
}

.question.correct {
  border: 3px solid #28a745;
  background-color: #afecbd;
}

.question.incorrect {
  border: 3px solid #dc3545;
  background-color: #fae3e5;
}

.question-content {
  display: flex;
  flex-direction: column;
}

.question-text {
  flex-basis: 100%;
  font-weight: 700;
}

.mc-answers {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.grammar-list {
  margin: 1rem 0;
  line-height: 1.5rem;
}
.grammar-list ul {
  list-style: none;
}

.identification-text {
  line-height: 1.5rem;
}

.question-description {
  margin: 1rem 0;
  line-height: 1.5rem;
}

.osslt-response-short {
  width: 100%;
  margin: 2rem 0 0;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  padding: 1rem;
  font-family: "Inter", sans-serif;
}
@media screen and (orientation: landscape) {
  .osslt-response-short {
    height: 50vh;
  }
}
@media screen and (orientation: landscape) and (min-width: 576px) {
  .osslt-response-short {
    height: 20vh;
  }
}
@media screen and (orientation: portrait) {
  .osslt-response-short {
    height: 60vh;
  }
}
@media screen and (orientation: portrait) and (max-width: 576px) {
  .osslt-response-short {
    height: 15vh;
  }
}
.osslt-response-short:focus {
  outline: none;
  background-color: white;
}

.osslt-response-long {
  width: 100%;
  margin: 2rem 0 0;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  padding: 1rem;
  font-family: "Inter", sans-serif;
}
@media screen and (orientation: landscape) {
  .osslt-response-long {
    height: 80vh;
  }
}
@media screen and (orientation: portrait) {
  .osslt-response-long {
    height: 50vh;
  }
}
.osslt-response-long:focus {
  outline: none;
  background-color: white;
}

.wc-bar {
  display: flex;
  height: 3rem;
  margin: 1rem 0;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
}

.wc-number {
  flex-basis: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FFF;
  border-right: 3px solid #000;
  font-weight: 700;
}

.wc-scale {
  flex-basis: 80%;
  display: flex;
  align-items: center;
  position: relative;
  background: #FFF;
  text-align: center;
  overflow: hidden;
}

.wc-markers {
  flex-basis: 100%;
  display: flex;
  align-items: center;
}

.short-scale {
  flex-basis: 33.333%;
  border-right: 1px solid #000;
}

.long-scale {
  flex-basis: 16.666%;
  border-right: 1px solid #000;
}

.wc-arrow {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #000;
}

.osslt-mc-answer {
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  margin: 0.5rem 0;
  border: 2px solid transparent;
  cursor: pointer;
}
.osslt-mc-answer label {
  margin-left: 25px;
  cursor: pointer;
  font-weight: 700;
}

.button-box {
  padding: 2rem 0;
}

#score-modal, #ai-disclaimer-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

#score-panel, #ai-disclaimer-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 2rem;
  width: 80%;
  max-height: 90vh;
  border: 3px solid #000;
  background-color: #FFF;
  box-shadow: 8px 8px 0 0 #000;
  overflow: auto;
}
#score-panel span, #ai-disclaimer-panel span {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.5rem;
}
#score-panel h3, #score-panel h4, #ai-disclaimer-panel h3, #ai-disclaimer-panel h4 {
  text-align: center;
}
#score-panel p, #ai-disclaimer-panel p {
  text-align: center;
}
#score-panel .modal-close, #ai-disclaimer-panel .modal-close {
  align-self: flex-end;
  border: 2px solid #000;
  padding: 0.2rem 0.5rem;
  background: transparent;
  color: #000;
  box-shadow: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
}
#score-panel .modal-close:hover, #score-panel .modal-close:focus, #ai-disclaimer-panel .modal-close:hover, #ai-disclaimer-panel .modal-close:focus {
  background-color: #0047AB;
  color: #FFF;
}
#score-panel button, #ai-disclaimer-panel button {
  margin-top: 1rem;
  padding: 1rem;
}

.mc-results {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#gptlt-main-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}
@media (max-width: 768px) {
  #gptlt-main-menu {
    flex-direction: column;
    padding: 0;
  }
}
#gptlt-main-menu a, #gptlt-main-menu a:visited, #gptlt-main-menu a:hover {
  color: #000;
  text-decoration: none;
}

.gptlt-menu-title {
  width: 100%;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
}

.gptlt-page-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #000;
  background-color: #FFF;
  color: #000;
  flex-basis: 30%;
  padding: 2rem;
  list-style: none;
  box-shadow: 4px 4px 0px 0px #000;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.1s ease;
}
.gptlt-page-item:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 #000;
  background-color: #D6E4FF;
}
@media (max-width: 768px) {
  .gptlt-page-item {
    margin: 1rem 0;
  }
}

#score-modal h2, #score-modal h3, #score-modal h4,
#ai-disclaimer-modal h2, #ai-disclaimer-modal h3, #ai-disclaimer-modal h4 {
  text-align: center;
}

.osslt-mc-answer.correct-answer {
  background-color: #afecbd;
}

.osslt-mc-answer.incorrect-answer {
  background-color: #fae3e5;
}

.osslt-dropdown-container {
  margin: 1rem 0;
}

.osslt-dropdown {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  cursor: pointer;
  background-color: #FFF;
  appearance: none;
}
.osslt-dropdown:focus {
  outline: none;
  background-color: white;
}
.osslt-dropdown.correct-answer {
  background-color: #afecbd;
  border-color: #28a745;
}
.osslt-dropdown.incorrect-answer {
  background-color: #fae3e5;
  border-color: #dc3545;
}

.osslt-matching-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 992px) {
  .osslt-matching-container {
    flex-direction: row;
  }
}

.matching-dropzones, .matching-draggables {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.matching-draggables {
  min-height: 100px;
  padding: 1rem;
  border: 2px dashed #000;
  background-color: white;
}

.matching-row {
  display: flex;
  align-items: stretch;
  border: 3px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  background-color: #FFF;
}

.matching-term {
  flex: 1;
  padding: 1rem;
  font-weight: bold;
  border-right: 3px solid #000;
  display: flex;
  align-items: center;
}

.matching-dropzone {
  flex: 1;
  min-width: 150px;
  padding: 0.5rem;
  background-color: white;
  transition: background-color 0.2s;
}
.matching-dropzone.drag-over {
  background-color: #D6E4FF;
}
.matching-dropzone.correct-answer {
  background-color: #afecbd;
}
.matching-dropzone.incorrect-answer {
  background-color: #fae3e5;
}

.matching-draggable {
  padding: 1rem;
  border: 3px solid #000;
  background-color: #FFF;
  cursor: grab;
  font-weight: bold;
  box-shadow: 2px 2px 0 0 #000;
}
.matching-draggable:active {
  cursor: grabbing;
}
.matching-draggable.dragging {
  opacity: 0.5;
}

.centered-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  grid-column: 1/span 2;
  /* Break out of default grid */
}

.card-link {
  text-decoration: none !important;
  color: inherit;
  flex: 0 1 350px;
}
.card-link:hover, .card-link:focus-visible {
  text-decoration: none !important;
  outline: none;
}
.card-link:focus-visible .module-card, .card-link:hover .module-card {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px #000 !important;
}

.module-card {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 3px solid #000;
  padding: 1.5rem;
  box-shadow: 8px 8px 0px 0px #000;
  height: 100%;
  background: #FFF;
}
.module-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  margin-top: 0;
}
.module-card p {
  font-weight: 400;
}
