@charset "UTF-8";
:root { --color-light: white; --color-dark: black; --color-blue: #00AAEE; --color-red: #EA2730; --color-orange: #FF8800; --color-green: #33BB55; --color-yellow: #EECC44; --color-grey: #767676; --color-light-grey: #aaa; --color-faint-grey: #eee; --color-highlight: #00AAEE; }

.color-light { color: white !important; }

.color-dark { color: black !important; }

.color-blue { color: #00AAEE !important; }

.color-red { color: #EA2730 !important; }

.color-orange { color: #FF8800 !important; }

.color-green { color: #33BB55 !important; }

.color-yellow { color: #EECC44 !important; }

.color-grey { color: #767676 !important; }

.color-light-grey { color: #aaa !important; }

.color-faint-grey { color: #eee !important; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Regular.ttf"); }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Italic.ttf"); font-style: italic; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Bold.ttf"); font-weight: bold; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-BoldItalic.ttf"); font-weight: bold; font-style: italic; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Medium.ttf"); font-weight: 500; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Black.ttf"); font-weight: 800; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Light.ttf"); font-weight: 300; }

@font-face { font-family: "Roboto"; src: url("../fonts/roboto/Roboto-Thin.ttf"); font-weight: 100; }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-Regular.ttf"); }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-Italic.ttf"); font-style: italic; }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-Bold.ttf"); font-weight: bold; }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-Medium.ttf"); font-weight: 500; }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-SemiBold.ttf"); font-weight: 600; }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-Light.ttf"); font-weight: 300; }

@font-face { font-family: "Josefin Sans"; src: url("../fonts/josefin-sans/JosefinSans-ExtraLight.ttf"); font-weight: 100; }

.m-1 { margin: 1rem; }

.mt-1 { margin-top: 1rem !important; }

.mr-1 { margin-right: 1rem !important; }

.mb-1 { margin-bottom: 1rem !important; }

.ml-1 { margin-left: 1rem !important; }

.p-1 { padding: 1rem; }

.pt-1 { padding-top: 1rem; }

.pr-1 { padding-right: 1rem; }

.pb-1 { padding-bottom: 1rem; }

.pl-1 { padding-left: 1rem; }

.m-2 { margin: 2rem; }

.mt-2 { margin-top: 2rem !important; }

.mr-2 { margin-right: 2rem !important; }

.mb-2 { margin-bottom: 2rem !important; }

.ml-2 { margin-left: 2rem !important; }

.p-2 { padding: 2rem; }

.pt-2 { padding-top: 2rem; }

.pr-2 { padding-right: 2rem; }

.pb-2 { padding-bottom: 2rem; }

.pl-2 { padding-left: 2rem; }

.m-3 { margin: 3rem; }

.mt-3 { margin-top: 3rem !important; }

.mr-3 { margin-right: 3rem !important; }

.mb-3 { margin-bottom: 3rem !important; }

.ml-3 { margin-left: 3rem !important; }

.p-3 { padding: 3rem; }

.pt-3 { padding-top: 3rem; }

.pr-3 { padding-right: 3rem; }

.pb-3 { padding-bottom: 3rem; }

.pl-3 { padding-left: 3rem; }

.m-4 { margin: 4rem; }

.mt-4 { margin-top: 4rem !important; }

.mr-4 { margin-right: 4rem !important; }

.mb-4 { margin-bottom: 4rem !important; }

.ml-4 { margin-left: 4rem !important; }

.p-4 { padding: 4rem; }

.pt-4 { padding-top: 4rem; }

.pr-4 { padding-right: 4rem; }

.pb-4 { padding-bottom: 4rem; }

.pl-4 { padding-left: 4rem; }

.m-5 { margin: 5rem; }

.mt-5 { margin-top: 5rem !important; }

.mr-5 { margin-right: 5rem !important; }

.mb-5 { margin-bottom: 5rem !important; }

.ml-5 { margin-left: 5rem !important; }

.p-5 { padding: 5rem; }

.pt-5 { padding-top: 5rem; }

.pr-5 { padding-right: 5rem; }

.pb-5 { padding-bottom: 5rem; }

.pl-5 { padding-left: 5rem; }

.grid { display: grid; gap: 2rem; }

.grid.half-half { grid-template-columns: 1fr 1fr; }

.grid.three-thirds { grid-template-columns: 1fr 1fr 1fr; }

.grid.seventy-thirty { grid-template-columns: 2fr 1fr; }

.grid.thirty-seventy { grid-template-columns: 1fr 2fr; }

.grid.two-rows { grid-template-rows: 1fr 1fr; }

@media (max-width: 960px) { .grid { grid-template-columns: 1fr !important; } }

.grid.gap-1 { gap: 1rem; }

.grid.gap-2 { gap: 2rem; }

.grid.gap-3 { gap: 3rem; }

.grid.gap-4 { gap: 4rem; }

.grid.gap-5 { gap: 5rem; }

.columns { margin-bottom: 2rem; }

.columns > p:first-of-type { margin-top: 0; }

.columns.two { columns: 2; }

.columns.three { columns: 3; }

@media (max-width: 960px) { .columns { columns: 1 !important; } }

.hamburger { padding: 0 0; display: inline-block; cursor: pointer; transition-property: opacity, filter; transition-duration: 0.15s; transition-timing-function: linear; font: inherit; color: inherit; text-transform: none; background-color: transparent; border: 0; margin: 0; overflow: visible; }

.hamburger:hover { opacity: 0.7; }

.hamburger.is-active:hover { opacity: 0.7; }

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after { background-color: white; }

.hamburger-box { width: 40px; height: 24px; display: inline-block; position: relative; }

.hamburger-inner { display: block; top: 50%; margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { width: 40px; height: 4px; background-color: white; border-radius: 4px; position: absolute; transition-property: transform; transition-duration: 0.15s; transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after { content: ""; display: block; }

.hamburger-inner::before { top: -10px; }

.hamburger-inner::after { bottom: -10px; }

/* Spring */
.hamburger--spring .hamburger-inner { top: 2px; transition: background-color 0s 0.13s linear; }

.hamburger--spring .hamburger-inner::before { top: 10px; transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring .hamburger-inner::after { top: 20px; transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner { transition-delay: 0.22s; background-color: transparent !important; }

.hamburger--spring.is-active .hamburger-inner::before { top: 0; transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--spring.is-active .hamburger-inner::after { top: 0; transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); transform: translate3d(0, 10px, 0) rotate(-45deg); }

nav.main { z-index: 1000; }

nav.main a { text-decoration: none !important; }

nav.main a:not(:last-child) { margin-right: 0.5rem; }

@media (max-width: 960px) { nav.main { background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(6px); padding: 1rem; position: fixed; top: 70px; left: 0; width: 100%; height: calc(100vh - 70px); overflow-y: auto; transform: translateX(-100%); transition: transform 0.3s ease-in-out; } nav.main.is-active { transform: translateX(0); } nav.main a { display: block; padding: 1.5rem 1rem; } nav.main a:not(:last-of-type) { border-bottom: 1px solid rgba(255, 255, 255, 0.4); } nav.main a:active { background: var(--color-light); color: var(--color-dark); } }

nav.footer { line-height: 2.2rem; }

nav.footer ul { list-style: none; padding: 0; margin: 0; }

nav.footer ul li { padding: 0; }

nav.footer ul li::before { display: none; }

nav.footer a { color: var(--color-light); }

nav.social-media-list a { color: var(--color-light); text-decoration: none; }

nav.social ul { list-style: none; padding: 0; margin: 0; }

nav.social ul li::before { display: none; }

nav.social ul li a { color: var(--color-light); }

#toc { margin-bottom: 4rem !important; }

h1 { font-size: 4.5rem; line-height: 4.5rem; }

@media (max-width: 960px) { h1 { font-size: 2rem; line-height: 2rem; } }

h2 { font-size: 3rem; font-size: clamp(2rem, 5vw, 3rem); }

h1, h2, h3 { text-transform: lowercase; }

h4 { text-transform: uppercase; }

h3 { font-size: 2rem; }

h1, h2, h3, h4 { margin: 2rem 0 1rem 0; }

.card { padding: 2rem 3rem; margin-bottom: 2rem; height: 100%; color: var(--color-dark); }

.card h1:first-of-type, .card h2:first-of-type, .card h3:first-of-type, .card h4:first-of-type { margin: 0; }

.card.light { color: var(--color-dark) !important; }

.card.rainbow { background-image: linear-gradient(var(--color-red) 0, var(--color-red) 10%, transparent 10%, transparent 20%, var(--color-orange) 20%, var(--color-orange) 30%, transparent 30%, transparent 40%, var(--color-yellow) 40%, var(--color-yellow) 50%, transparent 50%, transparent 60%, var(--color-green) 60%, var(--color-green) 70%, transparent 70%, transparent 80%, var(--color-blue) 80%, var(--color-blue) 90%, transparent 90%); background-position: 0 calc(100% - 50px); background-size: 100% 60px; background-repeat: repeat-x; padding-bottom: 80px; }

.card.light { background-color: white; color: var(--color-light); }

.card.dark { background-color: black; color: var(--color-light); }

.card.blue { background-color: #00AAEE; color: var(--color-light); }

.card.red { background-color: #EA2730; color: var(--color-light); }

.card.orange { background-color: #FF8800; color: var(--color-light); }

.card.green { background-color: #33BB55; color: var(--color-light); }

.card.yellow { background-color: #EECC44; color: var(--color-light); }

.card.grey { background-color: #767676; color: var(--color-light); }

.card.light-grey { background-color: #aaa; color: var(--color-light); }

.card.faint-grey { background-color: #eee; color: var(--color-light); }

.card.green a { color: white; text-decoration: underline; opacity: 0.7; transition: all 0.2s ease-in-out; }

.card.green a:hover { opacity: 1; }

.card.blue a { color: white; }

.card.yellow { color: var(--color-dark) !important; }

@media (max-width: 960px) { .card { padding: 1rem; } }

.card.icon { aspect-ratio: 1; text-align: center; display: flex; flex-direction: column; justify-content: space-between; }

.card.icon img, .card.icon svg { max-width: 50%; height: auto; }

.card.icon svg { margin: 0 auto; }

@media (max-width: 960px) { .card.icon { aspect-ratio: initial; } }

.btn { font-family: "Josefin Sans", sans-serif; border: none; text-transform: uppercase; padding: 0.8rem 1rem; font-weight: bold; background: #ddd; color: var(--color-dark); text-decoration: none !important; opacity: 1 !important; display: inline-block; transition: opacity 0.2s ease-in-out; }

.btn.blue, .btn.green, .btn.orange, .btn.red { color: var(--color-light) !important; }

.btn.blue { background: var(--color-blue); }

.btn.green { background: var(--color-green); }

.btn.orange { background: var(--color-orange); }

.btn.yellow { background: var(--color-yellow); }

.btn.red { background: var(--color-red); }

.btn.white { background: var(--color-light); color: var(--color-dark); }

.btn.big { padding: 1rem 2rem; font-size: 1.2rem; }

.btn:hover { text-decoration: none; opacity: 0.9; }

.btn:active { box-shadow: 0 0 30px rgba(0, 0, 0, 0.6) inset; }

blockquote { border-left: 5px solid var(--color-light-grey); padding: 0.5rem 1rem; font-style: italic; font-size: 1.2rem; color: var(--color-grey); }

blockquote small { font-family: "Josefin Sans", sans-serif; font-style: normal; font-size: 0.8rem; text-transform: uppercase; }

blockquote small::before { content: "– "; }

ul { list-style: disc; padding-left: 1.5em; line-height: 2.2em; }

ul li { position: relative; vertical-align: bottom; }

ul li::marker { font-size: 1.5em; }

.event-list { color: var(--color-dark) !important; }

.event-list .event { line-height: 2em; margin-bottom: 1.5rem; }

.event-list .event time.date { font-weight: bold; }

.event-list .event h4.title { margin: 0; color: var(--color-orange); }

header.main { font-family: "Josefin Sans", sans-serif; text-transform: uppercase; font-weight: 800; padding-top: 1rem; position: relative; z-index: 1000; }

header.main > .wrapper, header.main > #toc { display: flex; align-items: center; padding-bottom: 1rem; }

header.main > .wrapper > a, header.main > #toc > a { flex: 2; }

header.main .logo { display: flex; align-items: center; text-decoration: none !important; }

header.main .logo img { margin-right: 1rem; }

header.main .hamburger { display: none; z-index: 5000; }

header.main img { max-height: 40px; }

@media (max-width: 960px) { header.main img { max-width: 40px; } }

header.main, header.main a { color: white; }

@media (max-width: 960px) { header.main { position: sticky; top: 0; background: black; } header.main .wrapper, header.main #toc { padding-top: 0; } header.main .hamburger { display: block; } }

footer.main { padding: 2rem 0; line-height: 1.5rem; z-index: 1; }

footer.main .wrapper, footer.main #toc { margin-bottom: 2rem; }

footer.main .wrapper > *, footer.main #toc > * { padding: 0 1rem; }

footer.main::after { content: ""; display: block; width: 100%; height: 50px; background: linear-gradient(var(--color-red) 0, var(--color-red) 10%, transparent 10%, transparent 20%, var(--color-orange) 20%, var(--color-orange) 30%, transparent 30%, transparent 40%, var(--color-yellow) 40%, var(--color-yellow) 50%, transparent 50%, transparent 60%, var(--color-green) 60%, var(--color-green) 70%, transparent 70%, transparent 80%, var(--color-blue) 80%, var(--color-blue) 90%, transparent 90%); }

footer.main address { font-style: normal; }

.home .left { padding: 2rem; }

@media (max-width: 960px) { .home .left { padding: 0.5rem; } }

.post { max-width: 800px; }

.post h1 { font-size: 3.8rem; text-transform: lowercase; }

.post .content { margin-top: 4rem; }

.post-container { margin-top: 4rem; }

.post-container .right .card { font-size: 1.3rem; }

.post-container .right .card ul li { margin-bottom: 1rem; }

.post-container .right .card ul li::before { background: white; }

.blogroll article { margin-bottom: 2rem; line-height: 1.5rem; }

.blogroll article h3 { font-size: 2rem; margin: 0; line-height: normal; }

.blogroll article h3 a { color: var(--color-blue); }

.timeline { position: relative; max-width: 1200px; margin: 2rem auto; padding: 2rem 0; /* The actual timeline (the vertical ruler) */ /* Container around content */ /* Add arrows to the left container (pointing right) */ /* Add arrows to the right container (pointing left) */ /* The actual content */ /* Media queries - Responsive timeline on screens less than 600px wide */ }

.timeline::after { content: ""; position: absolute; width: 6px; background-color: var(--color-blue); top: 0; bottom: 0; left: 50%; margin-left: -3px; }

.timeline .container { padding: 0.5rem 40px; position: relative; background-color: inherit; width: 50%; /* Place the container to the left */ /* Place the container to the right */ }

.timeline .container.right::after { left: 0; transform: translateX(-50%); }

.timeline .container:nth-of-type(1n) .content { background-color: #00AAEE; color: var(--color-light); }

.timeline .container.right:nth-of-type(1n)::before { border-color: transparent #00AAEE transparent transparent; }

.timeline .container.left:nth-of-type(1n)::before { border-color: transparent transparent transparent #00AAEE; }

.timeline .container:nth-of-type(2n) .content { background-color: #EA2730; color: var(--color-light); }

.timeline .container.right:nth-of-type(2n)::before { border-color: transparent #EA2730 transparent transparent; }

.timeline .container.left:nth-of-type(2n)::before { border-color: transparent transparent transparent #EA2730; }

.timeline .container:nth-of-type(3n) .content { background-color: #FF8800; color: var(--color-light); }

.timeline .container.right:nth-of-type(3n)::before { border-color: transparent #FF8800 transparent transparent; }

.timeline .container.left:nth-of-type(3n)::before { border-color: transparent transparent transparent #FF8800; }

.timeline .container:nth-of-type(4n) .content { background-color: #33BB55; color: var(--color-light); }

.timeline .container.right:nth-of-type(4n)::before { border-color: transparent #33BB55 transparent transparent; }

.timeline .container.left:nth-of-type(4n)::before { border-color: transparent transparent transparent #33BB55; }

.timeline .container:nth-of-type(5n) .content { background-color: #EECC44; color: var(--color-light); color: var(--color-black); }

.timeline .container.right:nth-of-type(5n)::before { border-color: transparent #EECC44 transparent transparent; }

.timeline .container.left:nth-of-type(5n)::before { border-color: transparent transparent transparent #EECC44; }

.timeline .container::after { content: ""; position: absolute; width: 12px; height: 12px; right: 0; transform: translateX(50%); background-color: white; border: 6px solid var(--color-blue); top: 15px; border-radius: 50%; z-index: 1; }

.timeline .container.left { left: 0; }

.timeline .container.right { left: 50%; }

.timeline .left::before { content: " "; height: 0; position: absolute; top: 18px; width: 0; z-index: 1; right: 30px; border: medium solid white; border-width: 10px 0 10px 10px; border-color: transparent transparent transparent white; }

.timeline .right::before { content: " "; height: 0; position: absolute; top: 18px; width: 0; z-index: 1; left: 30px; border: medium solid white; border-width: 10px 10px 10px 0; border-color: transparent white transparent transparent; }

.timeline .content { padding: 1rem 2rem; position: relative; border-radius: 8px; }

@media (max-width: 960px) { .timeline { /* Place the timelime to the left */ /* Full-width containers */ /* Make sure that all arrows are pointing leftwards */ /* Make sure all circles are at the same spot */ } .timeline::after { left: 2rem; } .timeline .container { width: 100%; padding-left: 70px; padding-right: 25px; /* Make all right containers behave like the left ones */ } .timeline .container::after { left: 2rem !important; transform: translateX(-50%) !important; } .timeline .container.right { left: 0 !important; } .timeline .container::before { left: 60px; border: medium solid white; border-width: 10px 10px 10px 0 !important; } .timeline .container:nth-of-type(1n)::before { border-color: transparent #00AAEE transparent transparent !important; } .timeline .container:nth-of-type(2n)::before { border-color: transparent #EA2730 transparent transparent !important; } .timeline .container:nth-of-type(3n)::before { border-color: transparent #FF8800 transparent transparent !important; } .timeline .container:nth-of-type(4n)::before { border-color: transparent #33BB55 transparent transparent !important; } .timeline .container:nth-of-type(5n)::before { border-color: transparent #EECC44 transparent transparent !important; } .timeline .content::after { left: 2rem; transform: none !important; } }

.spinner { display: block; position: relative; max-width: 100px; height: 100px; width: 100%; margin: 2rem auto; mask-image: url("../images/chevron_maschinendeck.svg"); -webkit-mask-image: url("../images/chevron_maschinendeck.svg"); background: var(--color-light-grey); animation: spin 2.5s ease-in-out infinite; }

@keyframes spin { 0% { transform: rotate(0deg); }
  50% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); } }

.faq h3 { font-size: 2rem; font-weight: normal; color: var(--color-orange); }

.faq h3:not(:first-of-type) { margin-top: 2rem; }

.page-faq #toc li::marker { color: var(--color-orange); }

.project-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; padding-bottom: 4rem !important; }

.project-list h3 { text-transform: uppercase; margin: 0; }

.project-list > * { display: grid; align-items: center; background: red; color: white; padding: 2rem; border-radius: 1rem; text-align: center; }

.project-list > *:nth-child(5n - 4) { background: var(--color-blue); }

.project-list > *:nth-child(5n - 3) { background: var(--color-green); }

.project-list > *:nth-child(5n - 2) { background: var(--color-yellow); }

.project-list > *:nth-child(5n - 2), .project-list > *:nth-child(5n - 2) .icon, .project-list > *:nth-child(5n - 2) .icon::before, .project-list > *:nth-child(5n - 2) p { color: #333 !important; }

.project-list > *:nth-child(5n - 1) { background: var(--color-orange); }

.project-list > *:nth-child(5n - 5) { background: var(--color-red); }

.map .overlay { min-height: 600px; background: url("../../assets/images/map_placeholder.jpg") no-repeat center center; background-size: cover; display: flex; flex-direction: column; gap: 2rem; color: white; align-items: center; justify-content: center; text-align: center; }

.map .overlay p { padding: 0 4rem; }

.map textarea { display: none; }

.map iframe { width: 100%; height: 600px; }

.pagination { list-style: none; display: flex; padding: 0; justify-content: center; margin: 4rem 0; }

.pagination li { margin: 0; padding: 0; }

.pagination li a, .pagination li span { padding: 0.5rem 1rem; height: 100%; display: block; }

.pagination li a[aria-current="page"], .pagination li span[aria-current="page"] { background: var(--color-blue); border-color: var(--color-blue); color: white; border-radius: 12px; }

.pagination li a:hover, .pagination li span:hover { text-decoration: none; }

.pagination li a { align-content: center; text-align: center; aspect-ratio: 1; }

.pagination li span { padding: 0.5rem; }

.pagination li::before { display: none; }

* { box-sizing: border-box; }

a { color: var(--color-blue); text-decoration: none; }

a:hover { text-decoration: underline; }

html, body { font-size: 16px; }

body { margin: 0; padding: 0; background: var(--color-dark); color: var(--color-light); font-family: "Roboto", sans-serif; scroll-behavior: smooth; }

p { line-height: 1.8rem; }

.wrapper, #toc { max-width: 1440px; margin: 0 auto; padding: 1rem 2rem; }

@media (max-width: 960px) { .wrapper, #toc { padding: 1rem; } }

#toc { padding-left: calc(1.5em + 2rem); }

.stripe { margin: 2rem 0; padding: 2rem 0; }

.stripe:not(.light) ul li::before { background: rgba(255, 255, 255, 0.6); }

.stripe.light { color: white; background: white; }

.stripe.light .btn { color: var(--color-light); }

.stripe.dark { color: white; background: black; }

.stripe.dark .btn { color: var(--color-dark); }

.stripe.blue { color: white; background: #00AAEE; }

.stripe.blue .btn { color: var(--color-blue); }

.stripe.red { color: white; background: #EA2730; }

.stripe.red .btn { color: var(--color-red); }

.stripe.orange { color: white; background: #FF8800; }

.stripe.orange .btn { color: var(--color-orange); }

.stripe.green { color: white; background: #33BB55; }

.stripe.green .btn { color: var(--color-green); }

.stripe.yellow { color: white; background: #EECC44; }

.stripe.yellow .btn { color: var(--color-yellow); }

.stripe.grey { color: white; background: #767676; }

.stripe.grey .btn { color: var(--color-grey); }

.stripe.light-grey { color: white; background: #aaa; }

.stripe.light-grey .btn { color: var(--color-light-grey); }

.stripe.faint-grey { color: white; background: #eee; }

.stripe.faint-grey .btn { color: var(--color-faint-grey); }

.stripe.green a:not(.btn) { color: white; text-decoration: underline; opacity: 0.7; transition: all 0.2s ease-in-out; }

.stripe.green a:not(.btn):hover { opacity: 1; }

.stripe.yellow { color: var(--color-dark); }

.stripe.light { color: var(--color-dark); }

.stripe:last-child { margin-bottom: 0; padding-bottom: 0; }

.center { text-align: center; }

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

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