h2, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

*{
	box-sizing: border-box;
}

[type=button]{
	-webkit-appearance: inherit !important;
}

.header-download-old {
	background: -webkit-gradient(linear, left top, right top, from(#2D3E50), to(#054592));
	background: linear-gradient(90deg, #2D3E50 0%, #054592 100%);
}

.header-download-old .menu {
	width: 100%;
}

.header-download-old .header-content {
	min-height: 300px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header-download-old .header-content .title {
	font-size: 56px;
	letter-spacing: 0.1em;
	color: white;
}

.header-download-old .header-content .sub-title {
	font-size: 24px;
	line-height: 33px;
	color: #9BA7B4;
	max-width: 580px;
	margin: 0 auto;
}

.header-download-old .header-content .title,
.header-download-old .header-content .sub-title {
	text-align: center;
	font-style: normal;
	font-weight: 400;
}

.container-group-select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	

}
.container-group-download{
	max-width: 800px;
	margin: 25px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.container-select {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 15px;
}

/* Hide the browser's default radio button */
.container-select input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.container-down{
	margin: 5px 50px;
	padding: 7.5px 0;
	border-bottom: 1px solid rgba(55, 146, 224, 0.2);
}

/* Create a custom radio button */
.checkmark,
.checkmark-version {
	color: initial;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: white;
	border: 1px solid rgba(55, 146, 224, 0.2);
	border-radius: 30px;
	box-sizing: border-box;
	-webkit-transition: background 0.25s ease-in;
	transition: background 0.25s ease-in;
}

.checkmark {
	min-width: 180px;
}

.checkmark-version {
	min-width: 80px;
}

/* On mouse-over, add a grey background color */
.container-select:hover input~.checkmark,
.container-select:hover input~.checkmark-version {
	background: #ccc;
	border: none;
	text-decoration: none;
}

/* When the radio button is checked, add a blue background and white text */
.container-select input:checked~.checkmark,
.container-select input:checked~.checkmark-version {
	background: linear-gradient(316.97deg, #0052D4 0%, #4364F7 51.04%, #6FB1FC 100%);
	color: white;
	border: none;
}

/* When the radio button is checked, add white color to svg */
.container-select input:checked .path{
	color: white;
}



.img-style {
	width: 40px;
	height: 40px;
	margin-right: 5px;
}

.side-select {
	border: none;
	color: #4D9EE4;
	background: transparent;
	cursor: pointer;
}

.btn-down {
	border: 1px solid inherit;
	width: 110px;
	height: 90px;
	background: none;
	font-weight: normal;
	font-size: 16px;
	color: #4D9EE4;
	cursor: pointer;
	margin-bottom: 5px;
	text-transform: capitalize;
}

.btn-down:hover {
	text-decoration: underline;
	background: inherit;
}

.btn-down:focus {
	outline: none;
}

.hidden {
	opacity: 0;
}

.no-display{
	display: none;
}

.no-version{
	text-align: center;
}

.visible {
	-webkit-animation: slide-down 0.5s forwards;
	animation: slide-down 0.5s forwards;
}

@-webkit-keyframes slide-down {
	from {
		opacity: 0;
		-webkit-transform: translate(0, -80px);
		transform: translate(0, -80px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes slide-down {
	from {
		opacity: 0;
		-webkit-transform: translate(0, -80px);
		transform: translate(0, -80px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}