
/*******************************************************************************************************************/
/*  FONTS                                                                                                          */
/*******************************************************************************************************************/

/* OPEN SANS */
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans/OpenSans-Regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans/OpenSans-Italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans/OpenSans-Bold-webfont.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans/OpenSans-BoldItalic-webfont.woff') format('woff');
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans/OpenSans-Light-webfont.woff') format('woff');
  font-weight: light;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans/OpenSans-LightItalic-webfont.woff') format('woff');
  font-weight: light;
  font-style: italic;
}

/* ROBOTO CONDENSED */
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/roboto-condensed/robotocondensed-variablefont_wght-webfont.woff') format('woff'),
    url('../fonts/roboto-condensed/robotocondensed-variablefont_wght-webfont.woff2') format('woff2');
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/roboto-condensed/robotocondensed-italic-variablefont_wght-webfont.woff') format('woff'),
  url('../fonts/roboto-condensed/robotocondensed-italic-variablefont_wght-webfont.woff2') format('woff2');
  font-style: italic;
}



/*******************************************************************************************************************/
/*  VARIABLES                                                                                                      */
/*******************************************************************************************************************/

:root {
  --color-white: #fff;
  --color-grey: #777;
  /* --color-light: #efefef; */
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #d16464;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;

  --width-min: 10rem;
  --width-max: 75rem;

  /* --min-column-width: 10rem; */
  --gap: 1rem;

  --padding: 1.5rem;

  --color-main: #63c3be;
  --color-main-light: #e8f3f1;
  --color-main-light-hover: #d7eae7;
  --color-main-light-hover-hover: #c6e2dd;
  --color-main-dark: #005b5c;
  --color-highlight: #9c0053;
  --color-main-grey: #333333;
  --color-black: var(--color-main-grey);

  --font-family-sans: "Open Sans", sans-serif;
  --font-family-headline: "Roboto Condensed";
}



/*******************************************************************************************************************/
/*  GENERAL STYLES                                                                                                 */
/*******************************************************************************************************************/

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  scroll-behavior: smooth;
}

body {
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  margin: 0;
  padding: 0;
}



/*******************************************************************************************************************/
/*  GRID                                                                                                           */
/*******************************************************************************************************************/

.grid {
  display: grid;
  --columns: 12;
  grid-gap: var(--gap);
  grid-template-columns: repeat(var(--columns), 1fr);
  /* grid-template-columns: repeat(auto-fit, minmax(var(--width-min), 1fr)); */
}

.grid > .column {
  margin-bottom: var(--gap);
  grid-column: span var(--columns);
}

.autogrid {
  display: grid;
  grid-gap: var(--gap);
  grid-auto-flow: dense;
}

@media screen and (max-width: 30rem) {

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

}



/*******************************************************************************************************************/
/*  TYPOGRAPHY                                                                                                     */
/*******************************************************************************************************************/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: var(--font-family-headline);
  /* margin-bottom: 1rem; */
}

.text,
aside {
  line-height: 1.5em;
}

.text a,
aside a {
  text-decoration: underline;
}

.column .text:first-child > *:not(h1):not(.highlighted):not(.news),
aside *:first-child {
  margin-top: 0;
}

.column .text:last-child > *:not(h1):not(.highlighted):not(.news),
aside *:last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol
aside p,
aside ul,
aside ol {
  margin-bottom: 1.5rem;
}

.text ul,
.text ol,
aside ul,
aside ol {
  transform: translateX(1rem);
  margin-right: 1rem;
}

.text ul p,
.text ol p,
aside ul p,
aside ol p {
  margin-bottom: 0;
}

.text ul>li,
aside ul>li {
  list-style: disc;
}

.text ol>li,
aside ol>li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol,
aside ul ol,
aside ul ul,
aside ol ul,
aside ol ol {
  margin-bottom: 0;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: var(--padding);
  line-height: 1.25em;
}

