/* 
Zur Verwendung
npm install -g less
npm install -g less-plugin-clean-css

In diesem Ordner ausführen:
lessc style.less ../style.css --clean-css="--s1 --advanced --compatibility='*'"
lessc style.less ../../rentinorio/css/style.css --clean-css="--s1 --advanced --compatibility='*'"
lessc style.less ../../eventmaus/css/style.css --clean-css="--s1 --advanced --compatibility='*'"
 */
body {
  --rentino-blue-200: hsl(210, 100%, 45%);
  --rentino-blue-300: hsl(195, 100%, 45%);
  --rentino-blue-400: hsl(195, 100%, 70%);
  --rentino-grey-200: hsl(0, 0%, 20%);
  --rentino-grey-300: hsl(0, 0%, 30%);
  --rentino-grey-400: hsl(0, 0%, 40%);
  --rentino-grey-500: hsl(0, 0%, 50%);
  --rentino-grey-600: hsl(0, 0%, 65%);
  --rentino-grey-700: hsl(0, 0%, 80%);
  --rentino-grey-800: hsl(0, 0%, 90%);
  --rentino-grey-900: hsl(0, 0%, 95%);
  --success-color-300: hsl(120, 60%, 40%);
  --success-color-400: hsl(120, 60%, 45%);
  --success-color-500: hsl(120, 60%, 50%);
  --success-color-600: hsl(120, 60%, 55%);
  --warn-color-300: hsl(30, 100%, 45%);
  --warn-color-400: hsl(30, 100%, 50%);
  --warn-color-500: hsl(30, 100%, 60%);
  --warn-color-600: hsl(30, 100%, 70%);
  --error-color-300: hsl(0, 100%, 40%);
  --error-color-400: hsl(0, 100%, 55%);
  --error-color-500: hsl(0, 100%, 65%);
  --error-color-600: hsl(0, 100%, 75%);
}
/** 
 * Usage described in gulpfile.js
 */
/* Breakpoints for JS */
body:before {
  content: "smartphone";
  display: none;
  /* Prevent from displaying. */
}
@media only screen and (min-width: 768px) {
  body:before {
    content: "tablet";
  }
}
@media only screen and (min-width: 1200px) {
  body:before {
    content: "desktop";
  }
}
/* General */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
a {
  font-size-adjust: 0.5;
  text-decoration: none;
}
.text-rrblue {
  color: var(--rentino-blue-300);
}
.bg-rrblue {
  background: var(--rentino-blue-300);
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: unset !important;
  }
}
.btn,
.btn-primary,
.btn-secondary {
  color: var(--rentino-grey-300) !important;
  background: var(--rentino-blue-300);
}
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  color: var(--rentino-grey-300) !important;
  background: var(--rentino-blue-200);
}
.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}
.btn-primary {
  border: none;
}
.btn-lg {
  border-radius: 15px;
  color: var(--rentino-grey-300);
  background: var(--rentino-blue-300);
}
.btn-lg:hover {
  color: var(--rentino-grey-300);
  background: var(--rentino-blue-200);
}
.btn-outline {
  background-color: transparent;
  color: inherit;
  transition: all 0.5s;
  border-width: 5px;
  border-radius: 16px;
}
.modal .modal-dialog .modal-content {
  border-radius: unset;
}
.modal .modal-dialog .modal-footer a {
  color: var(--rentino-blue-300);
}
.blue-underbar {
  padding-left: 0;
  margin-bottom: 2rem;
  position: relative;
}
.blue-underbar::after {
  position: relative;
  height: 4px;
  width: 2rem;
  display: block;
  background-color: var(--rentino-blue-300);
  content: '';
}
#suche-section {
  margin-bottom: 1.6rem;
}
#suche-section .search-box-flat-mobile-blue {
  padding-top: 2rem;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue {
    display: block;
    position: relative;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
    background: var(--rentino-blue-300);
  }
}
#suche-section .search-box-flat-mobile-blue .search-title {
  display: none;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue .search-title {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
  }
}
#suche-section .search-box-flat-mobile-blue .search {
  font-size: inherit;
  line-height: 2rem;
  background-color: rgba(112, 112, 112, 0.25);
  border: none;
  border-radius: 0.6rem;
  padding-left: 1rem;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue .search {
    margin-bottom: 1.5rem;
    background: white;
    line-height: 3rem;
    font-size: 1.25rem;
  }
}
#suche-section .search-box-flat-mobile-blue #searchterm {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue #searchterm {
    width: 80%;
    margin-right: 20%;
  }
}
#suche-section .search-box-flat-mobile-blue .col-form-label {
  width: 10%;
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue .col-form-label {
    width: 20%;
    text-align: left;
    color: white;
  }
}
#suche-section .search-box-flat-mobile-blue #searchlocation {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue #searchlocation {
    width: 60%;
    margin-right: 20%;
  }
}
#suche-section .search-box-flat-mobile-blue input {
  height: auto;
  width: auto;
}
#suche-section .search-box-flat-mobile-blue input[type="submit"] {
  margin-left: auto;
  color: white !important;
  border-radius: 0.6rem !important;
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue button[type="submit"] {
    position: absolute;
    right: 5%;
    top: 45%;
    height: 4rem;
    width: 4rem;
    background: white;
    color: var(--rentino-blue-300);
  }
}
@media only screen and (max-width: 767px) {
  #suche-section .search-box-flat-mobile-blue button[type="submit"] .fa {
    font-size: 1.5em;
  }
}
.jumbotron > * {
  width: 100%;
}
html,
body {
  font-size: 14px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}
