#vibr-calc-container {
	max-width: 690px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}

#vibr-calc-container  #temp-conv {
	position: relative;
	background: rgb(221, 221, 221);
	height: 100px;
	width: 260px;
	display: inline-block;
	float: right;
	border: 1px solid #C7C6C6;
	border-radius: 5px;
}

#vibr-calc-container  .row {
	position: relative;
	width: 98%;
	margin: 2px;
	height: 30px;
}

#vibr-calc-container #temp-conv input {
	float: right;
	width: 150px;
	height: 24px;
}

#vibr-calc-container input[type="text"] {
	padding: 3px !important;
}

#vibr-calc-container  #temp-conv label {
 	position: absolute;
	top: 2px
}

#vibr-calc-container  label[for=celsius] {
	left: 59px;
}

#vibr-calc-container label[for=fahrenheit] {
	left: 70px;
}

#vibr-calc-container  label[for=kelvin] {
	left: 59px;
}

#vibr-calc-container  .disabled {
	background: #EBEBE4;
	border: 1px solid #A9A9A9;
}

#vibr-calc-container .enabled {
	background: #ffffff;
	border: 1px solid #A9A9A9;
}

#vibr-calc-container input[type="button"] {
	height: auto !important;
	width: auto !important;
	margin: 0;
	display: inline-block;
	background: #DDDDDD !important;
	border: 1px solid #cdcdcd;
}

#vibr-calc-container input[type="button"]:hover {
	background: #656565 !important;
}

@media only screen and (max-width: 960px) {
	#vibr-calc-container  #temp-conv {
		float: none;
	}
}

@media only screen and (max-width: 767px) {
	#vibr-calc-container table,
	#vibr-calc-container #temp-conv {
		width: 100% !important;
	}
}

@media only screen and (max-width: 490px) {
	#vibr-calc-container table,
	#vibr-calc-container #temp-conv{
		table-layout: fixed;
		max-width: 330px;
	}

	#vibr-calc-container table tr, 
	#vibr-calc-container table td {
		width: 50%;
	}
	
	#vibr-calc-container tr td input[type="text"] {
		width: 100% !important;
	}
	
	#vibr-calc-container #temp-conv input[type="text"] {
		max-width: 135px;
	}
	
	#vibr-calc-container input[type="button"] {
		height: 25px !important;
		width: 70px !important;
		padding: 5px;
	}
	
}