.widget-scroll-container {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.widget-list {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 0;

    .list-item:first-child {
        margin-top: 10px;
    }

    .list-item {
        min-height: 100px;
        border-radius: 3px;
        padding: 15px 20px;
        background-color: #F9F9F9;
        box-shadow: 0px 0px 17px -7px rgba(0, 0, 0, 0.75);
        margin-bottom: 10px;

        &:hover {
            box-shadow: 0px 0px 17px -5px rgba(0, 0, 0, 0.75);
        }

        .link-item {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .top-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            height: 30px;
        }

        .img-container {
            width: 80%;
            height: 100%;

            img {
                max-width: 100%;
                max-height: 100%;
            }
        }

        .right-arrow {
            height: 18px;
            width: 15%;
        }

        .description {
            margin: 0;
            font-size: 13px;
        }
    }
}
