#payment_form {
	width:64%;
	height:auto;
	float:left;
	margin:0px 0px 40px 0px;
	padding: 0px 2% 5px 2%;
    font-family: "acumin-pro", arial, sans-serif;
    background-color: #f8f8f8;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
}
.payment_section_title {
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0px 8px 0px;
    font-size: 1.2em;
    color: #000;
}

.form_section {
	width:100%;
	height:auto;
	float:left;
	margin:0px 0px 10px 0px;
	background-color: #fff;
	border: 1px solid #ddd;
}

.form_section.no_b {
	background-color: transparent;
	border: none;
}

.form_section.submit {
	border: none;
	background-color: transparent;
}

.form_title {
	width:35%;
	height:auto;
	float:left;
	margin:15px 0px 15px 15px;
	color:#444;
	font-size: 0.95em;
	line-height: 1.2;
}

.form_input {
	width:50%;
	height:auto;
	float:right;
	margin:5px 20px 0px 0px;
	color:#666;
	padding:3px 0px 0px 0px;
	font-size: 0.9em;
}

.form_input input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

	background:#FFF;
	color:#333;
	border:1px solid #ddd;
	padding:5px 2% 5px 2%;
	width:96%;
	float: left;
    font-size: 1.05em;
}

.form_input input:hover {
	border:1px solid #999;
}

.form_input select {
	background:#FFF;
	color:#333;
	border:1px solid #ddd;
	padding:5px 2% 5px 2%;
	width:96%;
	float: left;
    font-size: 1.05em;
}


.form_input button {
	background-color:#DF990A;
	border:none;
	cursor:pointer;
	width: 170px;
	height: auto;
	color: #fff;
	line-height: 21px;
	padding: 3px 0px 3px 0px;
    font-size: 1.1em;
    transition: background-color 0.1s linear;
}

.form_input button:hover {
	background-color:  #A77307;
}

.form_input button.fade {
    opacity: 0.2;
}

.form_input textarea {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	width: 96%;
	background:#FFF;
	color:#333;
	border:1px solid #ddd;
	padding:3px 2% 3px 2%;
	height:140px;
	float: right;
	font-size: 1.1em;
    font-family: "acumin-pro", arial, sans-serif;
}

.form_input textarea:hover {
	border:1px solid #999;
}

.form_error {
	width:50%;
	height:auto;
	float:right;
	margin:5px 3% 5px 0px;
	color:#F00;
	font-size: 0.8em;
	line-height: 1.2;
    text-align: right;
}

.yes_no_select {
    width: 45%;
    height: auto;
    float: left;
    margin: 6px 10% 0px 0px;
    background-color: #fff;
    text-align: center;
    padding: 4px 0px;
    font-size: 1.1em;
    border: 2px solid #ddd;
     -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    cursor: pointer;
}

.yes_no_select.selected {
    color: #fff;
    background-color: #DF990A;
}

.yes_no_select:last-child {
    margin-right: 0px;
}

#spam {
	width:auto;
	margin-bottom:5px;
	float: none;
}

.hidden {
	display: none;
}

#form_error {
    width: 96%;
    height: auto;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #9E6D07;
    text-align: center;
    color: #fff;
    z-index: 3;
    padding: 14px 2% 14px 2%;
    line-height: 1.2;
}

.form_confirm {
    width:50%;
	height:auto;
	float:right;
	margin:13px 20px 0px 0px;
	color:#333;
	font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 2px 0px;
}

#billing_details {
    width: 100%;
    height: 100%;
    float: left;
    margin: 0px 0px 0px 0px;
    display: none;
}

#billing_details.show {
    display: block;
}

#please_wait {
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0px 0px 0px;
    font-size: 1.2em;
    color: #333;
    display: none;
}

@media screen and (max-width: 600px) {
    #payment_form {
        width: 100%;
    }
}