.list-container {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	align-items: center;
}

.flex-container {
	display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}

.list-text {
	display: flex;
	align-items: center;
}

.list-title {
	flex: 1;
}

.list-item {
	display: flex;
    padding: 20px 0;
    transition: all 1s ease;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
	height: 70px;
}

.list-item:hover .list-title {
	font-weight: bold;
	font-style: italic;
}

.list-icons {
	margin-left: auto;
	margin: 0 10px 0 10px;
}

.list-icon {
	border: 1px solid;
	border-radius: 50%;
	text-align: center;
	width: 40px;
	height: 40px;
	padding: 4px 4px 1px 4px;
}

.list-icon-hover {
	border: 2px solid;
	border-radius: 50%;
	text-align: center;
	width: 30px;
	height: 30px;
	padding: 5px 0px 0px 0px;
	font-weight: bold;
}

.list-item:hover .list-icon {
	display: none;
}

.list-icon-hover i {
	font-weight: bold;
}

.list-icon-hover, .list-read-more {
	display: none;
}

.list-item:hover .list-icon-hover, .list-item:hover .list-read-more {
	display: inline-block;
}

.list-item:hover .list-read-more a {
	font-weight: 100;
    font-style: italic;
}

.fixed-image {
	display: block;
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    top: 40px;
}

#fixedImage {
	width: 200px;
}