/* ==========================================================
 * radios.scss
 * Custom radio input styles
 *
 * Author: Yann Gouffon, yann@antistatique.net
 * Date:   2014-04-28 17:17:40
 *
 * Copyright 2014 Federal Chancellery of Switzerland
 * Licensed under MIT
 =========================================================== */

.radio {
  @extend .checkbox;
}

.radio--left {
  label {
    padding-left: 24px;
    padding-right: 0;
  }
  input {
    @include form-button(left);
  }
}

.radio--right {
  label {
    padding-right: 24px;
    padding-left: 0;
  }
  input {
    @include form-button(right);
  }
}
