strong {
  font-weight: bold;
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.flex-container {
  display: flex;
  justify-content: center;
}

#reservation-form label {
  display: block;
  text-align: left;
}

.nice-select.open {
  z-index: 100;
}

#reservation-form input[type="checkbox"],
#reservation-form input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  position: relative;
  accent-color: #C59D5F;
}

#reservation-form .radio-group {
  display: flex;
  flex-direction: column;
}

#reservation-form .radio-option {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nice-select .list {
  max-height: unset;
}

.pricing .program-title {
  margin-bottom: 30px;
  text-align: center;
}

.weekly-menu .day {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 35px;
}

.weekly-menu .menu-item {
  padding: 0 20px;
}

.weekly-menu .menu-item .menu-item-desc,
.weekly-menu .menu-item .menu-item-price {
  font-size: 15px;
}

.weekly-menu .promotion-desc,
.weekly-menu .promotion-discount {
  font-size: 15px;
}

.footer-info p {
  font-size: 16px;
  font-family: unset;
}

.footer-contacts.fast-links li {
  display: block;
}

.footer-contacts.fast-links li::before {
  content: none;
}

.hero-content:after,
.hero-content:before,
.hero-line {
  display: none;
}

.hero-title h3 {
  font-family: 'Source Sans Pro', sans-serif;
}

@media only screen and (max-width: 1036px) {
  .hero-title h3 {
    font-size: 28px;
  }
}

section.header-section {
  border-top: none;
}

.section-title h3 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: bold;
  color: inherit;
}

.section-title h4 {
  font-family: 'Playball', cursive;
  color: #C59D5F;
}

/* Lists */
.section-text ul,
.section-text ol {
  margin: 1em 0;
  padding-left: 2em;
  text-align: left;
  font-size: 16px;
}

.section-text ol {
  list-style-type: decimal;
}

.section-text li {
  margin: 0.5em 0;
  list-style-type: disc;
}


.dark-section {
  color: #c1c1c1;
  background-color: #262626;
}

.dark-section p {
  color: inherit;
}

.dark-section a {
  color: #fff;
}

.meal-menu {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.meal-day {
  flex-basis: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.meal-item {
  display: flex;
  align-items: center;
  padding-top: 10px;
  flex-direction: column;
}

.meal-label {
  white-space: nowrap;
  text-align: left;
  font-family: 'Droid Serif', serif;
  font-weight: bold;
  font-style: italic;
  align-self: center;
}

.meal-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #000;
  margin: 0 10px;
}

.meal-name {
  white-space: pre-line;
}

@media (min-width: 992px) {
  .meal-day {
    flex-basis: 50%
  }

  .meal-menu {
    font-size: 16px;
  }

  .meal-item {
    flex-direction: row;
    align-items: end;
  }

  .meal-name {
    text-align: right;
  }
}

.md-content {
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: #262626;
}

/* Headings */
.md-content h1 {
  font-size: 2em;
  font-weight: bold;
}

.md-content h2 {
  font-size: 1.5em;
  font-weight: bold;
}

.md-content h3 {
  font-size: 1.25em;
  font-weight: bold;
}

.md-content h4 {
  font-size: 1em;
  font-weight: bold;
}

.md-content h5 {
  font-size: 0.875em;
  font-weight: bold;
}

.md-content h6 {
  font-size: 0.85em;
  color: #555;
  font-weight: bold;
}

/* Text */
.md-content p {
  color: inherit;
}

/* Lists */
.md-content ul,
.md-content ol {
  margin: 1em 0;
  padding-left: 2em;
}

.md-content ol {
  list-style-type: decimal;
}

.md-content li {
  list-style-type: disc;
}

/* Links */
.md-content a {
  color: #0969da;
  text-decoration: underline;
}

.md-content a:hover {
  text-decoration: none;
}

/* Code */
.md-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95em;
  background: #f6f8fa;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

.md-content pre {
  margin: 1em 0;
  padding: 1em;
  background: #f6f8fa;
  overflow-x: auto;
  border-radius: 6px;
}

.md-content pre code {
  padding: 0;
  background: none;
}

/* Blockquotes */
.md-content blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ddd;
  color: #555;
}

/* Horizontal rule */
.md-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

/* Tables */
.md-content table {
  border-collapse: collapse;
  margin: 1em 0;
}

.md-content th,
.md-content td {
  border: 1px solid #ddd;
  padding: 0.5em 0.75em;
}

.md-content th {
  font-weight: 600;
}

/* Images */
.md-content img {
  max-width: 100%;
}

.md-content h1 img,
.md-content h2 img,
.md-content h3 img,
.md-content h4 img,
.md-content h5 img,
.md-content h6 img {
  vertical-align: text-top;
}

.md-content.blog {
  max-width: 680px;
}