
/*=================*/
/* ui-stepper Control */
/*=================*/
ui-stepper {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -webkit-box;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 1px;
}
ui-stepper > input {
  margin: 0;
  display: none;
}
ui-stepper > label {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #cbcbcb;
  width: 40px;
  height: 30px;
  font: bold 16px/30px Helvetica;
  text-align: center;
  background-color: #ffffff;
}
ui-stepper > button {
  background-color: #ddd !important;
  background-image: -webkit-radial-gradient(circle, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.05) 10%) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  font-size: 16pt;
  cursor: pointer !important;
  margin: 0;
  box-shadow: none;
  border: solid 1px #cbcbcb;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

}
ui-stepper > button > span {
  font-size: inherit;
  font-weight: inherit;
  display: block;
  -webkit-flex: 1;
  flex: 1;
}
.isDesktop ui-stepper > button:hover {
  box-shadow: none !important;
  background-color: #666 !important;
  border-color: #666;
  color: #fff;
}
ui-stepper > button:first-of-type {
  border-right: none;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
ui-stepper > button:last-of-type {
  border-left: none;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
ui-stepper > button[disabled] {
  opacity: .5;
}
.isDesktop ui-stepper > button[disabled]:hover {
  background-color: #ddd !important;
  color: #333 !important;
  cursor: default !important;
}
html[dir=rtl] ui-stepper > button:first-of-type {
  border-right: solid 1px #cbcbcb;
  border-left: none;
  margin: 0;
}
html[dir=rtl] ui-stepper > button:last-of-type {
  border-left: solid 1px #cbcbcb;
  border-right: none;
  margin: 0;
}