*{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    scroll-behavior: auto !important;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "proxima-nova";
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 0;
}

.basic_box {
    position: relative;
    top: 2em;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90vw;
    margin-bottom: 3em;
}

#question_container {
    padding: 2em;
    border: solid 2px silver;
    border-radius: 30px;
}

#banner_photo {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    margin-bottom: 2em;
}

.box_shadow {
    box-shadow: 0px 0px 12.0px hsl(0deg 0% 0% / 0.5);
}

#pg2 {
    height: 60vh;
    display: none;
}

.tab {
    display: none;
}

#progress_container {
    position: relative;
    max-width: 100%; 
  }

#progress_bar {
    position: absolute;
    background-color: #50C878;
    height: 3px;
    width: 0%;
    left: 0;
    top: calc((100% - 40px)/2);
    transform: translate(0, -50%);
    transition-duration: 1s;
    display: flex;
    align-self: center;
  }

#progress_nums::before {
    content: "";
    background-color: lightgray;
    position: absolute;
    left: 0;
    height: 3px;
    width: 100%;
    z-index: -1;
    display: flex;
    align-self: center;
  }

#progress_nums {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }

#progress_labels {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

#progress_labels li {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    text-align: center;
}

.step {
    border: 1px solid lightgray;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.complete {
    border: 3px solid #50C878;
    background-color: #50C878;
    color: black;
    transition-duration: 2s;
}

.step.active {
    background-color: #FBEC5D;
    border: 3px solid #FBEC5D;
    color: black;
    transition-duration: 2s;
  }

.step p {
    top: 100%;
    position: relative;
}

footer {
    position: relative;
    background-color: #194171;
    color: white;
    top: 3em;
    display: flex;
    padding: 1em;
    font-size: .8rem;
}
#copyright {
    display: block;
    position: relative;
    max-width: 50vw;
}

#contact_info {
    float: right;
    margin-left: auto;
}

#contact_info > h3 {
    margin-bottom: .25rem;
}
  
.tx_orange {
    background-color: #F89F74;
}

button a {
    color: black;
}

.navbar-brand  {
    display: inline;
}

.tab_pic {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 35%;
    max-height: 90%;
}

#classroom{
    max-width: 50%;
}

#revenue_table, #non_personnel_table, #optional_personnel_table {
    max-width: 60%;
}
#fpl_table, #child_care_benefits_table{
    width: auto;
}

#classes >tbody >tr >td {
    width: 20%;
}

.num_input{
    max-width: 150px;
}

.num_input_2{
    max-width: 60px;
}

form {
    position: relative;
}

.efficiency {
    max-width: 50px;
}

.inline_input {
    display: flex;
    align-items: center;
    column-gap: .5em;
}

.inline_input label h5{
    margin-bottom: 0;
}

.question {
    font-weight: bold;
    font-size: 1.1rem;
}

.result_table_title {
    margin-bottom: 0;
}

.tx_light_blue {
    background-color: #00B5DD;
}

.tx_navy {
    background-color: #194171;
    color: white;
}

.td_r, .salary {
    text-align: right;
}


.span_small {
    padding: 0 .25em;
}

.num_input_2.form-control:invalid,.num_input_2.form-control:valid{
    background-image: none !important;
    padding: .25rem .1rem .25rem .1rem !important;
}

#class_info > tbody >tr >td >.form-control, #class_type > tbody >tr >td >.form-control {
    padding: .25rem .1rem .25rem .1rem !important;
}


@media screen and (max-width: 900px){
    .navbar-brand{
        font-size: 1.1rem;
        word-wrap: break-word;
        white-space: normal;
    }

    .navbar-brand img{
        display: block;
    }

    #region {
        width: 100%;
    }
    #progress_container, #classes {
        max-width: 100%;
    }

    #banner_photo {
        height: 20vh;
    }

    * {
        font-size: .9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #salary_range {
        max-width: 100%;
    }

    #classroom {
        max-width: 100%;
    }

    #salary_table, #revenue_table, #non_personnel_table, #result_table {
        max-width: 100%;
    }

    #class_type >thead > tr > td, #class_type > tbody> tr>td,#class_type > tbody> tr>td>input, #class_type > tbody> tr>td>div>span,#class_type > tbody> tr>td>div>input {
        font-size: .7rem;
    }

    #non_personnel_table>tbody>tr>td>.input-group>.form-control:invalid, #non_personnel_table>tbody>tr>td>.input-group>.form-control:valid {
        background-image: none !important;
        padding: .25rem .1rem .25rem .1rem !important;
    }
    
    #question_container {
        padding:.75em;
    }
    
}

@media screen and (max-width: 1000px){
    .tab_pic {
        display: none;
    }
}