/* $hinge-default-error-color: #CB0029;
$hinge-default-error-background: #FFFFFF;
$hinge-default-focus-color: $aig-blue; */
.dbp-spinbutton {
  padding: 1rem;
}
.dbp-spinbutton:not(:last-of-type) {
  margin: 0 0.25rem 0 0;
}
.dbp-spinbutton button {
  display: inline-block;
  height: 2.75rem;
  width: 2.75rem;
  min-width: 3.8rem;
}
.dbp-spinbutton button img {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}
.dbp-spinbutton button svg {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}
.dbp-spinbutton button svg path {
  fill: #4F00CA;
}
.dbp-spinbutton button:hover {
  cursor: pointer;
  outline: 5px auto #C053EF;
}
.dbp-spinbutton button.disabled {
  background: none;
  border: none;
  cursor: no-drop;
  padding: 0;
  pointer-events: auto;
}
.dbp-spinbutton button.disabled:focus, .dbp-spinbutton button.disabled:hover {
  outline: none;
}
.dbp-spinbutton .spin-input {
  padding: 0rem 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: color 0.2s, background 0.2s;
  -o-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
  color: #20113E;
  outline: 0;
  border-radius: 0;
  letter-spacing: 0.048234375px;
  font-size: 1rem;
  line-height: 3.5rem;
  border: 1px solid #B9C6D4;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 4rem;
  min-width: 4rem;
}
.dbp-spinbutton .spin-input:focus {
  border: 1px solid #C053EF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.dbp-spinbutton.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: initial;
  position: relative;
  min-height: 7rem;
}
.dbp-spinbutton.horizontal button {
  min-height: 3.5rem;
}
.dbp-spinbutton.horizontal .dbp-button .btn-up {
  position: absolute;
  top: 2.8rem;
  left: 0.5rem;
}
.dbp-spinbutton.horizontal .dbp-button .btn-down {
  position: absolute;
  top: 2.8rem;
  left: 8.45rem;
}
.dbp-spinbutton.horizontal .header {
  max-width: 2rem;
  white-space: nowrap;
}
.dbp-spinbutton.horizontal .spin-input {
  position: absolute;
  left: 4.35rem;
  top: 2.68rem;
}
.dbp-spinbutton.horizontal.has-error {
  position: relative;
  min-height: 10rem;
}
.dbp-spinbutton.horizontal.has-error .has-error-text {
  display: block;
}
.dbp-spinbutton.horizontal.has-error ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 7rem;
  position: absolute;
  left: 1rem;
}
.dbp-spinbutton.disabled .spin-input {
  background: #F2F6FB;
  color: #B9C6D4;
  cursor: no-drop;
}
.dbp-spinbutton.has-error {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: visible;
}
.dbp-spinbutton.has-error button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dbp-spinbutton.has-error .spin-input {
  border: 1px solid #CB0029;
  color: #CB0029;
}
.dbp-spinbutton.has-error .has-error-text {
  width: 20rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.dbp-spinbutton.floating-label label {
  top: 2.7rem;
  right: auto;
  left: auto;
}
.dbp-spinbutton .header {
  -ms-flex-item-align: start;
      align-self: flex-start;
}