/* General Styles */
body {
    font-family: "Host Grotesk", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #797979;
    color: #333;  
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.99rem;
}

.mt-3 {
    margin-top: 1rem;
}

/* Navbar */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    color: #4a8bd1;
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

.nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links ul li {
    margin-left: 0.8rem;
}

.nav-links ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
}

.nav-links ul li a:hover {
    color: #4a8bd1;
}

/* Form Container */

.big-form-container {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height:77vh;
}


.form-container {
    background-color: #fff;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   
}

.form-container h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    /* font-weight: 600; */
}

.form-group input {
    width: 97%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #4a8bd1;
    outline: none;
}


.btn-normal {
    display: inline-block;
    width: 20%;
    padding: 0.75rem;
    font-size: 1rem;
    color: #fff;
    background-color: #4a8bd1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    color: #fff;
    background-color: #4a8bd1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}
.prv-nxt-btn {
    display: inline-block;
    width: 20%;
    padding: 0.75rem;
    font-size: 1rem;
    color: #fff;
    background-color: #4a8bd1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    position: relative;
    font-size: 1rem;
}

.alert-success {
    background-color: #e6ffed;
    color: #2e7d32;
}

.alert-danger {
    background-color: #ffebee;
    color: #c62828;
}

.closebtn {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 1.25rem;
    cursor: pointer;
    color: #888;
}

.closebtn:hover {
    color: #333;
}

/* Links */
a {
    color: #4a8bd1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
/* @media (max-width: 856px) {
    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links ul li {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .phone-hidden {
        display: none;
    }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.99rem;
}
.phoneh2 {
    font-size: 13pt;
}
.phone-text {
    font-size: 10pt;
}
.phone-text-small {
    font-size: 8pt; 

}
} */
/* INDEX.HTML */
.status, .messages {
    background-color: #f0f0f0;
    margin-bottom: 10px;
}
/* Tab styles */
.tab-container {
    display: flex;
    background-color: #333;
}
.tab {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    cursor: pointer;
    color: white;
    background-color: #333;
    border-right: 1px solid #fff;
}
.tab:last-child {
    border-right: none;
}
.tab.active {
    background-color: #004080;
}
.hidden {
    display: none;
}

/* Content styles */
.content-container > div {
    display: none;
    animation: slideDown 1s;
}
.content-container > div.active {
    display: block;
}
@keyframes slideDown {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
/* Sliding animations */
@keyframes slideInFromLeft {
    from {opacity: 0; transform: translateX(-100%);}
    to {opacity: 1; transform: translateX(0);}
}
@keyframes slideInFromRight {
    from {opacity: 0; transform: translateX(100%);}
    to {opacity: 1; transform: translateX(0);}
}
@keyframes slideOutToLeft {
    from {opacity: 1; transform: translateX(0);}
    to {opacity: 0; transform: translateX(-100%);}
}
@keyframes slideOutToRight {
    from {opacity: 1; transform: translateX(0);}
    to {opacity: 0; transform: translateX(100%);}
}

.row {
    display: flex;
  }
  
  .column50 {
    flex: 50%;
  }

.col-md-6 {
    flex: 50%;
}

.col-md-4 {
    flex: 33.33%;
}
.col-md-12 {
    flex: 100%;
}
.col-md-11 {
    flex: 91.66%;
}
.col-md-10 {
    flex: 83.33%;
}
.col-md-8 {
    flex: 66.66%;
}
.col-md-7 {
    flex: 58.33%;
}
.col-md-5 {
    flex: 41.66%;
}
.col-md-3 {
    flex: 25%;
}

.col-md-2 {
    flex: 16.66%;
}
.col-md-1 {
    flex: 8.33%;
}
*:disabled {
    background-color: dimgrey;
    color: linen;
    opacity: 1;
  }
.btn:hover:disabled {
    background-color: dimgrey;
    color: linen;
    opacity: 1;
}

.button-container {
    display: flex; /* Align items in a row */
    justify-content: space-between; /* Space buttons apart */
    align-items: center; /* Align vertically in the center */
    gap: 10px; /* Add space between buttons */
}

.single-button-container {
    display: flex; /* Align items in a row */
    justify-content: center; /* Space buttons apart */
    align-items: center; /* Align vertically in the center */
    gap: 10px; /* Add space between buttons */
}

.question-block {
    height: 259px;
}



.callout.info {
    border-left-color: #0288d1;
    color: #01466c;
    background-color: #d3efff;
}
.callout {
    border-left: 3px solid #bbb;
    background-color: #eee;
    padding: 12px 12px 12px 32px;
    display: block;
    position: relative;
    overflow: auto;
}
.callout:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiMwMTUzODAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZD0iTTEyIDJDNi40OCAyIDIgNi40OCAyIDEyczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNy41MiAyIDEyIDJ6bTEgMTVoLTJ2LTZoMnY2em0wLThoLTJWN2gydjJ6Ii8+PC9zdmc+);
    background-repeat: no-repeat;
    content: "";
    width: 1.2em;
    height: 1.2em;
    left: 8px;
    top: 50%;
    margin-top: -9px;
    display: inline-block;
    position: absolute;
    line-height: 1;
    opacity: .8;
}


.throbber {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    display: flex;
    margin-top: 51px;
    
  }

  /* Individual dots */
  .dot {
    width: 2rem;
    height: 2rem;
    margin: 0 1.25rem;
    border-radius: 50%;
    background: #4a8bd1;
    animation: dance 1s infinite ease-in-out;
  }

  /* Add slight delays to each dot's animation */
  .dot:nth-child(1) {
    animation-delay: 0s;
  }
  .dot:nth-child(2) {
    animation-delay: 0.1s;
  }
  .dot:nth-child(3) {
    animation-delay: 0.2s;
  }
  .dot:nth-child(4) {
    animation-delay: 0.3s;
  }
  .dot:nth-child(5) {
    animation-delay: 0.4s;
  }

    .dot:nth-child(6) {
    animation-delay: 0.5s;
    }
    .dot:nth-child(7) {
    animation-delay: 0.6s;
    }
    .dot:nth-child(8) {
    animation-delay: 0.7s;
    }
    .dot:nth-child(9) {
    animation-delay: 0.8s;
    }



  /* "Dance" animation keyframes */
  @keyframes dance {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }



  /* */

      /* Container styling */
      .big-form-container-cs {
        position: relative;
        overflow: hidden;
        width: 100%;
        /* min-height: 73vh; */
        background-color: white;
        border-radius: 8px;
        height: 88vh;
    }

    /* Base styling for form pages */
    .form-page {
        position: absolute;
        top: 0;
        left: 0;
        width: 73%;
        padding-left: 14%;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%); /* Start off-screen to the right */
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    /* Active page styling */
    .form-page.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0); /* Move into view */
    }

    /* Page moving out to the left */
    .form-page.left {
        transform: translateX(-100%);
    }

    /* Page moving in from the right */
    .form-page.right {
        transform: translateX(100%);
    }

    .horizontal-group {
        display: flex;
        gap: 10px; /* Add some space between the fields */
    }

    .sub-group {
        flex: 1; /* Make each field take up equal space */
    }

    .sub-group input {
        width: 90%; /* Ensure the input fills its container */
    }

    .sub-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .school_select {
        width: 100%;
        padding: 5px;
        margin-bottom: 10px;
        font-size: large;
    }

    
    .delete-btn {
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, color 0.2s;
    }
    
    .delete-btn:hover {
        transform: scale(1.1);
        color: rgb(39, 104, 68);
    }

    .view-btn {
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, color 0.2s;
    }

    .view-btn:hover {
        transform: scale(1.1);
        color: rgb(39, 104, 68);
    }
    
    .icon-trash {
        width: 20px;
        height: 20px;
    }
    .icon-eye {
        width: 20px;
        height: 20px;
    }


    .checkdivs{
        display: flex;
        font-size: x-large;
        align-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        margin-left: 19px;
        margin-top: 13px;
    }

    .checkdivs_text{
        font-size: 12pt;
        margin-left: 10px;
    }
    .checksvg{
        width: 30px;
        height: 30px;
    }

    .status_form_page{
        width: 100% !important;
        padding-left: 1% !important;
    }

    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        padding-top: 100px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }
    .modal-content {
        background-color: #fefefe;
        margin: 5% auto; /* 15% from the top and centered */
        padding: 20px;
        border: 1px solid #888;
        width: 800px;
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor:pointer;
    }

