* {
    margin: 0;
    padding: 0;
}

.list {
    list-style: none;
    /*width: 500px;*/
    /* color: #B6D7FF; */
    overflow-y:scroll;
    flex:1;
}

.list > .list-item {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list > .clickable {
    cursor: pointer;
}

.list > .list-item > .thumbnail {
    width: 120px;
    /* height: auto; */
}

.list > .list-item > .list-content{
    margin-left: 10px;
}

.list > .list-item > .list-content > .description {
    overflow: hidden;
    font-size:10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /*! autoprefixer: off */
    -webkit-box-orient: vertical;
}
			
.intro {
    padding: 20px;
    border-radius: 25px;
    color:#FFF;
    width: "100%";
    height: "100%";
    overflow: auto;
    box-sizing: "border-box";
    scrollbar-width: none; /* firefox */
    -ms-overflow-style: none; /* IE 10+ */
    overflow-x: hidden;
    overflow-y:unset;
    display: flex;
    flex-direction: column;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
}

.intro > .header {
    margin-bottom: 10px;
}

::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}