body.adify-screensetup {
	background: #222222;
	color: #fff;
	height: 100%;
}

body.adify-screensetup .logo {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 101;
	margin: 30px;
}

body.adify-screensetup .screenno {
	position: absolute;
	bottom: 15px;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 14px;
	opacity: 0.7;
	z-index: 101;
}

body.adify-screensetup .logo img {
	max-height: 10px;
	display: inline-block;
}

body.adify-screensetup .introvideobox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	overflow: hidden;
	background: #020202;
}

body.adify-screensetup .blankcover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 201;
}

body.adify-screensetup .introvideobox #introvideo {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

body.adify-screensetup .screencontent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	overflow: hidden;
	display: none;
	background: rgb(117,61,203);
	background: -moz-linear-gradient(180deg, rgba(117,61,203,1) 0%, rgba(143,30,120,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(117,61,203,1) 0%, rgba(143,30,120,1) 100%);
	background: linear-gradient(180deg, rgba(117,61,203,1) 0%, rgba(143,30,120,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#753dcb",endColorstr="#8f1e78",GradientType=1);
}

body.adify-screensetup .centerbox {
	margin: 0 auto;
	text-align: center;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
	align-items: center;
	justify-content: center;
}

body.adify-screensetup .paircode {
	font-size: 3vmin;
}

body.adify-screensetup .paircode .qr {
	display: inline-block;
	margin: 0 auto;
	padding: 3vmin;
	background: #ffffff;
	border-radius: 5px;
}

body.adify-screensetup .paircode .qr img {
	width: 30vmin;
}

body.adify-screensetup .paircode .codeholder {
	display: inline-block;
	margin: 0 auto;
}

body.adify-screensetup .paircode .or {
	position: relative;
	display: flex;
	margin-top: 1.3em;
	text-align: center;
	align-items: center;
	justify-content: center;
}

body.adify-screensetup .paircode .or .hr {
	flex: 1;
}

body.adify-screensetup .paircode .or .hr:first-child { padding-left: 10px; }
body.adify-screensetup .paircode .or .hr:last-child { padding-right: 10px; }

body.adify-screensetup .paircode .or .hr hr {
	opacity: 0.3;
	height: 1px;
	border: 0;
	border-top: 1px dashed #fff;
}

body.adify-screensetup .paircode .or .label {
	opacity: 0.8;
	padding: 0 10px;
	font-size: 14px;
}

body.adify-screensetup .paircode p.details {
	padding-top: 1em;
}

body.adify-screensetup .paircode p.bt {
	margin: 0;
	font-weight: 700;
	padding-bottom: 1.1em;
	font-size: 0.7em;
}

body.adify-screensetup .paircode .code {
	font-size: 3em;
	font-weight: 800;
	line-height: 1;
	background: rgba(255,255,255,0.1);
	padding: .4em .6em;
	border: 1px solid #fff;
	border-radius: 5px;
	letter-spacing: .1em;
}

body.adify-screensetup .connectionstatus {
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	text-transform: uppercase;
	border-radius: 20px;
	padding: 4px 12px;
	position: absolute;
	bottom: 10px;
	left: 10px;
	font-weight: 800;
}

body.adify-screensetup .connectionstatus:before {
	font-family: 'Font Awesome 5 Pro';
	margin: 0 6px 0 0;
	content: "\f1eb";
}

body.adify-screensetup.online .connectionstatus { color: #5c9b37; }
body.adify-screensetup.offline .connectionstatus { color: #aaaaaa; }

body.adify-screensetup.offline .screencontent {
	background: rgb(170,170,170);
	background: -moz-radial-gradient(circle, rgba(170,170,170,1) 0%, rgba(204,204,204,1) 100%);
	background: -webkit-radial-gradient(circle, rgba(170,170,170,1) 0%, rgba(204,204,204,1) 100%);
	background: radial-gradient(circle, rgba(170,170,170,1) 0%, rgba(204,204,204,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aaaaaa",endColorstr="#cccccc",GradientType=1);
}

body.adify-screensetup.offline .paircode {
	opacity: 0.3;
}

body.adify-screensetup.offline .paircode .code {
	text-decoration: line-through;
}

@media all and (max-width: 600px), (max-height: 600px) {
	body.adify-screensetup .logo {
		margin: 20px;
	}
	body.adify-screensetup .paircode p.bt {
		font-size: 14px;
	}
	body.adify-screensetup .connectionstatus {
		font-size: 15px;
	}
}

@media all and (max-width: 500px) {
	body.adify-screensetup .connectionstatus {
		font-size: 13px;
	}
}

@media all and (max-width: 400px) {
	body.adify-screensetup .connectionstatus {
		bottom: auto;
		top: 12px;
		left: 12px;
	}
}

@media all and (max-width: 350px) {
	body.adify-screensetup .paircode p.bt {
		font-size: 13px;
	}
	body.adify-screensetup .connectionstatus {
		font-size: 13px;
	}
}

@media all and (max-height: 420px) {
	body.adify-screensetup .qrholder {
		display: none;
	}
}