@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: lighter;
    font-display: swap;
    src: url('../fonts/anton-v23-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/anton-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/anton-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/anton-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/anton-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/anton-v23-latin-regular.svg#Anton') format('svg'); /* Legacy iOS */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #2A2E2F;
}

a {
    font-family: 'Anton', sans-serif;
    font-size: 1.5em;
    text-decoration: none;
    color: #2A2E2F;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Anton', sans-serif;
    font-weight: lighter;
    margin: 0px;
}

h1 {
    font-size: 3.6em;
    font-weight: lighter;
    line-height: 1;
}

header {
    text-align: center;
    padding: 80px 0 0 0;
}

header .logo-container {
    display: flex;
    height: 120px;
    justify-content: center;

}

header .logo {
    position: relative;
    height: 120px;
    width: 308px;
}

header .logo img {
    position: absolute;
    right: 5px;
    top: -25px;
}

.header-title-first {
    position: absolute;
    top: 0;
    left: 25px;
}

.header-title-second {
    position: absolute;
    top: 54px;
    left: 0px;
}

header p {
    font-size: 1.2em;
    margin: 10px 0 0 0;
}

header li {
    position: relative;
    display: inline-block;
    margin-right: 2em;
}

header li:last-child {
    padding-right: 0;
}

header li:hover {
    border-top: .35em solid #205DC4;
}

header li.selected {
    border-top: .35em solid #205DC4;
}

.container {
    width: 80%;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
}

.col {
    max-width: 33%;
    flex: auto;
}

.col img {
    width: 100%;
    height: auto;
}


.btn {
    cursor: pointer;
    font-size: 1.5em;
}

.img-container {
    position: relative;
    width: 100%;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

footer li img {
    height: 25px;
    width: 25px;
}

@media screen and (max-width: 800px) {
    .col {
        flex: 1;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .col {
        flex: 100%;
        max-width: 100%;
    }
}

@keyframes up-right {
    0% {
        transform: scale(1);
        opacity: .25
    }
    50% {
        transform: scale (1, 5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: .25;
    }
}

@keyframes blinker {
    50% {
      opacity: 0;
    }
}

.vorgang-header {
    display: flex;
    align-items: center;
}

.vorgang-header-live {
    animation: blinker 3s linear infinite;
    display: none;
    border-radius: 15%;
    background-color: red;
    color: white;
    font-size: 10px;
    padding: 3px;
    font-weight: bold;
    margin-left: 5px;
    opacity: 0.6;
}

.vorgang-canvas {
    display: flex;
    align-items: center;
    display: none;
}

.vorgang-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}


.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

