/* Basis: Fundament */
@font-face {
  font-family: "tangerine";
  font-display: swap;
  src: url("/font/tangerine.woff2") format("woff2"), url("/font/tangerine.woff") format("woff");
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 189, 18);
}

:root {
  --mm-green: rgb(22,85,0);
  --mm-green-dark: rgb(0,100,0);
  --mm-yellow: rgb(255,189,18);
  --mm-surface: rgba(255,255,255,0.7);
  --mm-surface-strong: rgba(255,255,255,0.95);
  --mm-text: rgb(22,85,0);
  --mm-danger: rgb(149,0,0);
  --mm-shadow: 0.01vw 0.05vw 0.2vw rgba(0,0,0,0.9);
  --mm-focus: 0.18rem solid rgba(255,189,18,0.85);
  --mm-radius: 0;
  --mm-panel-padding: 0.5em;
  scroll-behavior: smooth;
  scrollbar-color: var(--mm-green) rgb(241, 241, 241);
}

body {
  width: clamp(25em, 90vw, 110em);
  margin: 0.5vh auto;
  font-family: sans-serif;
  color: var(--mm-text);
  background: url(/bilder/background.jpg) center top;
  background-size: cover;
  background-attachment: fixed;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto auto auto auto 1fr auto;
  grid-template-areas: "header			header" "nav			nav" "output			output" "main			article" "main			aside" "footer			footer";
}

.fehler,
.bestaetigung {
  color: red;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  max-width: 80%;
  border: red 0.2em dotted;
  margin: auto;
}

a {
  color: rgb(22, 85, 0);
  text-decoration: none;
}

a[href*=ticketbestellung] {
  color: var(--mm-danger);
}

a:hover {
  text-decoration: underline;
}

svg[class*=mm-] {
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
  transition: color 0.2s ease, fill 0.2s ease, transform 0.2s ease;
}

svg.mm-social-icon,
svg.mm-menu-icon,
svg.mm-inline-status-icon,
svg.mm-payment-icon,
svg.mm-login-icon,
svg.mm-side-ico,
svg.mm-bd-ico,
svg.gc-icon {
  fill: currentColor;
}

p#error {
  color: red;
  font-weight: bold;
}

h2, h3 {
  text-align: center;
}

body > header,
body > nav,
body > output,
body > main,
body > article,
body > aside > section,
body > footer,
body > nav > ul > li > ul {
  border-radius: var(--mm-radius);
  border: 0px solid;
  padding: var(--mm-panel-padding);
  margin: 0.3vw;
  box-shadow: var(--mm-shadow);
}

body > output {
  grid-area: output;
  display: block;
}

body > header {
  background: linear-gradient(to bottom, var(--mm-green), rgba(255, 255, 255, 0.2));
  grid-area: header;
  font-family: tangerine, arial, sans-serif;
  font-size: clamp(2em, 4vw, 4rem);
  text-align: center;
  color: var(--mm-yellow);
  text-shadow: var(--mm-shadow);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

body > header a,
body > header a:not(:last-child):hover {
  text-decoration: none;
  color: inherit;
}

body > header > div {
  flex-basis: 100%;
  text-align: right;
  color: #C00;
  margin: -0.5em 0 -0.3em auto;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 0.4em;
  text-shadow: none;
}

body > header > a > img {
  max-width: clamp(2em, 4vw, 4rem);
}

body > header > div > a > img {
  height: 1em;
}

body > header > div > a {
  color: var(--mm-yellow);
}

body > header > div > a:hover,
body > header > div > a:focus {
  color: #fff7d6;
}

body > header > div svg.mm-social-icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  filter: drop-shadow(0 0.04em 0.08em rgba(0, 0, 0, 0.35));
}

body > header > div > a:hover svg.mm-social-icon,
body > header > div > a:focus svg.mm-social-icon {
  transform: translateY(-0.04em);
}

body > nav {
  grid-area: nav;
  background: var(--mm-surface);
  text-align: center;
  z-index: 999;
}

/*Verstecke Navi-checkbox*/
nav label {
  display: none;
}

nav input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav input:focus-visible + label {
  outline: var(--mm-focus);
  outline-offset: 0.2rem;
}

.visuell-versteckt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mm-bd-card fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.mm-bd-card legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

body > nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

body > nav > ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: clamp(1em, 2vw, 2em);
  font-weight: bold;
  font-style: italic;
}

body > nav > ul > li > a {
  text-align: center;
  white-space: nowrap;
}

