
.tabs {

  position: relative;
 
  height:auto;
}

label, #slider {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  background: #ccc;

  margin:0 10px;
  color: #333;
  width: 150px;
  height: auto;
  padding: 14px 0px;
}

label:hover {
  color: white;
  cursor: pointer;
}

.tabs [type=radio] {
  display: none;   
}

.content {
  position: absolute;

  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  background: white;

  display: none;
}
.heading h3{
	font-size:21px;
}


.shadow{
	box-shadow: 0px 0px 1px .1px;
}

#slider {
  background: transparent;
  position: absolute;

  margin: 7px 10px;
  transition: transform 0.5s;
  width: 130px;
}

[type=radio],#r1:checked ~ #slider {
  transform: translate(-450px, 0px);
}

[type=radio],#r2:checked ~ #slider {
  transform: translate(-300px, 0px);
}

[type=radio],#r3:checked ~ #slider {
  transform: translate(-150px, 0px);
}

[type=radio]:checked + label {
  color: #fff;
  background:#687142;

}

[type=radio]:checked + label + .content {
  display: inline-block;

}

@media (max-width:768px) {

.m-20{
	margin-top:20px;
}

.content {
  height:auto;
  top:200px;
  margin:10px; 50px;
}

label, #slider {
	display:block;
	margin:10px auto;
	width:80%;
}

}


@media (max-width:480px) {
.content {
  height:auto;
  top:200px;
  margin:10px; 20px;
}

label, #slider {
	display:block;
	margin:10px auto;
	width:80%;
}

.m-20{
	margin-top:20px;
}

}