@font-face {
	font-family: "Pattrix Cookie Open Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/open-sans/OpenSans-SemiBold.ttf") format("truetype");
}

.pattrix-cookie-consent {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	width: 100%;
	padding: 30px 0;
	background: #1d1d1f;
	color: #fff;
	font-family: "Pattrix Cookie Open Sans", "Inter", sans-serif;
}

.pattrix-cookie-consent[hidden] {
	display: none;
}

.pattrix-cookie-consent__inner {
	display: flex;
	align-items: center;
	width: 75%;
	margin: 0 auto;
}

.pattrix-cookie-consent__copy {
	box-sizing: border-box;
	width: calc(100% - 160px);
	padding-right: 160px;
}

.pattrix-cookie-consent__title {
	margin: 0 0 8px;
	color: #fff;
	font: 400 18px/1.5 "Pattrix Cookie Open Sans", "Inter", sans-serif;
}

.pattrix-cookie-consent__text {
	margin: 0;
	color: #fff;
	font: 400 14px/26px "Pattrix Cookie Open Sans", "Inter", sans-serif;
}

.pattrix-cookie-consent__text a {
	display: inline-block;
	margin-left: 10px;
	color: #fff;
	font: inherit;
	text-decoration: underline;
}

.pattrix-cookie-consent__actions {
	width: 160px;
}

.pattrix-cookie-consent__button {
	position: relative;
	z-index: 2;
	display: block;
	box-sizing: border-box;
	width: 150px;
	min-height: 42px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid #ebebec;
	border-radius: 50px;
	background: transparent;
	color: #fff;
	font: 400 16px/40px "Pattrix Cookie Open Sans", "Inter", sans-serif;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: color .4s;
}

.pattrix-cookie-consent__button::before {
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #fff;
	content: "";
	transition: left .4s;
}

.pattrix-cookie-consent__button:hover,
.pattrix-cookie-consent__button:focus-visible {
	color: #1d1d1f;
}

.pattrix-cookie-consent__button:hover::before,
.pattrix-cookie-consent__button:focus-visible::before {
	left: 0;
}

.pattrix-cookie-consent__button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.pattrix-cookie-consent__button + .pattrix-cookie-consent__button {
	margin-top: 14px;
}

@media (max-width: 990px) {
	.pattrix-cookie-consent__copy {
		padding-right: 48px;
	}
}

@media (max-width: 767px) {
	.pattrix-cookie-consent {
		padding: 10px 0;
	}

	.pattrix-cookie-consent__inner {
		flex-wrap: wrap;
		width: calc(100% - 30px);
	}

	.pattrix-cookie-consent__copy {
		width: 100%;
		padding-right: 0;
	}

	.pattrix-cookie-consent__actions {
		display: flex;
		width: 100%;
		margin-top: 10px;
	}

	.pattrix-cookie-consent__button {
		margin-right: 10px;
	}

	.pattrix-cookie-consent__button + .pattrix-cookie-consent__button {
		margin-top: 0;
	}
}

@media (max-width: 340px) {
	.pattrix-cookie-consent__button {
		width: calc(50% - 5px);
		margin-right: 0;
	}

	.pattrix-cookie-consent__button + .pattrix-cookie-consent__button {
		margin-left: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pattrix-cookie-consent__button,
	.pattrix-cookie-consent__button::before {
		transition-duration: .01ms;
	}
}
