/*@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,700,100italic,300italic,400italic,700italic');*/
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');

.clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after {
    clear: both;
}

html.wizard_open {
	overflow: hidden;
}

.wizard_container {
	position: absolute;
    z-index: 99;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    display: none;
    height: 100%;
	background: rgba(0, 0, 0, 0.85);
}

#wizard {
	width: 100%;
	margin: 12% auto 0;
	text-align: center;
	display: block;
	color: #575756;
	max-width: 800px;
	
	-moz-opacity: 1;
	opacity: 1;
	
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	
	-webkit-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.2);
	-moz-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.2);
	-ms-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.2);
	-o-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.2);
	transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.2);
}
#wizard.not_visible {
	margin: 65vh auto 0;
	-moz-opacity: 0;
	opacity: 0;
	-moz-transform: scale(0.01);
	-webkit-transform: scale(0.01);
	-o-transform: scale(0.01);
	-ms-transform: scale(0.01);
	transform: scale(0.01);
/*	z-index: 0; */
}

#close_wizard {
	position: fixed;
	top: 180px;
	right: 60px;
	z-index: 101;
	opacity: 0.7;
	
	-webkit-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.53);
	-moz-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.53);
	-ms-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.53);
	-o-transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.53);
	transition: all 400ms cubic-bezier(0.64, 0.57, 0.67, 1.53);
}

#close_wizard:hover {
	opacity: 1;
}

#close_wizard.not_visible {
	-moz-opacity: 0;
	opacity: 0;
	z-index: 1;
}


#wizard .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0px;
}

#wizard fieldset {
	background: #fff;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 40px;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	overflow: auto;
	max-height: calc(100vh - 280px);
	
	/*stacking fieldsets above each other*/
	position: absolute;
}
/*Hide all except first fieldset*/
#wizard fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#wizard input[type="text"], 
#wizard input[type="email"], 
#wizard input[type="password"], 
#wizard textarea {
	padding: 8px 10px !important;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	font-size: 13px;
	background: #fff;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

#wizard select {
	padding: 10px 7px !important;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	background-color: #fff;
	font-size: 13px;
}

#wizard input[type="checkbox"],
#wizard input[type="radio"]{
	float: left;
	margin: 4px 4px 0 0;
	width: 16px;
	height: 16px;

} 

#wizard .panel-heading input[type="checkbox"]{
	position: relative;
	z-index: 1;
	margin: 12px;
}

#wizard label {
	font-size: 15px;
/* 	color: #777; */
	width: 100%;
	text-align: left;
	margin: 10px 0 5px;
}

#wizard label.small {
	font-size: 12px;
	margin: 0 0 10px 0;
}

#wizard .small input[type="checkbox"]{
	width: 16px;
	height: 16px;
} 

/*buttons*/

/*#wizard .action-button {*/
/*	width: auto;*/
/*	font-weight: bold;*/
/*	color: #fff;*/
/*	border: 0 none;*/
/*	border-radius: 1px;*/
/*	cursor: pointer;*/
/*	padding: 7px 11px;*/
/*	margin: 30px 0 0;*/
/*	float: right;*/
/*	text-decoration: none;*/
/*	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);*/
/*	text-transform: uppercase;*/
/*}*/


#wizard .action-button.previous {
	float: left;
	/*background: #C5C5C5 !important;*/
	/*color: #fff;*/
	/*box-shadow: 0px 0px 0px #fff;*/
	/*text-transform: none;*/
	/*line-height: 29px;*/
}

/*#wizard .action-button.previous:hover, */
/*#wizard .action-button.previous:focus {*/
	/*box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5C5;*/
/*}*/

/*#wizard .action-button.submit {*/
/*	font-size: 17px;*/
/*	width: auto;*/
/*}*/

/*headings*/
#wizard .fs-title {
	font-size: 18px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 20px;
	text-align: center;
}
#wizard .fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 15px;
	text-align: center;
}
/*progressbar*/
#wizard #progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	padding: 0;
}
#wizard #progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#wizard #progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#wizard #progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#wizard #progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#wizard #progressbar li.active:before,
#wizard #progressbar li.active:after{
	color: #fff;
}

.btn,
.action-button {
	white-space: normal !important;
}

#close_wizard_black {
	display: none;
}