body > nav > ul > li > ul {
  display: none;
  position: absolute;
  margin: -0.1vw;
  font-size: 0.8em;
}

body > nav > ul > li:hover > ul,
body > nav > ul > li:focus-within > ul {
  display: block;
  background: var(--mm-surface-strong);
}

/* Basis: Inhalt und Aside */
body > main {
  background: var(--mm-surface);
  grid-area: main;
}

body > aside {
  background: var(--mm-surface);
  grid-area: aside;
}

div#left_navi ul li {
  font-size: 1.1em;
  background: rgb(240, 240, 240);
  border-radius: 0.3em;
  margin: 0.3em 0;
  padding: 0.2em;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

div#left_navi ul li:hover {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

section#login a.mm-side-home,
div#left_navi a.mm-side-home {
  display: block;
  margin: 6px 0 8px 0;
  padding: 0.2rem 0;
  font-weight: bold;
  text-decoration: none;
  color: rgb(22, 85, 0);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 0.15rem solid rgb(255, 189, 18);
}

section#login a.mm-side-home:hover,
section#login a.mm-side-home:focus,
div#left_navi a.mm-side-home:hover,
div#left_navi a.mm-side-home:focus {
  text-decoration: underline;
}

section#login a.mm-side-home .mm-side-ico,
div#left_navi a.mm-side-home .mm-side-ico {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
}

section#login .mm-side-links,
div#left_navi .mm-side-links {
  margin-top: 8px;
}

section#login .mm-side-head,
div#left_navi .mm-side-head {
  margin: 10px 0 6px 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8a6a3d;
}

section#login a.mm-side-link,
div#left_navi a.mm-side-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 0.5rem;
  margin: 4px 0;
  border-radius: 0.6rem;
  background: #f9f1e2;
  color: #3a2416;
  text-decoration: none;
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.08);
}

section#login a.mm-side-link:hover,
section#login a.mm-side-link:focus,
div#left_navi a.mm-side-link:hover,
div#left_navi a.mm-side-link:focus {
  background: #fde8c6;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}

section#login a.mm-side-link.mm-side-link-active,
div#left_navi a.mm-side-link.mm-side-link-active {
  background: #f7d59e;
  border: 1px solid #d9a85b;
}

section#login .mm-side-link-text,
div#left_navi .mm-side-link-text {
  font-size: 0.95em;
}

section#login .mm-side-ico,
section#login .mm-side-ico-fallback,
div#left_navi .mm-side-ico,
div#left_navi .mm-side-ico-fallback {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 0.95rem;
}

section#login .mm-side-ico,
div#left_navi .mm-side-ico {
  fill: currentColor;
  color: #9a6518;
}

section#login .mm-side-ico-fallback,
div#left_navi .mm-side-ico-fallback {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd27a 0%, #e3a23b 70%, #c68022 100%);
}

section#login .mm-side-badge,
div#left_navi .mm-side-badge {
  margin-left: auto;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border-radius: 0.7rem;
  background: #e7b766;
  color: #3a2416;
  font-weight: bold;
}

section#login a.mm-side-link:hover .mm-side-ico,
section#login a.mm-side-link:focus .mm-side-ico,
div#left_navi a.mm-side-link:hover .mm-side-ico,
div#left_navi a.mm-side-link:focus .mm-side-ico {
  color: var(--mm-green);
}

body > article {
  background: var(--mm-surface);
  grid-area: article;
}

body > footer {
  background: var(--mm-surface);
  grid-area: footer;
}

body > footer ul {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0 2vw;
}

body > footer ul li ul {
  display: block;
}

body > footer p:last-child {
  text-align: center;
}

body > nav ul li form fieldset a {
  font-size: 0.7em;
  margin: 3% 0 0 0;
}

body > article {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
  align-self: start;
  text-align: center;
}

body > article > a:first-of-type {
  margin: 0.5em 0;
}

body > article > a > img {
  max-width: 10vw;
}

body > article > a:nth-last-of-type(2) {
  color: darkred;
  font-size: 2em;
  font-weight: bolder;
  margin: 0.5em 0;
}

body > article > a:last-child {
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  border-radius: 100%;
  background-color: #C6FF8C;
}

body > article > a:last-child span {
  color: #ff8c00;
}

.login_formular fieldset {
  border: 0;
  display: flex;
  flex-direction: column;
}

.login_formular fieldset label + input {
  margin: 0 0 0.5em 0;
}

body > aside > section > form fieldset legend {
  font-weight: bolder;
}

