
@page {
    margin: 0.25in;
    size: 8.5in 11in;
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    color: inherit;
    font-size: 12px;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    height: auto;
    padding: 0.5rem;
    min-height: 100vh;
    --fail: 130, 0, 0;
    --pass: 0, 130, 255;
    --gray: 118,118,118;
    --success: 0, 130, 0;
    --prime: 55, 108, 139;
}
input[type=button][type=submit] {
    display: none !important;
}
summary, input, label, select, textarea, button, form, th, td, .collection, .collection-item, .card {
    page-break-inside: avoid;
}
h4 {
    font-size: 2rem;
    text-transform: capitalize;
}
table {
    width: 100%;
}
li, ul {
    list-style-position: inside;
}
th {
    padding: 0.25rem;
    text-align: left;
    text-transform: capitalize;
}
td {
    padding: 0.25rem;
    text-align: left;
    border: 1px solid rgba(var(--gray), 0.5);
}
summary {
    display: flex;
    padding: 0.5rem;
    flex-wrap: wrap;
    flex-direction: row;
}
summary> :first-child {
    flex-grow: 1;
    flex-basis: 100%;
}
input, select, textarea {
    opacity: 1;
    width: 100%;
    border: none;
    padding: 0.25rem;
    font-size: 12px;
    background-color: transparent;
    border-bottom: 1px solid rgba(var(--gray), 0.5);
}
label {
    color: rgb(var(--gray));
    text-transform: capitalize;
}
details {
    padding: 0.25rem;
    border: 1px solid rgba(var(--gray), 0.5);
}
button {
    color: black;
    margin: 0.25rem;
    border-radius: 3px;
    padding: 0.3rem 0.6rem;
    text-transform: capitalize;
    background-color: transparent;
    border: 1px solid black;
}
button.active {
    background-color:rgb(var(--prime));
}
.row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.col-sm-2 {
    flex-basis: calc(100%/6);
}
.col-sm-3 {
    flex-basis: calc(100%/4);
}
.col-sm-4 {
    flex-basis: calc(100%/3);
}
.col-xs-6, .col-sm-6 {
    flex-basis: 50%;
}
.col-sm-8 {
    flex-basis: calc(100%/1.5);
}
.col-xs-12:not(.col-sm-6) {
    flex-basis: 100%;
}
.print-n {
    display: none !important;
}
.questions > details {
    margin: 0 0.5rem;
}
.card {
    padding: 0.5rem;
}
.expression, .expression * {
    display: flex;
    align-items: center;
}
.expression > div {
    margin: 1rem;
    color: rgb(var(--gray));
}
.expression > div:nth-last-child(1) {
    margin: 0;
}

.chip {
    border: none;
    padding: 0.25rem;
    /* font-weight: bold; */
    border-radius: 3px;
    margin: 0.5rem 0.25rem;
    background-color: rgba(0,0,0,0.1);
}
.chip.pass {
    color: white;
    background-color: rgb(var(--pass));
}
.chip.fail {
    color: white;
    background-color: rgb(var(--fail));
}
.chip.success  {
    color: white;
    background-color: rgb(var(--success));
}
.chip:first-of-type {
    margin-left: 0;
}
.chip:last-of-type {
    margin-right: 0;
}
.title {
    font-size: 1.1rem;
    font-weight: bold;
}
.tip-text {
    font-size: 0.85rem;
    color: rgb(var(--gray));
}
.overline {
    color:black;
    font-size: 0.9rem;
    text-transform: capitalize;
}
