#update-nag, .update-nag{
	display: none;
}

.basepress-header{
	display: block;
	margin: 0 auto 10px;
}

.basepress-wizard-box{
	margin: 10px 0;
	padding: 30px;
	background-color: #fff;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}

#basepress-wizard-steps{
	padding: 0 0 24px;
	margin: 20px 0;
	list-style: none outside;
	overflow: hidden;
	color: #ccc;
	width: 100%;
	display: -webkit-inline-box;
	display: inline-flex;
}

#basepress-wizard-steps li{
	width: 100%;
	float: left;
	padding: .8em 0 0;
	margin: 5px 0;
	text-align: center;
	position: relative;
	border-top: 2px solid #ccc;
	line-height: 1.4em;
}

#basepress-wizard-steps li.active,
#basepress-wizard-steps li.done{
	border-color: #7aae6a;
	color: #7aae6a;
	font-weight: bold;
}

#basepress-wizard-steps li:before{
	content: '';
	border-radius: 100%;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -7px;
	margin-top: -7px;
	background: #ccc;
	box-sizing: border-box;
}

#basepress-wizard-steps li.active:before{
	border: 2px solid #7aae6a;
	background: #fff;
}

#basepress-wizard-steps li.done:before{
	background: #7aae6a;
}

/* Wizard Items */

.basepress-wizard-step{
	display: none;
}

.basepress-wizard-step.active{
	display: block;
}

.basepress-wizard-item{
	position: relative;
	min-height: 100px;
	margin-bottom: 30px;
	padding: 20px;
	border-radius: 4px;
	background-color: #eee;
	text-align: center;
}

.basepress-wizard-item label{
	display: inline-block;
	font-size: 14px;
	font-weight: 100;
	vertical-align: bottom;
}

.basepress-wizard-item input[type="text"],
.basepress-wizard-item select{
	display: inline-block;
	width: 100%;
	max-width: 300px;
	height: 2em;
	margin: 10px 0;
	box-shadow: none;
	font-size: 16px;
	text-align: center;
}

p.wizard-description{
	margin: 1em 0 5px;
	color: #999999;
	font-size: 13px;
	font-style: italic;
}

#wizard-proceed{
	display: none;
}

.basepress-wizard-notice,
.basepress-wizard-success,
.basepress-wizard-failed{
	margin: 5px 0;
	padding: 15px;
	background-color: #ca4a1f;
	color: white;
}

.basepress-wizard-success{
	background-color: #7aae6a;
}

.basepress-wizard-failed{
	background-color: #ca4a1f;
}

.basepress-wizard-notice{
	background-color: #f5cc00;
	color: black;
}

.basepress-wizard-view-kb{
	padding: 5px 10px;
	background-color: white;
	border-radius: 4px;
	text-decoration: none;
}


#basepress-skip-wizard{
	position: relative;
	top: 1em;
	text-decoration: none;
	color: #ccc;
	float: right;
}

/* Ajax Loader */

#ajax-loader{
	display: block;
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	width: 50px;
	height: 50px;
	border: 3px solid #888;
	border-top-color: #fff;
	border-radius: 50%;
	animation: bs-loader 0.6s infinite linear;
	box-sizing: border-box;
}

@keyframes bs-loader{
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}