<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------SLIDER-TICKER (vĹľdy nahoĹ™e) */
.js-ticker {
  overflow: hidden;
  margin: 15px 0px;
}
.js-ticker-track {
  white-space: nowrap;
}
.js-ticker-item {
 white-space: normal;
 height: 100%;
 vertical-align: top;
 display: inline-block;
 position: relative;
}
.default-ticker {
 margin: 25px auto;
}
/* ---mezera */
.default-ticker, .speed-test img {

}
.news {
 margin: 30px auto;
}
.news-item {
 padding: 20px;
 background: rgb(153,0,51);
 max-width: 25%;
 color: #fff;
 text-decoration: none;
 margin-right: 15px;
}
/* btn */
#news-toggle {
 text-transform: uppercase;
 margin: 25px;
 padding: 0.8em;
 font-weight: 700;
 background: none;
 border:  2px solid rgb(0,102,51);
}
/* -responsive */
@supports ((display: -webkit-box) or (display: flex)) {
  .js-ticker-track {
    position: relative;
    white-space: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .js-ticker-item {
    height: auto;
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .js-ticker.active .js-ticker-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .js-ticker.active .js-ticker-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
.speed-test-item {
 width: 60px;
 height: 60px
}
.speed-test-item.even {
 background: #000;
}</pre></body></html>