.text h2,
aside h2,
.h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}

.text h3,
aside h3,
.h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.35em;
  font-weight: 600;
}

.text h3 + h3,
aside h3 + h3,
.h3 + .h3 {
  margin-top: 0.25rem !important;
}

.text h4,
aside h4,
.h4 {
  margin-top: .5rem;
  margin-bottom: 1rem;
  /* font-size: 1.35em; */
  /* font-weight: 600; */
}

.text h6,
aside h6,
.h6,
.text small,
aside small,
.small {
  display: block;
  margin-top: .5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9em;
  line-height: 1.1em;
  /* font-weight: lighter; */
  font-family: var(--font-family-sans);
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: 0.875em;
  line-height: initial;
  color: var(--color-text-grey);
}


.text dt {
  font-weight: 600;
}

.text blockquote,
aside blockquote {
  font-size: 1.125rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-main);
  color: var(--color-main);
  padding-left: 1rem;
  margin: 1rem 0 2rem;
}

.text blockquote footer,
aside blockquote footer {
  font-size: .875rem;
  font-style: italic;
}

.text figure,
aside figure {
  margin: 0.25rem 0 .5rem;
}

.text figcaption,
aside figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

.text figure ul,
aside figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.text figure ul li,
aside figure ul li {
  list-style: none;
}

.text hr,
aside hr {
  border: 0;
  background: #ccc;
  height: 1px;
  width: 100%;
  margin: 0 auto 1.5rem !important;
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}

.text img,
aside img {
  width: 100%;
  border-radius: 0.5rem;
}



/*******************************************************************************************************************/
/*  HEADER                                                                                                         */
/*******************************************************************************************************************/

.header {
  width: 100%;
  position: relative;
  /* position: sticky;
  top: 0;
  background: white;
  z-index: 1; */
}

.header .header-wrapper {
  width: 100%;
  max-width: var(--width-max);
  margin: auto;
  display: flex;
  justify-content: start;
  align-items: baseline;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  margin: var(--gap);
}
.logo img {
  width: auto;
  max-width: calc(100vw - var(--gap) - var(--gap));
}

.header .subtitle {
  fill: var(--color-main);
  margin-left: .5rem;
}

.subtitle {
  display: block;
  width: 100%;
  max-width: 340px;
}

.subtitle-animation svg {
  position: relative;
  margin: 0;
}

.subtitle-animation svg path {
  animation-name: subtitle-animation;
  animation-duration: 0.075s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  opacity: 0;
}

.subtitle-animation svg path:nth-child(1) { animation-delay: 1.1s; } /* H */
.subtitle-animation svg path:nth-child(2) { animation-delay: 1.2s; } /* e */
.subtitle-animation svg path:nth-child(3) { animation-delay: 1.3s; } /* r */
.subtitle-animation svg path:nth-child(4) { animation-delay: 1.4s; } /* z */
.subtitle-animation svg path:nth-child(5) { animation-delay: 1.5s; } /* l */
.subtitle-animation svg path:nth-child(6) { animation-delay: 1.6s; } /* i */
.subtitle-animation svg path:nth-child(7) { animation-delay: 1.7s; } /* c */
.subtitle-animation svg path:nth-child(8) { animation-delay: 1.8s; } /* h */
.subtitle-animation svg path:nth-child(9) { animation-delay: 1.9s; } /* . */

.subtitle-animation svg path:nth-child(10) { animation-delay: 2.1s; } /* b */
.subtitle-animation svg path:nth-child(11) { animation-delay: 2.2s; } /* e */
.subtitle-animation svg path:nth-child(12) { animation-delay: 2.3s; } /* h */
.subtitle-animation svg path:nth-child(13) { animation-delay: 2.4s; } /* a */
.subtitle-animation svg path:nth-child(14) { animation-delay: 2.5s; } /* n */
.subtitle-animation svg path:nth-child(15) { animation-delay: 2.6s; } /* d */
.subtitle-animation svg path:nth-child(16) { animation-delay: 2.7s; } /* e */
.subtitle-animation svg path:nth-child(17) { animation-delay: 2.8s; } /* l */
.subtitle-animation svg path:nth-child(18) { animation-delay: 2.9s; } /* t */

