/**
 * Two Step Checkout styles.
 */

.two-step-checkout {
	max-width: 600px;
	margin: 0 auto;
}

.two-step-checkout-step {
	margin-bottom: 1.5em;
}

.two-step-checkout-step-2 {
	margin-top: 1.5em;
}

.two-step-checkout-form .form-row {
	margin-bottom: 1em;
}

.two-step-checkout-form .form-row label {
	display: block;
	margin-bottom: 0.25em;
	font-weight: 600;
}

.two-step-checkout-form .form-row input[type="text"],
.two-step-checkout-form .form-row input[type="email"],
.two-step-checkout-form .form-row input[type="tel"],
.two-step-checkout-form .form-row input[type="number"] {
	width: 100%;
	padding: 0.5em 0.75em;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-sizing: border-box;
}

.two-step-checkout-form .form-row-first,
.two-step-checkout-form .form-row-last {
	display: inline-block;
	width: 48%;
	vertical-align: top;
}

.two-step-checkout-form .form-row-first {
	margin-left: 3%;
}

.two-step-checkout-form .form-row-wide {
	clear: both;
}

.two-step-checkout-form .required {
	color: #c00;
}

.two-step-checkout-form .button {
	padding: 0.75em 1.5em;
	cursor: pointer;
}

.two-step-checkout-error {
	color: #c00;
	font-size: 0.9em;
	margin-top: 0.25em;
	display: block;
}

.two-step-checkout-messages {
	margin-top: 1em;
	padding: 0.75em;
	border-radius: 4px;
}

.two-step-checkout-messages.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.two-step-checkout-back {
	margin-bottom: 1em;
}

/* Hide billing/shipping when on step 2 */
body.two-step-checkout-step-2 #customer_details .col-2 {
	display:none !important
}
body.two-step-checkout-step-2 #customer_details .col-1 {float:none !important;width:100% !important;}
/* Responsive */
@media (max-width: 600px) {
	.two-step-checkout-form .form-row-first,
	.two-step-checkout-form .form-row-last {
		width: 100%;
		margin-right: 0;
	}
}
