body {
	background-color: #f1f1f1;
}

.form-control {
	color: #495057;
	border: 1px solid #cad1d7;
}
.form-control:focus {
	border-color: #a7adb1;
	box-shadow: none;
}

.btn {
	padding: 6px 20px;
	margin: 4px 0;
	border-radius: 30px;
	color: #fff !important;
}
.btn:hover,.btn:focus {
	box-shadow: 0 0 30px 0 rgba(0,0,0,.2) !important;
}

.btn-submit,
.btn-next,
.btn-prev {
	transition: background-color .3s;
}

.btn-submit {
	background-color: #2dce89;
}

.btn-submit:hover,
.btn-submit:focus {
	background-color: #24a46d;
}

.btn-next {
	background-color: #5e72e4;
}

.btn-next:hover,
.btn-next:focus {
	background-color: #324cdd;
}

.btn-prev {
	background-color: #5b99ff;
}

.btn-prev:hover,
.btn-prev:focus {
	background-color: #3578e5;
}

.alert {
	display: none;
	align-items: center;
	flex-wrap: wrap !important;
	width: 100%;
	color: #ffffff;
	padding: 1rem 1.5rem;
	border: 0;
	border-radius: .25rem;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
}

.alert-danger {
	background-color: #f5365c;
}

.alert-success {
	background-color: #2dce89;
}

.alert .fa {
  font-size: 1rem;
  margin-right: .5rem;
}

.input-error {
	border-color: #f35b3f;
}

#spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.is-loading {
	height: 20rem;
	overflow: visible !important;
}
.is-loading > :not(#spinner) {
	display: none !important;
}

.installBlock {
	margin-top: 5%;
}

.wizard {
	position: relative;
	width: 100%;
	padding: 20px 0;
	overflow: hidden;
	text-align: center;
}

.progress {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 4px;
	background: #ccc;
}

.progressLine {
	position: absolute;
	top: 0;
	left: 0;
	width: 12.5%;
	height: 4px;
	background: #5e72e4;
	transition: width .3s ease;
}

.step {
	position: relative;
	float: left;
	width: 25%;
}

.step-icon {
	display: inline-block;
	position: relative;
	width: 60px;
	height: 60px;
	line-height: 60px;
	background-color: #ccc;
	font-size: 18px;
	color: #fff;
	border-radius: 50%;
	text-align: center;
}

.step-icon i {
	position: relative;
}

.step-icon:before {
	content: ' ';
	display: block;
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	transform: scale(0);
	transition: all .5s cubic-bezier(0.55, 0, 0.1, 1);
}

.step p {
	margin-top: 10px;
	color: #ccc;
}

.step.done p {
	color: #5e72e4;
}

.step.active p {
	color: #324cdd;
}

.step.active:last-child p {
	color: #2dce89;
}

.step.done .step-icon:before {
	background-color: #5e72e4;
	transform: scale(1);
}

.step.active .step-icon:before {
	background-color: #324cdd;
	transform: scale(1);
}

.step.active:last-child .step-icon:before {
	background-color: #2dce89;
	transform: scale(1);
}

.card {
	display: none;
	margin-bottom: 50px;
	border: 0;
	border-radius: 10px;
	box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2);
}

.card-header:first-child {
	padding: 14px 20px;
	font-size: 15px;
	color: #ffffff;
	background-color: #5e72e4;
	border-radius: .625rem .625rem 0 0;
}

.card-body {
	padding: 20px;
}

body {
	scrollbar-base-color: #c1c1c1;
	scrollbar-base-color: #c1c1c1;
	scrollbar-3dlight-color: #c1c1c1;
	scrollbar-highlight-color: #c1c1c1;
	scrollbar-track-color: #c1c1c1;
	scrollbar-arrow-color: black;
	scrollbar-shadow-color: #c1c1c1;
	scrollbar-dark-shadow-color: #c1c1c1;
}

@-moz-document url-prefix(http: //),url-prefix(https://) {
	scrollbar {
		-moz-appearance: none !important;
		background: rgb(0, 255, 0) !important;
	}
	thumb, scrollbarbutton {
		-moz-appearance: none !important;
		background-color: #c1c1c1 !important;
	}
	thumb:hover, scrollbarbutton:hover {
		-moz-appearance: none !important;
		background-color: #787878 !important;
	}
	scrollbarbutton {
		display: none !important;
	}
	scrollbar[orient="vertical"] {
		min-width: 15px !important;
	}
}

::-webkit-scrollbar {
	background: #f1f1f1;
	width: 15px;
}

::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #787878;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