.subtitle-animation svg path:nth-child(19) { animation-delay: 3.1s; } /* i */
.subtitle-animation svg path:nth-child(20) { animation-delay: 3.2s; } /* n */
.subtitle-animation svg path:nth-child(21) { animation-delay: 3.3s; } /* . */

.subtitle-animation svg path:nth-child(22) { animation-delay: 3.57s; } /* S */
.subtitle-animation svg path:nth-child(23) { animation-delay: 3.6s; } /* c */
.subtitle-animation svg path:nth-child(24) { animation-delay: 3.7s; } /* h */
.subtitle-animation svg path:nth-child(25) { animation-delay: 3.8s; } /* w */
.subtitle-animation svg path:nth-child(26) { animation-delay: 3.9s; } /* a */
.subtitle-animation svg path:nth-child(27) { animation-delay: 4.0s; } /* b */
.subtitle-animation svg path:nth-child(28) { animation-delay: 4.1s; } /* i */
.subtitle-animation svg path:nth-child(29) { animation-delay: 4.2s; } /* n */
.subtitle-animation svg path:nth-child(30) { animation-delay: 4.3s; } /* g */
.subtitle-animation svg path:nth-child(31) { animation-delay: 4.4s; } /* . */

@keyframes subtitle-animation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (max-width: 800px) {

  .header .header-wrapper {
    flex-direction: column;
  }

  .header .header-wrapper .subtitle {
    align-self: center;
    margin-top: -0.5rem;
    padding: 0 1rem 1rem;
  }

  .subtitle {
    max-width: calc(320px - 2rem);
    padding: 1rem;
  }

}



/*******************************************************************************************************************/
/*  NAVIGATION / MENU                                                                                              */
/*******************************************************************************************************************/

.header .navbar {
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--color-main-light);
  display: flex;
}

.header .mobile-bar {
  display: none;
}

.menu {
  display: flex;
  width: 100%;
  max-width: var(--width-max);
  margin: auto;
  padding: 0 1rem;
  justify-content: flex-start;
}

.menu a {
  padding: 1rem 1.5rem;
  display: block;
}

.menu a[aria-current] {
  color: var(--color-main);
}

.menu-item {
  font-family: var(--font-family-sans);
  position: relative;
  font-weight: bold;
  color: var(--color-black);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item > a svg {
  vertical-align: middle;
}

.menu-item > a span {
  margin-left: 0.5rem;
  display: none;
  vertical-align: middle;
}

.menu-link {
  white-space: nowrap;
  transition: all 0.4s ease;
}

.menu-item:hover,
.menu-item a[aria-current] {
  background: var(--color-main-light-hover);
}

/*******************************************************************************************************************/

.submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background-color: var(--color-main-light-hover);
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.menu-item:hover .submenu {
  visibility: visible;
  opacity: 1;
}

.submenu a {
  white-space: nowrap;
}

.submenu-link {
  font-weight: normal;
}

.submenu-link:hover {
  background: var(--color-main-light-hover-hover);
}

/*******************************************************************************************************************/

#menu-toggle {
  background: var(--color-main-light-hover);
  cursor: pointer;
  font-size: 2em;
  padding: 0 1rem;
  margin-left: 1rem;
}

#menu-toggle:hover {
  background: var(--color-main-light-hover);
  cursor: pointer;
}

#menu,
.submenu-toggle {
  visibility: hidden;
  position: absolute;
  left: -1000px;
}

.submenu-toggle + label {
  cursor: pointer;
  padding: auto 1rem;
  margin-left: -1.5rem;
}

