/* Add your css code here */
/*
Variable Definitions:
  --r-bg: Sets the background color.
  --r-tx: Sets the text color.
  --r-h1: Sets the color for h1, h2, and h3 headings.
  --r-lk: Sets the link text color.
  --r-lk-h: Sets the hover color for link text.
  --r-br: Sets the border color.
  --r-bg-fr: Sets the background color for input forms.
  --r-tx-lk: Sets the menu link text color.
  --r-tx-lk-h: Sets the hover color for menu link text.
  --r-bg-lk: Sets the background color for menu links.
  --r-bg-lk-h: Sets the hover background color for menu links.
  --r-tx-bt: Sets the button text color.
  --r-tx-bt-h: Sets the hover color for button text.
  --r-bg-bt: Sets the button background color.
  --r-bg-bt-h: Sets the hover background color for buttons.
*/

/*
Regions Names, each region has an ID and a Class with the same name.
You can use .page-wrapper or #page-wrapper
#page-wrapper {}
#primary-sidebar-menu {}
#fixed-search-block {}
#popup-login-block {}
#header {}
#primary-menu {}
#welcome-text {}

#top-container {}
#top-box-first {}
#top-box-second {}
#top-box-third {}

#system-messages {}
#breadcrumb {}
#page-title {}

#main-container {}
#sidebar-box-first {}
#sidebar-box-main {}
#sidebar-box-second {}

#bottom-container {}
#bottom-box-first {}
#bottom-box-second {}
#bottom-box-third {}
#bottom-box-fourth {}

#footer-container {}
#footer-box-first {}
#footer-box-second {}
#footer-box-third {}

#footer-menu {}
#copyright {}

Examples:

#page-wrapper {
  background-color: var(--r-bg);
  color: var(--r-tx);
  border-color: var(--r-br);
}

h1, h2, h3 {
  color: var(--r-h1);
}

a:not(li.nav__menu-item a) {
  color: var(--r-lk);
  color: var(--r-lk-h);
}

input:not(.button) {
  background-color: var(--r-bg-fr);
}

li.nav__menu-item a {
  color: var(--r-tx-lk);
  background-color: var(--r-bg-lk);
}

li.nav__menu-item a:hover {
  color: var(--r-tx-lk-h);
  background-color: var(--r-bg-lk-h);
}

button:not(li.nav__menu-item button) {
  color: var(--r-tx-bt);
  background-color: var(--r-bg-bt);
}

button:not(li.nav__menu-item button):hover {
  color: var(--r-tx-bt-h);
  background-color: var(--r-bg-bt-h);
}
https://www.drupal.org/docs/extending-drupal/themes/contributed-themes/solo/instructions-for-developers-on-using-colors-in-solo-theme
*/

/* stapt */
.list-group-item { /* stapt remove listgroep */
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.fel{
  color: black; 
  background-color: #24f404;
  font-weight: none;
}

.baktijd-bereid:before {
  content: url("baktijd.png");
  margin-right: 3px;
  margin-left: 1px;
}

.baktijd-product {
  font-size: larger;
  --mark-color: rgb(248, 193, 40);
  --mark-skew: 0.25em;
  --mark-height: 1.5em;
  --mark-overlap: 1.5em;
  margin-inline: calc(var(--mark-overlap)* -1);
  padding-inline: var(--mark-overlap);
  background-color: transparent;
  background-image: linear-gradient(to bottom right, transparent 50%, var(--mark-color) 50%), linear-gradient(var(--mark-color), var(--mark-color)), linear-gradient(to top left, transparent 50%, var(--mark-color) 50%);
  background-size: var(--mark-skew) var(--mark-height), calc(100% - var(--mark-skew)* 2 + 1px) var(--mark-height), var(--mark-skew) var(--mark-height);
  background-position: left center, center, right center;
  background-repeat: no-repeat;
  color: rgb(0, 0, 0);
}
/* end stapt */
h1.page-title-text {
  display: grid;
  padding: var(--solo-px20) 0; /* stapt 32 */
}

h1.page-title-text span {
  display: inline-flex;
}

h1.page-title-text {
  font-size: calc(2 * var(--solo-px18)); /* stapt 32 */
  line-height: calc(2 * var(--solo-px22)); /* stapt 38 */
}

.fel{
  color: black; 
  background-color: #0aec51;
  font-weight: none;
}
#page-wrapper.pt-center h1.page-title-text,
#page-wrapper.pt-center h1.page-title-text span {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width:75rem) {
  h1.page-title-text {
    font-size: calc(2 * var(--solo-px18));
    line-height: calc(2 * var(--solo-px18));
  }

}

@media (max-width:62rem) {
  h1.page-title-text {
    font-size: var(--solo-px18);
    line-height: calc(2 * var(--solo-px22));
    padding: var(--solo-px16) 0;
  }

}

@media (max-width:48rem) {
  h1.page-title-text {
    font-size: var(--solo-px24);
    line-height: calc(2 * var(--solo-px14));
    padding: var(--solo-px8) 0;
  }

}

@media (max-width:36rem) {
  h1.page-title-text {
    font-size: var(--solo-px18);
    line-height: var(--solo-px22);
    padding: var(--solo-px8) 0;
  }

}