.read-more-toggle {
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
}

.read-more-toggle:active {
    color: #005177;
}


div.read-more {
	display: block !important;
}

a.read-more-toggle {
	z-index: 5;
	position: relative;
}

.read-more::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	right: 0;
	background: linear-gradient(180deg,rgba(255, 255, 255, 0) 4%, rgb(255, 255, 255) 85%);
}


.read-more-expanded::after {
	display: none;
}