@import url("images.css");

body {
	overflow: hidden;
}

.container {
	max-width: 720px;
	padding-bottom: 25px;
}

.header {
	position: relative;
	padding-top: 20px;
}

html[dir=rtl] .header {
	direction: ltr;
}

.header .logo {
	max-width: 100px;
}

h1,
h2 {
	margin: 0;
	padding: 0;
	text-align: center;
}

h1 {
	font-size: 34px;
	padding-bottom: 30px;
	padding-top: 80px;
}

h2 {
	color: #261C6A;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.3;
	padding-bottom: 60px;
}

h1 span,
h2 span {
	display: block;
}

h1 .note,
h2 .note {
	display: block;
	font-size: 16px;
	font-weight: 400;
	margin-top: 12px;
}

.article,
.article ol,
.article ol li {
	margin: 0;
	padding: 0;
}

.article {
	box-shadow: 0 -2px 5px -2px rgba(45, 54, 75, 0.12), 0 2px 5px -2px rgba(45, 54, 75, 0.12), -2px 0 5px -2px rgba(45, 54, 75, 0.12), 2px 0 5px -2px rgba(45, 54, 75, 0.12);
	margin-bottom: 50px;
	overflow: hidden;
}

.article .hide {
	display: none !important;
}

.article .code input {
	text-align: center;
}

.article a.dl {
	display: table;
	position: relative;
	margin: 30px auto 41px auto;
	padding: 12px 40px 10px 35px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: #261C6A;
	background-color: #43ED9C;
	background-image: url('../images/dl-arrow-dark.png');
	background-position: calc(100% - 18px) 50%;
	background-repeat: no-repeat;
	border-radius: 22px;
	border-color: #43ED9C;
	box-shadow: 0 15px 35px -15px rgb(67 237 156 / 40%), 0 15px 35px -15px rgb(12 5 62 / 15%);
}

.article a.dl:not(.disabled):hover,
.article a.dl:not(.disabled):focus,
.article a.dl:not(.disabled):active {
	color: #261C6A;
	background-color: #3CD58C;
	border-color: #3CD58C;
	box-shadow: 0 15px 35px -15px rgb(60 213 140 / 75%), 0 15px 35px -15px rgb(12 5 62 / 25%);
	outline: none;
}

.article a.dl:not(.disabled):before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	height: 100%;
	width: 100%;
	color: #261C6A;
	background-color: #43ED9C;
	border-radius: 20px;
	border-color: #43ED9C;
	transition: all ease-out 0.2s;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.article a.dl:not(.disabled):hover:before,
.article a.dl:not(.disabled):focus:before,
.article a.dl:not(.disabled):active:before {
	height: calc(100% + (1rem/4));
	width: calc(100% + (1rem/4));
	background-color: #3CD58C;
	border-radius: 22px;
	border-color: #3CD58C;
}

.article h3 {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 600;
	text-align: center;
	padding: 35px 50px;
	margin: 15px 0 0 0;
	border-bottom: 1px solid rgba(216, 219, 229, .5);
}

.article ol {
	list-style: none;
	counter-reset: li;
}

.article ol li {
	/* border-bottom: 1px solid #D8DBE5; */
	border-bottom: 1px solid rgba(216, 219, 229, .5);
	font-weight: normal;
	min-height: 210px;
	padding: 70px 50px;
	position: relative;
	z-index: 1;
}

.article ol li .article-item-after {
	color: rgba(242, 242, 246, 0.66);
	font-size: 200px;
	font-weight: bold;
	left: -42px;
	opacity: 0.66;
	position: absolute;
	text-align: left;
	top: -30px;
	z-index: -10;
}

.article ol:only-child li:last-child .article-item-after {display: none}

.article ol li .article-item-before {
	font-weight: 600;
	color: #20C997;
	display: inline-block;
	width: 1.3em;
}

.article ol:only-child li:last-child .article-item-before {display: none}

.article ol:only-child li:not(.platform-option):last-child:before {
	content: '';
	float: left;
	display: inline-block;
	position: relative;
	width: 35px;
	height: 35px;
	background: url('../images/checkmark.svg');
	background-size: 35px 35px;
	margin: -5px 8px 0 -17px;
}

html[dir=rtl] .article ol:only-child li:not(.platform-option):last-child:before {
	clear: both;
	float: right;
	margin: -5px -17px 0 8px;
}

.article ol:only-child li:not(.platform-option):last-child {
	font-size: 22px;
	font-weight: bold;
	min-height: 1px;
}

.article ol li a {
	color: #20C997;
	text-decoration: underline;
}

.article ol li i {
	color: #8992AF;
	font-style: normal;
}

.article .input-wrap {
	display: block;
	width: 100%;
	max-width: 400px;
	position: relative;
}

.article input {
	border: solid 1px #EBEDF2;
	border-bottom: 1px solid #007BFF;
	border-radius: 5px;
	display: block;
	width: 100%;
	min-width: 200px;
	height: 60px;
	margin-top: 40px;
}

.article .input-message {
	position: absolute;
	display: none;
	top: -70px;
	left: 50%;
	min-width: 280px;
	height: 80px;
	padding: 30px 8%;
	font-size: 14px;
	white-space: nowrap;
	text-align: center;
	color: #FFFFFF;
	border-radius: 2px;
	background-color: #160E53;
	box-shadow: 0px 2px 6px 0 rgba(45, 54, 76, 0.4);
	transform: translateX(-50%);
}

