/* Hide radio button (the round disc)
 * we will use just the label to create pushbutton effect */
input[type="radio"], input[type="checkbox"] {
  display: none;
  margin: 10px; }

/* Change the look'n'feel of labels (which are adjacent to radiobuttons).
 * Add some margin, padding to label */
input[type="radio"] + label, input[type="checkbox"] + label {
  display: block;
  height: 37px;
  line-height: 37px;
  margin-right: 10px;
  padding: 0px 15px;
  background-color: #f8f8ff;
  color: #2e3138;
  border-radius: 4px;
  -moz-box-radius: 4px;
  -webkig-box-radius: 4px;
  box-shadow: 1px 1px 2px #222222;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600; }
  input[type="radio"] + label:hover, input[type="checkbox"] + label:hover {
    background-color: #e6e6e6; }

/* Change background color for label next to checked radio button
 * to make it look like highlighted button */
input[type="radio"]:checked + label, input[type="checkbox"]:checked + label {
  background-color: #ffc13a; }
  input[type="radio"]:checked + label:not(.clean-label):after, input[type="checkbox"]:checked + label:not(.clean-label):after {
    content: url(/images/icons/check2.svg);
    margin-left: 10px; }
