$btn-hover-color: #5599ff;

.calc-button-wrap {
  // width: 100%;
  // height: 100%;
  width: auto;
  height: auto;
  :global {
    .calc-button {
      display: inline-block;
      height: 30px;
      line-height: 30px;
      padding: 0 15px;
      border-radius: 2px;
      font-size: 12px;
      font-family: inherit;
      color: #333333;
      background: #ffffff;
      border: 1px solid #bbbbbb;
      text-align: center;
      vertical-align: middle;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      cursor: pointer;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      &.primary {
        color: #ffffff;
        background: #3388ff;
        border-color: #3388ff;
      }
      &.disabled {
        cursor: not-allowed;
      }
      &:not(.disabled):hover {
        color: #ffffff;
        // background: #5599ff;
        // border-color: #5599ff;
        background: $btn-hover-color;
        border-color: $btn-hover-color;
      }
    }
  }
}
