@charset "utf-8";

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

#calculator-rates{
	
}

#calculator-rates img{
	max-width: 94%;
	padding: 3%;
}

#rates-table{
	
}

.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

.calcinput{
	padding: 6%;
	border: 1px solid #b7b7b7;
	border-radius: 4px;
  width: 100%;
  margin-bottom: 15px; 
}

.calcoutput{
	padding: 6%;
	border: 1px solid #b7b7b7;
	background-color: #f9f9f9;

}

.Out-label{
	color: #999;
}

#weight, #lenght, #width, #height{

}

#lenght, #height{
	
}

#weight, #width{
	
}

#rates-table .redbtn{
	min-width: 60%;
	background-color: #f66b4e;
	border-radius: 4px;
	border: none;
	padding: 4%;
	color: #fff;
	font-weight: bold;
	text-shadow: 0px 1px #000;
	font-size: 14px;
	letter-spacing: 1px;
	margin: 0 20% 15px 20%;
}

#rates-table .redbtn:hover{
	background-color: #ee5b3c;
}

#rates-table .redbtn:active{
	background-color: #f66b4e;
}

/* TOGGLE KG/POUND */

.switch {
  position: relative;
  margin-bottom:15px;
  height: 50px;
  width: 100%;
  background-color: #ebebeb;
  border-radius: 4px;
}

.switch-label {
  position: relative;
  z-index: 2;
  float: left;
  width: 50%;
  line-height: 50px;
  font-size: 16px;
  color: #000;
  text-align: center;
  cursor: pointer;
}
.switch-label:active {
  font-weight: bold;
}

.switch-input {
  display: none;
}
.switch-input:checked + .switch-label {
  font-weight: bold;
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
.switch-input:checked + .switch-label-on ~ .switch-selection {
  left: 50%;
  /* Note: left: 50% doesn't transition in WebKit */
}

.switch-selection {
  display: block;
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 1%;
  width: 49%;
  height: 44px;
  background: #e1e1e1;
  box-shadow: 0px 4px 0px #f1c40f;
  border-radius: 4px;
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.switch-blue .switch-selection {
  background: #3aa2d0;
}
.switch-yellow .switch-selection {
  background: #c4bb61;
}


/* bubble */

.bubble 
{
margin: 10px 0 15px 0;
position: relative;
width: 100%;
padding: 5%;
height: auto;
background: #f9f9f9;
border: #b7b7b7 solid 1px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #b7b7b7;
}

.bubble:after 
{
content: "";
position: absolute;
top: -15px;
left: 50%;
margin-left: -15px;
border-style: solid;
border-width: 0 15px 15px;
border-color: #f9f9f9 transparent;
display: block;
width: 0;
z-index: 1;
}

.bubble:before 
{
content: "";
position: absolute;
top: -16px;
left: 50%;
margin-left: -15px;
border-style: solid;
border-width: 0 15px 15px;
border-color: #b7b7b7 transparent;
display: block;
width: 0;
z-index: 0;
}