.section-dealer-search-teaser  {position: relative;max-height:50vh;overflow:hidden;margin:60px 0 0 0;}

.section-dealer-search-teaser .bg-image {
    width:100%;
    height:100%;
}

.section-dealer-search-teaser picture,
.section-dealer-search-teaser img {
    max-width: 100%;
    width:100%;
    height:100%;
    object-fit:cover;
}

.section-dealer-search-teaser .content {
    position: absolute;
    top: 50%;
    transform:translate(-50%,-50%);
    left:50%;
    width: 100%;
    padding: 5%;
    text-align: center;
}

.section-dealer-search-teaser .content h2 {
    color: white;
}

.section-dealer-search-teaser .content .searchfield {
    display: flex;
    justify-content: center;
}
.section-dealer-search-teaser .content label {
    position: relative;
    display: inline-block;
}

.section-dealer-search-teaser .content label span {
    position: absolute;
    top: 16px;
    left: 15px;
    transition: all 0.2s ease-out;
    pointer-events: none;
    color: #666;

}

.section-dealer-search-teaser .content input[type="text"] {
    width: 277px;
    height: 55px;
    padding: 15px 10px 5px;
    border-radius:0;
    border:none;
}

.section-dealer-search-teaser .content input[type="text"]:focus-visible {
    outline-color:var(--bs-primary);
    border-radius:0;
    border-color:var(--bs-white);
}

.section-dealer-search-teaser .content label:focus-within span,
.section-dealer-search-teaser .content input[type="text"]:not(:placeholder-shown) ~ span {
    top: 5px;
    left: 10px;
    font-size: 12px;
    color: #333;
}

@media screen and (max-width: 960px) {
    .section-dealer-search-teaser .content input[type="text"] {
        width:auto;
    }
}