html.cookies-not-confirmed,
body.cookies-not-confirmed {
  overflow: hidden;
  max-height: 100vh;
}
html,
button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.25em 0 0.25em;
}
h1.no-extra-spacing,
h2.no-extra-spacing,
h3.no-extra-spacing,
h4.no-extra-spacing,
h5.no-extra-spacing,
h6.no-extra-spacing {
  margin-top: 0.25em;
}
h1.line:after,
h2.line:after,
h3.line:after,
h4.line:after,
h5.line:after,
h6.line:after {
  position: relative;
  top: -0.125rem;
  display: block;
  height: 4px;
  background-color: var(--rentino-blue-300);
  content: '';
}
h1.underline:after,
h2.underline:after,
h3.underline:after,
h4.underline:after,
h5.underline:after,
h6.underline:after,
h1.line-long:after,
h2.line-long:after,
h3.line-long:after,
h4.line-long:after,
h5.line-long:after,
h6.line-long:after {
  position: relative;
  display: block;
  top: 0.5rem;
  height: 1px;
  width: 100%;
  background-color: var(--rentino-grey-500);
  content: '';
}
h1.lines,
h2.lines,
h3.lines,
h4.lines,
h5.lines,
h6.lines {
  display: flex;
  justify-content: space-evenly;
  white-space: nowrap;
  gap: 1rem;
  padding: 0 1rem;
}
h1.lines.medium-gap,
h2.lines.medium-gap,
h3.lines.medium-gap,
h4.lines.medium-gap,
h5.lines.medium-gap,
h6.lines.medium-gap {
  gap: 2rem;
  padding: 0 2rem;
}
h1.lines.large-gap,
h2.lines.large-gap,
h3.lines.large-gap,
h4.lines.large-gap,
h5.lines.large-gap,
h6.lines.large-gap {
  gap: 4rem;
  padding: 0 3.5rem;
}
h1.lines:before,
h2.lines:before,
h3.lines:before,
h4.lines:before,
h5.lines:before,
h6.lines:before,
h1.lines:after,
h2.lines:after,
h3.lines:after,
h4.lines:after,
h5.lines:after,
h6.lines:after {
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 0.25rem;
  align-self: center;
  background: var(--rentino-grey-600);
  content: '';
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
button a {
  color: inherit;
}
h1 {
  font-size: 2.5em;
}
h1:after {
  width: 2.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  h1 {
    font-size: 2em;
  }
  h1:after {
    width: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 1.5em;
  }
  h1:after {
    width: 1.5rem;
  }
}
h2 {
  font-size: 2em;
}
h2:after {
  width: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  h2 {
    font-size: 1.5em;
  }
  h2:after {
    width: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1.25em;
  }
  h2:after {
    width: 1.25rem;
  }
}
h3 {
  font-size: 1.5em;
}
h3:after {
  width: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  h3 {
    font-size: 1.25em;
  }
  h3:after {
    width: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 1em;
  }
  h3:after {
    width: 1rem;
  }
}
h4 {
  font-size: 1.25em;
}
h4:after {
  width: 1.25rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  h4 {
    font-size: 1em;
  }
  h4:after {
    width: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 0.9em;
  }
  h4:after {
    width: 0.9rem;
  }
}
h5 {
  font-size: 1em;
}
h5:after {
  width: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  h5 {
    font-size: 0.9em;
  }
  h5:after {
    width: 0.9rem;
  }
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 0.8em;
  }
  h5:after {
    width: 0.8rem;
  }
}
h6 {
  font-size: 0.75em;
}
h6:after {
  width: 0.75rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  h6 {
    font-size: 0.75em;
  }
  h6:after {
    width: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  h6 {
    font-size: 0.7em;
  }
  h6:after {
    width: 0.7rem;
  }
}
main,
main.main-content {
  overflow: hidden;
}
main article.rentino-article,
main.main-content article.rentino-article,
main article.main,
main.main-content article.main,
main article.main-content,
main.main-content article.main-content,
main section.rentino-breadcrumbs > div.breadcrumbs-container,
main.main-content section.rentino-breadcrumbs > div.breadcrumbs-container,
main .rentino-max-width,
main.main-content .rentino-max-width {
  margin: 0 auto;
}
@media only screen and (max-width: 479px) {
  main article.rentino-article,
  main.main-content article.rentino-article,
  main article.main,
  main.main-content article.main,
  main article.main-content,
  main.main-content article.main-content,
  main section.rentino-breadcrumbs > div.breadcrumbs-container,
  main.main-content section.rentino-breadcrumbs > div.breadcrumbs-container,
  main .rentino-max-width,
  main.main-content .rentino-max-width {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  main article.rentino-article,
  main.main-content article.rentino-article,
  main article.main,
  main.main-content article.main,
  main article.main-content,
  main.main-content article.main-content,
  main section.rentino-breadcrumbs > div.breadcrumbs-container,
  main.main-content section.rentino-breadcrumbs > div.breadcrumbs-container,
  main .rentino-max-width,
  main.main-content .rentino-max-width {
    padding: 0 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  main article.rentino-article,
  main.main-content article.rentino-article,
  main article.main,
  main.main-content article.main,
  main article.main-content,
  main.main-content article.main-content,
  main section.rentino-breadcrumbs > div.breadcrumbs-container,
  main.main-content section.rentino-breadcrumbs > div.breadcrumbs-container,
  main .rentino-max-width,
  main.main-content .rentino-max-width {
    max-width: 620px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  main article.rentino-article,
  main.main-content article.rentino-article,
  main article.main,
  main.main-content article.main,
  main article.main-content,
  main.main-content article.main-content,
  main section.rentino-breadcrumbs > div.breadcrumbs-container,
  main.main-content section.rentino-breadcrumbs > div.breadcrumbs-container,
  main .rentino-max-width,
  main.main-content .rentino-max-width {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) {
  main article.rentino-article,
  main.main-content article.rentino-article,
  main article.main,
  main.main-content article.main,
  main article.main-content,
  main.main-content article.main-content,
  main section.rentino-breadcrumbs > div.breadcrumbs-container,
  main.main-content section.rentino-breadcrumbs > div.breadcrumbs-container,
  main .rentino-max-width,
  main.main-content .rentino-max-width {
    max-width: 1140px;
  }
}
main article.rentino-article,
main.main-content article.rentino-article,
main article.main,
main.main-content article.main,
main article.main-content,
main.main-content article.main-content {
  margin: 2.5rem auto 6rem;
}
@media only screen and (min-width: 992px) {
  main article.rentino-article,
  main.main-content article.rentino-article,
  main article.main,
  main.main-content article.main,
  main article.main-content,
  main.main-content article.main-content {
    margin-bottom: 12rem;
  }
}
main article.rentino-article > section,
main.main-content article.rentino-article > section,
main article.main > section,
main.main-content article.main > section,
main article.main-content > section,
main.main-content article.main-content > section {
  margin-top: 2rem;
}
main article.rentino-article .full-width,
main.main-content article.rentino-article .full-width,
main article.main .full-width,
main.main-content article.main .full-width,
main article.main-content .full-width,
main.main-content article.main-content .full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
a {
  cursor: pointer;
  color: var(--rentino-blue-300);
}
a.default-color {
  color: initial;
}
a.underline {
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
}
p {
  font-size: 0.9em;
  margin: 0.5rem 0;
  word-break: break-word;
}
@media only screen and (min-width: 768px) {
  p {
    font-size: 1em;
  }
}
p a,
label a {
  text-decoration: underline;
  color: var(--rentino-blue-300);
}
ul,
ol,
dl {
  margin: 0.25rem 0 0.5rem;
}
ul:not(dl),
ol:not(dl),
dl:not(dl) {
  padding-left: 2rem;
}
button.button-primary,
button.rentino-button {
  color: white;
  background: var(--rentino-blue-300);
  border: none;
  padding: 0.7rem 1rem 0.75rem;
}
button.button-primary.rounded,
button.rentino-button.rounded {
  border-radius: 0.6rem;
}
button.button-primary.round,
button.rentino-button.round {
  border-radius: 50%;
}
button.button-primary.font-large,
button.rentino-button.font-large {
  font-size: 1.25em;
}
button.button-primary.font-larger,
button.rentino-button.font-larger {
  font-size: 1.5em;
}
button.button-primary.no-background,
button.rentino-button.no-background,
button.button-primary.background-grey,
button.rentino-button.background-grey {
  background: none;
  color: var(--rentino-grey-500);
}
button.button-primary:hover,
button.rentino-button:hover {
  cursor: pointer;
}
button.button-primary:hover:not(.no-background),
button.rentino-button:hover:not(.no-background) {
  background: var(--rentino-blue-200);
}
input,
select,
textarea {
  padding: 0.75rem;
  background-color: var(--rentino-grey-700);
  border: none;
  border-radius: 0.6rem;
  outline: none;
  font-family: inherit;
}
input:not(textarea):not([type='checkbox']):not(.height-auto),
select:not(textarea):not([type='checkbox']):not(.height-auto),
textarea:not(textarea):not([type='checkbox']):not(.height-auto) {
  height: 2.5rem;
}
input:is(select),
select:is(select),
textarea:is(select) {
  padding: 0 calc(0.75rem - 4px);
}
input:is(textarea),
select:is(textarea),
textarea:is(textarea) {
  padding: 0.5rem 0.75rem;
  resize: none;
}
input:is(textarea).resize-all,
select:is(textarea).resize-all,
textarea:is(textarea).resize-all {
  resize: both;
}
input:is(textarea).resize-x,
select:is(textarea).resize-x,
textarea:is(textarea).resize-x {
  resize: horizontal;
}
input:is(textarea).resize-y,
select:is(textarea).resize-y,
textarea:is(textarea).resize-y {
  resize: vertical;
}
input.border,
select.border,
textarea.border {
  background-color: white;
  border: 1px solid var(--rentino-grey-500);
}
form.rentino-form,
.rentino-form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
form.rentino-form.max-width,
.rentino-form.max-width,
form.rentino-form.max-width-650,
.rentino-form.max-width-650 {
  max-width: 650px;
}
form.rentino-form.max-width section,
.rentino-form.max-width section,
form.rentino-form.max-width-650 section,
.rentino-form.max-width-650 section {
  max-width: 550px;
}
form.rentino-form.max-width section.form-content,
.rentino-form.max-width section.form-content,
form.rentino-form.max-width-650 section.form-content,
.rentino-form.max-width-650 section.form-content,
form.rentino-form.max-width section.form-fields,
.rentino-form.max-width section.form-fields,
form.rentino-form.max-width-650 section.form-fields,
.rentino-form.max-width-650 section.form-fields {
  max-width: 650px;
}
form.rentino-form .form-content,
.rentino-form .form-content,
form.rentino-form .form-fields,
.rentino-form .form-fields {
  display: flex;
  flex-direction: column;
  margin: 3rem auto 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  form.rentino-form .form-content > label,
  .rentino-form .form-content > label,
  form.rentino-form .form-fields > label,
  .rentino-form .form-fields > label {
    margin-top: 0.5rem;
  }
}
@media only screen and (min-width: 768px) {
  form.rentino-form .form-content,
  .rentino-form .form-content,
  form.rentino-form .form-fields,
  .rentino-form .form-fields {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.5rem 2rem;
  }
}
form.rentino-form .form-content label.required:after,
.rentino-form .form-content label.required:after,
form.rentino-form .form-fields label.required:after,
.rentino-form .form-fields label.required:after {
  margin-left: 0.25rem;
  font-weight: 900;
  content: '*';
}
form.rentino-form .form-content .form-group-margin,
.rentino-form .form-content .form-group-margin,
form.rentino-form .form-fields .form-group-margin,
.rentino-form .form-fields .form-group-margin {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  form.rentino-form .form-content .form-group-margin:not(label),
  .rentino-form .form-content .form-group-margin:not(label),
  form.rentino-form .form-fields .form-group-margin:not(label),
  .rentino-form .form-fields .form-group-margin:not(label) {
    margin-top: 0;
  }
}
form.rentino-form .form-content section,
.rentino-form .form-content section,
form.rentino-form .form-fields section,
.rentino-form .form-fields section,
form.rentino-form .form-content p,
.rentino-form .form-content p,
form.rentino-form .form-fields p,
.rentino-form .form-fields p,
form.rentino-form .form-content button,
.rentino-form .form-content button,
form.rentino-form .form-fields button,
.rentino-form .form-fields button {
  grid-column: 1 / span 2;
}
form.rentino-form section,
.rentino-form section {
  place-self: center;
}
form.rentino-form section.grid,
.rentino-form section.grid {
  display: grid;
  grid-template-columns: 3rem 1fr;
}
form.rentino-form button[type="submit"],
.rentino-form button[type="submit"] {
  min-width: 12rem;
  max-width: 100%;
  padding: 0.55rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: lighter;
  place-self: center;
}
form.rentino-form p,
.rentino-form p {
  text-align: center;
}
form.rentino-form section.honeypot,
.rentino-form section.honeypot {
  height: 0;
  width: 0;
  overflow: hidden;
}
form.rentino-form section.errors,
.rentino-form section.errors,
form.rentino-form section.form-errors,
.rentino-form section.form-errors {
  display: none;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
form.rentino-form section.errors p,
.rentino-form section.errors p,
form.rentino-form section.form-errors p,
.rentino-form section.form-errors p {
  margin: 0.5rem 0;
}
form.rentino-form section.errors p.error-advice,
.rentino-form section.errors p.error-advice,
form.rentino-form section.form-errors p.error-advice,
.rentino-form section.form-errors p.error-advice {
  display: block;
  margin-top: 0.5rem;
}
form.rentino-form.error section.errors,
.rentino-form.error section.errors,
form.rentino-form.form-error section.errors,
.rentino-form.form-error section.errors,
form.rentino-form.error section.form-errors,
.rentino-form.error section.form-errors,
form.rentino-form.form-error section.form-errors,
.rentino-form.form-error section.form-errors {
  display: block;
}
form.rentino-form.error section.errors hr,
.rentino-form.error section.errors hr,
form.rentino-form.form-error section.errors hr,
.rentino-form.form-error section.errors hr,
form.rentino-form.error section.form-errors hr,
.rentino-form.error section.form-errors hr,
form.rentino-form.form-error section.form-errors hr,
.rentino-form.form-error section.form-errors hr {
  width: 20%;
  margin: 1.5rem auto 0;
  border: none;
  border-top: 1px solid var(--rentino-grey-600);
}
.clickable,
.cursor-pointer {
  cursor: pointer;
}
.color-primary {
  color: var(--rentino-blue-300);
}
.color-white {
  color: white;
}
.color-red,
.error-color {
  color: var(--error-color-400);
}
.background-red,
.background-color-red,
.error-background,
.error-background-color {
  background-color: var(--error-color-400);
}
.border-red,
.border-color-red,
.error-border,
.error-border-color {
  border-color: var(--error-color-400);
}
.white,
.background-white,
.background-color-white {
  background-color: white !important;
}
.text-center {
  text-align: center;
}
.bold,
.font-bold,
.fw-bold {
  font-weight: bold;
}
.light,
.font-light,
.fw-light {
  font-weight: lighter;
}
.background-color-primary {
  background: var(--rentino-blue-300);
}
.height-auto {
  height: auto;
}
.no-margin-top,
.no-top-margin,
.nmt,
.mt0 {
  margin-top: 0;
}
.no-margin-bottom,
.no-bottom-margin,
.nmb,
.mb0 {
  margin-bottom: 0;
}
.dpn,
.display-none,
.d-none,
.dp-none {
  display: none;
}
/**
 * Old header style but still in use
 * (i.e. for index page)
 */
#header-section,
.main-header {
  position: relative;
  z-index: 10;
  background: #fff;
  width: 100%;
  max-width: unset;
  box-shadow: 0px 0px 8px 2px var(--rentino-grey-300);
}
#header-section .top_ad,
.main-header .top_ad {
  display: none;
  background: var(--rentino-grey-300);
}
#header-section .top_ad .top_ad_container,
.main-header .top_ad .top_ad_container {
  max-height: 120px;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 800px) {
  #header-section .top_ad,
  .main-header .top_ad {
    display: block;
    padding: 0.5rem;
  }
}
#header-section .container,
.main-header .container {
  width: 100%;
  max-width: 100%;
  padding-left: 15%;
}
@media only screen and (max-width: 991px) {
  #header-section .container,
  .main-header .container {
    padding-left: 5%;
  }
}
#header-section .container .row,
.main-header .container .row {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #header-section .container,
  .main-header .container {
    padding: 0 0;
  }
  #header-section .container .row,
  .main-header .container .row {
    margin: 0;
    padding: 0 15px;
  }
}
#header-section .image-logo,
.main-header .image-logo {
  width: auto;
  height: 3rem;
  margin: 0;
}
#header-section .navbar,
.main-header .navbar {
  transition: 0.5s;
  padding: 1rem 0;
  font-weight: 600;
}
#header-section .navbar.expanded .navbar-header,
.main-header .navbar.expanded .navbar-header {
  text-align: center;
  padding-bottom: 1rem;
}
#header-section .navbar.expanded .flag,
.main-header .navbar.expanded .flag {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-header,
  .main-header .navbar .navbar-header {
    width: 100%;
  }
}
#header-section .navbar .navbar-header .navbar-brand,
.main-header .navbar .navbar-header .navbar-brand {
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-header .navbar-brand,
  .main-header .navbar .navbar-header .navbar-brand {
    margin: 0;
  }
}
#header-section .navbar .navbar-collapse .nav-item,
.main-header .navbar .navbar-collapse .nav-item {
  line-height: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-collapse .nav-item,
  .main-header .navbar .navbar-collapse .nav-item {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  #header-section .navbar .navbar-collapse .nav-item,
  .main-header .navbar .navbar-collapse .nav-item {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  #header-section .navbar .navbar-collapse .nav-item:not(:first-child):not(:last-child),
  .main-header .navbar .navbar-collapse .nav-item:not(:first-child):not(:last-child) {
    border-left: 1px solid lightgrey;
  }
}
#header-section .navbar .navbar-collapse .nav-item .text-white,
.main-header .navbar .navbar-collapse .nav-item .text-white {
  color: white !important;
}
#header-section .navbar .navbar-collapse .nav-item.flag,
.main-header .navbar .navbar-collapse .nav-item.flag {
  display: flex;
  margin: unset;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-collapse .nav-item.flag,
  .main-header .navbar .navbar-collapse .nav-item.flag {
    display: inline-flex;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#header-section .navbar .navbar-collapse .nav-item.flag .flag,
.main-header .navbar .navbar-collapse .nav-item.flag .flag {
  width: auto;
  height: 28px;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-collapse .nav-item.flag .flag,
  .main-header .navbar .navbar-collapse .nav-item.flag .flag {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1100px) and (min-width: 768px) {
  #header-section .navbar .navbar-collapse .nav-item.flag,
  .main-header .navbar .navbar-collapse .nav-item.flag {
    display: none;
  }
}
#header-section .navbar .navbar-collapse .nav-item a,
.main-header .navbar .navbar-collapse .nav-item a {
  line-height: 2rem;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-collapse.collapse.show,
  .main-header .navbar .navbar-collapse.collapse.show {
    margin-bottom: 2rem;
  }
}
#header-section .navbar .navbar-collapse .social,
.main-header .navbar .navbar-collapse .social {
  display: none;
  position: absolute;
  top: 7rem;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar .navbar-collapse .social,
  .main-header .navbar .navbar-collapse .social {
    display: block;
  }
}
#header-section .navbar .navbar-collapse .social .fa-stack,
.main-header .navbar .navbar-collapse .social .fa-stack {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--rentino-blue-300);
  border: 2px solid var(--rentino-blue-300);
  border-radius: 50%;
  display: block;
}
#header-section .navbar .navbar-collapse .social .fab,
.main-header .navbar .navbar-collapse .social .fab {
  height: 3rem;
  line-height: 2.8rem;
  font-size: 1.5rem;
}
#header-section .navbar .navbar-toggler,
.main-header .navbar .navbar-toggler {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  border: none;
}
#header-section .navbar .navbar-toggler .fa-times-circle,
.main-header .navbar .navbar-toggler .fa-times-circle {
  display: inline-block;
}
#header-section .navbar .navbar-toggler .fa-bars,
.main-header .navbar .navbar-toggler .fa-bars {
  display: none;
}
#header-section .navbar .navbar-toggler.collapsed .fa-times-circle,
.main-header .navbar .navbar-toggler.collapsed .fa-times-circle {
  display: none;
}
#header-section .navbar .navbar-toggler.collapsed .fa-bars,
.main-header .navbar .navbar-toggler.collapsed .fa-bars {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar #home-link,
  .main-header .navbar #home-link,
  #header-section .navbar #ueber-rentinorio,
  .main-header .navbar #ueber-rentinorio {
    position: relative;
    border-right: none;
    padding: 0.5rem 0;
  }
}
#header-section .navbar #home-link::after,
.main-header .navbar #home-link::after,
#header-section .navbar #ueber-rentinorio::after,
.main-header .navbar #ueber-rentinorio::after {
  content: "";
  display: none;
  height: 2px;
  width: 6%;
  background: lightgrey;
  position: absolute;
  bottom: 0;
  left: 47%;
}
@media only screen and (max-width: 767px) {
  #header-section .navbar #home-link::after,
  .main-header .navbar #home-link::after,
  #header-section .navbar #ueber-rentinorio::after,
  .main-header .navbar #ueber-rentinorio::after {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  #header-section .navbar #ueber-rentinorio,
  .main-header .navbar #ueber-rentinorio {
    margin-bottom: 1rem;
  }
}
/**
 * new header stylesheet, that look mostly the same
 * as the "old" header stylesheet (header_old.less)
 * but this one here better organized and 100% 
 * own stylesheet (no framework shit).
 * Supposed to replace the old stylesheet one day
 */
header.rentino-header {
  position: relative;
  z-index: 10;
  background: #fff;
  width: 100%;
  max-width: unset;
  box-shadow: 0px 0px 8px 2px var(--rentino-grey-300);
}
header.rentino-header .header-ad {
  display: none;
  background: var(--rentino-grey-300);
}
header.rentino-header .header-ad .header-ad-content {
  max-height: 120px;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 800px) {
  header.rentino-header .header-ad {
    display: block;
    padding: 0.5rem;
  }
}
header.rentino-header .header-bar {
  max-width: 1140px;
  margin: 0 auto;
  font-size: 1.2rem;
  overflow: hidden;
  transition: height 200ms;
}
@media only screen and (max-width: 767px) {
  header.rentino-header .header-bar {
    display: grid;
    grid-template-rows: 5.5rem 1fr;
  }
  header.rentino-header .header-bar.expanded {
    padding-bottom: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  header.rentino-header .header-bar {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
}
@media only screen and (max-width: 1199px) {
  header.rentino-header .header-bar {
    padding: 0 1rem;
  }
}
header.rentino-header .header-bar:not(.expanded) {
  height: 5.5rem;
}
header.rentino-header .header-bar:not(.expanded) .close {
  display: none;
}
@media only screen and (max-width: 767px) {
}
header.rentino-header .header-bar.expanded {
  height: 22rem;
}
header.rentino-header .header-bar.expanded .open {
  display: none;
}
header.rentino-header .header-bar a.logo {
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  header.rentino-header .header-bar a.logo {
    text-align: center;
  }
}
header.rentino-header .header-bar a.logo img {
  height: 3rem;
}
header.rentino-header .header-bar button.toggle-menu {
  position: absolute;
  top: 0;
  right: 1rem;
  height: 5.5rem;
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  header.rentino-header .header-bar button.toggle-menu {
    display: none;
  }
}
header.rentino-header .header-bar button.toggle-menu i {
  width: 2.5rem;
}
@media only screen and (max-width: 767px) {
  header.rentino-header .header-bar div.header-bar-content {
    display: grid;
    place-content: center;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  header.rentino-header .header-bar div.header-bar-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (min-width: 992px) {
  header.rentino-header .header-bar div.header-bar-content {
    gap: 2rem;
  }
}
header.rentino-header .header-bar div.header-bar-content h5 {
  margin: 0.25rem 0;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  header.rentino-header .header-bar div.header-bar-content h5 {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 768px) {
  header.rentino-header .header-bar div.header-bar-content h5 {
    font-size: 0.8em;
  }
}
header.rentino-header .header-bar div.header-bar-content h5:not(:first-of-type) {
  color: var(--rentino-grey-600);
}
header.rentino-header .header-bar div.header-bar-content button.vendor-login {
  margin: 1.25rem 0;
  font-size: 0.9em;
}
@media only screen and (max-width: 767px) {
  header.rentino-header .header-bar div.header-bar-content button.vendor-login {
    font-size: 1.25em;
  }
}
header.rentino-header .header-bar div.header-bar-content div.flags {
  display: flex;
  gap: 1rem;
}
header.rentino-header .header-bar div.header-bar-content div.flags a img {
  display: block;
  height: 2rem;
}
/* Breadcrumbs Links und Designelemente */
section.rentino-breadcrumbs {
  background: var(--rentino-grey-300);
  width: 100%;
  padding: 0.125rem 0;
}
section.rentino-breadcrumbs div.breadcrumbs-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  max-width: 1140px;
}
section.rentino-breadcrumbs div.breadcrumbs-container div {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}
section.rentino-breadcrumbs div.breadcrumbs-container div a,
section.rentino-breadcrumbs div.breadcrumbs-container div i {
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}
section.rentino-breadcrumbs div.breadcrumbs-container div a {
  line-height: 1.3rem;
}
section.rentino-breadcrumbs div.breadcrumbs-container div a:hover {
  cursor: pointer;
  text-decoration: underline;
  color: var(--rentino-blue-300);
}
section.rentino-breadcrumbs div.breadcrumbs-container div i {
  margin-top: 0.3rem;
}
.breadcrumbList {
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  display: inline;
}
@media only screen and (max-width: 767px) {
  .breadcrumbList {
    display: none;
  }
}
.breadcrumbList > li {
  display: inline;
}
.breadcrumbList a.breadcrumbs,
.breadcrumbList a.breadcrumbs:link,
.breadcrumbList a.breadcrumbs:visited,
.breadcrumbList a.breadcrumbs:active,
.breadcrumbList a.breadcrumbs:hover,
.breadcrumbList a.breadcrumbs:focus {
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
}
.breadcrumbList a.breadcrumbs,
.breadcrumbList .breadcrumbsSpacer {
  color: #fff;
  font-size: 1rem;
}
.breadcrumbList a.breadcrumbs:hover,
.breadcrumbList a.breadcrumbs:focus {
  text-decoration: underline;
  color: var(--rentino-blue-300);
}
.breadcrumbList span.breadcrumbs {
  text-decoration: none;
  font-weight: bolder;
  color: #006;
  font-size: 1rem;
}
.breadcrumbList span.breadcrumbsSpacer {
  text-decoration: none;
  font-weight: bolder;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  padding: 0px 2px;
}
footer.rentino-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 3rem 0;
  background-color: var(--rentino-grey-200);
  position: absolute;
  width: 100%;
  bottom: 0;
}
footer.rentino-footer > section {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  footer.rentino-footer > section {
    flex-direction: column;
  }
}
footer.rentino-footer > section div {
  display: flex;
}
@media only screen and (max-width: 767px) {
  footer.rentino-footer > section div {
    flex-direction: column;
  }
}
footer.rentino-footer > section div a.logo img {
  height: 4.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer.rentino-footer > section div a.logo img {
    height: 3rem;
  }
}
footer.rentino-footer > section div.sites {
  width: 100%;
  justify-content: space-around;
}
@media only screen and (max-width: 767px) {
  footer.rentino-footer > section div.sites {
    margin-top: 1rem;
  }
}
footer.rentino-footer > section div.sites h5 {
  margin: 1.25rem 0;
  font-weight: normal;
}
footer.rentino-footer > section div.social {
  display: flex;
  flex-direction: row;
  place-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  footer.rentino-footer > section div.social {
    margin: 1rem 0 0;
  }
}
footer.rentino-footer > section div.social a {
  display: inline-block;
  border: 2px solid white;
  border-radius: 50%;
}
footer.rentino-footer > section div.social a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.6rem;
}
footer.rentino-footer hr {
  position: relative;
  width: calc(100% + 3rem);
  max-width: calc(1140px + 3rem);
  margin: 2rem 0 0;
  background-color: var(--rentino-grey-500);
  height: 1px;
  border: none;
}
footer.rentino-footer span.copyleft {
  margin: 1.5rem auto;
  font-size: 0.8rem;
  opacity: 0.8;
  max-width: 1140px;
}
#footer-section,
.footer-section {
  position: relative;
  margin-top: 5rem;
  width: 100%;
  padding-top: 4rem;
  background-color: #313137;
  margin-top: 15rem;
}
#footer-section img,
.footer-section img {
  width: 13rem;
}
#footer-section .link a,
.footer-section .link a {
  color: #fff;
  line-height: 60px;
}
#footer-section .social [class*="fa"],
.footer-section .social [class*="fa"] {
  background-color: transparent;
  border-radius: 40px;
  border: 2px solid #fff;
  color: #fff;
  display: inline-block;
  height: 40px;
  line-height: 35px;
  margin: 15px 3px;
  width: 40px;
  font-size: 15px;
  text-align: center;
}
#footer-section .copyright p,
.footer-section .copyright p {
  font-size: 1rem;
}
#footer-section .container,
.footer-section .container {
  padding: 0;
}
#footer-section .container .row,
.footer-section .container .row {
  margin: 0;
}
#footer-section .container .links,
.footer-section .container .links {
  padding-bottom: 2rem;
  border-bottom: 1px solid #999;
  margin-bottom: 1rem;
}
#footer-section .container .copyright p,
.footer-section .container .copyright p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
aside.cookie-popup {
  position: fixed;
  display: none;
  place-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}
aside.cookie-popup.not-confirmed {
  display: grid;
}
aside.cookie-popup section {
  max-width: 40rem;
  padding: 3rem;
  background: white;
  box-shadow: 0 0 1rem 0 var(--rentino-grey-200);
}
aside.cookie-popup section h1 {
  margin-top: 0;
}
aside.cookie-popup section p {
  margin: 0.125rem 0;
}
aside.cookie-popup section button {
  margin-top: 1rem;
}
section.searchbar {
  padding: 2rem 0;
  overflow: hidden;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  section.searchbar {
    padding: 0 1rem 2rem;
    background-color: var(--rentino-blue-300);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.searchbar {
    max-width: 620px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.searchbar {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) {
  section.searchbar {
    max-width: 1140px;
    padding: 2rem 0;
  }
}
section.searchbar h2 {
  margin: 2rem 0;
}
@media only screen and (min-width: 768px) {
  section.searchbar h2 {
    display: none;
  }
}
section.searchbar form {
  display: grid;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  section.searchbar form {
    grid-template-areas: 'what-input what-input submit' 'where where-input submit';
    grid-template-columns: minmax(3rem, 6rem) minmax(4rem, 1fr) minmax(3rem, 6rem);
    grid-template-rows: 2.75rem 2.75rem;
  }
}
@media only screen and (min-width: 768px) {
  section.searchbar form {
    grid-template-columns: 3fr 4rem 2fr auto;
    height: 2.75rem;
  }
}
section.searchbar form input {
  padding: 0;
  border: none;
  outline: none;
  text-indent: 1rem;
}
@media only screen and (max-width: 767px) {
  section.searchbar form input {
    background-color: white;
  }
}
@media only screen and (max-width: 767px) {
  section.searchbar form input.search-what {
    grid-area: what-input;
  }
}
@media only screen and (max-width: 767px) {
  section.searchbar form input.search-where {
    grid-area: where-input;
  }
}
section.searchbar form label {
  padding-left: 1rem;
  font-size: 1.25rem;
  align-self: center;
}
@media only screen and (max-width: 767px) {
  section.searchbar form label {
    color: white;
    grid-area: where;
  }
}
section.searchbar form button {
  height: 100%;
  padding: 0;
  margin: auto;
  color: var(--rentino-blue-300);
  background-color: white;
  font-size: 1.5rem;
  border: none;
  border-radius: 0.6rem;
  outline: none;
}
@media only screen and (max-width: 767px) {
  section.searchbar form button {
    grid-area: submit;
    width: 4rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  section.searchbar form input.search-what {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  section.searchbar form input.search-where {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  section.searchbar form label {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  section.searchbar form button {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
  }
}
@media only screen and (min-width: 768px) {
  section.searchbar form button {
    background-color: var(--rentino-blue-300);
    color: #fff;
  }
}
@media only screen and (min-width: 768px) {
  section.searchbar form button i {
    display: none;
  }
}
section.searchbar form button span {
  display: none;
}
@media only screen and (min-width: 768px) {
  section.searchbar form button span {
    display: inline;
    padding: 0 1rem;
  }
}
article.rentino-article.about-us section.what-is-rentino {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}
@media only screen and (max-width: 767px) {
  article.rentino-article.about-us section.what-is-rentino {
    grid-template-rows: auto auto;
  }
}
@media only screen and (min-width: 768px) {
  article.rentino-article.about-us section.what-is-rentino {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    justify-items: center;
    margin: 4rem 0;
  }
}
article.rentino-article.about-us section.what-is-rentino img {
  display: block;
  max-height: 7rem;
  max-width: 100%;
  margin: auto;
}
article.rentino-article.about-us section.advantages {
  padding: 5rem 0;
  background-color: var(--rentino-grey-900);
}
article.rentino-article.about-us section.advantages .content {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-width: 768px) {
  article.rentino-article.about-us section.advantages .content {
    gap: 4rem;
  }
}
article.rentino-article.about-us section.advantages .content h2 {
  margin: 0 0 1rem;
}
article.rentino-article.about-us section.advantages .content p {
  margin: 1rem 0;
}
#agb .jumbotron iframe {
  height: -webkit-fill-available;
}
#datenschutz .jumbotron iframe {
  height: -webkit-fill-available;
}
.category-container {
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.category-container .category-header {
  margin: 3rem 0.5rem 3rem 0.5rem;
}
.category-container .category-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.category-container .category-cards-container .center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6rem;
}
.category-container .category-cards-container h2 {
  font-size: 1.5rem;
  padding: 0.5rem;
  color: var(--rentino-grey-300);
  text-align: center;
  margin: 0;
}
.category-container .category-cards-container a {
  width: 100%;
  text-decoration: none;
}
.category-container .category-cards-container .category-card-body {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  margin: 5px;
}
.category-container .category-cards-container .category-card-body:hover {
  background-color: var(--rentino-blue-300);
}
.category-container .category-cards-container .category-card-body:hover h2 {
  color: white;
}
.category-container .category-cards-container .category-card-body:hover img {
  transform: scale(1.1);
}
.category-container .category-cards-container img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.category-container .category-cards-container .image-container {
  overflow: hidden;
  height: 200px;
}
@media (min-width: 500px) {
  .category-container .category-cards-container a {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 768px) {
  .category-container .category-cards-container a {
    width: calc(33% - 0.6rem);
  }
}
@media (min-width: 900px) {
  .category-container .category-cards-container a {
    width: calc(25% - 0.4rem);
  }
}
article.rentino-article.contact form section.contact-errors {
  display: none;
  margin: 1rem 0;
  grid-column: 1 / span 2;
  font-size: 0.9rem;
}
article.rentino-article.contact form section.contact-errors hr {
  width: 20%;
  margin: 0 auto 1.5rem;
  border: none;
  border-top: 1px solid var(--rentino-grey-600);
}
article.rentino-article.contact form section.contact-errors p {
  margin: 0;
  text-align: left;
}
article.rentino-article.contact form section.contact-errors p.error-advice {
  display: block;
  margin-top: 0.5rem;
}
article.rentino-article.contact form button {
  grid-column: 1 / span 2;
  width: 12rem;
}
article.rentino-article.contact form.contact-error section.contact-errors {
  display: block;
}
#detail .main-content [data-toggle="collapse"] .fa:before,
#detail .main-content [data-bs-toggle="collapse"] .fa:before {
  content: "\f106";
}
#detail .main-content [data-toggle="collapse"].collapsed .fa:before,
#detail .main-content [data-bs-toggle="collapse"].collapsed .fa:before {
  content: "\f107";
}
#detail .slick-slider {
  max-height: 15rem;
}
#detail .slick-slider img {
  -o-object-fit: cover;
  object-fit: cover;
}
#detail .row {
  margin: 0;
}
#detail .slider-for {
  height: 100%;
  max-height: 25rem;
  min-height: 25rem;
}
#detail .slider-for figure {
  max-height: 25rem;
  min-height: 25rem;
}
#detail .slider-for figure img {
  max-height: 24.9rem;
  min-height: 24.9rem;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}
#detail .article-number {
  color: var(--rentino-grey-600);
}
#detail .slider-nav {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #detail .slider-nav {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  #detail .slider-nav .slick-list {
    padding: 0px !important;
  }
}
#detail .slider-nav .slick-list .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
  max-height: 8rem;
}
#detail .slider-nav .slick-list .slick-slide img {
  max-height: 8rem;
  min-height: 8rem;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #detail .slider-nav .slick-list .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 768px) {
  #detail .slider-nav .slick-list .slick-slide figure {
    margin-bottom: 0;
  }
}
#detail #artikel-details > .container {
  padding: 15px;
}
@media only screen and (max-width: 991px) {
  #detail #artikel-details > .container {
    padding: 15px;
  }
}
@media only screen and (min-width: 768px) {
  #detail #artikel-details > .container {
    position: relative;
  }
}
#detail #artikel-details > .container .row {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #detail #artikel-details > .container .preis-box {
    position: absolute;
    bottom: 2rem;
    right: 30px;
    max-width: 35%;
    min-height: 200px;
  }
}
@media only screen and (max-width: 991px) {
  #detail #artikel-details > .container .preis-box {
    right: -15px;
  }
}
#detail #mieten .anfrage #info-accordion .input-group,
#detail #anfrage-modal form#anfrage .form-row .form-group .input-group {
  height: 2.5rem;
}
#detail #mieten .anfrage #info-accordion .input-group input[type='date']::-webkit-calendar-picker-indicator,
#detail #anfrage-modal form#anfrage .form-row .form-group .input-group input[type='date']::-webkit-calendar-picker-indicator,
#detail #mieten .anfrage #info-accordion .input-group input[type='time']::-webkit-calendar-picker-indicator,
#detail #anfrage-modal form#anfrage .form-row .form-group .input-group input[type='time']::-webkit-calendar-picker-indicator {
  width: 100%;
  position: absolute;
  margin: 0;
  left: 0;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
}
#detail #mieten .anfrage #info-accordion .input-group i,
#detail #anfrage-modal form#anfrage .form-row .form-group .input-group i {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  color: var(--rentino-grey-300);
  background-color: var(--rentino-grey-800);
  border: 1px solid #ced4da;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
