/**
 * Mixin that creates a new stacking context.
 * see https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
 */
/**
 * This mixin hides an element visually.
 * That means it's still accessible for screen-readers but not visible in view.
 */
/**
 * Forces an element to grow to fit floated contents; used as as an alternative to
 * `overflow: hidden;` because it doesn't cut off contents.
 */
/**
 * A mixin, which generates temporary ink ripple on a given component.
 * When $bindToParent is set to true, it will check for the focused class on the same selector as you included
 * that mixin.
 * It is also possible to specify the color palette of the temporary ripple. By default it uses the
 * accent palette for its background.
 */
md-radio-button {
  display: inline-block; }

.md-radio-label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  white-space: nowrap; }

.md-radio-container {
  box-sizing: border-box;
  display: inline-block;
  height: 20px;
  position: relative;
  width: 20px;
  top: 2px; }

.md-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
  border: solid 2px;
  border-radius: 50%;
  box-sizing: border-box;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: border-color ease 280ms;
  transition: border-color ease 280ms;
  width: 20px; }
  .md-radio-checked .md-radio-outer-circle {
    border-color: #9c27b0; }
  .md-radio-disabled .md-radio-outer-circle {
    border-color: rgba(0, 0, 0, 0.38); }

.md-radio-inner-circle {
  background-color: #9c27b0;
  border-radius: 50%;
  box-sizing: border-box;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: background-color ease 280ms, -webkit-transform ease 280ms;
  transition: background-color ease 280ms, -webkit-transform ease 280ms;
  transition: transform ease 280ms, background-color ease 280ms;
  transition: transform ease 280ms, background-color ease 280ms, -webkit-transform ease 280ms;
  -webkit-transform: scale(0);
          transform: scale(0);
  width: 20px; }
  .md-radio-checked .md-radio-inner-circle {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  .md-radio-disabled .md-radio-inner-circle {
    background-color: rgba(0, 0, 0, 0.38); }

.md-radio-label-content {
  display: inline-block;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  line-height: inherit;
  padding-left: 8px;
  padding-right: 0; }
  [dir='rtl'] .md-radio-label-content {
    padding-right: 8px;
    padding-left: 0; }

.md-radio-label-content.md-radio-align-end {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding-left: 0;
  padding-right: 8px; }
  [dir='rtl'] .md-radio-label-content.md-radio-align-end {
    padding-right: 0;
    padding-left: 8px; }

.md-radio-input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-transform: none;
  width: 1px; }

.md-radio-disabled, .md-radio-disabled .md-radio-label {
  cursor: default; }

.md-ink-ripple {
  border-radius: 50%;
  opacity: 0;
  height: 48px;
  left: 50%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity ease 280ms, background-color ease 280ms;
  transition: opacity ease 280ms, background-color ease 280ms;
  width: 48px; }

.md-radio-focused .md-ink-ripple {
  opacity: 1;
  background-color: rgba(156, 39, 176, 0.26); }

.md-radio-disabled .md-ink-ripple {
  background-color: #000; }
