@charset "UTF-8";

.p-cookieconsent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	box-sizing: border-box;
	width: 100%;
	padding: 1em 5em;
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--color-prim);
	font-size: 0.875rem;
	z-index: 9999;
	overflow: hidden;
}

.p-cookieconsent__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.p-cookieconsent__text {
	flex: 1 1 auto;
	max-width: 100%;
	margin-right: 1em;
}

.p-cookieconsent__text a {
	color: var(--color-prim);
	opacity: .8;
	display: inline-block;
	padding: .2em;
	text-decoration: underline;
}

.p-cookieconsent__detail {
	width: 140px;
}

.p-cookieconsent__button {
	display: block;
	width: 100%;
	height: 35px;
	padding: .4em .8em;
	background-color: var(--color-prim);
	border-radius: 5px;
	color: #fff;
	font-size: .9em;
	font-weight: 700;
	border-width: 2px;
	text-align: center;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	.p-cookieconsent {
		padding: 1.2em;
		border-radius: 5px 5px 0 0;
	}

	.p-cookieconsent__inner {
		display: block;
	}

	.p-cookieconsent__text {
		margin-right: 0;
		margin-bottom: 1em;
	}

	.p-cookieconsent__detail {
		margin: 0 auto;
	}
}
