﻿* {
    font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
    font-size: 11pt;
}

body {
    font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
    font-size: 10pt;
    color: #00000;
    margin: 0;
    padding: 0;
    background-color: FFF;
}

.header {
    font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
    font-size: 16pt;
}

h1 {
    color: black;
    background-color: #96CDFF; /* TODO create separate special class for this*/
}

figure {
    margin: 0;
}

.h1,
h1 {
    font-size: 16pt;
}

.h2,
h2 {
    font-size: 14pt;
}

.stack > * {
    margin-top: 0;
    margin-bottom: 0;
}

    .stack > * + * {
        margin-top: 1rem;
    }

.stack[data-gap="0"] > * + * {
    margin-top: 0;
}

.stack[data-gap="1"] > * + * {
    margin-top: 0.25rem;
}

.stack[data-gap="2"] > * + * {
    margin-top: 0.5rem;
}

.stack[data-gap="3"] > * + * {
    margin-top: 1rem;
}

.stack[data-gap="4"] > * + * {
    margin-top: 1.5rem;
}

.stack[data-gap="5"] > * + * {
    margin-top: 3rem;
}

a, a:visited {
    color: #0033FF;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: #6A5ACD;
    }

.danger,
.error {
    color: red;
}

.error {
    font-weight: bold;
    font-family: Arial;
    font-size: 14pt;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 0.8em;
}

.underline {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
    text-align: start;
}

.border-0 {
    border: none;
}

.pad-r-5 {
    padding-right: 3rem;
    padding-inline-end: 3rem;
}

.pad-0 {
    padding: 0;
}

.width-100\% {
    width: 100%;
}

.height-1000px {
    height: 1000px;
}

.question-list > li > *:last-child {
    float: right;
}


.question-list > li + li {
    margin-top: 2em;
}

.list-dashed {
    list-style-type: '- ';
}

.no-bg {
    background-color: transparent;
}

.d-inline-block {
    display: inline-block;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.indent-16 {
    margin-left: 16em;
}

/* linkButton */
.btn-link {
    align-items: center;
    background-color: rgba(0,0,0,0);
    border-style: none;
    box-sizing: content-box;
    color: #0033FF;
    cursor: pointer;
    display: inline;
    font: inherit;
    padding: 0;
    perspective-origin: 0 0;
    text-align: start;
    transform-origin: 0 0;
    text-decoration: none;
    -moz-appearance: none;
    appearance: none;
}

    .btn-link:focus,
    .btn-link:hover {
        text-decoration: underline;
        color: #6A5ACD;
    }

    .btn-link[disabled],
    .btn-link--disabled {
        color: black;
        cursor: default;
        -webkit-logical-height: 1em; /* Chrome ignores auto, so we have to use this hack to set the correct height  */
        -webkit-logical-width: auto; /* Chrome ignores auto, but here for completeness */
    }


/* for single column of input groups, etc where each child is separated by a border */
.boxed-stack {
    border: 1px solid #8680A2;
}

    .boxed-stack > *:not(.pad-0) {
        padding: 0.66em;
    }

    .boxed-stack > * + * {
        border-top: 1px solid #8680A2;
    }

/* Hiding class, making content visible only to screen readers but not visually */
/* "sr" meaning "screen-reader" */

.sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:95%;
    
}
.question span {
    flex: 1;
    margin-right: 20px;
  } 


  ol.question-listy {
    margin-left: 4%;
}

.question-listy > li + li {
    margin-top: 4em;
}

.rightSidePad{
    padding-right:3%;
}

.question-list > li > *:last-child {
    float: right;
}