body > aside > section#maerchenbrief form {
  display: grid;
  grid-template-columns: min-content auto;
  gap: 0.2em;
}

#maerchenbrief form label {
  text-align: right;
}

#maerchenbrief form button {
  grid-column: 1/-1;
  width: 100%;
  text-align: center;
}

body > aside > section#slideshow > p {
  text-align: center;
}

body > aside > section#slideshow a {
  color: darkred;
}

body > aside > section#login a {
  display: block;
}

form input,
button {
  border: 0.1em solid var(--mm-green);
  border-radius: 0.3em;
}

input[type=submit],
button {
  background: var(--mm-yellow);
  width: max-content;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: var(--mm-focus);
  outline-offset: 0.12rem;
}

.visuell-versteckt:focus,
.visuell-versteckt:active {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  position: static;
  overflow: visible;
  white-space: normal;
  padding: 0.5rem 1rem;
  background: var(--mm-yellow);
  color: var(--mm-green);
}

#cookie-banner {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 50vw;
  width: 50vw;
  height: 90vmin;
  overflow: hidden;
  transition: opacity 2s;
}

#sun {
  opacity: 90%;
  position: absolute;
  top: 0;
  left: 0vw;
  width: 50vw;
  height: 90vmin;
  overflow: hidden;
  filter: blur(10px);
}

.sun {
  position: absolute;
  top: 0;
  left: 0;
  width: 90vmin;
  height: 90vmin;
  background-color: #FACC2E;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.sun:nth-child(1) {
  transform: rotate(60deg);
}
.sun:nth-child(2) {
  transform: rotate(120deg);
}
.sun:nth-child(3) {
  transform: rotate(180deg);
}
.sun:nth-child(4) {
  transform: rotate(240deg);
}
.sun:nth-child(5) {
  transform: rotate(300deg);
}
.sun:nth-child(6) {
  transform: rotate(360deg);
}

#cookietext {
  color: var(--mm-green-dark);
  top: 15%;
  left: 15%;
  width: 80%;
  max-width: 55vmin;
  height: 70%;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cookie-banner p {
  margin: 2vmin;
}

#cookie-banner a {
  color: var(--mm-green-dark);
  text-decoration: underline;
}

#accept-button {
  background-color: var(--mm-green-dark);
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30%;
}

/* customizable snowflake styling */
.snowflake {
  color: #82e5ff;
  font-size: 1em;
  font-family: Arial;
  text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0px);
  }
}
.snowflake {
  position: fixed;
  top: -10%;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: #82e5ff;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}

.snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}

.snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
  left: 70%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
  left: 80%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
  left: 90%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}

.gc-notice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.1rem;
  margin: 0 0 1rem 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7e6, #f1f8ff);
  color: #1f2a44;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.gc-notice strong {
  color: #0b6bf2;
}

.gc-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  color: #b67b12;
}

.mm-inline-status-icon {
  width: 1em;
  height: 1em;
  margin-right: 0.3rem;
  color: #b67b12;
}

.mm-payment-icon {
  width: 1.2em;
  height: 1.2em;
  color: var(--mm-green);
  vertical-align: -0.16em;
}

fieldset#zahlungsweise label .mm-payment-icon {
  width: 2.35em;
  height: 2.35em;
  margin: 0 0.18em;
  vertical-align: middle;
}

fieldset#zahlungsweise li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.35rem 0;
}

fieldset#zahlungsweise li > input[type=radio] {
  flex: 0 0 auto;
  margin-top: 0.45em;
}

fieldset#zahlungsweise li > label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  line-height: 1.35;
}

button .mm-payment-icon,
a .mm-payment-icon,
label .mm-payment-icon {
  color: inherit;
}

ul#darstellerlogin_links svg.mm-login-icon,
ul.mm-login-grid svg.mm-login-icon,
.mm-dashboard-icon svg.mm-login-icon,
.mm-bd-ico {
  color: #9a6518;
}

ul#darstellerlogin_links a.mm-login-card:hover svg.mm-login-icon,
ul#darstellerlogin_links a.mm-login-card:focus svg.mm-login-icon,
ul.mm-login-grid a.mm-login-card:hover svg.mm-login-icon,
ul.mm-login-grid a.mm-login-card:focus svg.mm-login-icon,
.mm-dashboard-card:hover .mm-login-icon,
.mm-dashboard-card:focus .mm-login-icon {
  color: var(--mm-green);
}