@media only screen and (max-width: 991px) {
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-general {
    order: 1;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-time {
    order: 2;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-lessor {
    order: 3;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-attributes {
    order: 4;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-conditions {
    order: 5;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-description {
    order: 6;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-general,
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-time {
    margin-bottom: 1.5rem;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-collapse:first-child .card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-collapse:not(:first-child):not(:last-child) .card {
    border-radius: 0;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-collapse:last-child .card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  #detail #mieten .anfrage #info-accordion .accordion-container .card .card-header h3 span {
    position: absolute;
    display: flex !important;
    right: 0;
    top: 0;
    height: 100%;
    align-items: center;
  }
}
@media only screen and (min-width: 992px) {
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-attributes,
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-conditions,
  #detail #mieten .anfrage #info-accordion .accordion-container.accordion-description {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  #detail #mieten .anfrage #info-accordion .row:first-child .card {
    height: 100%;
  }
}
#detail #mieten .anfrage #info-accordion .row:first-child .card .card-header h3 {
  margin: 0.5rem 0.75rem;
}
#detail #mieten .anfrage #info-accordion .row:first-child .card .card-body {
  background-color: rgba(0, 0, 0, 0.03);
}
#detail #mieten .anfrage #info-accordion .input-group-text {
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#detail #mieten .anfrage #info-accordion p.lessor-articles {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
#detail #mieten .anfrage #collapseUebersicht > .row > .form-group:not(:first-of-type) {
  padding-left: 0;
  padding-right: 0;
}
#detail #mieten .anfrage .btn-primary.nonbinding_request {
  color: white !important;
}
#detail #mieten .anfrage #info-tabs {
  min-height: 15rem;
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item .nav-link {
  border-top-right-radius: 3em;
  padding-right: 2rem;
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item .nav-link.active {
  background-color: var(--rentino-blue-400);
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item:not(:first-child) .nav-link {
  position: relative;
  border-left: none;
  margin-left: -3rem;
  padding-left: 5rem;
  background-color: transparent;
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item:not(:first-child) .nav-link:after {
  content: '';
  display: block;
  background-color: transparent;
  height: 100%;
  width: 3rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  border-top-right-radius: 3rem;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item:not(:first-child) .nav-link:hover:after {
  border-color: #e9ecef #e9ecef;
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item:not(:first-child) .nav-link.active {
  border-left: none;
  z-index: -1;
  background-color: var(--rentino-blue-400);
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .nav-item:not(:first-child) .nav-link.active:after {
  background-color: white;
  border-color: #e9ecef #e9ecef;
}
#detail #mieten .anfrage #info-tabs .nav.nav-tabs .btn.btn-drucken {
  color: rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.03);
}
@media only screen and (min-width: 768px) {
  #detail #anfrage-modal .modal-dialog {
    max-width: 80%;
  }
}
#detail #anfrage-modal .modal-dialog .modal-content .modal-title {
  margin: 0;
}
#detail #anfrage-modal .modal-dialog .modal-content form#anfrage .row .container .form-row {
  display: flex;
}
#detail #anfrage-modal .modal-dialog .modal-content form#anfrage .row .container .form-row .form-group {
  padding: 0 0.25rem;
}
#detail #anfrage-modal .modal-dialog .modal-content form#anfrage .row .container .form-row .form-group.anfrage-agb-group {
  padding: 1rem 0.25rem;
}
#detail #anfrage-modal .modal-dialog .modal-content form#anfrage .row .container .form-row .form-group .input-group-append .input-group-text {
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#detail #anfrage-modal .modal-dialog .modal-content form#anfrage .row div.zusatz-infos-container {
  padding: 0 calc(var(--bs-gutter-x) + 0.25rem);
}
#detail #anfrage-modal .modal-dialog .modal-content form#anfrage input[type='submit'] {
  color: white !important;
}
#detail .request_error {
  padding: 1rem 2rem;
}
#detail #related .slick-slide {
  height: 20.4rem;
  margin: 0 0.5rem;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