.submenu-toggle + label svg {
  margin-top: 4px;
  opacity: 0.5;
  transition: transform 0.4s ease;
}

.submenu-toggle:hover {
  background: #00999c;
  cursor: pointer;
}

@media screen and (max-width: 800px) {

  .navbar {
    flex-direction: column;
  }

  .header .mobile-bar {
    display: block;
  }

  .menu {
    flex-direction:column;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background: var(--color-main-light-hover);
    border-radius: 0.5rem;
    border-top-left-radius: 0;
    margin: 0 1rem;
    width: calc(100% - 2rem);
    padding: 0;
  }

  #menu:checked + .mobile-bar + .menu {
    display: block;
  }

  .menu-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-item > a span {
    display: inline;
  }

  .menu-item > a {
    justify-self: stretch;
  }

  .menu-item > a:hover,
  .menu-item > a:focus
  .menu-item > a:active {
    background-color: var(--color-main-light-hover-hover);
  }

  .menu-item .submenu {
    width: 100%;
    position: relative;
    font-weight: normal;
    padding-left: 1.5rem;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 ;
  }

  .submenu-toggle + label {
    min-width: 2rem;
    padding: 0.5rem 1.5rem;
    text-align: right;
  }

  /* .submenu-toggle:checked + label {
    background-color: var(--color-main-light-hover-hover);
  } */

  .submenu-toggle:checked + label svg {
    transform: rotate(180deg);
  }

  .submenu-toggle:checked + label + .submenu {
    background-color: var(--color-main-light-hover-hover);
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 100%;
    margin: 0 1rem;
    padding: 0;
  }

}



/*******************************************************************************************************************/
/* SLIDER                                                                                                          */
/*******************************************************************************************************************/

.slider {
  position: relative;
  width: calc(100% - 2rem);
  margin: 0;
  margin-top: var(--gap);
  aspect-ratio: 3/1;
  max-width: var(--width-max);
  overflow: hidden;
  border-radius: 0.5rem;
}

.slider .slide {
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 2s ease-out;
}

.slider .slide img {
  width: 100%;
}

.slider .slide.active {
  opacity: 1;
}



/*******************************************************************************************************************/
/*  MAIN                                                                                                           */
/*******************************************************************************************************************/

main {
  margin: auto;
  width: 100%;
  max-width: var(--width-max);
  display: flex;
  justify-content: space-between;
}

main article {
  width: 100%;
  /* max-width: calc(calc(100% - 320px) - calc(var(--padding) * 2)); */
  padding: var(--padding);
  margin: var(--gap) 0;
  /* padding: 1rem; */
}

main aside {
  position: sticky;
  top: var(--gap);
  width: 100%;
  max-width: 320px;
  margin: 1rem;
  margin-bottom: auto;
  padding: var(--padding);
  background: var(--color-main-light);
  border-radius: 0.5rem;
}

@media screen and (max-width: 800px) {
  
  main {
    flex-wrap: wrap;
  }
  .oeffnungszeiten {
    overflow-x: scroll;
    width: 100%;
  }
  main article,
  main aside {
    width: 100%;
    max-width: calc(100vw - var(--gap) - var(--gap));
    overflow-x: hidden;
  }
  
  main article {
    padding-left: 2rem;
  }
  main aside {
    margin-bottom: 3rem;
  }

}

