/* CSS Document */
/* My calculator*/
#theform {
    display:inline-block;
    padding:20px;
    border:1px solid #00aeef;
    border-radius:10px;
    background-color:#fff;
    box-shadow:inset 0 0 0px #2c455d,3px 3px 3px #00012c;
    width:100%;
 }
 

#theform select {
    margin:5px 0;
    width:70%;
    color:#707070;
	font-weight:600;
 }
 
#theform input {
    display:inline;
    width:25%;
    color:#707070;
	font-weight: 600;
 }

#theform .calc-total input {
    display:inline;
    width:100%;
    color:green;
	font-weight: 700;
 }

.form-line {
    width:100%;
    margin:5px 0;
    padding:5px 0px 5px 0px;
    border-bottom:1px #d1ebf9 dashed;
 }


.forms-name{
    display:inline-block;
    font-size:x-large; font-weight: 600;
    color:#707070;
    width:50%;
}

.calc-block{
    display:inline-block;
    padding-left:10px;
    font-size:x-large;
    color:#00aeef;
	width:49%;
	background:#707070;
}

.calc-total{
    display:inline-block;
    font-size:x-large;
    color:green;
    width:49%;

}

.cell-total{
	width:100%;
	
}


/* My calculator END*/

