html {
  font-size: 16px; /* 1rem = 16px */
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

td {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

li {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0474BA;
  padding-top: 10px;
}
h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FF8C00;
}
h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #0474BA;
}
h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0474BA;
}
h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
}

.message {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

a.enroll {
  display: inline-block;
  background-color: #28a745; /* green */
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

a.enroll:hover {
  background-color: #218838; /* darker green */
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.public-nav {

    display: flex;

    flex-wrap: wrap;

    gap: 2px;

    background-color: #F2F2F0;
}

.public-nav a {

    flex: 1 1 180px;

    font-family: "Open Sans", sans-serif;

    font-size: 14px;

    font-weight: 600;

    background-color: #0474BA;

    color: #FFFFFF;

    border: 1px solid #DDDDDD;

    text-align: center;

    text-decoration: none;

    padding: 8px 10px;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: background-color .2s ease;
}

.public-nav a:hover {

    background-color: #035F98;

    color: NavajoWhite;

    text-decoration: none;
}

.public-nav a.public-highlight {

    background-color: #FF8C00;

    font-weight: 700;
}

.public-nav a.public-highlight:hover {

    background-color: #DF8027;

    color: #FFFFFF;
}

.register-nav {

    display: flex;

    flex-wrap: wrap;

    gap: 2px;

    background-color: #F2F2F0;
}

.register-nav a {

    flex: 1 1 220px;

    font-family: "Open Sans", sans-serif;

    font-size: 14px;

    font-weight: 600;

    background-color: #0474BA;

    color: #FFFFFF;

    border: 1px solid #DDDDDD;

    text-align: center;

    text-decoration: none;

    padding: 8px 10px;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.register-nav a:hover {

    background-color: #035F98;

    color: NavajoWhite;

    text-decoration: none;
}

.student-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    background-color: #F2F2F0;
}

.student-nav a {

    flex: 1 1 180px;

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;

    background-color: #0474BA;
    color: #FFFFFF;

    border: 1px solid #DDDDDD;

    text-align: center;
    text-decoration: none;

    padding: 8px 10px;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background-color .2s ease;
}

.student-nav a:hover {

    background-color: #035F98;

    color: NavajoWhite;

    text-decoration: none;
}

.student-nav a.nav-highlight {

    background-color: #FF8C00;

    font-weight: 700;
}

.student-nav a.nav-highlight:hover {

    background-color: #DF8027;

    color: #FFFFFF;
}

.student-nav a.nav-secondary {

    background-color: #266150;

    color: #FFFFFF;

    font-weight: 600;
}

.student-nav a.nav-secondary:hover {

    background-color: #1d4b3d;

    color: #FFFFFF;
}

.lesson-student-nav a {

    flex: 1 1 220px;

    min-height: 42px;

    font-size: 14px;

    padding: 6px 10px;
}

@media (max-width: 576px) {

    .lesson-student-nav a {

        flex: 1 1 100%;

        min-height: 44px;
    }

}

@media (max-width: 768px) {

    .student-nav a {

        flex: 1 1 calc(50% - 2px);

        font-size: 14px;

        min-height: 52px;
    }
}

@media (max-width: 576px) {

    .student-nav a {

        flex: 1 1 100%;

        min-height: 50px;
    }
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #28a745;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.submit-button:hover {
  background-color: #218838;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.blog-article {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.blog-article h1 {
  font-size: 1.8em;
  color: #0474BA;
  margin-bottom: 0.5em;
}

.blog-article ol {
  margin-top: 1em;
  padding-left: 1.2em;
}

.blog-article li {
  margin-bottom: 1.4em;
}

.blog-article em {
  color: #888;
  font-style: italic;
}

.blog-article a {
  color: #28a745;
  text-decoration: underline;
}

.blog-article a.enroll {
  background-color: #28a745;
  color: white;
  padding: 1em 2em;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.blog-article a.enroll:hover {
  background-color: #218838;
}

.cta-button {
  background-color: #28a745;
  color: white;
  padding: 1em 2em;
  font-size: 1.1em;
  border-radius: 8px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  border: none;
}

.cta-button:hover {
  background-color: #218838;
}

.cta-button.alt {
  background-color: white;
  color: #007bff;
  border: 2px solid #007bff;
  font-weight: bold;
}

.cta-button.alt:hover {
  background-color: #e6f0ff;
}

.blue-box {
  background-color: #007bff;
  color: white;
  padding: 1em;
  border-radius: 6px;
}

.steps-to-license {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.steps-to-license h2 {
  font-size: 1.6em;
  color: #0474BA;
  margin-bottom: 1em;
}

.steps-to-license p {
  margin-bottom: 1.2em;
}

.steps-to-license a {
  color: #28a745;
  text-decoration: underline;
}

.lesson-title {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0474BA;
  padding-top: 10px;
}

.lesson-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.lessons-nav {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 5px;
  color: #235784;
}

.lessons-nav-active {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 5px;
  color: #FF8C00;
}

.quiz-nav {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 5px;
  color: #235784;
}

.quiz-nav-info {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 5px;
  color: #FF8C00;
}

.orange-button {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background-color: #FF8C00;
  color: white;
  border: 1px solid #ddd;
  padding: 4px 12px;
  height: 30px;
  width: 100%;
  white-space: nowrap;
}

.green-button {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  background-color: #266150;
  color: white;
  border: 1px solid #ddd;
  padding: 4px 12px;
  height: 30px;
  width: 100%;
  white-space: nowrap;
}

.right-links {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 12px;
  color: #266150;
}

.main-content-box {
  min-height: 600px;
  overflow: hidden;
}

.background-image {
  background: url("../images/main-photo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  min-height: 75vh;
  display: flex;
  justify-content: center;
}

.background-image2 {
  background: url("../images/san-diego-skyline5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  min-height: 75vh;
  display: flex;
  justify-content: center;
}

.background-image3 {
  background: url("../images/main-photo3.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  min-height: 75vh;
  display: flex;
  justify-content: center;
}

.bg1 {
  background: url("../images/bg1.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.bg2 {
  background: url("../images/bg2.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  height: 100%;
}

.image-overlay-darker {
  margin-top: -24px;
  margin-bottom: 0px;
  color: #fff;
  background-color: #000;
  opacity: 0.6;
  filter: alpha(opacity=90);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.image-overlay-darker2 {
  margin-top: -24px;
  margin-bottom: 0px;
  color: #fff;
  background-color: #000;
  opacity: 0.6;
  filter: alpha(opacity=90);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* top | right | bottom | left */
.category-padding {
  border-right: 2px solid rgb(130, 188, 242);
  border-bottom: 2px solid rgb(130, 188, 242);
  padding: 2px 0px 15px 40px;
}

/* top | right | bottom | left */
.category-padding-home {
  padding: 2px 3px 10px 3px;
  margin: 0px 0px 0px 0px;
}

.category-padding-home2 {
  padding: 2px 3px 10px 3px;
  margin: 0px 0px 0px 0px;
}

.cat-links-ul-1 {
  padding: 0px 0px 0px 20px;
  margin: 0px 0px 0px 0px;
}

/* Compact trust list */
.mini-trust {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    margin: 0;
}
.mini-trust li::before {
    content: "✔";
    margin-right: .4rem;
    font-weight: 700;
}

/* ===== Compact Enrollment Layout (new overrides) ===== */
.pricing-card {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #f8fff8;
    border: 2px solid #28a745;
    border-radius: 0.5rem;
}

.pricing-header {
    margin-bottom: 0.5rem;
}

.pricing-row {
    padding: 0.15rem 0;
}

.pricing-row.total {
    font-size: 1.1rem;
}

.pricing-title {
    font-size: 1.25rem;
    margin: 0;
}

/* Toast message for discounts */
.price-toast {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: none;
    z-index: 9999;
}
.price-toast.show {
    display: block;
}

/* Sticky enroll bar for mobile */
.sticky-enroll {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .65rem .9rem;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    z-index: 999;
}
.sticky-enroll__price {
    font-weight: 700;
    font-size: 1.05rem;
}

.transparent {
  background-color: #999999;
  opacity: 0.2;
  filter: alpha(opacity=20); /* For IE8 and earlier */
}

.cat-links-li-1 {
  margin: 10px 0px 0px 0px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #266150;
}

.articles_right_links {
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 15px;
}

.article-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #266150;
}

.article-title2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #266150;
}

.article-headline-home {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #266150;
}

.article-title-home {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.article-title-home2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.article-title-link {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #333333;
  text-decoration: underline;
}

.article-title-info {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #333333;
}

.article-related-link {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #000000;
  text-decoration: underline;
}

.article-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  color: #4f4846;
}

.article-subtitle-home {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #4f4846;
}

.article-text {
  font-family: "Helvetica Neue";
  font-size: 0.9rem;
  color: #333333;
}

.related-articles {
  font-family: "Helvetica Neue";
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
}

.related-links {
  font-family: "Helvetica Neue";
  font-size: 0.9rem;
  color: #0056b3;
  text-decoration: underline;
}

.hr-w-text {
  width: 90%;
  height: 15px;
  border-bottom: 2px dashed #266150;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

.hr-text {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 0 10px;
  color: #266150;
  background-color: #FFFFFF;
}

.discount-panel {
    background: #f8f9fa;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
}
.custom-control-label {
    cursor: pointer;
}

.bg-trans {
  background-color: rgba(228, 233, 237, 0.3);
}

.bg-trans2 {
  background-color: rgba(6, 156, 224, 0.6);
}

.bg-trans3 {
  background-color: rgba(188, 212, 131, 0.6);
}

.bg-trans4 {
  background-color: rgba(142, 182, 14, 0.6);
}

.bg-trans5 {
  background-color: rgba(180, 180, 180, 0.7);
}

.command {
  background-color: #ECECEC;
}

.hr50 {
  max-width: 450px;
  margin-left: 0px;
  margin-top: 10px;
  margin-bottom: 5px;
  border: 1px solid #666666;
}

.special-font {
  font-family: "Helvetica Neue";
}

.smaller {
  font-size: 0.7rem;
}

.small {
  font-size: 0.8rem;
}

.medium-sm {
  font-size: 0.9rem;
}

.medium-md {
  font-size: 1rem;
}

.medium-lg {
  font-size: 1.2rem;
}

.large {
  font-size: 1.5rem;
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.orange {
  color: #f2ac29;
}

.red {
  color: red;
}

.light-gray {
  color: #F2F2F0;
}

.dark-gray {
  color: #333333;
}

.dark-gray-lighter {
  color: #999999;
}

.button2 {
  background-color: #46bf00;
  color: white;
}

.button3 {
  background-color: #d4443c;
  color: white;
}

.custom-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #d4443c;
}

.custom-heading2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff8c00;
}

.custom-heading-smaller {
  font-size: 0.9rem;
  font-weight: 700;
  color: #d4443c;
}

.top-nav-links {
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  color: #333333;
  text-decoration: underline;
}

a.top-nav-links:visited {
  color: #333333;
}

.header-account {

    text-align: right;

    font-size: .9rem;
}

.header-greeting {

    display: block;

    margin-bottom: 3px;

    color: #333333;

    font-weight: 600;
}

@media (max-width: 768px) {

    .header-account {

        text-align: center;

        margin-top: 8px;
    }

}

.bottom-nav-links {
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  color: #f1f1f1;
  text-decoration: underline;
}

.bottom-nav-links-separator {
  font-family: "Open Sans", sans-serif;
  font-size: 0.8rem;
  color: #f1f1f1;
}

.bottom-logo {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #004e7c;
}

.top-nav-phone {
  font-family: "Helvetica Neue";
  font-size: 0.8rem;
  color: #333333;
}

.get-attention-font {
  font-size: 0.9rem;
  font-weight: normal;
  color: #ff8c00;
}

.nav-button {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ddd;
  background-color: #0474BA;
  color: white;
  padding: 4px 4px;
  height: 30px;
  width: 300px;
  white-space: nowrap;
}

.nav-button:hover {
  color: navajowhite;
}

.nav-button:active {
  color: white;
}

/* === Pricing card fixes (compact, green badge, no big title) === */
.pricing-card {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
    max-width: 540px;
}

.pricing-header { margin: 0 0 .4rem 0; }

/* Green pill badge to match your CTA green */
.pricing-header .badge {
    display: inline-block;
    background: #28a745;  /* your green */
    color: #fff;
    font-size: .73rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 999px;
    letter-spacing: .3px;
    line-height: 1.1;
    margin: 0;
}

/* Hide the big title and collapse its space */
.pricing-header .pricing-title {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.pricing-rows { margin-top: .25rem; }
.pricing-row {
    display: flex; justify-content: space-between;
    padding: .15rem 0; font-size: .98rem;
}
.pricing-row.discount { color: #1f8f2f; } /* darker green, subtle */
.pricing-row.total {
    font-weight: 700; border-top: 1px solid #e6e6e6;
    margin-top: .35rem; padding-top: .35rem;
}

.pricing-note { margin-top: .35rem; font-size: .85rem; color: #333; }

/* Mini total near the CTA */
.checkout-summary{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:.5rem;
    background:#f8faf9;
    border:1px solid #e6e6e6;
    border-radius:10px;
    padding:.6rem .9rem;
    font-weight:700;
    margin:.75rem auto 0 auto;
    width:max-content;
}

/* Asterisk styling */
.required-asterisk{ color:#c82333; margin-left:3px; }

.transparent {
  background-color: #000000;
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}

.error {
  color: #e72829;
  background-color: white;
  border: 1px solid #e72829;
  border-radius: 5px;
  opacity: 0.7;
  margin-top: 5px;
  filter: alpha(opacity=70);
}

.select-hr {
  border: 0;
  clear: both;
  display: block;
  width: 96%;
  background-color: #46bf00;
  height: 1px;
}

.light-gray {
  background: #F2F2F2;
}

.light-blue {
  background: #40A8C4;
}

.blue {
  background: #0474BA;
}

.turquoise {
  background: #00789E;
}

.dark-blue {
  background: #235784;
}

.classic-blue {
  background: #34568B;
}

.orange {
  background: #F7AA00;
}

.dark-orange {
  background: #FF8C00;
}

.darker-orange {
  background: #DF8027;
}

.olive-green {
  background: #5C8B15;
}

.steal {
  background: #71797E;
}

.red {
  background: #ff0800;
}

.trans {
  transition: height 4s;
}

[v-cloak] { display: none !important; }