* {
    font-family: Calibri, Helvetica, sans-serif;
}
body {
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    width: 100%;
    background-color: #fff;
    align-content: center;
    font-size: 80%;
}

a {
    color: #E2001A;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.l {
    text-align: left;
}
.c {
    text-align: center;
}
.r {
    text-align: right;
}
.b {
    font-weight: bold;
}
.nw {
    white-space: nowrap;
}

#alarm {
	position: fixed;
	top: 8vh;
        width: 96%;
        left: 0;
	border: 1px solid #ccc;
	padding: 2%;
	background-color: #eee;
        text-align: center;
        font-weight: bold;
        font-size: 150%;
}
#alarm.erfolg {
	border: 1px solid #093;
}
#alarm.fehler {
	border: 1px solid #E2001A;
}


.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ddd;
  border-top-color: orange;
  animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}


#toTop {
    position: fixed;
    right: 1vw;
    bottom: 1vh;
    font-size: 200%;
    border: 1px solid #E2001A;
    padding: 1vw 1vh;
    border-radius: 10%;
    background-color: #eee;
    text-decoration: none;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7vh;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1vh;
    background-color: #E2001A;
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}
header div {
    display: inline-block;
    height: 7vh;
    margin: 0;
    padding: 0;
}
#header_links {
    width: 25%;
    text-align: left;
}
#header_mitte {
    width: 50%;
    text-align: center;
}
#header_rechts {
    width: 25%;
    text-align: right;
}

header a {
    color: #fff;
}

#header_links i {
    margin-left: 3vw;
}
img.logo {
    height: 4vh;
    width: auto;
    margin-top: 1vh;
}
#open_mobinav {
    display: inline-block;
    font-size: 5vh;
    color: #fff;
    margin-right: 3vw;
}

main {
    margin: 2%;
    margin-top: 8vh;
    padding: 2%;
}

h1 {
    /*text-align: center;*/
}

/* Hauptmenü */
#mobilmenue {
    margin: 0;
    padding: 0;
}
#mobilmenue li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-size: 200%;
}
#mobilmenue li i {
    width: 10%;
    text-align: center;
    margin-right: 3vw;
}
#mobilmenue a {
}

/* Werkstatt */
h4 {
    font-size: 200%;
}
h4 a {
    font-size: 150%;
}
/* Tabellen */

table.liste {
    width: 100%;
}
table.liste tbody td {
    border-top: 1px solid #999;
    padding: 2%;
}
table.liste span.desc {
    display: inline-block;
    margin-left: 5%;
    font-size: 90%;
    color: #555;
}

table.liste td .fas {
    font-size: 150%;
}

/* Karten */
.card {
    padding: 2%;
    margin-bottom: 2%;
    border: 1px solid #ccc;
}
.card-reveal {
    display: none;
}
.card-action {
    display: none;
    text-align: right;
}
.card-action a {
    display: inline-block;
    margin-left: 5%;
    text-align: center;
    font-weight: bold;
    font-size: 150%;
}

.card-title {
    font-size: 150%;
}
.card-title .circlebutton {
    float: right;
    font-size: 150%;
}

/* bessere Formularansichten */
label {
    display: inline-block;
    width: 20%;
    margin-bottom: 10px;
}

input[type=text], input[type=password], input[type=file], input[type=submit], select {
    font-size: 150%;
}

input[type=password], select {
    width: 50%;
}

.uploadform label {
    /*font-size: 150%;*/
}
.uploadform input[type=file], .uploadform input[type=submit] {
    margin: 2%;
    /*font-size: 150%;*/
}


fieldset {
    font-size: 120%;
}


#artikeldetails {
    width: 80%;
    margin-left: 10%;
}