@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `retina-sprite` mixin sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

$icon-home-group: ('icon-home', $icon-home, $icon-home-2x, );

.icon-home {
  @include retina-sprite($icon-home-group);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*
The `retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in SCSS

@include retina-sprites($retina-groups);
*/
/* line 55, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-uandi {
  background-image: url(../../images/sprite.png);
  background-position: 0px 0px;
  width: 80px;
  height: 80px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 61, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .icon-uandi {
    background-image: url(../../images/sprites-2x.png);
    background-size: 271px 80px; } }

/* line 65, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-uandi_interact {
  background-image: url(../../images/sprite.png);
  background-position: -180px 0px;
  width: 91px;
  height: 15px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 71, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .icon-uandi_interact {
    background-image: url(../../images/sprites-2x.png);
    background-size: 271px 80px; } }

/* line 75, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.sprite-test {
  background-image: url(../../images/sprite.png);
  background-position: -180px 0px;
  width: 91px;
  height: 15px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* line 81, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .sprite-test {
    background-image: url(../../images/sprites-2x.png);
    background-size: 271px 80px; } }

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 91, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

/* line 96, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body {
  margin: 0; }

/* line 99, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/* line 114, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

/* line 121, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
audio:not([controls]) {
  display: none;
  height: 0; }

/* line 125, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
[hidden],
template {
  display: none; }

/* line 129, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a {
  background-color: transparent; }

/* line 132, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a:active,
a:hover {
  outline: 0; }

/* line 136, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
abbr[title] {
  border-bottom: 1px dotted; }

/* line 139, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
b,
strong {
  font-weight: bold; }

/* line 143, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
dfn {
  font-style: italic; }

/* line 146, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* line 150, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
mark {
  background: #ff0;
  color: #000; }

/* line 154, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
small {
  font-size: 80%; }

/* line 157, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

/* line 164, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
sup {
  top: -0.5em; }

/* line 167, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
sub {
  bottom: -0.25em; }

/* line 170, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
img {
  border: 0; }

/* line 173, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
svg:not(:root) {
  overflow: hidden; }

/* line 176, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
figure {
  margin: 1em 40px; }

/* line 179, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
hr {
  box-sizing: content-box;
  height: 0; }

/* line 183, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
pre {
  overflow: auto; }

/* line 186, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* line 193, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

/* line 202, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button {
  overflow: visible; }

/* line 205, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button,
select {
  text-transform: none; }

/* line 209, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

/* line 216, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button[disabled],
html input[disabled] {
  cursor: default; }

/* line 220, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* line 225, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input {
  line-height: normal; }

/* line 228, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

/* line 233, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/* line 237, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

/* line 241, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/* line 245, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/* line 250, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
legend {
  border: 0;
  padding: 0; }

/* line 254, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
textarea {
  overflow: auto; }

/* line 257, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
optgroup {
  font-weight: bold; }

/* line 260, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 264, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  /* line 270, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  /* line 277, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  a,
  a:visited {
    text-decoration: underline; }
  /* line 280, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  a[href]:after {
    content: " (" attr(href) ")"; }
  /* line 282, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /* line 284, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  /* line 287, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /* line 291, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  thead {
    display: table-header-group; }
  /* line 293, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  tr,
  img {
    page-break-inside: avoid; }
  /* line 296, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  img {
    max-width: 100% !important; }
  /* line 298, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  /* line 303, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  h2,
  h3 {
    page-break-after: avoid; }
  /* line 306, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar {
    display: none; }
  /* line 308, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  /* line 311, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .label {
    border: 1px solid #000; }
  /* line 313, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table {
    border-collapse: collapse !important; }
  /* line 315, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table td,
  .table th {
    background-color: #fff !important; }
  /* line 318, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/glyphicons-halflings-regular.eot");
  src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }

/* line 327, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* line 338, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-asterisk:before {
  content: "\002a"; }

/* line 341, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-plus:before {
  content: "\002b"; }

/* line 344, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac"; }

/* line 348, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-minus:before {
  content: "\2212"; }

/* line 351, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-cloud:before {
  content: "\2601"; }

/* line 354, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-envelope:before {
  content: "\2709"; }

/* line 357, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-pencil:before {
  content: "\270f"; }

/* line 360, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-glass:before {
  content: "\e001"; }

/* line 363, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-music:before {
  content: "\e002"; }

/* line 366, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-search:before {
  content: "\e003"; }

/* line 369, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-heart:before {
  content: "\e005"; }

/* line 372, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-star:before {
  content: "\e006"; }

/* line 375, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-star-empty:before {
  content: "\e007"; }

/* line 378, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-user:before {
  content: "\e008"; }

/* line 381, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-film:before {
  content: "\e009"; }

/* line 384, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-th-large:before {
  content: "\e010"; }

/* line 387, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-th:before {
  content: "\e011"; }

/* line 390, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-th-list:before {
  content: "\e012"; }

/* line 393, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ok:before {
  content: "\e013"; }

/* line 396, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-remove:before {
  content: "\e014"; }

/* line 399, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-zoom-in:before {
  content: "\e015"; }

/* line 402, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-zoom-out:before {
  content: "\e016"; }

/* line 405, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-off:before {
  content: "\e017"; }

/* line 408, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-signal:before {
  content: "\e018"; }

/* line 411, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-cog:before {
  content: "\e019"; }

/* line 414, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-trash:before {
  content: "\e020"; }

/* line 417, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-home:before {
  content: "\e021"; }

/* line 420, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-file:before {
  content: "\e022"; }

/* line 423, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-time:before {
  content: "\e023"; }

/* line 426, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-road:before {
  content: "\e024"; }

/* line 429, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-download-alt:before {
  content: "\e025"; }

/* line 432, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-download:before {
  content: "\e026"; }

/* line 435, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-upload:before {
  content: "\e027"; }

/* line 438, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-inbox:before {
  content: "\e028"; }

/* line 441, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-play-circle:before {
  content: "\e029"; }

/* line 444, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-repeat:before {
  content: "\e030"; }

/* line 447, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-refresh:before {
  content: "\e031"; }

/* line 450, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-list-alt:before {
  content: "\e032"; }

/* line 453, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-lock:before {
  content: "\e033"; }

/* line 456, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-flag:before {
  content: "\e034"; }

/* line 459, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-headphones:before {
  content: "\e035"; }

/* line 462, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-volume-off:before {
  content: "\e036"; }

/* line 465, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-volume-down:before {
  content: "\e037"; }

/* line 468, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-volume-up:before {
  content: "\e038"; }

/* line 471, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-qrcode:before {
  content: "\e039"; }

/* line 474, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-barcode:before {
  content: "\e040"; }

/* line 477, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tag:before {
  content: "\e041"; }

/* line 480, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tags:before {
  content: "\e042"; }

/* line 483, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-book:before {
  content: "\e043"; }

/* line 486, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bookmark:before {
  content: "\e044"; }

/* line 489, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-print:before {
  content: "\e045"; }

/* line 492, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-camera:before {
  content: "\e046"; }

/* line 495, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-font:before {
  content: "\e047"; }

/* line 498, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bold:before {
  content: "\e048"; }

/* line 501, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-italic:before {
  content: "\e049"; }

/* line 504, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-text-height:before {
  content: "\e050"; }

/* line 507, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-text-width:before {
  content: "\e051"; }

/* line 510, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-align-left:before {
  content: "\e052"; }

/* line 513, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-align-center:before {
  content: "\e053"; }

/* line 516, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-align-right:before {
  content: "\e054"; }

/* line 519, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-align-justify:before {
  content: "\e055"; }

/* line 522, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-list:before {
  content: "\e056"; }

/* line 525, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-indent-left:before {
  content: "\e057"; }

/* line 528, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-indent-right:before {
  content: "\e058"; }

/* line 531, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-facetime-video:before {
  content: "\e059"; }

/* line 534, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-picture:before {
  content: "\e060"; }

/* line 537, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-map-marker:before {
  content: "\e062"; }

/* line 540, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-adjust:before {
  content: "\e063"; }

/* line 543, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tint:before {
  content: "\e064"; }

/* line 546, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-edit:before {
  content: "\e065"; }

/* line 549, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-share:before {
  content: "\e066"; }

/* line 552, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-check:before {
  content: "\e067"; }

/* line 555, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-move:before {
  content: "\e068"; }

/* line 558, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-step-backward:before {
  content: "\e069"; }

/* line 561, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-fast-backward:before {
  content: "\e070"; }

/* line 564, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-backward:before {
  content: "\e071"; }

/* line 567, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-play:before {
  content: "\e072"; }

/* line 570, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-pause:before {
  content: "\e073"; }

/* line 573, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-stop:before {
  content: "\e074"; }

/* line 576, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-forward:before {
  content: "\e075"; }

/* line 579, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-fast-forward:before {
  content: "\e076"; }

/* line 582, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-step-forward:before {
  content: "\e077"; }

/* line 585, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-eject:before {
  content: "\e078"; }

/* line 588, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-chevron-left:before {
  content: "\e079"; }

/* line 591, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-chevron-right:before {
  content: "\e080"; }

/* line 594, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-plus-sign:before {
  content: "\e081"; }

/* line 597, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-minus-sign:before {
  content: "\e082"; }

/* line 600, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-remove-sign:before {
  content: "\e083"; }

/* line 603, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ok-sign:before {
  content: "\e084"; }

/* line 606, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-question-sign:before {
  content: "\e085"; }

/* line 609, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-info-sign:before {
  content: "\e086"; }

/* line 612, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-screenshot:before {
  content: "\e087"; }

/* line 615, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-remove-circle:before {
  content: "\e088"; }

/* line 618, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ok-circle:before {
  content: "\e089"; }

/* line 621, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ban-circle:before {
  content: "\e090"; }

/* line 624, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-arrow-left:before {
  content: "\e091"; }

/* line 627, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-arrow-right:before {
  content: "\e092"; }

/* line 630, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-arrow-up:before {
  content: "\e093"; }

/* line 633, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-arrow-down:before {
  content: "\e094"; }

/* line 636, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-share-alt:before {
  content: "\e095"; }

/* line 639, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-resize-full:before {
  content: "\e096"; }

/* line 642, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-resize-small:before {
  content: "\e097"; }

/* line 645, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-exclamation-sign:before {
  content: "\e101"; }

/* line 648, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-gift:before {
  content: "\e102"; }

/* line 651, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-leaf:before {
  content: "\e103"; }

/* line 654, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-fire:before {
  content: "\e104"; }

/* line 657, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-eye-open:before {
  content: "\e105"; }

/* line 660, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-eye-close:before {
  content: "\e106"; }

/* line 663, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-warning-sign:before {
  content: "\e107"; }

/* line 666, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-plane:before {
  content: "\e108"; }

/* line 669, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-calendar:before {
  content: "\e109"; }

/* line 672, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-random:before {
  content: "\e110"; }

/* line 675, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-comment:before {
  content: "\e111"; }

/* line 678, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-magnet:before {
  content: "\e112"; }

/* line 681, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-chevron-up:before {
  content: "\e113"; }

/* line 684, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-chevron-down:before {
  content: "\e114"; }

/* line 687, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-retweet:before {
  content: "\e115"; }

/* line 690, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-shopping-cart:before {
  content: "\e116"; }

/* line 693, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-folder-close:before {
  content: "\e117"; }

/* line 696, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-folder-open:before {
  content: "\e118"; }

/* line 699, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-resize-vertical:before {
  content: "\e119"; }

/* line 702, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-resize-horizontal:before {
  content: "\e120"; }

/* line 705, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hdd:before {
  content: "\e121"; }

/* line 708, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bullhorn:before {
  content: "\e122"; }

/* line 711, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bell:before {
  content: "\e123"; }

/* line 714, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-certificate:before {
  content: "\e124"; }

/* line 717, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-thumbs-up:before {
  content: "\e125"; }

/* line 720, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-thumbs-down:before {
  content: "\e126"; }

/* line 723, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hand-right:before {
  content: "\e127"; }

/* line 726, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hand-left:before {
  content: "\e128"; }

/* line 729, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hand-up:before {
  content: "\e129"; }

/* line 732, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hand-down:before {
  content: "\e130"; }

/* line 735, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-circle-arrow-right:before {
  content: "\e131"; }

/* line 738, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-circle-arrow-left:before {
  content: "\e132"; }

/* line 741, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-circle-arrow-up:before {
  content: "\e133"; }

/* line 744, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-circle-arrow-down:before {
  content: "\e134"; }

/* line 747, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-globe:before {
  content: "\e135"; }

/* line 750, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-wrench:before {
  content: "\e136"; }

/* line 753, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tasks:before {
  content: "\e137"; }

/* line 756, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-filter:before {
  content: "\e138"; }

/* line 759, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-briefcase:before {
  content: "\e139"; }

/* line 762, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-fullscreen:before {
  content: "\e140"; }

/* line 765, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-dashboard:before {
  content: "\e141"; }

/* line 768, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-paperclip:before {
  content: "\e142"; }

/* line 771, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-heart-empty:before {
  content: "\e143"; }

/* line 774, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-link:before {
  content: "\e144"; }

/* line 777, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-phone:before {
  content: "\e145"; }

/* line 780, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-pushpin:before {
  content: "\e146"; }

/* line 783, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-usd:before {
  content: "\e148"; }

/* line 786, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-gbp:before {
  content: "\e149"; }

/* line 789, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort:before {
  content: "\e150"; }

/* line 792, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort-by-alphabet:before {
  content: "\e151"; }

/* line 795, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152"; }

/* line 798, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort-by-order:before {
  content: "\e153"; }

/* line 801, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort-by-order-alt:before {
  content: "\e154"; }

/* line 804, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort-by-attributes:before {
  content: "\e155"; }

/* line 807, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156"; }

/* line 810, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-unchecked:before {
  content: "\e157"; }

/* line 813, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-expand:before {
  content: "\e158"; }

/* line 816, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-collapse-down:before {
  content: "\e159"; }

/* line 819, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-collapse-up:before {
  content: "\e160"; }

/* line 822, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-log-in:before {
  content: "\e161"; }

/* line 825, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-flash:before {
  content: "\e162"; }

/* line 828, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-log-out:before {
  content: "\e163"; }

/* line 831, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-new-window:before {
  content: "\e164"; }

/* line 834, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-record:before {
  content: "\e165"; }

/* line 837, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-save:before {
  content: "\e166"; }

/* line 840, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-open:before {
  content: "\e167"; }

/* line 843, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-saved:before {
  content: "\e168"; }

/* line 846, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-import:before {
  content: "\e169"; }

/* line 849, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-export:before {
  content: "\e170"; }

/* line 852, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-send:before {
  content: "\e171"; }

/* line 855, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-floppy-disk:before {
  content: "\e172"; }

/* line 858, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-floppy-saved:before {
  content: "\e173"; }

/* line 861, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-floppy-remove:before {
  content: "\e174"; }

/* line 864, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-floppy-save:before {
  content: "\e175"; }

/* line 867, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-floppy-open:before {
  content: "\e176"; }

/* line 870, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-credit-card:before {
  content: "\e177"; }

/* line 873, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-transfer:before {
  content: "\e178"; }

/* line 876, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-cutlery:before {
  content: "\e179"; }

/* line 879, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-header:before {
  content: "\e180"; }

/* line 882, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-compressed:before {
  content: "\e181"; }

/* line 885, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-earphone:before {
  content: "\e182"; }

/* line 888, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-phone-alt:before {
  content: "\e183"; }

/* line 891, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tower:before {
  content: "\e184"; }

/* line 894, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-stats:before {
  content: "\e185"; }

/* line 897, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sd-video:before {
  content: "\e186"; }

/* line 900, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hd-video:before {
  content: "\e187"; }

/* line 903, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-subtitles:before {
  content: "\e188"; }

/* line 906, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sound-stereo:before {
  content: "\e189"; }

/* line 909, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sound-dolby:before {
  content: "\e190"; }

/* line 912, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sound-5-1:before {
  content: "\e191"; }

/* line 915, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sound-6-1:before {
  content: "\e192"; }

/* line 918, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sound-7-1:before {
  content: "\e193"; }

/* line 921, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-copyright-mark:before {
  content: "\e194"; }

/* line 924, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-registration-mark:before {
  content: "\e195"; }

/* line 927, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-cloud-download:before {
  content: "\e197"; }

/* line 930, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-cloud-upload:before {
  content: "\e198"; }

/* line 933, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tree-conifer:before {
  content: "\e199"; }

/* line 936, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tree-deciduous:before {
  content: "\e200"; }

/* line 939, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-cd:before {
  content: "\e201"; }

/* line 942, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-save-file:before {
  content: "\e202"; }

/* line 945, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-open-file:before {
  content: "\e203"; }

/* line 948, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-level-up:before {
  content: "\e204"; }

/* line 951, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-copy:before {
  content: "\e205"; }

/* line 954, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-paste:before {
  content: "\e206"; }

/* line 957, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-alert:before {
  content: "\e209"; }

/* line 960, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-equalizer:before {
  content: "\e210"; }

/* line 963, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-king:before {
  content: "\e211"; }

/* line 966, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-queen:before {
  content: "\e212"; }

/* line 969, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-pawn:before {
  content: "\e213"; }

/* line 972, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bishop:before {
  content: "\e214"; }

/* line 975, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-knight:before {
  content: "\e215"; }

/* line 978, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-baby-formula:before {
  content: "\e216"; }

/* line 981, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-tent:before {
  content: "\26fa"; }

/* line 984, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-blackboard:before {
  content: "\e218"; }

/* line 987, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bed:before {
  content: "\e219"; }

/* line 990, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-apple:before {
  content: "\f8ff"; }

/* line 993, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-erase:before {
  content: "\e221"; }

/* line 996, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-hourglass:before {
  content: "\231b"; }

/* line 999, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-lamp:before {
  content: "\e223"; }

/* line 1002, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-duplicate:before {
  content: "\e224"; }

/* line 1005, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-piggy-bank:before {
  content: "\e225"; }

/* line 1008, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-scissors:before {
  content: "\e226"; }

/* line 1011, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-bitcoin:before {
  content: "\e227"; }

/* line 1014, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-btc:before {
  content: "\e227"; }

/* line 1017, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-xbt:before {
  content: "\e227"; }

/* line 1020, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-yen:before {
  content: "\00a5"; }

/* line 1023, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-jpy:before {
  content: "\00a5"; }

/* line 1026, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ruble:before {
  content: "\20bd"; }

/* line 1029, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-rub:before {
  content: "\20bd"; }

/* line 1032, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-scale:before {
  content: "\e230"; }

/* line 1035, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ice-lolly:before {
  content: "\e231"; }

/* line 1038, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-ice-lolly-tasted:before {
  content: "\e232"; }

/* line 1041, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-education:before {
  content: "\e233"; }

/* line 1044, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-option-horizontal:before {
  content: "\e234"; }

/* line 1047, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-option-vertical:before {
  content: "\e235"; }

/* line 1050, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-menu-hamburger:before {
  content: "\e236"; }

/* line 1053, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-modal-window:before {
  content: "\e237"; }

/* line 1056, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-oil:before {
  content: "\e238"; }

/* line 1059, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-grain:before {
  content: "\e239"; }

/* line 1062, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-sunglasses:before {
  content: "\e240"; }

/* line 1065, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-text-size:before {
  content: "\e241"; }

/* line 1068, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-text-color:before {
  content: "\e242"; }

/* line 1071, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-text-background:before {
  content: "\e243"; }

/* line 1074, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-object-align-top:before {
  content: "\e244"; }

/* line 1077, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-object-align-bottom:before {
  content: "\e245"; }

/* line 1080, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-object-align-horizontal:before {
  content: "\e246"; }

/* line 1083, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-object-align-left:before {
  content: "\e247"; }

/* line 1086, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-object-align-vertical:before {
  content: "\e248"; }

/* line 1089, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-object-align-right:before {
  content: "\e249"; }

/* line 1092, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-triangle-right:before {
  content: "\e250"; }

/* line 1095, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-triangle-left:before {
  content: "\e251"; }

/* line 1098, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-triangle-bottom:before {
  content: "\e252"; }

/* line 1101, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-triangle-top:before {
  content: "\e253"; }

/* line 1104, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-console:before {
  content: "\e254"; }

/* line 1107, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-superscript:before {
  content: "\e255"; }

/* line 1110, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-subscript:before {
  content: "\e256"; }

/* line 1113, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-menu-left:before {
  content: "\e257"; }

/* line 1116, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-menu-right:before {
  content: "\e258"; }

/* line 1119, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-menu-down:before {
  content: "\e259"; }

/* line 1122, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.glyphicon-menu-up:before {
  content: "\e260"; }

/* line 1125, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
* {
  box-sizing: border-box; }

/* line 1130, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
*:before,
*:after {
  box-sizing: border-box; }

/* line 1136, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

/* line 1140, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body {
  font-family: "Crimson Text", serif;
  font-size: 16px;
  line-height: 1.4;
  color: #3F3637;
  background-color: #fff; }

/* line 1147, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

/* line 1155, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a {
  color: #3F3637;
  text-decoration: none; }

/* line 1158, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a:hover, a:focus {
  color: #161313;
  text-decoration: underline; }

/* line 1161, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

/* line 1165, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
figure {
  margin: 0; }

/* line 1168, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
img {
  vertical-align: middle; }

/* line 1171, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

/* line 1176, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.img-rounded {
  border-radius: 6px; }

/* line 1179, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.img-thumbnail {
  padding: 4px;
  line-height: 1.4;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

/* line 1192, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.img-circle {
  border-radius: 50%; }

/* line 1195, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0;
  border-top: 1px solid white; }

/* line 1201, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

/* line 1211, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

/* line 1219, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
[role="button"] {
  cursor: pointer; }

/* line 1222, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }

/* line 1228, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #b8acad; }

/* line 1246, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 22px;
  margin-bottom: 11px; }

/* line 1251, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%; }

/* line 1262, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 11px;
  margin-bottom: 11px; }

/* line 1267, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%; }

/* line 1278, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1, .h1 {
  font-size: 41px; }

/* line 1281, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h2, .h2 {
  font-size: 34px; }

/* line 1284, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h3, .h3 {
  font-size: 28px; }

/* line 1287, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h4, .h4 {
  font-size: 20px; }

/* line 1290, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h5, .h5 {
  font-size: 16px; }

/* line 1293, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h6, .h6 {
  font-size: 14px; }

/* line 1296, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
p {
  margin: 0 0 11px; }

/* line 1299, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.lead {
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4; }

@media (min-width: 768px) {
  /* line 1305, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .lead {
    font-size: 24px; } }

/* line 1308, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
small,
.small {
  font-size: 87%; }

/* line 1312, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

/* line 1317, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-left {
  text-align: left; }

/* line 1320, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-right {
  text-align: right; }

/* line 1323, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-center {
  text-align: center; }

/* line 1326, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-justify {
  text-align: justify; }

/* line 1329, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-nowrap {
  white-space: nowrap; }

/* line 1332, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-lowercase {
  text-transform: lowercase; }

/* line 1335, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-uppercase, .initialism {
  text-transform: uppercase; }

/* line 1338, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-capitalize {
  text-transform: capitalize; }

/* line 1341, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-muted {
  color: #b8acad; }

/* line 1344, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-primary {
  color: #3F3637; }

/* line 1347, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.text-primary:hover,
a.text-primary:focus {
  color: #241e1f; }

/* line 1351, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-success {
  color: #3c763d; }

/* line 1354, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

/* line 1358, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-info {
  color: #31708f; }

/* line 1361, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.text-info:hover,
a.text-info:focus {
  color: #245269; }

/* line 1365, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-warning {
  color: #8a6d3b; }

/* line 1368, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

/* line 1372, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-danger {
  color: #a94442; }

/* line 1375, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

/* line 1379, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.bg-primary {
  color: #fff; }

/* line 1382, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.bg-primary {
  background-color: #3F3637; }

/* line 1385, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #241e1f; }

/* line 1389, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.bg-success {
  background-color: #dff0d8; }

/* line 1392, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

/* line 1396, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.bg-info {
  background-color: #d9edf7; }

/* line 1399, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

/* line 1403, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.bg-warning {
  background-color: #fcf8e3; }

/* line 1406, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

/* line 1410, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.bg-danger {
  background-color: #f2dede; }

/* line 1413, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

/* line 1417, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.page-header {
  padding-bottom: 10px;
  margin: 44px 0 22px;
  border-bottom: 1px solid white; }

/* line 1422, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
ul,
ol {
  margin-top: 0;
  margin-bottom: 11px; }

/* line 1426, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0; }

/* line 1432, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-unstyled {
  padding-left: 0;
  list-style: none; }

/* line 1436, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }

/* line 1440, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px; }

/* line 1445, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
dl {
  margin-top: 0;
  margin-bottom: 22px; }

/* line 1449, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
dt,
dd {
  line-height: 1.4; }

/* line 1453, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
dt {
  font-weight: bold; }

/* line 1456, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
dd {
  margin-left: 0; }

/* line 1459, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

/* line 1463, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  /* line 1467, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  /* line 1475, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .dl-horizontal dd {
    margin-left: 180px; } }

/* line 1478, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #b8acad; }

/* line 1483, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.initialism {
  font-size: 90%; }

/* line 1486, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
blockquote {
  padding: 11px 22px;
  margin: 0 0 22px;
  font-size: 20px;
  border-left: 5px solid white; }

/* line 1491, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0; }

/* line 1495, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.4;
  color: #b8acad; }

/* line 1502, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0'; }

/* line 1507, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid white;
  border-left: 0;
  text-align: right; }

/* line 1514, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: ''; }

/* line 1521, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014'; }

/* line 1529, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
address {
  margin-bottom: 22px;
  font-style: normal;
  line-height: 1.4; }

/* line 1534, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
code,
kbd,
pre,
samp {
  font-family: "Crimson Text", serif; }

/* line 1540, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px; }

/* line 1547, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }

/* line 1554, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none; }

/* line 1560, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
pre {
  display: block;
  padding: 10.5px;
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.4;
  word-break: break-all;
  word-wrap: break-word;
  color: #3F3637;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px; }

/* line 1572, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0; }

/* line 1580, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

/* line 1584, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

/* line 1589, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container:before, .container:after {
  content: " ";
  display: table; }

/* line 1592, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container:after {
  clear: both; }

@media (min-width: 768px) {
  /* line 1595, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  /* line 1598, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  /* line 1601, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .container {
    width: 1170px; } }

/* line 1604, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }

/* line 1609, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table; }

/* line 1612, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container-fluid:after {
  clear: both; }

/* line 1615, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.row {
  margin-left: -15px;
  margin-right: -15px; }

/* line 1618, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.row:before, .row:after {
  content: " ";
  display: table; }

/* line 1621, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.row:after {
  clear: both; }

/* line 1624, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

/* line 1630, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-13, .col-xs-14, .col-xs-15, .col-xs-16, .col-xs-17, .col-xs-18, .col-xs-19, .col-xs-20, .col-xs-21, .col-xs-22, .col-xs-23, .col-xs-24 {
  float: left; }

/* line 1633, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-1 {
  width: 4.16667%; }

/* line 1636, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-2 {
  width: 8.33333%; }

/* line 1639, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-3 {
  width: 12.5%; }

/* line 1642, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-4 {
  width: 16.66667%; }

/* line 1645, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-5 {
  width: 20.83333%; }

/* line 1648, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-6 {
  width: 25%; }

/* line 1651, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-7 {
  width: 29.16667%; }

/* line 1654, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-8 {
  width: 33.33333%; }

/* line 1657, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-9 {
  width: 37.5%; }

/* line 1660, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-10 {
  width: 41.66667%; }

/* line 1663, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-11 {
  width: 45.83333%; }

/* line 1666, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-12 {
  width: 50%; }

/* line 1669, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-13 {
  width: 54.16667%; }

/* line 1672, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-14 {
  width: 58.33333%; }

/* line 1675, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-15 {
  width: 62.5%; }

/* line 1678, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-16 {
  width: 66.66667%; }

/* line 1681, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-17 {
  width: 70.83333%; }

/* line 1684, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-18 {
  width: 75%; }

/* line 1687, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-19 {
  width: 79.16667%; }

/* line 1690, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-20 {
  width: 83.33333%; }

/* line 1693, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-21 {
  width: 87.5%; }

/* line 1696, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-22 {
  width: 91.66667%; }

/* line 1699, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-23 {
  width: 95.83333%; }

/* line 1702, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-24 {
  width: 100%; }

/* line 1705, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-0 {
  right: auto; }

/* line 1708, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-1 {
  right: 4.16667%; }

/* line 1711, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-2 {
  right: 8.33333%; }

/* line 1714, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-3 {
  right: 12.5%; }

/* line 1717, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-4 {
  right: 16.66667%; }

/* line 1720, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-5 {
  right: 20.83333%; }

/* line 1723, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-6 {
  right: 25%; }

/* line 1726, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-7 {
  right: 29.16667%; }

/* line 1729, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-8 {
  right: 33.33333%; }

/* line 1732, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-9 {
  right: 37.5%; }

/* line 1735, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-10 {
  right: 41.66667%; }

/* line 1738, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-11 {
  right: 45.83333%; }

/* line 1741, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-12 {
  right: 50%; }

/* line 1744, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-13 {
  right: 54.16667%; }

/* line 1747, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-14 {
  right: 58.33333%; }

/* line 1750, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-15 {
  right: 62.5%; }

/* line 1753, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-16 {
  right: 66.66667%; }

/* line 1756, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-17 {
  right: 70.83333%; }

/* line 1759, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-18 {
  right: 75%; }

/* line 1762, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-19 {
  right: 79.16667%; }

/* line 1765, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-20 {
  right: 83.33333%; }

/* line 1768, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-21 {
  right: 87.5%; }

/* line 1771, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-22 {
  right: 91.66667%; }

/* line 1774, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-23 {
  right: 95.83333%; }

/* line 1777, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-pull-24 {
  right: 100%; }

/* line 1780, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-0 {
  left: auto; }

/* line 1783, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-1 {
  left: 4.16667%; }

/* line 1786, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-2 {
  left: 8.33333%; }

/* line 1789, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-3 {
  left: 12.5%; }

/* line 1792, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-4 {
  left: 16.66667%; }

/* line 1795, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-5 {
  left: 20.83333%; }

/* line 1798, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-6 {
  left: 25%; }

/* line 1801, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-7 {
  left: 29.16667%; }

/* line 1804, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-8 {
  left: 33.33333%; }

/* line 1807, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-9 {
  left: 37.5%; }

/* line 1810, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-10 {
  left: 41.66667%; }

/* line 1813, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-11 {
  left: 45.83333%; }

/* line 1816, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-12 {
  left: 50%; }

/* line 1819, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-13 {
  left: 54.16667%; }

/* line 1822, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-14 {
  left: 58.33333%; }

/* line 1825, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-15 {
  left: 62.5%; }

/* line 1828, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-16 {
  left: 66.66667%; }

/* line 1831, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-17 {
  left: 70.83333%; }

/* line 1834, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-18 {
  left: 75%; }

/* line 1837, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-19 {
  left: 79.16667%; }

/* line 1840, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-20 {
  left: 83.33333%; }

/* line 1843, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-21 {
  left: 87.5%; }

/* line 1846, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-22 {
  left: 91.66667%; }

/* line 1849, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-23 {
  left: 95.83333%; }

/* line 1852, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-push-24 {
  left: 100%; }

/* line 1855, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-0 {
  margin-left: 0%; }

/* line 1858, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-1 {
  margin-left: 4.16667%; }

/* line 1861, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-2 {
  margin-left: 8.33333%; }

/* line 1864, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-3 {
  margin-left: 12.5%; }

/* line 1867, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-4 {
  margin-left: 16.66667%; }

/* line 1870, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-5 {
  margin-left: 20.83333%; }

/* line 1873, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-6 {
  margin-left: 25%; }

/* line 1876, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-7 {
  margin-left: 29.16667%; }

/* line 1879, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-8 {
  margin-left: 33.33333%; }

/* line 1882, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-9 {
  margin-left: 37.5%; }

/* line 1885, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-10 {
  margin-left: 41.66667%; }

/* line 1888, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-11 {
  margin-left: 45.83333%; }

/* line 1891, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-12 {
  margin-left: 50%; }

/* line 1894, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-13 {
  margin-left: 54.16667%; }

/* line 1897, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-14 {
  margin-left: 58.33333%; }

/* line 1900, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-15 {
  margin-left: 62.5%; }

/* line 1903, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-16 {
  margin-left: 66.66667%; }

/* line 1906, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-17 {
  margin-left: 70.83333%; }

/* line 1909, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-18 {
  margin-left: 75%; }

/* line 1912, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-19 {
  margin-left: 79.16667%; }

/* line 1915, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-20 {
  margin-left: 83.33333%; }

/* line 1918, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-21 {
  margin-left: 87.5%; }

/* line 1921, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-22 {
  margin-left: 91.66667%; }

/* line 1924, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-23 {
  margin-left: 95.83333%; }

/* line 1927, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.col-xs-offset-24 {
  margin-left: 100%; }

@media (min-width: 768px) {
  /* line 1931, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-13, .col-sm-14, .col-sm-15, .col-sm-16, .col-sm-17, .col-sm-18, .col-sm-19, .col-sm-20, .col-sm-21, .col-sm-22, .col-sm-23, .col-sm-24 {
    float: left; }
  /* line 1933, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-1 {
    width: 4.16667%; }
  /* line 1935, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-2 {
    width: 8.33333%; }
  /* line 1937, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-3 {
    width: 12.5%; }
  /* line 1939, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-4 {
    width: 16.66667%; }
  /* line 1941, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-5 {
    width: 20.83333%; }
  /* line 1943, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-6 {
    width: 25%; }
  /* line 1945, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-7 {
    width: 29.16667%; }
  /* line 1947, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-8 {
    width: 33.33333%; }
  /* line 1949, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-9 {
    width: 37.5%; }
  /* line 1951, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-10 {
    width: 41.66667%; }
  /* line 1953, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-11 {
    width: 45.83333%; }
  /* line 1955, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-12 {
    width: 50%; }
  /* line 1957, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-13 {
    width: 54.16667%; }
  /* line 1959, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-14 {
    width: 58.33333%; }
  /* line 1961, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-15 {
    width: 62.5%; }
  /* line 1963, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-16 {
    width: 66.66667%; }
  /* line 1965, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-17 {
    width: 70.83333%; }
  /* line 1967, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-18 {
    width: 75%; }
  /* line 1969, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-19 {
    width: 79.16667%; }
  /* line 1971, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-20 {
    width: 83.33333%; }
  /* line 1973, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-21 {
    width: 87.5%; }
  /* line 1975, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-22 {
    width: 91.66667%; }
  /* line 1977, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-23 {
    width: 95.83333%; }
  /* line 1979, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-24 {
    width: 100%; }
  /* line 1981, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-0 {
    right: auto; }
  /* line 1983, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-1 {
    right: 4.16667%; }
  /* line 1985, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-2 {
    right: 8.33333%; }
  /* line 1987, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-3 {
    right: 12.5%; }
  /* line 1989, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-4 {
    right: 16.66667%; }
  /* line 1991, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-5 {
    right: 20.83333%; }
  /* line 1993, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-6 {
    right: 25%; }
  /* line 1995, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-7 {
    right: 29.16667%; }
  /* line 1997, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-8 {
    right: 33.33333%; }
  /* line 1999, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-9 {
    right: 37.5%; }
  /* line 2001, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-10 {
    right: 41.66667%; }
  /* line 2003, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-11 {
    right: 45.83333%; }
  /* line 2005, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-12 {
    right: 50%; }
  /* line 2007, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-13 {
    right: 54.16667%; }
  /* line 2009, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-14 {
    right: 58.33333%; }
  /* line 2011, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-15 {
    right: 62.5%; }
  /* line 2013, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-16 {
    right: 66.66667%; }
  /* line 2015, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-17 {
    right: 70.83333%; }
  /* line 2017, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-18 {
    right: 75%; }
  /* line 2019, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-19 {
    right: 79.16667%; }
  /* line 2021, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-20 {
    right: 83.33333%; }
  /* line 2023, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-21 {
    right: 87.5%; }
  /* line 2025, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-22 {
    right: 91.66667%; }
  /* line 2027, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-23 {
    right: 95.83333%; }
  /* line 2029, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-pull-24 {
    right: 100%; }
  /* line 2031, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-0 {
    left: auto; }
  /* line 2033, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-1 {
    left: 4.16667%; }
  /* line 2035, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-2 {
    left: 8.33333%; }
  /* line 2037, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-3 {
    left: 12.5%; }
  /* line 2039, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-4 {
    left: 16.66667%; }
  /* line 2041, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-5 {
    left: 20.83333%; }
  /* line 2043, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-6 {
    left: 25%; }
  /* line 2045, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-7 {
    left: 29.16667%; }
  /* line 2047, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-8 {
    left: 33.33333%; }
  /* line 2049, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-9 {
    left: 37.5%; }
  /* line 2051, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-10 {
    left: 41.66667%; }
  /* line 2053, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-11 {
    left: 45.83333%; }
  /* line 2055, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-12 {
    left: 50%; }
  /* line 2057, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-13 {
    left: 54.16667%; }
  /* line 2059, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-14 {
    left: 58.33333%; }
  /* line 2061, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-15 {
    left: 62.5%; }
  /* line 2063, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-16 {
    left: 66.66667%; }
  /* line 2065, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-17 {
    left: 70.83333%; }
  /* line 2067, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-18 {
    left: 75%; }
  /* line 2069, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-19 {
    left: 79.16667%; }
  /* line 2071, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-20 {
    left: 83.33333%; }
  /* line 2073, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-21 {
    left: 87.5%; }
  /* line 2075, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-22 {
    left: 91.66667%; }
  /* line 2077, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-23 {
    left: 95.83333%; }
  /* line 2079, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-push-24 {
    left: 100%; }
  /* line 2081, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-0 {
    margin-left: 0%; }
  /* line 2083, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-1 {
    margin-left: 4.16667%; }
  /* line 2085, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-2 {
    margin-left: 8.33333%; }
  /* line 2087, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-3 {
    margin-left: 12.5%; }
  /* line 2089, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-4 {
    margin-left: 16.66667%; }
  /* line 2091, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-5 {
    margin-left: 20.83333%; }
  /* line 2093, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-6 {
    margin-left: 25%; }
  /* line 2095, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-7 {
    margin-left: 29.16667%; }
  /* line 2097, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-8 {
    margin-left: 33.33333%; }
  /* line 2099, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-9 {
    margin-left: 37.5%; }
  /* line 2101, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-10 {
    margin-left: 41.66667%; }
  /* line 2103, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-11 {
    margin-left: 45.83333%; }
  /* line 2105, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-12 {
    margin-left: 50%; }
  /* line 2107, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-13 {
    margin-left: 54.16667%; }
  /* line 2109, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-14 {
    margin-left: 58.33333%; }
  /* line 2111, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-15 {
    margin-left: 62.5%; }
  /* line 2113, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-16 {
    margin-left: 66.66667%; }
  /* line 2115, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-17 {
    margin-left: 70.83333%; }
  /* line 2117, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-18 {
    margin-left: 75%; }
  /* line 2119, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-19 {
    margin-left: 79.16667%; }
  /* line 2121, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-20 {
    margin-left: 83.33333%; }
  /* line 2123, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-21 {
    margin-left: 87.5%; }
  /* line 2125, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-22 {
    margin-left: 91.66667%; }
  /* line 2127, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-23 {
    margin-left: 95.83333%; }
  /* line 2129, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-sm-offset-24 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  /* line 2133, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-13, .col-md-14, .col-md-15, .col-md-16, .col-md-17, .col-md-18, .col-md-19, .col-md-20, .col-md-21, .col-md-22, .col-md-23, .col-md-24 {
    float: left; }
  /* line 2135, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-1 {
    width: 4.16667%; }
  /* line 2137, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-2 {
    width: 8.33333%; }
  /* line 2139, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-3 {
    width: 12.5%; }
  /* line 2141, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-4 {
    width: 16.66667%; }
  /* line 2143, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-5 {
    width: 20.83333%; }
  /* line 2145, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-6 {
    width: 25%; }
  /* line 2147, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-7 {
    width: 29.16667%; }
  /* line 2149, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-8 {
    width: 33.33333%; }
  /* line 2151, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-9 {
    width: 37.5%; }
  /* line 2153, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-10 {
    width: 41.66667%; }
  /* line 2155, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-11 {
    width: 45.83333%; }
  /* line 2157, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-12 {
    width: 50%; }
  /* line 2159, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-13 {
    width: 54.16667%; }
  /* line 2161, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-14 {
    width: 58.33333%; }
  /* line 2163, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-15 {
    width: 62.5%; }
  /* line 2165, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-16 {
    width: 66.66667%; }
  /* line 2167, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-17 {
    width: 70.83333%; }
  /* line 2169, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-18 {
    width: 75%; }
  /* line 2171, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-19 {
    width: 79.16667%; }
  /* line 2173, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-20 {
    width: 83.33333%; }
  /* line 2175, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-21 {
    width: 87.5%; }
  /* line 2177, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-22 {
    width: 91.66667%; }
  /* line 2179, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-23 {
    width: 95.83333%; }
  /* line 2181, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-24 {
    width: 100%; }
  /* line 2183, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-0 {
    right: auto; }
  /* line 2185, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-1 {
    right: 4.16667%; }
  /* line 2187, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-2 {
    right: 8.33333%; }
  /* line 2189, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-3 {
    right: 12.5%; }
  /* line 2191, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-4 {
    right: 16.66667%; }
  /* line 2193, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-5 {
    right: 20.83333%; }
  /* line 2195, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-6 {
    right: 25%; }
  /* line 2197, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-7 {
    right: 29.16667%; }
  /* line 2199, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-8 {
    right: 33.33333%; }
  /* line 2201, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-9 {
    right: 37.5%; }
  /* line 2203, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-10 {
    right: 41.66667%; }
  /* line 2205, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-11 {
    right: 45.83333%; }
  /* line 2207, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-12 {
    right: 50%; }
  /* line 2209, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-13 {
    right: 54.16667%; }
  /* line 2211, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-14 {
    right: 58.33333%; }
  /* line 2213, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-15 {
    right: 62.5%; }
  /* line 2215, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-16 {
    right: 66.66667%; }
  /* line 2217, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-17 {
    right: 70.83333%; }
  /* line 2219, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-18 {
    right: 75%; }
  /* line 2221, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-19 {
    right: 79.16667%; }
  /* line 2223, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-20 {
    right: 83.33333%; }
  /* line 2225, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-21 {
    right: 87.5%; }
  /* line 2227, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-22 {
    right: 91.66667%; }
  /* line 2229, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-23 {
    right: 95.83333%; }
  /* line 2231, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-pull-24 {
    right: 100%; }
  /* line 2233, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-0 {
    left: auto; }
  /* line 2235, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-1 {
    left: 4.16667%; }
  /* line 2237, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-2 {
    left: 8.33333%; }
  /* line 2239, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-3 {
    left: 12.5%; }
  /* line 2241, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-4 {
    left: 16.66667%; }
  /* line 2243, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-5 {
    left: 20.83333%; }
  /* line 2245, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-6 {
    left: 25%; }
  /* line 2247, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-7 {
    left: 29.16667%; }
  /* line 2249, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-8 {
    left: 33.33333%; }
  /* line 2251, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-9 {
    left: 37.5%; }
  /* line 2253, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-10 {
    left: 41.66667%; }
  /* line 2255, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-11 {
    left: 45.83333%; }
  /* line 2257, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-12 {
    left: 50%; }
  /* line 2259, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-13 {
    left: 54.16667%; }
  /* line 2261, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-14 {
    left: 58.33333%; }
  /* line 2263, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-15 {
    left: 62.5%; }
  /* line 2265, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-16 {
    left: 66.66667%; }
  /* line 2267, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-17 {
    left: 70.83333%; }
  /* line 2269, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-18 {
    left: 75%; }
  /* line 2271, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-19 {
    left: 79.16667%; }
  /* line 2273, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-20 {
    left: 83.33333%; }
  /* line 2275, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-21 {
    left: 87.5%; }
  /* line 2277, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-22 {
    left: 91.66667%; }
  /* line 2279, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-23 {
    left: 95.83333%; }
  /* line 2281, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-push-24 {
    left: 100%; }
  /* line 2283, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-0 {
    margin-left: 0%; }
  /* line 2285, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-1 {
    margin-left: 4.16667%; }
  /* line 2287, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-2 {
    margin-left: 8.33333%; }
  /* line 2289, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-3 {
    margin-left: 12.5%; }
  /* line 2291, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-4 {
    margin-left: 16.66667%; }
  /* line 2293, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-5 {
    margin-left: 20.83333%; }
  /* line 2295, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-6 {
    margin-left: 25%; }
  /* line 2297, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-7 {
    margin-left: 29.16667%; }
  /* line 2299, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-8 {
    margin-left: 33.33333%; }
  /* line 2301, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-9 {
    margin-left: 37.5%; }
  /* line 2303, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-10 {
    margin-left: 41.66667%; }
  /* line 2305, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-11 {
    margin-left: 45.83333%; }
  /* line 2307, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-12 {
    margin-left: 50%; }
  /* line 2309, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-13 {
    margin-left: 54.16667%; }
  /* line 2311, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-14 {
    margin-left: 58.33333%; }
  /* line 2313, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-15 {
    margin-left: 62.5%; }
  /* line 2315, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-16 {
    margin-left: 66.66667%; }
  /* line 2317, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-17 {
    margin-left: 70.83333%; }
  /* line 2319, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-18 {
    margin-left: 75%; }
  /* line 2321, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-19 {
    margin-left: 79.16667%; }
  /* line 2323, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-20 {
    margin-left: 83.33333%; }
  /* line 2325, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-21 {
    margin-left: 87.5%; }
  /* line 2327, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-22 {
    margin-left: 91.66667%; }
  /* line 2329, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-23 {
    margin-left: 95.83333%; }
  /* line 2331, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-md-offset-24 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  /* line 2335, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15, .col-lg-16, .col-lg-17, .col-lg-18, .col-lg-19, .col-lg-20, .col-lg-21, .col-lg-22, .col-lg-23, .col-lg-24 {
    float: left; }
  /* line 2337, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-1 {
    width: 4.16667%; }
  /* line 2339, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-2 {
    width: 8.33333%; }
  /* line 2341, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-3 {
    width: 12.5%; }
  /* line 2343, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-4 {
    width: 16.66667%; }
  /* line 2345, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-5 {
    width: 20.83333%; }
  /* line 2347, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-6 {
    width: 25%; }
  /* line 2349, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-7 {
    width: 29.16667%; }
  /* line 2351, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-8 {
    width: 33.33333%; }
  /* line 2353, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-9 {
    width: 37.5%; }
  /* line 2355, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-10 {
    width: 41.66667%; }
  /* line 2357, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-11 {
    width: 45.83333%; }
  /* line 2359, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-12 {
    width: 50%; }
  /* line 2361, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-13 {
    width: 54.16667%; }
  /* line 2363, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-14 {
    width: 58.33333%; }
  /* line 2365, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-15 {
    width: 62.5%; }
  /* line 2367, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-16 {
    width: 66.66667%; }
  /* line 2369, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-17 {
    width: 70.83333%; }
  /* line 2371, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-18 {
    width: 75%; }
  /* line 2373, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-19 {
    width: 79.16667%; }
  /* line 2375, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-20 {
    width: 83.33333%; }
  /* line 2377, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-21 {
    width: 87.5%; }
  /* line 2379, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-22 {
    width: 91.66667%; }
  /* line 2381, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-23 {
    width: 95.83333%; }
  /* line 2383, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-24 {
    width: 100%; }
  /* line 2385, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-0 {
    right: auto; }
  /* line 2387, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-1 {
    right: 4.16667%; }
  /* line 2389, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-2 {
    right: 8.33333%; }
  /* line 2391, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-3 {
    right: 12.5%; }
  /* line 2393, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-4 {
    right: 16.66667%; }
  /* line 2395, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-5 {
    right: 20.83333%; }
  /* line 2397, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-6 {
    right: 25%; }
  /* line 2399, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-7 {
    right: 29.16667%; }
  /* line 2401, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-8 {
    right: 33.33333%; }
  /* line 2403, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-9 {
    right: 37.5%; }
  /* line 2405, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-10 {
    right: 41.66667%; }
  /* line 2407, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-11 {
    right: 45.83333%; }
  /* line 2409, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-12 {
    right: 50%; }
  /* line 2411, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-13 {
    right: 54.16667%; }
  /* line 2413, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-14 {
    right: 58.33333%; }
  /* line 2415, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-15 {
    right: 62.5%; }
  /* line 2417, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-16 {
    right: 66.66667%; }
  /* line 2419, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-17 {
    right: 70.83333%; }
  /* line 2421, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-18 {
    right: 75%; }
  /* line 2423, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-19 {
    right: 79.16667%; }
  /* line 2425, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-20 {
    right: 83.33333%; }
  /* line 2427, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-21 {
    right: 87.5%; }
  /* line 2429, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-22 {
    right: 91.66667%; }
  /* line 2431, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-23 {
    right: 95.83333%; }
  /* line 2433, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-pull-24 {
    right: 100%; }
  /* line 2435, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-0 {
    left: auto; }
  /* line 2437, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-1 {
    left: 4.16667%; }
  /* line 2439, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-2 {
    left: 8.33333%; }
  /* line 2441, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-3 {
    left: 12.5%; }
  /* line 2443, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-4 {
    left: 16.66667%; }
  /* line 2445, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-5 {
    left: 20.83333%; }
  /* line 2447, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-6 {
    left: 25%; }
  /* line 2449, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-7 {
    left: 29.16667%; }
  /* line 2451, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-8 {
    left: 33.33333%; }
  /* line 2453, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-9 {
    left: 37.5%; }
  /* line 2455, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-10 {
    left: 41.66667%; }
  /* line 2457, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-11 {
    left: 45.83333%; }
  /* line 2459, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-12 {
    left: 50%; }
  /* line 2461, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-13 {
    left: 54.16667%; }
  /* line 2463, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-14 {
    left: 58.33333%; }
  /* line 2465, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-15 {
    left: 62.5%; }
  /* line 2467, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-16 {
    left: 66.66667%; }
  /* line 2469, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-17 {
    left: 70.83333%; }
  /* line 2471, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-18 {
    left: 75%; }
  /* line 2473, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-19 {
    left: 79.16667%; }
  /* line 2475, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-20 {
    left: 83.33333%; }
  /* line 2477, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-21 {
    left: 87.5%; }
  /* line 2479, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-22 {
    left: 91.66667%; }
  /* line 2481, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-23 {
    left: 95.83333%; }
  /* line 2483, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-push-24 {
    left: 100%; }
  /* line 2485, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-0 {
    margin-left: 0%; }
  /* line 2487, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-1 {
    margin-left: 4.16667%; }
  /* line 2489, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-2 {
    margin-left: 8.33333%; }
  /* line 2491, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-3 {
    margin-left: 12.5%; }
  /* line 2493, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-4 {
    margin-left: 16.66667%; }
  /* line 2495, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-5 {
    margin-left: 20.83333%; }
  /* line 2497, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-6 {
    margin-left: 25%; }
  /* line 2499, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-7 {
    margin-left: 29.16667%; }
  /* line 2501, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-8 {
    margin-left: 33.33333%; }
  /* line 2503, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-9 {
    margin-left: 37.5%; }
  /* line 2505, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-10 {
    margin-left: 41.66667%; }
  /* line 2507, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-11 {
    margin-left: 45.83333%; }
  /* line 2509, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-12 {
    margin-left: 50%; }
  /* line 2511, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-13 {
    margin-left: 54.16667%; }
  /* line 2513, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-14 {
    margin-left: 58.33333%; }
  /* line 2515, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-15 {
    margin-left: 62.5%; }
  /* line 2517, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-16 {
    margin-left: 66.66667%; }
  /* line 2519, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-17 {
    margin-left: 70.83333%; }
  /* line 2521, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-18 {
    margin-left: 75%; }
  /* line 2523, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-19 {
    margin-left: 79.16667%; }
  /* line 2525, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-20 {
    margin-left: 83.33333%; }
  /* line 2527, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-21 {
    margin-left: 87.5%; }
  /* line 2529, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-22 {
    margin-left: 91.66667%; }
  /* line 2531, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-23 {
    margin-left: 95.83333%; }
  /* line 2533, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .col-lg-offset-24 {
    margin-left: 100%; } }

/* line 2536, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
table {
  background-color: transparent; }

/* line 2539, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #b8acad;
  text-align: left; }

/* line 2545, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
th {
  text-align: left; }

/* line 2548, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px; }

/* line 2552, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.4;
  vertical-align: top;
  border-top: 1px solid #ddd; }

/* line 2562, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd; }

/* line 2565, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

/* line 2572, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > tbody + tbody {
  border-top: 2px solid #ddd; }

/* line 2574, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table .table {
  background-color: #fff; }

/* line 2577, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

/* line 2585, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-bordered {
  border: 1px solid #ddd; }

/* line 2587, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd; }

/* line 2594, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px; }

/* line 2598, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

/* line 2601, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

/* line 2604, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

/* line 2609, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

/* line 2615, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

/* line 2629, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

/* line 2636, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

/* line 2650, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

/* line 2657, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

/* line 2671, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

/* line 2678, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

/* line 2692, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

/* line 2699, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

/* line 2713, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

/* line 2720, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }

@media screen and (max-width: 767px) {
  /* line 2724, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd; }
  /* line 2730, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive > .table {
    margin-bottom: 0; }
  /* line 2732, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap; }
  /* line 2739, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive > .table-bordered {
    border: 0; }
  /* line 2741, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  /* line 2748, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  /* line 2755, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0; } }

/* line 2761, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

/* line 2767, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 22px;
  font-size: 24px;
  line-height: inherit;
  color: #3F3637;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

/* line 2778, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

/* line 2784, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="search"] {
  box-sizing: border-box; }

/* line 2789, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

/* line 2795, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="file"] {
  display: block; }

/* line 2798, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="range"] {
  display: block;
  width: 100%; }

/* line 2802, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
select[multiple],
select[size] {
  height: auto; }

/* line 2806, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

/* line 2812, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.4;
  color: #988789; }

/* line 2819, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.4;
  color: #988789;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }

/* line 2836, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

/* line 2841, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1; }

/* line 2844, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control:-ms-input-placeholder {
  color: #999; }

/* line 2846, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control::-webkit-input-placeholder {
  color: #999; }

/* line 2848, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control::-ms-expand {
  border: 0;
  background-color: transparent; }

/* line 2851, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control[disabled], .form-control[readonly],
fieldset[disabled] .form-control {
  background-color: white;
  opacity: 1; }

/* line 2855, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed; }

/* line 2859, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
textarea.form-control {
  height: auto; }

/* line 2862, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 2866, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 36px; }
  /* line 2871, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
input[type="month"] {
    line-height: 33px; }
  /* line 2894, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
input[type="month"] {
    line-height: 49px; } }

/* line 2918, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group {
  margin-bottom: 15px; }

/* line 2921, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }

/* line 2927, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio label,
.checkbox label {
  min-height: 22px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer; }

/* line 2935, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

/* line 2943, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

/* line 2947, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

/* line 2957, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

/* line 2962, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

/* line 2970, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

/* line 2977, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

/* line 2984, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 38px; }

/* line 2989, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0; }

/* line 2997, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

/* line 3006, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 33px;
  line-height: 33px; }

/* line 3012, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

/* line 3021, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-sm .form-control {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

/* line 3028, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-sm select.form-control {
  height: 33px;
  line-height: 33px; }

/* line 3032, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

/* line 3036, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-sm .form-control-static {
  height: 33px;
  min-height: 36px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.5; }

/* line 3043, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 6px; }

/* line 3052, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 49px;
  line-height: 49px; }

/* line 3058, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

/* line 3067, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-lg .form-control {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 6px; }

/* line 3074, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-lg select.form-control {
  height: 49px;
  line-height: 49px; }

/* line 3078, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

/* line 3082, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-group-lg .form-control-static {
  height: 49px;
  min-height: 42px;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.33333; }

/* line 3089, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-feedback {
  position: relative; }

/* line 3091, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-feedback .form-control {
  padding-right: 45px; }

/* line 3094, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  pointer-events: none; }

/* line 3106, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px; }

/* line 3115, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 33px;
  height: 33px;
  line-height: 33px; }

/* line 3124, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

/* line 3136, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

/* line 3140, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

/* line 3145, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

/* line 3150, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-success .form-control-feedback {
  color: #3c763d; }

/* line 3153, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

/* line 3165, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

/* line 3169, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

/* line 3174, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

/* line 3179, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-warning .form-control-feedback {
  color: #8a6d3b; }

/* line 3182, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

/* line 3194, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }

/* line 3198, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

/* line 3203, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

/* line 3208, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-error .form-control-feedback {
  color: #a94442; }

/* line 3211, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-feedback label ~ .form-control-feedback {
  top: 27px; }

/* line 3214, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

/* line 3217, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #847173; }

@media (min-width: 768px) {
  /* line 3224, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  /* line 3228, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  /* line 3232, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .form-control-static {
    display: inline-block; }
  /* line 3234, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
  /* line 3237, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto; }
  /* line 3241, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .input-group > .form-control {
    width: 100%; }
  /* line 3243, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  /* line 3246, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  /* line 3252, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0; }
  /* line 3255, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  /* line 3259, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

/* line 3262, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

/* line 3270, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 29px; }

/* line 3274, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }

/* line 3277, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table; }

/* line 3280, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-horizontal .form-group:after {
  clear: both; }

@media (min-width: 768px) {
  /* line 3284, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

/* line 3289, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  /* line 3293, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 20px; } }

@media (min-width: 768px) {
  /* line 3298, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 14px; } }

/* line 3302, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* line 3321, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

/* line 3324, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none; }

/* line 3327, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

/* line 3332, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn.disabled, .btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none; }

/* line 3340, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

/* line 3344, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }

/* line 3348, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default:focus, .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c; }

/* line 3352, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }

/* line 3356, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }

/* line 3361, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c; }

/* line 3368, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
  background-image: none; }

/* line 3371, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc; }

/* line 3377, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-default .badge {
  color: #fff;
  background-color: #333; }

/* line 3381, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary {
  color: #fff;
  background-color: #3F3637;
  border-color: #312a2b; }

/* line 3385, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #241e1f;
  border-color: black; }

/* line 3389, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary:hover {
  color: #fff;
  background-color: #241e1f;
  border-color: #100e0e; }

/* line 3393, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #241e1f;
  border-color: #100e0e; }

/* line 3398, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: #100e0e;
  border-color: black; }

/* line 3405, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  background-image: none; }

/* line 3408, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
  background-color: #3F3637;
  border-color: #312a2b; }

/* line 3414, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-primary .badge {
  color: #3F3637;
  background-color: #fff; }

/* line 3418, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }

/* line 3422, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625; }

/* line 3426, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }

/* line 3430, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }

/* line 3435, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625; }

/* line 3442, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
  background-image: none; }

/* line 3445, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c; }

/* line 3451, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff; }

/* line 3455, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }

/* line 3459, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85; }

/* line 3463, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }

/* line 3467, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }

/* line 3472, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85; }

/* line 3479, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
  background-image: none; }

/* line 3482, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da; }

/* line 3488, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff; }

/* line 3492, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }

/* line 3496, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d; }

/* line 3500, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }

/* line 3504, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }

/* line 3509, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d; }

/* line 3516, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  background-image: none; }

/* line 3519, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236; }

/* line 3525, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff; }

/* line 3529, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }

/* line 3533, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19; }

/* line 3537, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }

/* line 3541, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }

/* line 3546, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19; }

/* line 3553, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  background-image: none; }

/* line 3556, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a; }

/* line 3562, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff; }

/* line 3566, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-link {
  color: #3F3637;
  font-weight: normal;
  border-radius: 0; }

/* line 3570, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none; }

/* line 3575, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent; }

/* line 3577, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-link:hover, .btn-link:focus {
  color: #161313;
  text-decoration: underline;
  background-color: transparent; }

/* line 3581, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-link[disabled]:hover, .btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #b8acad;
  text-decoration: none; }

/* line 3587, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 6px; }

/* line 3593, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

/* line 3599, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px; }

/* line 3605, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-block {
  display: block;
  width: 100%; }

/* line 3609, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-block + .btn-block {
  margin-top: 5px; }

/* line 3612, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

/* line 3617, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear; }

/* line 3622, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.fade.in {
  opacity: 1; }

/* line 3625, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.collapse {
  display: none; }

/* line 3627, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.collapse.in {
  display: block; }

/* line 3630, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
tr.collapse.in {
  display: table-row; }

/* line 3633, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
tbody.collapse.in {
  display: table-row-group; }

/* line 3636, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease; }

/* line 3647, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

/* line 3658, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropup,
.dropdown {
  position: relative; }

/* line 3662, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-toggle:focus {
  outline: 0; }

/* line 3665, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }

/* line 3685, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

/* line 3688, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu .divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

/* line 3693, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.4;
  color: #3F3637;
  white-space: nowrap; }

/* line 3702, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #312a2b;
  background-color: #f5f5f5; }

/* line 3707, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #3F3637; }

/* line 3713, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #b8acad; }

/* line 3716, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

/* line 3723, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.open > .dropdown-menu {
  display: block; }

/* line 3726, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.open > a {
  outline: 0; }

/* line 3729, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu-right {
  left: auto;
  right: 0; }

/* line 3733, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-menu-left {
  left: 0;
  right: auto; }

/* line 3737, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #b8acad;
  white-space: nowrap; }

/* line 3745, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

/* line 3753, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

/* line 3757, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

/* line 3764, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  /* line 3771, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  /* line 3774, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

/* line 3778, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }

/* line 3783, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left; }

/* line 3787, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2; }

/* line 3794, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

/* line 3800, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-toolbar {
  margin-left: -5px; }

/* line 3802, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table; }

/* line 3805, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-toolbar:after {
  clear: both; }

/* line 3807, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left; }

/* line 3811, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px; }

/* line 3816, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

/* line 3819, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn:first-child {
  margin-left: 0; }

/* line 3821, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

/* line 3825, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

/* line 3830, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn-group {
  float: left; }

/* line 3833, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

/* line 3836, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

/* line 3841, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

/* line 3845, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

/* line 3849, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

/* line 3853, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

/* line 3857, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }

/* line 3860, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none; }

/* line 3864, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn .caret {
  margin-left: 0; }

/* line 3867, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

/* line 3871, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

/* line 3874, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

/* line 3882, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

/* line 3886, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn-group:after {
  clear: both; }

/* line 3889, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn-group > .btn {
  float: none; }

/* line 3892, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

/* line 3899, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

/* line 3902, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

/* line 3908, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

/* line 3914, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

/* line 3917, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

/* line 3922, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

/* line 3926, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }

/* line 3931, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%; }

/* line 3936, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-justified > .btn-group .btn {
  width: 100%; }

/* line 3938, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto; }

/* line 3941, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

/* line 3949, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }

/* line 3953, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0; }

/* line 3957, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0; }

/* line 3963, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group .form-control:focus {
  z-index: 3; }

/* line 3966, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }

/* line 3970, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0; }

/* line 3975, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

/* line 3981, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #988789;
  text-align: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px; }

/* line 3991, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px; }

/* line 3997, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 6px; }

/* line 4003, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0; }

/* line 4007, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

/* line 4017, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon:first-child {
  border-right: 0; }

/* line 4020, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

/* line 4030, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-addon:last-child {
  border-left: 0; }

/* line 4033, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }

/* line 4037, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-btn > .btn {
  position: relative; }

/* line 4039, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-btn > .btn + .btn {
  margin-left: -1px; }

/* line 4041, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2; }

/* line 4043, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px; }

/* line 4046, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px; }

/* line 4051, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }

/* line 4055, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav:before, .nav:after {
  content: " ";
  display: table; }

/* line 4058, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav:after {
  clear: both; }

/* line 4060, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav > li {
  position: relative;
  display: block; }

/* line 4063, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px; }

/* line 4067, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: white; }

/* line 4070, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav > li.disabled > a {
  color: #b8acad; }

/* line 4072, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #b8acad;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed; }

/* line 4077, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: white;
  border-color: #3F3637; }

/* line 4080, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav .nav-divider {
  height: 1px;
  margin: 10px 0;
  overflow: hidden;
  background-color: #e5e5e5; }

/* line 4085, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav > li > a > img {
  max-width: none; }

/* line 4088, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs {
  border-bottom: 1px solid #ddd; }

/* line 4090, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px; }

/* line 4093, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.4;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0; }

/* line 4098, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs > li > a:hover {
  border-color: white white #ddd; }

/* line 4100, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #988789;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default; }

/* line 4107, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-pills > li {
  float: left; }

/* line 4109, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-pills > li > a {
  border-radius: 4px; }

/* line 4111, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-pills > li + li {
  margin-left: 2px; }

/* line 4113, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #3F3637; }

/* line 4117, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-stacked > li {
  float: none; }

/* line 4119, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0; }

/* line 4123, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }

/* line 4125, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none; }

/* line 4127, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px; }

/* line 4130, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto; }

@media (min-width: 768px) {
  /* line 4134, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%; }
  /* line 4137, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0; } }

/* line 4140, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }

/* line 4142, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px; }

/* line 4145, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd; }

@media (min-width: 768px) {
  /* line 4150, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0; }
  /* line 4153, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff; } }

/* line 4158, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tab-content > .tab-pane {
  display: none; }

/* line 4161, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tab-content > .active {
  display: block; }

/* line 4164, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

/* line 4169, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 22px;
  border: 1px solid transparent; }

/* line 4174, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar:before, .navbar:after {
  content: " ";
  display: table; }

/* line 4177, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar:after {
  clear: both; }

@media (min-width: 768px) {
  /* line 4180, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar {
    border-radius: 4px; } }

/* line 4183, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

/* line 4187, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  /* line 4191, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-header {
    float: left; } }

/* line 4194, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }

/* line 4201, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table; }

/* line 4204, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-collapse:after {
  clear: both; }

/* line 4206, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-collapse.in {
  overflow-y: auto; }

@media (min-width: 768px) {
  /* line 4209, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none; }
  /* line 4213, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important; }
  /* line 4218, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-collapse.in {
    overflow-y: visible; }
  /* line 4220, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0; } }

/* line 4226, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 4230, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px; } }

/* line 4234, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }

@media (min-width: 768px) {
  /* line 4241, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0; } }

/* line 4248, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }

@media (min-width: 768px) {
  /* line 4252, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-static-top {
    border-radius: 0; } }

/* line 4255, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }

@media (min-width: 768px) {
  /* line 4262, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0; } }

/* line 4266, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

/* line 4270, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

/* line 4275, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-brand {
  float: left;
  padding: 14px 15px;
  font-size: 20px;
  line-height: 22px;
  height: 50px; }

/* line 4281, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none; }

/* line 4283, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-brand > img {
  display: block; }

@media (min-width: 768px) {
  /* line 4286, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px; } }

/* line 4290, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

/* line 4301, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-toggle:focus {
  outline: 0; }

/* line 4303, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px; }

/* line 4308, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

@media (min-width: 768px) {
  /* line 4311, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-toggle {
    display: none; } }

/* line 4314, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-nav {
  margin: 7px -15px; }

/* line 4316, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px; }

@media (max-width: 767px) {
  /* line 4321, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none; }
  /* line 4329, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px; }
  /* line 4332, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 22px; }
  /* line 4334, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none; } }

@media (min-width: 768px) {
  /* line 4337, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav {
    float: left;
    margin: 0; }
  /* line 4340, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav > li {
    float: left; }
  /* line 4342, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-nav > li > a {
    padding-top: 14px;
    padding-bottom: 14px; } }

/* line 4346, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 7px;
  margin-bottom: 7px; }

@media (min-width: 768px) {
  /* line 4357, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  /* line 4361, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  /* line 4365, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .form-control-static {
    display: inline-block; }
  /* line 4367, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle; }
  /* line 4370, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto; }
  /* line 4374, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .input-group > .form-control {
    width: 100%; }
  /* line 4376, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  /* line 4379, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
  /* line 4385, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0; }
  /* line 4388, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  /* line 4392, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .has-feedback .form-control-feedback {
    top: 0; } }

@media (max-width: 767px) {
  /* line 4395, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .form-group {
    margin-bottom: 5px; }
  /* line 4397, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form .form-group:last-child {
    margin-bottom: 0; } }

@media (min-width: 768px) {
  /* line 4400, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none; } }

/* line 4410, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

/* line 4415, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

/* line 4422, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-btn {
  margin-top: 7px;
  margin-bottom: 7px; }

/* line 4425, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  margin-top: 8.5px;
  margin-bottom: 8.5px; }

/* line 4428, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  margin-top: 14px;
  margin-bottom: 14px; }

/* line 4432, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-text {
  margin-top: 14px;
  margin-bottom: 14px; }

@media (min-width: 768px) {
  /* line 4436, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px; } }

@media (min-width: 768px) {
  /* line 4442, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-left {
    float: left !important; }
  /* line 4444, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
  /* line 4447, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-right ~ .navbar-right {
    margin-right: 0; } }

/* line 4450, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }

/* line 4453, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-brand {
  color: #fff; }

/* line 4455, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #e6e6e6;
  background-color: transparent; }

/* line 4458, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-text {
  color: #777; }

/* line 4460, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-nav > li > a {
  color: #fff; }

/* line 4462, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent; }

/* line 4465, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #e7e7e7; }

/* line 4468, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #fff;
  background-color: transparent; }

/* line 4471, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-toggle {
  border-color: #ddd; }

/* line 4473, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd; }

/* line 4475, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888; }

/* line 4477, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7; }

/* line 4480, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #fff; }

@media (max-width: 767px) {
  /* line 4484, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #fff; }
  /* line 4486, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent; }
  /* line 4489, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #e7e7e7; }
  /* line 4492, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #fff;
    background-color: transparent; } }

/* line 4495, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-link {
  color: #fff; }

/* line 4497, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .navbar-link:hover {
  color: #fff; }

/* line 4499, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .btn-link {
  color: #fff; }

/* line 4501, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #fff; }

/* line 4503, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #fff; }

/* line 4508, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse {
  background-color: #222;
  border-color: #090909; }

/* line 4511, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-brand {
  color: #dbd5d5; }

/* line 4513, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent; }

/* line 4516, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-text {
  color: #dbd5d5; }

/* line 4518, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > li > a {
  color: #dbd5d5; }

/* line 4520, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent; }

/* line 4523, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909; }

/* line 4526, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent; }

/* line 4529, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-toggle {
  border-color: #333; }

/* line 4531, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333; }

/* line 4533, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff; }

/* line 4535, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010; }

/* line 4538, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff; }

@media (max-width: 767px) {
  /* line 4542, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909; }
  /* line 4544, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909; }
  /* line 4546, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #dbd5d5; }
  /* line 4548, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent; }
  /* line 4551, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  /* line 4554, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent; } }

/* line 4557, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-link {
  color: #dbd5d5; }

/* line 4559, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-link:hover {
  color: #fff; }

/* line 4561, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .btn-link {
  color: #dbd5d5; }

/* line 4563, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff; }

/* line 4565, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444; }

/* line 4570, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 22px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }

/* line 4576, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.breadcrumb > li {
  display: inline-block; }

/* line 4578, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.breadcrumb > li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc; }

/* line 4582, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.breadcrumb > .active {
  color: #b8acad; }

/* line 4585, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 22px 0;
  border-radius: 4px; }

/* line 4590, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > li {
  display: inline; }

/* line 4592, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.4;
  text-decoration: none;
  color: #3F3637;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px; }

/* line 4603, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px; }

/* line 4608, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px; }

/* line 4612, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 2;
  color: #161313;
  background-color: white;
  border-color: #ddd; }

/* line 4619, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #3F3637;
  border-color: #3F3637;
  cursor: default; }

/* line 4628, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #b8acad;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed; }

/* line 4639, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333; }

/* line 4645, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px; }

/* line 4650, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px; }

/* line 4655, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5; }

/* line 4661, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px; }

/* line 4666, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px; }

/* line 4671, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager {
  padding-left: 0;
  margin: 22px 0;
  list-style: none;
  text-align: center; }

/* line 4676, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager:before, .pager:after {
  content: " ";
  display: table; }

/* line 4679, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager:after {
  clear: both; }

/* line 4681, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager li {
  display: inline; }

/* line 4683, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px; }

/* line 4690, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: white; }

/* line 4694, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager .next > a,
.pager .next > span {
  float: right; }

/* line 4697, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager .previous > a,
.pager .previous > span {
  float: left; }

/* line 4700, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #b8acad;
  background-color: #fff;
  cursor: not-allowed; }

/* line 4708, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }

/* line 4719, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label:empty {
  display: none; }

/* line 4721, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn .label {
  position: relative;
  top: -1px; }

/* line 4725, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

/* line 4730, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-default {
  background-color: #b8acad; }

/* line 4732, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-default[href]:hover, .label-default[href]:focus {
  background-color: #a09092; }

/* line 4735, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-primary {
  background-color: #3F3637; }

/* line 4737, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-primary[href]:hover, .label-primary[href]:focus {
  background-color: #241e1f; }

/* line 4740, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-success {
  background-color: #5cb85c; }

/* line 4742, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-success[href]:hover, .label-success[href]:focus {
  background-color: #449d44; }

/* line 4745, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-info {
  background-color: #5bc0de; }

/* line 4747, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-info[href]:hover, .label-info[href]:focus {
  background-color: #31b0d5; }

/* line 4750, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-warning {
  background-color: #f0ad4e; }

/* line 4752, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-warning[href]:hover, .label-warning[href]:focus {
  background-color: #ec971f; }

/* line 4755, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-danger {
  background-color: #d9534f; }

/* line 4757, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.label-danger[href]:hover, .label-danger[href]:focus {
  background-color: #c9302c; }

/* line 4760, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #b8acad;
  border-radius: 10px; }

/* line 4773, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.badge:empty {
  display: none; }

/* line 4775, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn .badge {
  position: relative;
  top: -1px; }

/* line 4778, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.btn-xs .badge, .btn-group-xs > .btn .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px; }

/* line 4782, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #3F3637;
  background-color: #fff; }

/* line 4786, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item > .badge {
  float: right; }

/* line 4788, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item > .badge + .badge {
  margin-right: 5px; }

/* line 4790, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.nav-pills > li > a > .badge {
  margin-left: 3px; }

/* line 4793, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

/* line 4798, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: white; }

/* line 4804, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.jumbotron h1,
.jumbotron .h1 {
  color: inherit; }

/* line 4807, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.jumbotron p {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 200; }

/* line 4811, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.jumbotron > hr {
  border-top-color: #ccffff; }

/* line 4813, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 15px; }

/* line 4818, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.jumbotron .container {
  max-width: 100%; }

@media screen and (min-width: 768px) {
  /* line 4821, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px; }
  /* line 4824, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px; }
  /* line 4828, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 72px; } }

/* line 4832, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 22px;
  line-height: 1.4;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border 0.2s ease-in-out; }

/* line 4843, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.thumbnail > img,
.thumbnail a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto; }

/* line 4850, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.thumbnail .caption {
  padding: 9px;
  color: #3F3637; }

/* line 4854, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #3F3637; }

/* line 4859, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px; }

/* line 4864, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert h4 {
  margin-top: 0;
  color: inherit; }

/* line 4867, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert .alert-link {
  font-weight: bold; }

/* line 4869, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert > p,
.alert > ul {
  margin-bottom: 0; }

/* line 4872, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert > p + p {
  margin-top: 5px; }

/* line 4875, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }

/* line 4878, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit; }

/* line 4885, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }

/* line 4889, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-success hr {
  border-top-color: #c9e2b3; }

/* line 4891, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-success .alert-link {
  color: #2b542c; }

/* line 4894, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }

/* line 4898, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-info hr {
  border-top-color: #a6e1ec; }

/* line 4900, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-info .alert-link {
  color: #245269; }

/* line 4903, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }

/* line 4907, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-warning hr {
  border-top-color: #f7e1b5; }

/* line 4909, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-warning .alert-link {
  color: #66512c; }

/* line 4912, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }

/* line 4916, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-danger hr {
  border-top-color: #e4b9c0; }

/* line 4918, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.alert-danger .alert-link {
  color: #843534; }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

/* line 4933, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress {
  overflow: hidden;
  height: 22px;
  margin-bottom: 22px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

/* line 4942, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  background-color: #3F3637;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease; }

/* line 4957, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

/* line 4964, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress.active .progress-bar,
.progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite; }

/* line 4970, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-bar-success {
  background-color: #5cb85c; }

/* line 4972, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-striped .progress-bar-success {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

/* line 4977, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-bar-info {
  background-color: #5bc0de; }

/* line 4979, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-striped .progress-bar-info {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

/* line 4984, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-bar-warning {
  background-color: #f0ad4e; }

/* line 4986, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-striped .progress-bar-warning {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

/* line 4991, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-bar-danger {
  background-color: #d9534f; }

/* line 4993, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.progress-striped .progress-bar-danger {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

/* line 4998, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media {
  margin-top: 15px; }

/* line 5000, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media:first-child {
  margin-top: 0; }

/* line 5003, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

/* line 5008, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-body {
  width: 10000px; }

/* line 5011, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-object {
  display: block; }

/* line 5013, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-object.img-thumbnail {
  max-width: none; }

/* line 5016, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-right,
.media > .pull-right {
  padding-left: 10px; }

/* line 5020, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-left,
.media > .pull-left {
  padding-right: 10px; }

/* line 5024, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

/* line 5030, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-middle {
  vertical-align: middle; }

/* line 5033, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-bottom {
  vertical-align: bottom; }

/* line 5036, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

/* line 5040, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.media-list {
  padding-left: 0;
  list-style: none; }

/* line 5044, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

/* line 5048, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }

/* line 5055, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px; }

/* line 5058, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

/* line 5063, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item,
button.list-group-item {
  color: #555; }

/* line 5066, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333; }

/* line 5069, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item:hover, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5; }

/* line 5076, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button.list-group-item {
  width: 100%;
  text-align: left; }

/* line 5080, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: white;
  color: #b8acad;
  cursor: not-allowed; }

/* line 5084, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit; }

/* line 5086, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  color: #b8acad; }

/* line 5089, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #3F3637;
  border-color: #3F3637; }

/* line 5094, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit; }

/* line 5102, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  color: #a8999b; }

/* line 5105, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

/* line 5109, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }

/* line 5112, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit; }

/* line 5115, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-success:hover, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6; }

/* line 5120, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d; }

/* line 5128, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

/* line 5132, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }

/* line 5135, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit; }

/* line 5138, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-info:hover, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3; }

/* line 5143, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f; }

/* line 5151, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

/* line 5155, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }

/* line 5158, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit; }

/* line 5161, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-warning:hover, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc; }

/* line 5166, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b; }

/* line 5174, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

/* line 5178, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }

/* line 5181, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit; }

/* line 5184, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-danger:hover, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc; }

/* line 5189, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442; }

/* line 5197, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

/* line 5201, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

/* line 5205, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel {
  margin-bottom: 22px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

/* line 5213, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-body {
  padding: 15px; }

/* line 5215, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-body:before, .panel-body:after {
  content: " ";
  display: table; }

/* line 5218, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-body:after {
  clear: both; }

/* line 5221, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

/* line 5226, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit; }

/* line 5229, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit; }

/* line 5234, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit; }

/* line 5241, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

/* line 5248, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }

/* line 5251, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0; }

/* line 5255, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

/* line 5260, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

/* line 5266, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

/* line 5270, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

/* line 5273, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.list-group + .panel-footer {
  border-top-width: 0; }

/* line 5276, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }

/* line 5280, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px; }

/* line 5286, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }

/* line 5290, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px; }

/* line 5296, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px; }

/* line 5305, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px; }

/* line 5315, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

/* line 5319, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }

/* line 5325, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px; }

/* line 5334, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px; }

/* line 5344, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

/* line 5350, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

/* line 5354, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }

/* line 5357, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0; }

/* line 5370, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0; }

/* line 5383, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0; }

/* line 5392, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0; }

/* line 5402, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

/* line 5406, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group {
  margin-bottom: 22px; }

/* line 5408, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px; }

/* line 5411, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group .panel + .panel {
  margin-top: 5px; }

/* line 5413, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group .panel-heading {
  border-bottom: 0; }

/* line 5415, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd; }

/* line 5418, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group .panel-footer {
  border-top: 0; }

/* line 5420, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd; }

/* line 5423, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-default {
  border-color: #ddd; }

/* line 5425, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-default > .panel-heading {
  color: #3F3637;
  background-color: #f5f5f5;
  border-color: #ddd; }

/* line 5429, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd; }

/* line 5431, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #3F3637; }

/* line 5434, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd; }

/* line 5437, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-primary {
  border-color: #3F3637; }

/* line 5439, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #3F3637;
  border-color: #3F3637; }

/* line 5443, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #3F3637; }

/* line 5445, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-primary > .panel-heading .badge {
  color: #3F3637;
  background-color: #fff; }

/* line 5448, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #3F3637; }

/* line 5451, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-success {
  border-color: #d6e9c6; }

/* line 5453, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6; }

/* line 5457, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6; }

/* line 5459, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d; }

/* line 5462, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6; }

/* line 5465, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-info {
  border-color: #bce8f1; }

/* line 5467, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1; }

/* line 5471, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1; }

/* line 5473, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f; }

/* line 5476, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1; }

/* line 5479, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-warning {
  border-color: #faebcc; }

/* line 5481, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc; }

/* line 5485, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc; }

/* line 5487, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b; }

/* line 5490, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc; }

/* line 5493, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-danger {
  border-color: #ebccd1; }

/* line 5495, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1; }

/* line 5499, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1; }

/* line 5501, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442; }

/* line 5504, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1; }

/* line 5507, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }

/* line 5513, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0; }

/* line 5526, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

/* line 5529, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.embed-responsive-4by3 {
  padding-bottom: 75%; }

/* line 5532, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }

/* line 5541, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15); }

/* line 5545, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.well-lg {
  padding: 24px;
  border-radius: 6px; }

/* line 5549, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.well-sm {
  padding: 9px;
  border-radius: 3px; }

/* line 5553, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }

/* line 5562, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50); }

/* line 5569, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

/* line 5576, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-open {
  overflow: hidden; }

/* line 5579, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

/* line 5590, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out; }

/* line 5599, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal.in .modal-dialog {
  transform: translate(0, 0); }

/* line 5605, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

/* line 5609, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

/* line 5614, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

/* line 5625, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }

/* line 5633, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

/* line 5636, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

/* line 5640, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

/* line 5643, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-header:before, .modal-header:after {
  content: " ";
  display: table; }

/* line 5646, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-header:after {
  clear: both; }

/* line 5649, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-header .close {
  margin-top: -2px; }

/* line 5652, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-title {
  margin: 0;
  line-height: 1.4; }

/* line 5656, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-body {
  position: relative;
  padding: 15px; }

/* line 5660, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }

/* line 5664, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table; }

/* line 5667, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-footer:after {
  clear: both; }

/* line 5669, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0; }

/* line 5672, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px; }

/* line 5674, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-footer .btn-block + .btn-block {
  margin-left: 0; }

/* line 5677, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  /* line 5685, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  /* line 5688, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  /* line 5691, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  /* line 5695, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .modal-lg {
    width: 900px; } }

/* line 5698, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Crimson Text", serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.4;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0); }

/* line 5720, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90); }

/* line 5723, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0; }

/* line 5726, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px; }

/* line 5729, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0; }

/* line 5732, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px; }

/* line 5736, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px; }

/* line 5744, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

/* line 5751, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

/* line 5758, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

/* line 5765, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

/* line 5772, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

/* line 5779, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

/* line 5786, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

/* line 5793, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

/* line 5800, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

/* line 5807, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Crimson Text", serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.4;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }

/* line 5838, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.top {
  margin-top: -10px; }

/* line 5840, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.right {
  margin-left: 10px; }

/* line 5842, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.bottom {
  margin-top: 10px; }

/* line 5844, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.left {
  margin-left: -10px; }

/* line 5847, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0; }

/* line 5855, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover-content {
  padding: 9px 14px; }

/* line 5858, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

/* line 5866, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover > .arrow {
  border-width: 11px; }

/* line 5869, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

/* line 5873, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }

/* line 5880, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff; }

/* line 5887, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }

/* line 5894, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff; }

/* line 5901, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }

/* line 5908, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff; }

/* line 5915, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }

/* line 5922, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px; }

/* line 5929, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel {
  position: relative; }

/* line 5932, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }

/* line 5936, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left; }

/* line 5942, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1; }

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 5949, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-inner > .item {
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px; }
  /* line 5960, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-inner > .item.next, .carousel-inner > .item.active.right {
    transform: translate3d(100%, 0, 0);
    left: 0; }
  /* line 5964, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
    transform: translate3d(-100%, 0, 0);
    left: 0; }
  /* line 5968, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
    transform: translate3d(0, 0, 0);
    left: 0; } }

/* line 5972, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block; }

/* line 5976, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .active {
  left: 0; }

/* line 5978, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%; }

/* line 5983, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .next {
  left: 100%; }

/* line 5985, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .prev {
  left: -100%; }

/* line 5987, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0; }

/* line 5990, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .active.left {
  left: -100%; }

/* line 5992, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-inner > .active.right {
  left: 100%; }

/* line 5995, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent; }

/* line 6008, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }

/* line 6014, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }

/* line 6022, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control:hover, .carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90); }

/* line 6028, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block; }

/* line 6037, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px; }

/* line 6041, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px; }

/* line 6045, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif; }

/* line 6051, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control .icon-prev:before {
  content: '\2039'; }

/* line 6053, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control .icon-next:before {
  content: '\203a'; }

/* line 6056, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }

/* line 6066, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: transparent; }

/* line 6077, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff; }

/* line 6083, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }

/* line 6094, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption .btn {
  text-shadow: none; }

@media screen and (min-width: 768px) {
  /* line 6098, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  /* line 6106, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  /* line 6109, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  /* line 6112, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  /* line 6116, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-indicators {
    bottom: 20px; } }

/* line 6119, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

/* line 6123, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.clearfix:after {
  clear: both; }

/* line 6126, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

/* line 6131, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pull-right {
  float: right !important; }

/* line 6134, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.pull-left {
  float: left !important; }

/* line 6137, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.hide {
  display: none !important; }

/* line 6140, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.show {
  display: block !important; }

/* line 6143, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.invisible {
  visibility: hidden; }

/* line 6146, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

/* line 6153, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.hidden {
  display: none !important; }

/* line 6156, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

/* line 6162, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-xs {
  display: none !important; }

/* line 6165, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-sm {
  display: none !important; }

/* line 6168, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-md {
  display: none !important; }

/* line 6171, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-lg {
  display: none !important; }

/* line 6174, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  /* line 6189, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-xs {
    display: block !important; }
  /* line 6191, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  table.visible-xs {
    display: table !important; }
  /* line 6193, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  tr.visible-xs {
    display: table-row !important; }
  /* line 6195, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  /* line 6200, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  /* line 6204, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  /* line 6208, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6212, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-sm {
    display: block !important; }
  /* line 6214, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  table.visible-sm {
    display: table !important; }
  /* line 6216, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  tr.visible-sm {
    display: table-row !important; }
  /* line 6218, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6223, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6227, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6231, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6235, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-md {
    display: block !important; }
  /* line 6237, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  table.visible-md {
    display: table !important; }
  /* line 6239, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  tr.visible-md {
    display: table-row !important; }
  /* line 6241, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6246, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6250, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6254, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  /* line 6258, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-lg {
    display: block !important; }
  /* line 6260, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  table.visible-lg {
    display: table !important; }
  /* line 6262, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  tr.visible-lg {
    display: table-row !important; }
  /* line 6264, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  /* line 6269, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  /* line 6273, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  /* line 6277, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  /* line 6281, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6285, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6289, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  /* line 6293, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .hidden-lg {
    display: none !important; } }

/* line 6296, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-print {
  display: none !important; }

@media print {
  /* line 6300, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-print {
    display: block !important; }
  /* line 6302, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  table.visible-print {
    display: table !important; }
  /* line 6304, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  tr.visible-print {
    display: table-row !important; }
  /* line 6306, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

/* line 6310, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-print-block {
  display: none !important; }

@media print {
  /* line 6313, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-print-block {
    display: block !important; } }

/* line 6316, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-print-inline {
  display: none !important; }

@media print {
  /* line 6319, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-print-inline {
    display: inline !important; } }

/* line 6322, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.visible-print-inline-block {
  display: none !important; }

@media print {
  /* line 6325, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .visible-print-inline-block {
    display: inline-block !important; } }

@media print {
  /* line 6329, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .hidden-print {
    display: none !important; } }

/* Magnific Popup CSS */
/* line 6333, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

/* line 6344, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

/* line 6354, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

/* line 6364, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

/* line 6370, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-align-top .mfp-container:before {
  display: none; }

/* line 6373, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

/* line 6381, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

/* line 6386, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-ajax-cur {
  cursor: progress; }

/* line 6389, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

/* line 6394, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

/* line 6400, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-auto-cursor .mfp-content {
  cursor: auto; }

/* line 6403, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

/* line 6411, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-loading.mfp-figure {
  display: none; }

/* line 6414, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-hide {
  display: none !important; }

/* line 6417, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

/* line 6427, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-preloader a {
  color: #CCC; }

/* line 6429, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-preloader a:hover {
  color: #FFF; }

/* line 6432, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-s-ready .mfp-preloader {
  display: none; }

/* line 6435, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-s-error .mfp-content {
  display: none; }

/* line 6438, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

/* line 6451, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* line 6455, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

/* line 6470, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

/* line 6472, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-close:active {
  top: 1px; }

/* line 6475, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-close-btn-in .mfp-close {
  color: #333; }

/* line 6478, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

/* line 6486, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

/* line 6495, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

/* line 6505, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow:active {
  margin-top: -54px; }

/* line 6507, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1; }

/* line 6509, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

/* line 6520, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

/* line 6524, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

/* line 6529, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow-left {
  left: 0; }

/* line 6531, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

/* line 6534, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

/* line 6538, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow-right {
  right: 0; }

/* line 6540, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

/* line 6543, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

/* line 6546, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

/* line 6549, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

/* line 6553, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-iframe-holder .mfp-close {
  top: -40px; }

/* line 6556, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

/* line 6561, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
/* line 6572, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
/* line 6583, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-figure {
  line-height: 0; }

/* line 6585, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

/* line 6598, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

/* line 6603, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-figure figure {
  margin: 0; }

/* line 6606, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

/* line 6614, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

/* line 6621, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-image-holder .mfp-content {
  max-width: 100%; }

/* line 6624, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  /* line 6631, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  /* line 6634, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  /* line 6636, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  /* line 6639, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  /* line 6642, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
  /* line 6650, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  /* line 6652, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  /* line 6655, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  /* line 6667, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-arrow {
    transform: scale(0.75); }
  /* line 6670, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-arrow-left {
    transform-origin: 0; }
  /* line 6673, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-arrow-right {
    transform-origin: 100%; }
  /* line 6676, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* line 6680, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
img.responsive {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border: 0; }

/* line 6688, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
a:hover {
  text-decoration: underline; }

/* line 6691, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
h1 {
  font-size: 34px;
  margin-bottom: 20px; }

/* line 6695, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.link-arrow {
  display: inline-block;
  margin-bottom: 0;
  text-align: left;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-left: 32px;
  position: relative;
  font-weight: bold; }

/* line 6717, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.link-arrow:before {
  content: "❯";
  border: 3px solid #3F3637;
  color: #3F3637;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  left: 0;
  top: 2px;
  position: absolute;
  font-weight: bold;
  padding: 0px 6px 0px 7px;
  line-height: 20px;
  text-align: center;
  display: inline-block; }

/* line 6733, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
hr {
  border-top: 2px solid #e6e6e6; }

/* line 6736, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
p > a {
  text-decoration: underline;
  color: #AF524B; }

/* line 6740, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.row-eq-height {
  display: -ms-flexbox;
  display: flex; }

/* line 6746, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

/* line 6753, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* line 6762, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-toggle {
  right: 10px; }

/* line 6765, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.container-fluid {
  padding: 0;
  overflow: hidden; }

/* line 6769, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle {
  border-color: #3F3637;
  background-color: #fff;
  margin-right: 0; }

/* line 6778, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #3F3637; }

/* line 6781, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #3F3637; }

/* line 6784, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body {
  color: #000; }

/* line 6787, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  background-color: #3F3637; }

/* line 6790, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-control {
  display: none; }

/* line 6793, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-indicators li {
  margin: 0 15px; }

/* line 6796, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-text {
  max-width: 310px;
  padding: 20px 20px 20px 30px;
  background-color: #fff; }

/* line 6800, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-text h2 {
  margin-top: 0;
  color: #3F3637;
  font-size: 40px;
  line-height: 45px;
  font-weight: bold;
  text-align: left;
  text-shadow: none;
  text-transform: uppercase; }

@media (max-width: 991px) {
  /* line 6810, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-text h2 {
    font-size: 33px;
    line-height: 38px; } }

/* line 6813, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-text p {
  font-style: italic;
  text-shadow: none;
  text-align: left;
  font-size: 17px;
  margin-bottom: 0; }

/* line 6820, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel {
  height: 470px;
  margin-bottom: 60px; }

/* line 6823, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel .item {
  height: 470px;
  background-size: cover;
  background-position: center center;
  background-color: #777; }

/* line 6828, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 470px; }

/* line 6835, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption {
  bottom: auto;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0; }

/* line 6843, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption .valign {
  margin: 60px auto 0;
  max-width: 1120px; }

/* line 6846, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption .carousel-text {
  position: relative;
  padding: 120px 30px 0 0; }

/* line 6849, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption .valign, .carousel-caption .valign > div {
  height: 100%; }

@media (max-width: 991px) {
  /* line 6852, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-caption .carousel-text {
    padding: 120px 30px 0 20px;
    background-color: rgba(255, 255, 255, 0.68);
    max-width: none; } }

@media (max-width: 1199px) {
  /* line 6857, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .carousel-caption .carousel-text {
    padding: 120px 30px 0 20px; } }

/* line 6860, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.carousel-caption {
  z-index: 10; }

@media (min-width: 768px) {
  /* line 6864, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px; }
  /* line 6867, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0; } }

@font-face {
  font-family: 'fontello';
  src: url("/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.eot?75740880");
  src: url("/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.eot?75740880#iefix") format("embedded-opentype"), url("/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.woff2?75740880") format("woff2"), url("/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.woff?75740880") format("woff"), url("/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.ttf?75740880") format("truetype"), url("/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.svg?75740880#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('/typo3conf/ext/ui_sitepackage/Resources/Public/Fonts/fontello.svg?75740880#fontello') format('svg');
  }
}
*/
/* line 6888, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

/* line 6915, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-search:before {
  content: '\e800'; }

/* '' */
/* line 6919, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-right-open:before {
  content: '\e801'; }

/* '' */
/* line 6923, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-left-open:before {
  content: '\e802'; }

/* '' */
/* line 6927, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-down-open:before {
  content: '\e803'; }

/* '' */
/* line 6931, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-up-open:before {
  content: '\e804'; }

/* '' */
/* line 6935, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-search-1:before {
  content: '\e805'; }

/* '' */
/* line 6939, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-zoom-in:before {
  content: '\e806'; }

/* '' */
/* line 6943, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-zoom-out:before {
  content: '\e807'; }

/* '' */
/* line 6947, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-facebook:before {
  content: '\e808'; }

/* '' */
/* line 6951, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-pinterest:before {
  content: '\e809'; }

/* '' */
/* line 6955, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-twitter:before {
  content: '\e80a'; }

/* '' */
/* line 6959, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-instagram:before {
  content: '\e80b'; }

/* '' */
/* line 6963, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-youtube-play:before {
  content: '\e80c'; }

/* '' */
/* line 6967, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
.icon-mail-alt:before {
  content: '\e80d'; }

/* '' */
/* line 6971, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body {
  background-color: #716b6b; }

/* line 6973, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body#page-1 {
  background-color: #fff; }

/* line 6975, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .container {
  background-color: #fff; }

/* line 6977, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .container > .row {
  padding: 0 20px; }

@media (max-width: 991px) {
  /* line 6980, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .container > .row {
    padding: 0; } }

@media (max-width: 767px) {
  /* line 6983, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .container > .row {
    padding: 0; } }

/* line 6985, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper {
  max-width: 1170px;
  position: relative;
  background-color: #fff;
  z-index: 20; }

/* line 6990, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-inverse {
  background-color: transparent;
  border: 0; }

/* line 6993, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-inverse .navbar-collapse, body .navbar-wrapper .navbar-inverse .navbar-form {
  border: 0; }

/* line 6995, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-nav {
  text-align: center;
  display: block;
  width: 100%; }

/* line 6999, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-nav > li {
  float: none;
  display: inline-block; }

/* line 7002, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-nav > li > a {
  font-size: 24px;
  padding: 18px 40px;
  color: #3F3637; }

/* line 7006, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-nav > li > a:hover {
  text-decoration: underline; }

@media (max-width: 991px) {
  /* line 7009, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .navbar-nav > li > a {
    padding: 18px 20px; } }

@media (max-width: 767px) {
  /* line 7012, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .navbar-nav > li {
    display: block; } }

/* line 7014, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0; }

/* line 7017, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar {
  margin: 0;
  padding-right: 15px;
  padding-left: 15px; }

@media (max-width: 767px) {
  /* line 7022, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .navbar {
    position: fixed;
    top: 0;
    right: 0px;
    width: 100%;
    background-color: #fff; } }

/* line 7028, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar .container {
  width: auto; }

/* line 7030, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .navbar-brand {
  height: 123px;
  float: none;
  padding: 0;
  margin-top: 20px;
  position: relative;
  top: 8px;
  display: inline-block; }

@media (max-width: 767px) {
  /* line 7039, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .navbar-brand {
    height: 85px;
    margin-top: 50px; } }

/* line 7042, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .left-text {
  font-weight: bold; }

/* line 7044, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .left-text span {
  color: #af524b; }

@media (max-width: 991px) {
  /* line 7047, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .left-text {
    display: none; } }

/* line 7049, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .row-eq-height {
  -ms-flex-align: end;
      align-items: flex-end;
  border-bottom: 1px solid #ededed;
  padding-bottom: 35px; }

@media (max-width: 991px) {
  /* line 7054, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .row-eq-height {
    display: block; } }

/* line 7056, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .row-eq-height > div {
  padding: 0 15px; }

/* line 7058, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .socials {
  overflow: hidden;
  margin-bottom: 68px; }

/* line 7061, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .socials a {
  font-size: 20px; }

@media (max-width: 991px) {
  /* line 7064, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .socials {
    overflow: hidden;
    margin: 25px 15px 15px 15px;
    font-size: 24px;
    text-align: center; }
  /* line 7069, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .socials > div {
    display: inline-block;
    float: none;
    padding: 0;
    text-align: center;
    width: 50px; } }

/* line 7075, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .searchbox {
  position: relative;
  height: 32px; }

@media (max-width: 991px) {
  /* line 7079, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .searchbox {
    margin: 0 20px; } }

/* line 7081, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .searchbox input {
  background-color: #efefef;
  width: 100%;
  border: 0;
  position: absolute;
  padding: 5px 30px 5px 15px;
  left: 0;
  z-index: 0; }

/* line 7089, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .navbar-wrapper .searchbox [type=submit] {
  position: absolute;
  right: 0;
  font-size: 23px;
  z-index: 1;
  top: -2px;
  background-color: transparent;
  border: 0; }

@media (max-width: 767px) {
  /* line 7098, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper {
    padding: 0 15px; }
  /* line 7100, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper #navbar,
  body .navbar-wrapper .navbar {
    padding: 0; }
  /* line 7103, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .navbar-wrapper .navbar-nav {
    margin: 0; } }

/* line 7105, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .footer .footer-wrapper {
  border-top: 1px solid #ededed;
  padding: 20px 15px 20px;
  overflow: hidden; }

/* line 7109, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .footer > div {
  max-width: 1170px; }

/* line 7111, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .footer .menu {
  padding: 0; }

/* line 7113, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .footer .menu li a {
  padding: 0px 0 0 45px; }

@media (max-width: 991px) {
  /* line 7116, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .footer .menu li a {
    padding: 14px; } }

/* line 7118, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .footer .menu li a:hover {
  text-decoration: underline; }

/* line 7120, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .footer .nav > li {
  display: inline-block; }

@media (max-width: 991px) {
  /* line 7123, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .footer .pull-right {
    float: none !important;
    text-align: center; } }

/* line 7126, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser {
  color: #fff;
  margin-bottom: 5px;
  padding: 60px 0 50px 0; }

/* line 7130, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .row {
  padding: 0; }

/* line 7132, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .bg-image-wrap {
  position: relative; }

@media (max-width: 991px) {
  /* line 7135, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .teaser .bg-image-wrap {
    padding-top: 45px; } }

/* line 7137, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .bg-image-wrap > div {
  padding: 60px 20px; }

@media (max-width: 991px) {
  /* line 7140, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .teaser .bg-image-wrap > div {
    padding: 0px 20px 20px 20px; } }

/* line 7142, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .bg-image-wrap .bg-image {
  filter: brightness(70%);
  background-size: cover;
  background-position: center 100%;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

/* line 7153, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .bg-image-wrap a {
  display: block; }

/* line 7155, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content {
  position: relative; }

/* line 7157, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .headline {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  text-align: center; }

/* line 7164, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .headline h2 {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #3F3637;
  display: inline-block;
  padding: 2px 10px;
  font-size: 24px;
  margin: 0;
  position: relative;
  top: -17px; }

/* line 7174, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content h3.title, body .teaser .content h4.title {
  position: relative;
  padding: 0 10px 0 0;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  color: #3F3637;
  left: 13px;
  display: inline;
  white-space: pre-wrap;
  border: 0 solid transparent;
  border-width: 0; }

@media (max-width: 991px) {
  /* line 7187, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .teaser .content h3.title, body .teaser .content h4.title {
    font-size: 38px; } }

/* line 7189, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content h3.title:after, body .teaser .content h4.title:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 100%;
  bottom: 0px;
  width: 13px; }

/* line 7196, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content h3.title > span, body .teaser .content h4.title > span {
  position: relative;
  z-index: 1; }

/* line 7199, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content h4.title {
  font-size: 20px;
  color: #af524b;
  line-height: 32px;
  padding: 2px 10px 0px 0; }

/* line 7204, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content h4.title:after {
  top: 0px;
  right: 100%;
  bottom: 0px;
  width: 13px; }

/* line 7209, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .width-wrap {
  max-width: 440px;
  padding: 17px 0 10px;
  background-color: rgba(255, 255, 255, 0.8); }

@media (max-width: 991px) {
  /* line 7214, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .teaser .content .width-wrap {
    max-width: none; } }

/* line 7216, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .width-wrap p {
  padding: 5px 14px;
  line-height: 21px;
  font-size: 18px;
  color: #3F3637;
  margin: 21px 0 4px 0px; }

/* line 7222, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .link {
  display: block;
  width: 100%;
  margin-bottom: 12px; }

/* line 7226, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .link:hover {
  text-decoration: none; }

@media (max-width: 991px) {
  /* line 7229, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .teaser .content .link {
    margin-bottom: 12px; } }

/* line 7231, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .cycle {
  margin: 30px 0; }

/* line 7233, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .author h4 {
  background-color: #fff;
  text-align: center;
  color: #3F3637;
  display: inline-block;
  padding: 2px 5px 2px 0px;
  margin-bottom: 0;
  margin-top: 30px;
  font-size: 24px;
  font-weight: bold; }

/* line 7243, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .teaser .content .author p {
  color: #3F3637;
  font-size: 20px;
  margin-bottom: 30px; }

/* line 7247, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .cycle {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin: 0; }

/* line 7252, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .link {
  display: inline-block;
  background-color: #af524b;
  color: #fff;
  padding: 4px 11px;
  font-size: 18px;
  text-align: center; }

/* line 7259, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .link:hover {
  text-decoration: none;
  opacity: 0.9; }

/* line 7262, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .link:after {
  content: " ❯";
  font-size: 10px;
  padding-left: 5px; }

/* line 7266, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider {
  margin: 20px 0;
  position: relative; }

/* line 7269, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .headline h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px; }

@media (max-width: 767px) {
  /* line 7274, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .headline h2 {
    margin-top: 0; } }

/* line 7276, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .bg-image {
  background-size: cover;
  background-position: center 100%; }

/* line 7279, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item {
  position: relative;
  z-index: 10000;
  margin: 0px;
  color: #FFF;
  border-radius: 3px;
  text-align: center; }

/* line 7288, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item img {
  width: auto;
  display: inline-block; }

@media (max-width: 767px) {
  /* line 7292, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item .image img {
    display: inline-block !important; }
  /* line 7294, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item h3, body .slider .owl-carousel .item h4 {
    text-align: center; } }

/* line 7296, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item .row {
  margin: 0; }

/* line 7298, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item .row > div {
  padding: 30px 20px; }

@media (max-width: 991px) {
  /* line 7301, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item .row > div {
    padding: 15px;
    height: auto; } }

@media (max-width: 1199px) {
  /* line 7305, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item .row > div {
    padding: 15px;
    height: auto; } }

/* line 7308, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item h3.title, body .slider .owl-carousel .item h3.title:after, body .slider .owl-carousel .item h4.title, body .slider .owl-carousel .item h4.title:after {
  background-color: white; }

/* line 7310, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item h3.title, body .slider .owl-carousel .item h4.title {
  top: 12px;
  position: relative;
  padding: 0 10px 0 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #3F3637;
  left: 8px;
  display: inline;
  white-space: pre-wrap;
  border: 0 solid transparent;
  border-width: 0; }

@media (max-width: 991px) {
  /* line 7324, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item h3.title, body .slider .owl-carousel .item h4.title {
    text-align: center;
    display: block; } }

@media (max-width: 991px) and (max-width: 991px) {
  /* line 7328, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item h3.title span, body .slider .owl-carousel .item h4.title span {
    text-align: center; } }

/* line 7330, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item h3.title:after, body .slider .owl-carousel .item h4.title:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 100%;
  bottom: 0px;
  width: 7px; }

/* line 7337, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item h3.title > span, body .slider .owl-carousel .item h4.title > span {
  position: relative;
  z-index: 1; }

/* line 7340, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item h4.title {
  font-size: 18px;
  color: #af524b;
  font-weight: normal;
  line-height: 20px;
  padding: 0px 10px 2px 0; }

/* line 7346, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item h4.title:after {
  top: 0px;
  right: 100%;
  bottom: 0px;
  width: 7px; }

/* line 7351, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item .width-wrap {
  text-align: left;
  padding: 0; }

@media (max-width: 991px) {
  /* line 7355, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item .width-wrap > div {
    text-align: center; } }

/* line 7357, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item .width-wrap p {
  padding: 5px 7px;
  text-align: left;
  line-height: 19px;
  color: #3F3637;
  margin: 30px 0 0px 1px;
  background-color: white; }

@media (max-width: 991px) {
  /* line 7365, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .item .width-wrap p {
    text-align: center; } }

/* line 7367, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .item .width-wrap .link {
  clear: both;
  display: inline-block;
  margin-top: 15px;
  position: relative; }

/* line 7372, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .owl-dots {
  width: 100%;
  text-align: center;
  padding: 10px; }

@media (max-width: 991px) {
  /* line 7377, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .owl-carousel .owl-dots {
    padding: 0; } }

/* line 7379, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .owl-dots > div {
  width: 26px;
  display: inline-block;
  margin: 0 3px;
  height: 2px;
  background-color: #ccc; }

/* line 7385, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-carousel .owl-dots > div.active {
  background-color: #000; }

/* line 7387, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .owl-wrap {
  background-color: #fff;
  position: relative;
  z-index: 10; }

@media (max-width: 991px) {
  /* line 7392, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .no-slide .owl-stage {
    width: 100% !important; }
  /* line 7394, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .no-slide .owl-stage .item {
    margin-bottom: 20px; } }

/* line 7396, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .customNavigation {
  display: none;
  top: 0;
  left: -50px;
  margin: 0 auto;
  max-width: 1340px; }

/* line 7402, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .customNavigation a {
  cursor: pointer;
  position: relative;
  top: -237px;
  float: right;
  font-size: 50px; }

/* line 7408, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider .customNavigation a:first-child {
  float: left; }

@media (max-width: 991px) {
  /* line 7411, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider .customNavigation {
    display: none !important; } }

/* line 7413, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 .owl-carousel .item .row > div {
  padding: 0; }

@media (max-width: 991px) {
  /* line 7416, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider.layout_1 .owl-carousel .item .row > div {
    height: auto; } }

/* line 7418, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 .item .width-wrap p {
  margin: 0px 0 0px 1px; }

/* line 7420, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 .owl-carousel .item .width-wrap {
  padding: 0 0 0 22px; }

@media (max-width: 991px) {
  /* line 7423, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider.layout_1 .owl-carousel .item .width-wrap {
    padding: 0; } }

/* line 7425, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 .link {
  margin-left: 8px !important; }

/* line 7427, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 h3.title {
  background-color: transparent !important;
  display: block; }

/* line 7430, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 h3.title:after {
  display: none; }

/* line 7432, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 h4 {
  display: block !important; }

/* line 7434, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 .cover-image {
  background-size: cover;
  background-position: 100%;
  position: absolute;
  height: 258px;
  width: 100%;
  top: 0;
  left: 0; }

@media (max-width: 991px) {
  /* line 7443, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body .slider.layout_1 .cover-image {
    position: relative; } }

/* line 7445, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.layout_1 .customNavigation a {
  top: -200px; }

/* line 7447, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.products .owl-carousel .item .row > div {
  padding: 0;
  height: auto; }

/* line 7450, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.products .customNavigation a {
  top: -268px; }

/* line 7452, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.products img {
  display: block !important; }

/* line 7454, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.products .image {
  height: 212px !important; }

/* line 7456, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.products h3 {
  color: #3F3637;
  font-size: 18px;
  text-align: left;
  padding: 0;
  font-weight: bold;
  margin: 25px 0 0px 0; }

/* line 7463, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.products h4 {
  color: #AF524B;
  font-size: 16px;
  text-align: left;
  margin: 0;
  line-height: 20px;
  padding: 0; }

/* line 7470, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.show_border {
  margin: 20px 0 0; }

/* line 7472, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .slider.show_border .owl-wrap {
  border-bottom: 1px solid #ededed;
  padding-bottom: 30px; }

/* line 7475, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside .dropdown-toggle {
  display: none;
  border-radius: 0px;
  padding: 10px 15px;
  font-size: 24px;
  border: 1px solid #ccc;
  margin: 0 0 30px;
  position: relative; }

/* line 7483, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside .dropdown-toggle:after {
  content: '\2630';
  position: absolute;
  right: 10px;
  top: 10px; }

/* line 7488, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside .dropdown-toggle:hover {
  text-decoration: none; }

@media (max-width: 991px) {
  /* line 7491, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body aside .dropdown-toggle {
    display: block; } }

/* line 7493, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside .dropdown-menu {
  top: -30px;
  margin: 0;
  padding: 0;
  float: none;
  width: 100%;
  position: relative; }

/* line 7500, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside .dropdown-menu li {
  padding: 0;
  white-space: nowrap; }

/* line 7503, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside .dropdown-menu li a {
  width: 100%;
  padding: 3px 30px;
  display: inline-block; }

/* line 7507, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/* line 7511, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside ul a {
  display: inline-block;
  background-color: #fff;
  font-size: 24px;
  font-weight: normal;
  padding: 5px 30px;
  font-style: italic;
  position: relative; }

/* line 7519, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside ul a:before {
  content: "❯ ";
  font-size: 12px;
  position: absolute;
  top: 13px;
  left: 15px;
  padding-right: 5px; }

/* line 7526, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside ul li {
  position: relative; }

/* line 7528, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside ul li.active:before {
  color: #AF524B; }

/* line 7530, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body aside ul li.active a {
  color: #AF524B;
  font-weight: bold; }

/* line 7533, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .container {
  padding-top: 40px; }

/* line 7535, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #collapseTwo strong {
  text-align: center;
  margin-bottom: 30px;
  display: block; }

/* line 7539, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .rezept {
  margin-bottom: 25px; }

/* line 7541, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .rezept h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  margin-bottom: 0px; }

/* line 7546, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .rezept h5 {
  font-size: 24px;
  line-height: 30px;
  font-weight: normal;
  color: #AF524B;
  margin: 0px 0 10px; }

/* line 7552, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .rezept p {
  font-size: 24px;
  line-height: 30px; }

/* line 7555, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion {
  margin: 30px 0;
  border-bottom: 1px solid #ddd; }

/* line 7558, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title {
  text-align: center;
  display: block;
  position: relative;
  line-height: 54px;
  font-size: 24px;
  padding-top: 5px;
  font-weight: bold;
  height: 58px;
  color: #AF524B; }

/* line 7568, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title i {
  float: left;
  font-size: 31px;
  position: absolute;
  left: -5px;
  top: 3px; }

/* line 7574, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title i:hover {
  text-decoration: none; }

/* line 7576, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title .icon-down-open {
  display: none; }

/* line 7578, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title .collapsed {
  color: #3F3637; }

/* line 7580, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title .collapsed .icon-up-open {
  display: none; }

/* line 7582, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-title .collapsed .icon-down-open {
  display: block; }

/* line 7584, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel {
  border: 0;
  border-radius: 0;
  border-top: 1px solid #ddd;
  box-shadow: none; }

/* line 7589, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-body {
  padding: 18px 0;
  font-size: 24px;
  line-height: 30px; }

/* line 7593, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion .panel-heading {
  background-color: #fff;
  padding: 0px 10px;
  border: 0; }

/* line 7597, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product #accordion.panel-group .panel-heading + .panel-collapse > .panel-body, body #product #accordion.panel-group .panel-heading + .panel-collapse > .list-group {
  border: 0; }

/* line 7599, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product h1 {
  font-size: 30px;
  line-height: 42px;
  font-weight: bold;
  margin: 0;
  padding: 0; }

@media (max-width: 991px) {
  /* line 7606, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #product h1 {
    font-size: 40px;
    line-height: 40px;
    margin-top: 30px; } }

/* line 7610, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product h2 {
  font-size: 24px;
  font-weight: normal;
  color: #AF524B;
  margin: 5px 0 20px; }

/* line 7615, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .info {
  font-size: 18px; }

/* line 7617, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .info a.shipping {
  display: inline-block;
  color: #AF524B;
  font-style: italic;
  font-size: 18px; }

/* line 7622, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .info a.shipping:before {
  content: " ❯";
  font-size: 10px;
  padding-right: 5px; }

/* line 7626, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .info .link {
  font-style: italic;
  font-size: 24px;
  margin: 25px 0 10px 0; }

/* line 7630, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .info .link:hover {
  text-decoration: none; }

/* line 7632, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .info .link:after {
  position: relative;
  top: -3px; }

/* line 7635, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .price {
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold; }

/* line 7639, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .price-wrap {
  padding: 29px 0 0px 0; }

/* line 7641, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .shop-info {
  position: relative;
  padding: 2px 7px;
  font-size: 14px;
  border: 1px solid #7d7d7d;
  color: #7d7d7d;
  margin-top: 10px; }

/* line 7648, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .shop-info:after, body #product .shop-info:before {
  bottom: 100%;
  left: 22px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

/* line 7657, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .shop-info:after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #fff;
  border-width: 9px;
  margin-left: -9px; }

/* line 7662, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .shop-info:before {
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #7d7d7d;
  border-width: 10px;
  margin-left: -10px; }

/* line 7667, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .big-img {
  max-width: 445px;
  height: 580px;
  cursor: pointer;
  position: relative; }

@media (max-width: 991px) {
  /* line 7673, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #product .big-img {
    height: auto; } }

/* line 7675, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .thumbs {
  max-width: 445px; }

/* line 7677, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .product-image {
  margin: 20px auto;
  max-width: 170px;
  position: relative; }

/* line 7681, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .owl-carousel .owl-item {
  height: 50px;
  width: 50px; }

/* line 7684, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .owl-carousel .item {
  height: 50px;
  display: block;
  width: 50px;
  border: 1px solid #ccc;
  padding: 2px;
  text-align: center;
  cursor: pointer; }

/* line 7692, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .owl-carousel .item img {
  display: inline;
  width: auto;
  height: auto;
  vertical-align: middle;
  max-width: 100%; }

/* line 7698, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .customNavigation {
  display: none;
  top: -42px;
  position: relative;
  left: -37px;
  margin: 0 auto;
  width: 241px; }

/* line 7705, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .customNavigation a {
  cursor: pointer;
  position: relative;
  top: 0;
  float: right;
  font-size: 27px; }

/* line 7711, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .customNavigation a:first-child {
  float: left; }

/* line 7713, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .socials {
  margin-top: 20px; }

/* line 7715, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .socials .teilen {
  display: block;
  padding: 7px 0px;
  white-space: nowrap;
  font-size: 18px; }

/* line 7720, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .socials a {
  font-size: 30px; }

/* line 7722, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .zoom {
  background-color: #af524b;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: block;
  position: absolute;
  right: -12px;
  bottom: -12px; }

/* line 7731, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #product .zoom i {
  font-size: 23px;
  color: #fff;
  position: absolute;
  top: 9px;
  left: 9px; }

/* line 7737, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category > .container {
  padding-top: 40px; }

/* line 7739, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item {
  position: relative;
  z-index: 10000;
  margin: 0px;
  color: #FFF;
  border-radius: 3px;
  text-align: center;
  height: 355px; }

@media (max-width: 991px) {
  /* line 7750, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #category .item {
    height: auto;
    margin-bottom: 35px; } }

/* line 7753, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item img {
  width: auto;
  display: inline-block; }

/* line 7756, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item .row {
  margin: 0; }

/* line 7758, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item .row > div {
  padding: 30px 20px;
  height: 320px; }

@media (max-width: 991px) {
  /* line 7762, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #category .item .row > div {
    padding: 15px;
    height: auto; } }

@media (max-width: 1199px) {
  /* line 7766, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #category .item .row > div {
    padding: 15px;
    height: auto; } }

/* line 7769, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h3.title, body #category .item h3.title:after, body #category .item h4.title, body #category .item h4.title:after {
  background-color: white; }

/* line 7771, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h3.title, body #category .item h4.title {
  top: 12px;
  position: relative;
  padding: 0 10px 0 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #3F3637;
  left: 8px;
  display: inline;
  white-space: pre-wrap;
  border: 0 solid transparent;
  border-width: 0; }

/* line 7784, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h3.title:after, body #category .item h4.title:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 100%;
  bottom: 0px;
  width: 7px; }

/* line 7791, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h3.title > span, body #category .item h4.title > span {
  position: relative;
  z-index: 1; }

/* line 7794, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h4.title {
  font-size: 18px;
  color: #af524b;
  font-weight: normal;
  line-height: 20px;
  padding: 0px 10px 2px 0; }

/* line 7800, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h4.title:after {
  top: 0px;
  right: 100%;
  bottom: 0px;
  width: 7px; }

/* line 7805, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item .width-wrap {
  text-align: left;
  padding: 0; }

/* line 7808, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item .width-wrap p {
  padding: 5px 7px;
  text-align: left;
  line-height: 19px;
  color: #3F3637;
  margin: 30px 0 0px 1px;
  background-color: white; }

/* line 7815, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item .width-wrap .link {
  clear: both;
  display: inline-block;
  margin-top: 15px;
  position: relative; }

/* line 7820, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item a:hover {
  text-decoration: none; }

/* line 7822, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item img {
  display: inline-block !important;
  height: 100%; }

/* line 7825, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item .image {
  height: 214px !important;
  text-align: left; }

@media (max-width: 991px) {
  /* line 7829, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #category .item .image {
    text-align: center; } }

/* line 7831, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h3 {
  color: #3F3637;
  font-size: 18px;
  text-align: left;
  padding: 0;
  font-weight: bold;
  margin: 25px 0 0px 0; }

@media (max-width: 991px) {
  /* line 7839, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #category .item h3 {
    text-align: center; } }

/* line 7841, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #category .item h4 {
  color: #AF524B;
  font-size: 16px;
  text-align: left;
  margin: 0;
  line-height: 20px;
  padding: 0; }

@media (max-width: 991px) {
  /* line 7849, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #category .item h4 {
    text-align: center; } }

/* line 7851, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons > .container {
  padding-top: 40px; }

/* line 7853, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons .media {
  margin-bottom: 60px; }

/* line 7855, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons .cycle {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden; }

/* line 7859, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons .cycle img {
  max-width: none; }

/* line 7861, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons .media-body {
  font-size: 20px;
  border-bottom: 1px solid #ededed;
  padding-bottom: 60px; }

/* line 7865, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons h4 {
  color: #af524b;
  margin-bottom: 20px; }

/* line 7868, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons h3 {
  border-bottom: 1px solid #ededed;
  margin: 0px 0 60px 0;
  color: #af524b; }

/* line 7872, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #persons .media-left, body #persons .media > .pull-left {
  padding-right: 30px;
  min-width: 188px; }

@media (max-width: 991px) {
  /* line 7876, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #persons .media-left, body #persons .media-body {
    float: none;
    width: 100%;
    display: block;
    padding-right: 0; }
  /* line 7881, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #persons .media-heading,
  body #persons .media-left {
    text-align: center; } }

/* line 7884, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #person-detail > .container,
body #news-detail > .container {
  padding-top: 40px; }

/* line 7887, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #person-detail h1,
body #news-detail h1 {
  margin: 0; }

@media (max-width: 991px) {
  /* line 7891, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #person-detail h1,
  body #news-detail h1 {
    font-size: 24px;
    line-height: 26px;
    margin: 20px 0 5px; } }

/* line 7896, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #person-detail h2,
body #news-detail h2 {
  margin: 5px 0 20px;
  font-size: 23px;
  color: #af524b; }

/* line 7901, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #person-detail p,
body #news-detail p {
  font-size: 20px; }

/* line 7904, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #person-detail .rezept-headline,
body #news-detail .rezept-headline {
  margin: 20px 0 35px; }

@media (max-width: 991px) {
  /* line 7908, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #person-detail .rezept-headline,
  body #news-detail .rezept-headline {
    text-align: center; } }

/* line 7911, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #news {
  padding-top: 40px; }

/* line 7913, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #news .item {
  margin-bottom: 30px;
  min-height: 210px; }

@media (max-width: 991px) {
  /* line 7917, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #news .item {
    min-height: 0; } }

/* line 7919, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #news h3 {
  line-height: 21px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0; }

@media (max-width: 991px) {
  /* line 7925, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  body #news h3 {
    margin-top: 10px; } }

/* line 7927, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body #news h4 {
  font-size: 17px;
  line-height: 21px; }

/* line 7930, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body .media-body a:hover {
  text-decoration: none; }

/* line 7932, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body main.sidemenu div .container {
  width: auto; }

/* line 7934, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body#page-5 main > div > div > div > div > h1 {
  text-align: center; }

/* line 7936, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
body main > .container {
  min-height: 400px; }

@media (max-width: 991px) {
  /* line 7940, /Users/dweber/Workspace/hoelker-verlag/web/typo3conf/ext/ui_sitepackage/Resources/Private/Scss/main.css */
  .owl-carousel .owl-item {
    margin-bottom: 20px; } }