.highlighted {
  background-color: var(--color-main-light);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.highlighted > *:first-child {
  margin-top: 0;
}
.highlighted > *:last-child {
  margin-bottom: 0;
}
.news {
  border: 1px solid var(--color-main-light);
  background: var(--color-main);
  color: var(--color-white);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}
.news > * {
  margin: 0 !important;
}

.geschlossen {
  color: var(--color-highlight);
  margin-bottom: 1.5rem !important;
}

/*******************************************************************************************************************/
/*  FOOTER                                                                                                         */
/*******************************************************************************************************************/

.footer {
  width: 100%;
  background-color: var(--color-main-light);
  font-size: 0.875rem;
  margin: 3rem 0;
}

.footer .footer-wrapper {
  max-width: var(--width-max);
  margin: auto;
  padding: 1.5rem 2rem;
  display: flex;
}

.footer .links {
  display: flex;
  flex-direction: column;
  margin: 0 1.5rem;
}
.footer .links a:hover {
  /* text-decoration: underline; */
  color: var(--color-main-dark);
  /* border-bottom: 1px solid var(--color-main); */
}

.footer .copyright {
  padding-left: 1.5rem;
  border-left: 1px solid var(--color-main);
}
.footer .copyright span {
  display: inline;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}

.footer ul,
.footer p {
  color: var(--color-text-grey);
}

.footer p {
  max-width: 15rem;
}

.footer a:hover {
  color: var(--color-text);
}

@media screen and (max-width: 800px) {

  .footer .copyright span {
    display: block;
    opacity: 0;
    height: 0;
  }

  .footer {
    margin-bottom: 0;
  }
  .footer .footer-wrapper {
    padding-left: 1rem;
    /* flex-wrap: wrap; */
    flex-direction: column;
  }
  .footer .links {
    /* margin: 0 1rem; */
    margin-bottom: 1rem;
    flex-direction: row;
    gap: var(--gap);
  }

}












/*******************************************************************************************************************/
/*******************************************************************************************************************/
/*******************************************************************************************************************/
/*  UNUSED STYLES                                                                                                  */
/*******************************************************************************************************************/
/*******************************************************************************************************************/
/*******************************************************************************************************************/

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*******************************************************************************************************************/

.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination > span {
  color: var(--color-text-grey);
}

.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/*******************************************************************************************************************/

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: .5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}



/*******************************************************************************************************************/

/* .social {
  display: flex;
  padding: 0 .5rem;
} */

/* .social a {
  padding: 1rem .5rem;
} */

/* .section {
  padding: 3rem 0;
} */

/* .text .codeblock {
  display: grid;
} */

/* .text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
} */

/* .text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
} */

/* .text pre code {
  padding: 0;
  background: none;
  color: inherit;
} */

/* .align-center {
  text-align: center;
} */

/* .margin-s {
  margin-bottom: .75rem;
} */

/* .margin-m {
  margin-bottom: 1.5rem;
} */

/* .margin-l {
  margin-bottom: 3rem;
} */

/* .margin-xl {
  margin-bottom: 4.5rem;
} */

/* .margin-xxl {
  margin-bottom: 6rem;
} */

/* .intro {
  max-width: 40rem;
} */

/* .intro *:not(:last-child) {
  margin-bottom: 1em;
} */

/* .cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
} */

/* .box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
} */


aside#kontakt {
  z-index: 2;
}


.scroll-to-sidebar-container {
  position: sticky;
  top: calc(100vh - 5rem);
  z-index: 1;

  height: 1px;
  overflow: visible;

  margin-left: auto;
  margin-right: 1rem;
  margin-bottom: -1.25rem;
  /* margin-top: 3rem; */
}
.scroll-to-sidebar {
  display: flex;
  /* flex-direction: column;
  justify-content: center;
  align-items: center; */
  border-radius: 50%;
  background: var(--color-main-dark);
  color: var(--color-main-light);
  width: 24px;
  height: 24px;
  padding: 1rem;
  /* border: 1px solid transparent; */
  position: relative;
  transition: background-color 0.2s ease-out;
}

.scroll-to-sidebar small {
  /* position: absolute;
  bottom: 0.5rem;
  color: white;
  font-size: 0.6em;
  font-weight: bold; */
  display: none;
}

.scroll-to-sidebar:hover,
.scroll-to-sidebar:focus {
  /* border-color: var(--color-main); */
  background: var(--color-main);
  color: var(--color-main-light);
}

@media screen and (min-width: 800px) {

  .scroll-to-sidebar {
    display: none;
  }
}