.bft-ordering {
  color: #34343b;
  font-size: 16px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 680px;
}

.bft-ordering__title {
  color: #34343b;
  font-size: 25px;
  margin: 0 0 4px;
  text-align: center;
}

.bft-ordering__intro {
  margin: 0 0 18px;
  text-align: center;
}

.bft-ordering__trucks {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bft-ordering__truck {
  background: #fff;
  border: 1px solid #e2d5c7;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  padding: 17px;
}

.bft-ordering__truck h4 {
  color: #ed6c22;
  font-size: 20px;
  margin: 0 0 7px;
}

.bft-ordering__place {
  font-weight: 700;
  margin: 0 0 3px;
}

.bft-ordering__address,
.bft-ordering__hours {
  margin: 0 0 8px;
}

.bft-ordering__hours {
  font-weight: 700;
}

.bft-ordering__button {
  background: #ed6c22;
  border-radius: 3px;
  color: #fff !important;
  display: block;
  font-weight: 700;
  margin-top: auto;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none !important;
}

.bft-ordering__button:hover,
.bft-ordering__button:focus {
  background: #cb4f0b;
  color: #fff !important;
}

.bft-ordering__button.is-disabled {
  background: #777;
  cursor: not-allowed;
}

.bft-ordering__notice {
  font-size: 14px;
  margin: 17px 0 8px;
}

.bft-ordering__schedule {
  color: #ed6c22 !important;
  font-weight: 700;
}

.bft-ordering--message {
  padding: 10px 4px;
  text-align: center;
}

@media (max-width: 620px) {
  .bft-ordering__trucks {
    grid-template-columns: 1fr;
  }

  .bft-ordering__title {
    font-size: 22px;
  }
}

