
/*form styles*/
.form-row span {
    width: 100%;
}
#msform {
	margin: 50px auto!important;
	text-align: center!important;
	position: relative!important;
}
#msform fieldset {
	background: white!important;
	border: 0 none!important;
	border-radius: 3px!important;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4)!important;
	padding: 20px 30px!important;
	box-sizing: border-box!important;
	width: 100%!important;
	margin: 0!important;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px!important;
	border: 1px solid #ccc!important;
	border-radius: 3px!important;
	margin-bottom: 10px!important;
	box-sizing: border-box!important;
	font-family: montserrat!important;
	color: #2C3E50!important;
	font-size: 13px!important;
}
/*buttons*/
#msform .action-button {
	width: 100px!important;
	background: #27AE60!important;
	font-weight: bold!important;
	color: white!important;
	border: 0 none!important;
	border-radius: 1px!important;
	cursor: pointer!important;
	padding: 10px 5px!important;
	margin: 10px 5px!important;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60!important;
}
/*headings*/
.fs-title {
	font-size: 15px!important;
	text-transform: uppercase!important;
	color: #2C3E50!important;
	margin-bottom: 10px!important;
}
.fs-subtitle {
	font-weight: normal!important;
	font-size: 13px!important;
	color: #666!important;
	margin-bottom: 20px!important;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px!important;
	overflow: hidden!important;
	/*CSS counters to number the steps*/
	counter-reset: step!important;
}
#progressbar li {
	list-style-type: none!important;
	color: #2c3e50!important;
	text-transform: uppercase!important;
	font-size: 9px!important;
	width: 33.33%!important;
	float: left!important;
	position: relative!important;
}
#progressbar li:before {
    content: counter(step)!important;
    counter-increment: step!important;
    width: 42px!important;
    line-height: 40px!important;
    display: block!important;
    font-size: 18px!important;
    color: #333!important;
    background: white!important;
    border-radius: 50%!important;
    margin: 0 auto 5px auto!important;
    border: 1px solid #e40101;
}
/*progressbar connectors*/
#progressbar li:after {
    content: ''!important;
    width: 96%!important;
    height: 5px!important;
    background: white!important;
    position: absolute!important;
    left: -48%!important;
    top: 18px!important;
    z-index: -1!important;
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none!important; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60!important;
	color: white!important;
    z-index: 0!important;
}
/*woostiles*/
ul#shipping_method li input, ul#shipping_method li label {
    margin: 10px;
}
h3#ship-to-different-address {
    text-align: left;
    font-size: 17px;
    color: #6d6d6d;
}
#ship-to-different-address .woocommerce-form__input-checkbox {
    position: relative!important;
    top: unset!important;
    right: unset!important;
    -webkit-transform: none!important;
    -ms-transform: none!important;
    transform: none!important;
    margin-right: unset!important;
}
.form-row {
    margin: 15px 0!important;
}
span.show-password-input {
    width: auto;
}