
/* ------------------ Estilos calendario ------------------------- */

#s-calendar {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#s-calendar > div {
	width: 85%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	gap: 20px;
}

#content-calendar {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#calendar {
	width: 100%;
}

#info-calendar {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--azul);
	padding: 40px;
}

#title-calendar {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}

#title-calendar h4 {
	font-size: 70px;
	color: #fff;
}

#title-calendar > div {
	font-size: 20px;
	display: flex;
	flex-direction: column;
	color: #fff;
}

#title-calendar > div > span {
	font-weight: bold;
}

#title-calendar > div > p {
	font-size: 20px;
	color: #fff;
	font-weight: normal;
}

#info-calendar > p {
	width: 100%;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #ffffff;
}

#envent-description {
	display: none;
}

#envent-description.shown {
	display: block;
}

#info-calendar > div {
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #ffffff;
}

.fc .fc-button-primary {
    background-color: var(--amarillo);
    border-color: var(--amarillo);
    color: #fff;
}

.fc .fc-button-primary:hover {
    background-color: var(--rojo);
    border-color: var(--rojo);
    color: #fff;
}

.fc .fc-button-primary:disabled {
    background-color: #606060;
    border-color: #606060;
    color: #fff;
}

.fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
    background-color: var(--rojo);
    border-color: var(--rojo);
    color: #fff;
}


/* ------------------ fin Estilos calendario ------------------------- */


@media screen and (max-width: 1024px) {
	#s-calendar > div {
		width: 100%;
		gap: 20px;
		flex-direction: column;
	}

	.fc .fc-toolbar-title {
		font-size: 20px;
	}

	#title-calendar h4 {
		font-size: 30px;
	}

	#title-calendar > div > p {
		font-size: 18px;
	}
}