@charset "utf-8";
/* CSS Document */

.reglamento {
	max-height: 100vh;
	overflow: hidden;
	position: relative;
	transition: max-height 0.5s ease;
}

.reglamento.expandido {
	max-height: 20000px;
}

.fade-bottom {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	background: linear-gradient(to bottom, transparent, #ffffff);
	pointer-events: none;
}