/*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Helvetica\ Neue, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #a1a1aa;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

*, ::before, ::after {
  border-color: currentColor;
}

@font-face {
  font-family: "Helvetica Neue";

  font-weight: 300;

  src: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664085/f9c5199e-a996-4c08-9042-1eb845bb7495.woff2") format("woff2"), url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664085/2a34f1f8-d701-4949-b12d-133c1c2636eb.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Neue";

  font-weight: 400;

  src: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664093/08b57253-2e0d-4c12-9c57-107f6c67bc49.woff2") format("woff2"), url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664093/08edde9d-c27b-4731-a27f-d6cd9b01cd06.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Neue";

  font-weight: 500;

  src: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664103/240c57a0-fdce-440d-9ce3-85e0cb56f470.woff2") format("woff2"), url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664103/7802e576-2ffa-4f22-a409-534355fbea79.woff") format("woff");
}

@font-face {
  font-family: "Helvetica Neue";

  font-weight: 700;

  src: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664150/800da3b0-675f-465f-892d-d76cecbdd5b1.woff2") format("woff2"), url("/typo3conf/ext/kohlhammer_website/Resources/Public/Fonts/5664150/7b415a05-784a-4a4c-8c94-67e9288312f5.woff") format("woff");
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 84px;
    padding-left: 84px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.-z-10 {
  z-index: -10;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-4px {
  margin-left: 4px;
  margin-right: 4px;
}

.mx-24px {
  margin-left: 24px;
  margin-right: 24px;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-11px {
  margin-top: 11px;
  margin-bottom: 11px;
}

.my-24px {
  margin-top: 24px;
  margin-bottom: 24px;
}

.my-18\.5px {
  margin-top: 18.5px;
  margin-bottom: 18.5px;
}

.my-32px {
  margin-top: 32px;
  margin-bottom: 32px;
}

.my-55px {
  margin-top: 55px;
  margin-bottom: 55px;
}

.my-56px {
  margin-top: 56px;
  margin-bottom: 56px;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-6px {
  margin-top: 6px;
}

.mt-10px {
  margin-top: 10px;
}

.mt-11px {
  margin-top: 11px;
}

.mt-16px {
  margin-top: 16px;
}

.mt-15px {
  margin-top: 15px;
}

.mt-22px {
  margin-top: 22px;
}

.mt-24px {
  margin-top: 24px;
}

.mt-32px {
  margin-top: 32px;
}

.mt-56px {
  margin-top: 56px;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-2px {
  margin-right: 2px;
}

.mr-6px {
  margin-right: 6px;
}

.mr-11px {
  margin-right: 11px;
}

.mr-12px {
  margin-right: 12px;
}

.mr-15px {
  margin-right: 15px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-8px {
  margin-bottom: 8px;
}

.mb-16px {
  margin-bottom: 16px;
}

.mb-15px {
  margin-bottom: 15px;
}

.mb-24px {
  margin-bottom: 24px;
}

.mb-18\.5px {
  margin-bottom: 18.5px;
}

.mb-46px {
  margin-bottom: 46px;
}

.ml-10px {
  margin-left: 10px;
}

.ml-11px {
  margin-left: 11px;
}

.box-content {
  box-sizing: content-box;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-37 {
  height: 37px;
}

.h-48 {
  height: 12rem;
}

.h-72 {
  height: 18rem;
}

.h-96 {
  height: 24rem;
}

.h-12px {
  height: 12px;
}

.h-24px {
  height: 24px;
}

.h-36px {
  height: 36px;
}

.h-56px {
  height: 56px;
}

.h-105px {
  height: 105px;
}

.h-240px {
  height: 240px;
}

.h-500px {
  height: 500px;
}

.h-2em {
  height: 2em;
}

.h-full {
  height: 100%;
}

.max-h-full {
  max-height: 100%;
}

.w-6px {
  width: 6px;
}

.w-11px {
  width: 11px;
}

.w-12px {
  width: 12px;
}

.w-17px {
  width: 17px;
}

.w-24px {
  width: 24px;
}

.w-350px {
  width: 350px;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.max-w-full {
  max-width: 100%;
}

.max-w-239px {
  max-width: 239px;
}

.max-w-352px {
  max-width: 352px;
}

.max-w-500px {
  max-width: 500px;
}

.flex-none {
  flex: none;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
}

.rotate-90 {
  --tw-rotate: 90deg;
}

.rotate-180 {
  --tw-rotate: 180deg;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.cursor-pointer {
  cursor: pointer;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.gap-4 {
  gap: 1rem;
}

.gap-6px {
  gap: 6px;
}

.gap-16px {
  gap: 16px;
}

.gap-15px {
  gap: 15px;
}

.gap-24px {
  gap: 24px;
}

.gap-32px {
  gap: 32px;
}

.gap-46px {
  gap: 46px;
}

.self-end {
  align-self: flex-end;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.rounded-full {
  border-radius: 9999px;
}

.border-0 {
  border-width: 0px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-blue-gray-lighter {
  --tw-border-opacity: 1;
  border-color: rgba(223, 223, 223, var(--tw-border-opacity));
}

.border-blue-gray-light {
  --tw-border-opacity: 1;
  border-color: rgba(162, 173, 199, var(--tw-border-opacity));
}

.border-blue-gray {
  --tw-border-opacity: 1;
  border-color: rgba(140, 153, 184, var(--tw-border-opacity));
}

.border-blue-gray-dark {
  --tw-border-opacity: 1;
  border-color: rgba(65, 83, 129, var(--tw-border-opacity));
}

.border-blue-medium {
  --tw-border-opacity: 1;
  border-color: rgba(26, 47, 98, var(--tw-border-opacity));
}

.border-orange {
  --tw-border-opacity: 1;
  border-color: rgba(212, 57, 0, var(--tw-border-opacity));
}

.border-gray-lighter {
  --tw-border-opacity: 1;
  border-color: rgba(241, 241, 241, var(--tw-border-opacity));
}

.border-gray {
  --tw-border-opacity: 1;
  border-color: rgba(191, 191, 192, var(--tw-border-opacity));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.disabled\:border-blue-gray-light:disabled {
  --tw-border-opacity: 1;
  border-color: rgba(162, 173, 199, var(--tw-border-opacity));
}

.bg-blue-gray-lighter {
  --tw-bg-opacity: 1;
  background-color: rgba(223, 223, 223, var(--tw-bg-opacity));
}

.bg-blue-medium {
  --tw-bg-opacity: 1;
  background-color: rgba(26, 47, 98, var(--tw-bg-opacity));
}

.bg-blue-dark {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 16, 55, var(--tw-bg-opacity));
}

.bg-orange {
  --tw-bg-opacity: 1;
  background-color: rgba(212, 57, 0, var(--tw-bg-opacity));
}

.bg-gray-lighter {
  --tw-bg-opacity: 1;
  background-color: rgba(241, 241, 241, var(--tw-bg-opacity));
}

.bg-gray-light {
  --tw-bg-opacity: 1;
  background-color: rgba(216, 216, 216, var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-blue-medium:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(26, 47, 98, var(--tw-bg-opacity));
}

.hover\:bg-blue:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(1, 20, 68, var(--tw-bg-opacity));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-opacity-20:hover {
  --tw-bg-opacity: 0.2;
}

.bg-none {
  background-image: none;
}

.bg-arrow-right {
  background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right.svg');
}

.bg-arrow-right-blue {
  background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_blue.svg');
}

.bg-arrow {
  background-position: right 18px center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center {
  -o-object-position: center;
     object-position: center;
}

.p-4 {
  padding: 1rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-6px {
  padding: 6px;
}

.px-6px {
  padding-left: 6px;
  padding-right: 6px;
}

.px-11px {
  padding-left: 11px;
  padding-right: 11px;
}

.px-16px {
  padding-left: 16px;
  padding-right: 16px;
}

.px-18\.5px {
  padding-left: 18.5px;
  padding-right: 18.5px;
}

.py-2px {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-3px {
  padding-top: 3px;
  padding-bottom: 3px;
}

.py-6px {
  padding-top: 6px;
  padding-bottom: 6px;
}

.py-11px {
  padding-top: 11px;
  padding-bottom: 11px;
}

.py-18px {
  padding-top: 18px;
  padding-bottom: 18px;
}

.py-24px {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-18\.5px {
  padding-top: 18.5px;
  padding-bottom: 18.5px;
}

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

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

.pt-15px {
  padding-top: 15px;
}

.pt-24px {
  padding-top: 24px;
}

.pt-32px {
  padding-top: 32px;
}

.pt-56px {
  padding-top: 56px;
}

.pt-84px {
  padding-top: 84px;
}

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

.pr-6px {
  padding-right: 6px;
}

.pr-11px {
  padding-right: 11px;
}

.pr-17px {
  padding-right: 17px;
}

.pr-18\.5px {
  padding-right: 18.5px;
}

.pr-36px {
  padding-right: 36px;
}

.pr-46px {
  padding-right: 46px;
}

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

.pb-15px {
  padding-bottom: 15px;
}

.pb-22px {
  padding-bottom: 22px;
}

.pb-24px {
  padding-bottom: 24px;
}

.pb-32px {
  padding-bottom: 32px;
}

.pb-48px {
  padding-bottom: 48px;
}

.pb-56px {
  padding-bottom: 56px;
}

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

.pl-6px {
  padding-left: 6px;
}

.pl-11px {
  padding-left: 11px;
}

.pl-16px {
  padding-left: 16px;
}

.pl-15px {
  padding-left: 15px;
}

.pl-18\.5px {
  padding-left: 18.5px;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.text-11 {
  font-size: 11px;
  line-height: 18px;
}

.text-14 {
  font-size: 14px;
  line-height: 18px;
}

.text-16 {
  font-size: 16px;
  line-height: 21px;
}

.text-21 {
  font-size: 21px;
  line-height: 25px;
}

.text-32 {
  font-size: 32px;
  line-height: 35px;
}

.text-124 {
  font-size: 124px;
  line-height: 152px;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-13px {
  line-height: 13px;
}

.text-blue-gray-light {
  --tw-text-opacity: 1;
  color: rgba(162, 173, 199, var(--tw-text-opacity));
}

.text-blue-medium {
  --tw-text-opacity: 1;
  color: rgba(26, 47, 98, var(--tw-text-opacity));
}

.text-blue {
  --tw-text-opacity: 1;
  color: rgba(1, 20, 68, var(--tw-text-opacity));
}

.text-orange {
  --tw-text-opacity: 1;
  color: rgba(212, 57, 0, var(--tw-text-opacity));
}

.text-gray-light {
  --tw-text-opacity: 1;
  color: rgba(216, 216, 216, var(--tw-text-opacity));
}

.text-gray-dark {
  --tw-text-opacity: 1;
  color: rgba(133, 133, 135, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.disabled\:text-blue-gray-light:disabled {
  --tw-text-opacity: 1;
  color: rgba(162, 173, 199, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.opacity-70 {
  opacity: 0.7;
}

*, ::before, ::after {
  --tw-shadow: 0 0 #0000;
}

.shadow-header {
  --tw-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

*, ::before, ::after {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

@media (min-width: 640px) {
  .sm\:container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  @media (min-width: 640px) {
    .sm\:container {
      max-width: 640px;
      padding-right: 20px;
      padding-left: 20px;
    }
  }

  @media (min-width: 768px) {
    .sm\:container {
      max-width: 768px;
      padding-right: 60px;
      padding-left: 60px;
    }
  }

  @media (min-width: 1024px) {
    .sm\:container {
      max-width: 1024px;
      padding-right: 84px;
      padding-left: 84px;
    }
  }

  @media (min-width: 1200px) {
    .sm\:container {
      max-width: 1200px;
    }
  }
}

@media (min-width: 768px) {
  .md\:static {
    position: static;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:block {
    display: block;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:h-456 {
    height: 456px;
  }

  .md\:h-auto {
    height: auto;
  }

  .md\:h-event-image-height-md {
    height: 137.767px;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:w-152px {
    width: 152px;
  }

  .md\:w-240px {
    width: 240px;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-2\/3 {
    width: 66.666667%;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:gap-24px {
    gap: 24px;
  }

  .md\:gap-32px {
    gap: 32px;
  }

  .md\:gap-46px {
    gap: 46px;
  }

  .md\:justify-self-center {
    justify-self: center;
  }

  .md\:bg-gray-white {
    --tw-bg-opacity: 1;
    background-color: rgba(244, 249, 253, var(--tw-bg-opacity));
  }

  .md\:p-1 {
    padding: 0.25rem;
  }

  .md\:px-24px {
    padding-left: 24px;
    padding-right: 24px;
  }

  .md\:pr-24px {
    padding-right: 24px;
  }

  .md\:text-32 {
    font-size: 32px;
    line-height: 35px;
  }

  .md\:text-46 {
    font-size: 46px;
    line-height: 52px;
  }
}

@media (min-width: 1024px) {
  .lg\:top-0 {
    top: 0px;
  }

  .lg\:mt-46px {
    margin-top: 46px;
  }

  .lg\:mb-12px {
    margin-bottom: 12px;
  }

  .lg\:mb-32px {
    margin-bottom: 32px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-event-image-height-lg {
    height: 185.3px;
  }

  .lg\:h-500px {
    height: 500px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:w-1\/3 {
    width: 33.333333%;
  }

  .lg\:w-2\/3 {
    width: 66.666667%;
  }

  .lg\:auto-cols-max {
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-none {
    grid-template-columns: none;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-6px {
    gap: 6px;
  }

  .lg\:gap-24px {
    gap: 24px;
  }

  .lg\:justify-self-end {
    justify-self: end;
  }

  .lg\:overflow-y-visible {
    overflow-y: visible;
  }

  .lg\:border-none {
    border-style: none;
  }

  .lg\:bg-blue-dark {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 16, 55, var(--tw-bg-opacity));
  }

  .lg\:p-0 {
    padding: 0px;
  }

  .lg\:py-4px {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .lg\:py-56px {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .lg\:pt-7px {
    padding-top: 7px;
  }

  .lg\:pb-80px {
    padding-bottom: 80px;
  }

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:text-12 {
    font-size: 12px;
    line-height: 14px;
  }

  .lg\:text-14 {
    font-size: 14px;
    line-height: 18px;
  }

  .lg\:text-blue-medium {
    --tw-text-opacity: 1;
    color: rgba(26, 47, 98, var(--tw-text-opacity));
  }

  .lg\:text-white {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }

  .lg\:opacity-100 {
    opacity: 1;
  }

  .lg\:shadow-header {
    --tw-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .lg\:shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1200px) {
  .xl\:h-event-image-height-xl {
    height: 225.533px;
  }
}
html {
  font-family: Helvetica\ Neue, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
}

body {
  overflow-x: hidden;
}

address {
  font-style: normal;
}

h1 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 28px;
}

h2 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 28px;
}

h3 {
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 25px;
}

h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 21px;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 1em;
}

p {
  margin: 0 0 1em;
}

p ~ p {
  margin-top: 1em;
}

strong {
  font-weight: 500;
}

ul:not(.cke_panel_list) {
  list-style: url(/typo3conf/ext/kohlhammer_website/Resources/Public/Images/bullet.svg) outside;
  line-height: 1.5rem;
  padding-left: 20px;
  margin-left: 2px;
}

ul:not(.cke_panel_list) li {
  margin: 6px 0;
}

ol li {
  counter-increment: bullet;
  margin: 2em 0;
}

ol li:before {
  content: counter(bullet);
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.8em;
  margin-bottom: 0.5em;
  text-align: center;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  font-weight: 500;
}

p a {
  word-break: break-word;
}
.accordion-container ~ .accordion-container .accordion hr {
  display: none;
}

.accordion {
  position: relative;
}

.accordion-label:after {
  position: absolute;
  right: 0;
  transform: rotate(0deg);
  content: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Images/icon-arrow-down.svg");
}

.accordion-checkbox:checked ~ .accordion-label:after {
  display: inline-block;
  transform: rotate(180deg);
  margin-left: 5px;
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
}

.accordion-checkbox:checked ~ .accordion-content {
  max-height: none;
}
.collapsible-label {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
  cursor: pointer;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(212, 57, 0, var(--tw-text-opacity));
}

.collapsible-label:after {
  content: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_small_orange.svg");
  display: inline-block;
  transform: scale(1.3) rotate(90deg);
  margin-left: 7px;
}

.collapsible-checkbox:checked ~ .collapsible-label:after {
  display: inline-block;
  transform: scale(1.3) rotate(270deg);
  margin-left: 5px;
}

.collapsible-content {
  overflow: hidden;
  max-height: 0;
}

.collapsible-checkbox:checked ~ .collapsible-content {
  max-height: none;
}
.call-to-action {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 9px 15px 9px 15px;
  padding-right: 46px;
  padding-left: 18.5px;
  font-size: 14px;
  line-height: 18px;
  --tw-text-opacity: 1;
  color: rgba(26, 47, 98, var(--tw-text-opacity));
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(26, 47, 98, var(--tw-border-opacity));
  vertical-align: middle;
  background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_blue.svg');
  background-position: right 18px center;
  background-repeat: no-repeat;
}

.call-to-action:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(1, 20, 68, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}

footer .call-to-action {
  display: block;
  width: 100%;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  footer .call-to-action {
    margin-left: auto;
    margin-right: auto;
    width: 240px;
  }
}

@media (min-width: 1024px) {
  footer .call-to-action {
    margin-left: 0px;
    margin-right: 0px;
  }
}

footer .call-to-action:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.2;
}

footer .call-to-action {
  background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right.svg');
}
.link-with-arrow {
  --tw-text-opacity: 1;
  color: rgba(212, 57, 0, var(--tw-text-opacity));
  font-weight: 500;
}

.link-with-arrow:after {
  content: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_small_orange.svg");
  padding-left: 0.5em;
}
.ckeditor-dropdown .ckeditor-dropdown-title {
  color: #d43900;
  cursor: pointer;
}

.ckeditor-dropdown .ckeditor-dropdown-title:after {
  content: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_small_orange.svg");
  display: inline-block;
  transform: scale(1.3) rotate(90deg);
  margin-left: 7px;
}

.ckeditor-dropdown .ckeditor-dropdown-title-arrow-rotate-270:after {
  display: inline-block;
  transform: scale(1.3) rotate(270deg);
  margin-left: 5px;
}

.ckeditor-dropdown .ckeditor-dropdown-elements {
  overflow: hidden;
}

.ckeditor-dropdown .ckeditor-dropdown-element {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.cke_editable .ckeditor-dropdown {
  border: 1px dotted black;
  padding: 5px;
}

.cke_editable .ckeditor-dropdown-elements {
  border: 1px dotted grey;
  padding: 5px;
}

.cke_editable .ckeditor-dropdown-element {
  border: 1px dotted grey;
}
.form-required:after {
  content: "*";
}
.radio__input {
  width: 1.4285714286em;
  height: 1.4285714286em;
}

.radio__input svg {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.radio__fill {
  opacity: 0;
}

.radio input {
  opacity: 0;
  width: 0;
  height: 0;
}

.radio input:checked + .radio__input .radio__fill {
  opacity: 1;
}
select.select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  background-image: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Images/chevron_down.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  background-size: 12px;
}

select.select::-ms-expand {
  display: none;
}

select.select[data-selected=""] {
  font-size: 12px;
  line-height: 14px;
  --tw-text-opacity: 1;
  color: rgba(133, 133, 135, var(--tw-text-opacity));
}
.header__content {
  height: 120px;
}

@media (min-width: 1024px) {
  .header__content {
    height: 70px;
  }
}

.header__menu {
  display: none;
}

@media (min-width: 1024px) {
  .header__menu {
    display: flex;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .header__menu-item {
    height: 50px;
  }
}

#main-menu-toggle-label {
  margin-bottom: 32px;
}

#main-menu-toggle:checked + .header .header__content {
  height: 60px;
}

@media (min-width: 1024px) {
  #main-menu-toggle:checked + .header .header__content {
    height: 70px;
  }
}

#main-menu-toggle:checked + .header .header__menu {
  display: block;
  height: calc(100vh - 60px);
  overflow-y: auto;
}

@media (min-width: 1024px) {
  #main-menu-toggle:checked + .header .header__menu {
    display: flex;
    height: 50px;
  }
}

#main-menu-toggle:checked + .header #main-menu-toggle-label {
  margin-bottom: 0;
}

#main-menu-toggle:checked + .header #header__logo,
#main-menu-toggle:checked + .header #header__search-link {
  display: none;
}

@media (min-width: 1024px) {
  #main-menu-toggle:checked + .header #header__logo,
#main-menu-toggle:checked + .header #header__search-link {
    display: block;
  }
}

.header__menu-sub {
  display: none;
}

@media (min-width: 1024px) {
  .header__menu-sub {
    position: absolute;
    top: 120px;
  }

  .header__menu-sub:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -100vw;
    top: 0;
    display: block;
    width: 200vw;
    height: var(--header-menu-sub-height, calc(100vh - 120px));
    background: #ffffff;
    --tw-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}

@media (min-width: 1024px) {
  .header__menu-sub--show {
    display: block;
  }
}

#header__search-link {
  cursor: pointer;
}

.search_form {
  display: none;
  position: fixed;
  z-index: 99;
}

#search_form:checked ~ .search_form {
  display: block;
}

@media (max-width: 1023px), (any-hover: none) {
  .header__menu-sub-checkbox:checked + .header__menu-item .header__menu-sub {
    display: block;
  }

  .header__menu-sub-checkbox:checked + .header__menu-item .header__menu-sub-chevron {
    transform: rotate(180deg);
  }
}

@media (min-width: 1024px) and (any-hover: hover) {
  .header__menu-sub:hover {
    display: block;
  }

  .header__menu-item:hover .header__menu-sub {
    display: block;
  }
}
.hero--k {
  --tw-text-opacity: 1;
  color: rgba(26, 47, 98, var(--tw-text-opacity));
}

.hero--text {
  --tw-text-opacity: 1;
  color: rgba(26, 47, 98, var(--tw-text-opacity));
}

.hero--button {
  --tw-border-opacity: 1;
  border-color: rgba(26, 47, 98, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(0, 16, 55, var(--tw-bg-opacity));
}

.hero--button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(26, 47, 98, var(--tw-bg-opacity));
}

.hero--button {
  background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right.svg');
  font-size: 16px;
  line-height: 21px;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .hero--button {
    background-color: transparent;
  }

  .hero--button:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(1, 20, 68, var(--tw-bg-opacity));
    --tw-bg-opacity: 0.2;
  }

  .hero--button {
    background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_blue.svg');
    --tw-text-opacity: 1;
    color: rgba(26, 47, 98, var(--tw-text-opacity));
  }
}

.hero--dark .hero--k {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hero--dark .hero--text {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

@media (min-width: 768px) {
  .hero--dark .hero--button {
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
    background-color: transparent;
  }

  .hero--dark .hero--button:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
    --tw-bg-opacity: 0.2;
  }

  .hero--dark .hero--button {
    background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right.svg');
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
  }
}
.swipe {
  overflow: hidden;
  visibility: hidden;
  position: relative;
}

.swipe-wrap {
  overflow: hidden;
  position: relative;
}

.swipe-wrap > div {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider-radio-inner {
  pointer-events: none;
  margin: 2px;
  height: 6px;
  width: 6px;
}
.teaser-image {
  position: relative;
}

.teaser-image:after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.teaser--book:hover .teaser-image:after, .teaser--magazine:hover .teaser-image:after {
  --tw-bg-opacity: 1;
  background-color: rgba(1, 20, 68, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.15;
}
.download-link {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
  display: inline-block;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(212, 57, 0, var(--tw-text-opacity));
}

.download-link:after {
  content: url("/typo3conf/ext/kohlhammer_website/Resources/Public/Images/download.svg");
  display: inline-block;
  transform: scale(0.8);
  position: relative;
  top: 2px;
  left: 5px;
}

.download-link-border {
  padding: 2px 10px 2px 5px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(212, 57, 0, var(--tw-border-opacity));
}
.ckeditor-store-badge {
  width: 110px;
  height: 50px;
}
.ckeditor-download-icon {
  cursor: pointer;
}
.news-filter,
form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-filter, form {
  width: 100%;
}

@media (min-width: 768px) {
  .news-filter, form {
    width: auto;
  }
}

.news-filter,
form {
  /*select,
  input {
    @apply w-full md:w-48;
    @apply border border-blue-medium bg-white;
    @apply text-blue-medium p-8px;
    @apply cursor-pointer outline-none;
  }*/
}

