.custom-item-content {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    height: 320px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .custom-item-content {
        height: 1000px;
    }
}

.carousel-control.left,
.carousel-control.right {
    background: none;
    filter: none;
    outline: 0;
    opacity: 1;
}

.carousel-control .glyphicon:before {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    /* border: 1px solid #444444; */
    line-height: 38px;
    font-size: 30px;
    color: #673ab7;
    cursor: pointer;
}

.carousel-control.left {
    position: absolute;
    left: 15px;
    transform: translate(-79%, 0%);
}

.carousel-control.right {
    position: absolute;
    right: 15px;
    transform: translate(72%, 0%);
}

.carousel-control:hover .glyphicon:before {
    background: #673ab7;
    color: white;
}

.feed {
    background: #f7f7f7;
    color: #444444;
    /* padding: 10px; */
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
    min-height: 220px;
}
.feed-content {
    overflow: hidden;
    max-height: 180px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.feed-footer {
    padding-bottom: 10px;
}

.feed a {
    text-decoration: none;
    color: #444444;
}

.feed a:visited {
    color: #673ab7;
}

.feed a:hover {
    color: #673ab7;
}
