*{
	font-family: "Arial" !important;
}

body{
	background: #E6E5E0;
}

.calc-wrapper{
	background: #FEFEFE;
	max-width: 400px;
	margin-top: 50px;
	padding: 20px;
	position: relative;
	-webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.7);
	-moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.7);
	box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.7);
}

form{
	margin-top: 15px;
}

label, input, select{
	padding: 0;
	margin: 0;
	font-size: 12px;
}

select, option{
	font-size: 12px;
	padding: 2px 3px;
}

.calc-title{
	font-size: 24px;
	text-align: center;
	margin: 0 0 20px 0;
	font-weight: bold;
	padding: 15px 10px;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}

.calc-btns{
	text-align: center;
	margin: 15px 0 0 0;
}

input.error{
	border-color: red;
}

.btn{
	padding: 10px 0;
}

.result-block{
	background-color: #ccc;
  	padding: 10px 0;
}

.calc-wrapper .form-horizontal .form-group{
	margin-left: 0;
	margin-right: 0;
}

.animate-show-hide.ng-hide-add, .animate-show-hide.ng-hide-remove {
  -webkit-transition:all linear 0.5s;
  -moz-transition:all linear 0.5s;
  -o-transition:all linear 0.5s;
  transition:all linear 0.5s;
  display:block!important;
}

.animate-show-hide.ng-hide-add.ng-hide-add-active,
.animate-show-hide.ng-hide-remove {
  opacity:0;
}

.animate-show-hide.ng-hide-add,
.animate-show-hide.ng-hide-remove.ng-hide-remove-active {
  opacity:1;
}