.panel-heading {
	cursor: pointer;
}

.panel-group .panel{
	overflow: visible;
	clear: both;
	margin-bottom: 15px;
}

.panel-group .panel-heading a:hover {
	color: #000;
}

.panel .panel-title {
	font-weight: bold;
	text-align: left;
}

.choose_domain_container {
	margin-bottom: 50px;
	margin-top: 50px;
/* 	display: none; */
}

.choose_domain_container span.text{
	margin-right:5px;
	font-size: 20px;
}

.choose_domain_container .verify_domain {
	display: inline-block;
	float: right;
	position: relative;
	top: -2px;
	padding: 10px 20px !important;
}

@media (max-width: 767px) {
	.choose_domain_container {
	    text-align: center;
	}
	.choose_domain_container .verify_domain {
		float: none !important;
	    display: block !important;
	    margin: 20px 0 !important;
	}
}

.choose_domain_container #domain_name {
	width: calc(100% - 335px) !important;
	max-width: 350px;
	min-width: 200px;
	font-size: 20px !important;
	padding: 5px !important;
	margin: 0 !important;
	line-height: 1.2;
	position: relative;
}

#wizard.promobulls .user-info,
#wizard.promograph .user-info,
#wizard.promoapp .user-info,
#wizard.promolab .user-info {
	display:none;
}

#wizard .row {
	padding-bottom: 0;
	margin-bottom: 0;
	margin-right: -15px;
	margin-left: -15px;
}

#wizard .manager input[type="radio"] {
	margin: 3px 1px 0 4px;
	width: 14px;
	height: 14px;
	position: relative;
	top: 4px;
}

#wizard .manager label {
	width: auto;
	margin-top: 4px;
    font-size: 12px;
}

#wizard img#globe {
	opacity: 0.1;
	position: absolute;
	width: 230px;
	left: -21px;
	top: -32px;
}

#wizard i#pen {
	opacity: 0.1;
	position: absolute;
	right: 10px;
	top: 0px;
	font-size: 135px;
}

#wizard i#cart {
	opacity: 0.1;
	position: absolute;
	right: 10px;
	top: 0px;
	font-size: 135px;
}

/*#wizard .promo-button span {*/
/*	letter-spacing: 1px;*/
/*}*/

#wizard select[disabled] {
	background: #eee;
	color: #777;
}

#wizard input[readonly] {
	background: #eee;
	color: #777;
}

#wizard .cart-product-container{
	float: left;
	width: 100%;
	border-bottom: 1px solid #ddd;
	padding-top: 10px;
	padding-bottom: 10px;
}

#wizard .cart-product-container.odd{
	background: #F1F1F1;
}

#wizard #cart-content {
	float: left;
	width: 100%;
	padding: 0;
}

#wizard .total_container {
	font-weight: bold;
/* 	margin-bottom: 20px; */
}

#wizard .total_container div{
	padding: 10px 15px;
}

#wizard #total {
	margin-right: 36px;
}

#wizard p {
	padding: 0;
	font-size: 14px;
	display: inline-block;
}

#wizard .coupon_container input{
	max-width: 130px;
	margin: 0;
	float: left;
}

#wizard .coupon_container i{
	font-size: 20px;
	margin-left: 5px;
}

#wizard .remove_from_cart i {
	color: #ccc;
}

#wizard .remove_from_cart:hover i {
	color: #FB5656;
}

#wizard #cart-header {
	color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}

#wizard #cart-header .row{
	margin-right: 0px;
	margin-left: 0px;
}


#wizard .terms h5,
#wizard .payment h5,
#wizard .coupon_container h5 {
	margin-top: 5px;
}

#wizard .terms label,
#wizard .payment label {
	font-weight: normal;
	font-size: 12px;
	margin: 0;
	font-family: Lato;
/*	letter-spacing: -1px; */
}

#wizard .terms input[type="checkbox"],
#wizard .payment input[type="radio"] {
	position: relative;
	top: 2px;
}

#wizard .remove_from_cart{
	margin-left: 10px;
}

#wizard #use_billing_data {
	float: none;
	position: relative;
	top: 3px;
	margin: 0px 5px 0 15px;
}

#wizard .already_client label {
	font-size: 13px;
}

#wizard .open_login_form:hover {
	cursor: pointer;
	text-decoration: underline;
}

