/*
Theme Name: Woo360 Child Theme
Theme URI: http://madwire.com
Version: 1.7.4
Description: An example child theme that can be used as a starting point for custom development.
Author: Madwire
template: bb-theme
*/

/* Add your custom styles here... */


.form-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-table {
    width: 100%;
    border-collapse: collapse;
}
.form-table td, .form-table th {
    padding: 10px;
    border: 1px solid #ccc;
    vertical-align: top;
	color: #000000;
    font-weight: 500;
	
}
.form-table input, .form-table textarea {
    width: 100%;
    padding: 5px;
}
.subtotal, .total, .balance-due {
    font-weight: bold !important;
	color: #0e6938 !important;
}

.btn-calculate{
    background: #070707;
    color: #fff;
    border: 1px solid #000;
    padding: 12px 24px;
    cursor: pointer;
    text-align: center;
}

.btn-submit{
    background: #0e6938;
    color: #fff;
    border: 1px solid #07331b;
    padding: 12px 24px;
    cursor: pointer;
    text-align: center;
}

form button{
  text-align: center !important;
  margin-top: 20px;
}


@media only screen and (max-width: 600px) {
	.form-table td{
		display: block !important;
	}
	  
	.form-table th{
		display: block !important;
		font-weight: bold;
		
	}
}