#redirect_to_broadsign {
	--blue: #3078f0;
	border: 0 none;
	border-radius: 20px;
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	padding: min(60px, 10vw) min(60px, 6vw);
	width: 80vw;

}

#redirect_to_broadsign .px_logo {
	margin-bottom: 30px;
	max-width: 80%;
	width: 240px;
}

#redirect_to_broadsign p {
	font-size: clamp(16px, 5vw, 20px);
}

#redirect_to_broadsign .countdown_msg {
	color: #3078f0;
	font-size: 16px;
	display:flex;justify-content:center;
	margin:40px 0;
	align-items: center;
}

#redirect_to_broadsign #countdown{
	margin:0 0.5ch;
}

#redirect_to_broadsign .close_btn {
	appearance: none;
	background: transparent none;
	border: 0px;
	border-radius: 5px;
	color: #3078f0;
	display: inline-block;
	font-family: "Lato", helvetica;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	line-height: 1em;
	outline-offset: 3px;
	padding: 0;
	text-align: center;
	text-decoration: underline;
	transition: opacity 0.3s ease 0s;
	width: auto;
}

#redirect_to_broadsign .close_btn:hover {
	opacity: 0.6;
}

#redirect_to_broadsign .align-right {
	margin: 0;
	text-align: right;
}

#redirect_to_broadsign a {
	font-size: inherit;
	font-weight: bold;
	outline: none;
}

#redirect_to_broadsign a:hover {
	opacity: 0.6;

}

@property --perc {
	syntax: '<percentage>';
	inherits: false;
	initial-value: 100%;
}

@keyframes timer-run {
	from {
		--perc: 100%;
	}

	to {
		--perc: 0%;
	}
}

#redirect_to_broadsign .clock {
	animation: timer-run 10s linear forwards;
	aspect-ratio: 1;
	background: conic-gradient(var(--blue) var(--perc), white 0);
	var(--blue) 0);
	border-radius: 50%;
	width: 20px;margin-right:1ch;
	display:inline-block;
}