#detail #related .slick-slide:hover {
  border-bottom: none;
  background: var(--rentino-blue-300);
}
#detail #related .slick-slide:hover p {
  color: white;
}
#detail #related .slick-slide a {
  display: grid;
  grid-template-rows: calc(100% - 5rem) 5rem;
  height: 100%;
  color: black;
  text-decoration: none;
}
#detail #related .slick-slide a img {
  height: 100%;
  min-height: 160px;
  margin: auto;
}
#detail #related .slick-slide a p {
  margin: 0;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#detail #related .slick-list {
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}
#detail #related .slick-slider {
  max-height: 24rem;
}
#detail #nonbinding_request {
  background: var(--rentino-blue-300);
  margin: 1rem 0.5rem 0.5rem;
  color: white;
  border-radius: 3px;
  font-size: 1.2rem;
  padding: 0.5rem;
  text-align: center;
}
#detail #nonbinding_request:hover {
  background: var(--rentino-blue-200);
}
@media only screen and (max-width: 767px) {
  #detail #nonbinding_request {
    display: none;
  }
}
#error .jumbotron > * {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  article.rentino-article.imprint {
    max-width: 620px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  article.rentino-article.imprint {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) {
  article.rentino-article.imprint {
    margin-top: 25px;
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1440px) {
  article.rentino-article.imprint {
    padding: 0;
    margin: 50px auto;
  }
}
article.rentino-article.imprint section {
  margin-top: 2rem;
}
article.rentino-article.imprint section.company-info p {
  margin: 0.25rem 0;
}
/* Showcase Startseite */
#showcase {
  height: 600px;
  margin-bottom: 200px;
  position: relative;
}
#showcase .teaser-text {
  position: absolute;
  left: 15%;
  top: 15%;
  text-shadow: 0 0 4px black;
}
@media only screen and (max-width: 991px) {
  #showcase .teaser-text {
    left: 0;
    right: 0;
    padding: 0 2rem;
  }
}
#showcase .teaser-text .title {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  #showcase .teaser-text .title {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    color: var(--rentino-blue-300);
  }
}
@media only screen and (max-width: 991px) {
  #showcase .teaser-text .subtitle {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
  }
}
#showcase .teaser-text .more {
  color: #fff;
  font-size: 1.5rem;
  font-style: italic;
  text-decoration: underline;
}
#showcase .container {
  max-width: 800px;
}
#showcase .container-fluid {
  padding: 0;
}
#showcase .search-box {
  display: block;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
