.tuserco-channel-popup,
.tuserco-channel-popup * {
	box-sizing: border-box;
}

.tuserco-channel-popup[hidden] {
	display: none;
}

.tuserco-channel-popup {
	position: fixed;
	inset: 0;
	z-index: 100010;
	display: grid;
	place-items: center;
	padding: 24px;
}

.tuserco-channel-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(6 31 66 / 72%);
	backdrop-filter: blur(4px);
}

.tuserco-channel-popup__dialog {
	position: relative;
	width: min(100%, 570px);
	padding: 40px;
	border-top: 4px solid #14a6df;
	background: #fff;
	box-shadow: 0 28px 80px rgb(5 31 68 / 28%);
	color: #10264f;
}

.tuserco-channel-popup__close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #53657d;
	font: 400 30px/1 Arial, sans-serif;
	cursor: pointer;
}

.tuserco-channel-popup__eyebrow {
	margin: 0 0 12px;
	color: #048fca;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.tuserco-channel-popup h2 {
	margin: 0;
	color: #10264f;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
}

.tuserco-channel-popup__dialog > p:not(.tuserco-channel-popup__eyebrow) {
	margin: 18px 0 0;
	color: #4b5f78;
	font-size: 17px;
	line-height: 1.65;
}

.tuserco-channel-popup__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
}

.tuserco-channel-popup__primary,
.tuserco-channel-popup__secondary {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
}

.tuserco-channel-popup__primary {
	background: #12a150;
	color: #fff;
}

.tuserco-channel-popup__secondary {
	background: transparent;
	border-color: #cbd7e4;
	color: #10264f;
}

.tuserco-channel-popup__primary:hover,
.tuserco-channel-popup__primary:focus-visible {
	background: #0b8741;
	color: #fff;
}

.tuserco-channel-popup__secondary:hover,
.tuserco-channel-popup__secondary:focus-visible,
.tuserco-channel-popup__close:hover,
.tuserco-channel-popup__close:focus-visible {
	color: #048fca;
}

body.tuserco-channel-popup-open {
	overflow: hidden;
}

@media (max-width: 600px) {
	.tuserco-channel-popup {
		align-items: end;
		padding: 12px;
	}

	.tuserco-channel-popup__dialog {
		padding: 32px 22px 24px;
	}

	.tuserco-channel-popup h2 {
		font-size: 26px;
	}

	.tuserco-channel-popup__dialog > p:not(.tuserco-channel-popup__eyebrow) {
		font-size: 16px;
	}

	.tuserco-channel-popup__actions {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.tuserco-channel-popup:not([hidden]) .tuserco-channel-popup__backdrop {
		animation: tuserco-channel-fade 180ms ease-out both;
	}

	.tuserco-channel-popup:not([hidden]) .tuserco-channel-popup__dialog {
		animation: tuserco-channel-enter 220ms ease-out both;
	}
}

@keyframes tuserco-channel-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes tuserco-channel-enter {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}
