/* Стили для кнопок "+" и "-" */
.counter{
  width: auto;
}
.counter-button {
  width: 24px;
  height: 24px;
  font-size: 20px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  border-radius: 50%;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
  position: relative;
  top: 0;
  left: 0;
  border: 0;
}

.what {
    position: fixed;
    bottom: 92px;
    right: 28px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
    z-index: 1;
}

.what:hover {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    opacity: .8;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

@media (max-width: 1440px) {
  .counter-button{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  
}
.counter-button:hover{
  background: #343a40;
}
.minus span {
  margin-top: -2px;
}
@media (max-width: 1440px) {
  .minus span {
    margin-top: 0;
  }
}

.counter-button span {
  display: inline-flex;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.counter-button.disabled {
  background-color: #f4f4f4;
  cursor: not-allowed;
}

.counter-text {
  margin: 0 10px;
  font-size: 18px;
}
/* Стили для полей ввода */
.delayed-order {
  margin-top: 20px;
  flex-direction: column;
  gap: 14px;
}
.delayed-order input{
  position: relative;
  height: 52px;
  border: 1px solid #ccc;
  padding: 8px 15px;
  border-radius: 13px;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  background: #fff;
}
.delayed-order__time{
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.delayed-order__input{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.delayed-order input:focus{
  border: 1px solid #ccc;
  outline: none;
}

.delayed-order input{
  width: 100%;
}
