form {
    z-index: 1;
    max-width: 64em;
}

#aaa {
    font-size: 2em;
}

ol, ul {
    padding-left: 1em;
    list-style: disc;
}

li {
    position: relative;
}

li::after {
    content: "✔";
    position: absolute;
    right: 0;
    font-size: 2em;
    transform: translate(0px, -0.4em);
    color: rgb(var(--colAccent01));
}

label {
    display: block;
    margin: 0.5em 1em;
    flex-direction: column;
    width: 100%;
    max-width: 30em;
    overflow: hidden;
    border-radius: 0.5em;
}

div:has(> video) {
    display: block;
    margin: 0.5rem 1rem;
    width: 100%;
    max-width: 30rem;
}

label.fileUpload {
    height: fit-content;
    position: relative;
}

label.videoUpload {
    position: absolute;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

input, textarea, select {
    width: 100% !important;
    max-width: 30em;
    color: rgb(var(--colUIText03));
    background-color: rgb(var(--colBG));
    font-size: 1em;
    line-height: normal;
    font-family: var(--fontFamily);
    font-weight: var(--fontWeight);
    letter-spacing: var(--letterSpacing);
    padding: 0.5em;
    border: none;
    border-radius: 0.5em;
    min-height: 2.5em;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-hyphens: auto;
    hyphens: auto;
}

input[type="file"] {
    appearance: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    /* display: none; */
    /* width: 0px !important; */
    /* height: 0px !important; */
}

select {
    cursor: pointer;
    border-right: 0.5em solid rgb(var(--colBG));
}

/* select:focus {
    box-shadow: 0 0 1px 1px rgb(var(--colAccent01));
    outline: none;
} */

select option {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    font-weight: normal;
}

select option:hover {
    background-color: rgb(var(--colAccent01));
    color: white;
}

select>*:hover {
    background-color: rgb(var(--colAccent01));
}

.flexWrapDiv {
    display: flex;
    flex-wrap: wrap;
}

.stretchedButton {
    width: 30em;
    margin: 0.5em 1em
}

.button {
    min-height: 2.5em;
    background: none;
    border: none;
    border-radius: 1.25em;
    cursor: pointer;
    color: rgb(var(--colUIText03));
    padding: 0.5em;
    text-align: center;
}

.button:hover {
    background-color: rgba(var(--colBG), 0.7);

}

.button:active {
    background-color: rgba(var(--colUIText03), 0.7) !important;
}

.button.button--grey {
    background-color: rgb(var(--colUIBack02));
    border-color: rgb(var(--colUIBack02));
    color: rgb(var(--colUIText01));
}

.button.button--grey:hover {
    background: rgba(var(--colUIBack02), 0.6);
    border-color: rgba(var(--colUIBack02), 0.6);
}

.button.button--green {
    background-color: rgb(var(--colPro01));
    border-color: rgb(var(--colPro01));
    color: rgb(240, 240, 240);
}

.button.button--green:hover,
.button.button--green.focus {
    background-color: rgba(var(--colPro01), 0.6);
}

.button.button--red {
    background-color: rgb(var(--colContra01));
    border-color: rgb(var(--colContra01));
    color: rgb(240, 240, 240);
}

.button.button--red:hover,
.button.button--red.focus {
    background-color: rgba(var(--colContra01), 0.6);
}

.button.button--yellow {
    background-color: rgb(var(--colAttention01));
    border-color: rgb(var(--colAttention01));
    color: rgb(var(--colUIBack03));
    font-weight: 400;
}

.button.button--yellow:hover,
.button.button--yellow.focus {
    background-color: rgba(var(--colAttention01), 0.6);
}

.button.button--bordered {
    border-color: rgb(var(--colUIText03));
    border: 1px solid rgb(var(--colUIText03));
}

.button.button--bordered:hover {
    background-color: rgba(var(--colUIText04));
    color: rgb(var(--colUIText01));
}

.button.button--bordered:hover svg {
    stroke: rgb(var(--colUIText01));
}

.button.button--spaced {
    margin: 0.3em;
    flex-grow: 1;
}

.button.button--wide {
    flex-grow: 1;
}

.button.button--full {
    width: 100%;
}

.button.button--small {
    padding: 0.5em;
    border: none;
    width: 2em;
    height: 2em;
}

.button__icon {
    background-color: transparent;
    height: var(--ButtonIconSize);
    width: var(--ButtonIconSize);
    flex-shrink: 0;
}

.button--attention,
.button--attention:hover {
    stroke: rgb(var(--colUIText02));
    color: rgb(var(--colUIText02));
}

.button.button--normal {
    padding: 0.5em;
    margin: 0.5em 0px;
    width: 100%;
    justify-content: left;
}

.button.button--silent {
    align-items: center;
    justify-content: left;
    padding-left: 0px;
}

.button.button--silent:hover {
    background: none !important;
    border-color: transparent;
}

.button--simple {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.25em;
    border-radius: 0.5em;
    padding: var(--ButtonPadding);
}

.button.button--centered {
    justify-content: center;
}

.button.button--normal:hover,
.button.button--simple:hover,
.button.button--silent:hover>.button--simple {
    background-color: rgb(var(--colUIBack04));
    border-color: rgb(var(--colUIBack04));
}

.button.button--active:not(.button.button--special):hover {
    background-color: rgb(var(--colUIBack01));
}

.button.button--accent:not(.inactive) {
    background-color: rgb(var(--colAccent01));
    border-color: rgb(var(--colAccent01));
    color: rgb(255, 255, 255);
}

button.button--accent:hover {
    background-color: rgba(var(--colAccent01));
    border-color: rgb(var(--colAccent01));
    filter: brightness(1.1) saturate(0.9);
    color: rgb(255, 255, 255);
}

.button.button--accent>.button__icon {
    stroke: rgb(255, 255, 255);
}

.bigRedAsterix {
    color: rgb(var(--colAccent01));
    font-size: 2em;
    line-height: 0.5em;
    top: 0.25em;
    position: relative;
}