.popup-content{
    background-color: #4a8bd1;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    padding: 3px;
    padding-left: 7px;
    padding-right: 7px;
    color: #ffffff;
}
.law{
    font-family: initial;
    font-size: 12pt;
    color: #4d4d4d;
}


.policy{
    height: 31vh;
    overflow: auto;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    padding: 40px;
}


.desktop-blurb {
  display: block;
}
.mobile-blurb {
  display: none;
}



accept_policy_label

/* Utility classes */
.hidden {
  display: none;
}
@media (max-width: 1682px) or (min-resolution: 105.60dpi) {
       .navbar {
                padding: 0 !important;
    }
.frontheader {
        font-size: 12pt !important;
    }

 .form-page {
        width: 95%;
        padding: 1rem 2.5%;
        position: relative; /* Change to relative positioning on smaller screens */
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .banner-image {
         height: 2em !important;
    }
       .navbar {
                padding: 0 !important;
    }

    .material-symbols-outlined {
        font-size: 1em !important;
    }

    #driver_ed_verification_documentation_message{
        font-size: 9pt !important;
    }
    .policy {
        height: 15vh !important;
        overflow: auto;
        border-style: solid;
        border-width: 1px;
        border-radius: 2px;
        padding: 40px;
    }

    .prv-nxt-btn {
        display: inline-block;
        width: 16%;
        padding: 0.25rem;
        font-size: 0.9rem;
        border-radius: 4px;

    }

    .container {
        width: 77%;
    }

    .form-group input {
        width: 97%;
        padding: 0.4rem;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 0.9rem;
    
    }
    .dot {
    width: 0.5rem;
    height: 0.5rem;
    }
    .map{
        width: 100%;
    height: 199px!important;
    }
    .modal{
            padding-top: 41px;
    }
    .question-block {
    height: 213px;
}
    .nav-links ul li a {
       
        font-size: 0.9rem;
    }

    .school_select {
        width: 100%;
        padding: 5px;
        margin-bottom: 10px;
        font-size: 8pt;
    }

    input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
    }

   
    .form-page:not(.active) {
        display: none; /* Simply hide inactive pages */
    }
    
    .form-page.active {
        display: block;
        font-size: 9pt !important;
        
    }
    
    .big-form-container-cs {
        height: auto; /* Let content determine height */
        min-height: 60vh;
        overflow: visible;
    }

}

