/* Chrome, Safari, Edge, Opera */
/*input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0
}*/

/* Firefox */
/*input[type=number] {
  -moz-appearance: textfield
}*/

#ticketCount {
width: 80px;
line-height: 30px;
display: inline-block;
text-align: center
}

.btn-solid {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid rgb(255, 128, 52);
  cursor: pointer;
  padding: 1em 2em;
  border-radius: 0.5em;
  width: auto;
  min-width: 120px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1em;
  transition: all 0.5s ease 0s;
  user-select: none;
  background: rgb(255, 128, 52);
  color: rgb(255, 255, 255);
}

.btn-solid:hover,
.btn-solid:focus,
.btn-solid:active {
  background: rgb(237, 120, 47);
  border: 1px solid rgb(237, 120, 47);
  color: rgb(255, 255, 255);
}