*,
*:before,
*:after {
  box-sizing: border-box;
}
a:link {
  color: #4e4b4b;
}
a:visited {
  color: #1a1919;
}
a:hover {
  color: #9b9797;
}
a:active {
  color: maroon;
  position: relative;
  top: 1px;
  left: 1px;
}
img {
  max-width: 100%;
  height: auto;
}
.box-container {
  background-color: #f02210;
}
.box-container a:link {
  color: antiquewhite;
}
.box-container a:visited {
  color: #efbe7c;
}
.box-container a:hover {
  color: #ffffff;
}
.box-container a:active {
  color: cornflowerblue;
}
.-rounded {
  border-radius: 0.5rem;
}
.-rounded.-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.-rounded.-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* ...mobile styles here... */
body.top-level {
  background: #a5a5a5;
  font-family: "Open Sans", sans-serif;
  margin: 0 auto 0.3rem auto;
  display: grid;
  grid-gap: 0.3rem;
  grid-template-areas: "admin-menu" "admin-warnings" "header" "menu" "content" "sidebar" "footer";
}
.main-menu {
  grid-area: menu;
}
main.main-content {
  grid-area: content;
}
.container-news {
  grid-area: sidebar;
}
footer.page-footer {
  grid-area: footer;
}
#xh_adminmenu_scrolling {
  grid-area: admin-menu;
}
.xh_debug_warnings {
  grid-area: admin-warnings;
}
#xh_adminmenu_fixed {
  z-index: 1000;
}
.page-header {
  grid-area: header;
  background: linear-gradient(120deg, #fff800 50%, #fff800 calc(51% - 1px), #f02210 51%);
}
.page-header .container-logo {
  margin: 1rem;
}
.page-header .header-content {
  display: grid;
  grid-template-columns: minmax(60px, 0.6fr) 1fr minmax(60px, 0.6fr);
}
.page-header .container-title {
  text-align: center;
  justify-self: center;
  align-self: center;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: #153911;
  font-size: 70%;
}
.page-header .container-title .logo-text {
  font-weight: 900;
}
.page-header .container-title .slogan {
  font-weight: normal;
}
.page-header .container-title > * {
  margin: 0.5em;
}
.show-menu {
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.5;
  -moz-transition: all 100ms 0;
  -webkit-transition: all 100ms 0;
  -o-transition: all 100ms 0;
  transition: all 100ms 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  margin: 0.25rem auto;
  display: block;
  display: none;
}
.show-menu:hover {
  text-shadow: 0 0 5px #ffffff;
}
.show-menu {
  display: block;
}
nav a,
nav a:link,
nav a:visited {
  color: #fff800;
  text-decoration: none;
}
nav .sdoc {
  color: #fff800;
  background: #27592d;
  padding: 0.4rem 0.8rem 0.4rem 1.8rem;
  margin: 0 0 1rem 0;
}
nav .sdoc::before {
  content: "❱";
  margin-right: 0.25rem;
}
nav .sdocs > ul {
  padding-left: 1rem;
}
nav .sdocs > span,
nav .sdocs > a {
  display: block;
  width: 100%;
  padding: 0.4rem 0.8rem 0.4rem 1.8rem;
  margin: 0 0 1rem 0;
  color: #fff800;
  background: linear-gradient(305deg, #fff800 20px, #27592d 2px, #27592d);
  background-color: #27592d;
}
nav .sdocs > span:hover,
nav .sdocs > a:hover {
  background-color: #17361b;
}
nav .sdocs > span::after,
nav .sdocs > a::after {
  content: "▽";
  margin-left: 0.25rem;
}
nav .sdocs > span::before {
  content: "❱";
  margin-right: 0.25rem;
}
nav .toc {
  background-color: #fff800;
  padding: 0.8rem 0;
}
nav .doc,
nav .docs {
  color: #fff800;
  background: #27592d;
  padding: 0.4rem 0.8rem;
  margin: 0 0 1rem 1rem;
  text-align: initial;
}
nav .doc:hover,
nav .docs:hover {
  background-color: #17361b;
}
nav .docs::after {
  content: "▷";
  margin-left: 0.25rem;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav header,
nav footer {
  background: #fff800;
  margin: 0;
  color: #27592d;
  text-align: center;
}
nav header div,
nav footer div {
  display: block;
  padding: 0.4rem 0;
  margin-bottom: 0.4rem;
}
#searchbox {
  padding: 0 5%;
}
#searchbox input {
  height: 2rem;
  border-radius: 0.5rem;
  border: none;
}
#searchbox input[type="text"] {
  padding-left: 0.8rem;
  width: 75%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#searchbox input[type="submit"] {
  width: 25%;
  background-color: #27592d;
  color: white;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  cursor: pointer;
}
#content {
  position: relative;
  background: #fffef6;
  padding: 1rem;
}
#content aside {
  display: block;
  border-bottom: 1px solid #ccc;
  min-height: 1.5rem;
}
#content aside #breadcrumb {
  display: inline-block;
  max-width: 65%;
}
#content aside .print-page {
  border-left: 1px solid #ccc;
  padding-left: 0.5rem;
  position: absolute;
  top: 7px;
  right: 4px;
  display: block;
}
#content aside .print-page a {
  vertical-align: middle;
}
#content aside .print-page .print-text {
  display: none;
}
#content aside .print-page .icon.icon-print {
  vertical-align: middle;
  display: inline-block;
  height: 1.5rem;
  margin: 0 0.5rem;
}
.container-news {
  display: block;
}
.container-news .icon.icon-news {
  float: right;
  height: 1.5rem;
}
.container-news h4 {
  display: inline;
}
.container-news .news {
  word-break: break-word;
  background-color: #fffef6;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: 1px outset #fffef6;
  padding: 10px;
  margin-bottom: 0.3rem;
  vertical-align: top;
}
.container-news .news:last-child {
  margin-bottom: 0;
}
.container-news .news ul,
.container-news .news ol {
  padding-left: 1.2rem;
}
.page-footer {
  color: white;
  background: #f02210;
  display: block;
  padding: 1rem;
  text-align: center;
}
.cc-map-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.cc-map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sort-ramme {
  border: 1px solid black;
}
.button.button-glass {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  border-radius: 3rem;
  background: rgba(16, 16, 220, 0.9);
  -o-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.3), inset 0 10px rgba(255, 255, 255, 0.2), inset 0 10px 20px rgba(255, 255, 255, 0.25), inset 0 -15px 30px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.3), inset 0 10px rgba(255, 255, 255, 0.2), inset 0 10px 20px rgba(255, 255, 255, 0.25), inset 0 -15px 30px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.3), inset 0 10px rgba(255, 255, 255, 0.2), inset 0 10px 20px rgba(255, 255, 255, 0.25), inset 0 -15px 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), /* Exterior Shadow */ inset 0 1px rgba(255, 255, 255, 0.3), /* Top light Line */ inset 0 10px rgba(255, 255, 255, 0.2), /* Top Light Shadow */ inset 0 10px 20px rgba(255, 255, 255, 0.25), /* Sides Light Shadow */ inset 0 -15px 30px rgba(0, 0, 0, 0.3);
  /* Dark Background */
  margin: 10px 0;
  display: inline-block;
  text-decoration: none;
}
.button.button-glass:hover {
  background: #2424f0;
  box-shadow: 0 0 60px -2px rgba(65, 178, 223, 0.9), 0 2px 8px rgba(0, 0, 0, 0.5), /* Exterior Shadow */ inset 0 1px rgba(255, 255, 255, 0.3), /* Top light Line */ inset 0 10px rgba(255, 255, 255, 0.2), /* Top Light Shadow */ inset 0 10px 20px rgba(255, 255, 255, 0.25), /* Sides Light Shadow */ inset 0 -15px 30px rgba(0, 0, 0, 0.3);
  /* Dark Background */
}
@media screen and (min-width: 600px) {
  /* ...tablet styles here... */
  body.top-level {
    grid-template-columns: 3fr 1fr;
    grid-template-areas: "admin-warnings admin-menu" "header header" "menu menu" "content sidebar" "footer footer";
  }
  .page-header {
    padding: 0 1rem;
  }
  .page-header .header-content {
    grid-template-columns: minmax(8rem, 0.3fr) 2fr minmax(8rem, 0.3fr);
  }
  .page-header .container-title {
    font-size: 125%;
  }
  #content aside .print-page .print-text {
    display: inline;
  }
  .container-news .news {
    display: block;
    width: auto;
  }
  .button.button-glass {
    font-size: 1.2rem;
    padding: 0.7rem 1.2rem;
  }
}
@media screen and (min-width: 900px) {
  /* ...desktop styles here... */
  body.top-level {
    max-width: 1600px;
    grid-template-columns: 17rem auto 15rem;
    grid-template-areas: "admin-menu admin-warnings admin-warnings" "header header header" "menu content sidebar" "footer footer footer";
  }
  .page-header .header-content {
    grid-template-columns: minmax(8rem, 0.4fr) 2fr minmax(8rem, 0.4fr);
  }
  .page-header .container-title {
    font-size: 150%;
  }
  .page-header .container-title h1 {
    font-size: 300%;
    margin: 0;
  }
  nav.main-menu .toc {
    display: block !important;
  }
  .show-menu {
    display: none;
  }
  #content aside .print-page .print-text {
    display: inline;
  }
  .container-news .news {
    display: block;
    width: auto;
  }
  .button.button-glass {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
}
