﻿.number-picker {
  display: table !important;
  width: 146px !important;
}
.number-picker-button {
  border-top: solid 1px #3380b3;
  border-bottom: solid 1px #3380b3;
  color: #3380b3;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  height: 45px;
  width: 45px;
  box-sizing: border-box;
  display: table-cell !important;
  vertical-align: middle !important;
}
.number-picker-button:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 1px;
  top: 22px;
  left: 15px;
  background: #3380b3;
}
.number-picker-button.minus {
  border-left: solid 1px #3380b3;
  border-radius: 3px 0 0 3px;
  border-right: none;
  text-align: left !important;
  background: white;
}
.number-picker-button.plus {
  border-left: none;
  border-right: solid 1px #3380b3;
  border-radius: 0 3px 3px 0;
  text-align: right !important;
  background: white;
}
.number-picker-button.plus:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 15px;
  top: 15px;
  left: 22px;
  background: #3380b3;
}
.number-picker-text {
  border: solid 1px #3380b3;
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 16px;
  padding: 12px 0;
  height: 45px;
  width: 110px;
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: center;
}
.number-picker-text.no-room {
  color: #3380b3;
}
.number-picker-help {
  -webkit-animation: pulse 0.8s ease-in-out 2 alternate;
  animation: pulse 0.8s ease-in-out 2 alternate;
}
.number-picker-help2 {
  -webkit-animation: pulse 0.8s ease-in-out 2 alternate;
  animation: pulse 0.8s ease-in-out 2 alternate;
}
@-webkit-keyframes pulse {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(254, 136, 0, 0.6);
  }
  100% {
    background: transparent;
  }
}
@keyframes pulse {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(254, 136, 0, 0.6);
  }
  100% {
    background: transparent;
  }
}
.disabled {
  opacity: 0.4;
  cursor: default;
}