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

	.drag_columns.mobile {
		display: none;
	}
}

@media (max-width: 767px) {
	.table-container-outer.desktop {
		display: none;
	}

	ul.column_question__choices {
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
		gap: 14px;
	}

	.column_choice {
		border-radius: 4px;
		border: 2px solid #828282;
		flex: 1;
		padding: 15px 17px;
		display: flex;
		gap: 11px;
	}

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

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

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

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

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

	.eindtoets:not(.eindtoets_gecontroleerd) .column_choice.incorrect {
		border-color: #828282;
		background-color: #b6dbec;
	}

	.eindtoets:not(.eindtoets_gecontroleerd) .column_choice.incorrect:before {
		background-image: none;
	}

	.eindtoets:not(.eindtoets_gecontroleerd) .column_choice.correct {
		border-color: #828282;
		box-shadow: none;
		background-color: #b6dbec;
	}

	.eindtoets:not(.eindtoets_gecontroleerd) .column_choice.correct:before {
		background-image: none;
	}

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

	.column_question__header {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 22px;
	}

	.column_question__option {
		position: relative;
		height: 182px;
		width: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.audio_slepen {
		margin-top: 11px;
		text-align: center;
	}

	.column_question__dots {
		padding: 0;
		margin: 0;
		margin-top: 20px;
		list-style: none;
		display: flex;
		gap: 7px;
		justify-content: center;
		margin-bottom: 27px;
	}

	.column_question__dots li {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: #D9D9D9;
	}

	.first_active .column_question__dots li:first-child {
		background-color: #5699B8;
	}

	.column_questions:not(.first_active):not(.last_active) .column_question__dots li:nth-child(2) {
		background-color: #5699B8;
	}

	.last_active .column_question__dots li:last-child {
		background-color: #5699B8;
	}

	.nav_arrow_columns {
		width: 16px;
		height: 28px;
		flex: 0 0 16px;
	}

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

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

	.has_correct_answer .nav_arrow_columns.next,
	.eindtoets .nav_arrow_columns.next {
		visibility: visible;
	}

	.column_question {
		display: none;
	}

	.column_question.active {
		display: block;
	}

	.first_active .nav_arrow_columns.prev {
		visibility: hidden;
	}

	.last_active .nav_arrow_columns.next {
		visibility: hidden !important;
	}

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

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