.tns-outer {
    padding: 0 !important
}

.tns-outer [hidden] {
    display: none !important
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
    cursor: pointer
}

.tns-slider {
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s
}

.tns-slider>.tns-item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.tns-horizontal.tns-subpixel {
    white-space: nowrap
}

.tns-horizontal.tns-subpixel>.tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal
}

.tns-horizontal.tns-no-subpixel:after {
    content: '';
    display: table;
    clear: both
}

.tns-horizontal.tns-no-subpixel>.tns-item {
    float: left
}

.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item {
    margin-right: -100%
}

.tns-no-calc {
    position: relative;
    left: 0
}

.tns-gallery {
    position: relative;
    left: 0;
    min-height: 1px
}

.tns-gallery>.tns-item {
    position: absolute;
    left: -100%;
    -webkit-transition: transform 0s, opacity 0s;
    -moz-transition: transform 0s, opacity 0s;
    transition: transform 0s, opacity 0s
}

.tns-gallery>.tns-slide-active {
    position: relative;
    left: auto !important
}

.tns-gallery>.tns-moving {
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s
}

.tns-autowidth {
    display: inline-block
}

.tns-lazy-img {
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
    opacity: 0.6
}

.tns-lazy-img.tns-complete {
    opacity: 1
}

.tns-ah {
    -webkit-transition: height 0s;
    -moz-transition: height 0s;
    transition: height 0s
}

.tns-ovh {
    overflow: hidden;
    position: relative;
}

.tns-visually-hidden {
    position: absolute;
    left: -10000em
}

.tns-transparent {
    opacity: 0;
    visibility: hidden
}

.tns-fadeIn {
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 0
}

.tns-normal,
.tns-fadeOut {
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1
}

.tns-vpfix {
    white-space: nowrap
}

.tns-vpfix>div,
.tns-vpfix>li {
    display: inline-block
}

.tns-t-subp2 {
    margin: 0 auto;
    width: 310px;
    position: relative;
    height: 10px;
    overflow: hidden
}

.tns-t-ct {
    width: 2333.3333333%;
    width: -webkit-calc(100% * 70 / 3);
    width: -moz-calc(100% * 70 / 3);
    width: calc(100% * 70 / 3);
    position: absolute;
    right: 0
}

.tns-t-ct:after {
    content: '';
    display: table;
    clear: both
}

.tns-t-ct>div {
    width: 1.4285714%;
    width: -webkit-calc(100% / 70);
    width: -moz-calc(100% / 70);
    width: calc(100% / 70);
    height: 10px;
    float: left
}
/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */

/* --- styl samego slidera + gradient --- */
.bcc-tiny {
  position: relative;           /* potrzebne dla pseudo-elementów */
  padding: 35px 0;              /* odstęp pionowy */
}
.tns-ovh::before,
.tns-ovh::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;             /* szerokość zanikania */
  pointer-events: none;
  z-index: 2;              /* nad slajdami (0–1), pod strzałkami (3) */
}

/* --- styl pojedynczego slajdu --- */
.bcc-slide {
  text-align: center;
}
.bcc-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  min-height: 100px;            /* aby tło było widoczne bez obrazka */
  padding: 12px 18px;
  border: 1px solid #f3d9a9;
  font-size: 1.125rem;
  border-radius: 8px;
  text-decoration: none;
  color: #000;                  /* czarny tekst */
  transition: transform .2s ease, box-shadow .2s ease;
}
.bcc-box:hover {                /* lekki efekt hover */
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* --- obrazek wewnątrz slajdu --- */
.bcc-box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 8px;
}

/* --- przygaszamy slajdy nieaktywne --- */
.bcc-tiny .tns-slide-active        { opacity: 1; }
.bcc-tiny .tns-item[aria-hidden="true"] {
  opacity: .35;                   /* możesz zmienić stopień przyciemnienia */
  transition: opacity .25s;
}

/* --- kontener kontrolek (Tiny dodaje go PRZED sliderem) --- */
.tns-controls {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 3;             /* powyżej gradientu */
  pointer-events: none;   /* żeby gradient nie blokował klików */
}

/* --- pojedynczy przycisk --- */
.tns-controls button {
  background: white;
  border: none;
  width: 42px; height: 110px;
  font-size: 24px; line-height: 40px;
  color: #000;
  cursor: pointer;
  pointer-events: auto;   /* aktywne kliknięcie */
}

@media (max-width: 990px) {
  .tns-controls button { width: 30px; height: 100px; font-size: 20px; }
}

/* wersja na małe ekrany – przyciski minimalnie mniejsze */
@media (max-width: 575px) {
  .tns-controls button { width: 20px; height: 100px; font-size: 20px; }
}

.tns-outer {
  position: relative;
  z-index: 0;
}
