.lang-popup {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
	background: -moz-linear-gradient(-45deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	background: linear-gradient(135deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e85d04', endColorstr='#e69d0208', GradientType=1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lang-popup__window {
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    padding: 50px;
    width: 600px;
    min-height: 480px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .4);
	border-radius: 10px;
}

.lang-popup__languages {
	display: flex;
	flex-direction: row;
	margin: 25px 0px;
	flex-wrap: wrap;
}

.lang-popup__languages > .lang-item {
	display: flex;
	align-items: center;
	border: 1px solid #b5b5b5;
	height: 50px;
	margin: 5px;
	padding: 0px 15px;
	border-radius: 5px;
}

.lang-item:hover span {
	color: #D00000!important;
}

.lang-item:hover img {
	transform: scale(1.1);
}

.lang-popup__footer {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lang-popup__exit {
	border: 0;
	background: rgb(232, 93, 4);
	background: -moz-linear-gradient(45deg, rgba(232, 93, 4, 1) 0%, rgba(208, 0, 0, 1) 50%, rgba(157, 2, 8, 1) 99%);
	background: -webkit-linear-gradient(45deg, rgba(232, 93, 4, 1) 0%, rgba(208, 0, 0, 1) 50%, rgba(157, 2, 8, 1) 99%);
	background: linear-gradient(45deg, rgba(232, 93, 4, 1) 0%, rgba(208, 0, 0, 1) 50%, rgba(157, 2, 8, 1) 99%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e85d04', endColorstr='#9d0208', GradientType=1);
	padding: 15px 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.install__wrap {
	min-height: 100vh;
	background-repeat: no-repeat!important;
	background-attachment: fixed!important;
	background-position: center center!important;
	-webkit-background-size: cover!important;
	-moz-background-size: cover!important;
	-o-background-size: cover!important;
	background-size: cover!important;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.install__wrap:before {
	content: "";
	position: fixed;
	background: -moz-linear-gradient(-45deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	background: linear-gradient(135deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e85d04', endColorstr='#e69d0208', GradientType=1);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.install__window {
	position: relative;
	background: #fff;
	min-height: 600px;
	width: 900px;
	border: 3px solid #fff;
	background-repeat: no-repeat!important;
	background-attachment: initial!important;
	background-position: center center!important;
	-webkit-background-size: cover!important;
	-moz-background-size: cover!important;
	-o-background-size: cover!important;
	background-size: cover!important;
	box-shadow: 0 10px 10px rgba(0, 0, 0, .25);
	border-radius: 10px;
}

.install__content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	flex-grow: 1;
}

.install__bar {
	background: #fff;
	height: 50px;
}

.install__bar img {
	height: 25px;
}

.close-window {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	width: 60px;
	background: transparent;
	border: 0;
	cursor: pointer;
	border-radius: 50px;
}

.close-window span {
	font-size: 22px;
}

.close-window:hover {
	background: -moz-linear-gradient(-45deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	background: linear-gradient(135deg, rgba(232, 93, 4, 0.9) 0%, rgba(208, 0, 0, 0.9) 50%, rgba(157, 2, 8, 0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e85d04', endColorstr='#e69d0208', GradientType=1);
}

.close-window:hover span {
	color: #fff;
}

.install__footer {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0px 15px;
	background: rgba(0, 0, 0, .7);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top: 1px solid rgba(255, 255, 255, .25);
}

.install__content-box {
	width: 60%;
	padding: 25px 35px;
	margin: 25px 15px 25px 0px;
	background: rgba(0, 0, 0, .6);
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .25);
}

.btn {
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	height: 50px;
	padding: 0px 30px;
	cursor: pointer;
	border-radius: 50px;
}

.btn--sm {
	height: 35px;
}

.btn--md {
	height: 50px;
}

.btn--lg {
	height: 80px;
}

.btn--danger {
	background: rgb(232, 93, 4);
	background: -moz-linear-gradient(45deg, rgba(232, 93, 4, 1) 0%, rgba(208, 0, 0, 1) 50%, rgba(157, 2, 8, 1) 99%);
	background: -webkit-linear-gradient(45deg, rgba(232, 93, 4, 1) 0%, rgba(208, 0, 0, 1) 50%, rgba(157, 2, 8, 1) 99%);
	background: linear-gradient(45deg, rgba(232, 93, 4, 1) 0%, rgba(208, 0, 0, 1) 50%, rgba(157, 2, 8, 1) 99%);
}

.btn--danger:hover {
	background: #9d0208;
}

.btn--default {
	background: #fff;
}

.btn--default:hover {
	background: #F48C06;
}

.btn:disabled {
	background: rgba(255, 255, 255, .65)!important;
}

.terms {
	height: 175px;
	background: #fff;
	overflow-y: scroll;
	padding: 15px;
	border-radius: 5px;
	
}

.terms p {
	margin: 10px 0px;
	font-family: 'Arial', sans-serif;
	font-size: 15px;
}

.terms p:first-child {
	margin: 0;
}

#set_directory {
	display: none;
}

.install__file-input {
	display: flex;
	align-items: center;
}

.install__file-input input {
	height: 50px;
	border: 0;
	flex-grow: 1;
	padding: 0px 30px;
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	color: #03071E;
}

.install__file-input .btn {
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-left: 1px solid #ddd;
}

.progress {
	height: 25px;
	width: 100%;
	background: #eaeaea;
	overflow: hidden;
	border-radius: 50px;
	border: 2px solid #fff;
}

.progress__bar {
	display: block;
	width: 100%;
	height: 21px;
	transform: translateX(-100%);
	border-radius: 50px;
}

.bar--download {
	background: #F48C06;
}

.bar--install {
	background: #E85D04;
}

#license {
	height: 50px;
	background: #fff;
	border: 0;
	width: 100%;
	text-align: center;
	border-radius: 50px;
	text-transform: uppercase;
}

.close-popup,
.patch-popup {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .9);
	height: 100%;
	width: 100%;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-100%);
}

.close-popup--active,
.patch-popup--active {
	transform: translateY(0);
}

.close-popup__window,
.patch-popup__window {
	background: #fff;
	width: 600px;
}

.close-popup__header,
.patch-popup__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
}

.close-popup__content,
.patch-popup__content {
	display: flex;
	align-items: flex-start;
}

.close-popup__footer,
.patch-popup__footer {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: #ddd;
}

.close-popup__icon,
.patch-popup__icon {
	font-size: 70px;
	color: #E85D04;
}

#step2, #step3, #step4, #step5, #step6 {
	display: none;
}

.progress__status {
	height: 25px;
	display: flex;
	align-items: center;
}

.progress__status:before {
	content: "Status: ";
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	margin: 0px 5px 0px 0px;
}

.progress__status p {
	font-size: 12px;
}

.progress__status p:not(#download-msg--start):not(#install-msg--start) {
	display: none;
}

@media screen and (max-width: 767px) {
	
	.install__window {
		width: 100%;
		border: 0;
		border-radius: 0;
		min-height: 100vh;
	}
	
	.install__content {
		align-items: center;
	}
	
	.install__content-box {
		width: 95%;
		margin: 10px 0px;
		padding: 20px;
	}
	
	.install__footer {
		flex-direction: column;
		padding: 10px;
		height: auto;
		align-items: stretch;
	}
	
	.install__footer .btn--danger {
		margin: 0px 0px 5px 0px;
	}
	
	.install__file-input {
		flex-direction: column;
	}
	
	.install__file-input input,
	.install__file-input label {
		width: 100%;
		border-radius: 50px!important;
	}
	
	.install__file-input label {
		margin-top: 5px;
	}
	
	.progress__status:before {
		display: none;
	}
	
	.activate {
		margin: 5px 0px!important;
	}
	
}	