#showcase .search-box .form-group {
  padding: 0 7rem;
  margin-bottom: 0;
}
#showcase .search-box .form-group .search-title {
  display: block !important;
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  margin: 3rem;
}
@media only screen and (max-width: 991px) {
  #showcase .search-box .form-group .search-title {
    color: var(--rentino-blue-300);
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 2.5rem 0 0 0;
  }
}
#showcase .search-box .form-group .search {
  font-size: inherit;
  line-height: 2.5rem;
  min-height: 2.8rem;
  background-color: rgba(112, 112, 112, 0.25);
  border-radius: 0.6rem;
  padding-left: 1rem;
  width: 100%;
  margin-bottom: 2rem;
  border: none;
}
#showcase .search-box .form-group .search:active,
#showcase .search-box .form-group .search:focus {
  outline: none;
  box-shadow: 0 0 1px 1px var(--rentino-blue-300);
}
#showcase .search-box .form-group .col-form-label {
  width: 20%;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding: 0;
  text-align: left;
}
@media only screen and (max-width: 991px) {
  #showcase .search-box .form-group .col-form-label {
    font-size: 1.25rem;
  }
}
#showcase .search-box .form-group #searchlocation {
  width: 80%;
}
#showcase .search-box .form-group .btn {
  width: 40%;
  height: 6rem;
  line-height: 2.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 1rem;
  margin: auto;
  margin-bottom: 3rem;
  border: none;
  color: white !important;
}
@media only screen and (min-width: 992px) {
  #showcase .search-box .form-group .btn {
    background-color: var(--rentino-blue-300);
    background-size: 100% 6rem;
  }
}
@media only screen and (max-width: 991px) {
  #showcase .search-box .form-group .btn {
    width: 4rem;
    height: 4rem;
    position: absolute;
    right: 5%;
    top: 45%;
  }
}
@media only screen and (max-width: 991px) {
  #showcase .search-box .form-group {
    padding: 6rem 0.5rem 0;
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  #showcase .search-box {
    top: -18rem;
    max-width: unset;
    height: 18rem;
    box-shadow: unset;
  }
}
@media only screen and (max-width: 991px) {
  #showcase {
    margin-top: 18rem;
    margin-bottom: 0;
    height: 20rem;
    background: url(/images/hero_logo_2_smallest.jpg) #eaeaea;
    background-position: 50% 55%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #showcase {
    background: url(/images/hero_logo_2_small.jpg) #eaeaea;
    background-position: 50% 55%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1520px) {
  #showcase {
    background: url(/images/hero_logo_2_medium.jpg) #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 1521px) {
  #showcase {
    background: url(/images/hero_logo_2_large.jpg) #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
/* Sektion Funktion */
#funktion .content {
  position: relative;
  margin: 25rem auto 15rem auto;
  min-height: 5rem;
  border-top: 1px solid lightgrey;
}
@media only screen and (max-width: 1000px) {
  #funktion .content {
    margin: 10rem auto 10rem auto;
  }
}
#funktion .content .title-box {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: -4.5rem auto 0;
  padding: 0 4rem;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #funktion .content .title-box {
    padding: 0;
  }
}
#funktion .content .title-box .subtitle {
  font-size: 1.5rem;
  font-weight: light;
}
#funktion .content .title-box .title {
  font-size: 3rem;
  font-weight: bold;
}
#funktion .content .ablauf {
  list-style: none;
  position: relative;
  top: 3.5rem;
  text-align: center;
  margin-top: 2rem;
  padding: 0;
}
#funktion .content .ablauf .schritt {
  padding: 0 4rem;
}
@media only screen and (max-width: 991px) {
  #funktion .content .ablauf .schritt {
    padding: 0 5vw;
  }
}
#funktion .content .ablauf .schritt .icon {
  color: var(--rentino-grey-300);
  line-height: 7rem;
}
#funktion .content .ablauf .schritt .icon .fa-comment-o {
  position: relative;
}
#funktion .content .ablauf .schritt .icon .icon-inner {
  position: absolute;
  top: 25%;
  left: 37%;
  font-size: 0.5em;
}
#funktion .content .ablauf .schritt:hover .icon {
  color: var(--rentino-blue-300);
}
/* Sektion Vermieter */
#vermieter {
  min-height: 30rem;
}
#vermieter .content {
  padding: 4rem 0;
}
@media only screen and (max-width: 991px) {
  #vermieter .content {
    padding: 5vw;
  }
}
#vermieter .content .text-box {
  padding: 6rem;
  background-color: rgba(248, 249, 250, 0.75);
  text-align: center;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 991px) {
  #vermieter .content .text-box {
    padding: 5vw;
  }
}
#vermieter .content .text-box .title {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
#vermieter .content .text-box .title::after {
  content: "";
  margin: 0 auto;
  display: block;
  height: 3px;
  width: 7rem;
  margin-top: 1rem;
  background-color: var(--rentino-blue-300);
}
@media only screen and (max-width: 767px) {
  #vermieter .content .text-box .title {
    font-size: 2rem;
    padding: 0;
  }
}
#vermieter .content .text-box .subtext {
  font-size: 1.4rem;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  #vermieter .content .text-box .subtext {
    font-size: 1rem;
    padding: 0;
  }
}
@media only screen and (max-width: 991px) {
  #vermieter .content .text-box .subtext.big {
    font-size: 1.75rem;
  }
}
#vermieter .content .text-box .small {
  font-size: 1rem;
  padding: 2rem 0 1rem;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  #vermieter .content .text-box .small {
    font-size: 1rem;
    padding: 0 0 1rem;
  }
}
#vermieter .content .text-box .actions {
  margin: 2rem auto 0 auto;
}
@media only screen and (max-width: 767px) {
  #vermieter .content .text-box .actions {
    padding: 0 10vw;
  }
}
#vermieter .content .text-box .actions .btn-lg {
  padding: 1.5rem 4rem;
  border-radius: 1.5rem;
  font-size: 1.55rem;
  font-weight: bold;
  color: white !important;
}
@media only screen and (max-width: 767px) {
  #vermieter .content .text-box .actions .btn-lg {
    min-width: 40vw;
    margin: 0 auto 2rem;
    padding: 1.5rem 2.5rem;
  }
}
#vermieter .content .text-box .actions .btn-sm {
  border-radius: 0.75rem;
  padding: 0.5rem 2rem;
  color: white !important;
  background: var(--rentino-grey-500);
  border: none;
}
#vermieter .content .text-box .actions .btn-sm:hover {
  background: var(--rentino-blue-400);
}
@media only screen and (max-width: 767px) {
  #vermieter .content .text-box .actions .btn-sm {
    min-width: 32vw;
    margin: 0 auto 2rem;
    padding: 0.5rem 1.25rem;
  }
}
@media only screen and (max-width: 991px) {
  #vermieter {
    background: url(/images/hero_logo_smallest.jpg) #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #vermieter {
    background: url(/images/hero_logo_small.jpg) #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
  #vermieter {
    background: url(/images/hero_logo_medium.jpg) #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media only screen and (min-width: 1921px) {
  #vermieter {
    background: url(/images/hero_logo_large.jpg) #eaeaea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
/* Sektion Top Kategorien */
@media only screen and (min-width: 768px) {
  #top-kategorien {
    padding: 0 2rem;
  }
}
#top-kategorien .content {
  position: relative;
  margin: 10rem auto;
  min-height: 25rem;
  border-top: 1px solid lightgrey;
}
@media only screen and (max-width: 991px) {
  #top-kategorien .content {
    border: none;
  }
}
@media only screen and (max-width: 1000px) {
  #top-kategorien .content {
    margin: 5rem auto;
  }
}
#top-kategorien .content .title-box {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: -2rem auto 0;
  padding: 0 4rem;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  #top-kategorien .content .title-box {
    padding: 0;
  }
}
#top-kategorien .content .title-box .subtitle {
  font-size: 1.5rem;
  font-weight: light;
  margin: 0.25rem 0;
}
#top-kategorien .content .title-box .title {
  font-size: 3rem;
  font-weight: bold;
}
#top-kategorien .content .top-kategorien {
  margin-top: 5rem;
}
@media only screen and (max-width: 1000px) {
  #top-kategorien .content .top-kategorien {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 992px) {
  #top-kategorien .content .top-kategorien {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
#top-kategorien .content .top-kategorien:hover a {
  text-decoration: none;
}
#top-kategorien .content .top-kategorien .item {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 991px) {
  #top-kategorien .content .top-kategorien .item {
    width: 50%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
