:root {
    --body-font-family: 'Parkinsans';
    --primary-color: #70001f;
    --secondary-color: #c2a31f;
    --primary-color-alternative: #faf7e8;
    --secondary-color-alternative: #edde7d;
    --accent-color: #cc87e5;
    --accent-color-alternative: #f5f775;

    --text-color: #000000;
    --text-color-alternative-1: #ffffff;
    --text-color-alternative-2: #92732e;
    --text-color-alternative-3: #70001f;

    --ui-card-color: #ffffff;
}

body {
    font-family: var(--body-font-family), sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 0;
    background: #fff url('../img/big-ellipse.svg') no-repeat;
    background-size: 100% auto;
    line-height: 1.5rem;
    color: var(--text-color);

    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 916px;
    margin: 0 auto;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1024px) {
    .btn:not(.btn-sm) {
        height: 56px;
        border-radius: 25px;
        letter-spacing: -2%;
        min-width: 100px;
    }

    a.btn:not(.btn-sm) {
        align-content: center;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-color-alternative-1);
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.5;
    color: var(--text-color-alternative-1);
}

.btn-secondary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color-alternative-1);
}

.alert.alert-info, .feedback {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 16px;
    color: var(--text-color-alternative-1);
}

.feedback {
    padding: 16px;
}

header {
    padding-top: 16px;
}

footer {
    padding: 32px;
    background-color: var(--primary-color);

    color: var(--text-color-alternative-1);
}

footer a {
    color: var(--text-color-alternative-1);
    text-decoration: none;
}

main {
    padding-top: 16px;
    padding-bottom: 16px;

    flex: 1;
}

.content {
    text-align: left;
}

.divider {
    display: block;
}

.divider-horizontal {
    height: 1px;
    width: 100%;
    background-color: rgba(212, 210, 201, 1);
}

.divider-vertical {
    width: 1px;
    background-color: var(--accent-color);
}

.page-menu a {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
}

.page-menu a:hover {
    opacity: 0.7;
}

.page-footer-menu a {
    display: block;
    text-decoration: none;
    color: var(--text-color-alternative-1);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

h1 {
    font-size: 1.8em;
}

h2 {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 1.4rem;
    margin-top: 1.4rem;
}

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

caption {
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
}

.logo {
    max-height: 5rem;
    display: block;
}

#containerantwoorden {
    margin: 0 auto;
    width: 450px;
    text-align: left;
}

.ui-card {
    background-color: var(--ui-card-color);
    border-radius: 32px;
    padding: 2.5rem 5rem;
    color: var(--text-color);

    box-shadow: 0 0 #0000, 0 0 #0000, 0 8px 24px 0 #00000029;;
}

form:not(.form-plain),
.form-input {
    background-color: var(--ui-card-color);
    border-radius: 16px;
    padding: 1rem;
    color: var(--text-color);

    box-shadow: 0 0 #0000, 0 0 #0000, 0 8px 24px 0 #00000029;;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (min-width: 1920px) {
    form:not(.form-plain),
    .form-input {
        border-radius: 32px;
        padding: 2.5rem 10rem;
    }
}

.uitslagvak {
    background-color:#E6E6E6;
    border-style: dotted;
    border-color: #999999;
    border-width: 1px;
    padding: 10px 10px 10px 10px;
}

.hint {
    font-style: italic;
}

table {
    border-color: transparent;
}

td {
    border-bottom: solid 1px #FFFFFF;
    padding: 4px;
}

#clockdiv{
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#clockdiv > div{
    padding: 10px;
    border-radius: 3px;
    background: #009bbf;
    display: inline-block;
}

#clockdiv div > span{
    padding: 15px;
    border-radius: 3px;
    background: #2b5860;
    display: inline-block;
}

#clock {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 15px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.5);
    color: black;
}

.smalltext{
    padding-top: 5px;
    font-size: 16px;
}

input,
textarea,
select {
    transition: background-color 0.5s ease-out;
}
input:optional,
textarea:optional,
select:optional{
    border-color: gray;
}
input:required,
textarea:required,
select:required{
    border-color: black;
}
input:invalid,
textarea:invalid,
select:invalid{
    border-color: red;
}

.form-control-inline {
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px;
}

.form-control-text {
    min-width: 50%;
    width: auto;
}

.form-check-label {
    cursor: pointer;
}

.striped-list > :nth-of-type(odd)  {
    background-color: #E6E6E6;
}

.cursor-pointer {
    cursor: pointer;
}

a.disabled {
    font-style: italic;
    pointer-events: none;
}
/*
dl.grid {
	display: grid;
	grid-template-columns: max-content auto;
}

dl.grid dt {
	grid-column-start: 1;
}

dl.grid dd {
	grid-column-start: 2;
}*/

dl.grid dt,
dl.grid dd {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
    border-bottom: dotted 1px #2b5860;
}

.row.required .col-form-label:after {
    content:" *";
    color:red;
}

.form.d-flex > .row {
    width: 100%;
}

.w-full {
    width: 100%;
}

.form .form-heading {
    width: 100%;
    order: 0;
}

.header {
    position: relative;
}

.admin ul.styled-list li {
    list-style-type: none;
}

.admin ul.styled-list li::before {
    content: "\00BB  ";
}

.admin .btn-nav {
    color: rgb( 255, 255, 255);
    font-weight: bold;
    background-color: rgba(0, 155, 191, 0.8);
}


.table-striped-2 tr:nth-child(4n+1), .table-striped-2 tr:nth-child(4n+2) {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.05);
}

a[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.5;
    color: currentColor;
    display: inline-block;  /* For IE11/ MS Edge bug */
    pointer-events: none;
    text-decoration: none;
}

.admin img.icon {
    height: 15px;
}

/**
Audio section
 */
.audio-recording-container {
    margin: 8px auto;
    display: inline-block;
    max-width: 100px;
    text-align: center;
}

.audio-recording-container.active,
.audio-play-container.active,
.listen.active,
.example.active {
    color: red;
}
.audio-recording-container label,
.audio-play-container label,
.listen-play-container label{
    display: block; font-style: italic;
}
.audio-recording-container .audio-controls {
    margin-top: 16px;
}

.audio-play-container audio {
    display: none;
}

.question-timer {font-size: 2em;}

.modal-dialog {
    border: solid 1px #3d666c;
    border-radius: 4px;
}

/* modal */
.modal-content .modal-header {
    background: #3d666c;
}

.modal-header,
.modal-header h1,
.modal-header button {
    color: #fff !important;
}

[data-bs-toggle="tooltip"] {
    cursor: default;
}

.p-8 { padding: 32px; }
.my-8 { margin-top: 32px; margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }