/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2025 | 09:49:26 */
/* 1. Do 600 px szerokości traktujemy baner jak „slide-up” */
@media (max-width: 600px) {

  /* całe okno zgody */
  #CybotCookiebotDialog {
      position: fixed !important;   /* pewność, że jest przyklejony */
      bottom: 0 !important;         /* a nie pełny overlay */
      top: auto !important;
      width: 100% !important;

      /* wysokość nie większa niż 35% ekranu */
      max-height: 35vh !important;
      overflow: hidden !important;  /* resztę tekstu schowamy do środka */
      border-radius: 8px 8px 0 0 !important;
      box-shadow: 0 -4px 8px rgba(0,0,0,.15) !important;
  }

  /* wewnętrzny kontener ze scroll-barem */
  #CybotCookiebotDialogBody {
      overflow-y: auto !important;
      max-height: 28vh !important;  /* odjąć przyciski */
      padding-right: 1rem !important; /* miejsce na suwak */
  }

  /* tekst & przyciski: mniejsze czcionki */
  #CybotCookiebotDialogBodyContentText,
  #CybotCookiebotDialogBodyButtonsWrapper {
      font-size: .85rem !important;
      line-height: 1.3 !important;
  }

  /* same przyciski */
  .CybotCookiebotDialogBodyButton {
      padding: .5rem .75rem !important;
      font-size: .85rem !important;
  }

  /* opcjonalnie: ukryj link „Show details” */
  #CybotCookiebotDialogDetailLink {
      display: none !important;
  }
}