#top-kategorien .content .top-kategorien .item .card {
  min-height: 20rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
#top-kategorien .content .top-kategorien .item .card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
}
#top-kategorien .content .top-kategorien .item .card .kategorie-name {
  z-index: 80;
  width: 100%;
  text-decoration: none;
  text-align: center;
  color: #333;
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #top-kategorien .content .top-kategorien .item .card .kategorie-name {
    font-size: 5vw;
  }
}
#top-kategorien .content .top-kategorien .item .card:before {
  z-index: 90;
  display: none;
  font-family: "slick";
  content: "\2192";
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  padding-top: 5rem;
  left: 0;
  font-size: 3rem;
  color: var(--rentino-blue-300);
}
#top-kategorien .content .top-kategorien .item .card:hover .kategorie-name {
  padding-top: 15.5rem;
}
#top-kategorien .content .top-kategorien .item .card:hover:before {
  display: block;
}
#top-kategorien .content .top-kategorien .slick-list {
  padding: 20px 0;
}
#top-kategorien .content .top-kategorien .slick-slide {
  height: auto;
}
#top-kategorien .content .top-kategorien .slick-prev {
  left: -51px;
}
#top-kategorien .content .top-kategorien .slick-next {
  right: -31px;
}
#top-kategorien .content .top-kategorien .slick-prev:before,
#top-kategorien .content .top-kategorien .slick-next:before {
  color: var(--rentino-blue-300);
  width: 40px;
  height: 40px;
  font-size: 40px;
}
#top-kategorien .content .top-kategorien .slick-dots {
  bottom: -5rem;
}
#top-kategorien .content .top-kategorien .slick-dots li button:before {
  font-size: 1rem;
  color: var(--rentino-grey-600);
}
@media only screen and (min-width: 768px) {
  #top-kategorien .content .top-kategorien .slick-dots li button:before {
    font-size: 1.5rem;
  }
}
#top-kategorien .content .top-kategorien .slick-dots li button:before .slick-active {
  color: var(--rentino-grey-700);
}
#top-kategorien .content .more {
  margin: 2rem auto;
  width: 14rem;
}
article.rentino-article.issue-report form section.issue-report-errors {
  display: none;
  margin: 1rem 0;
  grid-column: 1 / span 2;
  font-size: 0.9rem;
}
article.rentino-article.issue-report form section.issue-report-errors hr {
  width: 20%;
  margin: 0 auto 1.5rem;
  border: none;
  border-top: 1px solid var(--rentino-grey-600);
}
article.rentino-article.issue-report form section.issue-report-errors p {
  margin: 0;
  text-align: left;
}
article.rentino-article.issue-report form section.issue-report-errors p.error-advice {
  display: block;
  margin-top: 0.5rem;
}
article.rentino-article.issue-report form button {
  grid-column: 1 / span 2;
  width: 12rem;
}
article.rentino-article.issue-report form.issue-report-error section.issue-report-errors {
  display: block;
}
article.rentino-article.login,
article.rentino-article.password-reset,
article.rentino-article.password-reset-success,
article.rentino-article.password-change,
article.rentino-article.password-change-success {
  max-width: 30rem !important;
}
@media only screen and (min-width: 1200px) {
  article.rentino-article.login,
  article.rentino-article.password-reset,
  article.rentino-article.password-reset-success,
  article.rentino-article.password-change,
  article.rentino-article.password-change-success {
    max-width: 36rem !important;
  }
}
article.rentino-article.login form,
article.rentino-article.password-reset form,
article.rentino-article.password-reset-success form,
article.rentino-article.password-change form,
article.rentino-article.password-change-success form,
article.rentino-article.login section.login-content,
article.rentino-article.password-reset section.login-content,
article.rentino-article.password-reset-success section.login-content,
article.rentino-article.password-change section.login-content,
article.rentino-article.password-change-success section.login-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 2rem auto 0;
}
@media only screen and (min-width: 480px) {
  article.rentino-article.login form,
  article.rentino-article.password-reset form,
  article.rentino-article.password-reset-success form,
  article.rentino-article.password-change form,
  article.rentino-article.password-change-success form,
  article.rentino-article.login section.login-content,
  article.rentino-article.password-reset section.login-content,
  article.rentino-article.password-reset-success section.login-content,
  article.rentino-article.password-change section.login-content,
  article.rentino-article.password-change-success section.login-content {
    width: 24rem;
  }
}
article.rentino-article.login form > *,
article.rentino-article.password-reset form > *,
article.rentino-article.password-reset-success form > *,
article.rentino-article.password-change form > *,
article.rentino-article.password-change-success form > *,
article.rentino-article.login section.login-content > *,
article.rentino-article.password-reset section.login-content > *,
article.rentino-article.password-reset-success section.login-content > *,
article.rentino-article.password-change section.login-content > *,
article.rentino-article.password-change-success section.login-content > * {
  width: 100%;
}
article.rentino-article.login form label:not(.stay-logged-in),
article.rentino-article.password-reset form label:not(.stay-logged-in),
article.rentino-article.password-reset-success form label:not(.stay-logged-in),
article.rentino-article.password-change form label:not(.stay-logged-in),
article.rentino-article.password-change-success form label:not(.stay-logged-in),
article.rentino-article.login section.login-content label:not(.stay-logged-in),
article.rentino-article.password-reset section.login-content label:not(.stay-logged-in),
article.rentino-article.password-reset-success section.login-content label:not(.stay-logged-in),
article.rentino-article.password-change section.login-content label:not(.stay-logged-in),
article.rentino-article.password-change-success section.login-content label:not(.stay-logged-in) {
  margin-top: 0.5rem;
}
article.rentino-article.login form label.stay-logged-in,
article.rentino-article.password-reset form label.stay-logged-in,
article.rentino-article.password-reset-success form label.stay-logged-in,
article.rentino-article.password-change form label.stay-logged-in,
article.rentino-article.password-change-success form label.stay-logged-in,
article.rentino-article.login section.login-content label.stay-logged-in,
article.rentino-article.password-reset section.login-content label.stay-logged-in,
article.rentino-article.password-reset-success section.login-content label.stay-logged-in,
article.rentino-article.password-change section.login-content label.stay-logged-in,
article.rentino-article.password-change-success section.login-content label.stay-logged-in {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
article.rentino-article.login form label.stay-logged-in input,
article.rentino-article.password-reset form label.stay-logged-in input,
article.rentino-article.password-reset-success form label.stay-logged-in input,
article.rentino-article.password-change form label.stay-logged-in input,
article.rentino-article.password-change-success form label.stay-logged-in input,
article.rentino-article.login section.login-content label.stay-logged-in input,
article.rentino-article.password-reset section.login-content label.stay-logged-in input,
article.rentino-article.password-reset-success section.login-content label.stay-logged-in input,
article.rentino-article.password-change section.login-content label.stay-logged-in input,
article.rentino-article.password-change-success section.login-content label.stay-logged-in input {
  margin: 0;
}
article.rentino-article.login form section:not(.submit),
article.rentino-article.password-reset form section:not(.submit),
article.rentino-article.password-reset-success form section:not(.submit),
article.rentino-article.password-change form section:not(.submit),
article.rentino-article.password-change-success form section:not(.submit),
article.rentino-article.login section.login-content section:not(.submit),
article.rentino-article.password-reset section.login-content section:not(.submit),
article.rentino-article.password-reset-success section.login-content section:not(.submit),
article.rentino-article.password-change section.login-content section:not(.submit),
article.rentino-article.password-change-success section.login-content section:not(.submit) {
  margin-top: 0.25rem;
}
article.rentino-article.login form section.remember-forgot,
article.rentino-article.password-reset form section.remember-forgot,
article.rentino-article.password-reset-success form section.remember-forgot,
article.rentino-article.password-change form section.remember-forgot,
article.rentino-article.password-change-success form section.remember-forgot,
article.rentino-article.login section.login-content section.remember-forgot,
article.rentino-article.password-reset section.login-content section.remember-forgot,
article.rentino-article.password-reset-success section.login-content section.remember-forgot,
article.rentino-article.password-change section.login-content section.remember-forgot,
article.rentino-article.password-change-success section.login-content section.remember-forgot,
article.rentino-article.login form section.submit.flex,
article.rentino-article.password-reset form section.submit.flex,
article.rentino-article.password-reset-success form section.submit.flex,
article.rentino-article.password-change form section.submit.flex,
article.rentino-article.password-change-success form section.submit.flex,
article.rentino-article.login section.login-content section.submit.flex,
article.rentino-article.password-reset section.login-content section.submit.flex,
article.rentino-article.password-reset-success section.login-content section.submit.flex,
article.rentino-article.password-change section.login-content section.submit.flex,
article.rentino-article.password-change-success section.login-content section.submit.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
article.rentino-article.login form section.submit,
article.rentino-article.password-reset form section.submit,
article.rentino-article.password-reset-success form section.submit,
article.rentino-article.password-change form section.submit,
article.rentino-article.password-change-success form section.submit,
article.rentino-article.login section.login-content section.submit,
article.rentino-article.password-reset section.login-content section.submit,
article.rentino-article.password-reset-success section.login-content section.submit,
article.rentino-article.password-change section.login-content section.submit,
article.rentino-article.password-change-success section.login-content section.submit {
  margin-top: 1.5rem;
  row-gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  article.rentino-article.login form section.submit,
  article.rentino-article.password-reset form section.submit,
  article.rentino-article.password-reset-success form section.submit,
  article.rentino-article.password-change form section.submit,
  article.rentino-article.password-change-success form section.submit,
  article.rentino-article.login section.login-content section.submit,
  article.rentino-article.password-reset section.login-content section.submit,
  article.rentino-article.password-reset-success section.login-content section.submit,
  article.rentino-article.password-change section.login-content section.submit,
  article.rentino-article.password-change-success section.login-content section.submit {
    row-gap: 1.5rem;
  }
}
article.rentino-article.login form section.submit:not(.flex) button,
article.rentino-article.password-reset form section.submit:not(.flex) button,
article.rentino-article.password-reset-success form section.submit:not(.flex) button,
article.rentino-article.password-change form section.submit:not(.flex) button,
article.rentino-article.password-change-success form section.submit:not(.flex) button,
article.rentino-article.login section.login-content section.submit:not(.flex) button,
article.rentino-article.password-reset section.login-content section.submit:not(.flex) button,
article.rentino-article.password-reset-success section.login-content section.submit:not(.flex) button,
article.rentino-article.password-change section.login-content section.submit:not(.flex) button,
article.rentino-article.password-change-success section.login-content section.submit:not(.flex) button {
  width: 100%;
}
article.rentino-article.login form section.submit button,
article.rentino-article.password-reset form section.submit button,
article.rentino-article.password-reset-success form section.submit button,
article.rentino-article.password-change form section.submit button,
article.rentino-article.password-change-success form section.submit button,
article.rentino-article.login section.login-content section.submit button,
article.rentino-article.password-reset section.login-content section.submit button,
article.rentino-article.password-reset-success section.login-content section.submit button,
article.rentino-article.password-change section.login-content section.submit button,
article.rentino-article.password-change-success section.login-content section.submit button {
  padding: 0.6rem 1rem 0.75rem;
}
article.rentino-article.login form p.login-help,
article.rentino-article.password-reset form p.login-help,
article.rentino-article.password-reset-success form p.login-help,
article.rentino-article.password-change form p.login-help,
article.rentino-article.password-change-success form p.login-help,
article.rentino-article.login section.login-content p.login-help,
article.rentino-article.password-reset section.login-content p.login-help,
article.rentino-article.password-reset-success section.login-content p.login-help,
article.rentino-article.password-change section.login-content p.login-help,
article.rentino-article.password-change-success section.login-content p.login-help,
article.rentino-article.login form p.reset-help,
article.rentino-article.password-reset form p.reset-help,
article.rentino-article.password-reset-success form p.reset-help,
article.rentino-article.password-change form p.reset-help,
article.rentino-article.password-change-success form p.reset-help,
article.rentino-article.login section.login-content p.reset-help,
article.rentino-article.password-reset section.login-content p.reset-help,
article.rentino-article.password-reset-success section.login-content p.reset-help,
article.rentino-article.password-change section.login-content p.reset-help,
article.rentino-article.password-change-success section.login-content p.reset-help,
article.rentino-article.login form p.change-help,
article.rentino-article.password-reset form p.change-help,
article.rentino-article.password-reset-success form p.change-help,
article.rentino-article.password-change form p.change-help,
article.rentino-article.password-change-success form p.change-help,
article.rentino-article.login section.login-content p.change-help,
article.rentino-article.password-reset section.login-content p.change-help,
article.rentino-article.password-reset-success section.login-content p.change-help,
article.rentino-article.password-change section.login-content p.change-help,
article.rentino-article.password-change-success section.login-content p.change-help {
  margin: 1.25rem 0 0;
}
article.rentino-article.lessor-articles h2 {
  margin: 0;
  margin-bottom: -0.5rem;
  font-weight: normal;
  opacity: 0.5;
}
article.rentino-article.lessor-articles h1 {
  margin-top: 0;
}
article.rentino-article.lessor-articles nav {
  margin-top: 2.5rem;
}
article.rentino-article.lessor-articles nav form {
  display: flex;
  gap: 0.5rem;
  height: 2.5rem;
}
article.rentino-article.lessor-articles nav form input {
  height: 100%;
  min-width: 25rem;
}
article.rentino-article.lessor-articles nav form button {
  width: 4rem;
  height: 100%;
}
article.rentino-article.lessor-articles nav.pagination {
  display: flex;
  position: relative;
  width: -moz-min-content;
  width: min-content;
  margin: 5rem auto;
}
article.rentino-article.lessor-articles nav.pagination:before {
  position: absolute;
  top: -3rem;
  left: calc(-20vw + 50%);
  height: 1px;
  width: 40vw;
  background-color: var(--rentino-grey-700);
  content: '';
}
article.rentino-article.lessor-articles nav.pagination div {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border: 1px solid var(--rentino-grey-700);
  transition: background-color 200ms;
}
article.rentino-article.lessor-articles nav.pagination div:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
article.rentino-article.lessor-articles nav.pagination div:not(:first-child) {
  border-left: none;
}
article.rentino-article.lessor-articles nav.pagination div:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
article.rentino-article.lessor-articles nav.pagination div.active {
  background-color: var(--rentino-blue-300);
  color: white;
}
article.rentino-article.lessor-articles nav.pagination div:hover {
  background-color: var(--rentino-blue-400);
  color: white;
}
article.rentino-article.lessor-articles section {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 1rem !important;
}
article.rentino-article.lessor-articles section a {
  display: grid;
  grid-template-rows: 1fr auto;
  max-height: 35vh;
  color: inherit;
  border-radius: 0.25rem;
  text-decoration: none;
  box-shadow: 0 0 0.6rem -0.125rem black;
  overflow: hidden;
}
article.rentino-article.lessor-articles section a:hover img {
  transform: scale(1.1);
}
article.rentino-article.lessor-articles section a img {
  width: calc(100% + 1px);
  height: 100%;
  transition: transform 200ms;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}
article.rentino-article.lessor-articles section a div {
  display: grid;
  grid-template-areas: 'heading heading' 'location  price';
  padding: 0.25rem;
  gap: 0.25rem;
  background-color: white;
  z-index: 100;
}
article.rentino-article.lessor-articles section a div h5 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: heading;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
article.rentino-article.lessor-articles section a div h5,
article.rentino-article.lessor-articles section a div span.location {
  overflow: hidden;
  text-overflow: ellipsis;
}
article.rentino-article.lessor-articles section a div span.location {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: location;
  white-space: nowrap;
}
article.rentino-article.lessor-articles section a div span.price {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: price;
  text-align: right;
}
article.rentino-article.privacy section.shipping-addresses {
  display: flex;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  article.rentino-article.privacy section.shipping-addresses {
    flex-direction: column;
    gap: 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  article.rentino-article.privacy section.shipping-addresses {
    align-items: center;
    gap: 3rem;
  }
}
article.rentino-article.privacy section.shipping-addresses dl {
  margin: 0;
}
article.rentino-article.privacy section.protest {
  padding: 2rem;
  background-color: var(--rentino-grey-900);
}
article.rentino-article.privacy section.protest h2 {
  margin-top: 0;
}
article.rentino-article.privacy p.privacy-date {
  margin-top: 2rem;
}
@media only screen and (min-width: 992px) {
  article.rentino-article.register {
    max-width: 760px !important;
    /* best way of overwriting @media... danke für nix */
  }
}
article.rentino-article.register section.note {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: var(--rentino-grey-900);
}
article.rentino-article.register section.note h2 {
  margin: 0 0 1.5rem;
}
article.rentino-article.register form {
  margin-top: 2.5rem;
  padding: 3rem 4rem 3rem;
  border: 2px solid var(--rentino-grey-600);
  border-radius: 0.5rem;
}
article.rentino-article.register form h1 {
  /* has to be grid instead if text-align: center because of underline */
  display: grid;
  place-content: center;
  margin: 0;
  font-weight: 500;
}
article.rentino-article.register form section.form-content {
  margin-top: 3rem;
}
article.rentino-article.register form div button {
  margin-top: 1rem;
}
article.rentino-article.register form section.legal {
  margin-top: 1.25rem;
  row-gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  article.rentino-article.register form section.legal {
    row-gap: 1.5rem;
  }
}
article.rentino-article.register form section.legal input {
  margin: 0;
  place-self: center;
}
article.rentino-article.register form section.legal label {
  align-self: center;
}
#request {
  padding: 3rem 0;
}
@media only screen and (max-width: 767px) {
  #request {
    padding: 0;
  }
}
#request .message {
  padding: 1rem 5rem 1.5rem 5rem;
}
#request .article {
  padding: 1rem 5rem 1.5rem 5rem;
}
@media only screen and (max-width: 767px) {
  #request .article {
    padding: 1rem 1rem 1.5rem 1rem;
  }
  #request .article .col {
    padding: 0;
    flex: 2 1 auto;
    margin-bottom: 1rem;
  }
  #request .article .row {
    row-gap: 40px;
  }
}
#request .article .article_description {
  font-weight: bold;
}
#request .article img {
  margin-top: 0.6rem;
}
#request .article .timeframe {
  width: 100%;
}
#request .article .timeframe td:first-child {
  width: 50%;
}
#request .article .timeframe td:nth-child(2) {
  width: 50%;
  text-align: right;
  font-weight: bold;
}
#request .article .timeframe .padded {
  padding-left: 1.5rem;
}
#request .article .details {
  width: 100%;
}
#request .article .details td:first-child {
  width: 50%;
}
#request .article .details td:nth-child(2) {
  width: 50%;
  text-align: right;
  font-weight: bold;
}
#request .renter {
  padding: 1rem 5rem 1.5rem 5rem;
}
@media only screen and (max-width: 767px) {
  #request .renter {
    padding: 1rem 1rem 1.5rem 1rem;
  }
  #request .renter .col {
    display: none;
  }
  #request .renter .grey_container {
    padding: 1rem 1rem 1rem 1rem;
  }
}
#request .contact_container table td:first-child {
  font-weight: bold;
  padding-right: 2rem;
}
#request .contact_container table td:nth-child(2) {
  width: 99%;
}
#request .contact_container table td {
  padding: 0.2rem 0;
}
#request .line_header {
  overflow: hidden;
  text-align: center;
  font-weight: 600;
  line-height: 3rem;
}
#request .line_header::before,
#request .line_header::after {
  background-color: var(--rentino-grey-600);
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
#request .line_header::before {
  right: 3rem;
  margin-left: -50%;
}
#request .line_header::after {
  left: 3rem;
  margin-right: -50%;
}
#request .grey_container {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background-color: var(--rentino-grey-900);
  padding: 2rem 1rem;
}
@media only screen and (max-width: 767px) {
  #request .grey_container {
    padding: 1rem 1rem 0 1rem;
  }
}
article.rentino-article.terms p.terms-date {
  margin-top: 2rem;
}
.theme-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 0.5rem;
}
.theme-container h1 {
  margin-top: 1rem;
}
.theme-container .cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.theme-container .cards-container a {
  text-decoration: none;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}
