.scrolling-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

.scrolling-wrapper .card {
    display: inline-block;
}

.scrolling-wrapper-flexbox {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.scrolling-wrapper-flexbox .card {
    flex: 0 0 auto;
    margin-right: 3px;
}

.card {
    border: 2px solid #f4f4f4;
    width: 110px;
    height: 140px;
    background: #f4f4f4;
    margin-right: 15px;
    padding: 5px;
}

.scrolling-wrapper a {
    vertical-align: top;
}

.card div {
    text-wrap: wrap;
    font-size: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
    margin: 0;
    font-weight: bold;
    color: #000;
    line-height: 1;
    margin-top: 10px;
}

.scrolling-wrapper,
.scrolling-wrapper-flexbox {
    height: 200px;
    margin-bottom: 20px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-left: 10px;
}

.scrolling-wrapper::-webkit-scrollbar,
.scrolling-wrapper-flexbox::-webkit-scrollbar {
    display: none;
}

.promo-section.card {
    width: 60%;
    padding: 0px;
    height: 60px;
    max-width: 200px;
}

.promo-section.card div {
    line-height: 2;
    margin-top: 0px;
    text-align: left;
}

.promo-section.card .inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4px;
    text-align: left;
}

.scrolling-wrapper.home {
    height: 50px;
    margin-bottom: 0;
    padding-left: 20px;
    text-align: center;
}