:root {
    --color-primary: rgb(120, 183, 37);
    --color-secondary: rgb(0, 55, 99);
}

body {
    font-family: Roboto, sans-serif !important;
    font-size: 1.6rem;
}

a {
    color: var(--color-primary);
}

p, ul, ol {
    /*font-size: 1.5rem;*/
    line-height: 1.625;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #4c4c4c;
}

p.question {
    margin-top: 0px;
    margin-bottom: 10px;
}

p.spider-lead {
    margin-bottom: 5px !important;
}

li {
    /*font-size: 1.5rem;*/
    line-height: 1.25;
    margin-top: 4px;
    margin-bottom: 4px;
    font-weight: 400;
    color: #4c4c4c;
}

.text-lead {
    font-size: 1.8333rem !important;
    line-height: 1.545454 !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    font-weight: 500 !important;
    color: #767573 !important;
}

h1 {
    font-size: 3.33333333rem !important;
    margin-bottom: 13px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}

h1:after {
    content: " ";
    height: 4px !important;
    width: 80px !important;
    display: block !important;
    margin-top: 13px !important;
    border-bottom: 4pt solid var(--color-primary) !important;
    background: var(--color-primary) 0 0 !important;
}

h2 {
    font-weight: 700;
    font-size: 1.83333rem;
    line-height: 1.1;
    padding-top: 36px;
    padding-bottom: 18px;
    position: relative;
    border-bottom: 4px solid #deded9;
}

h2:after {
    display: block !important;
    content: " " !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: -20px !important;
    padding: 0 !important;
    height: 1px !important;
    background-color: #deded9 !important;
    -webkit-transition: left .5s ease-in-out, right .5s ease-in-out !important;
    transition: left .5s ease-in-out, right .5s ease-in-out !important;
}

h3 a, h4 a {
    cursor: pointer;
}

h4 a {
    color: var(--color-secondary);
}

label i {
    font-weight: normal;
}

footer {
    font-size: 1.25rem;
}

.page-header {
    border-bottom: 0 !important;
    margin-top: 100px;
}

#intro_heading {
    padding-top: 45px;
    padding-bottom: 45px;
}

#header {
    position: fixed;
    background-color: #ffffff;
    width: 100%;
    height: 90px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.navi-sidebar {
    float: left;
    position: fixed;
    padding-top: 100px;
}

.instructions {
    font-size: 1.2rem;
    line-height: 0.5;
}

.instructions ul {
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: var(--color-secondary);
}

.results-section-data > * {
    margin-top: 0;
}

.results-section-heading, .whatsnext-title {
    font-weight: 500;
    font-size: 2.25rem;
}

.results-section-text {
    font-size: 1.8333rem;
}

.dimension-heading {
    font-weight: 500;
    padding-top: 0.75rem;
}

.category-row {
    padding-left: 1rem;
}

.whatsnext-subtitle {
    font-weight: 500;
    padding-top: 1.5rem;
}

#pdfBtn {
    font-size: 2rem;
    margin-top: 6rem;
}

#whatsnext {
    padding-top: 2rem;
}

#contact {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

#finish {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

#thankyou {
    font-size: 2rem;
}

/* Multi part form ################################################################################################## */

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Mark bootstrap-selects (buttons) that gets an error on validation: */
button.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

button {
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}

button:hover {
    opacity: 0.8;
}

#prevBtn {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    background-color: var(--color-secondary);
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: var(--color-primary);
    opacity: 1;
}


@media print {
    header {
        position: relative !important;
    }

    footer, #backtofilter /*, #reportDashboard*/
    {
        display: none;
    }

    #results > .panel {
        page-break-after: always;
    }

    .panel-default > .panel-heading {
        color: #333 !important;
        background-color: #f5f5f5 !important;
        border-color: #ddd
    }

    a, a * {
        color: var(--color-primary) !important;
    }

    h4 a, h4 a * {
        color: var(--color-secondary) !important;
    }

    a[href]::after {
        content: none;
    }

}