/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

/* Sternchen bei Pflichtfeldern ausblenden */
   .asterisk {
    display: none !important;
}

/* Zwinge das Logo auf allen Geräten sichtbar zu machen */
.logo-container, /* oder was immer dein Container heißt */
.navbar-brand, 
a.navbar-brand img,
.navbar-header .logo-container,
.logo-container img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-width: 100% !important;
}

/* Größeneinschränkungen je nach Gerät – kleiner auf Tablets/Smartphones */
@media screen and (max-width: 1024px) {
  .logo-container img, 
  .navbar-brand img {
    max-width: 90% !important;
  }
}

@media screen and (max-width: 768px) {
  .logo-container img, 
  .navbar-brand img {
    max-width: 90% !important;
  }
}

@media screen and (max-width: 480px) {
  .logo-container img, 
  .navbar-brand img {
    max-width: 70% !important;
  }
}