/**
 * Read More Shortcode Styles
 */
.readmore-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.readmore-content.expanded {
	max-height: 5000px;
	transition: max-height 0.5s ease-in;
}

.readmore-text-less {
	display: none;
}

