.absences {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	min-height: 50rem;
	margin-top: 1rem;
}

.absences .list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	opacity: 0;
	transition: opacity 0.35s ease;
	min-width: 40rem;
}

.absences .list.show {
	opacity: 1;
}

.absences .abs-day {
	font-size: 1.8rem;
	padding: 1.5rem 2rem;
	border-radius: 1.2rem;
	outline: 1px solid rgb(241 241 241);
	box-shadow: 1px 1px 5px rgb(235, 235, 235), inset -1px -1px 5px rgb(251 251 251);
}

.absences .date {
	padding-bottom: 0.5rem;
	font-weight: 600;
}

.absences .nav {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 4.5rem;
	user-select: none;
	gap: 1.5rem;
}

.absences button {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.2rem;
	font-weight: 400;
	background-color: var(--white-sw);
	box-sizing: content-box;
	border: none;
	padding: 0;
	color: var(--text-gray-sw);
	height: 3.3rem;
	width: 3.3rem;
	transition: outline 0.05s ease, transform 0.05s cubic-bezier(.2, .8, .4, 1);
}

.absences button:active {
	transform: translateY(0.2rem);
}

.absences button:disabled {
	cursor: default;
	transform: translateY(0);
}

.absences button.arrow:disabled {
	opacity: 0.15;
}

.absences .number {
	cursor: pointer;
	border-radius: 3rem;
}

.absences .number:hover {
	outline: 3px solid var(--blue);
	color: var(--black-sw);
}

.absences .current {
	outline: 3px solid var(--blue);
}


.absences img {
	height: 100%;
	width: 100%;
}

.absences .arrow {
	cursor: pointer;
}

@media screen and (max-width: 1250px) {
	.absences .nav {
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 820px) {
	.absences{
		align-items: normal;
	}
	.absences .list{
		min-width: 0;
	}
	.absences .abs-day {
		font-size: 1.7rem;
	}
}