ul {
  list-style: none !important;
  padding-left: 1rem !important;
}

input[type="number"] {
  text-align: center;
  max-width: 50px;
}

input[type="number"]:not([step="any"])::-webkit-inner-spin-button,
input[type="number"]:not([step="any"])::-webkit-outer-spin-button {
  opacity: 1;
}

.toggle-sticky-wrapper {
  z-index: 10;
  position: sticky;
  top: 110px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 1px 10px lightgray;
}

@media screen and (max-width: 575.5px) {
  .toggle-sticky-wrapper {
    top: 80px;
  }
}

.toggle-switch {
  margin: 1rem;
  position: relative;
  width: 100px;
  height: 34px;
}

.toggle-switch-checkbox {
  display: none;
}

.toggle-switch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #999999;
  border-radius: 30px;
  background-color: #dddddd;
}

.toggle-switch-inner {
  height: 30px;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  box-sizing: border-box;
}

.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-inner {
  margin-left: 0;
}

.toggle-switch-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 56px;
  height: 32px;
  transition: all 0.3s ease-in 0s;
  background: #ffffff;
  border: 2px solid #999999;
  border-radius: 30px;
}

.toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
  left: 43px;
}

.toggle-switch-label-wrapper {
  width: 130px;
  display: flex;
}

.main-frontend {
  overflow: visible;
}
