body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}


.calculator-print-cost {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
}


.calculator-print-cost .print-price {
	width: 48%;
}


.calculator-price-table h2 {
	display: block;
	width: 100%;
}


.calculator-price-table table {
	width: 100%;
	border-collapse: collapse;
    margin-bottom: 20px;
}


.calculator-price-table th, 
.calculator-price-table td {
	padding: 10px;
	border: 1px solid rgba(0,0,0,0.1);
	text-align: center;
}


.calculator-price-table input[type="number"] {
	width: calc(100% - 30px);
	border: 1px solid rgba(0,0,0,0.1);
	padding: 10px;
	margin: 0 auto;
}



th {
    background-color: #f2f2f2;
    font-weight: bold;
}


.row-selected {
    background-color: #e0e0e0;
}

/* New styles */
#signBlanks {
    flex: 1;
    margin-right: 20px;
}

/*
#printCost {
    flex: 0 0 25%;
}
*/

#calculator {
    width: 100%;
}




@media (max-width:767px){
	
	.calculator-print-cost .print-price, 
	.calculator-cost {
		width: 100%;
		overflow: auto;
	}	

	.calculator-price-table input[type="number"] {
		width: auto;
	}
	
}/*===media close===*/