/*        hier beginnt die mobile Version         */
/* Basis: Responsive */
@media (orientation: portrait) {
  body {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "header" "nav" "article" "main" "aside" "footer";
  }
  body > header > a > img {
    max-width: 10vw;
  }
  body > nav > ul {
    flex-direction: column;
    display: none;
  }
  body > nav > ul > li > ul {
    position: relative;
    display: block;
  }
  body > nav > ul > li {
    text-align: center;
  }
  body > nav > ul > li > ul {
    text-align: left;
    padding: 0 0 0 5em;
  }
  body > nav > ul > li > ul > li > ul {
    text-align: left;
    padding: 0 0 0 2em;
  }
  body > nav label {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body > nav label#close-menu {
    display: none;
  }
  body > nav label svg {
    color: var(--mm-green);
    fill: currentColor;
    padding: 0 1em;
    cursor: pointer;
    width: 1.35em;
    height: 1.35em;
    vertical-align: middle;
  }
  body > nav label svg rect {
    rx: 8;
  }
  body > nav input:checked ~ ul {
    display: block;
  }
  body > nav input:checked ~ label#show-menu-label {
    display: none;
  }
  body > nav input:checked ~ label#close-menu-label {
    display: flex;
  }
  body > nav > ul > li > ul {
    box-shadow: none;
  }
  body > article > a > img {
    max-width: 30vw;
  }
  body > article {
    grid-template-columns: 1fr 2fr;
  }
  body > article > a:first-of-type,
  body > article > a:last-of-type {
    grid-column: 1/3;
  }
  body > article > a:nth-of-type(2) {
    grid-area: 2/1/6/2;
  }
  body main {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0.01vw 0.05vw 0.2vw rgb(22, 85, 0) inset, 0 0 0.2vw rgb(22, 85, 0), 0 0 0.4vw rgb(22, 85, 0); /* zusaetzlicher Schatten nach aussen */
  }
}
/* Legacy slider bridge */
/* CSS Document */
body > aside > section#slideshow {
  aspect-ratio: 1/1;
  padding: 1%;
}

body > aside > section#slideshow div {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body > aside > section#slideshow img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

body > aside > section#slideshow figure {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  animation: wechseln 50s infinite;
  opacity: 0;
  width: 100%;
  height: 100%;
}

body > aside > section:hover figure {
  animation-play-state: paused;
}

@keyframes wechseln {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  13% {
    opacity: 0;
  }
}
body > aside > section#slideshow figure:nth-of-type(2) {
  animation-delay: 5s;
}

body > aside > section#slideshow figure:nth-of-type(3) {
  animation-delay: 10s;
}

body > aside > section#slideshow figure:nth-of-type(4) {
  animation-delay: 15s;
}

body > aside > section#slideshow figure:nth-of-type(5) {
  animation-delay: 20s;
}

body > aside > section#slideshow figure:nth-of-type(6) {
  animation-delay: 25s;
}

body > aside > section#slideshow figure:nth-of-type(7) {
  animation-delay: 30s;
}

body > aside > section#slideshow figure:nth-of-type(8) {
  animation-delay: 35s;
}

body > aside > section#slideshow figure:nth-of-type(9) {
  animation-delay: 40s;
}

body > aside > section#slideshow figure:nth-of-type(10) {
  animation-delay: 45s;
}

body > aside > section#feedback {
  padding: 1%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body > aside > section#feedback blockquote {
  height: 0;
  overflow: hidden;
  animation: wechseln_feedback 70s infinite;
  margin: 0;
  padding: 0;
}

@keyframes wechseln_feedback {
  0% {
    height: 0;
  }
  1% {
    height: 15em;
  }
  14% {
    height: 15em;
  }
  15% {
    height: 0;
  }
}
body > aside > section#feedback blockquote:nth-of-type(2) {
  animation-delay: 10s;
}

body > aside > section#feedback blockquote:nth-of-type(3) {
  animation-delay: 20s;
}

body > aside > section#feedback blockquote:nth-of-type(4) {
  animation-delay: 30s;
}

body > aside > section:nth-of-type(2) blockquote:nth-of-type(5) {
  animation-delay: 40s;
}

body > aside > section#feedback blockquote:nth-of-type(5) {
  animation-delay: 50s;
}

body > aside > section#feedback blockquote:nth-of-type(6) {
  animation-delay: 60s;
}

body > aside > section#feedback blockquote:nth-of-type(7) {
  animation-delay: 70s;
}

body > aside > section#feedback blockquote p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

body > aside > section#feedback div {
  height: 15em;
}

body > aside > section#feedback a:last-child {
  align-self: flex-end;
}