label#domain_availability_message {
	font-size: 18px;
}

#wizard fieldset.laststep {
	background: #e5e4df;
}

#wizard fieldset.laststep #pen{
	display: none;
}

#site_builder_img {
	opacity: 0.4;
	position: relative;
	z-index: 1;
}

#wizard .site-building-message{
	position: absolute;
	width: calc(100% - 80px);
	font-size: 25px;
	top: 30%;
	z-index: 2;
	text-shadow: 1px 1px 1px #fff;
	color: #333;
	line-height: 1.5;
}

#wizard .building-message{
	position: absolute;
	width: calc(100% - 80px);
	font-size: 25px;
	top: 26%;
	z-index: 2;
	text-shadow: 1px 1px 1px #fff;
	color: #333;
	line-height: 1.5;
}

#wizard #site-building-progressbar {
	position: absolute;
	top: 65%;
	left: 20%;
	width: 60%;
	height: 22px;
	background: #292929;
	border: 1px solid #111;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 0 5px #333;
	z-index: 2;
}

#wizard #site-building-progressbar div {
	height: 100%;
	color: #fff;
	text-align: right;
	font-size: 12px;
	line-height: 22px;
	width: 0;
	background-color: #1a82f7;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0099FF), to(#1a82f7)); 
	background: -webkit-linear-gradient(top, #0099FF, #1a82f7); 
	background: -moz-linear-gradient(top, #0099FF, #1a82f7); 
	background: -ms-linear-gradient(top, #0099FF, #1a82f7); 
	background: -o-linear-gradient(top, #0099FF, #1a82f7);
}


#wizard input.error,
#wizard textarea.error,
#wizard select.error{
	border: 1px solid #FF3030;
}

#wizard label.error,
#wizard label.error *{
	color: #FF3030 !important;
}

#wizard #step4 i.pbicon-laughing-face {
	font-size: 40px;
	position: relative;
	top: 4px;
}

#apply_coupon,#coupon{
	border-radius:0;
}

#apply_coupon{
	line-height:25px;
}

#not-discounted-total{
	color: red;
	text-decoration: line-through;
	margin-right:5px;
}

#img_pera {
	display:none;
	width: 20px;
	position: relative;
	top: -4px;
}

a.disabled {
	pointer-events: none;
	cursor: default;
}

@media (max-width:700px){
	#progress,
	#progress_logo {
		width: 100%;
		margin: 0 0 15px;
	}
}

@media (max-width:500px){
	#custom-cookie-banner {
		display: none !important;
	}

	html.wizard_open #ajax-content-wrap .swiper-slide {
		width: 100% !important;
	}
	
	.wizard_container {
		top: 3px;
	}
	
	#wizard #progressbar {
		display: none;
	}

	#wizard {
	    margin: 60px 0px 0;
		height: 90vh;
	}
	
	#close_wizard {
		top: 70px;
    	right: 5px;
	}

	#close_wizard_black {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
	}
	
	#wizard .action-button {
		float: none !important;
		display: inline-block;
	}
	
	#wizard fieldset {
		width: 100%;
		margin: 0;
		height: 90vh;
		max-height: 90vh;
		padding: 20px;
	}
}

@media (max-width:767px){
	#wizard .promobulls-product-box {
		float: none;
		margin-bottom: 0;
	}
}

#wizard #domain_name {
	display: inline;
}

#wizard a.btn {
	text-decoration: none;
}

#wizard label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

/*.promo-button.has-icon, */
/*.promo-button.tilt.has-icon {*/
/*    padding-left: 42px;*/
/*    padding-right: 42px;*/
/*}*/

/*.promo-button.large,*/
/*#wizard .action-button.large {*/
/*	position: relative;*/
/*    font-size: 16px;*/
/*    padding: 16px 30px;*/
/*    box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;*/
/*    -moz-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;*/
/*    -webkit-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;*/
/*    -o-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;*/
/*}*/

/*.promo-button:hover {*/
/*    opacity: 0.75;*/
/*}*/

