/*** Calculator form ***/

.td1{
	width:25%;
}

.td2{
	width:30%;
}

.submit{
	text-transform: uppercase;
    padding: 8px 10px 8px 10px;
    background: #90ab32;
    color: #ffffff;
    border: none;
	cursor:pointer;
	transition: all .2s;
}

.submit:hover{
    background: #444;
	cursor:pointer;
	transition: all .2s;
}

#calculatorform table{
	font-size:16px;
}

@media only screen and (max-width:750px){
    table{
        width: 100% !important;
        margin: auto !important;
    }
    .td1, .td2, .td3, .td4, .td5{
        width:100% !important;
        display:block !important;
    }
    .td7{
        width:30%;
    }
    .td6{
        text-align:left;
    }
    .td7{
        text-align:right;
    }
    
}

/*** EMD Calculator form ***/