#submit {
    font-size: 16pt;
}
.flex-row{
    display: flex;
    flex-direction: row;
}

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

.wide {
    width: 100%;
}

.space-around{
    justify-content: space-around;
}

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

.flex-start{
    align-self: flex-start;
}

.text-left{
    text-align: left;
}

.text-start{
    text-align: start;
}

.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}

.question {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: lightblue;
    padding: 5px;
    border: solid 1px grey;
    margin-bottom: 10px;
    border-radius: 6px;
    width: 700px;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.question-options {
    display: inline-block;
    text-align: initial;
    padding: 8px;
    width: inherit;
}

.question-options-flex {
    display: flex;
    text-align: initial;
    padding: 8px;
    width: inherit;
}

.question-half {
    width: 50%;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
}

.question-quarter {
    width: 25%;
    margin-right: 8px;
    display: flex;
    flex-direction: column;
}

.de-emphisize-option {
    color: gray;
    margin-left: 16px;
}

.clickable {
    cursor: pointer;
}

.notification {

    border: 1px solid;

    margin: 10px 0;

    padding: 5px 10px;

    font-size: 14pt;

    vertical-align: middle;

}

div.debug {

    color: #363436;

    background-color: #9b999b;

}

div.debug:before {

    vertical-align: middle;

    -webkit-text-stroke: 1px black;

    padding: 10px;

    font-size: 20pt;

    content: "\f188";

    font-family: FontAwesome;

}

div.info {

    color: #00529B;

    background-color: #BDE5F8;

}

div.info:before {

    vertical-align: middle;

    -webkit-text-stroke: 1px black;

    padding: 10px;

    font-size: 20pt;

    content: "\f05a";

    font-family: FontAwesome;

}

div.success /*, label.yes*/ {

    color: #4F8A10;

    background-color: #DFF2BF;

}

div.success:before /*, label.yes:before*/ {

    vertical-align: middle;

    -webkit-text-stroke: 1px black;

    padding-right: 10px;

    font-size: 20pt;

    content: "\f058";

    font-family: FontAwesome;

}

div.warning {

    color: #9F6000;

    background-color: #FEEFB3;

}

div.warning:before {

    vertical-align: middle;

    -webkit-text-stroke: 1px black;

    padding-right: 10px;

    font-size: 20pt;

    content: "\f06a";

    font-family: FontAwesome;

}

div.error /*, label.no*/ {

    color: #D8000C;

    background-color: #FFBABA;

}

div.error:before /*, label.no:before*/ {

    vertical-align: middle;

    -webkit-text-stroke: 1px black;

    padding-right: 10px;

    font-size: 20pt;

    content: "\f057";

    font-family: FontAwesome;

}

table {
    border: solid 1px grey;
    border-collapse: collapse;
    width: 100%;
}

table button {
    background-color: #1b04c7;
    color: white;
    padding: 1px 2px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    z-index: 200;
}

table button:hover {
    background-color: #1e02f0;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
table tr .clickable {
    cursor: pointer;
}

table td, table th {
    border: solid 1px grey;
    border-collapse: collapse;
    padding: 1px;
    max-height: 50px;
}

.small {

    font-size: 10pt;

}

.btn {
    background: #07078d;
    font-size: 12pt;
    color: white;
    border-radius: 4px;
    padding: 8px;
    text-decoration: none;
}

.btn-secondary{
    background-color: white;
    color: #07078d;
    border-radius: 4px;
    padding: 8px;
    text-decoration: none;
    border: 2px solid #07078d;
}

.grey, .gray {

    color: grey;

}

html * {
    font-family: 'Geologica';
}

.body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-bar{
    width: 100%;
}

.nav-bar-content{
    padding: 12px 10%;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #1c1c1c;
    height: 50px;
    font-size: 36pt;
    align-items: center;
    box-shadow: 0px 3px 3px grey;
}

.nav-bar-logo {
    color: white;
    text-decoration: none;
}

.nav-bar-icon {
    font-size: 12pt;
    color: white;
    text-decoration: none;
}

.action-links{
    gap: 8px;
    display: flex;
    align-items: center;
}

.left-nav {
    display: flex;
    flex-direction: column;
    width: 150px;
    background-color: #1c1c1c;
    color: #efefef;
    min-height: 100vh;
    padding-top: 24px;
}

.left-nav a {
    color: #efefef;
    text-decoration: none;
    padding: 4px;
    border-bottom: solid 1px #d4d4d4;
    font-weight: normal;
    font-size: 12pt;
    flex-grow: 1;
}
.left-nav a:last-of-type {
    margin-top: auto;
}

.left-nav a:hover {
    background-color: #515151;
    cursor: pointer;
}
.left-nav h3, .left-nav details {
    padding-left: 5px;
    display: flex;
    font-size: 16px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    font-weight: bold;
    cursor: pointer;
}
.left-nav-details {
    display: flex;
    flex-flow: column wrap;
    font-variant: all-petite-caps;
    justify-content: flex-start;
    font-size: 12px;
}
.left-nav section a:first-of-type {
    border-top: solid 1px #d4d4d4;
}

.quick-links {
    display: flex;
    flex-direction: column;
}

#to_top {
    width: auto;
    position: sticky;
    bottom: 0;
    color: #efefef;
    text-decoration: none;
    border-top: solid 1px #d4d4d4;
}

#nav_burger {
    display: none;
}