.news-list-sectionmonth ~ .news-list-sectionmonth {
  border-top: 1px solid;
  --tw-border-opacity: 1;
  border-color: rgba(191, 191, 192, var(--tw-border-opacity));
}
.news-list-view .page-navigation {
  padding-top: 150px;
  position: relative;
}

.news-list-view .page-navigation:before, .news-list-view .page-navigation:after {
  content: "";
  top: 38px;
  border-top: 1px solid;
  position: absolute;
  width: 100%;
  --tw-border-opacity: 1;
  border-color: rgba(191, 191, 192, var(--tw-border-opacity));
}

.news-list-view .page-navigation:after {
  top: 118px;
}

.news-list-view .page-navigation > p {
  display: none;
}

.news-list-view .page-navigation .f3-widget-paginator {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgba(212, 57, 0, var(--tw-text-opacity));
}

.news-list-view .page-navigation .f3-widget-paginator li:not(.previous, .next, .last) a {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(212, 57, 0, var(--tw-border-opacity));
  display: flex;
  height: 24px;
  width: 24px;
  justify-content: center;
}

.news-list-view .page-navigation .current {
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(212, 57, 0, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(241, 241, 241, var(--tw-bg-opacity));
  display: flex;
  height: 24px;
  width: 24px;
  justify-content: center;
}

.news-list-view .page-navigation .previous:before,
.news-list-view .page-navigation .next:after {
  content: "";
}

.news-list-view .page-navigation .previous:before, .news-list-view .page-navigation .next:after {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
}

.news-list-view .page-navigation .previous:before, .news-list-view .page-navigation .next:after {
  background-image: url('/typo3conf/ext/kohlhammer_website/Resources/Public/Images/arrow_right_small_orange.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.news-list-view .page-navigation .previous:before {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-rotate: 180deg;
}
.koh-link {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .koh-link {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .koh-link:not(:last-of-type) {
    margin-bottom: 24px;
  }
}

