header {
  height: 75px;
  background: #4f4f4e;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}
header ul li {
  list-style: none;
}

.order-form {
  width: 100%;
  height: fit-content;
  border: 2px solid rgba(0, 0, 0, 0.6);
  padding: 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
}
.order-form h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.order-form .dishes-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1200px) {
  .order-form .dishes-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .order-form .dishes-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .order-form .dishes-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .order-form .dishes-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.order-form figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.order-form .inputs-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.order-form select, .order-form input {
  border-radius: 6px;
  height: 36px;
  font-size: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 6px;
  min-width: 20px;
}
.order-form .double-input-container {
  display: flex;
  gap: 10px;
}
.order-form .double-input-container input {
  width: 200px;
}
@media (max-width: 600px) {
  .order-form .double-input-container {
    flex-direction: column;
    gap: 5px;
  }
  .order-form .double-input-container input {
    width: 90%;
  }
}
.order-form .total-price {
  font-size: 18px;
  margin: 0;
}
.order-form label[for=agb] {
  font-size: 16px;
}
.order-form .flex-gap {
  display: flex;
  gap: 20px;
  align-items: center;
}
.order-form .btn {
  width: 200px;
  text-align: center;
  background: #243307;
  color: white;
  border: none;
}
.order-form .btn:hover {
  background: #000;
}
@media (max-width: 600px) {
  .order-form .btn {
    width: 100%;
  }
}
.order-form .form-box-with-small-info {
  display: flex;
  flex-direction: column;
}

.swal2-confirm {
  background: #243307 !important;
  color: white !important;
  border: none !important;
}
.swal2-confirm:hover {
  background: #000 !important;
}

[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
  color: white !important;
  border: none !important;
  background: #000 !important;
}

.army-link {
  color: #243307;
  font-weight: bold;
}
.army-link:hover {
  text-decoration: underline;
  color: #000;
}

.payment-options {
  margin-top: 20px;
  margin-bottom: 20px;
}

.payment-options h4 {
  margin-bottom: 10px;
}

.payment-options label {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 14px;
  cursor: pointer;
}

.payment-options input[type=radio] {
  margin-right: 8px;
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */