.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
}

.igloo-input-number-stepper-container {
  display: flex;
  align-items: center;

  .igloo-input-number-stepper {
    margin: 0px 28px;
    width: auto;

    .ant-input-number-handler-wrap {
      height: 100%;
      z-index: 0;
      opacity: 1;
      background: transparent;
      left: -28px;
      width: calc(100% + 56px);
      flex-direction: row-reverse;
      align-items: center;
      justify-content: space-between;

      .ant-input-number-handler {
        width: 24px;
        height: 24px;
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: none;

        &:hover {
          & > span {
            border: 1px solid @purple-main;
          }
        }

        & span {
          border-radius: 50%;
          font-size: 20px !important;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #666666;
          background-color: #eeeeee;
        }
      }

      .ant-input-number-handler-down-disabled,
      .ant-input-number-handler-up-disabled {
        & span {
          color: #bdbdbd;
          background-color: #f9f9f9;
          border: none !important;
        }
      }
    }

    .ant-input-number-input-wrap {
      position: relative;
      z-index: 1;
      height: 100%;

      input {
        text-align: center;
        height: 100%;
        padding: 0px 12px;
      }
    }
  }

  .igloo-input-number-stepper-input-disabled-status {
    margin: 0px 4px;
  }

  .igloo-input-number-stepper-input-no-margin {
    margin: 0px;
  }

  .hidden {
    display: none !important;
  }

  .igloo-input-number-stepper-minus-disabled-status,
  .igloo-input-number-stepper-plus-disabled-status {
    background-color: #eeeeee;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    color: #bdbdbd;
    background-color: #f9f9f9;
  }
}