.theme-container .cards-container a:hover {
  background-color: var(--rentino-blue-300);
}
.theme-container .cards-container a:hover h2 {
  color: white;
}
.theme-container .cards-container a:hover img {
  transform: scale(1.1);
}
.theme-container .cards-container a figure {
  padding: 0;
  margin: 0;
}
.theme-container .cards-container a figure .center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6rem;
  height: 100%;
}
.theme-container .cards-container a figure h2 {
  font-size: 1.5rem;
  padding: 0.5rem;
  color: var(--rentino-grey-300);
  text-align: center;
}
.theme-container .cards-container a figure h3 {
  color: white;
  background: var(--rentino-blue-300);
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}
.theme-container .cards-container img {
  width: 100%;
  height: 200px;
  image-rendering: -webkit-optimize-contrast;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.theme-container .cards-container .image-container {
  overflow: hidden;
  height: 200px;
}
@media (min-width: 500px) {
  .theme-container .cards-container a {
    width: 49%;
  }
}
@media (min-width: 768px) {
  .theme-container .cards-container a {
    width: 32%;
  }
}
@media (min-width: 900px) {
  .theme-container .cards-container a {
    width: 24%;
  }
}
.theme-container .hero {
  margin: 2rem 0;
}
.theme-container .hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.theme-container .hero img {
  display: none;
}
.theme-container .hero .description {
  margin-top: 2rem;
  padding: 1.5rem 4% 2.5rem 4%;
}
.theme-container .hero div {
  background-color: var(--rentino-grey-700);
  border-radius: 30px 0 30px 0;
}
@media (min-width: 768px) {
  .theme-container .hero img {
    display: block;
    margin-bottom: 0.5rem;
  }
}
#trefferliste .tipps {
  padding-top: 2rem;
  border-bottom: 1px solid var(--rentino-grey-700);
}
@media only screen and (max-width: 991px) {
  #trefferliste .tipps {
    padding-top: 0;
    border-bottom: none;
  }
}
@media only screen and (max-width: 991px) {
  #trefferliste .tipps .container {
    margin: 0;
    max-width: unset;
  }
}
#trefferliste .tipps .container .tipps-img {
  padding-bottom: 2rem;
}
#trefferliste .tipps .container .tipps-img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  #trefferliste .tipps .container .tipps-txt {
    padding: 0;
  }
}
#trefferliste .tipps .container .tipps-txt .jumbotron {
  padding: 3rem 3rem 1rem 3rem;
  border-radius: 80px 0px;
  height: calc(100% - 2rem);
}
@media only screen and (max-width: 991px) {
  #trefferliste .tipps .container .tipps-txt .jumbotron {
    border-radius: 0;
  }
}
#trefferliste .tipps .container .tipps-txt .jumbotron .lead {
  font-size: 1.1rem;
}
#trefferliste .tipps .container .tipps-txt .jumbotron .collapse-toggle {
  position: absolute;
  right: 0;
  top: 0;
}
#trefferliste .tipps .container .tipps-txt .jumbotron .collapse-toggle:hover {
  text-decoration: none;
}
#trefferliste .tipps .container .tipps-txt .jumbotron .collapse-toggle .fa {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
#trefferliste .tipps .container .tipps-txt .jumbotron .collapse-toggle[aria-expanded="true"] .fa {
  transform: rotate(180deg);
}
#trefferliste .filter-results {
  padding-bottom: 2rem;
}
#trefferliste .filter-results .trefferListe-info,
#trefferliste .filter-results .filter-spacer {
  height: 4rem;
}
@media only screen and (max-width: 991px) {
  #trefferliste .filter-results .trefferListe-info,
  #trefferliste .filter-results .filter-spacer {
    display: none;
  }
}
#trefferliste .filter-results .trefferListe-info .card-header,
#trefferliste .filter-results .filter-spacer .card-header {
  background-color: white;
  border: none;
}
#trefferliste .filter-results .trefferListe-info .card,
#trefferliste .filter-results .filter-spacer .card {
  border: none;
}
#trefferliste .filter-results .filter {
  padding-bottom: 2rem;
}
@media only screen and (min-width: 992px) {
  #trefferliste .filter-results .filter {
    display: block!important;
  }
}
#trefferliste .filter-results .filter .form-group .custom-control.custom-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}
#trefferliste .filter-results .filter button {
  color: white !important;
}
#trefferliste .filter-results .filter-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2rem;
  width: 60%;
  margin: 1rem auto;
  color: white !important;
}
#trefferliste .filter-results .trefferListe {
  list-style: none;
}
#trefferliste .filter-results .trefferListe .trefferListeWerbung {
  padding: 2rem 0;
  border-bottom: 1px solid #ccc;
}
#trefferliste .filter-results .trefferListe .trefferListeWerbung a {
  width: 100%;
}
#trefferliste .filter-results .trefferListe .trefferListeItem {
  padding: 2rem 0;
  border-top: none;
  border-bottom: 1px solid #ccc;
}
#trefferliste .filter-results .trefferListe .trefferListeItem img {
  max-height: 20rem;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  #trefferliste .filter-results .trefferListe .trefferListeItem img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
