body.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.header {
    position: relative;
    width: 100%;
    max-width: 1300px;
}

@media (min-width: 60rem) {
    main.move-up {
        position: relative;
        margin-top: -50px;
        z-index: 1;
        background-color: white;
    }
}

.language-warning {
    display: grid;
    align-items: center;
    grid-template-columns: 32px 1fr;
    gap: 1rem;
    background-color: var(--red-lightest);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--red);
}

.language-warning h3 {
    text-align: left;
    margin-bottom: 0.25rem;
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 3px;
    text-decoration-skip-ink: none;
}

.success-warning {
    display: grid;
    align-items: center;
    grid-template-columns: 32px 1fr;
    gap: 1rem;
    background-color: var(--cyan-lightest);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--cyan);
}

.language-warning,
.success-warning .text {
    display: flex;
    grid-column: 2;
    flex-direction: column;
}

.success-warning h3 {
    text-align: left;
    margin-bottom: 0.25rem;
    text-decoration: underline;
    text-decoration-color: var(--blue-darkest);
    text-decoration-thickness: 3px;
    text-decoration-skip-ink: none;
}

.partners {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}
.partners p {
    width: 50%;
    margin-top: 1.5rem;
    color: black
}
.esf {
    width: 100%;
    max-width: 400px;
}
.gmd {
    width: calc(100% * 325 / 400);
    max-width: 325px;
}
@media (max-width: 60rem) {
    .partners {
        flex-direction: column;
    }
    .partners p {
        width: 100%;
    }
}

.split {
    justify-content: flex-start;
}

.split figure img {
    width: 100%;
}

.main_info {
    padding: 80px 18px 0 18px;
}

.input_row {
    display: flex;
    flex-wrap: wrap;
}

.input_text {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 35rem) {
    .input_text {
        width: calc(50% - 5px);
    }
}

.a {
    margin-top: 100px;
}

.text-danger {
    display: table;
    font-size: var(--font-size-xs);

    margin: .313rem 0;
    padding: .313rem 1rem;

    border-radius: 4px;

    background-color: var(--red-light);
}

.hinweis {
    font-size: var(--font-size-xs);
    color: var(--grey-700);
    margin-bottom: 1rem;
}

.agreement {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stack {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.horizontal {
    flex-direction: row;
}

.align-center {
    align-items: center;
}

.align_left {
    align-items: flex-start;
}

.gap-spacing-4xl {
    gap: var(--spacing-4xl);
}

.gap-spacing-7xl {
    gap: var(--spacing-7xl);
}

.gap-spacing-xl {
    gap: var(--spacing-xl);
}

.gap-spacing-9xl {
    gap: var(--spacing-9xl);
}

.wrap {
    flex-wrap: wrap;
}

.justify_space_between {
    justify-content: space-between;
}

.justify_center {
    justify-content: center;
}

.checkbox-label {
    box-sizing: border-box;
    font-family: var(--font-family);
    line-height: var(--line-height-m);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-weight: 500;
}

.loading-animation {
    width: 200px;
    height: 200px;
    position: relative;
    display: block;
    transform-origin: center center;
    animation: rotation 4s infinite linear;
}

.loading-animation .circle {
    position: absolute;
    width: 40%;
    height: 40%;
    border-radius: 50%;
}

.loading-animation .circle:nth-child(1) {
    top: calc(50% - 20%);
    left: calc(50% - 20%);
    transform-origin: center center;
    transform: rotate(0turn) translate(-75%, 0);
    animation: first-circle 4s infinite linear alternate;
}

.loading-animation .circle:nth-child(2) {
    top: calc(50% - 20%);
    left: calc(50% - 20%);
    transform-origin: center center;
    transform: rotate(0.33turn) translate(-75%, 0);
    animation: second-circle 4s infinite linear alternate;
}

.loading-animation .circle:nth-child(3) {
    top: calc(50% - 20%);
    left: calc(50% - 20%);
    transform-origin: center center;
    transform: rotate(0.66turn) translate(-75%, 0);
    animation: third-circle 4s infinite linear alternate;
}

img.circle {
    border-radius: 100px;
}

@keyframes first-circle {
    from {
        transform: rotate(0turn) translate(-75%, 0);
    }

    to {
        transform: rotate(0turn) translate(-0%, 0);
    }
}

@keyframes second-circle {
    from {
        transform: rotate(0.33turn) translate(-75%, 0);
    }

    to {
        transform: rotate(0.33turn) translate(-0%, 0);
    }
}

@keyframes third-circle {
    from {
        transform: rotate(0.66turn) translate(-75%, 0);
    }

    to {
        transform: rotate(0.66turn) translate(-0%, 0);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@media (max-width: 640px) {
    /* .input_row {
        flex-direction: column;
    } */
}

@media (min-width: 60rem) {

    .split {
        justify-content: space-between;
    }

    .split>* {
        max-width: min(500px, calc(50% - 8px));
    }

    .half {
        max-width: calc(50% - 50px);
    }
}