.content {
    display: flex;
    flex-direction: row;
    min-width: fit-content;
}

.hide {
    display: flex;
}

@media only screen and (max-width: 760px){
    .content {
        flex-direction: row;
        width: fit-content;
    }
    .nav-bar-content{
        padding: 8px;
    }
    .nav-bar-logo{
        display: flex;
    }
    .left-nav {
        flex-direction: column;
        flex-wrap: wrap;
        width: auto;
    }
    .left-nav details {
        padding: 4px;
        margin: 0;
    }
    .left-nav a {
        flex-grow: 1;
    }
    #to_top {
        display: none;
    }
    #nav_burger {
        display: flex;
        font-size: 28pt;
        color: white;
        cursor: pointer;
    }
    .hide {
        display: none;
    }
}

#content {
    padding: 16px;
    text-align: center;
    flex-grow: 1;
    width: 100%;
}

#content table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #1c1c1c;
    color: white;
}

#content table th.filter_th {
    background-color: #515151;
    padding: 2px;
}
#content table th.filter_th span {
    width: fit-content;
}

#content table td {
    padding: 0;
    text-align: center;
    border: 1px solid #ddd;
}

table.fixedHeader-floating {
    background-color: black !important;
    color: white;
}

#content table tr:nth-child(even){background-color: #f2f2f2;}

#content table tr:hover {background-color: #ddd;}

#content form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#signature {
    width: 350px;
    height: 200px;
    max-width: 100%;
}

#signature canvas {
    width: 500px;
    border: 2px solid black;
}

.handbook-nav {
    width: 200px;
    background-color: white;
    border-right: 1px solid black;
}

.hover:hover {
    background-color: hsla(240, 0%, 94%, 1);
}

.hover-light:hover {
    background-color: hsla(240, 0%, 98%, 1);
}

.handbook-section {
    border-bottom: 1px solid lightgray;
    width: auto;
    padding: 8px 0 8px 8px;
}

.handbook-section.highlight-section a{
    color: white;
}

.handbook-section a{
    display:inline-block;
    width:100%;
    height:100%;
    color: black;
    font-weight: bold;
}

.highlight-section {
    background-color: black;
}

.handbook-subsection {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.handbook-subsection li a{
    display:inline-block;
    width:calc(100% - 28px);
    height:100%;
    padding: 4px 4px 4px 24px;
    border-bottom: 1px solid lightgray;
    font-size: 12px;
    text-decoration: none;
    color: black;
}

.highlight-subsection {
    background-color: lightgray;
}

.break {
    flex-basis: 100%;
    height: 0;
}