/*
Custom Anpassungen fuer NETZdinge.de Plugin "NETZdingeDE Ajax Suche (Live Suche)"
*/
.result-item {
    border: 1px solid lightgray;
    border-radius: 5px;
    > .row{
        margin: 3px;
        display: flex;
        align-items: center;
        .bild{
            min-width: 50px;
        }
        .warenkorb{
            margin-left: auto;
            form{
                max-width: 60px;
                margin-left: auto;
                button{
                    border-radius: 5px;
                }
            }
        }
    }
}
@media only screen and (max-width: 600px) {
  .result-item {
    > .row{
        .bild{
            display: none;
        }
        form {
            display: none;
        }
    }
  }
}