.p_consent__page {
	padding: 100px 7%;
}

/* device(1050px) */
@media (max-width: 1050px) {
	.p_consent__page {
		padding: 100px 5%;
	}
}

.p_consent__page__header {
	margin-bottom: 60px;
	max-width: 1050px;
}

.p_consent__page__config__item {
	display: block;
	margin: 15px 0;
	max-width: 550px;
	cursor: pointer;
	width: fit-content;
}

.p_consent__page__config__item__switch {
	display: flex;
	flex-direction: row;
	gap: 7.5px;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 15px;
}

.p_consent__page__config__item__switch p {
	font-weight: bold;
}

.p_consent__page__config__item__switch__label {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 17px;
}

.p_consent__page__config__item__switch__label input {
	opacity: 0;
	width: 0;
	height: 0;
}

.p_consent__page__config__item__switch__label input:checked + .p_consent__page__config__item__switch__label__switch {
	background-color: #007bff; /* $color_1 */
}

.p_consent__page__config__item__switch__label input:checked + .p_consent__page__config__item__switch__label__switch::before {
	-webkit-transform: translateX(13px);
	-ms-transform: translateX(13px);
	transform: translateX(13px);
}

.p_consent__page__config__item__switch__label input:focus + .p_consent__page__config__item__switch__label__switch {
	box-shadow: 0 0 1px #007bff; /* $color_1 */
}

.p_consent__page__config__item__switch__label__switch {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 34px;
}

.p_consent__page__config__item__switch__label__switch::before {
	position: absolute;
	content: '';
	height: 13px;
	width: 13px;
	left: 2px;
	bottom: 2px;
	background-color: #ffffff; /* $white */
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 50%;
}

.p_consent__page__config__buttons {
	display: flex;
	flex-direction: row;
	gap: 15px;
	justify-content: flex-start;
	align-items: center;
}

.p_consent__page__policy {
	margin-top: 60px;
}

.p_consent__page__policy iframe {
	width: 100%;
	height: calc(100vh - 200px);
/* rgba($color_1, 0.25) vervangen → voorbeeldkleur */
	background: linear-gradient(90deg, rgba(0, 123, 255, 0.25), #ffffff);
	background-size: 200% 100%;
	animation: moveGradient 2s infinite linear;
}

.p_consent__page__policy__item {
	margin-top: 15px;
	max-width: 768px;
}

.p_consent__page__policy__item .p_consent__page__policy__item {
	padding-left: 30px;
}

.p_consent__page__policy__item ul {
	padding-left: 1em;
}

.p_consent__page__policy__item a {
	color: black;
	text-decoration: underline;
}

.p_consent__page__config__buttons__text {
	max-height: 0;
	overflow: hidden;
	transition: 0.5s;
	padding-top: 10px;
}

@keyframes moveGradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}