.form-control{
    display: block;
    width: 100%;
    height: 26px;
    padding: 4px 0px;
    font-size: 12px;
    line-height: 16px;
    background-color: #FFF;
    background-image: none;
    border: 2px solid #f9a71a;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control:focus{
    border-color: ;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(248,167,26,.6);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(248,167,26,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(248,167,26,.6);   
}
label{
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #000;
    line-height: 18px;
}
table.detailList tr td{
    text-align:left;
}
select{
    vertical-align: top;
}
.formContainer{
    border:#ccc 2px solid; 
    border-radius:10px; 
    -webkit-border-radius:10px; 
    -moz-border-radius:10px; 
    margin:10px; 
    padding:10px; 
    padding-bottom:50px;
}
.formContainer h3{
    text-align: left; 
    color:#969696; 
    font-weight:bold;
    font-size: 22px;
}
.textarea{
    height: 80px;
    width: 100% !important;
}

table { 
  width: 100%; 
  border-collapse: collapse; 
}
th { 
  background: #FFFFFF; 
  color: #000000; 
  font-weight: bold; 
}
td, th { 
  padding: 6px; 
  border: none; 
  text-align: left; 
}
.btn{
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -mod-border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.halfords-button{
    color: #FFF;
    font-weight: bold;
    background-color: #f9a71a;
    border-color: #f9a71a;
}

.halfords-button:hover,
.halfords-button:focus,
.halfords-button:active,
{
    color: #FFF;
    background-color: #f9a71a;
    border-color: #f9a71a;
}

@media 
only screen and (max-width: 670px),
(min-device-width: 678px) and (max-device-width: 1024px)  {
    
    .form-control{
        width: 100%;
    }

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { }
	
	td { 
		/* Behave  like a "row" */
		border: none;
    }
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
    input.btn{
        display: inline-block !important;
        text-align: center !important;
        vertical-align: middle !important;
        cursor: pointer !important;
        background-image: none !important;
        border: 1px solid transparent !important;
        white-space: nowrap !important;
        padding: 6px 18px !important;
        font-size: 14px !important;
        border-radius: 4px !important;
        -webkit-border-radius: 4px !important;
        -mod-border-radius: 4px !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        -o-user-select: none !important;
        user-select: none !important;
    }
    input.halfords-button{
        color: #FFF !important;
        font-weight: bold !important;
        background-color: #f9a71a !important;
        border-color: #f9a71a !important;
        background-image: none !important;
    }
    
    input.halfords-button:hover,
    input.halfords-button:focus,
    input.halfords-button:active,
    {
        color: #FFF !important;
        background-color: #f9a71a !important;
        border-color: #f9a71a !important;
    }
}

@media (min-width: 671px) {
    .formContainer{
        width: 662px;
    }
    .form-control{
        width: 190px;
    }
}