.p_consent__popup {
	position: fixed;
	z-index: 999;
	bottom: 2em;
	left: 2em;
	width: 100%;
	max-width: 400px;
	background-color: #000; /* $white */
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
	border-radius: 20px;
	padding: 2em;
	overflow-y: auto;
	max-height: 100vh;
}

.p_consent__popup__title {
	font-size: 1.3em;
}

.p_consent__popup__text {
	padding-top: 15px;
}

.p_consent__popup__buttons {
	display: flex; /* @include flex */
	flex-direction: row;
	gap: 15px;
	justify-content: flex-start;
	align-items: flex-start;

	margin-top: 30px;
	position: relative;
	z-index: 999;
}

.p_consent__popup__button {
	padding: 10px 20px;
	background-color: #e30613; /* $color_1 */
	color: #ffffff; /* $white */
	cursor: pointer;
}

.p_consent__popup__button__2 {
	background-color: #6c757d; /* $color_2 */
}

/* media query (device mixin vervangen) */
@media (max-width: 768px) {
	.p_consent__popup {
		left: 0;
		bottom: 0;
		width: 100%;
		max-width: unset;
		height: fit-content;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.p_consent__popup__buttons {
		flex-wrap: wrap;
	}
}