:root {
    --red: #C8141E;
    --light-red: #EB4B32;
    --blue-link: #1478C8;
    --black: #000;
    --dark-grey: #656e7b;
    --input-grey: #ccc;
    --mid-grey: #dadde2;
    --mid-light-grey: #e5e5e5;
    --light-grey: #f5f5f5;
    --white: #fff;
}

.small-hero {
    border-radius: 2rem;
    background-image: url(https://www.a-trust.at/assets/images/red-box-background.svg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 2.5rem 4rem 4rem 4rem;
}

    .small-hero .breadcrumbs, .small-hero .breadcrumbs a {
        position: initial;
        color: #fff;
        padding: 0;
    }

    .small-hero h1 {
        padding-top: 1.5rem;
    }

.spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid #C8141E;
    border-right-color: transparent;
    border-radius: 50%;
    color: #C8141E;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
    margin-right: 20px;
}

.spinner-big {
    width: 3rem;
    height: 3rem;
}

.spinner-small {
    width: 1rem;
    height: 1rem;
    border: .15em solid #C8141E;
    border-right-color: transparent;
    margin-right: 1rem;
}

.default-button {
    display: inline-block;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.hide{
    display: none;
}

.orderbox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.inputbox {
    position: relative;
}

    .inputbox .clearInput {
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        border: none;
        height: 100%;
        margin-right: 0.25rem;
        cursor: pointer;
    }

        .inputbox .clearInput svg {
            height: 1.5rem;
            width: 1.5rem;
        }

    .inputbox .input {
        border: 1px solid var(--mid-grey);
        border-radius: 5px;
        padding: 0.75rem 0.5rem 0.5rem 0.5rem;
        margin: 0.5rem 0;
        font-size: 18px;
        outline: none;
        transition: border-color 200ms ease-in-out;
        width: 100%;
        background: var(--white);
    }

        .inputbox .input.filter {
            width: 100%;
        }

        .inputbox .input:focus {
            border-color: var(--dark-grey);
        }

        .inputbox .input.inputerror {
            border-color: #C8141E;
        }

        .inputbox .input.inputwarning {
            border-color: #C78914;
        }


.inputbox__infotext {
    margin-left: 0.5rem;
    font-size: 15px;
    line-height: 22px;
}

    .inputbox__infotext.error {
        color: #C8141E;
    }

    .inputbox__infotext.success {
        color: #32C814;
    }

.radiobox__infotext {
    margin-left: 0.5rem;
    font-size: 15px;
    line-height: 22px;
}

.inputbox label {
    position: absolute;
    left: 0.5rem;
    top: 1.4rem;
    transition: font-size 200ms ease-in-out, top 200ms ease-in-out;
    line-height: 1;
    padding: 0 0.5rem;
    cursor: text;
    color: #656e7b;
    background: var(--white);
}

.inputbox .input:focus ~ label,
.inputbox .input:not(:placeholder-shown).input:not(:focus) ~ label {
    top: 0.25rem;
    font-size: 12px;
}

.inputbox .input:disabled {
    background-color: var(--light-grey);
    color: var(--dark-grey);
}

    .inputbox .input:disabled:placeholder-shown ~ label {
        background-color: var(--light-grey);
        color: var(--dark-grey);
    }

.widerrufinfos ul {
    list-style-type: none;
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #000;
}

.widerrufinfos ul li{
    display: flex;
    align-items: flex-start;
}

.widerrufinfos ul img{
    height: 2rem;
}

.widerrufinfos p{
    color: #000;
}

.widerrufchoice{
    display:flex;
    justify-content: space-around;
    gap: 1rem;
}


.widerrufchoice .default-button.selected{
    background: #c8151e;
    color: #fff;
}

#access{
    margin-top: 4rem;
    text-align: center;
}

#noAccess{
    margin-top: 4rem;
}

.section {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.spacing {
    margin: 1rem 0;
}

.large-spacing {
    margin: 2rem 0;
}

.errorbox {
    border-radius: 2rem;
    padding: 2rem;
    background-color: #c8141e33;
    color: #c8141e;
    border: 1px solid #c8141e;
    scroll-behavior: smooth;
}

.successbox {
    border-radius: 2rem;
    padding: 2rem;
    background-color: #21832A33;
    color: #21832A;
    border: 1px solid #21832A;
    scroll-behavior: smooth;
}

    .successbox .text-body {
        color:#21832A;
    }

.flex{
    display: flex;
}

.flex-center{
    align-items: center;
}

.default-listing-block .flex img{
    height: 2rem;
}


p.text-body.black {
    color: #000;
}

