@media (min-width: 768px) {
	.calendar.mobile {
		display: none;
	}
}

@media (max-width: 767px) {
	#kalenderoefening.desktop {
		display: none;
	}	

	.calendar_question__image {
		width: 284px;
		height: 283px;
		background-image: url(../images/calendar.svg);
		display: flex;
		gap: 10px;
		justify-content: center;
		padding-top: 14px;
	}

	ul.calendar_questions {
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.calendar_question__header {
		text-align: center;
		margin-bottom: 27px;
	}

	.calendar_progress {
		font-size: 18px;
		color: black;
		line-height: 22px;
		font-weight: bold;
		margin-bottom: 12px;
	}

	.calendar_play_check {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
	}

	.calendar_month {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.calendar_nav_arrow {
		width: 16px;
		height: 28px;
		cursor: pointer;
	}

	.calendar_nav_arrow.prev {
		background-image: url(../images/arrow-prev.svg);
	}

	.calendar_nav_arrow.next {
		background-image: url(../images/arrow-next.svg);
	}

	.calendar_question {
		display: none;
	}

	.calendar_question.active {
		display: block;
	}

	.calendar_check {
		cursor: pointer;
		border-radius: 4px;
		border: 2px solid #828282;
		padding: 14px 17px;
		font-size: 14px;
		line-height: 17px;
		color: #828282;
		display: flex;
		gap: 11px;
	}

	.calendar_check:before {
		content: '';
		display: block;
		width: 16px;
		height: 16px;
		background-color: rgba(142, 142, 142, 0.15);
	}

	.calendar_check.correct {
		border: 2px solid #46C142;
		background: rgba(70, 193, 66, 0.15);
		box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.20);
	}

	.calendar_check.correct:before {
		background-image: url(../images/check-square.svg);
	}

	.calendar_check.incorrect {
		border: 2px solid #E24A40;
	}

	.calendar_check.incorrect:before {
		background-image: url(../images/cross-square.svg);
	}

	.month_number {
		width: 36px;
		height: 48px;
		font-size: 20px;
		font-weight: 600;
		color: black;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.month_name {
		width: 178px;
		height: 48px;
		border: none;
		padding: 15px 17px;
		color: #828282;
		font-size: 14px;
		background-color: transparent;
	}

	ul.calendar_months {
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.calendar_month {
		display: none;
	}

	.calendar_month.active {
		display: flex;
	}

	img.audio[src*=play] {
		content: url(../images/play-new.svg) !important;
	}

	img.audio[src*=pauze] {
		content: url(../images/pause-new.svg) !important;
	}
}