#trefferliste .filter-results .trefferListe .trefferListeItem .artikelDetails {
  margin: 0;
  border: none;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .artikelDetails .artikelUeberschrift {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 0;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .artikelDetails .artikelBeschreibung {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .artikelDetails .standortAnzeige {
  font-size: 1rem;
  font-weight: light;
  color: #ccc;
}
@media only screen and (max-width: 991px) {
  #trefferliste .filter-results .trefferListe .trefferListeItem .artikelDetails .standortAnzeige {
    display: none;
  }
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails {
  padding: 0 0 0 15px;
}
@media only screen and (max-width: 991px) {
  #trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails {
    width: 100%;
    float: right;
  }
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails > * {
  float: left;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails .preis {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails .preis .lead {
  font-weight: bold;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails .preis .mwSt {
  font-size: 1rem;
  font-weight: lighter;
  color: #ccc;
  margin-bottom: 4rem;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails .minDauer {
  color: var(--rentino-grey-700);
  padding-top: 0.5rem;
}
@media only screen and (max-width: 991px) {
  #trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails .minDauer {
    float: left;
  }
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails > *:not(a) {
  text-align: left;
}
#trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails > a {
  font-size: 1rem;
  color: white !important;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  #trefferliste .filter-results .trefferListe .trefferListeItem .preisDetails > a.details {
    display: none;
  }
}