/*.promo-button.has-icon:hover i, .promo-button.tilt.has-icon i {*/
/*    opacity: 1!important;*/
/*    -ms-filter: "alpha(opacity=100)";*/
/*    right: 24px;*/
/*}*/
/*.promo-button i.icon-button-arrow {*/
/*    font-size: 20px;*/
/*}*/
/*body .promo-button i {*/
/*    background-color: transparent!important;*/
/*}*/
/*.promo-button i {*/
/*    font-size: 18px;*/
/*    line-height: 18px;*/
/*    width: 18px;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 30px;*/
/*    margin-top: -9px;*/
/*    opacity: 0;*/
/*    -ms-filter: "alpha(opacity=0)";*/
/*    transition: all 0.2s ease-out;*/
/*    -webkit-transition: all 0.2s ease-out;*/
/*}*/

/*.promo-button span {*/
/*    left: 0px;*/
/*    transition: opacity 0.2s ease-out, left 0.2s ease-out;*/
/*    -webkit-transition: opacity 0.2s ease-out, left 0.2s ease-out;*/
/*    position: relative;*/
/*}*/

/*.promo-button.has-icon:hover span {*/
/*    left: -18px;*/
/*}*/

#wizard .clear {
	visibility: visible;
    overflow: visible;
	height: auto;
    width: auto;
	
}

#wizard #step4 {
	display:none;
}

#wizard .terms a{
	color: #252525;
}

#wizard .terms a:hover{
	color: #252525;
	text-decoration: underline;
}

#wizard .redirect_to_payment {
	display: none;
	min-height: 100px;
	padding: 30px 0;
}

#wizard .text-right {
    text-align: right;
}

#wizard h5 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 7px;
}
#wizard h1, 
#wizard h2, 
#wizard h3, 
#wizard h4, 
#wizard h5, 
#wizard h6 {
    color: #444;
    letter-spacing: -0.5px;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    font-family: 'Open Sans';
    font-weight: 600;
}

#wizard #apply_coupon {
    line-height: 25px;
    border-radius: 0;
}

#wizard .btn, .action-button {
    white-space: normal !important;
}

#wizard .btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

/* step finale per l'acquisto del summit */
#wizard .no-friend-suggest {
	display: block; /* display: none;  */
}

#wizard #friend-suggest {
	display: none;
	text-align: center;
	clear: both;
}

#wizard #friend-suggest input {
	float: left;
	width: 84%;
}

#wizard #friend-suggest p {
	font-size: 18px;
	font-weight: bold;
	color: #009fe3;
}

#wizard #friend-suggest a.promo-button-friend-suggest {
	width: auto;
    font-weight: bold;
    color: #fff;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 7px 11px;
    margin: 30px 0 0;
    float: right;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;

	background-color: #23bc3a;
	float: right;
    margin-top: 0px;
	padding: 6px;
    margin-left: 10px;
	padding-left:16px;
	padding-right:16px;
}

.text-center {
    text-align: center;
}

#paypal-logo {
	float: right;
	margin-top: 10px;
	margin-bottom: 5px;
	width: 115px;
	margin-right: 15px;
}


.course_selector {
	text-align: center;
	cursor: pointer;
	margin-bottom: 20px;
}

.course_selector h4{
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 0;
	font-weight: bold;
}

.course_selector img{
	opacity: 0.5;
    height: 92px;
}

.course_selector:hover img,
.course_selector.active img{
	opacity: 1;
}

.course_selector:hover h4,
.course_selector:hover p, 
.course_selector.active h4,
.course_selector.active p {
	color: #00adef !important;
}


.plan_selector h4{
	font-size: 20px;
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 7px;
}

.plan_selector p{
	font-size: 16px !important;
	line-height: 1.3;
    margin: 3px 0 10px 0;
	border-bottom: 1px solid #DEDEDE;
	padding-bottom: 7px !important;
	width: 100%;
}

.plan_selector p span{
	font-size: 12px !important;
}

.plan_selector li{
	font-size: 12px;
	line-height: 1.5;
	font-family: 'Open Sans';
}

#promobulls_plan_container {
    margin: 40px 0 !important;
}

#wizard #promobulls_plan_container .plan_selector:hover {
/* 	border-bottom-color: #93c01f; */
}
#wizard #promobulls_plan_container .plan_selector {
	cursor: pointer;
/* 	min-height: 280px; */
	text-align: center;
	padding-top: 15px;
	overflow: visible;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
