* {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    --color-mint: #93C3AE;
    --color-koralle: #EEB7AF;
    --color-anthrazit: #555;
    --color-weiss: #fff;
    --color-rot: #b5033b;
    --font-headline: 'Muthea';
}

body {
    background-color: var(--color-weiss);
    /*background-image: filter(url("video/background.jpg"), opacity(0.5));*/
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0px;
    padding: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
}

.mainContainer {
    width: 90%;
    height: 90%;
    border: 0px solid #f00;
    background-color: transparent;
    position: absolute;
    left: 5%;
    top: 5%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.logoContainer {
    width: 100%;
    height: auto;
    background-color: transparent;
    margin: 0px;
    margin-bottom: 30px;
    border: 0px solid #f00;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
    top: 10px;
    position: absolute;
}

.logo {
    width: 40vmin;
    height: auto;
    background-color: transparent;
    margin: 20px;
}

.line {
    width: 58vmin;
    height: auto;
    background-color: transparent;
}

.headline {
    color: var(--color-weiss);
    font-size: 60px;
}
.headline {
    color: var(--color-mint);
    margin: 20px 0px 0px 0px;
    font-size: 5vmin;
    font-family: var(--font-headline);
    /*text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);*/
    line-height: 3vmin;
}
.subline{
    height: 30px;
    color: var(--color-text-subline);
    font-size: 12px;
    /*text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);*/
    line-height: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 10px;
    border: 0px solid #f00;
}

.titel {
    color: var(--color-koralle);
    font-size: 6vmin;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.text {
    color: #f00;
    font-size: 12px;

}

.registerText {
    color: var(--color-anthrazit);
    font-size: 12px;
}

.error {
    color: var(--color-anthrazit);
    font-size: 15px;
}

.container {
    width: calc(100% - 20px);
    height: auto;
    background-color: rgba(147, 195, 174, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    text-align: center;
    display: block;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    /*background-image: url(img/snowflakes_mint_30.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top 0% right 0%;
    background-blend-mode: multiply;*/
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media only screen and (min-width: 500px) {
    .container {
        width: calc(500px - 20px);
    }
}

video,
audio {
    width: 100%;
    height: auto;
    background-color: transparent;
    margin-top: 10px;
    border-radius: 5px;
    position: relative;
}

.downloadButton {
    cursor: pointer;
    width: 100%;
    height: 50px;
    color: var(--color-weiss);
    background-color: var(--color-mint);
    margin: 10px 0px;
    border-radius: 20px;
    border-style: none;
    position: relative;
    font-size: 15px;
}

.downloadButton:hover {
    color: var(--color-weiss);
    background-color: var(--color-koralle);
}

.codeInput {
    cursor: pointer;
    width: 100%;
    height: 50px;
    color: var(--color-koralle);
    border: 2px solid var(--color-mint);
    margin-top: 10px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    font-size: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.codeInput:hover {
    border: 2px solid var(--color-koralle);
}

.input2 {
    cursor: pointer;
    width: 100%;
    height: 50px;
    color: var(--color-main);
    border-style: none;
    color: var(--color-koralle);
    border: 0px solid var(--color-mint);
    margin-top: 10px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    font-size: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.bgElement1 {
    background-color: transparent;
    background-image: url(img/Element1.webp);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: top 0px left 0px;
    position: fixed;
    z-index: -10;
    width: 100%;
    height: 100vh;
}

.bgElement2 {
    background-color: transparent;
    background-image: url(img/Element2.webp);
    background-repeat: no-repeat;
    background-size: 60% auto;
    background-position: bottom 0px right 0px;
    position: fixed;
    z-index: -10;
    width: 100%;
    height: 100%;
}

.footer {
    width: 100%;
    height: 40px;
    background-color: transparent;
    margin: 0px;
    border: 0px solid #f00;
    bottom: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    color: var(--color-mint);
    font-size: 12px;
}

a {
    text-decoration: none;
    color: var(--color-mint);
}

a:hover {
    color: var(--color-koralle);
}

/* The checkmarkContainer */
.checkmarkContainer {
    width: auto;
    height: 50px;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0px;
    border: 0px solid #f00;
    text-align: left;
    float: left;
    color: var(--color-anthrazit);
    margin-top: 20px;
}

/* Hide the browser's default checkbox */
.checkmarkContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 20px;
    border: 2px solid var(--color-mint);
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.checkmarkContainer input:checked~.checkmark {
    background-color: var(--color-mint);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkmarkContainer input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkmarkContainer .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

select.codeInput {
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
}


/* Admin Bereich */
.adminContainer {
    width: calc(100% - 20px);
    height: 600px;
    background-color: rgba(147, 195, 174, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
    text-align: center;
    display: block;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    /*background-image: url(img/snowflakes_mint_30.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top 0% right 0%;
    background-blend-mode: multiply;*/
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: scroll;
    padding: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    color: #000;
    font-size: 12px;
}

table,
th,
td {
    border: 0px solid var(--color-anthrazit);
}

th,
td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid var(--color-mint);
}

th {
    background-color: transparent;
    color: var(--color-anthrazit);
}

td {
    width: 10px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-anthrazit);;
    border-bottom: 1px solid var(--color-mint);
}

td:nth-child(5) {
    color: var(--color-mint);
}
li {
    list-style: none;
    margin-bottom: 4px;
}
input[type="checkbox"] {
    height: 30px;
    position: relative;
    -webkit-appearance: none;
}

input[type="checkbox"] {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 24px;
    line-height: 1.3;
    position: relative;
}

input[type="checkbox"]:before {
    width: 60px;
    height: 30px;
    border-radius: 30px;
    border: 0px solid #ddd;
    background-color: var(--color-koralle);
    content: "";
    margin-right: 15px;
    transition: background-color 0.5s linear;
    z-index: 5;
    position: absolute;
    left: 0px;
}

input[type="checkbox"]:after {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #fff;
    content: "";
    transition: margin 0.1s linear;
    box-shadow: 0px 0px 5px #aaa;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
}

input[type="checkbox"]:checked:before {
    background-color: var(--color-mint);
}

input[type="checkbox"]:checked:after {
    margin: 0 0 0 30px;
}

input[type="number"] {
    width: 50px;
    height: 26px;
    color: var(--color-anthrazit);
    background-color: transparent;
    border-style: none;
    border: 1px solid var(--color-mint);
    border-radius: 10px;
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
}

.adminContainer input[type="text"] {
    height: 26px;
    color: var(--color-anthrazit);
    background-color: transparent;
    border-style: none;
    border: 1px solid var(--color-mint);
    border-radius: 10px;
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
    }

.adminSaveButton, .adminDeleteButton {
    cursor: pointer;
    width: 80px;
    height: 25px;
    color: var(--color-weiss);
    background-color: var(--color-main);
    margin: 2px 0px;
    border-radius: 10px;
    border-style: none;
    position: relative;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.adminSaveButton {
    background-color: var(--color-mint);
}

.adminDeleteButton {
    background-color: var(--color-koralle);
}

.adminSaveButtton:hover, .adminDeleteButton:hover {
    color: var(--color-anthrazit);
    background-color: var(--color-weiss);
}

.userIDbutton {
    width: 100%;
    height: 26px;
    color: var(--color-anthrazit);
    background-color: transparent;
    border-style: none;
    border: 0px solid var(--color-mint);
    border-radius: 10px;
    text-align: center;
    text-align-last: center;
}
.userIDbutton:hover {
    color: rgba(85, 85, 85, 0.5);
    /*color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    background-color: rgba(180, 180, 180, 0.2);*/
}c