
.bbc-toggle {
  font-family: Helvetica, Verdana, sans-serif;
  overflow: hidden;
}

.bbc-toggle input {
  display: none;
}
.bbc-toggle label {
  float: left;
}
.bbc-toggle label {
  display: inline-block;
  width: 35px;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding: 5px 9px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}
.bbc-toggle label:hover {
    cursor: pointer;
}
.bbc-toggle input:checked + label {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bbc-toggle label:first-of-type {
  border-radius: 4px 0 0 4px;
}
.bbc-toggle label:last-of-type {
  border-radius: 0 4px 4px 0;
}