/* 	margin-bottom: 20px; */
}
#wizard #promobulls_plan_container .plan_selector:hover,
#wizard #promobulls_plan_container .plan_selector.active {
    background: #93c01f;
    color: #fff !important;
	opacity: 1;
/* 	font-weight: bold; */
}
#wizard #promobulls_plan_container .plan_selector:hover h4,
#wizard #promobulls_plan_container .plan_selector.active h4{
/* 	color: #93c01f; */
}
#wizard #promobulls_plan_container .plan_selector.complete {
	border: 1px solid #93c01f;
	border-radius: 2px;
}
.hvr-underline-from-center:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	right: 50%;
	bottom: 0;
	background: #93c01f;
	height: 4px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before, 
.hvr-underline-from-center:focus:before, 
.hvr-underline-from-center:active:before,
#wizard #promobulls_plan_container .plan_selector.active.hvr-underline-from-center:before {
	left: 0;
	right: 0;
}
.hvr-underline-from-center {
/* 	display: inline-block; */
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: hidden;
}
#badge {
	position: absolute;
	right: -8px;
	top: -8px;
}
#blog_upgrade {
	display: none;
}
#blog_upgrade .btn-group {
    text-align: center;
    width: 100%;
}
#blog_upgrade label.btn {
	width: auto;
    margin: 15px;
    float: none;
	background: #484848 !important;
}
#blog_upgrade label.btn.active {
	background: #93c01f !important
}
#iwant_blog {
    display: block !important;
    margin: 15px auto 0 !important;
    padding: 10px 20px !important;
    font-size: 17px !important;
	float: none !important;
}
/*
.pass-graybar {
  height: 3px;
  background-color: #CCC;
  width: 100%;
  position: relative;
}

.pass-colorbar {
  height: 3px;
  background-image: url(passwordstrength.jpg);
  position: absolute;
  top: 0;
  left: 0;
}

.pass-percent, .pass-text {
  font-size: 1em;
}

.pass-percent {
  margin-right: 5px;
}

.pass-strength-visible input,
input:focus {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.pass-strength-visible .pass-graybar,
.pass-strength-visible .pass-colorbar,
input:focus + .pass-wrapper .pass-graybar,
input:focus + .pass-wrapper .pass-colorbar {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pass-wrapper {
    position: relative;
    top: -13px;
}*/
.password_container i,
.confirm_password_container i {
	display: none;
	position: absolute;
	top: 12px;
    right: 25px;
}
.password_container i.fa-check,
.confirm_password_container i.fa-check {
	color: green;
}
.password_container i.fa-exclamation-triangle,
.confirm_password_container i.fa-exclamation-triangle {
	color: red;
}
.password_container.pwd_ok i.fa-check,
.confirm_password_container.pwd_ok i.fa-check {
	display: block;
}
.password_container.pwd_ko i.fa-exclamation-triangle,
.confirm_password_container.pwd_ko i.fa-exclamation-triangle {
	display: block;
}
.pwd_info {
    margin: 0;
    line-height: 1.1;
    float: left;
	font-size: 12px !important;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
}

#wizard .open_login_form:hover{
	color: #009fe3;
}
#wizard .promobulls_style_container .style_selector:hover h4 {
	color: #009fe3 !important;
}

#wizard #progressbar li.active:before,
#wizard #progressbar li.active:after,
.hvr-underline-from-center:before,
.panel-group .panel-heading a:hover:after,
.panel-group .panel-heading .collapsed:hover:after,
#wizard #cart-header{
	background: #009fe3 !important;
}

#wizard .panel.selected .panel-heading,
#wizard .panel.selected .promobulls-product-box {
	border: 2px solid #009fe3;
}

#wizard .promobulls-custom-layout .custom-layout-preview-container:hover,
#wizard .promobulls-custom-layout .custom-layout-preview-container.active {
	border: 5px solid #009fe3;
}

/*#wizard .btn-primary {*/
/*	color: #fff;*/
/*	background-color: #009fe3;*/
/*}*/

/*#wizard .btn-primary {*/
/*	text-transform: uppercase;*/
/*    text-shadow: 1px 1px 1px rgba(50,50,50,.7);*/
/*}*/

#wizard a {
	/*color: #009fe3;*/
}

#wizard .tt_button .fa {
	display: none;
}

#wizard .tt_secondary_button:hover {
	color: #009fe3 !important;
}
