html .list_item .list_headline a {
  color: inherit;
}

html .error_msg {
  font-weight: bold;
}

.detail_view .left_view {
  padding-right: 50px;
}

@media screen and (max-width: 1000px) {
  html .list_grid {
    grid-template-columns: calc((100% - 50px)/3) calc((100% - 50px)/3) calc((100% - 50px)/3);
    grid-column-gap: 25px;
  }
}

@media screen and (max-width: 785px) {
  html .list_grid {
    grid-template-columns: calc((100% - 25px)/2) calc((100% - 25px)/2);
    grid-column-gap: 25px;
  }

  html .detail_view {
    grid-template-columns: 100%;
    grid-column-gap: 0;
  }

  html .bnb_header {
    flex-direction: column-reverse;
  }

  html .contact_placeholder {
    margin-top: 50px;
  }

  html .create_new_btn {
    text-align: center;
    margin-bottom: 25px;
  }

  html .inserieren_wrapper_inner_header {
    flex-direction: column-reverse;
  }

  html .inserieren_wrapper_inner_header .type_switcher {
    width: 100%;
  }

  html .inserieren_wrapper .form_grid {
    grid-template-columns: 100%;
    grid-column-gap: 0;
  }
}

@media screen and (max-width: 600px) {
  html .list_grid {
    grid-template-columns: 100%;
    grid-column-gap: 0;
  }
}