.article .input-message.show {
	display: inline-block;
}

.article .input-message:after {
	background-color: #160E53;
	bottom: -7px;
	content: '';
	display: block;
	height: 15px;
	left: 50%;
	margin-left: -7px;
	position: absolute;
	transform: rotate(45deg);
	width: 15px;
}

.article .input-message-close {
	cursor: pointer;
	height: 10px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 10px;
}

.article .input-message-close:before,
.article .input-message-close:after {
	border-bottom: 1px solid #FFFFFF;
	content: '';
	display: block;
	height: 10px;
	position: absolute;
	top: -4px;
	width: 10px;
}

.article .input-message-close:before {
	left: -4px;
	transform: rotate(-45deg);
}

.article .input-message-close:after {
	left: 2px;
	transform: rotate(45deg);
}

.article .image-wrap {
	position: relative;
}

.platform-options {
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	color: #261C6A;
	display: block;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.platform-option {
	border-bottom: 5px solid transparent;
	cursor: pointer;
	width: 85px;
	height: 9px;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #261C6A;
	display: block;
	height: auto;
	width: auto;
	margin: 0;
	padding: 20px 20px 0 20px !important;
	line-height: 40px;
}

.platform-option:hover,
.platform-option.active {
	border-bottom: 5px solid #20C997;
}

.platform-option:before,
.platform-option:after {
	display: none !important;
}

.footer {
	background-color: #160E53;
	color: #A3A9BB;
	font-size: 13px;
	padding: 60px 0;
}

html[dir=rtl] .footer {
	direction: ltr;
}

.footer .wrapper {
	max-width: 690px;
}

.footer .separator {
	margin: 0 5px;
}

.footer a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer .wrapper:nth-child(2) {
	margin-top: 10px;
}

.pro-sec {
	box-shadow: 0 -2px 5px -2px rgba(45, 54, 75, 0.12), 0 2px 5px -2px rgba(45, 54, 75, 0.12), -2px 0 5px -2px rgba(45, 54, 75, 0.12), 2px 0 5px -2px rgba(45, 54, 75, 0.12);
	margin-top:10px;
	background: #fff;
  padding: 15px;
	text-align: center;
}
.product-name{    font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 6px;}
.product-license{
	font-size: 18px;
}
.disclosure
{
	margin-bottom: 0px !important;
}
@media only screen and (max-width: 768px) {
	.container {
		padding-left: 5px;
		padding-right: 5px;
	}

	.header {
		margin-bottom: 25px;
	}

	.article {
		margin-bottom: 40px;
		margin-top: 0;
		padding-bottom: 40px;
		padding-left: 10px;
		padding-right: 10px;
		padding-top: 0;
	}

	.article a.dl {
		text-align: center;
	}

	.article ol li {
		/*align-items: center;
		display: flex;
		flex-direction: column;
		justify-content: center;*/ /* @todo : try to wrap <li> elements to make flex working. It is bugged and not wrapping spans */
		padding: 40px 5px;
	}

	.article ol:only-child li:not(.platform-option):last-child:before {
		width: 30px;
		height: 30px;
		background-size: 30px 30px;
		margin: -2px 8px 0 0;
	}

	html[dir=rtl] .article ol:only-child li:not(.platform-option):last-child:before {
		margin: -2px 0 0 8px;
	}

	.article ol:only-child li:not(.platform-option):last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	h1,
	h2 {
		background: #FFFFFF;
		display: inline-block;
		padding-left: 50px;
		padding-right: 50px;
		width: 100%;
	}

	h1 {
		box-shadow: 0 -2px 5px -2px rgba(45, 54, 75, 0.12), 0 3px 0 0 white, -2px 0 5px -2px rgba(45, 54, 75, 0.12), 2px 0 5px -2px rgba(45, 54, 75, 0.12);
		padding-top: 40px;
	}

	h2 {
		box-shadow: 0 -3px 0 0 white, 0 3px 0 0 white, -2px 0 5px -2px rgba(45, 54, 75, 0.12), 2px 0 5px -2px rgba(45, 54, 75, 0.12);
		padding-bottom: 0;
	}

	.article .selector {
		min-width: 80vw;
	}

	.platform-options {
		flex-direction: column;
		margin-bottom: 0;
	}

	.platform-option {
		display: block;
		padding: 15px 10px 10px 45px !important;
		position: relative;
		text-align: left;
		width: 100%;
	}

	html[dir=rtl] .platform-option {
		padding: 15px 45px 10px 10px !important;
		text-align: right;
	}

	.platform-option .radio {
		background-image: url('../../i/install/radio.svg');
		display: block;
		height: 21px;
		left: 0;
		right: initial;
		position: absolute;
		top: 22px;
		width: 21px;
	}

	html[dir=rtl] .platform-option .radio {
		left: initial;
		right: 0;
	}

	.platform-option.active .radio {
		background-image: url('../../i/install/radio-active.svg');
	}

	.footer {
		padding: 40px 0;
	}

	.footer .wrapper,
	.footer .wrapper:nth-child(2) {
		text-align: center;
	}

	.footer .separator {
		display: none;
	}

	.footer a {
		display: block;
	}

	.footer a,
	.footer .wrapper:nth-child(1) {
		line-height: 50px;
	}
}
