
	
	/*
	* Clearfix: contain floats
	*
	* For modern browsers
	* 1. The space content is one way to avoid an Opera bug when the
	*    `contenteditable` attribute is included anywhere else in the document.
	*    Otherwise it causes space to appear at the top and bottom of elements
	*    that receive the `clearfix` class.
	* 2. The use of `table` rather than `block` is only necessary if using
	*    `:before` to contain the top-margins of child elements.
	*/
	
	.clearfix:before,
	.clearfix:after {
		content: " "; /* 1 */
		display: table; /* 2 */
	}
	
	.clearfix:after {
		clear: both;
	}
	
	/*
	* For IE 6/7 only
	* Include this rule to trigger hasLayout and contain floats.
	*/
	
	.clearfix {
		*zoom: 1;
	}
	
	/* ==========================================================================
		EXAMPLE Media Queries for Responsive Design.
		These examples override the primary ('mobile first') styles.
		Modify as content requires.
		========================================================================== */
	

	#wizard{
		padding-bottom: 30px;
	}

	/*
		Common 
	*/

	@media(min-width:760px){
		#wizard .content,
		#wizard .actions{
			width: 66%;
			margin-left: auto;
	  		margin-right: auto;
		}
	}

	.wizard,
	.tabcontrol
	{
		display: block;
		width: 100%;
		overflow: hidden;
	}
	
	.wizard a,
	.tabcontrol a
	{
		outline: 0;
	}
  
	.wizard ul,
	.tabcontrol ul
	{
		list-style: none !important;
		padding: 0;
		margin: 0;
		display: flex;
		justify-content: stretch;
	}

	.steps-text{
		display:none;
		margin-left: 7px;
	}
	@media(min-width: 760px){
		.steps-text{
			display: inline-block;
		}
	}

	
	.wizard ul > li,
	.tabcontrol ul > li
	{
		display: block;
		padding: 0;
	}
	
	/* Accessibility */
	.wizard > .steps .current-info,
	.tabcontrol > .steps .current-info
	{
		display:none;
	}
	
	.wizard > .content > .title,
	.tabcontrol > .content > .title
	{
		display:none;
	}
	
	
	
	/*
		Wizard
	*/
	

	.wizard > .steps
	{
		position: relative;
		display: block;
		width: 100%;
	}
	
	.wizard > .steps .number
	{
		display:none;
	}
	
	
	.wizard > .steps > ul > li
	{
		width: auto;
		flex-grow: 1;
	}
	
	.wizard > .steps > ul > li,
	.wizard > .actions > ul > li
	{
		float: left;
	}
	
	.wizard > .steps a,
	.wizard > .steps a:hover,
	.wizard > .steps a:active
	{
		text-align: center;
		display: block;
		width: auto;
		margin: 0 0.5em 0.5em;
		padding: 1em 1em;
		text-decoration: none;
	
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;

		
	}
	
	.wizard > .steps .disabled a,
	.wizard > .steps .disabled a:hover,
	.wizard > .steps .disabled a:active
	{
		background: var(--steps-step-disabled-bg);
		color: var(--steps-step-disabled-text);
		cursor: not-allowed;
	}
	
	.wizard > .steps .current a,
	.wizard > .steps .current a:hover,
	.wizard > .steps .current a:active
	{
		background: var(--steps-step-current-bg);
		color: var(--steps-step-current-text);
		cursor: default;
	}
	
	.wizard > .steps .done a,
	.wizard > .steps .done a:hover,
	.wizard > .steps .done a:active
	{
		background: var(--steps-step-done-bg);
		color: var(--steps-step-done-text);
	}
	
	.wizard > .steps .error a,
	.wizard > .steps .error a:hover,
	.wizard > .steps .error a:active
	{
		background: var(--steps-step-error-bg);
		color: var(--steps-step-error-text);
	}
	
	.wizard > .content
	{
		display: block;
		position: relative;
	}
	

	
	
	

	.wizard > .actions
	{
		margin-top: 10px;  
		position: relative;
		display: block;
		text-align: right;
		width: 100%;
	}
	
	.wizard > .actions > ul
	{
		display: inline-block;
		text-align: right;
	}
	
	
	
	.wizard > .actions a
	{
		background: var(--steps-action-button-bg);
		color: var(--steps-action-button-text);

		display: block;
		padding: 0.5em 1em;
		text-decoration: none;
	
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
	.wizard > .actions a:hover,
	.wizard > .actions a:hover{
		background: var(--steps-action-button-hover-bg);
		color: var(--steps-action-button-hover-text);
	}

	
	.wizard > .actions > ul > li:first-child {
		display: none;
	}
	

	.wizard > .actions > ul > li.disabled {
		display: none;
	}
	


	#wizard.loading{
		display:none;
	}
	


	
	.steps > ul > li > a,
	.actions li a { 
		padding: 10px;
		text-decoration: none;
		margin: 1px;
		display: block;
	}
	.steps > ul > li,
	.actions li {
		list-style:none;
	} 
	
