/* 
	Specific styles for components
*/

/* Read more component */

.foldable-description {
	position: relative;
	padding: 0;
	padding-bottom: 15px;
}

.foldable-description .description-text {
	box-sizing: border-box;
	font-family: verdana;
	font-size: 12px;
	height: auto;
	line-height: 21px;
	padding: 10px;
}

.foldable-description.folded .description-text {
	max-height: 100px;
	overflow: hidden;
}

.folding-button {
	color: #fe3100;
	font-family: verdana;
	font-size: 12px;
	margin-left: 10px;
	position: absolute;
}

.folding-button .read-more-label {
	background: url(../images/read-more.svg);
	background-position: center left;
	background-repeat: no-repeat;
	display: inline-block;
	padding-left: 8px;
}

.folding-button .read-less-label {
	background: url(../images/read-less.svg);
	background-position: center left;
	background-repeat: no-repeat;
	display: inline-block;
	padding-left: 8px;
}

.fading-mask {
	background: url(../images/read-more-mask.png) 
				bottom transparent repeat-x;
	background-size: contain;
	bottom: 0;
	display: block;
	height: 50px;
	left: 0;
	position: absolute;
	right: 0;
}

/* End read more component */