div#response {
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 5px;
}
.itemBox {
    cursor: pointer;
    display: flex;
}
.itemImage {
    /* min-height: 60vw; */
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 66%;
}
.car-highlights ul, ul#parameters {
    list-style-type: none;
    padding-left: 0;
}
ul#parameters {
    /* list-style-type: none; */
    column-count: 1;
}
@media (min-width: 768px) {
    ul#parameters {
        column-count: 2;
    }
}
@media (min-width: 1200px) {
    ul#parameters {
        column-count: 3;
    }
}
ul#parameters li {
    /* display: inline-block; */
    font-weight: bold;
    list-style-type: disclosure-closed;
    margin-left: 1.5em;
}

ul#parameters li:not(:last-child):after {/* content: '|'; */padding: 0 1em;}


@media (min-width: 600px) {
    div#response{
        grid-template-columns: repeat(2, 1fr);
    }
    .itemImage {
    /* min-height: 30vw; */
    }
}

@media (min-width: 768px) {
    div#response{
        grid-template-columns: repeat(3, 1fr);
    }
    .itemImage {
        /* min-height: min(20vw, 260px); */
        background-repeat: no-repeat;
        background-size: contain;
    }
    .car-highlights ul {
        column-count: 2;
        column-rule: dotted 1px #333;
    }

}
@media (min-width: 1020px) {
    .car-highlights ul {
        column-count: 3;
    }

}

.itemTitel {
    margin-top: 1em;
    color: #000000;
}
.itemTitel div[aria-label="adTitle"] {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.itemTitel div {
    font-weight: normal;
}
#pages a:not(:last-child) {
    /* margin-right: 1em; */
}
a.pageButton {
    padding: 1em;
    border: 1px solid #d34932;
    text-decoration: none;
}
a.pageButton.active {
    cursor: pointer !important;
}
a.pageButton:not(.active) {
    background-color: #d34932;
    color: white;
    font-weight: bold;
}

div.pagination {
    text-align: center;
    padding: 2em 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

a.pageButton:hover {
    text-decoration: none;
}
a.pageButton.active:hover {
    background-color: #d34932;
    color: white;
}
.itemContent {
    margin: 1em;
    border: 1px solid #D34932;
    padding: 0.5em;
    flex-direction: column;
    justify-content: space-between;
}
.itemContent:hover {
    /* background-color: rgba(211,73,50,0.2); */
    background-color: #F7F7F7;
}
.price {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

span.brutto {
    font-weight: bold;
}


div#carImg {
    display: flex;
    overflow: hidden;
}

div#carImg a:not(:first-child) {
    display: none;
}

@media (min-width: 576px) {
    div#carImg {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        grid-column-gap: 5px;
        grid-row-gap: 5px;
    }
    div#carImg a:not(:first-child) {
        display: block;
    }
}
@media (min-width: 992px) {
    div#carImg {
        grid-template-columns: repeat(3, 1fr);
    }
}


div#carImg > a {
    display: flex;
    width: 100%;
    /* min-height: 100px; */
}
div#carImg > a > div {
    width: 100%;
    padding-top: 66%;
    background-repeat: no-repeat;
    background-size: cover;
}




.car-prices span.preis-brutto {font-size: 24px;font-weight: bold;display: block;}

.car-prices span {
    display: block;
    padding-bottom: 0.3em;
}



.wrapper-checkbox {
    display: flex;
    margin-bottom: 1em;
    align-items:center;
}
.wrapper-checkbox label {
    margin-left: 10px;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 0;
}
.wrapper-checkbox .checkbox-input[type=checkbox] {
    border-radius: .25em;
    height: 1.5rem;
    width: 1.5rem;
}

/* TODO Color ändern */
.wrapper-checkbox .checkbox-input[type=checkbox]:checked {
    background-color: #D34932  !important;
    border-color: #D34932 !important;
}
.wrapper-checkbox .checkbox-input[type=checkbox] ~ label.checkbox:before {
    background-color: red;
    box-shadow:0 0 3px red;
}
.wrapper-checkbox .checkbox-input[type=checkbox]:focus ~ label.checkbox:before {
    box-shadow:0 0 3px red;
}
.wrapper-checkbox .checkbox-input[type=checkbox]:active ~ label.checkbox:before {
    box-shadow:0 0 3px red;
    background:rgba(255,0,0,.3);
}
label.checkbox:before {
    border-radius: 0.25rem;
}
label.checkbox:before {
    background-color:#ccc;
}

#reused_form input {
    min-width: 60%;
    float: right;
}

label.form-label {
    font-size: 1em;
}

#searchForm select[disabled] {
    color: lightgrey;
    background-color: transparent;
}

#searchForm select.form-control {
    padding: .375rem .75rem;
}