.pt-consent,
.pt-consent * {
	box-sizing: border-box;
}

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

.pt-consent-manage[hidden] {
	display: none;
}

.pt-consent {
	align-items: center;
	background: #fff;
	border: 1px solid #dfe4eb;
	border-radius: 18px;
	bottom: 20px;
	box-shadow: 0 22px 70px rgba(12, 23, 48, .2);
	color: #14213d;
	display: flex;
	font-family: inherit;
	gap: 24px;
	left: 50%;
	max-width: 920px;
	padding: 20px;
	position: fixed;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	z-index: 99999;
}

.pt-consent__copy {
	flex: 1;
}

.pt-consent__copy strong {
	display: block;
	font-size: 16px;
	margin-bottom: 3px;
}

.pt-consent__copy p {
	color: #637083;
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

.pt-consent__copy a {
	color: #e94520;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 5px;
}

.pt-consent__actions {
	display: flex;
	gap: 8px;
}

.pt-consent__actions button {
	border: 1px solid #dfe4eb;
	border-radius: 10px;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	min-height: 44px;
	padding: 0 16px;
}

.pt-consent__reject {
	background: #fff;
	color: #14213d;
}

.pt-consent__accept {
	background: #14213d;
	border-color: #14213d !important;
	color: #fff;
}

.pt-consent__actions button:focus-visible {
	outline: 3px solid rgba(255, 90, 54, .35);
	outline-offset: 3px;
}

.pt-consent-manage {
	background: #14213d;
	border: 0;
	border-radius: 999px;
	bottom: 14px;
	box-shadow: 0 9px 28px rgba(12, 23, 48, .22);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	left: 14px;
	min-height: 36px;
	padding: 0 13px;
	position: fixed;
	z-index: 99998;
}

.pt-consent-manage:focus-visible {
	outline: 3px solid rgba(255, 90, 54, .35);
	outline-offset: 3px;
}

@media (max-width: 680px) {
	.pt-consent {
		align-items: stretch;
		bottom: 10px;
		flex-direction: column;
		gap: 15px;
		padding: 18px;
		width: calc(100% - 20px);
	}

	.pt-consent__actions {
		flex-direction: column-reverse;
	}
}
