.dm-couponTeaser {
    font-family: var(--headlineFont);
    max-height: 290px;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    font-size: 1.3rem;
    font-weight: bold;
}

.dm-couponTeaser::-webkit-scrollbar {
    display: none;
}

.dm-couponTeaser__listItem a {
    display: list-item;
    background-position: 100%;
    padding: 5px 10px;
    margin-bottom: 5px;
    position: relative;
    background: var(--lightGrey);
    color: var(--black);
}

.dm-couponTeaser__itemPicture {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}
.dm-couponTeaser__itemPictureWrapper {
    padding: 3px 10px;
    display: inline-flex;
    width: 60px;
    vertical-align: middle;
    background: var(--white);
    height: 40px;
}


.dm-couponTeaser__itemDescription {
    vertical-align: middle;
    display: inline-flex;
    max-width: 210px;
}

.dm-couponTeaser__listItem a:hover {
    background: var(--brandColor);
    color: var(--white);
}

.dm-couponTeaser__listItem a:after {
    content: ">>";
    color: var(--white);
    position: absolute;
    padding-top: 17px;
    font-size: 1rem;
    right:0;
    top:0;
    bottom:0;
    background:var(--brandColor);
    width: 25px;
    text-align: center;
    font-weight: normal;
}

@media (max-width: 767px) {
    .dm-couponTeaser {
        margin-left: var(--mobileMargin);
        margin-right: var(--mobileMargin);
    }
}