@media only screen and (max-width: 991px){
    section.webshop_notification_container .webshop_notification_container_inner .webshop_notification_description{
        /* autoprefixer: off */
        display: block;
        display: -moz-box;
        display: -webkit-box;

        -moz-box-orient: vertical;
        box-orient: vertical;
        -webkit-box-orient: vertical;

        line-clamp: 1;
        -moz-line-clamp: 1;
        -webkit-line-clamp: 1;
        /* autoprefixer: on */

        overflow: hidden;
        /*text-overflow: ellipsis;*/

        height: 20px;
        flex-basis: calc(100% - 30px);
        transition: .3s;
    }
}