@import "../../../css/color/color";

.v-radio-button {

  display: inline-block;
  border: 1px solid #dcdfe6;
  padding: 10px 20px;
  background-color: #fff;
  color: $--color-font-default;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 5px;

  &.v-checked {
    color: $--color-white;
    background-color: $--bg-primary;
    border-color: $--bg-primary;
  }

  &.v-disabled {
    color: #c0c4cc;
    background-color: #f5f7fa;
    cursor: not-allowed;
  }

  &:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  &:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
  }

  &:not(:first-child):not(:last-child) {
    border-radius: 0;
    margin-left: -1px;
  }

  &:not(.v-checked):not(.v-disabled):hover {
    z-index: 2;
    color: $--bg-primary-lighter;
    border-color: $--bg-primary-lighter;
  }
}


