
body.page-blocking-sh li img{
	margin: 10px 0;
}
body.page-rh-instructions .button.center{
	display: flex;
	align-items: center;
	width: fit-content;
	margin: 10px auto;
}
h1.icon:before {
	background-image: url(../../images/pages/support-id/icons/download.svg);
}


/* ================ instructions-compact ========================= */

body.page-instructions-compact {
	background: white;
}
.instructions-compact{
	position: relative;
	overflow: hidden;
}
.instructions-compact:before {
	position: absolute;
	content: '';
	left: -100%;
	right: -100%;
	top: -100%;
	bottom: 47%;
	background: #f5f8fd;
	z-index: -1;
	transform: rotate(-13deg);
}
.instructions-compact h1{
	text-align: center;
	margin: 20px 0 15px 0;
}
.instructions-compact h2{
	text-align: center;
	color: #2256B1;
	margin: 15px 0;
}
.instructions-compact .steps{
	text-align: left;
	margin: 40px -10px 20px -10px;
}
.instructions-compact .steps .item{
	position: relative;
	margin: 5px 10px;
	width: 300px;
	background-color: white;
	box-shadow: 0 0 15px rgb(50 121 246 / 22%);
	border-radius: 5px;
	padding: 20px;
}
.flex-container .item:empty{
	padding:0;
	background-color: transparent;
}
.instructions-compact .steps .media{
	min-height: 205px;
}
.instructions-compact .steps h3{
	margin: 0 0 15px 0;
	font-size: 22px;
	font-weight: bold;
	text-align: left;
}
.instructions-compact .steps h3 .number{
	display: inline-block;
	background-color: #3279F6;
	border-radius: 50%;
	color: white;
	width: 30px;
	padding: 0 0 0 3px;
	text-align: center;
	margin-right: 6px;
	line-height: 1.5;
	min-width: 30px;
	font-size: 20px;
}
.instructions-compact .steps p{
	font-size: 16px;
}
.instructions-compact .extra{
	margin: 30px 0;
	text-align: center;
	font-size: 20px;
}
.instructions-compact .extra .terms{
	display: block;
	font-size: 16px;
	margin: 10px 0;
}

@media screen and (max-width: 1100px), (max-height: 900px) {
	.instructions-compact .steps .media{
		min-height: 0;
	}
	.instructions-compact .steps img{
		max-height: 150px;
		margin: 0 auto;
		display: block;
	}
}
@media screen and (max-width: 700px) {
	.instructions-compact .extra .button{
		font-size: 18px !important;
	}
}

/* arrow */
.instructions-arrow{
	display: none;
}

body.arrow-active{
	overflow: hidden;
	cursor: pointer;
}
body.arrow-active header,
body.arrow-active footer,
body.arrow-active main{
	filter: blur(1px);
}
body.arrow-active:before{
	position: fixed;
	content: '';
	left: 0;
	bottom: 0;
	top:0;
	right:0;
	background-color: rgba(0,0,0,0.7);
	z-index: 99;
}
body.arrow-active .instructions-arrow{
	position: fixed;
	display: block;
	right: 50px;
	top: 30px;
	width: 120px;
	height: 215px;
	z-index: 100;
	background: url(../../images/pages/spyhunter-instructions/arrow.svg?v=2) no-repeat center center;
	background-size: 165px auto;
	padding: 75px 10px 87px 10px;
	color: white;
	text-transform: uppercase;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	word-break: break-word;
	animation: downarrow 0.6s infinite alternate ease-in-out;
}

@keyframes downarrow {
	0% { transform: translateY(0); }
	100% { transform: translateY(1em); }
}

/* ================ instructions ================================= */

ol.instructions{
	margin: 20px 0;
	padding: 0;
	counter-reset: installCounter;
}
ol.instructions li{
	position: relative;
	min-height: 31px;
	margin: 60px 0;
	padding-left: 40px;
	overflow-y: hidden;
	list-style: none;
}
ol.instructions li:before{
	position: absolute;
	content: counter(installCounter);
	counter-increment: installCounter;
	left: 0;
	top: 3px;
	font-size: 35px;
	line-height: 1;
	color: #3279F6;
}
/* media */
ol.instructions li .media{
	float: right;
	margin: 0 0 5px 10px;
	width: 50%;
}
ol.instructions li img.media{
	float: right;
	margin: 0 0 5px 10px;
	max-width: 50%;
	width: auto;
}
ol.instructions li .media img{
	max-width: 100%;
}
.small-terms{
	display: inline-block;
	margin-top: 8px;
	font-size: 16px;
}
@media screen and (max-width: 800px){
	ol.instructions li img.media{
		float: none;
		display: block;
		margin: 0 auto 10px auto;
		max-width: 100%;
	}
	ol.instructions li .media{
		float: none;
		margin: 0 auto 10px auto;
		text-align: center;
		width: 100%;
	}
}