/*125% zoom - scale values by 0.8x*/
@media (max-width: 1480px) or (min-resolution: 120dpi) {

    .parent-tab {
        font-size: 18px !important;
    }

       .navbar {
                padding: 0 !important;
    }
.frontheader {
        font-size: 11pt !important;
    }
    .container {
        width: 77% !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
    input[type="checkbox"] {
        width: 5.28px !important;
        height: 5.28px !important;
    }
    .nav-links ul li a {
        font-size: 0.72rem !important;
    }
    .form-page.active {
        padding-bottom: 80px !important;
        font-size: 7.2pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 7.2pt !important;
    }
    .banner-image {
        height: 1.6em !important;
    }
    input[type="checkbox"] {
        width: 12.8px !important;
        height: 12.8px !important;
    }
}

@media (max-width: 1466px) or (min-resolution: 192dpi) {
        .parent-tab {
        font-size: 17px !important;
    }
       .navbar {
                padding: 0 !important;
    }
.frontheader {
        font-size: 10pt !important;
    }
    .container {
        width: 77% !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
    input[type="checkbox"] {
        width: 5.28px !important;
        height: 5.28px !important;
    }
    .nav-links ul li a {
        font-size: 0.72rem !important;
    }
    .form-page.active {
        padding-bottom: 80px !important;
        font-size: 8pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 8pt !important;
    }
    .banner-image {
        height: 1.6em !important;
    }
    input[type="checkbox"] {
        width: 12.8px !important;
        height: 12.8px !important;
    }
}


/*150% zoom - scale values by 0.67x*/
@media (max-width: 1233px) or (min-resolution: 144dpi) {
        .parent-tab {
        font-size: 16px !important;
    }

    .messages{
        display:none
    }
       .navbar {
                padding: 0 !important;
    }
.frontheader {
        font-size: 9pt !important;
    }
    .nav-links ul li a {
        font-size: 0.6rem !important;
    }
    .container {
        width: 77% !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.17rem !important;
        font-size: 0.6rem !important;
    }
    .form-page.active {
        padding-bottom: 67px !important;
        font-size: 6pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 6pt !important;
    }
    .banner-image {
        height: 1.34em !important;
    }
    .map {
        height: 133px !important;
    }
    .question-block {
        height: 142px !important;
    }
    .modal {
        padding-top: 27px !important;
    }
    input[type="checkbox"] {
        width: 10.72px !important;
        height: 10.72px !important;
    }
}

/*175% zoom - scale values by 0.57x*/
@media (max-width: 1057px) or (min-resolution: 168dpi) {
    .parent-tab {
        font-size: 15px !important;
    }
        .messages{
        display:none
    }
    .corbutton{
        
    font-size: 8pt;
    padding: 6px;
    }

       .navbar {
                padding: 0 !important;
    }
    .correspondence-title{
        font-size: 11pt !important;
    }
    .frontheader {
        font-size: 8pt !important;
    }
    .banner-image {
        height: 1.14em !important;
    }
    .container {
        width: 77% !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
    .form-group input {
        width: 97% !important;
        padding: 0.23rem !important;
        font-size: 0.51rem !important;
    }
    .school_select {
        font-size: 4.6pt !important;
        padding: 2.85px !important;
    }
    .form-page.active {
        padding-bottom: 57px !important;
        font-size: 5.13pt !important;
    }

        #driver_ed_verification_documentation_message{
        font-size: 5.13pt !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.14rem !important;
        font-size: 0.51rem !important;
    }
    .nav-links ul li a {
        font-size: 0.51rem !important;
    }
    .map {
        height: 113px !important;
    }
    .question-block {
        height: 121px !important;
    }
    .policy {
        height: 15vh !important;
        padding: 23px !important;
    }
    input[type="checkbox"] {
        width: 9.12px !important;
        height: 9.12px !important;
    }
}

/*200% zoom - scale values by 0.5x*/
@media (max-width: 925px) or (min-resolution: 192dpi) {
    .parent-tab {
        font-size: 14px !important;
    }
        .messages{
        display:none
    }
       .navbar {
                padding: 0 !important;
    }
       .corbutton{
        
    font-size: 7pt;
    padding: 5px;
    }
        .correspondence-title{
        font-size: 10pt !important;
    }
.frontheader {
        font-size: 7pt !important;
    }
    .banner-image {
        height: 1em !important;
    }
    .nav-links ul {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .nav-links ul li {
        margin-left: 0 !important;
        margin-top: 0.25rem !important;
    }
    .nav-links ul li a {
        font-size: 0.45rem !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
    .form-page.active {
        padding-bottom: 50px !important;
        font-size: 7pt !important;
    }

        #driver_ed_verification_documentation_message{
        font-size: 5pt !important;
    }
    .modal-content {
        width: 90% !important;
        max-width: 300px !important;
    }
    .container {
        width: 77% !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.125rem !important;
        font-size: 0.55rem !important;
    }
    .form-group input {
        width: 97% !important;
        padding: 0.2rem !important;
        font-size: 0.45rem !important;
    }
    .school_select {
        font-size: 4pt !important;
        padding: 2.5px !important;
    }
    .map {
        height: 27vh !important;
    }
    .question-block {
        height: 106.5px !important;
    }
    .modal {
        padding-top: 20.5px !important;
    }
    .policy {
        padding: 20px !important;
    }
    input[type="checkbox"] {
          width: 28px !important;
        height: 11px !important;
    }
}

/*250% zoom - scale values by 0.4x*/
@media (max-width: 740px) or (min-resolution: 240dpi) {
    .parent-tab {
        font-size: 13px !important;
    }
        .messages{
        display:none
    }
       .navbar {
                padding: 0 !important;
    }

    .corbutton{
    font-size: 6pt;
    padding: 4px;
    }
        .correspondence-title{
        font-size: 9pt !important;
    }
.frontheader {
        font-size:6pt !important;
    }
    .navbar-brand {
        font-size: 4.4pt !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
    .form-page.active {
        padding-bottom: 40px !important;
        font-size: 6pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 3.6pt !important;
    }
    .form-page:not(.active) {
        display: none !important;
    }
    .big-form-container-cs {
        min-height: 60vh !important;
    }
    .policy {
        height: 15vh !important;
        padding: 16px !important;
    }
    .accept_policy_label {
        font-size: 5.2pt !important;
    }
    .banner-image {
        height: 0.8em !important;
    }
    .school_select {
        font-size: 3.2pt !important;
        padding: 2px !important;
    }
    .nav-links ul li a {
        font-size: 0.36rem !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.1rem !important;
        font-size: 0.36rem !important;
    }
    .form-group input {
        width: 97% !important;
        padding: 0.16rem !important;
        font-size: 0.36rem !important;
    }
    .map {
        height: 79.6px !important;
    }
    .question-block {
        height: 85.2px !important;
    }
    .modal {
        padding-top: 16.4px !important;
    }
    input[type="checkbox"] {
        width: 6.4px !important;
        height: 6.4px !important;
    }
}

/*300% zoom - scale values by 0.33x*/
@media (max-width: 616px) or (min-resolution: 288dpi) {
    .parent-tab {
        font-size: 12px !important;
    }
        .messages{
        display:none
    }
       .navbar {
                padding: 0 !important;
    }
        .corbutton{
    font-size: 5pt;
    padding: 4px;
    }
            .correspondence-title{
        font-size: 8pt !important;
    }
.frontheader {
        font-size: 5pt !important;
    }
    .nav-links ul li a {
        font-size: 0.297rem !important;
    }
    .nav-links ul li {
        margin-left: 0 !important;
        margin-top: 0.165rem !important;
    }
    .banner-image {
        height: 0.66em !important;
    }
    .container {
        width: 77% !important;
    }
    .form-group input {
        width: 97% !important;
        padding: 0.132rem !important;
        font-size: 0.297rem !important;
    }
    .form-page.active {
        padding-bottom: 33px !important;
        font-size: 5pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 2.97pt !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.083rem !important;
        font-size: 0.297rem !important;
    }
    .policy {
        height: 15vh !important;
        overflow: auto !important;
        border-style: solid !important;
        border-width: 1px !important;
        border-radius: 2px !important;
        padding: 13.2px !important;
    }
    .accept_policy_label {
        font-size: 2.64pt !important;
    }
    .map {
        width: 100%;
        height: 65.67px !important;
    }
    #driver_ed_verification_documentation_message {
        font-size: 2.64pt !important;
    }
    .question-block {
        height: 70.29px !important;
    }
    .school_select {
        font-size: 2.64pt !important;
        padding: 1.65px !important;
    }
    .modal {
        padding-top: 13.53px !important;
    }
    .form-page {
        width: 95% !important;
        padding-left: 2.5% !important;
    }
}

/*400% zoom - scale values by 0.25x*/
@media (max-width: 480px) or (min-resolution: 375dpi) {
    .parent-tab {
        font-size: 8px !important;
    }
        .messages{
        display:none
    }
       .navbar {
                padding: 0 !important;
    }
    .corbutton{
    font-size: 4pt;
    padding: 4px;
    }
            .correspondence-title{
        font-size: 7pt !important;
    }
.frontheader {
        font-size: 4pt !important;
    }
    .nav-links ul li {
        margin-top: 0.125rem !important;
    }
    .nav-links ul li a {
        font-size: 0.225rem !important;
    }
    .container {
        width: 77% !important;
    }
    .form-group input {
        width: 97% !important;
        padding: 0.1rem !important;
        font-size: 0.225rem !important;
    }
    .form-page.active {
        padding-bottom: 25px !important;
        font-size: 4pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 2.25pt !important;
    }
    .callout {
        padding: 1px 3px 1px 7px !important;
    }
    .form-group {
        margin-top: 5px !important;
    }
    .school_select {
        font-size: 2pt !important;
        padding: 1.25px !important;
    }
    .dot {
        width: 0.125rem !important;
        height: 0.125rem !important;
    }
    .modal {
        padding-top: 10.25px !important;
    }
    .modal-content {
        width: 90% !important;
        margin: 2.5% auto !important;
        padding: 3.75px !important;
    }
    .policy {
        height: 15vh !important;
        overflow: auto !important;
        border-style: solid !important;
        border-width: 1px !important;
        border-radius: 2px !important;
        padding: 10px !important;
    }
    .banner-image {
        height: 0.5em !important;
    }
       .navbar {
                padding: 0 !important;
    }

    .map {
        width: 100%;
        height: 49.75px !important;
    }
    .form-page {
        padding: 0.075rem 2.5% !important;
        width: 95% !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.063rem !important;
        font-size: 0.225rem !important;
    }
    input[type="radio" i] {
        width: 2px !important;
    }
    input[type="checkbox"] {
        width: 4px !important;
        height: 4px !important;
    }
    .accept_policy_label {
        font-size: 2pt !important;
    }
    #driver_ed_verification_documentation_message {
        font-size: 2pt !important;
    }
    .question-block {
        height: 53.25px !important;
    }
}

/*500% zoom - scale values by 0.2x*/
@media (max-width: 370px) or (min-resolution: 480dpi) {
    .parent-tab {
        font-size: 7px !important;
    }
        .messages{
        display:none
    }
       .navbar {
                padding: 0 !important;
    }
       .corbutton{
    font-size: 3pt;
    padding: 4px;
    }
            .correspondence-title{
        font-size: 6pt !important;
    }
.frontheader {
        font-size: 3pt !important;
    }
    .nav-links ul li {
        margin-top: 0.1rem !important;
    }
    .nav-links ul li a {
        font-size: 0.18rem !important;
    }
    .container {
        width: 77% !important;
    }
    .form-group input {
        width: 97% !important;
        padding: 0.08rem !important;
        font-size: 0.18rem !important;
    }
    .form-page.active {
        padding-bottom: 20px !important;
        font-size: 3pt !important;
    }
        #driver_ed_verification_documentation_message{
        font-size: 1.8pt !important;
    }
    .callout {
        padding: 0.8px 2.4px 0.8px 5.6px !important;
    }
    .form-group {
        margin-top: 4px !important;
    }
    .school_select {
        font-size: 1.6pt !important;
        padding: 1px !important;
    }
    .dot {
        width: 0.1rem !important;
        height: 0.1rem !important;
    }
    .modal {
        padding-top: 8.2px !important;
    }
    .modal-content {
        width: 90% !important;
        margin: 2% auto !important;
        padding: 3px !important;
    }
    .policy {
        height: 15vh !important;
        overflow: auto !important;
        border-style: solid !important;
        border-width: 1px !important;
        border-radius: 2px !important;
        padding: 8px !important;
    }
    .banner-image {
        height: 0.4em !important;
    }
    .navbar-brand {
        font-size: 1.8pt !important;
    }
    .map {
        width: 100%;
        height: 39.8px !important;
    }
    .form-page {
        padding: 0.06rem 2.5% !important;
        width: 95% !important;
    }
    .prv-nxt-btn {
        width: 16% !important;
        padding: 0.05rem !important;
        font-size: 0.18rem !important;
    }
    input[type="radio" i] {
        width: 1.6px !important;
    }
    input[type="checkbox"] {
        width: 3.2px !important;
        height: 3.2px !important;
    }
    .accept_policy_label {
        font-size: 1.6pt !important;
    }
    #driver_ed_verification_documentation_message {
        font-size: 1.6pt !important;
    }
    .question-block {
        height: 42.6px !important;
    }
    .big-form-container-cs {
        min-height: 60vh !important;
    }
    .form-page:not(.active) {
        display: none !important;
    }
    .nav-links ul {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .nav-links ul li {
        margin-left: 0 !important;
    }
    .material-symbols-outlined {
        font-size: 0.2em !important;
    }
}



/* Parent Tabs Styling */
.parent-tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.parent-tab {
 
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: #333;
    /* margin: 0 10px; */
    /* border-radius: 8px; */
    transition: background 0.3s, transform 0.2s;
    color: white;
    width: 50%;
    text-align: center;
}

.parent-tab:hover {
    background: #616161;
    /*transform: scale(1.05);*/
}

.parent-tab.active {
    background: #004080;
    color: white;
    box-shadow: 0px 3px 10px rgba(0, 123, 255, 0.3);
}