.componentslist {
	background: white;
	max-width: 556px;
}

.componentslist .item-img {
	width: 100px;
	flex-grow: 1;
	align-self: center;
	text-align: center;
}
.componentslist .item-data {
	width: 200px;
	flex-grow: 2;
	align-self: center;
}

.componentslist .item-container {
	cursor: pointer;
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding: 1% 0;
	-webkit-transition: all 0.4s; /* Safari */
    transition: all 0.4s;
}

.componentslist .item-container:hover {
	background: #eee;
}
.componentslist .item-img {
}

.componentslist .item-img img{
	width: 50px;
	margin: auto;
}
 
.componentslist .item-data {
	max-width: 600px;
}  
    
.item-data-first {
    color: black;
    display: block;
    max-height: 1.8rem;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2rem;
}

.item-data-second, .item-data-third {
    max-height: 1.3rem;
    overflow: hidden;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1rem;
    text-transform: none;
}



@media (min-width: 768px) { 
    .componentslist .item-img {
		width: 200px
	}
	.componentslist .item-data {
		width: 356px;
	}

	.item-data-first {
	    max-height: 4.8rem;
	    font-size: 1.3rem;
	    line-height: 2rem;
	}

	.item-data-second, .item-data-third {
		max-height: 1.3rem;
	    font-size: 1rem;
	    line-height: 1.3rem;
	}
	.componentslist .item-img img{
		width: 100px;
	}
}
	
    