.alert.site-alert {
	margin-bottom: 15px;
	padding-left: 55px;
	padding-bottom: 35px;
    position: relative;
}
.site-alert .alert-img {
	position: absolute;
    font-size: 24px;
    left: 12px;
    text-align: center;
    max-width: 24px;
}
.site-alert .alert-img img {
	max-width: 24px;
}
.site-alert .flexi-item-edit {
	width: 100%;
	display: block;
}
.site-alert p:last-child {
	margin-bottom: 0;
}

.site-alert.truncate-this {
	max-height: 150px;
	overflow: hidden;
	transition: all 300ms ease;
	cursor: pointer;
}

.site-alert.truncate-this::after {
	position: absolute;
	content: "\f0d7";
	font-family: FontAwesome;
	width: 100%;
	height: 35px;
	left: 0;
	bottom: 0;
	text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
    line-height: 43px;
}

.site-alert.truncate-this.expanded {
	max-height: none;
}

.site-alert.truncate-this.expanded::after {
	content: "\f0d8";
}

.alert-content {
	display: block;
}