/**Variable**/

/*radio*/
.s-radio {
  display: inline-block;
  user-select: none;
  cursor: pointer;
  &.size--small,
  &.size--mini {
    font-size: 12px;
  }
  > input {
    display: none;
    &+.radio--icon {
      position: relative;
      display: inline-block;
      width: 14px;
      height: 14px;
      border: 1px solid $s-input-border-color;
      background-color: #fff;
      vertical-align: middle;
      border-radius: 50%;
      &:before {
        content: "";
        position: absolute;
        border-width: 1px;
        border-style: solid;
        border-color: #fff;
        background-color: #fff;
        border-radius: 50%;
        height: 4px;
        width: 4px;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
      }
    }
    &:checked+.radio--icon {
      background-color: $s-primary-color;
      border-color: $s-primary-color;
      &+.radio--label {
        color: $s-primary-color;
      }
    }
  }
  &.is--disabled {
    cursor: not-allowed;
    > input {
      &+.radio--icon {
        border-color: $s-input-border-color;
        background-color: $s-input-disabled-color;
        &:before {
          border-color: #c0c4cc;
        }
      }
      &:checked+.radio--icon {
        border-color: $s-input-border-color;
        background-color: $s-input-disabled-color;
        &+.radio--label,
        &+.checkbox--label {
          color: $s-input-border-color;
        }
      }
    }
  }
  .radio--label {
    padding-left: 5px;
    vertical-align: middle;
    display: inline-block;
  }
  &+.s-radio {
    margin-left: 10px;
  }
}
