.tabs {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  margin: 15px 0 0 0px;
  text-align: left;
}
.tabbing ul {
  padding: 0px;
  -webkit-padding-start: 0px;
}
.tabs li {
  float: left;
  display: block;
}
.tabs input[type="radio"] {
  visibility: hidden;
  display: none;
}
.tabs label {
  padding: 10px 21px;
  border-radius: 2px 2px 0 0;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  background: #eee;
  cursor: pointer;
  position: absolute;
  top: 24px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width:768px) {
  .tabs label {
    font-size: 20px;
    top: 16px;
  }
}

.tabs label:hover {
  background: #ddd;
}
.tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  padding: 15px;
  margin-top: 63px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #ddd;
}
@media (min-width:768px) {
  .tab-content {
    padding: 25px;
  }
}

.tabs [id^="tab"]:checked + label {
  top: 16px;
  padding-top: 17px;
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  z-index: 3;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}
#label2 {
  left: 145px;
}
@media (min-width:768px) {
  .tabs [id^="tab"]:checked + label {
    top: 8px;
    font-size: 20px;
  }
  #label2 {
    left: 200px;
  }
}
p.link {
  clear: both;
  margin: 380px 0 0 15px;
}
p.link a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: #612e76;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
p.link a:hover {
  background-color: #522764;
}