.switch {
  overflow: hidden;
  margin-bottom:8px;
}
.switch input {
  display: none;
}
.switch label {
  display: block;
  float: left;
  cursor: pointer;
  width: 33%;
  margin: 0;
  padding: 12px 5px;
  border-right: 1px solid #abb2b7;
  background: #cccccc;
  color: #555e64;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  transition: .2s;
}
.switch label:first-of-type {
  border-radius: 3px 0 0 3px;
}
.switch label:last-of-type {
  border-right: 0;
  border-radius: 0 3px 3px 0;
}
.switch input[type="radio"]:checked + label {
  background-color: #438dcb;
  color: #fff;
}